orion44
29th July 2019, 00:39
FFmpeg uses the following 5.1 channel layouts:
5.1 (FL+FR+FC+LFE+BL+BR) and
5.1 (side) (FL+FR+FC+LFE+SL+SR)
When downmixing a 5.1 audio (DTS or AC3) to stereo, which channel layout should I use?
I made two batch scripts:
ffmpeg.exe -i "D:\Project\DTS.dts" -af "pan=stereo|FL=FL+0.7071*FC+0.7071*BL|FR=FR+0.7071*FC+0.7071*BR" "D:\Project\WAV.wav"
ffmpeg.exe -i "D:\Project\DTS.dts" -af "pan=stereo|FL=FL+0.7071*FC+0.7071*SL|FR=FR+0.7071*FC+0.7071*SR" "D:\Project\WAV.wav"
Which of the two should I use?
5.1 (FL+FR+FC+LFE+BL+BR) and
5.1 (side) (FL+FR+FC+LFE+SL+SR)
When downmixing a 5.1 audio (DTS or AC3) to stereo, which channel layout should I use?
I made two batch scripts:
ffmpeg.exe -i "D:\Project\DTS.dts" -af "pan=stereo|FL=FL+0.7071*FC+0.7071*BL|FR=FR+0.7071*FC+0.7071*BR" "D:\Project\WAV.wav"
ffmpeg.exe -i "D:\Project\DTS.dts" -af "pan=stereo|FL=FL+0.7071*FC+0.7071*SL|FR=FR+0.7071*FC+0.7071*SR" "D:\Project\WAV.wav"
Which of the two should I use?