ExifTool is the most common and used software to handle file metadata, specifically image information.
Show metadata
exiftool -s -G filename.jpgwhere:
-sis used to show the names in ExifTool commands format. e.g.: instead ofCreate Date
you seeCreateDate-Gis used to show the metadata Group to which the metadata tag belongs.
Show dates
exiftool -AllDates filename.jpgStrip metadata
Removing all metadata from all files in pwd
exiftool -all= ./* #filename.jpgRenaming according to original date
Rename all files in pwd, according to the time and time they were shot
exiftool '-FileName=CustomName%-c.%le' '-FileName<FileModifyDate' '-FileName<CreateDate' '-FileName<GPSDateTime' '-FileName<DateTimeOriginal' -d %Y.%m.%d-%H.%M.%S%%-lc.%%le -r ./*where:
-rmakes the analysis recursive;-dis used to specify the printed date format;%cadds a counter to images that result to be shot in the same second,lmakes the counter alphabetical and the leading dash, guess what, adds a dash when the counter is used.%for non-date variables must be double- adding
-ocopies each image instead of moving it.
During the file renaming process, the leftmost values are overwritten by the rightmost ones. Therefore, if a file both has CreateDate and DateTimeOriginal, the latter will overwrite the former. This is so in order to prioritize most reliable date values, as discussed in this thread in the ExifTool forum.
Shift dates
See ExifTool Date/Time Shift Module.
exiftool "-AllDates+=6:11:26 21:20:0" ./* # years:months:days hours:minutes:secondsGeotagging
exiftool -GPSLatitude=43.819027 -GPSLatitudeRef=43.819027 -GPSLongitude=7.774179 -GPSLongitudeRef=7.774179 -overwrite_originalDirectories
Organize files in directories based on each image’s dimensions (resolution)
exiftool '-Directory<imagesize' ./*Move files to folders based on year and month
exiftool '-Directory<CreateDate' '-Directory<GPSDateTime' '-Directory<DateTimeOriginal' ./%Y/%Y.%m -r ./*