--filter and fine-tuning

How-to guides, frequently asked questions, not-so-obvious features, etc
Locked
User avatar
rednoah
The Source
Posts: 22899
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

--filter and fine-tuning

Post by rednoah »

The --filter option is probably the the most powerful, yet least used option the CLI has to offer. As long as everything "just works" you will never need --filter but if you get mismatches then --filter will allow you to pass in arbitrary rules to help FileBot make the correct match. Plus, once you're familiar with format expressions you'll immediately get filter expressions.

The --filter expression allows you to control which episode or movie object is considered for matching. So if one show is confused with another due to bad naming or missing data you can simply exclude the bad one.

Screenshot

Examples

If you want to process files from a specific season, then you can force a match from that specific season:

Shell: Select all

--filter "s == 2"

If you only process recently aired episodes you could exclude any episode of any show that has been aired more than a few days ago, immediately eliminating any and all potential mismatches with similarly named TV Shows aired at different times:

Shell: Select all

--filter "age < 5"

A more advanced version of the above might only include episode data of recently aired episodes if there are any recently aired episodes, but otherwise default to accepting any episode data:

Shell: Select all

--filter "age < 5 || 5 <= model.age.min()"

If older TV shows are giving you trouble, then you can focus on recent TV shows:

Shell: Select all

--filter "y > 2010"

If misleading data from a specific series is making trouble you can simply exclude it:

Shell: Select all

--filter "none{ n =~ /Crime Scene Investigation/ }"

You can manage a list of explicitly excluded (or included) series names with an external text file:

Shell: Select all

--filter "none{ n in lines('/path/to/excludes.txt') }"

Console Output: Select all

$ cat *.txt
Magnum, P.I.
CSI: Crime Scene Investigation

You can manage a list of explicitly excluded (or included) series IDs with an external TSV table:

Shell: Select all

--filter "none{ id in csv('/path/to/ids.tsv') }"

Console Output: Select all

$ cat *.tsv
734	Magnum, P.I. (1980)
1431	CSI: Crime Scene Investigation (2000)

:!: Note that '...' cannot be used to quote argument values in Windows CMD scripts.

:!: Note that ! cannot be used in argument values that are quoted with "..." in Unix shell scripts. Please read Cmdline and Argument Passing for details. Consider using the @file syntax for reading command-line arguments from external text files.



Advanced Usage

--filter expressions can be passed via external *.groovy files:

Shell: Select all

--filter /path/to/Filter.groovy


:arrow: Since filter expressions allow arbitrary code, you can come up with more smart or more specialized logic yourself. Sharing is caring. ;)
:idea: Please read the FAQ and How to Request Help.
Locked