PDA

View Full Version : uhg noob help


ZippyDSM
16th June 2007, 18:34
Looking for a MKV tool that can batch process 100 or so vids with a few clicks instead of changing stuff adding to que and repeat X 100,I am adding the yes flag to the subs and 2ndry audio track so it comes up first when you play it, is there anything I can do to quickly reproirtize them?

also media coder is giving me no end of grief Vdub seems to work fine so I doubt its the codecs...

J_Darnley
17th June 2007, 16:33
The command line and mkvmerge is how I would do it.

for %A in (*.mkv) do mkvmerge -o "corrected\%~nA.mkv" --default-track 1:no --default-track 2:yes --default-track 3:yes "%~A"

You will need to check the track IDs before using and change the paths to suit your needs. My test file has video for track zero, english for 1, japanese for 2 and subs for 3. You can check them with "mkvmerge --identify file.mkv". A batch file would also be possible and perhaps more useful for you as then you could just place the batch file on your desktop and drag files onto it to create the corrected ones.