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.

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.

# Install FFmpeg (Mac)
brew install ffmpeg
# Install FFmpeg (Windows)
winget install ffmpeg
# WMV to MPEG-2 standard quality
ffmpeg -i input.wmv -vcodec mpeg2video -b:v 4000k -acodec mp2 -b:a 192k output.mpeg
# WMV to MPEG-2 DVD-compliant (NTSC 720x480)
ffmpeg -i input.wmv -vcodec mpeg2video -b:v 6000k -s 720x480 -r 29.97 -acodec mp2 -b:a 192k -ar 48000 -f dvd output.mpeg
# WMV to MPEG-1 (VCD compatible)
ffmpeg -i input.wmv -vcodec mpeg1video -b:v 1150k -s 352x240 -r 29.97 -acodec mp2 -b:a 128k output.mpg
# WMV to MPEG-2 PAL DVD (720x576)
ffmpeg -i input.wmv -vcodec mpeg2video -b:v 6000k -s 720x576 -r 25 -acodec mp2 -b:a 192k -ar 48000 -f dvd output.mpeg

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.

  1. Open HandBrake and drag your WMV file to load it as the source.
  2. In the Summary tab, set Format to MKV.
  3. Choose the HQ 1080p30 Surround preset to produce a clean H.264 intermediate.
  4. Click Start Encode to produce the MKV intermediate file.
  5. Use the FFmpeg command ffmpeg -i intermediate.mkv -vcodec mpeg2video -b:v 6000k -acodec mp2 -b:a 192k output.mpeg on 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 dvd flag 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

  1. Select your target MPEG format — MPEG-1 for legacy VCD playback or MPEG-2 for DVD and broadcast.
  2. Choose a quality preset: Fast (lower bitrate), Standard (balanced), or High Quality (archival).
  3. Enter your input and output filenames to customize the generated FFmpeg command.
  4. Copy the ready-to-run FFmpeg command and paste it into your terminal or command prompt.
  5. Optionally drop your WMV file into the file inspector to read its codec, resolution, and duration before converting.
  6. 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.

Frequently Asked Questions

Last updated: 2026-06-11 · Reviewed by Nham Vu