after taking a look at this: https://superuser.com/questions/1035553/batch-merge-mux-srt-with-mkv-files and this: https://www.youtube.com/watch?v=3LCnU4aT-yM i have a working batch script that does work however i would like to tweak it to make it more efficient and convenient, unfortunately my knowledge is limited so am asking for your help.
i would like to know if the following can be done:
* 1) not having to have the mkv file and audio file be name the same if not can it be so that audio files be rename to the mkv file names (if not i can do it manually using bulk renamer or similar)
* 2) prompt to enter the desired audio delay for the entire run (if left bank=leave as default)
* 3) add that secondary audio and set the language and track name to Spanish
* 4) "move /Y "%%~nf_New.mkv" "%%~nf.mkv" that code renames/moves/replaces the modified file back into the original filename however i could it be set so that it moves all those files to a folder call "to delete so i can manually remove after i confirm everything went accordingly?
* 5) can all this be on a interactive script batch or is it better to automate all and change the code whenever needed?
code so far:
thank you in advance.HTML Code:for %%f in (*.mkv) do ( echo %%~nf "\\192.168.1.9\drivepool\MY stuff\windows stuff\tools\mkv tools\[url=https://www.videohelp.com/software/MKVToolNix]mkvtoolnix[/url]\[url=https://www.videohelp.com/software/MKVToolNix]mkvmerge[/url].exe" -o "%%~nf_New.mkv" "%%~nf.mkv" --language 0:spa --track-name 0:Spanish --sync 0:1000 "%%~nf.eac3" --track-order 0:0,0:1,1:0,0:2 move /Y "%%~nf_New.mkv" "%%~nf.mkv" ) pause
+ Reply to Thread
Results 1 to 1 of 1
Similar Threads
-
Batch adding AAC audio track to MKV
By Binnus in forum EditingReplies: 39Last Post: 2nd Feb 2020, 23:16 -
some help with batch adding a secondary audio to a tv show.
By aniel in forum Newbie / General discussionsReplies: 1Last Post: 7th Jan 2020, 00:45 -
Batch Adding Chapters to Multiple MKV Files
By Shady in forum Newbie / General discussionsReplies: 15Last Post: 2nd Jun 2018, 09:34 -
Batch script for removing/adding mkv covers
By piratikxd in forum ProgrammingReplies: 1Last Post: 6th Jun 2017, 08:47 -
Needed Adding Intro in batch
By bravelighter in forum Video ConversionReplies: 6Last Post: 18th May 2016, 01:30