MPEG to FLV Converter
Generate a ready-to-run FFmpeg command to convert MPEG-1 or MPEG-2 video files to FLV (Flash Video) format with your choice of codec, bitrate, and audio settings.
FFmpeg Command Builder
Generated Command
ffmpeg -i input.mpg -c:v libx264 -b:v 2000k -c:a aac -b:a 128k -movflags +faststart output.flv
Command copied to clipboard.
Replace input.mpg with your actual file path.
FFmpeg must be installed — download free from
ffmpeg.org.
Common Presets
MPEG vs FLV — Format Comparison
| Attribute | MPEG-2 | FLV |
|---|---|---|
| Developed by | ISO / IEC | Adobe Systems |
| Typical use | DVD, broadcast TV | Flash web streaming (legacy) |
| Common codecs | mpeg2video, MP2 audio | H.264, VP6, MP3, AAC |
| Flash Player support | Not supported | Native |
| DVD authoring | Supported | Not supported |
| HTTP streaming | Limited | Progressive download |
| File extension | .mpg / .mpeg / .vob | .flv |
Install FFmpeg
Copied!
Summary
Generate a ready-to-run FFmpeg command to convert MPEG-1 or MPEG-2 video files to FLV (Flash Video) format with your choice of codec, bitrate, and audio settings.
How it works
- Choose a video codec: H.264 (libx264) for modern quality, or VP6 (flv) for maximum Flash player compatibility.
- Set the video bitrate — higher values produce better quality and larger files.
- Select an audio codec (AAC or MP3) and set the audio bitrate.
- Optionally override the frame rate, or leave blank to keep the source frame rate.
- Click "Build Command" to generate the exact FFmpeg command in the output panel.
- Copy the command and run it in a terminal on a machine with FFmpeg installed.
Use cases
- Prepare MPEG-2 video for legacy Flash-based web video players.
- Convert MPG recordings for embedding in older HTML pages that use Flash.
- Transcode MPEG-1 VCD content to FLV for archiving on Flash-era media servers.
- Supply FLV files to CDN or video streaming infrastructure that requires the format.
- Generate FLV from MPEG broadcast captures for use with JW Player or older Flowplayer.
- Replace paid video conversion software with a free, scriptable FFmpeg workflow.
- Batch-convert a folder of .mpg files to .flv for a uniform legacy archive.
Frequently Asked Questions
Last updated: 2026-06-11 ·
Reviewed by Nham Vu