View Single Post
Old 14th February 2017, 19:07   #14707  |  Link
byteshare
ByteShare
 
byteshare's Avatar
 
Join Date: Sep 2014
Location: On the Internet
Posts: 560
Quote:
Originally Posted by tkwou View Post
Thanks byteshare, it's just that the TrueHD track is already in the Blu-ray .mkv so that I would have to remove the track first by creating a new .mkv file before using Ripbot264. Otherwise it will just demux the TrueHD track and start converting it to Flac which wastes a lot of time. Then when Ripbot264 is finished I would need to remux the .mkv again to add the TrueHD soundtrack back.
If the copy audio isn't working for you, than you'll have to do it manually, however...I recommend using a batch file to do these things. I can help with that if you need it.
I'd use these for now (in .bat form) for stripping out audio (going from audio/video to just video:
Code:
for %%a in (*.mkv) do  "C:\Program Files\MKVToolNix\mkvmerge.exe" -o "..\output\%%a" -A "%%a"
Just audio (audio/video to just audio):
Code:
for %%a in (*.mkv) do  "C:\Program Files\MKVToolNix\mkvmerge.exe" -o "..\output\%%a" -D "%%a"
byteshare is offline   Reply With Quote