MacOS 10.15.3 date shift not working

Started by chadflorian, March 05, 2020, 08:21:10 PM

Previous topic - Next topic

chadflorian

Hi.. Just downloaded and installed exiftool 11.91 on my mac running 10.15.3 (catalina).

I'm trying a simple command on a single MOV file:
exiftool -AllDates+=1 -verbose DJI_0994.MOV

It appears to process, but the result is all exif date info is changed to the current data/time.

Any help is appreciated!

StarGeek

What is the output of this command
exiftool -time:all -g1 -a -s DJI_0994.MOV

The AllDates only affects three tags, DateTimeOriginal, CreateDate, and ModifyDate.  Odds are the tag that changed is not EXIF (which is rare in video files) but the file system dates, FileModifyDate or FileCreateDate.  If that's the case, you can add the -P (preserve) option to prevent the FileModifyDate from change when you run it.
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

chadflorian

Quote from: StarGeek on March 05, 2020, 09:11:07 PM
What is the output of this command
exiftool -time:all -g1 -a -s DJI_0994.MOV

The AllDates only affects three tags, DateTimeOriginal, CreateDate, and ModifyDate.  Odds are the tag that changed is not EXIF (which is rare in video files) but the file system dates, FileModifyDate or FileCreateDate.  If that's the case, you can add the -P (preserve) option to prevent the FileModifyDate from change when you run it.

ahhh... It appears that is the case!   Looks like -P kept the system dates and updates these values:

---- QuickTime ----
CreateDate                      : 2020:01:25 20:04:10
ModifyDate                      : 2020:01:25 20:04:10

Thanks for your help!