> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# HOW TO : Convert mpg files to flv format using ffmpeg
- URL: https://kudithipudi.org/how-to-convert-mpg-files-to-flv-format-using-ffmpeg/
- Published: 2009-07-09T04:08:57.000Z
- Updated: 2009-07-09T04:08:57.000Z
- Description: For my documentation. Here is the command line parameters, I used to convert a video file in mpg format to flv (flash video) format using ffmped...
- Author: admin
- Tags: HOWTO, Technology, Uncategorized, #wp, #wp-post, #Import 2026-08-23 02:32

For my documentation. Here is the command line parameters, I used to convert a video file in mpg format to flv (flash video) format using ffmped (open source format converter)

```
ffmpeg -i Original_Video.mpg -deinterlace -ar 44100 -r 25 -qmin 3 -qmax 6 Converted_Video.flv
```

I will post details on where to get software and such, when I have time :).