Quick answer
Browser: drop your .mov into formatdrop.com/audio-converter, choose MP3 — done in seconds, no upload. Command line: `ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 192k output.mp3`. VLC: Media → Convert/Save → choose MP3 profile. iPhone: GarageBand can import MOV and export as audio file.
Method 1: Convert MOV to MP3 online (free, in your browser)
- 1
Open the FormatDrop audio converter
Open formatdrop.com/audio-converter in your browser. Conversion runs locally — your video stays on your device. Works on Mac, Windows, Linux, iPhone, Android.
Go to converter - 2
Drop your MOV file
Drag a .mov file. The converter detects the audio track inside (typically AAC or PCM for iPhone recordings) and prepares MP3 output. Multi-track MOVs let you choose which audio track to extract.
- 3
Choose MP3 and bitrate
Select MP3. For voice content (podcasts, screen recording narration): 128 kbps mono or 192 kbps stereo. For music: 256 kbps stereo or 320 kbps stereo. Higher bitrates from MOV's AAC source don't gain audible quality — 192 kbps is usually plenty.
- 4
Download the MP3
The output MP3 plays everywhere — iTunes, Spotify (local files), Audacity, podcast hosts, web pages. ID3 tags are populated from MOV metadata when available.
Method 2: Convert MOV to MP3 with FFmpeg
FFmpeg is the standard cross-platform tool for this conversion.
- Install. Mac: `brew install ffmpeg`. Windows: ffmpeg.org/download. Linux: `apt install ffmpeg`.
- Standard conversion (192 kbps): `ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 192k output.mp3`. The `-vn` flag drops the video track.
- Higher quality (320 kbps): `ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 320k output.mp3`.
- VBR (often better quality at same average bitrate): `ffmpeg -i input.mov -vn -c:a libmp3lame -q:a 0 output.mp3`.
- Trim a section (start at 30s, take 60s): `ffmpeg -i input.mov -ss 30 -t 60 -vn -c:a libmp3lame -b:a 192k output.mp3`.
- Batch every MOV in a folder: `for f in *.mov; do ffmpeg -i "$f" -vn -c:a libmp3lame -b:a 192k "${f%.mov}.mp3"; done`.
Note: FFmpeg is the right tool for batch jobs and scripted workflows. Conversion runs at 5-20× real-time speed.
Method 3: Convert MOV to MP3 in VLC
VLC's Convert/Save feature handles MOV-to-MP3 with no install if VLC is already on your system.
- Open VLC.
- Media → Convert/Save (Ctrl+R on Windows/Linux, Cmd+Shift+S on Mac).
- Add your MOV file → Convert/Save.
- Profile dropdown → 'Audio - MP3'. (If not present, click the wrench icon to create one.)
- Set destination filename with .mp3 extension. Click Start. VLC processes in real time.
Note: VLC works for one-off conversion. For batch, FFmpeg is much faster.
Method 4: macOS native conversion (QuickTime + GarageBand)
macOS has a roundabout but native path: extract via QuickTime, encode in GarageBand or Music app.
- Open the MOV in QuickTime Player. File → Export As → Audio Only. The output is M4A (AAC).
- If you need MP3 specifically: open the M4A in Music app → right-click → Convert → Create MP3 Version (after enabling MP3 import in Settings → Files → Import Settings).
- Or skip QuickTime and use FFmpeg or the browser tool — much simpler.
Note: Mac native path produces M4A first, requiring a second step to MP3. FFmpeg or browser is more direct.
Method 5: Convert MOV to MP3 on iPhone
iOS doesn't have a native MOV-to-MP3 converter. Use GarageBand for proper editing, or Shortcuts for one-tap automation.
- Easiest: open Safari → formatdrop.com/audio-converter → upload MOV → choose MP3 → download. All local, no upload.
- Shortcuts: create a shortcut with 'Encode Media' action set to MP3 audio. Set 'Show in Share Sheet' for video files. Run from any video's share sheet.
- GarageBand: import MOV → use the audio track only → Share → Song to Files → choose MP3 export. Slowest method but gives you editing control.
Note: On iPhone, the browser tool is fastest. Shortcuts is best for repeated conversions.
When you need to convert MOV to MP3
- 1
Extracting voiceovers from screen recordings
Mac screen recordings are MOV by default. Extract just the audio for podcast use, voiceover libraries, or transcription. Saves the trouble of re-recording.
- 2
Archiving audio from iPhone video clips
Video clips at concerts or interviews — extract just the audio for music libraries or transcription. MP3 is the universal archive format.
- 3
Feeding video audio to transcription services
Whisper, Otter.ai, Rev, and most transcription APIs prefer MP3 or WAV. Strip MOV's video for faster upload and lower API costs (some services charge per minute, not per gigabyte).
- 4
Creating podcast clips from interview footage
Filmed interview → extract audio → drop into podcast editor. MP3 is the standard input for Riverside, Descript, GarageBand for podcasting.
- 5
Sharing audio-only previews of video content
Pitch a documentary's audio quality without sending the full video. Audio-only MP3 is also smaller — easier to email or embed.
Troubleshooting common MOV to MP3 problems
FFmpeg complains 'Output file does not contain any stream'
The MOV may have only video, no audio track. Check with `ffprobe input.mov` — if you see only Video stream, no Audio stream, there's nothing to extract. Some screen recordings without microphone capture have video but no audio.
Audio comes out at very low volume
Mac screen recordings typically capture system audio at low gain. Boost volume during conversion: `ffmpeg -i input.mov -vn -af 'volume=2.0' -c:a libmp3lame -b:a 192k output.mp3` (2.0 = double volume; adjust as needed). Or normalize to broadcast standard: `ffmpeg -i input.mov -vn -af loudnorm=I=-14 -c:a libmp3lame -b:a 192k output.mp3`.
Multiple audio tracks but the conversion only got one
Some MOVs have multiple audio tracks (separate microphone + system audio on Mac screen recordings, or multiple language tracks). Specify the track: `ffmpeg -i input.mov -map 0:a:1 -vn -c:a libmp3lame output.mp3` (track 1, second audio). List tracks with `ffprobe input.mov`.
VLC produces an empty MP3 file
VLC's converter sometimes fails on MOVs with unusual codec combinations. Switch to FFmpeg or browser tool which handle more variants. If FFmpeg also fails, the MOV may be corrupt — try playing it first to verify.
Audio sync is off in the extracted MP3
Sync issues happen when the MOV has variable frame rate video. Add `-async 1` to FFmpeg: `ffmpeg -i input.mov -async 1 -vn -c:a libmp3lame -b:a 192k output.mp3`. For screen recordings with audio drift, this typically fixes it.
Output file is much larger than expected
Check your bitrate setting. 320 kbps × 60 minutes = ~140 MB. 128 kbps mono × 60 minutes = ~57 MB. For voice content, 96 kbps mono is sufficient and produces ~45 MB per hour.
Why convert MOV to MP3?
MOV is QuickTime's container; MP3 is the universal audio format. Converting between them strips the video and gives you audio you can play, share, or process anywhere. The conversion is mechanical — every method in this guide produces a working MP3 from any MOV.
The right tool depends on context. Browser for one-off, FFmpeg for batch and scripts, VLC for casual GUI use, iPhone Shortcuts for repeated automation. All produce equivalent quality at the same bitrate.
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
Is converting MOV to MP3 free?
Will I lose audio quality?
Best command for MOV to MP3 with FFmpeg?
Can I extract MP3 from MOV on iPhone?
What bitrate should I use for voice vs music?
Can I trim the MOV during MP3 extraction?
Does extraction preserve metadata?
How long does conversion take?
No account. No upload. Works in any browser.