I have anime called Fairy Tail and have 175 files on it
i would like to change the default title(Main title) of each file to the same one as file name ,right now by default the title is (Fairy Tail Part X Disc X) and if possible i would like to remove it or change it to the same as file name
Default Arguments CMDand i attached some basic info using mkvtoolnixCode:"C:/Program Files/MKVToolNix\mkvmerge.exe" --ui-language en --output ^"E:\Fairy Tail\Fairy Tail 1 ^(1^).mkv^" --language 0:und --default-track 0:yes --language 1:jpn --language 2:eng --track-name ^"2:English Subs Retail^" --default-track 2:yes ^"^(^" ^"E:\Fairy Tail\Fairy Tail 1.mkv^" ^"^)^" --title ^"Fairy Tail Part 1 Disc 1^" --track-order 0:0,0:1,0:2
looking forward to your help
+ Reply to Thread
Results 1 to 6 of 6
-
-
To add:
--title "%%~na"
To remove:
--title ""
(You can add these to the command you got in the other thread. Then all will be done in a single step.)
Are you aware of the mkvmerge documentation? You seem to ask a lot of similar questions in short succession.
There's also mkvpropedit which changes mkv headers without a remux:
for %%a in (*.mkv) do mkvpropedit "%%a" --edit info --set "title=%%~na"
or
for %%a in (*.mkv) do mkvpropedit "%%a" --edit info --delete titleLast edited by sneaker; 9th Jan 2018 at 15:51.
-
-
-
-
mkvpropedit (without the "j") is part of mkvtoolnix, in the same folder as mkvmerge. jmkvpropedit is a third-party GUI for mkvpropedit - you don't need it if you want to use from command/batch.
Similar Threads
-
Change Fonts in Subtitles and Title in mkv File
By RBCC in forum SubtitleReplies: 26Last Post: 19th Apr 2017, 13:25 -
.bat file to change title of mkv file
By mkr10001 in forum Newbie / General discussionsReplies: 0Last Post: 17th Dec 2013, 09:03 -
Avidemux title change
By Pitorasilo in forum Newbie / General discussionsReplies: 6Last Post: 5th Aug 2013, 00:55 -
Title In VLC Media Player doesnt Match File Title
By Sulli in forum Newbie / General discussionsReplies: 5Last Post: 12th Jul 2013, 03:46 -
Need to change DVD title
By sjmaye in forum DVD RippingReplies: 1Last Post: 26th Jan 2013, 04:41