Forrest logo
back to context overview

exiftool

List of commands for exiftool:

  • exiftool:ai:b7462 how do i set the album artist name?
    $ exiftool -albumartist='Artist Name' path/to/music/files
    try on your machine
    explain this command
  • exiftool:tldr:193c9 exiftool: Move the date at which all photos in a directory were taken 1 hour forward.
    $ exiftool "-AllDates+=0:0:0 1:0:0" ${path-to-directory}
    try on your machine
    explain this command
  • exiftool:tldr:21bda exiftool: Move the date at which all JPEG photos in the current directory were taken 1 day and 2 hours backward.
    $ exiftool "-AllDates-=0:0:1 2:0:0" -ext jpg
    try on your machine
    explain this command
  • exiftool:tldr:51a26 exiftool: Recursively rename all JPEG photos in a directory based on the `DateTimeOriginal` field.
    $ exiftool '-filename
    try on your machine
    explain this command
  • exiftool:tldr:53ce2 exiftool: Only change the `DateTimeOriginal` field subtracting 1.5 hours, without keeping backups.
    $ exiftool -DateTimeOriginal-=1.5 -overwrite_original
    try on your machine
    explain this command
  • exiftool:tldr:57ab0 exiftool: Remove all EXIF metadata from the given files.
    $ exiftool -All= ${filename1 filename2 ---}
    try on your machine
    explain this command
  • exiftool:tldr:bac61 exiftool: Print the EXIF metadata for a given file.
    $ exiftool ${filename}
    try on your machine
    explain this command
  • exiftool:tldr:d149e exiftool: Remove GPS EXIF metadata from given image files.
    $ exiftool "-gps*=" ${path-to-image1 path-to-image2 ---}
    try on your machine
    explain this command
  • exiftool:tldr:e13e4 exiftool: Remove all EXIF metadata from the given image files, then re-add metadata for color and orientation.
    $ exiftool -All= -tagsfromfile @ -colorspacetags -orientation ${path-to-image1 path-to-image2 ---}
    try on your machine
    explain this command
back to context overview