I have six episodes of a show and they all look like this in MKVtoolnix:
[Attachment 85387 - Click to enlarge]
I want to remove everything except video and audio streams and ADD an external SRT file, so it looks like this before muxing:
[Attachment 85388 - Click to enlarge]
As far as I know, MKVtoolnix can't do that. What software can?
+ Reply to Thread
Results 1 to 3 of 3
-
-
MKV Toolnix has options to auto-not-select languages you don't want, but they have to be properly tagged so it can recognized them to ignore them. IIRC it also can do that with SDH and commentary, if properly tagged.
-
A small batch file using ffmpeg.exe. All videos and subs in the one folder. Output created in the New\ folder.
newsubs01.cmdCode:@echo off if not exist New\ md New for %%a in ("*.mkv") do if exist "%%~na.srt" ffmpeg.exe -i "%%a" -sub_charenc UTF-8 -i "%%~na.srt" -map 0:0 -map 0:1 -map 1:s -disposition:s:0 forced -c copy "New\%%~na.mkv"
Last edited by pcspeak; 28th Feb 2025 at 02:36. Reason: Clarity
Similar Threads
-
Any way to batch join .srt subtitle files in multiple parts?
By seanmcnally in forum SubtitleReplies: 4Last Post: 14th Apr 2024, 13:21 -
Is there an App can batch mux mp4 and srt files into MKV on MacOS?
By shruru in forum MacReplies: 4Last Post: 21st Jun 2023, 16:48 -
Combine MP4 and SRT together into MKV - multiple files
By Valnar in forum EditingReplies: 2Last Post: 30th May 2023, 18:31 -
Removing Audio Track & Adding Subtitle for Multiple Files at Once
By MohamedYousri in forum EditingReplies: 4Last Post: 25th Feb 2022, 17:18 -
Removing Audio Track & Adding Subtitle for Multiple Files at Once
By MohamedYousri in forum EditingReplies: 1Last Post: 20th Feb 2022, 18:47