Page 1 of 1

increase audio bitrate for video?

PostPosted: Tue Mar 01, 2011 5:54 am
by mynameis905
The video streaming option has been great and has been working really well for me but I would like to improve the audio quality. For the mp4>flv transcode, I tried inserting -ab 192kb into the command line which improved the audio quality dramatically but it broke the video player's controls. If I tried to skip ahead or change the streaming bitrate it would just go back to the beginning of the video. Is there a simple way to increase the audio bitrate without breaking the video controls? Here is the command line I tried:

ffmpeg -ss %o -i %s -async 1 -b %bk -s %wx%h -ar 44100 -ab 192kb -ac 2 -v 0 -f flv -

I also tried this, which improved the audio but also broke the video controls:

ffmpeg -ss %o -i %s -async 1 -b 192kb %bk -s %wx%h -ar 44100 -ac 2 -v 0 -f flv -

v4.3, Windows install on a Windows Home Server

Thanks for any help and I apologize if this has already been discussed.

PostPosted: Tue Mar 01, 2011 6:52 pm
by GJ51
ffmpeg -v 0 -ss %o -async 30 -i %s -f flv -b %bk -r 23.976 -s %wx%h -acodec copy -

PostPosted: Wed Mar 02, 2011 4:47 pm
by mynameis905
GJ51 wrote:ffmpeg -v 0 -ss %o -async 30 -i %s -f flv -b %bk -r 23.976 -s %wx%h -acodec copy -


Thanks for the quick reply.
Unfortunately this gives me the same result, improved audio but broken player controls. Maybe I've got some other problem?