Skip to content

Instantly share code, notes, and snippets.

@dlozeve
Last active November 16, 2022 07:15
Show Gist options
  • Save dlozeve/a36d0d5f4ed33a6cbd9029a5387839f3 to your computer and use it in GitHub Desktop.
Save dlozeve/a36d0d5f4ed33a6cbd9029a5387839f3 to your computer and use it in GitHub Desktop.
Edit EXIF metadata of a file interactively
#!/usr/bin/env zsh
exifedit() {
local title=$(exiftool -T -Title $1)
local author=$(exiftool -T -Author $1)
vared -p "Title: " title
vared -p "Author(s): " author
exiftool -Author=$author -Title=$title -overwrite_original $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment