

I have Nikon D3100 jpgs with empty exifs for date taken and wrong.
Exiftool copy alldates how to#
exiftool '-FileName # update CreateDate with content from DateTimeOriginalĮxiftool "-DateTimeOriginal>CreateDate" 20170103_180336.jpg By default the original files are preserved with original appended to their names - be sure to. exiftool "-DateTimeOriginal+=5:10:2 10:48:0" DIRĮxiftool "-DateTimeOriginal-=18:00:0 00:00:0" DIRĮxiftool "-DateTimeOriginal-=17:11:15 00:00:0" DIR To copy or move metadata, the -tagsFromFile feature is used. Then all of the pictures you took subsequentlyīy 5 years, 10 months, 2 days, 10 hours and 48 minutes. Say for example that your camera clock was reset to 2000:01:01 00:00:00 when you put Reculer de n jours exiftool "-AllDates-=0:0:58 0:0:0" "C:\Photos\file.jpg"Įxiftool -overwrite_original "-DateTimeOriginal-=0:0:55 0:0:0" *.JPG exiftool.exe "-DateTimeOriginal+=Y:M:D h:m:s" filename.jpg Exiftool is a command-line utility, technically a Perl library written by Phil Harvey first released in 2003.Use -overwrite_original option to overwrite image file list all tags that contain date exiftool "-*date*" "Photo - 01.JPG" To write or copy information, new tag values are specified with the - TAG VALUE syntax or the -tagsFromFile or -geotag options. > AllDates is a shortcut for 3 tag names: DateTimeOriginal, CreateDate and ModifyDate. jpg - DateTimeOriginal exiftool 20170411_220635.J PG - s | grep Date exiftool - p "$DateTimeOriginal" "Photo - 01.JPG"Ĭommonly, in JPEG images, the DateTimeOriginal, CreateDate and ModifyDate values must all be changed.įor convenience, a shortcut tag called AllDates has been defined to represent these three tags. # -s : Short output format exiftool file.Exiftool copy alldates update#