Hello ,
how can we batch remove subtitle from a mkv video? i know we can use "mkvmerge", but is there any script ? like the one that batch remove "header compression" and "change aspect ratio "16:9 to 4:3 and vice versa". Btw the subtitle is softsub
+ Reply to Thread
Results 1 to 4 of 4
-
-
Tried mkvcleaver? In the batch mode can you select to remove audio track 1/2 etc.
edit: Or it maybe just extracts the tracks....then I don't know any other method than making an own script. -
-
I use ffmpeg to strip subs from mkv files as I prefer using external srt files which can be edited. For the batch files, I use something like the following which copies the video and audio but not the sub into a new mkv container file:
set in_file=D:\Videos\Myhomevideo.mkv
set outfile=D:\Videos\Myhomevideo-new.mkv
D:
cd "D:\Software\ffmpeg\ffmpeg_v1.1\bin"
ffmpeg -i "%in_file%" -y -vcodec copy -acodec copy -sn "%outfile%"
Similar Threads
-
How to delete/switch default language in a MKV file
By gquiring in forum Newbie / General discussionsReplies: 5Last Post: 27th Feb 2015, 19:35 -
How to permanently delete subtitles in .mkv files?
By NeroLi8gerzid in forum SubtitleReplies: 1Last Post: 9th Sep 2011, 09:18 -
How to Remove subtitle track from .MKV ?
By Clifurd in forum SubtitleReplies: 2Last Post: 13th May 2011, 23:32 -
Convert subtitle of .idx/.sub to .sup for AVCHD, Remove embedded subtitle.
By wisitch in forum SubtitleReplies: 2Last Post: 18th Jun 2010, 11:25 -
Conver MKV with ENG audio/subtitle to AVCHD or Blu-ray with subtitle help?
By teaberry in forum Video ConversionReplies: 2Last Post: 3rd May 2010, 17:03