-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
This only works if you A) have those parameters in your options file, and B) if the file you're trying to batch is MKV already. If you want to batch an entire directory from say, .ts to .mkv. This simply doesn't do that.
This would actually work better:
for %%A IN (*.ts) do ( D:\path\to\MKVToolNix\mkvmerge.exe -o ".\out\%%~nA.mkv" "%%~A") pause
Inside a batch (.bat) file and put into the directory you're converting the files to. *.ts can be any video format mkvmerge accepts, i.e. *.mp4 - then baddaboom-badda-bing, all your new mkv's are in the out directory.
EagleScreech