M4A to MP3: 5 Ways to Convert Audio on Mac (2026)

A practical guide to converting M4A to MP3 — covers the macOS Music app, VLC, ffmpeg, online tools, and batch conversion, plus bitrate tips and a clear explanation of quality loss.

If you have ever downloaded a song from the iTunes Store, ripped a voice memo off your iPhone, or received an audiobook file, chances are you ended up with an M4A — and chances are something refused to play it. The fix is to convert M4A to MP3, a format that plays on practically anything built in the last twenty-five years.

This guide covers five reliable ways to handle M4A to MP3 conversion on macOS (and Windows), from the built-in Music app to command-line batch processing with ffmpeg. You will also learn what happens to audio quality during the conversion, which bitrate to choose, and how to convert dozens of files at once.

What Is M4A and Why Convert It to MP3?

M4A stands for MPEG-4 Audio. It is not really a codec — it is a container that usually holds audio encoded with AAC (Advanced Audio Coding) or, less commonly, ALAC (Apple Lossless). Apple has used M4A as the default output for the iTunes Store, Apple Music downloads, GarageBand exports, and iPhone voice memos for nearly two decades.

Technically, AAC at the same bitrate is a more modern and efficient codec than MP3 — AAC at 128 kbps sounds better than MP3 at 128 kbps. So why convert to the "older" format at all?

Compatibility. MP3 is the universal lingua franca of digital audio. It plays on every Windows PC, every Android phone, old iPods, car head units, Bluetooth speakers, DAWs, podcast hosts, e-readers, and airline entertainment systems — without installing anything. M4A support is solid on Apple devices, but degrades fast outside the Apple ecosystem. If you are sharing audio with a podcast audience, a client, or a grandparent, MP3 is still the safest bet. It is also the only format some upload forms and legacy systems accept.

Other reasons: DJ software that only indexes MP3, old car stereos without AAC decoders, and tagging tools that handle ID3 better than MP4 atoms.

Is There Quality Loss When Converting M4A to MP3?

Yes — and you should understand why before you batch-convert your whole library.

Both M4A (AAC) and MP3 are lossy formats. Converting between two lossy formats is called transcoding: you decode an already-lossy file and re-encode it with another lossy codec. Each pass discards more information. Audio engineers call this "generation loss."

In practice, the damage is usually subtle. Converting a 256 kbps AAC to a 320 kbps MP3 is often indistinguishable from the source to casual listeners. Converting a 128 kbps AAC to a 128 kbps MP3 can introduce audible artifacts — thin high frequencies, swirly cymbals, "warbly" vocals.

Rule of thumb: pick an MP3 bitrate equal to or higher than the source M4A. You cannot "recover" quality by going higher, but you can avoid compounding losses. If your source M4A is actually ALAC (Apple Lossless), you get a clean transcode — only one generation of loss, which is essentially inaudible at 320 kbps.

Method 1: Convert M4A to MP3 with macOS Music (or iTunes)

The fastest option on a Mac is the app that probably created your M4A files in the first place. Apple's Music app (and iTunes on older macOS / Windows) has a built-in format converter.

Steps

  1. Open Music on macOS (or iTunes on Windows / older macOS).
  2. Go to Music → Settings (or Preferences on older versions) → Files tab.
  3. Click Import Settings…
  4. Change Import Using to MP3 Encoder.
  5. Set Setting to Higher Quality (192 kbps) or Custom… for 320 kbps.
  6. Click OK twice to save.
  7. Back in your library, select the M4A tracks you want to convert.
  8. From the menu bar, choose File → Convert → Create MP3 Version.

Music will create new MP3 copies alongside your originals. The original M4A files are untouched.

Pros: Free, built-in, handles batch selection, preserves metadata (title, artist, album, artwork), respects folder structure.

Limits: Only works on files already in your Music library. Can sometimes refuse files protected by old FairPlay DRM (iTunes Store purchases from before 2009). Doesn't always handle very long audiobook M4B files gracefully — split them first if needed.

Method 2: Convert M4A to MP3 with VLC (Free, Cross-Platform)

VLC is the Swiss Army knife of media — and yes, it converts audio. It runs on macOS, Windows, Linux, and even iOS, so this method works anywhere.

