Why you're holding a MOV file in the first place
MOV is Apple's video container format, and it's the default output for anything recorded on an iPhone or Mac — camera clips, FaceTime calls, and Mac screen recordings all save as .mov automatically. Most people never chose this format; it's just what their device produces. The problem shows up later, when all you actually need is the sound: a voice memo you shot as video, a FaceTime call you want to repurpose as an audio clip, or a screen recording where the narration matters and the video doesn't. Keeping the full video file around wastes space and doesn't play nicely with audio-only workflows like podcast editing or email attachments. Converting MOV straight to MP3 solves that by discarding the video track and keeping just the audio, in a much smaller, universally playable file.
Why MP3 is the right target format
MP3 is a lossy-compressed audio format built for two things: small file size and universal playback. Every phone, laptop, browser, podcast host, and audio editor can open an MP3 without a second thought — there's no format more broadly compatible for audio. That makes it the natural landing spot when you're extracting sound from a MOV video. Podcasters converting a FaceTime interview, musicians pulling a demo out of a phone recording, or anyone turning a voice memo into a shareable file all end up wanting MP3 specifically because it's small enough to email or upload quickly and guaranteed to play wherever it's sent. If your only goal is the audio, MP3 gets you there with the least friction and the smallest file.
How the conversion works in your browser
This tool runs ffmpeg.wasm — a full build of the ffmpeg audio/video engine compiled to WebAssembly — directly inside your browser tab. When you drop in a MOV file, the conversion happens on your own device using your CPU; nothing is uploaded to a server. That means no file size waiting on your upload speed, no account needed to use it, and no watermark stamped on the output. Because the audio never leaves your machine, it's also a sensible default for anything sensitive, like a private FaceTime recording or an unreleased demo. Once ffmpeg.wasm finishes stripping and encoding the audio track, you get an MP3 file ready to download — the whole process happens client-side, start to finish.
A practical example: turning a FaceTime call into a podcast episode
iPhone camera clips and FaceTime recordings save as MOV by default, which is exactly why this conversion is so commonly needed. Say you recorded a FaceTime interview for a podcast — converting that MOV straight to MP3 skips the video entirely and gives you a lightweight audio file you can drop directly into your podcast episode. No need to export the video first, re-encode it, or run it through a video editor just to strip the sound. The same logic applies to a Mac screen recording where you narrated a walkthrough: convert to MP3 and you've got a clean audio file to send over email or load into any audio editor for trimming and cleanup, without ever touching the original video.
What to expect on audio quality
Extracting audio from a MOV file and encoding it as MP3 involves lossy compression, which trades some audio fidelity for a much smaller file. For spoken-word content — interviews, voice memos, screen recording narration, FaceTime calls — this trade-off is barely noticeable and the size savings are worth it. If your MOV file's audio track was already recorded on a phone microphone, converting to MP3 won't introduce any quality loss beyond what's already in the source. The conversion doesn't touch the video at all, so there's no re-encoding step for image quality to worry about — it's purely an audio extraction and compression job, which keeps the process fast even on longer recordings.
Other ways to convert MOV to MP3
A browser-based tool isn't the only option. Desktop video editors and dedicated audio extraction apps can open a MOV file and export just the audio track, though that usually means installing software first. Command-line users can run ffmpeg directly on their own machine with a script that strips video and encodes to MP3 — the same engine this tool runs in the browser, just without the wasm layer. Some phone apps also offer audio extraction directly from the camera roll. The trade-offs are the same across most of these: desktop software requires installation, command-line tools require comfort with a terminal, and many free online converters require an upload to someone else's server. Doing it in-browser skips all three.