MPEG to WMV Converter
Use FFmpeg or VLC to convert any MPEG or MPG file to WMV for Windows Media Player compatibility.
Choose Your Conversion Tool
Both tools are free. FFmpeg gives you the most control via the command line; VLC offers a graphical interface.
1
Install FFmpeg
- Windows: Download from ffmpeg.org/download.html, extract the archive, and add the bin/ folder to your PATH.
- macOS: Run brew install ffmpeg in Terminal.
- Linux: Run sudo apt install ffmpeg (Debian/Ubuntu) or sudo dnf install ffmpeg (Fedora).
2
Run the conversion command
Open a terminal (Command Prompt on Windows) in the folder containing your MPEG file and run one of these commands:
Standard WMV2 conversion
ffmpeg -i input.mpeg -c:v wmv2 -b:v 1500k -c:a wmav2 -b:a 128k output.wmv
Higher quality (2 Mbps video)
ffmpeg -i input.mpeg -c:v wmv2 -b:v 2000k -c:a wmav2 -b:a 192k output.wmv
Batch convert all .mpg files (macOS / Linux / Git Bash)
for f in *.mpg; do ffmpeg -i "$f" -c:v wmv2 -b:v 1500k -c:a wmav2 "${f%.mpg}.wmv"; done
Batch convert all .mpg files (Windows Command Prompt)
for %f in (*.mpg) do ffmpeg -i "%f" -c:v wmv2 -b:v 1500k -c:a wmav2 "%~nf.wmv"
3
Verify the output
Open output.wmv in Windows Media Player or VLC. If it plays correctly, the conversion is complete. Replace input.mpeg with your actual filename.
Video Bitrate Reference
800k
Small file
480p / web
480p / web
1500k
Balanced
720p default
720p default
2000k
Higher quality
1080p
1080p
MPEG vs WMV — Format Comparison
| Property | MPEG / MPG | WMV |
|---|---|---|
| Developer | ISO / IEC standards body | Microsoft |
| Container format | MPEG Program Stream (.mpg, .mpeg) | ASF (Advanced Systems Format) (.wmv) |
| Common codecs inside | MPEG-1, MPEG-2 video; MP2 audio | WMV2 / WMV3 video; WMA audio |
| Windows Media Player | Limited / requires codec pack | Native support, no extras needed |
| PowerPoint embedding | Not directly supported | Supported natively in Office |
| Cross-platform support | Broad (older standard) | Windows-primary; VLC on other platforms |
FFmpeg Command Builder
Fill in the fields below to generate a ready-to-run FFmpeg command for your MPEG to WMV conversion.
ffmpeg -i video.mpeg -c:v wmv2 -b:v 1500k -c:a wmav2 -b:a 128k video.wmv
Copied!
Summary
Use FFmpeg or VLC to convert any MPEG or MPG file to WMV for Windows Media Player compatibility.
How it works
- Choose a free tool: FFmpeg (command-line) or VLC (graphical interface).
- Install the tool on Windows, macOS, or Linux using the links provided.
- Follow the step-by-step instructions for your chosen tool.
- Run the conversion command or use the export dialog to produce a WMV file.
- Open the output in Windows Media Player or any compatible player to verify.
Use cases
- Convert old MPEG/MPG recordings to WMV for playback on Windows Media Player.
- Prepare videos for Windows-only corporate environments that require WMV format.
- Share video files with colleagues who use legacy Windows software expecting WMV.
- Embed video content in PowerPoint presentations, which natively support WMV.
- Reduce file size by re-encoding older MPEG-1/MPEG-2 video to the WMV codec.
- Archive camcorder footage in WMV for long-term storage on Windows file servers.
Frequently Asked Questions
Last updated: 2026-06-11 ·
Reviewed by Nham Vu