Hello,
I have 2 sets of mkv files, one is HEVC and the other is 264.
I'd like to take the HEVC ones (remove useless subtitles) but keep the rest, and take the 264 ones and only keep the chapters, 2 subtitles, and 1 audio.
Doing this on the mkvtoolnix GUI, then take the command line and adapt the lines for all episodes. (I was initially thinking of extracting them then adding them as separate files, but adding both HEVC and 264 in the GUI and only keep what I want seems better)
However, the audio from the 264 files is around 255 MB, more than the HEVC files... So I'd like to convert the new audio which is DTS to Opus to save some disk space. Can I do that using mkvtoolnix ? (Like an extra command option ?) Or do I have to extract all the wanted audios and convert them using something else ?
If I have to use something else, is Ffmpeg good for that?
Thx for any imput
+ Reply to Thread
Results 1 to 4 of 4
-
-
Can be done by clever Ffmpeg-GUI, convert audio section. After conversion, you can mux the new created audiostream with your hevc movie, selecting the streams you want, in the multiplex section to mkv/mp4 or other container.
-
-
Well, I used this command in a batch:
Code:for %%a in ("*.mkv") do ffmpeg.exe -i "%%a" -map 0 -c:v copy -c:s copy -c:a libopus -b:a 192k "newfile\%%~na.mkv" & move "%%a" "oldfile\%%a"
Also I wanted to use --vbr on, but I found it is on by default, but if I wanted to have it in the command, where should I add that option?
Edit: Just tried with StaxRip, set it to passthrough on video, an convert audio to Opus 192kbps, but it seems that the audio is a little bit cut off at the start and abruptly starts (i don't think there any delay)Last edited by UserName351; 29th Dec 2021 at 20:24.
Similar Threads
-
MKVtoolnix PCM + DTS HD XLL
By mocarob in forum Video ConversionReplies: 0Last Post: 23rd Sep 2020, 18:33 -
MP4 audio reports AAC but is actually Opus. Possible to repair?
By Dsme217 in forum Newbie / General discussionsReplies: 7Last Post: 5th Mar 2019, 14:44 -
How to convert only Audio (DTS to AAC/AC3) for Video File in MKVToolNix GUI
By brijeshkumarsingh in forum Video ConversionReplies: 1Last Post: 28th Nov 2018, 07:11 -
What is better DTS Core @ 1509 Kbps or AAC @ 700-1000 Kbps from DTS-HD MA
By vash1 in forum Newbie / General discussionsReplies: 5Last Post: 14th Nov 2018, 12:29 -
Convert 5.1 audio AAC to AC3 DVD - Pal Vob- no audio for voices
By allrounder55 in forum AudioReplies: 0Last Post: 20th Aug 2017, 02:22