
(Historical artifact from the 1980s: Мир - Космосу! Peace in Space!)
See also related notes:
Image albums:

exiftool to do this. The basic metadata to add is the lens model. My experience has led me to these options:exiftool -P -ext jpg -LensModel="Steinheil Quinon 50/2" -FocalLength="50 mm" -overwrite_original directorypath-P means to keep the original date/time of the file-ext jpg means to process only JPEG files (I don't want to modigy raw files anyway), this allows to point to a directory (directorypath).exiftool -P -ext jpg -FNumber="2.8" -overwrite_original directorypath-FNumber is used.exiftool -P -ext jpg -Make="Vivitar" -Model="V3800N" -Software="Fomapan Classic" -ISO="100" -overwrite_original directorypath-Make for the camera maker, -Model for the camera model, -Sofware for the photographic film name, and -ISO for the film speed (ISO sensitivity).

