Can't adjust time on Canon 400D .CR2 files (RAW)

Started by Archive, May 12, 2010, 08:54:12 AM

Previous topic - Next topic

Archive

[Originally posted by stignygaard on 2007-11-28 19:58:07-08]

I'm shooting RAW+JPG with the Canon 400D, and I tried exiftool to adjust the time on my pictures. It works perfectly well on the JPGs with:

Code:
exiftool -AllDates+=1 *.JPG

But the following just won't do it on my RAW (CR2) pictures:

Code:
exiftool -AllDates+=1 *.CR2

Am I doing something wrong? Exiftool says it updates my files, but the timestamps doesn't change.

I'm using version 7.03 (windows executable)

Archive

[Originally posted by stignygaard on 2007-11-28 20:01:29-08]

Ahh, wait a minute. It looks like it is Adobe Bridge CS2 that is caching the time. Very annoying... :-/

Archive

[Originally posted by exiftool on 2007-11-29 14:14:57-08]

It is always best to verify things like this with exiftool when in doubt:

Code:
> exiftool a.cr2 -alldates -a -G1
[ExifIFD]       Date/Time Original              : 2006:12:14 10:52:30
[ExifIFD]       Create Date                     : 2006:12:14 10:52:30
[IFD0]          Modify Date                     : 2006:12:14 10:52:30
> /exiftool a.cr2 -alldates+=1
    1 image files updated
> /exiftool a.cr2 -alldates -a -G1
[ExifIFD]       Date/Time Original              : 2006:12:14 11:52:30
[ExifIFD]       Create Date                     : 2006:12:14 11:52:30
[IFD0]          Modify Date                     : 2006:12:14 11:52:30

- Phil