WMV to MPEG Converter
FFmpeg command generator and guide for converting WMV (Windows Media Video) files to MPEG-1 or MPEG-2 format for DVD authoring, legacy device playback, and broadcast workflows.
FFmpeg Command Generator
Configure options below and copy the ready-to-run command.
Video File Inspector
Select any video file to read its metadata — nothing uploaded.
Detected Metadata
Preview frame
WMV vs. MPEG-1 vs. MPEG-2 — Format Comparison
Understand the key differences before converting
| Feature | WMV | MPEG-1 | MPEG-2 |
|---|---|---|---|
| Developer | Microsoft (2003) | ISO/IEC (1993) | ISO/IEC (1995) |
| Max resolution | Up to 4K | 352x288 (PAL VCD) | Up to 1920x1080 |
| Video codec | VC-1, WMV3, WMV2 | MPEG-1 video | MPEG-2 video |
| Audio codec | WMA, WMA Pro | MPEG-1 Layer II | MP2, AC3, AAC |
| Primary use | Windows playback | VCD, legacy | DVD, broadcast, SVCD |
| Interlaced video | Supported | No | Yes |
| DVD compatible | No | No (VCD only) | Yes |
FFmpeg — WMV to MPEG Reference Commands
Copy any command or use the generator on the left
WMV uses VC-1 or WMV3 video and WMA audio, which must be re-encoded. Use mpeg2video for MPEG-2 output and mp2 (MPEG-1 Layer II) for audio to match DVD and broadcast requirements.
For DVD authoring, wrap the MPEG-2 output with DVDStyler or Encore to produce a proper VIDEO_TS folder structure playable on standalone DVD players.
HandBrake — GUI Alternative
Free, Windows / Mac / Linux — no command line needed
HandBrake does not natively output MPEG-2. The recommended workflow is to use HandBrake to convert WMV to a high-quality intermediate (H.264 MKV), then use FFmpeg to re-encode to MPEG-2 from that intermediate for better quality.
- Open HandBrake and drag your WMV file to load it as the source.
- In the Summary tab, set Format to MKV.
- Choose the HQ 1080p30 Surround preset to produce a clean H.264 intermediate.
- Click Start Encode to produce the MKV intermediate file.
- Use the FFmpeg command
ffmpeg -i intermediate.mkv -vcodec mpeg2video -b:v 6000k -acodec mp2 -b:a 192k output.mpegon the MKV file to produce the final MPEG-2.
Converting through a clean intermediate avoids compounding compression artifacts from transcoding WMV directly to MPEG-2.
DVD-Compliant MPEG-2 Requirements
Checklist for DVD player compatibility
Video
- Codec: MPEG-2 (mpeg2video)
- Resolution: 720x480 (NTSC) or 720x576 (PAL)
- Frame rate: 29.97 (NTSC) or 25 fps (PAL)
- Max video bitrate: 9.8 Mbps
Audio
- Codec: MP2 (MPEG-1 Layer II) or AC3
- Sample rate: 48000 Hz
- Bitrate: 192–384 kbps (MP2)
-
Use
-f dvdflag in FFmpeg
Summary
FFmpeg command generator and guide for converting WMV (Windows Media Video) files to MPEG-1 or MPEG-2 format for DVD authoring, legacy device playback, and broadcast workflows.
How it works
- Select your target MPEG format — MPEG-1 for legacy VCD playback or MPEG-2 for DVD and broadcast.
- Choose a quality preset: Fast (lower bitrate), Standard (balanced), or High Quality (archival).
- Enter your input and output filenames to customize the generated FFmpeg command.
- Copy the ready-to-run FFmpeg command and paste it into your terminal or command prompt.
- Optionally drop your WMV file into the file inspector to read its codec, resolution, and duration before converting.
- Run FFmpeg on your computer — conversion happens locally using your CPU or GPU hardware.
Use cases
- Convert WMV recordings to MPEG-2 for burning to DVD with authoring software.
- Prepare WMV files for playback on legacy set-top DVD players and smart TVs.
- Re-encode WMV screen recordings to MPEG-1 for archival on VCD-compatible systems.
- Convert corporate WMV training videos to MPEG-2 for broadcast insertion.
- Transcode WMV files to MPEG-2 for editing in broadcast NLE systems like Avid or Premiere.
- Generate MPEG-2 transport streams from WMV sources for IPTV distribution.
- Convert WMV home videos to standard DVD-compliant MPEG-2 before using DVD Studio Pro or Encore.
- Verify WMV file metadata — codec, resolution, framerate — before deciding on encoding parameters.