Hi
What is the best approach to deal with multipart extensions, in my case I need .<lang code>.[forced].{ext} treated as a single extension? Could a scripted Addin be used to identify the extension?
Background....
I've worked with the multipart_extensions advanced setting, but it doesn't seem to be enough for what I need at the moment.
While ripping a number of DVD's, I end up with files like
episode 1.mp4
episode 1.sub
episode 1.idx
Where the "sub" and "idx" files are two parts of the same subtitle.
This is mostly fine, but the language detail is missing. I use 'Plex' regularly for media management, and it solves this by expecting
episode 1.<lang code>.<ext>
The problem is, when there are multiple languages, I need to end up with
episode 1.mp4
episode 1.en.sub
episode 1.en.idx
episode 1.fr.sub
episode 1.fr.idx
episode 1.de.sub
episode 1.de.idx
While I mostly don't care for english TV shows (I tend to discard the subtitles), when the spoken language is foreign (usually japanese), I want to keep the local language subtitles, and name them so plex knows they are local language and can apply them automatically when the audio track is tagged as a foreign language.
In addition, I have DVDs with english audio, but subtitled foreign parts..
To tell plex a particular subtitle should be enabled automatically despite the language appearing to be local, you simple add a forced keyword, as in
episode 1.en.forced.sub
episode 1.en.forced.idx
Is there a way to intelligently and programmatically deal with extensions containing lots of parts?
Even support for wildcards or regular expressions in the "multipart_extension" field would probably be sufficient.
Many Thanks