FormatDrop
How-To Guide

How to Convert MP4 to MP3 on Mac

Want just the audio from an MP4 video? macOS has several built-in and free ways to extract MP3 audio from MP4 files without installing paid software.

Step-by-step instructions

  1. 1

    Convert with iTunes/Music app (simplest method)

    Open iTunes or Music → Preferences → Files → Import Settings → choose MP3 Encoder → click OK. Drag your MP4 file into the Music library → right-click the track → Create MP3 Version. A new MP3 file appears. Right-click → Show in Finder to locate it.

    Go to converter
  2. 2

    Use FFmpeg (best quality and control)

    Install FFmpeg via Homebrew: brew install ffmpeg. Then: ffmpeg -i input.mp4 -vn -c:a libmp3lame -b:a 320k output.mp3. The -vn flag removes video. For variable bitrate: ffmpeg -i input.mp4 -vn -c:a libmp3lame -q:a 2 output.mp3.

  3. 3

    Use QuickTime for AAC audio extraction

    Open the MP4 in QuickTime Player → File → Export As → Audio Only → Save. This exports .m4a (AAC). If you need specifically MP3, use iTunes or FFmpeg instead.

  4. 4

    Batch convert MP4 files to MP3

    for f in *.mp4; do ffmpeg -i "$f" -vn -c:a libmp3lame -b:a 192k "${f%.mp4}.mp3"; done. Run in Terminal from the folder containing your MP4 files.

Why convert MP4 to MP3?

MP3 is the universal audio format — plays on every device, car stereo, DJ software, and streaming platform. Extracting MP3 from MP4 gives you the audio track in a format that works everywhere.

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

Does macOS have a built-in MP4 to MP3 converter?
Not directly — QuickTime exports AAC (.m4a), not MP3. iTunes/Music can create MP3 versions but requires importing the file to your library. FFmpeg via Homebrew is the fastest reliable approach.
What MP3 bitrate should I use for music from MP4?
128 kbps: acceptable for speech. 192 kbps: good quality for music. 320 kbps: near-maximum quality. If the MP4 audio is already low quality, higher bitrate MP3 won't improve it.
Convert MP4 to MP3 Now — Free

No account. No upload. Works in any browser.