Steps

  1. Open VLC and go to File → Convert / Stream… (macOS) or Media → Convert / Save… (Windows).
  2. Drag your M4A file into the drop zone, or click Open media to browse.
  3. Under Choose Profile, pick Audio – MP3.
  4. Click Customize… if you want to tweak the bitrate (default is 128 kbps — bump to 192 or 320 for better quality).
  5. Click Save as FileBrowse, choose a destination and filename, then click Save.
  6. Click Start. VLC will transcode the file. A progress bar appears at the bottom.

For multiple files, repeat the process — VLC's GUI doesn't batch audio as smoothly as its video pipeline, but see Method 4 if you have more than a handful.

If you already use VLC for video, you may also find our guide on using VLC to convert video to MP4 useful for the rest of your media toolkit.

Method 3: Online M4A to MP3 Converters (Pros and Cons)

Sites like CloudConvert, Convertio, Zamzar, and FreeConvert let you drop an M4A file into a browser and download an MP3. For a one-off file, they are genuinely convenient — no install, no setup.

What to watch for

  • Privacy: You are uploading your audio to a stranger's server. For family recordings, unreleased demos, client work, or anything confidential, this is a hard no.
  • File size limits: Most free tiers cap around 100 MB per file and throttle concurrent conversions.
  • Queue times: Popular services sometimes make you wait in a "free user" queue while paying users jump ahead.
  • Ads and adware: Some converters bundle "download manager" installers or redirect to shady landing pages. Stick with reputable names.
  • Metadata loss: Tags and cover art are often stripped during upload.

Use online tools when: you have one or two non-sensitive files and no installed software on hand. Skip them when: privacy matters, files are large, or you have more than a handful to convert.

Method 4: Convert M4A to MP3 with ffmpeg (Command Line, Best for Batches)

ffmpeg is the engine that powers most open-source media tools, and it is the best way to batch-convert audio. On macOS you can install it with Homebrew:

brew install ffmpeg

On Windows, grab a static build from gyan.dev and add it to your PATH.

Single file

ffmpeg -i input.m4a -codec:a libmp3lame -b:a 192k output.mp3

That command decodes input.m4a, re-encodes with the LAME MP3 encoder at 192 kbps CBR, and writes output.mp3. Change 192k to 320k for maximum quality or 128k for smaller files.

Variable bitrate (usually better quality per byte)

ffmpeg -i input.m4a -codec:a libmp3lame -q:a 2 output.mp3

The -q:a 2 flag uses LAME's VBR preset, which averages around 190 kbps but adapts to complexity — quieter passages use fewer bits, busy passages use more. -q:a 0 is highest quality, -q:a 9 is lowest.

Preserve metadata and cover art

ffmpeg -i input.m4a -map 0:a -map 0:v? -c:v copy -codec:a libmp3lame -q:a 2 -id3v2_version 3 output.mp3

Batch convert an entire folder

On macOS or Linux, one line inside the target folder:

for f in *.m4a; do ffmpeg -i "$f" -codec:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; done

This loops through every .m4a in the current directory and writes a matching .mp3 next to it. Perfect for converting a whole album, a podcast archive, or an audiobook series in one go.

If you work with video too, our walkthrough on extracting audio from video uses similar ffmpeg patterns.

Method 5: Dedicated Audio Converter Apps

If command lines give you hives and online converters give you privacy concerns, a native desktop app hits the sweet spot. Popular macOS options:

  • Permute — drag-and-drop media converter, clean UI, paid.
  • XLD (X Lossless Decoder) — free, precise, beloved by audiophiles, handles MP3 output fine.
  • Audacity — free, open-source editor with LAME MP3 export.
  • MediaHuman Audio Converter — free, clean batch UI.

These apps handle dozens of files at once, preserve metadata, and let you tweak bitrate and sample rate. For a broader look at Mac media tools, see our roundup of the best video converters for Mac.

Batch M4A to MP3 Conversion: Tips That Save Hours

When converting more than a handful of files, small setup choices add up.

  • Keep originals. Output MP3s to a separate folder. Never overwrite the source M4A until you have verified the conversions play correctly.
  • Match bitrate to purpose. Podcast voice can live at 96 kbps. Music needs 192 kbps minimum. Archival listening deserves 320 kbps.
  • Preserve metadata. Confirm your tool carries over ID3 tags (title, artist, album, year, artwork).
  • Spot-check first. Convert two or three representative files and listen before launching a 2,000-file job overnight.
  • Watch disk space. MP3 at 192 kbps is similar in size to AAC at 192 kbps, but 320 kbps output grows by ~60%.

