Re: ffmpeg audio decoding broken

Top Page

Reply to this message
Author: Christian Marillat
Date:  
To: dmo-discussion
Subject: Re: ffmpeg audio decoding broken
Christian Marillat <marillat@???> writes:

> "Christian D." <Christian_Duerselen@???> writes:
>
> [...]
>
>> Error while opening encoder for output stream #0.0 - maybe incorrect
>> parameters such as bit_rate, rate, width or height
>>
>> Can anybody reproduce this behaviour or error?
>
> You need to reduce the channel number from 5.1 to 2
>
> Try with :
>
> ffmpeg -i test.ac3 -ac 2 test.mp3


The bitrate should be also added. The default is low 64 kbits/s.

ffmpeg -i test.ac3 -ac 2 -ab 128k test.mp3

Christian