anyone got a program or a script that will batch remux subtitles of the same name as the mkv file and remove the one currently in it?
the only program i've found that does it is called cenko, but it also removes all attachments which is annoying.
+ Reply to Thread
Results 1 to 5 of 5
-
-
mkvtoolnix does this. But you have to add the files to the queue one by one which can take a while. So open dd.h264, dd.aac and dd.srt and then press a button to add to queue and then rinse and repeat
-
i know that, but if i have to do it individually like that then its pointless.
-
found a simple script that will do what i need if anyone else comes looking later
Code:for %%A IN (*.mkv) do ( "C:\Program Files\MKVToolNix\mkvmerge.exe" -S -o "output\%%~nxA" "%%~A" --forced-track "0:yes" --default-track "0:yes" --track-name "0:English" --language "0:eng" "%%~nA.ass" )
Similar Threads
-
Mkv's batch srt mux
By euphonic in forum EditingReplies: 8Last Post: 2nd Nov 2016, 13:36 -
Mux Batch convert MKV to MP4 with subtitles in Linux
By coquex in forum Video ConversionReplies: 7Last Post: 17th Jun 2016, 17:47 -
A batch/Python script to Mux subtitles with video
By Scavvy in forum ProgrammingReplies: 4Last Post: 6th Jul 2015, 03:23 -
Batch Mux with ffmpeg
By hbelouf in forum Video ConversionReplies: 1Last Post: 3rd Jul 2012, 07:38 -
Batch mux flv to mkv?
By Pitorasilo in forum Video ConversionReplies: 13Last Post: 14th Apr 2012, 04:25