would like to have a batch file for mkvpropedit that can set the subtitle track to display english, as well as the audio track for japanese. there is only one video, audio, and subtitle track for each file, and they should be in the same order. thanks for any help
When I try to use this command:
I get the following error"C:\Program Files\MKVToolNix\mkvpropedit.exe" "D:/*.mkv" --edit track:a1 --set language="jpn" --edit track1 --set language="eng"
"Error: The file '*.mkv' is not a Matroska file or it could not be found."
+ Reply to Thread
Results 1 to 3 of 3
-
Last edited by WakaFlakaFlakes; 12th May 2017 at 14:32.
-
Mkvpropedit does not accept wildcards like "*" in file names. You can use the Windows batch functions:
Code:cd /d D:\ for %%a in (*.mkv) do "C:\Program Files\MKVToolNix\mkvpropedit.exe" "%%a" --edit track:a1 --set language=jpn --edit track:s1 --set language=eng
Similar Threads
-
How to set the charset for the second subtitle language in Potplayer?
By ilbrat in forum Software PlayingReplies: 0Last Post: 25th Dec 2015, 02:30 -
Apocalypto BDRip - Set correct audio language code?
By NuŠleus in forum Blu-ray RippingReplies: 1Last Post: 9th Apr 2015, 16:34 -
Scrtipt to use mkvpropedit to change title
By mkr10001 in forum Newbie / General discussionsReplies: 7Last Post: 22nd Sep 2014, 05:00 -
Using timing for one language to set another
By draekes in forum SubtitleReplies: 7Last Post: 6th Sep 2014, 14:28 -
Voice over in a different language
By Robert Lindstrom in forum AudioReplies: 5Last Post: 7th Dec 2013, 10:43