Skip to content
Zumkor
← Back to blog · · 9 min read

How to convert M4A to MP3 on Mac (batch, offline, 2026)

Convert M4A to MP3 on your Mac with the Music app, ffmpeg, or Zumkor — batch voice memos and whole folders offline, plus the cases where you should not convert.

guides audio mac

Zumkor converts audio and pulls soundtracks out of video — MP3, M4A, FLAC, and more on your Mac — free for 7 days, batch whole folders, 100% offline. Then one-time $19.99, yours forever. Needs macOS 14+ on an Apple silicon Mac — any M-series machine.

Download on the App Store Zumkor for Mac

The car stereo’s USB port shows the folder but skips every track. The old MP3 player, the conference-room system, the transcription upload form, the client’s ancient workflow — something in your life refuses .m4a, and that’s the extension on everything Apple produces: Voice Memos recordings, Music-app rips, GarageBand bounces, iTunes Store purchases. The files play perfectly on the Mac. They just won’t travel.

The exit is M4A to MP3, and on a Mac it’s genuinely built in — with a catch clumsy enough that most people converting more than a track or two go around it. This guide covers how to convert M4A to MP3 on a Mac three ways — the built-in Music-app route, the free command-line route, and the drag-a-folder batch route — plus the one check worth doing first, because some M4A files shouldn’t be converted and one kind can’t be.

What an M4A actually is (three different things)

M4A is a container, not a codec, and what’s inside determines what your conversion does:

  • AAC (the usual case). Voice memos, Music-app imports at default settings, most downloads. AAC is lossy — it’s MP3’s younger, more efficient sibling. Converting AAC to MP3 is a lossy-to-lossy re-encode: a little more data is discarded on the way. At a high MP3 bitrate the loss is inaudible in practice, but it’s why you keep the original.
  • ALAC (Apple Lossless). Same .m4a extension, lossless contents — CD rips made with the “Apple Lossless” setting, some purchased hi-res files. Converting ALAC to MP3 is a normal first-generation lossy encode, exactly like converting FLAC.
  • Protected AAC (.m4p). iTunes Store purchases from before 2009 carry DRM, and technically that’s a different extension — but they live in the same library and cause the same “why won’t this convert” confusion. No converter can touch them, including Apple’s own. Check in Music with File → Get Info: if Kind says “Protected AAC audio file,” the legitimate fixes are iTunes Match (which replaces them with clean copies) or re-buying.

One more check before converting anything: does the destination actually need MP3? Nearly everything made in the last decade plays AAC — modern car head units, Android phones, Windows, every browser. If the device just showed an unfamiliar-extension error, try renaming a test file or checking its manual before transcoding a whole library. MP3 is for the genuinely stubborn: old car stereos, cheap USB-stick players, upload forms with a hard whitelist.

Destination confirmed MP3-only? Here are the three routes. All of them run offline — a voice memo of a private meeting has no business on a converter website’s server, and a music library is too big to upload anyway.

Method 1: the Music app (built in, works, clumsy)

Unlike FLAC, which Apple Music refuses at the door, M4A imports natively — which means the Mac’s hidden built-in converter can actually see it:

  1. Open Music and choose Music → Settings → Files → Import Settings.
  2. Set Import Using to MP3 Encoder. The quality menu offers 128/160/192 kbps presets; pick Custom to set 320 kbps, the sensible choice for a lossy-to-lossy conversion.
  3. Add the M4A files to your library (File → Import, or drag them in).
  4. Select the tracks and choose File → Convert → Create MP3 Version.
  5. Duplicates appear in the library — the MP3s. Right-click one → Show in Finder to grab the actual files.

It’s free and preinstalled, and the workflow tells you what it was built for: converting your music library, in place, occasionally. Its clumsiness for anything else is structural — every file must be imported first (voice memos and one-off downloads now live in your music library forever unless you clean up), the output lands wherever the library keeps media rather than where you want it, the originals and copies sit side by side with identical names, and there’s no folder mirroring for a batch. For two tracks, fine. For forty voice memos, painful.

(Voice Memos users: get the .m4a out of the Voice Memos app first by dragging a recording from its list straight into a Finder folder — then convert with any method here.)

Method 2: ffmpeg (free, command line)

The free power-tool route is ffmpeg, installed via Homebrew:

brew install ffmpeg

One file, at MP3’s maximum bitrate:

ffmpeg -i input.m4a -c:a libmp3lame -b:a 320k output.mp3

-c:a libmp3lame selects the LAME encoder — the best MP3 encoder there is — and -b:a 320k maxes the bitrate, the right call when the source is already lossy. Tags (title, artist, album) carry over automatically. A whole folder:

cd ~/Music/to-convert
for f in *.m4a; do
  [ -e "$f" ] || continue
  ffmpeg -i "$f" -c:a libmp3lame -b:a 320k "${f%.*}.mp3"
done

Audio encodes fast; even a large folder finishes in minutes. The same command handles ALAC-inside-M4A without any change — ffmpeg reads what’s actually in the container. What it won’t do is DRM: protected .m4p files fail here like everywhere else.

If what you actually want is automation rather than a terminal, Zumkor’s “Convert Files” action in Apple’s Shortcuts app converts batches in the background — a folder-watch shortcut can turn every recording that lands in a folder into an MP3, no loop to maintain.

Method 3: Zumkor (drag the folder, done)

