AudioUtils
How-To Guide

How to Convert MOV to MP3

MOV is Apple's QuickTime container, used by every iPhone video, every QuickTime screen recording, and every Final Cut Pro export. The audio inside is almost always AAC at 44.1 or 48 kHz. Pulling that audio out as a standalone MP3 lets you use the file in any podcast editor, music app, or DAW without dragging the video along. This page is the practical extraction workflow.

What Is Inside a MOV File

MOV is Apple's QuickTime File Format, the basis on which the MPEG-4 (.mp4) container was designed. Container structure is identical to MP4 — both store interleaved video and audio tracks plus metadata. iPhone videos: H.264 or HEVC video, AAC audio at 44.1 kHz / 96-256 kbps stereo. iPhone QuickTime screen recordings: HEVC video, AAC audio at 44.1 kHz with system audio + microphone mixed if 'Microphone' was tapped during start. Final Cut Pro exports: choose codecs, but Apple ProRes video + linear PCM audio is common. iMovie: H.264 + AAC. The audio path is universally either AAC or PCM — both extract cleanly to MP3 in one step. Run 'ffprobe input.mov' to confirm the audio codec before troubleshooting.

When This Conversion Matters

iPhone-recorded interviews, lectures, and field recordings: you captured video as backup but only the audio matters for the deliverable. Podcast remote-recording: a guest sent you their iPhone-captured side as MOV; you need MP3 for the editor. Music rehearsal videos: pull the audio for sharing without the bandwidth cost of video. Court reporting and depositions: the audio track is the working asset; the video is reference. Lectures and webinars: the speaker audio extracted from a Zoom-saved-locally MOV is the input to a transcription tool. A useful rule: if your output destination is an audio-only delivery (podcast, transcript, music share), extract early — every subsequent step is faster on the smaller MP3. See [extract-audio-from-mp4](/blog/extract-audio-from-mp4) for the related MP4 path.

Browser Conversion: Step by Step

Open [MOV to MP3](/convert/mov-to-mp3). Drop the .mov file. The browser tool reads the QuickTime container, identifies the audio track (usually track 1), decodes the AAC payload, and re-encodes as MP3. No upload — everything runs in WebAssembly ffmpeg locally. Output defaults: 192 kbps CBR MP3, 44.1 kHz, stereo. Click Download. For long files, conversion is sequential — a 60-minute MOV typically completes in 30-60 seconds depending on CPU. Free tier: 10-second preview. Pro: full files up to 500 MB. If your MOV is larger than 500 MB (4K HEVC, 30+ minute recordings), use the ffmpeg path locally — see below.

Bitrate and Quality Choices

Choose the MP3 bitrate to match the source AAC bitrate or slightly above. iPhone video AAC is 96-256 kbps depending on iPhone model and 'High Efficiency' vs 'Most Compatible' setting. Encoding to 192 kbps MP3 is sufficient for any iPhone source (the AAC source rarely exceeds 256 kbps stereo). For voice-only recordings (interviews, lectures), 96-128 kbps mono MP3 is appropriate; cuts file size dramatically without audible loss for speech. For music or live sound, 192 kbps stereo. For archival and downstream re-encoding, use [MOV to WAV](/convert/mov-to-wav) instead — preserves PCM, allows multi-step processing without lossy generation loss, then encode to MP3 at the final delivery step. Format choice reference: [MP4 to MP3](/guide/how-to-convert-mp4-to-mp3) for the same pattern in MP4 containers.

ffmpeg One-Liner

Single file with copy of the existing AAC re-wrapped to M4A (no transcoding, lossless): 'ffmpeg -i input.mov -vn -c:a copy output.m4a'. Single file with re-encode to MP3 (lossy step but compatible everywhere): 'ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 192k output.mp3'. The '-vn' flag tells ffmpeg to ignore the video stream entirely — much faster than processing both streams. Force mono: add '-ac 1'. Force a specific sample rate: add '-ar 44100'. Combined: 'ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 128k -ac 1 -ar 44100 voice.mp3'. Batch a folder: 'for f in *.mov; do ffmpeg -i "$f" -vn -c:a libmp3lame -b:a 192k "${f%.mov}.mp3"; done'. Install ffmpeg via Homebrew on macOS, apt on Linux, or static builds on Windows.

Mobile Workflow: iPhone Files App

On iPhone, you can extract MOV audio without a computer. Open Safari, navigate to [MOV to MP3](/convert/mov-to-mp3). Tap the upload area. iOS shows a Files-app sheet — choose 'Browse' and locate your MOV file (usually in Recent or in the Downloads folder if AirDropped). Select it. The browser tool runs locally on the iPhone via WebAssembly — surprisingly capable on iPhone 12 and later. After conversion, tap Download; the file saves to Files in your default Downloads folder. From there, share via Mail, AirDrop, or upload directly to a podcast host. This avoids the iCloud round-trip and works offline. Older iPhones (pre-iPhone 11) may struggle with files over 100 MB due to RAM constraints — for long recordings, transfer to a Mac and use the desktop browser.

Edge Cases: HEVC Video, Multiple Tracks, No Audio

HEVC video + AAC audio is the modern iPhone default; both extract cleanly. Some MOV files contain multiple audio tracks (e.g. mic + system audio in QuickTime screen recordings); ffmpeg by default extracts the first audio stream. To extract a specific track: 'ffmpeg -i input.mov -vn -map 0:a:1 -c:a libmp3lame -b:a 192k output.mp3' (extracts the second audio track). Silent output: the source MOV may be a screen recording without microphone — verify in QuickTime Player by playing the original. Some Final Cut Pro exports use Apple ProRes audio (LPCM) at 24-bit / 48 kHz; MP3 conversion is normal but consider [MOV to WAV](/convert/mov-to-wav) instead to preserve the bit depth. DRM-protected content from old iTunes Store TV/movie purchases cannot be converted — the audio is encrypted alongside the video.