Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # Adjust GPS tag on files in a folder
  2. exiftool -GPSLongitudeRef=W -GPSLongitude="73.87538" -GPSLatitudeRef=N -GPSLatitude=40.850581 -ext cr2 jpg jpeg .
  3. # Move files into Year/Month folders in a given folder
  4. exiftool "-Directory<DateTimeOriginal" -d "%Y/%m" DIR
  5. # Rename files in a folder using Year Month Day Hour Minute Second format
  6. exiftool '-FileName<CreateDate' -d %Y%m%d_%H%M%S%%-c.%%e DIR
  7. exiftool -AllDates+=1 *.JPG
  8. # Adjust file modification date
  9. exiftool "-DateTimeOriginal>FileModifyDate" *.JPG
  10. # Copy tags from another file
  11. exiftool -TagsFromFile a.crw a.jpg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement