PDA

View Full Version : [kubuntu] convert flv to mpeg



dineshs
November 28th, 2008, 05:30 AM
Using the following command I tried to convert an flv to mpeg , but the converted stream has no sound .please help

ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320x240 video.mpg

dineshs
November 28th, 2008, 07:29 AM
experts please help

alwayshere
November 28th, 2008, 07:36 AM
theres an online app
www.vixy.net


that should sort ya out

dineshs
November 28th, 2008, 07:52 AM
thank you

FakeOutdoorsman
November 30th, 2008, 02:52 AM
Using the following command I tried to convert an flv to mpeg , but the converted stream has no sound .please help

ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320x240 video.mpg

FFmpeg says:
The bitrate parameters are set too low. It takes bits/s as argument, not kbits/s. Just add "k" to your bitrates:

ffmpeg -i video.flv -ab 56k -ar 22050 -b 500k -s 320x240 video.mpg