What's the best way to combine an MP4 and SRT file into a MKV file. Assume the same name of both files, and I have hundreds of them.
I gather a batch file somebody created to do this with MKVToolnix will do the job, but I don't have the skills. Anyone?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Code:
for /r %%a in ("*.mp4") do ffmpeg.exe -i "%%a" -i "%%~dpna.srt" -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s copy -y "%%~dpna.mkv"
Similar Threads
-
How to easily burn in/hardcode srt subtitles to mp4/mkv with VidCoder
By Baldrick in forum User guidesReplies: 65Last Post: 25th Jun 2024, 02:11 -
Looking for Batch Remux Tool to Combine MP4 with Bluray Subtitle Files
By AndersonJames in forum Video ConversionReplies: 0Last Post: 29th Jun 2020, 07:10 -
how to combine init.mp4 and seg-*.m4s files?
By yulsimi in forum Video Streaming DownloadingReplies: 4Last Post: 12th Jan 2019, 14:02 -
How to batch translate multiple SRT files
By demowolf in forum SubtitleReplies: 2Last Post: 22nd Jun 2018, 00:02 -
Combine JPGs and animated GIFs to video? (Any format ok. MP4, MKV, etc.)
By vidyanoob in forum Video ConversionReplies: 6Last Post: 31st May 2018, 03:09