Open mochaaP opened 4 years ago
I will try to implement this.
It is sort of like how the mpv video player has the options "exact, fuzzy, all" which detects and loads external files with the same name as the main video.
But this will have FFmpeg mux them in.
What feature is it?
Find the corresponding subtitle (filename match, different locale suffix) for the current video file. Gives a toggle in "Subtitles" menu and provide an input box or dropdown menu for choosing the locale suffix and subtitle folder.
What problem does this feature solve?
e.g. with the following directory structure:
Select batch mode and use
folder
as the input. Selecteng
as locale andsubs
as subtitle folder. Hit "Convert".Excepted result
video01.mkv
: Encoded withvideo01.eng.ass
.video02.mkv
andvideo03.mkv
: No subtitles.Additional description
Burning will be ignored for a single file when no subtitle files were found. When no locale suffix is provided, use
[filename].ass
(and do not match any language suffix by default).It's also nice to make this work with
MOV Text
with multi subtitle track support:Will result in:
video01.mkv
:eng
,jpn
,chs
,cht
(track no. ordered by a-z or user preferences)video02.mkv
:eng
,cht
video03.mkv
:eng
Thank you! <3