AudioUtils

MOV to MP3 on Mac: Fastest Ways Compared

Three ways to extract audio from MOV files on macOS — browser converter, QuickTime, and ffmpeg command line. Which is fastest for your workflow?

You have a MOV file — an iPhone recording, a QuickTime screen capture, or a Final Cut export — and you need the audio as MP3. Here are three approaches, from fastest to most flexible.

Method 1: Browser Converter (Fastest, No Install)

The fastest route for most people. Go to AudioUtils MOV to MP3 converter, drop your file, download the MP3. The whole thing runs in your browser — no app install, no account.

How to do it: 1. Open audioutils.com/mov-to-mp3 in Safari or Chrome 2. Click "Select your MOV file" and choose the file 3. Click Convert 4. Click Download when it finishes

Conversion time: Typically 5–15 seconds for a 5–10 minute recording on a modern Mac.

File size limit: Free tier handles files up to 20 MB. For larger files (longer iPhone recordings), Pro unlocks up to 500 MB.

Best for: One-off conversions, quick turnaround, files you don't want to install software for.

---

Method 2: QuickTime Pro (Built-in, but Limited)

QuickTime Player on macOS has an export option that can save audio from a video. It's built into every Mac — no download needed.

How to do it: 1. Open your MOV file in QuickTime Player 2. Go to File → Export As → Audio Only 3. QuickTime exports as M4A (AAC), not MP3

The catch: QuickTime exports M4A, not MP3. If you need specifically MP3, you'll need to then convert the M4A to MP3 — which adds a step. If M4A works for your purpose (it plays on all Apple devices and most others), QuickTime is fine.

Best for: When you only need M4A and want zero browser involvement.

---

Method 3: ffmpeg in Terminal (Most Flexible, Requires Setup)

If you're comfortable with Terminal and need batch processing or exact control over settings, ffmpeg is the professional option.

First, install ffmpeg via Homebrew: ```bash brew install ffmpeg ```

Convert a single file: ```bash ffmpeg -i input.mov -vn -acodec libmp3lame -b:a 192k output.mp3 ```

What those flags mean:

  • `-vn` — discard video track
  • `-acodec libmp3lame` — use LAME MP3 encoder
  • `-b:a 192k` — 192 kbps audio bitrate (change to 128k, 256k, 320k as needed)
  • Batch convert a folder: ```bash for f in *.mov; do ffmpeg -i "$f" -vn -acodec libmp3lame -b:a 192k "${f%.mov}.mp3"; done ```

    Best for: Batch processing many files, automation scripts, exact control over encoding parameters, integrating into a larger workflow.

    ---

    Which Method Should You Use?

    | Situation | Best Method | |---|---| | One or two files, need MP3 quickly | Browser converter | | File is large (>20 MB free limit) | ffmpeg or Pro plan | | M4A is acceptable output | QuickTime | | Batch converting many files | ffmpeg | | No admin rights on the Mac | Browser converter | | Exact bitrate control without Terminal | Browser converter (Pro) |

    What About iMovie or GarageBand?

    You can import a MOV into iMovie or GarageBand and then export audio — but both apps export M4A or AIFF by default, not MP3. More steps for the same result. Not recommended unless you're already editing in those apps.

    Note on File Size

    iPhones record video at 4K 60fps by default in newer models, which means a 5-minute video can be 800 MB or more. AirDrop the video to your Mac first, then convert. The browser converter handles files up to 20 MB free; longer recordings need the Pro plan or ffmpeg locally.

    If you just need the audio from a short clip, the browser converter is by far the easiest path on a Mac.