Page 1 of 1

Download subtitles only of MKV doesn't have them

Posted: 06 Mar 2019, 23:12
by pois
Hello,

I'm using filebot AMC script and everything is working great.
The only small detail I see, the subtitles are always downloaded.

Is there an option to download subtitles only if the MKV file doesn't have the subtitle for that language.
As it is using mediainfo/ffprobe, it might already know the contents of the MKV file.

Code: Select all

filebot -script fn:amc --output /media --action hardlink -non-strict /completed \
        --log-file /filebot/amc.log --conflict auto \
        --def excludeList=/filebot/amc.txt music=y subtitles=en,es artwork=y extras=y unsorted=y movieFormat='{kodi}' seriesFormat='{kodi}' animeFormat='{kodi}' musicFormat='{kodi}'
Thanks

Re: Download subtitles only of MKV doesn't have them

Posted: 07 Mar 2019, 04:52
by rednoah
I recommend using the suball script before or after the amc script call:
viewtopic.php?f=4&t=5#p8871

That'll give you more options, such as this one:

Code: Select all

--def ignoreTextLanguage=".+"

Re: Download subtitles only of MKV doesn't have them

Posted: 08 Mar 2019, 12:02
by pois
Nice! Will give it a shot