Once you have converted, you may want to compress the resulting MP3 files further before emailing them or uploading to a podcast host. And if you have a series of short clips you need to stitch into one track, our guide on how to join audio files walks through the cleanest methods.

Best MP3 Bitrate: 128 vs 192 vs 320 kbps

Bitrate is the single biggest dial you control. Here is how to think about it:

128 kbps

The old "standard" bitrate. Fine for voice, talk radio, audiobooks, lectures, and any situation where absolute fidelity doesn't matter. Roughly 1 MB per minute of audio. Most people cannot tell 128 kbps MP3 from lossless for speech. Music at 128 kbps is noticeably "thinner" on good headphones.

192 kbps

The sensible default for music. A solid step up from 128 — cymbals breathe, bass retains shape, vocals stop sounding pinched. File size lands around 1.4 MB per minute. This is the sweet spot for most libraries unless you are an audiophile or plan to transcode again later.

320 kbps

The highest standard MP3 bitrate. At this level, MP3 is essentially transparent — blind A/B tests show very few listeners can reliably distinguish 320 kbps MP3 from CD-quality source. Files run about 2.4 MB per minute. Use this when you are archiving, DJing, or planning to transcode or edit the file again later.

VBR (Variable Bitrate)

Often the best of both worlds: the encoder uses more bits for complex passages and fewer for silence, averaging lower than the peak. LAME's -V2 preset (around 190 kbps average) sounds nearly identical to 320 kbps CBR for most content, at ~60% the file size.

Frequently Asked Questions

Is M4A better quality than MP3?

At the same bitrate, yes — M4A (AAC) typically sounds better than MP3 because it uses a more modern psychoacoustic model. A 128 kbps AAC is roughly comparable to a 192 kbps MP3. But "better" only matters if everything you own can actually play M4A. For real-world compatibility, MP3 still wins.

Can I convert M4A to MP3 without losing quality?

Not completely — both are lossy formats, so transcoding always costs something. You can minimize damage by encoding the MP3 at a bitrate equal to or higher than the source M4A (e.g., 256 kbps AAC → 320 kbps MP3). If the M4A is actually ALAC (Apple Lossless), you only lose quality once during the MP3 encode, which is essentially inaudible at 320 kbps.

Does converting M4A to MP3 remove DRM?

No. Format conversion does not strip DRM. If your M4A file is a protected iTunes purchase from before 2009, neither the Music app nor VLC nor ffmpeg will convert it directly. Modern iTunes Store and Apple Music downloads have different rules — check Apple's current terms.

What is the difference between M4A and M4B?

M4A is generic MPEG-4 audio. M4B is the same container, but with an .m4b extension that signals "audiobook" to media players — it enables bookmarking, chapter navigation, and resume-on-reopen behavior. You can convert M4B to MP3 the same way you convert M4A, but you will lose chapter markers unless your tool supports them.

Will converting M4A to MP3 change the file's duration or tags?

Duration stays the same — same audio, new container and codec. Tags (title, artist, album, year) should carry over if your tool supports ID3. Cover art usually transfers too, though some online converters strip it. Always spot-check a converted file in your player before deleting originals.

What is the fastest way to convert 500+ M4A files to MP3?

ffmpeg with a shell loop is the fastest: no GUI overhead, minimal memory use, and it saturates your CPU cores if you run multiple instances in parallel with xargs -P. A modern Apple Silicon Mac can chew through a thousand 3-minute tracks in well under an hour.

Final Thoughts

Converting M4A to MP3 is one of those workflows that sounds trivial but has real nuance — bitrate choices, quality loss, batch tooling, and privacy trade-offs all matter if you care about the result. For a one-off song, use the Music app or VLC and be done in thirty seconds. For a library, learn one ffmpeg command and save yourself hours. For sensitive files, skip online converters entirely.

Once your audio is in MP3 form, the next questions are usually about size and organization — which is where a native macOS compression tool earns its keep. Compresto is a fast, native macOS app for compressing and managing media files. While it focuses on video, image, and PDF compression, it pairs perfectly with the audio workflows in this guide: convert with ffmpeg or Music, then use Compresto to shrink the video side of your project before shipping. It is a small, focused app that runs entirely on your Mac — no uploads, no servers, no accounts.

Ready to tighten up the rest of your media pipeline? Download Compresto for macOS, and check out our guide on compressing audio files for the natural next step after converting.

Ready to compress your files? Join thousands of creators using Compresto ⚡