Dear All
I am beginner in the adjustment of the video files
I want to merge to the video file cover, font, subtitle and remove what in the original file has
of course this is easy if I have one or two but I have here anime still running and for now it is 80 episodes so how I can change for all folder?
the single file changing will be as below, at window CMD.exe
please note that I used (MKVBatch) but it didn't deal correct and some files went totally wrong in addition the correct files has no attachmentsCode:"C:/Program Files/MKVToolNix\mkvmerge.exe" --ui-language en --output ^"D:\sample\01.mkv^" --no-subtitles --no-attachments --language 0:und --default-track 0:yes --language 1:jpn --default-track 1:yes ^"^(^" ^"D:\example\01.mkv^" ^"^)^" --language 0:und ^"^(^" ^"D:\example\01.ass^" ^"^)^" --attachment-name ^"adobe arabic.ttf^" --attachment-mime-type application/x-truetype-font --attach-file ^"D:\Attach\adobe arabic.ttf^" --attachment-name cover.jpg --attachment-mime-type image/jpeg --attach-file ^"D:\Attach\cover.jpg^" --track-order 0:0,0:1,1:0
+ Reply to Thread
Results 1 to 21 of 21
-
Last edited by ghazalo; 24th Apr 2019 at 11:52.
-
I would like to help you, but it is not allowed to deal with warez.
I'm pretty sure this thread is closed very soon.
My personal advice: don't use suspicious filenames and directories -
-
Don't make it obvious you're talking about illegally downloaded videos by showing "Torrent" and the series name in your example command line.
-
Example for remuxing mkv files and ass files with matching filenames in one folder.
create *.bat file with following code:
Code:for %%a in (*.mkv) do ("C:\Program Files\MKVtoolnix\mkvmerge.exe" -o "D:\new\%%~na.mkv" "%%~na.mkv" "%%~na.ass")
For your special needs, just extend the bat with language selections and attachments. -
I need more info for that, is that stuff already in the source mkv or is it a external file? What kind of attachments?
-
there is English sub and font attached I want to remove
and there is Arabic font and cover I want to add from external folder called attach
"C:/Program Files/MKVToolNix\mkvmerge.exe" --ui-language en --output ^"D:\sample\01.mkv^" --no-subtitles --no-attachments --language 0:und --default-track 0:yes --language 1:jpn --default-track 1:yes ^"^(^" ^"D:\example\01.mkv^" ^"^)^" --language 0:und ^"^(^" ^"D:\example\01.ass^" ^"^)^" --attachment-name ^"adobe arabic.ttf^" --attachment-mime-type application/x-truetype-font --attach-file ^"D:\Attach\adobe arabic.ttf^" --attachment-name cover.jpg --attachment-mime-type image/jpeg --attach-file ^"D:\Attach\cover.jpg^" --track-order 0:0,0:1,1:0
this is the single file exact changing from MKVtoolnix I want to make the same for whole folderLast edited by ghazalo; 24th Apr 2019 at 14:30.
-
To summarize for me, there are about 80 files in a folder and each file contains an english font, which should be removed and in a separate folder there is a cover and a font, so two files which should be added to each file?
I am from bavaria and sleep for the next hours, in the meantime upload a file and the separate files to google drive or similar (personal space) and pm me the links and I take a look at it tomorrow. It‘s better to test it when creating that bat file stuff. -
ok thanks
have a nice night
also take your time a I am not in a hurry
To summarize for me, there are about 80 files in a folder and each file contains an english sub + font, which should be removed and in a separate folder there is a cover and a font, so two files which should be added to each file?
yes as you said thanksLast edited by ghazalo; 24th Apr 2019 at 15:39.
-
link for 1 file of 80
thanksLast edited by ghazalo; 25th Apr 2019 at 06:17.
-
Please remove the link as fast as possible, link only as pm -> private mail.
Otherwise the thread might be closed. -
At first create a remove sub and attachment.bat file which contains
Code:for %%a in (*.mkv) do ("C:\Program Files\MKVtoolnix\mkvmerge.exe" -o "removed subtitle and attachment\%%~na.mkv" --no-subtitles --no-attachments "%%~na.mkv")
Then create a bat file which contains
Code:for %%a in (*.mkv) do ("C:\Program Files\MKVtoolnix\mkvmerge.exe" -o "muxed\%%~na.mkv" --attachment-name "adobe arabic.ttf" --attachment-mime-type application/x-truetype-font --attach-file "D:\project\Attach\adobe arabic.ttf" --attachment-name "cover.jpg" --attachment-mime-type image/jpeg --attach-file "D:\project\Attach\cover.jpg" "%%~na.mkv" --language "0:ara" "%%~na.ass")
Done -
it works great thank you very much indeed
you make my life easier watching long series on my TV screen
thanks again
Similar Threads
-
How can I merge chapters to mkv
By qaisark787 in forum Authoring (Blu-ray)Replies: 3Last Post: 26th Dec 2016, 10:00 -
how to merge (hardsub) mkv and idx ?
By Germanizer in forum Video ConversionReplies: 7Last Post: 27th Nov 2015, 04:59 -
Merge MKV video and audio
By mlmiller707 in forum Newbie / General discussionsReplies: 1Last Post: 26th Nov 2015, 16:40 -
MKV merge gives audio only
By loninappleton in forum Video ConversionReplies: 4Last Post: 20th Nov 2015, 00:31 -
MKV Merge Makes 29.97 file into 30
By Dorian in forum Video ConversionReplies: 8Last Post: 7th Dec 2014, 03:22