[macOS] Set Finder Tags
Posted: 14 Jun 2021, 15:50
The Set Finder Tags allows you to add a series of tags to your movie and episode files to make them more accessible in Finder.
e.g. export Finder tags for existing files:

By default, the list of tags for each file is generated via the following format expression:
You can configure Set Finder Tags to generate custom Finder tags via the apply.finder.tags setting:
NOTE: \n and | serve as tag delimiter
e.g. export Finder tags for existing files:
Shell: Select all
filebot -find /input --apply finder


Format: Select all
FileBot
{ movie; 'Movie' }
{ episode; anime ? 'Anime' : 'TV Show' }
{ movie; genre }
{ movie; '★' * (rating / 2).round() }
{ y }
{ hd == 'UHD' && hdr ? 'HDR 4K' : null }

NOTE: \n and | serve as tag delimiter
Shell: Select all
filebot -script fn:properties --def apply.finder.tags='{genre}|{y}|{hd}'