Quote Originally Posted by stoppage View Post
Code:
WARNING: The bitrate parameter is set too low. It takes bits/s as argument, not kbits/s
I don't know where I've gone wrong here, could somebody help me out please?
FFmpeg is telling you that your bitrate is too low. You need to add a "k" to your bitrate so your command should look like:
Code:
ffmpeg -i out2.ogg -b 128k -ar 11025 -s 400x240 -pass 1 -passlogfile log-file outputx.avi
Is there a reason you're converting to AVI? It's a somewhat dated format.