Linux – Rename images by date with correct time

exiflinuxrename

I'd like to rename my images according to their date in EXIF information, BUT with a twist: the date in the EXIF information of one camera brand (the one named panasonic) is off by one hour (it should be one hour sooner).

How can I do this in Linux? I have tried using exiftool as mentioned here : Sort and rename images by date in EXIF info, but this one hour offset really bugs me, and I am not good enough in scripts or programmation to do it by myself.

Thanks.

Best Answer

Run exiftool -alldates-=1 -if '$make eq "Panasonic"' <your dir with photos>, then follow the guide you linked

Related Question