RhetTbull / exif2findertags

Read EXIF metadata from image and video files and convert it to macOS Finder tags and/or Finder comments.
MIT License
21 stars 0 forks source link

Using Automator to create "tag with exif2findertags" service #8

Open RhetTbull opened 2 years ago

RhetTbull commented 2 years ago
  1. Install exif2findertags with pipx install exif2findertags (after install pipx with homebrew if needed
  2. Install exiftool
  3. Add Finder and Automator to Full Disk Access (see screenshot for adding Finder)
  4. Built an Automator workflow like in attached screenshots.
  5. Run it from Finder with Services menu.
RhetTbull commented 2 years ago

Add Finder and Automator to Full Disk Access in System Preferences | Security & Privacy | Fill Disk Acces

Screen Shot 2022-05-26 at 8 29 06 PM

s

RhetTbull commented 2 years ago

To add Finder, you may need to search for Finder after click the "+"

Screen Shot 2022-05-26 at 8 29 41 PM
RhetTbull commented 2 years ago

Find full path to exif2findertags. Will look something like this if installed with pipx:

$ which exif2findertags
/Users/rhet/.local/bin/exif2findertags

Find full path to exiftool:

$ which exiftool
/usr/local/bin/exiftool

Create a new Automator workflow with the Run shell script action with the following command. Use the "Quick Action" template when selecting "New" from Automator:

Screen Shot 2022-05-26 at 8 39 42 PM
Users/rhet/.local/bin/exif2findertags --exiftool-path /usr/local/bin/exiftool --tag-value IPTC:Keywords "$@"
Screen Shot 2022-05-26 at 8 39 12 PM
RhetTbull commented 2 years ago

Now you can run the action from the Services menu in Finder on any image file:

Screen Shot 2022-05-26 at 8 42 00 PM
ajnart commented 1 year ago

You should make this a github wiki article instead I think. There you can have actual documentation, just enable it in the repository settings.