Hi, I am trying to export all audio channels from a quicktime file which has the following audio configuration:
Track 1 – mono
Track 2 – mono
Track 3 – mono
Track 4 – mono
Track 5 – mono
Track 6 – mono
Track 7 – stereo
I am using:
CODE: SELECT ALL
ffmpeg -i Feature.mov -map 0:1 -y Left.wav -map 0:2 Right.wav -map 0:3 Center.wav -map 0:4 LFE.wav -map 0:5 Left_Surround.wav -map 0:6 Right_Surround.wav -map 0.7 Left_Total.wav -map 0.8 Right_Total.wav
But this is giving me an error, ‘Data stream encoding not supported yet (only streamcopy)’.
So I want to output 6 mono wavs and 1 stereo wav.
How do I do that?
Kind regards.