Hi
In the old days when Xvid/avi was the most common format, I often used to demux the AC3 6 channel sound from videos and then downmix and convert to Mp3 using the Lame encoder. You could also boost the dialogue track only so that it wasn't too quiet when listening through stereo speakers.
With current Mp4 files that contain 6 channel AAC audio streams what tools do I need to accomplish the same task please?
1, Demux the AAC stream
2. Downmix to stereo AAC whilst also boosting the dialogue channel only
3. Remux with the original video stream
Thanks for your advice![]()
+ Reply to Thread
Results 1 to 5 of 5
-
-
Thanks for your reply, this seems to work very well, I am using the command line...
ffmpeg -i input.mp4 -c:v copy -ac 2 -af "pan=stereo|FL < FL+1.414FC+0.5BL+0.5SL+0.25LFE+0.125BR|FR < FR+1.414FC+0.5BR+0.5SR+0.25LFE+0.125BL" output.mp4
my input audio has a bitrate of 224 but the resulting output drops to 128, how can I specify a higher rate or maintain 224 please?
I'm guessing that FFMpeg is not too fussy and this will also work with MKV files?
-
Code:
ffmpeg -i input.mp4 -c:v copy -c:a aac -b:a 224k -ac 2 -af "pan=stereo|FL < FL+1.414FC+0.5BL+0.5SL+0.25LFE+0.125BR|FR < FR+1.414FC+0.5BR+0.5SR+0.25LFE+0.125BL" -f matroska output.mkv
Similar Threads
-
Convert AAC 6 Channel Audio
By Evokazz in forum Video ConversionReplies: 15Last Post: 31st Aug 2016, 20:33 -
Extract 6 Channel Audio From AAC
By TheRandomOne in forum AudioReplies: 5Last Post: 30th Nov 2015, 16:05 -
Surround channel downmixing to stereo in movie rips - why?
By smokeluvr1971 in forum AudioReplies: 5Last Post: 14th May 2014, 18:30 -
Downmixing 5.1 Channel AAC Audio to Stereo w/o "perceivable" quality loss?
By Whitezombie455 in forum AudioReplies: 2Last Post: 9th Sep 2013, 02:10 -
Converting 6 channel audio to 2 channel stereo- Help needed
By drashkum in forum AudioReplies: 2Last Post: 7th Sep 2013, 22:33