Any quick/easy way to run multiple formats on just a few files?

Any questions? Need some help?
Post Reply
Crankrune
Posts: 21
Joined: 20 Jul 2016, 11:35

Any quick/easy way to run multiple formats on just a few files?

Post by Crankrune »

Basically, I sort my movies (via hardlinking) into various other folders after the initial rename. I just use the GUI with xattr and manually do one after another each format. I was wondering if there is a simpler way to hardlink a file multiple times, with different formats, without dragging it into the GUI every time.
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Any quick/easy way to run multiple formats on just a few files?

Post by rednoah »

✭ See Presets. ;)

You could also make your format smarter. If you have some rules for your different folders (e.g. old movies folder, action movies folder, jackie chan movies folder, etc) then you can express all that in a single format that knows what to put where.

However, processing the same files multiple times is still slightly awkward because you'll still need to select one Preset after another even if the Preset auto-loads files. Since your files are xattr tagged I'd recommend the command-line tools because complete non-interactive automation is easy once files are tagged. ;)

Code: Select all

filebot -rename /input -r --output /output --db xattr --action hardlink --format "Movies By Genre/{genre}/{plex.name}" --filter "movie"
filebot -rename /input -r --output /output --db xattr --action hardlink --format "Movies By A-Z/{az}/{plex.name}" --filter "movie"
...
:idea: Please read the FAQ and How to Request Help.
Post Reply