for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --default-track 2 "%%~a"
hello there
the script above doing well with me making the sub default ,but I wonder always it must copy to new folder (I mean it cannot be a quick action within the video file without wasting the time of copying to a new video again?)
of course I am talking about series with 99 ep and every ep around 1GB, this a long time to copy
+ Reply to Thread
Results 1 to 9 of 9
-
-
You could use mkvpropedit (https://mkvtoolnix.download/doc/mkvpropedit.html) instead of mkvmerge to do that.
users currently on my ignore list: deadrats, Stears555, marcorocchini -
-
Doesn't the 'Example'-section cover what you want?
users currently on my ignore list: deadrats, Stears555, marcorocchini -
-
Did you actually read what is written there?
This removes the default flag from subtitle track 1 and sets if for subtitle track 2,Code:mkvpropedit movie.mkv --edit track:s1 --set flag-default=0 --edit track:s2 --set flag-default=1
for audio tracks:
this would remove the default flag from audio track 1 and sets if for audio track 2.Code:mkvpropedit movie.mkv --edit track:a1 --set flag-default=0 --edit track:a2 --set flag-default=1
Note the comment:
So if you do not want to end up with multiple tracks flagged as default make sure to disable the default flag for other tracks.Note that mkvpropedit(1), unlike mkvmerge(1), does not set the 'default track flag' of other tracks to '0' if it is set to '1' for a different track automatically.
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
-
You select a track using '--edit track:..' you then set disable the default flag with '--set flag-default=0' or enable the default flag with '--set flag-default=1'.
You should read the whole page if you want to understand things.
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
found easy use tool for that to whom just like me beginner
the tool name jmkvpropedit-1.4.3 (just extract and use)
https://www.mediafire.com/file/vhllg04an7u4z53/jmkvpropedit-1.4.3-bin.rar/file
very handy in making default and such thingLast edited by ghazalo; 5th Jan 2024 at 04:00.
Similar Threads
-
Any way to make certain settings default? (XMedia Recode)
By AnonThrowaway in forum Newbie / General discussionsReplies: 4Last Post: 11th Sep 2023, 11:27 -
Cedocida by default?
By Mr Chris in forum Newbie / General discussionsReplies: 0Last Post: 8th May 2023, 22:19 -
How can I uncheck this as default ?
By pchan in forum FeedbackReplies: 2Last Post: 20th May 2022, 11:32 -
MP4 default volume
By Shadowflyer in forum Newbie / General discussionsReplies: 8Last Post: 10th Nov 2021, 18:32 -
any way to make VLC to scale back videos as big as my monitor by default
By StarTrek1 in forum Software PlayingReplies: 4Last Post: 10th Oct 2019, 15:02


Quote