Hi,
I usually download chinese subtitles from another site as it includes both English and Chinese which helps me learn, but when I rename them using Filebot, it'll automatically change the extension to 'xxxx.eng.srt'.
Is there any way to change the 'eng' part to a 'zh' or anything else?
Thank you!
Renaming subtitle language?
Re: Renaming subtitle language?
Yes, you can hardcode the language suffix in your custom format:
https://www.filebot.net/naming.html
e.g. custom snippet:
e.g. if you're using the {plex} binding, then you can do String replacement like so:
https://www.filebot.net/naming.html
e.g. custom snippet:
Code: Select all
{if (f.subtitle) '.zho'}
e.g. if you're using the {plex} binding, then you can do String replacement like so:
Code: Select all
{plex.path.replace('.eng', '.zho')}