Page 1 of 1
Label Whitelist?
Posted: 19 Jul 2016, 06:41
by RealityExit
Is making a whitelist so FileBot only runs against torrents with a specific label a thing that I can do? Occasionally I'll download something that I don't want FileBot to process while everything that I do want to run through FileBot automatically always has a specific label(s), so I figured that might be the way to go.
I did some searching and saw that filtering files and series is possible, but I couldn't tell if the same was possible with labels. It's kind of a non-issue, but still something I'd like not to happen if it doesn't have to.
For information I'm running qBittorrent on Windows, and the command that I'm running is based on the example in the AMC guide.
Re: Label Whitelist?
Posted: 19 Jul 2016, 07:23
by rednoah
There's no whitelist, but there is a blacklist:
https://github.com/filebot/scripts/blob ... groovy#L80
e.g. if the label contains
other then it'll be ignored.
Re: Label Whitelist?
Posted: 19 Jul 2016, 07:34
by RealityExit
That'll work.
Thanks a bunch, I appreciate your work.
Re: Label Whitelist?
Posted: 21 Oct 2016, 04:13
by RealityExit
So I've been using a couple of the blacklisted labels and while Filebot isn't moving or renaming anything (which could maybe just be a result of not matching anything, these aren't things likely to match) it's still extracting archives. Which would be fine but it's not cleaning them after either.
Is all of this intended behavior?
Just case here's what I'm autorunning and an amc.log snippet with filenames removed.
Code: Select all
filebot.launcher.exe -script fn:amc --output "D:/Videos" --log-file amc.log --action copy --conflict override -non-strict --def music=n artwork=n subtitles=n clean=y "seriesFormat=TV/{n}/Season {s}/{n} - {sxe} - {t}" "movieFormat=Movies/{n} ({y})/{n}" excludeList=amc.txt "ut_dir=%F" "ut_kind=multi" "ut_title=%N" "ut_label=%L"
Code: Select all
Run script [fn:amc] at [Thu Oct 20 14:14:08 EDT 2016]
Parameter: music = n
Parameter: artwork = n
Parameter: subtitles = n
Parameter: clean = y
Parameter: seriesFormat = TV/{n}/Season {s}/{n} - {sxe} - {t}
Parameter: movieFormat = Movies/{n} ({y})/{n}
Parameter: excludeList = amc.txt
Parameter: ut_dir = D:\Seeding\Example
Parameter: ut_kind = multi
Parameter: ut_title = Example
Parameter: ut_label = other
Using excludes: D:\Videos\amc.txt (28055)
Read archive [example.rar] and extract to [D:\Seeding\Example\example]
Extracting files [D:\Seeding\Example\example.iso]
Exclude: D:\Seeding\Example\example.r00
Exclude: D:\Seeding\Example\example.r01
Exclude: D:\Seeding\Example\example.r02
Exclude: D:\Seeding\Example\example.r03
Exclude: D:\Seeding\Example\example.r04
Exclude: D:\Seeding\Example\example.r05
Exclude: D:\Seeding\Example\example.r06
Exclude: D:\Seeding\Example\example.r07
Exclude: D:\Seeding\Example\example.r08
Exclude: D:\Seeding\Example\example.r09
Exclude: D:\Seeding\Example\example.r10
Exclude: D:\Seeding\Example\example.r11
Exclude: D:\Seeding\Example\example.r12
Exclude: D:\Seeding\Example\example.r13
Exclude: D:\Seeding\Example\example.r14
Exclude: D:\Seeding\Example\example.r15
Exclude: D:\Seeding\Example\example.r16
Exclude: D:\Seeding\Example\example.r17
Exclude: D:\Seeding\Example\example.r18
Exclude: D:\Seeding\Example\example.r19
Exclude: D:\Seeding\Example\example.r20
Exclude: D:\Seeding\Example\example.r21
Exclude: D:\Seeding\Example\example.r22
Exclude: D:\Seeding\Example\example.r23
Exclude: D:\Seeding\Example\example.r24
Exclude: D:\Seeding\Example\example.r25
Exclude: D:\Seeding\Example\example.r26
Exclude: D:\Seeding\Example\example.r27
Exclude: D:\Seeding\Example\example.r28
Exclude: D:\Seeding\Example\example.r29
Exclude: D:\Seeding\Example\example.r30
Exclude: D:\Seeding\Example\example.r31
Exclude: D:\Seeding\Example\example.r32
Exclude: D:\Seeding\Example\example.r33
Exclude: D:\Seeding\Example\example.r34
Exclude: D:\Seeding\Example\example.r35
Exclude: D:\Seeding\Example\example.r36
Exclude: D:\Seeding\Example\example.r37
Exclude: D:\Seeding\Example\example.r38
Exclude: D:\Seeding\Example\example.r39
Exclude: D:\Seeding\Example\example.r40
Exclude: D:\Seeding\Example\example.r41
Exclude: D:\Seeding\Example\example.r42
Exclude: D:\Seeding\Example\example.r43
Exclude: D:\Seeding\Example\example.r44
Exclude: D:\Seeding\Example\example.r45
Exclude: D:\Seeding\Example\example.r46
Exclude: D:\Seeding\Example\example.r47
Exclude: D:\Seeding\Example\example.r48
Exclude: D:\Seeding\Example\example.r49
Exclude: D:\Seeding\Example\example.r50
Exclude: D:\Seeding\Example\example.r51
Exclude: D:\Seeding\Example\example\example.iso
Exclude: D:\Seeding\Example\example.sfv
Exclude: D:\Seeding\Example\example.nfo
No files selected for processing
Failure (°_°)
Re: Label Whitelist?
Posted: 21 Oct 2016, 06:29
by rednoah
--def ut_label=xyz only affects series/movie autodetection. If you want to disable extract specify the
--def skipExtract=y option. No files will be deleted unless a copy has been created successfully beforehand.
As it stands, extracted files that are not processed will be left behind. Set
--def extractFolder so they get left behind on a folder of your choosing.
Newer revisions of the amc script allow you to ignore / completely exclude files from processing via the
--def ignore option so you could just ignore all iso images.