Advertisement
oxb

Batch Remux MKV

oxb
Oct 24th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. Follow these directions: https://www.youtube.com/watch?v=DJM4CSUEIeI
  2. basically finding source/destination directories, then copying the output command line from MKVmerge
  3.  
  4. //open text editor, save as file.bat in the same directory as the source files.
  5.  
  6. for /r %%a in (*.mkv) do call "C:\Program Files\MKVToolNix\mkvmerge.exe" -o "X:\video\film\anime\monster\Monster(2)\%%~na.mkv" "--default-track" "0:yes" "--forced-track" "0:no" "--display-dimensions" "0:1280x960" "--language" "1:eng" "--track-name" "1:English 2ch" "--default-track" "1:no" "--forced-track" "1:no" "--language" "2:jpn" "--track-name" "2:Japanese 2ch" "--default-track" "2:yes" "--forced-track" "2:yes" "--language" "3:eng" "--track-name" "3:Titles and Signs" "--default-track" "3:no" "--forced-track" "3:yes" "--language" "4:eng" "--track-name" "4:Styled Subtitles" "--default-track" "4:yes" "--forced-track" "4:yes" "-a" "1,2" "-d" "0" "-s" "3,4" "--attachments" "1,2,3,4,5,6,7,8,9,10,11" "-T" "--no-global-tags" "%%a" "--track-order" "0:0,0:1,0:2,0:3,0:4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement