I am using ffmpeg to convert one video format to another:

"ffmpeg -ac 1 -i vid1.mp4 -sameq vid1.avi"

And I am getting the error:

"encoding 6 channel(s) is not allowed in mp2"

Now I understand what this means - and the transcoding works fine if I switch sound transcoding off (using "-an" option). How do I get around this and still retain the sound?

More information

Input file:

Seems stream 0 codec frame rate differs from container frame rate: 47.95 (5000000/104271) -> 23.98 (24000/1001) Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'vid1.mp4': Duration: 00:02:03.24, start: 0.000000, bitrate: 8236 kb/s Stream #0.0(und): Video: h264, yuv420p, 1920x816, 23.98 tbr, 23.98 tbn, 47.95 tbc Stream #0.1(und): Audio: aac, 48000 Hz, 5.1, s16 At least one output file must be specified

link|improve this question

feedback

2 Answers

Try to put -ac 2 after -i vid1.mp4, to set 2 audio channels on the output file.

As a general rule, options are applied to the next specified file.

link|improve this answer
Thanks for that - tried it already before and after! Didnt work either way same error - any other ideas? – user7289 Jul 8 '10 at 19:16
feedback
up vote 0 down vote accepted

I ended up transcoding without the sound and it worked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.