FormatDrop
How-To Guide

How to Convert MOV to MP3 (Extract Audio from QuickTime)

MOV is QuickTime's video container, the default format for iPhone screen recordings, Mac screen captures, and Final Cut exports. MP3 is the universal audio format. Converting MOV to MP3 strips the video and saves only the audio track — useful for podcast clips, voiceovers, music extraction from video, archiving audio from screen recordings, or feeding audio to transcription services. The conversion is fast and lossy; for archival quality use WAV or FLAC instead.

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. 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. 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. 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. 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 2Command line (FFmpeg)

Method 2: Convert MOV to MP3 with FFmpeg

FFmpeg is the standard cross-platform tool for this conversion.

  1. Install. Mac: `brew install ffmpeg`. Windows: ffmpeg.org/download. Linux: `apt install ffmpeg`.
  2. Standard conversion (192 kbps): `ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 192k output.mp3`. The `-vn` flag drops the video track.
  3. Higher quality (320 kbps): `ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 320k output.mp3`.
  4. VBR (often better quality at same average bitrate): `ffmpeg -i input.mov -vn -c:a libmp3lame -q:a 0 output.mp3`.
  5. 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`.
  6. 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 3VLC Media Player

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.

  1. Open VLC.
  2. Media → Convert/Save (Ctrl+R on Windows/Linux, Cmd+Shift+S on Mac).
  3. Add your MOV file → Convert/Save.
  4. Profile dropdown → 'Audio - MP3'. (If not present, click the wrench icon to create one.)
  5. 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 4macOS QuickTime + GarageBand

Method 4: macOS native conversion (QuickTime + GarageBand)

macOS has a roundabout but native path: extract via QuickTime, encode in GarageBand or Music app.

  1. Open the MOV in QuickTime Player. File → Export As → Audio Only. The output is M4A (AAC).
  2. 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).
  3. 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 5iPhone (GarageBand or Shortcuts)

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.

  1. Easiest: open Safari → formatdrop.com/audio-converter → upload MOV → choose MP3 → download. All local, no upload.
  2. 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.
  3. 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?
Yes. FFmpeg, VLC, the FormatDrop browser tool, and macOS's QuickTime + Music are all free.
Will I lose audio quality?
Slight loss. MOV typically contains AAC audio at decent bitrates. Re-encoding to MP3 is a second lossy step. At 192-256 kbps MP3, the difference is imperceptible. For zero-loss audio extraction, convert to WAV or FLAC instead.
Best command for MOV to MP3 with FFmpeg?
`ffmpeg -i input.mov -vn -c:a libmp3lame -b:a 192k output.mp3`. The `-vn` strips video. 192 kbps is the sweet spot for general audio.
Can I extract MP3 from MOV on iPhone?
Yes. Use the browser tool in Safari (no app install), or build a Shortcut with 'Encode Media' action. iOS doesn't have a native MOV-to-MP3 converter outside these.
What bitrate should I use for voice vs music?
Voice (podcasts, narration): 96-128 kbps mono. Music: 192-320 kbps stereo. Going higher than 320 kbps from a MOV source is wasted because the MOV's source AAC was already compressed.
Can I trim the MOV during MP3 extraction?
Yes. With FFmpeg: `ffmpeg -i input.mov -ss 30 -t 60 -vn -c:a libmp3lame output.mp3` extracts seconds 30-90. With VLC: set start/end time before clicking Start.
Does extraction preserve metadata?
Mostly. ID3 tags from MOV metadata (title, artist if present) transfer. EXIF-style camera/recording metadata doesn't apply to MP3 audio. For chapter markers, MOV's chapters convert to MP3 ID3 chapters with FFmpeg.
How long does conversion take?
Roughly 1/10th of the video duration on a modern computer. A 1-hour MOV converts to MP3 in 5-10 minutes. The browser tool is slightly slower (WebAssembly overhead) but still under 15 minutes for 1 hour.
Convert MOV to MP3 Now — Free

No account. No upload. Works in any browser.