Log in

View Full Version : How to Combine Stereo.wav and Centre.wav and Ouput to AC-3


PixelPirate
21st May 2024, 14:40
Does anyone know how to combine a stereo.wav file and a Centre.wav file and output to an AC-3 file at 224 Kbps with either eac3to or FFmpeg?

tebasuna51
22nd May 2024, 12:07
ffmpeg -i Stereo.wav -i Center.wav -filter_complex "[0:a][1:a]amerge=inputs=2" -c:a ac3 -b:a 224k output.ac3

More info about this https://trac.ffmpeg.org/wiki/AudioChannelManipulation

PixelPirate
22nd May 2024, 15:21
ffmpeg -i Stereo.wav -i Center.wav -filter_complex "[0:a][1:a]amerge=inputs=2" -c:a ac3 -b:a 224k output.ac3

More info about this https://trac.ffmpeg.org/wiki/AudioChannelManipulationIt works. Thank you.