Page 1 of 1

How to select best match on CLI?

Posted: 23 May 2016, 19:51
by rpgmaker
I hope I'm not monopolizing the forums too much :)

I'm wondering, how can I choose which match to use when using CLI? In the GUI we can do it but on CLI I haven't been able to do it. I thought that the --q argument could be used to do that (setting the value to one of the matches found) but it doesn't work. I looked through the help, played with the --conflict option for a while but I had no luck. This is the command:

Code: Select all

filebot -rename --action test --q "Maison Ikkoku" --format "{N} - {S00E00} - {t}" --db TheTVDB -non-strict . --log-file log.txt --log all
Log: http://pastebin.com/PYEwtq9v

In the log, you'll see that the first two episodes are named after the [Maison Ikkoku (2007)] match when they are actually part of [Maison Ikkoku].

Re: How to select best match on CLI?

Posted: 24 May 2016, 05:41
by rednoah
If the "best match" selected by FileBot is not the one you want, then you can use the --filter option to pass in a few additional hints.

Re: How to select best match on CLI?

Posted: 24 May 2016, 12:41
by rpgmaker
Using filter "y < 2007" works to select the one I want thanks.