WMV to MOV Converter

Learn how to convert WMV video files to MOV (QuickTime) format using free tools like FFmpeg, HandBrake, and VLC, with step-by-step command references.

Video File Inspector

Select any video file to read its metadata — 100% client-side, nothing uploaded.

WMV vs. MOV — Format Comparison

Know what you are converting and why

Feature WMV MOV
Developer Microsoft (Windows Media) Apple (QuickTime)
Video codec WMV3, VC-1 (proprietary) H.264, H.265, ProRes, AAC
Audio codec WMA (proprietary) AAC, MP3, ALAC
Platform Windows native, poor macOS macOS, iOS native
DRM support Yes (can block conversion) Optional (FairPlay)
Apple editing Not supported (needs conversion) Native (Final Cut, iMovie)
Streaming Windows Media Services only HTTP Live Streaming (HLS)

FFmpeg (Recommended — full codec control)

Free, cross-platform, most flexible

FFmpeg decodes WMV/VC-1 natively and re-encodes to H.264 or ProRes in a MOV container. Click Copy on any command to paste it into your terminal.

Re-encode to H.264 + AAC (universal Apple compatibility)
ffmpeg -i input.wmv -c:v libx264 -crf 18 -preset slow -c:a aac -b:a 192k output.mov
Smaller file size (higher compression)
ffmpeg -i input.wmv -c:v libx264 -crf 26 -preset fast -c:a aac -b:a 128k output.mov
Apple ProRes (professional quality, large file)
ffmpeg -i input.wmv -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov
Install FFmpeg
# macOS (Homebrew)
brew install ffmpeg

# Windows (winget)
winget install ffmpeg

# Ubuntu / Debian
sudo apt install ffmpeg

Use -crf 18 for near-lossless quality (larger file) or -crf 28 for smaller file with more compression. Lower CRF = higher quality.

WMV files protected by DRM (Digital Rights Management) cannot be converted by FFmpeg or any third-party tool — only the authorized player can decode them. Most WMV files created from cameras, screen recorders, or editors are DRM-free.

HandBrake (GUI — quality-focused encoding)

Free, Windows / Mac / Linux

Note: HandBrake outputs MP4 and MKV natively. For MOV output, use HandBrake to produce an MP4, then use FFmpeg to rewrap it: ffmpeg -i output.mp4 -c copy final.mov
  1. Download and open HandBrake from handbrake.fr.
  2. Drag your WMV file onto the HandBrake window to load it as the source.
  3. In the Summary tab, set Format to MP4.
  4. Choose a preset such as Fast 1080p30 and adjust quality with the RF slider (RF 18–22 for good quality).
  5. Set a destination file path with an .mp4 extension and click Start Encode.
  6. Run ffmpeg -i output.mp4 -c copy final.mov to rewrap to MOV with no further quality loss.

VLC Media Player (GUI — no command line)

Free, Windows / Mac / Linux

  1. Open VLC and go to Media → Convert / Save.
  2. Click Add, select your WMV file, then click Convert / Save.
  3. Click the Edit selected profile wrench icon next to the Profile drop-down.
  4. In the Encapsulation tab, select QuickTime / MOV.
  5. In the Video codec tab, choose H.264 for best Apple compatibility.
  6. Set the destination file with a .mov extension and click Start.

VLC re-encodes the video and writes the MOV output to your chosen destination path.

Command copied!

Summary

Learn how to convert WMV video files to MOV (QuickTime) format using free tools like FFmpeg, HandBrake, and VLC, with step-by-step command references.

How it works

  1. Click "Choose Video File" and select any video file from your device.
  2. The tool reads basic metadata in your browser using the File API — nothing is uploaded.
  3. Review the detected file name, size, duration, resolution, and MIME type.
  4. Choose a conversion method from the guides below: FFmpeg, HandBrake, or VLC.
  5. Copy the FFmpeg command with the "Copy" button and run it in your terminal.
  6. Drop the converted MOV file back here to verify its metadata after conversion.

Use cases

  • Import WMV footage from Windows PCs into Final Cut Pro or iMovie on a Mac.
  • Convert WMV recordings to MOV for playback on iPhone or iPad.
  • Prepare WMV corporate training videos for macOS-based editing workflows.
  • Convert WMV screen recordings to MOV for upload to Apple-centric platforms.
  • Rewrap WMV files containing H.264 into a MOV container with no re-encoding.
  • Batch-convert WMV archives to MOV for long-term Apple ecosystem compatibility.
  • Verify file metadata before and after conversion to confirm codec and resolution.
  • Convert WMV presentations or webinar recordings for Mac playback.

Frequently Asked Questions

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