I am trying to get AMC to ignore some torrents, such as when I download a book.
I thought I could assign a label in using labelplus in deluge, but I can't find how to figure out what the environment variable for the label would be.
Running filebot 4.5.3, windows vista, and deluge.
thanks for any ideas
Make AMC ignore some torrents
Re: Make AMC ignore some torrents
Deluge doesn't pass the label to external programs so you can't do it via labels.
You could try the --def ignore option.
You could try the --def ignore option.
-
- Posts: 3
- Joined: 14 Dec 2014, 00:26
Re: Make AMC ignore some torrents
I can't find any examples of -def ignore. I've tried -def ignore=testfolder but that doesn't seem to work. Any ideas?
Re: Make AMC ignore some torrents
For example:--def ignore=regex Ignore filepaths that match the given regular expression
Code: Select all
--def "ignore=testfolder"
-
- Posts: 3
- Joined: 14 Dec 2014, 00:26
Re: Make AMC ignore some torrents
I can confirm that moving the quote from ignore="testfolder" to "ignore=testfolder" works
thanks
thanks
Re: Make AMC ignore some torrents
how would one apply multiple folders?
or
or
Code: Select all
--def "ignore=testfolder1, testfolder2"
Code: Select all
--def "ignore=testfolder1" --def "ignore=testfolder2"
Code: Select all
--def "ignore=testfolder1" "ignore=testfolder2"
Re: Make AMC ignore some torrents
--def ignore takes a single regular expression.
Hence:
Hence:
Code: Select all
--def "ignore=testfolder1|testfolder2"
Code: Select all
--def "ignore=testfolder[0-9]"