Search found 5 matches
- 15 Feb 2017, 06:14
- Forum: Episode / Movie Naming Scheme
- Topic: How to add number after subtitles conflicts?
- Replies: 8
- Views: 5301
Re: How to add number after subtitles conflicts?
After a bit of stupid trying {'.'+fn.match(/chn&eng|cht&eng|chn&eng|chs&eng|eng&chn|eng&chi|eng&chs|eng&cht|chi1|chi2|chi|chn1|chn2|chn3|chn|chs|chs1|cht1|cht2|cht|eng|eng1|eng2|eng/)} it does give me the results I want but it will match the sub description with the filename itself which will add an ...
- 15 Feb 2017, 04:57
- Forum: Episode / Movie Naming Scheme
- Topic: How to add number after subtitles conflicts?
- Replies: 8
- Views: 5301
Re: How to add number after subtitles conflicts?
Code: Select all
{home}/Steven Spielberg/{y} - {n.replaceAll(/[`´‘'*’?":ʻ,]/, "")}/{n.upperInitial().space('.').replaceAll(/[`´‘*'’?":ʻ,]/, "")}.{y}{'.'+source}.{vf}.{vc}{'.'+group}{'name.chi'.match(/\.\w+$/)}

- 14 Feb 2017, 20:48
- Forum: Episode / Movie Naming Scheme
- Topic: How to add number after subtitles conflicts?
- Replies: 8
- Views: 5301
Re: How to add number after subtitles conflicts?
Can I actually match only .chi1/.eng/.chi&eng into all new .srt filenames (extracting srt descriptions)?
Using this
instead of
will ignore all other languages sub files.
Thanks for the help, filebot newbie asking so much.
Using this
Code: Select all
fn.match(/\.chi\d*/)
Code: Select all
{subt}
Thanks for the help, filebot newbie asking so much.
- 14 Feb 2017, 16:01
- Forum: Episode / Movie Naming Scheme
- Topic: How to add number after subtitles conflicts?
- Replies: 8
- Views: 5301
Re: How to add number after subtitles conflicts?
Why do you have two Chinese subtitles? What makes them different? Hearing Impaired? Charset? You'll have to somehow come up with unique file paths in your format (e.g. by proping the subtitle content, keeping parts of the original filename, etc) . Some of them are Traditional Chinese and some of ...
- 14 Feb 2017, 15:07
- Forum: Episode / Movie Naming Scheme
- Topic: How to add number after subtitles conflicts?
- Replies: 8
- Views: 5301
How to add number after subtitles conflicts?
I have multiple subtitles files in the same language, which I often get conflicting error renaming. Example: Love and Death.chi.srt Love and Death.chi1.srt When I use {subt} It would just give me back two exact same "Love and Death.chi.srt" with conflicting error. What should I do to just add a ...