HI all,
Question on subtitles,
Is there a way to set if the directory has subtitles, not to download from opensubtitles.
Second question, is there a way to change the srt file if exists to .eng.srt?
Thanks for you help.
Do not download subtitles if folder already contains subtitles
Re: The directory has subtitles

Yes, the use --file-filter option to include / exclude input files from processing:
Code: Select all
filebot -r . --file-filter '!folder.listFiles{ it.subtitle }' ...
Yes, use --db file to process generic files and use --file-filter option to include / exclude input files from processing:
Code: Select all
filebot -rename --db file -r . --file-filter 'any{ f.subtitle && !lang }{ true }' --format '{fn}.eng'
