Using exiftool to write in filename either CreateDate or FileModifyDate, whatever exists.
What is the problem: -If no CreateDate exists, error is happening, and filename is not changed according to Creation date.
"Warning: No writable tags set from DSC_0680a.JPG"
How can I tell exiftool to write either CreateDate or FileModifyDate - whatever exists in exif information?
Currently, I am using the following command:
for pic in DSC*.*; do exiftool "-FileName<CreateDate" -d ${pic//.*}_%Y%m%d_%H%M%S.jpg" "$pic"; done;
This does not work too:
exiftool "-FileName<CreateDate" -d "DSC_0680a_%Y%m%d_%H%M%S.jpg" DSC_0680a.JPG || exiftool "-FileName<FileModifyDate" -d "DSC_0680a_%Y%m%d_%H%M%S.jpg" DSC_0680a.JPG
I tried this command with the linux operator "&&", "which means whatever happen to the first command, execute the second one too", and it worked (?).
My exiftool command to change / rename filename according to CreateDate OR FileModifyDate that exists in image information tags.