Convert .flv (Google Videos) to .mpg using ffmpeg

| | TrackBacks (0)

Nice little example of using ffmpeg to convert a flash movie.

Convert .flv (Google Videos) to .mpg using ffmpeg -- Ubuntu Geek


convert .flv to .mpg using ffmpeg

First you need to download your .flv file to a folder and you need to Open a terminal window and go in to the .flv file folder and type the following command

ffmpeg -i jokes.flv -ab 56 -ar 22050 -b 500 -s 320ラ240 jokes.mpg

jokes.flv is the file you want to convert, so the name must be the same as the source file.You can name jokes.mpg whatever you want as long as it has the .mpg extension.

-b bitrate: set the video bitrate in kbit/s (default = 200 kb/s)

-ab bitrate: set the audio bitrate in kbit/s (default = 64)

-ar sample rate: set the audio samplerate in Hz (default = 44100 Hz)

-s size: set frame size. The format is WxH (default 160ラ128 )

0 TrackBacks

Listed below are links to blogs that reference this entry: Convert .flv (Google Videos) to .mpg using ffmpeg.

TrackBack URL for this entry: http://kennethhunt.com/mt/mt-tb.cgi/1841

About this Entry

This page contains a single entry by klsh published on July 27, 2007 7:07 AM.

wordpress plugin to update twitter was the previous entry in this blog.

deshake motion video with virtualdub filter is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.