WMV to MP4 Converter
Step-by-step guide for converting WMV (Windows Media Video) files to MP4 using FFmpeg, VLC, and HandBrake, plus a client-side video file metadata inspector.
Video File Inspector
Select any video file to read its metadata instantly — 100% client-side, nothing uploaded.
Detected Metadata
Preview frame
WMV vs. MP4 — Format Comparison
Know what you are converting and why
| Feature | WMV | MP4 |
|---|---|---|
| Developer | Microsoft (2003) | MPEG group / ISO (2001) |
| Video codec | VC-1, WMV3, WMV2 | H.264, H.265, AV1 |
| Audio codec | WMA, WMA Pro | AAC, MP3, Opus |
| Platform support | Windows only (natively) | Universal — every device |
| Streaming | Not supported | Supported (faststart) |
| Browser playback | Not supported | Native in all browsers |
FFmpeg (Recommended — full codec control)
Free, cross-platform, most flexible
WMV uses VC-1 or WMV3 video and WMA audio, neither of which are compatible with the MP4 container, so re-encoding to H.264 and AAC is required. Use libx264 for video and aac for audio. Add -movflags +faststart for web-friendly streaming.
brew install ffmpeg
# Install on Windows via winget
winget install ffmpeg
# Standard WMV to MP4 conversion (H.264 + AAC)
ffmpeg -i input.wmv -c:v libx264 -crf 22 -c:a aac -b:a 192k output.mp4
# High quality + web streaming (moov atom at start)
ffmpeg -i input.wmv -c:v libx264 -crf 18 -preset slow -c:a aac -b:a 192k -movflags +faststart output.mp4
# Smaller file size (acceptable quality for web)
ffmpeg -i input.wmv -c:v libx264 -crf 26 -preset fast -c:a aac -b:a 128k output.mp4
CRF 18 = near-lossless (larger file). CRF 28 = smaller file with more visible compression. CRF 22–23 is the recommended default for most WMV content.
HandBrake (GUI — quality-focused encoding)
Free, Windows / Mac / Linux
- Download and open HandBrake from handbrake.fr.
- Drag your WMV file onto the HandBrake window to load it as the source.
- In the Summary tab, set Format to MP4.
- Choose a preset — Fast 1080p30 or HQ 1080p30 Surround works well for most WMV files.
- In the Video tab, set the encoder to H.264 (x264) and adjust the RF quality slider (lower RF = higher quality; RF 20 is a good default for WMV sources).
- In the Audio tab, set the encoder to AAC and bitrate to at least 160 kbps.
- Click Browse to set a destination MP4 file, then click Start Encode.
VLC Media Player (GUI — no command line)
Free, Windows / Mac / Linux
- Open VLC and go to Media → Convert / Save.
- Click Add, select your WMV file, then click Convert / Save.
- Click the Edit selected profile wrench icon next to the Profile drop-down.
- In the Encapsulation tab, select MP4 / MOV.
- In the Video codec tab, choose H-264 and set a bitrate (e.g., 4000 kb/s for 1080p).
- In the Audio codec tab, choose MPEG 4 Audio (AAC) at 192 kbps.
- Set the destination file with an .mp4 extension and click Start.
VLC decodes the WMV source and re-encodes to H.264 MP4. Encoding time depends on file length and your CPU speed.
Summary
Step-by-step guide for converting WMV (Windows Media Video) files to MP4 using FFmpeg, VLC, and HandBrake, plus a client-side video file metadata inspector.
How it works
- Click "Choose Video File" and select any WMV or other video file from your computer.
- The tool reads basic metadata locally in your browser — nothing is uploaded to any server.
- Review the detected file name, size, duration, resolution, and MIME type.
- Choose a desktop conversion method from the guides below (FFmpeg, VLC, or HandBrake).
- Run the provided command or follow the GUI steps to produce your MP4 file.
- Drop the resulting MP4 file back here to verify its metadata after conversion.
Use cases
- Convert WMV recordings from Windows Movie Maker or screen capture tools to MP4.
- Make WMV files playable on iPhones, Android phones, and smart TVs.
- Upload WMV videos to YouTube, Facebook, or Vimeo, which prefer MP4 input.
- Convert corporate WMV presentations or training videos for cross-platform distribution.
- Shrink large WMV files by re-encoding to H.264 MP4 at a lower bitrate.
- Convert WMV files for editing in Final Cut Pro, Premiere, or DaVinci Resolve.
- Batch-convert a library of WMV recordings to a streaming-friendly MP4 format.
- Verify video metadata — codec, resolution, duration — before deciding on conversion settings.