Step-by-step instructions
- 1
Convert with FFmpeg (recommended)
Install Homebrew first if not installed: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`. Then install FFmpeg: `brew install ffmpeg`. Convert: `ffmpeg -i input.webm -c:v libx264 -crf 20 -c:a aac output.mp4`. For lossless remux (if WebM has VP8 and the player supports it): this isn't possible — WebM uses VP8/VP9/AV1, not H.264, so re-encoding is always needed.
Go to converter - 2
Convert with HandBrake (GUI)
Download HandBrake from handbrake.fr (free). Open the WebM file in HandBrake. Choose a preset (Fast 1080p30 works well). The output format defaults to MP4 with H.264. Click Start Encode. HandBrake re-encodes the WebM to H.264 MP4. Good option if you prefer a visual interface over Terminal.
- 3
Set quality correctly
In FFmpeg, CRF 18–23 is the typical range: 18 is near-lossless, 23 is default quality, 28+ is lower quality. For web content converted from VP9 WebM, CRF 20–22 maintains visual quality close to the source. Higher quality settings produce larger files — find the balance that works for your use case.
- 4
Verify in QuickTime or iMovie
Drag the MP4 into QuickTime Player or iMovie to confirm it's accepted. Check that audio and video are in sync. If iMovie reports the file as incompatible, try re-encoding with H.264 baseline profile: `ffmpeg -i input.webm -c:v libx264 -profile:v baseline -level 3.0 -c:a aac output.mp4`.
Why convert WebM to MP4?
WebM is a web-first format that macOS apps don't support natively. Converting to MP4 makes the video compatible with QuickTime, iMovie, Final Cut Pro, AirPlay, and every Apple device — the essential step before editing or sharing web-downloaded video on Mac.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Does QuickTime Player play WebM on Mac?
Is there an online WebM to MP4 converter for Mac?
How do I install FFmpeg on Mac?
No account. No upload. Works in any browser.