Page 1 of 1

Deluge script and subtitles

Posted: 15 Jul 2021, 18:17
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"

Re: Deluge script and subtitles

Posted: 16 Jul 2021, 10:13
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 ...