I need some help with building a command line to remove an audio track from several video files (same number audio track in each file) and have them output in another folder without that audio track. Can't seem to get that to work.
Can I get some help explaining that to me? Thanks!
+ Reply to Thread
Results 1 to 3 of 3
-
-
First check which ID you want to remove has:
Code:mkvmerge -i "input.mkv"
https://mkvtoolnix.download/doc/mkvmerge.html#mkvmerge.track_ids
Then:
Code:for %a in (*.mkv) do mkvmerge -o "output_folder\%~a" --audio-tracks !2 "%~a"
https://mkvtoolnix.download/doc/mkvmerge.html#d4e1822 -
Similar Threads
-
Is there a tutorial on using mkvmerge?
By InexplicableBurger in forum Newbie / General discussionsReplies: 3Last Post: 26th Mar 2018, 07:31 -
mkvmerge vs mkvextract
By bennyutzer in forum Video ConversionReplies: 12Last Post: 29th Sep 2017, 17:57 -
Help with Mkvmerge
By TeddyBear10 in forum Newbie / General discussionsReplies: 27Last Post: 12th Apr 2016, 09:50 -
MKVmerge GUI help!!
By Skylark in forum Video ConversionReplies: 22Last Post: 11th Nov 2015, 01:04 -
using mkvmerge gui
By zoloabc in forum EditingReplies: 8Last Post: 26th Jun 2014, 12:44