cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

EOS 60D Incorrect date and time on photos

daruwalak
Apprentice

I took a lot of photos on my Canon 60 D with the wrong date and time on the camera. Would appreciate advise on how to change the date/time on the photos already taken.

5 REPLIES 5

p4pictures
Authority
Authority

This is something you can do with post processing software. I use Lightroom and it has the ability to shift the capture time and date of a range of photos. So you find the first of the batch with the wrong time and fix it then Lightroom applies the fixed difference to all the others. 

If you need to fix the capture time in the file itself then I think a tool like Exif tool will do that for you. 


Brian
EOS specialist trainer, photographer and author
-- Note: my spell checker is set for EN-GB, not EN-US --

Tintype_18
Authority
Authority

Does this work with Photoshop Elements? Curious. Always good to know JIC.

John
Canon EOS T7; EF-S 18-55mm IS; EF 28-135mm IS; EF 75-300mm; Sigma 150-600mm DG

I don't know if this is possible with Photoshop Elements as I don't have/use it. I could not find the function to change the capture time in Photoshop either. 


Brian
EOS specialist trainer, photographer and author
-- Note: my spell checker is set for EN-GB, not EN-US --

You need to see if that action is built in:

https://helpx.adobe.com/photoshop-elements/using/using-actions-process-photos.html

IF you are on a Mac, Photos can do this.

johnrmoyer
Whiz
Whiz

Time is many places in the meta data. Various programs read the time from different places while ignoring other times. Without knowing which program is displaying the time, it is difficult to know which time to change.

exiftool is free software. It is a command line program. https://exiftool.org/

https://exiftool.org/#shift

"Have you ever forgotten to set the date/time on your digital camera before taking a bunch of pictures? ExifTool has a time shift feature that makes it easy to apply a batch fix to the timestamps of the images (eg. change the "Date Picture Taken" reported by Windows Explorer). Say for example that your camera clock was reset to 2000:01:01 00:00:00 when you put in a new battery at 2005:11:03 10:48:00. Then all of the pictures you took subsequently have timestamps that are wrong by 5 years, 10 months, 2 days, 10 hours and 48 minutes. To fix this, put all of the images in the same directory ("DIR") and run exiftool:"

 
exiftool "-DateTimeOriginal+=5:10:2 10:48:0" DIR

"The example above changes only the DateTimeOriginal tag, but any writable date or time tag can be shifted, and multiple tags may be written with a single command line. Commonly, in JPEG images, the DateTimeOriginal, CreateDate and ModifyDate values must all be changed. For convenience, a Shortcut tag called AllDates has been defined to represent these three tags. So, for example, if you forgot to set your camera clock back 1 hour at the end of daylight savings time in the fall, you can fix the images with:"

exiftool -AllDates-=1 DIR

quoting is different on Windows than on macOS or Linux.

https://exiftool.org/exiftool_pod.html

 

-globalTimeShift SHIFT
Shift all formatted date/time values by the specified amount when reading. Does not apply to unformatted (-n) output. SHIFT takes the same form as the date/time shift when writing (see Image::ExifTool::Shift.pl for details), with a negative shift being indicated with a minus sign (-) at the start of the SHIFT string. For example:
    # return all date/times, shifted back by 1 hour
    exiftool -globalTimeShift -1 -time:all a.jpg

    # set the file name from the shifted CreateDate (-1 day) for
    # all images in a directory
    exiftool "-filename<createdate" -globaltimeshift "-0:0:1 0:0:0" \
        -d %Y%m%d-%H%M%S.%%e dir

For more examples and discussion: https://exiftool.org/forum/index.php?topic=10583.0

 

Announcements