I use the uTorrent RSS downloader + AMC Filebot program. This works great, except for the show American Dad! (because of the TVDB numbering).
Is there to let AMC ignore this show? I can't seem to figure out how the --def ignore parameter works.
[AMC] Ignore a show
Re: [AMC] Ignore a show
Have you tried?
Code: Select all
--def ignore=American.Dad
Re: [AMC] Ignore a show
Hrm, I feel silly now...
I tried --def ignore American*, ignore American[.]* but not what you suggested. It works, thank you very much.
I tried --def ignore American*, ignore American[.]* but not what you suggested. It works, thank you very much.
-
- Donor
- Posts: 53
- Joined: 24 Apr 2014, 19:30
Re: [AMC] Ignore a show
Is this case sensitive? I had --def ignore=American.dad and it processed it anyways, when i changed the script to american.dad it skipped it but the file could be American.dad or American.Dad etc. If it is case sensitive as it seems what is the best way to filter multiple? multiple --def ignore or can you use semi colon or pipes or something to make a list?
Re: [AMC] Ignore a show
It uses the regex as is, so it's case-sensitive by default. But you can always flip a switch:
So it's 1 single regex. But that single regex can easily match many different patterns.
Code: Select all
--def "ignore=(?i)American.Dad|Some.Other.Show"
-
- Donor
- Posts: 53
- Joined: 24 Apr 2014, 19:30
Re: [AMC] Ignore a show
Thanks! I figured it was possible to filter multiple things but everything I tried just threw up errors lol.