Deluge script and subtitles

Any questions? Need some help?
Post Reply
snowybunting
Posts: 13
Joined: 19 Sep 2019, 17:17

Deluge script and subtitles

Post by snowybunting »

I have a working Deluge script that will attempt to grab a subtitle, but if there isn't one for that particular release it doesn't try to get one from a different release. I can force it afterwards by running fn:suball on the finished directory, I'm wondering if I can add that to my working script? Perhaps something involving "-non-strict" when it looks for the subtitle?

Working script:

Code: Select all

filebot -script fn:amc --output /home --action hardlink --conflict auto -non-strict --log-file /home/log.file --def subtitles=en  artwork=y deleteAfterExtract=y ut_label=Movie ut_dir="$torrentpath/$torrentname" ut_kind="multi" ut_title="torrentname"
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Deluge script and subtitles

Post by rednoah »

You can make multiple standalone filebot calls in your post-process script:

Code: Select all

filebot -script fn:amc ...
filebot -script fn:suball ...
:idea: Please read the FAQ and How to Request Help.
Post Reply