Hi.
I have a folder full of mkv files and i want to remove anything from any mkv file except English audio and video how i can do that to a folder full of mkv and not 1 by 1 mkv file?
+ Reply to Thread
Results 1 to 10 of 10
-
-
Suggest that you upload one of your many files (the smallest one) to the cloud somewhere and paste the link here. That way people will have a better handle of your challenge.
Question: are the subtitles hard encoded? Removing hard encoded subtitles is quite the challenge.Last edited by jack_666; 29th Jun 2022 at 15:44.
-
You can choose many mkv files and choose only the video and english sound and remove everything else from all mkv files at this folder?
Without needing to choose it for every mkv file 1 by 1??? -
Doesn't work.
I put the mkvtoolnix and ffmpeg folder and i choose to keep only 1 audio english track and press the button convert but it say down left "waiting for user" without let me choose anything at all. -
Provided laguage track is used and only one video track this batch job::
Code:for %%h in (*.mkv) do ( mkvmerge -o "Merged\%%~nh_MERGED.mkv" --audio-tracks 1 --no-subtitles --language 0:eng "%%h" --track-order 0:0,0:1)
Similar Threads
-
Batch remove subtitles from mkv files
By rumblylwc in forum SubtitleReplies: 19Last Post: 26th Feb 2024, 07:15 -
Remove dual audio to multiple mkv files
By hisaishi in forum EditingReplies: 9Last Post: 19th May 2019, 19:23 -
Is it possible to remove audio files from an mkv without de-/re-muxing?
By pinkfloydfan in forum Newbie / General discussionsReplies: 10Last Post: 18th Nov 2018, 12:29 -
Compress MKV files with multiple audio tracks and subtitles
By tonyaldr in forum Video ConversionReplies: 1Last Post: 29th Jan 2018, 07:57