Changing time with shift

Started by xigo, March 17, 2013, 05:36:11 PM

Previous topic - Next topic

xigo

exiftool "-FileCreateDate<Exif:DateTimeOriginal-1" "c:\images_here\"

It does not do a negative 1 hour shift. How to fix it?

Phil Harvey

This must be done in 2 separate commands:

1) exiftool "-FileCreateDate<Exif:DateTimeOriginal" "c:\images_here\"

2) exiftool -filecreatedate-=1 "c:\images_here\"

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).