When the M4A situation is a pile — a semester of lecture recordings, years of voice memos, a podcast archive, a music folder destined for a USB stick — this is the chore Zumkor deletes (it needs macOS 14 or later on an Apple silicon Mac — any M-series machine):

  1. Open Zumkor and drag in the .m4a files — or the whole folder, subfolders and all (“Look inside subfolders” picks up nested files).
  2. Pick MP3 as the output. (WAV, AIFF, FLAC, ALAC, and Opus are there too, if the destination wants something else — and if the source is a folder of giant WAV recordings instead, WAV to MP3 has its own guide.)
  3. Click Convert and choose the output folder. Originals stay put.

There’s no bitrate menu to puzzle over — Zumkor picks a high-quality bitrate automatically (around 256 kbps for MP3), which is exactly the “high enough that the re-encode is inaudible” setting you’d choose by hand. Folder structure can be mirrored, so Lectures/2025/week3.m4a comes out as Lectures/2025/week3.mp3; filename templates keep big deliveries organized; the queue takes up to 2,000 files; and conversions keep running with the window closed. Everything is on-device and offline — recordings of meetings, interviews, and rehearsals never leave the machine.

The honest trade-off: for a couple of tracks, the Music app is free and already installed. Zumkor earns its slot at folder scale, when output should land where you choose instead of inside a music library, and when the same Mac also accumulates FLAC albums, videos that need their audio pulled out, and HEIC photos that websites reject — one app converts all of it. It’s free for 7 days, full-featured; after that, a one-time $19.99 purchase — buy once, keep it forever, no subscription.

Getting the conversion right

  • Go high on bitrate. The source is (usually) already lossy, so give the MP3 encode room: 256–320 kbps. Every method above defaults to or allows that. Squeezing an AAC file into a 128 kbps MP3 stacks two generations of loss and it becomes audible.
  • Keep the originals. The M4As are one generation cleaner than the MP3s made from them. Disk space is cheaper than discovering, post-delete, that the destination played AAC all along.
  • Never convert MP3 → M4A → MP3 in chains. Each lossy hop discards more. Convert once, from the best source you have, and archive that source.
  • ALAC sources deserve a thought. If the M4A is Apple Lossless and you care about quality, consider keeping a lossless archive (the ALAC itself, or FLAC) and treating MP3 purely as the travel copy — same logic as a FLAC library.
  • Spoken word can go smaller. For voice memos and lectures where file size matters more than fidelity, MP3’s efficiency is wasted on speech — but simplicity usually wins; a normal MP3 of a voice memo is still small.

Voice memos, specifically

The single most common M4A pile is the Voice Memos archive — interviews, lectures, band practice, meeting notes — and it deserves its own two-step recipe. First, get the recordings out of the app: open Voice Memos on the Mac (recordings sync from the iPhone automatically if iCloud syncing is on) and drag each recording from the list into a Finder folder — the drag produces the underlying .m4a file. Then convert the folder with any method above; Zumkor’s queue handles a hundred memos as easily as one, and its “Rename Files for Delivery” Shortcuts action can stamp the batch with clean, consistent filenames on the way out — useful when “New Recording 47.m4a” times a hundred is headed to a transcription service or a client.

When the M4A is actually inside a video

A related dead end: the audio you want isn’t a standalone .m4a at all, but the soundtrack of an MP4 or MOV — a recorded talk, a concert clip, an interview. That’s an extraction, not a conversion, and it has its own guide: Zumkor pulls the audio track straight out of MP4/MOV/MKV to MP3 — or, where the source allows it, as a stream copy with zero quality loss.

Bottom line

  • A track or two, no installs: Music app → Settings → Files → Import Settings → MP3 Encoder (Custom, 320 kbps), then File → Convert → Create MP3 Version. Built in, works, clutters the library.
  • Comfortable in Terminal: ffmpeg -i input.m4a -c:a libmp3lame -b:a 320k output.mp3, looped for folders.
  • A pile of recordings, folder structure intact, output where you choose: Zumkor — drag the folder, pick MP3, convert offline in one pass, one-time $19.99.
  • Before any of it: check the destination actually needs MP3 (most modern devices play AAC fine), and check for “Protected AAC” in Get Info — DRM files convert nowhere.

Either way, the conversion happens on your Mac, in minutes, with nothing uploaded — which is how converting your own recordings should work.

FAQ

Can I convert M4A to MP3 with just the built-in Mac apps?

Yes. Open Music → Settings → Files → Import Settings and set the encoder to MP3 Encoder (pick a quality — Custom allows up to 320 kbps). Import the M4A into your library, select it, and choose File → Convert → Create MP3 Version. It works, but the file must pass through your Music library, which is clumsy for batches and clutters the library with duplicates.

Does converting M4A to MP3 lose quality?

A little, usually inaudibly. Most M4A files are AAC, which is lossy, and MP3 is lossy too — so converting re-encodes and discards a bit more data. At 256–320 kbps the difference is very hard to hear. Keep the originals, and skip the conversion entirely if the target device already plays AAC, as most modern ones do.

Why do some of my M4A files refuse to convert?

They are probably .m4p files — DRM-protected tracks from the iTunes Store before 2009. The copy protection blocks every converter, including the Music app’s own. Check File → Get Info in Music: a “Protected AAC” kind means DRM. Apple’s iTunes Match, or re-buying the track, are the legitimate ways to get an unprotected copy.