Back to Blog Hub

How to Convert M4A to MP3 on Mac — 4 Free Methods

A comprehensive, step-by-step master guide for Mac users to convert M4A audio files and Apple Voice Memos into high-quality MP3s.

Published: June 6, 2026
Author: M4A to MP3 Team
13 min read
Mac-focused article cover showing file conversion steps, browser conversion, and library export flow.

The Apple ecosystem relies heavily on the M4A format. Whether you are recording lectures via the native Voice Memos app, exporting draft podcasts, or saving files from Logic Pro, macOS saves files as M4A or ALAC assets by default.

If your client, distributor, or government application framework requires universal MP3 uploads, macOS offers several free ways to handle this conversion natively. Here are the 4 best methods:

Method 1: Apple Music App (Native Library Method)

Every macOS installation comes with the Apple Music app. To convert M4A files to MP3 using Apple Music, follow this streamlined workflow:

  1. Open the Apple Music app.
  2. Go to the top system menu bar, select Music > Settings... (or press Cmd + ,).
  3. Select the Files tab. Click on Import Settings....
  4. In the Import Using dropdown, select MP3 Encoder. Under Setting, select Custom... and set the bitrate to 320 kbps to ensure pristine quality. Set channels to Stereo and click OK.
  5. Add your M4A file to your library by selecting File > Import....
  6. Select the M4A track in your Library, then navigate to File > Convert > Create MP3 Version. The app will generate a duplicate track in MP3 format alongside your original file.

Method 2: Client-Side WebAssembly (m4atomp3.net)

If you don't want to add files to your Apple Music library or clog up your library with duplicates, our browser-based WebAssembly tool is the ideal alternative. It runs entirely inside Safari or Chrome on your Mac, utilizing your Mac Studio or MacBook's physical M-series processor to transcode files locally and securely.

Method 3: Automation via Terminal CLI (FFmpeg)

Mac users can leverage Unix terminal configurations. To install FFmpeg on Mac, we recommend using Cupertino's standard Homebrew package manager:

brew install ffmpeg

To instantly convert a file named file.m4a inside a folder, simply run:

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

This is an excellent choice for developers who need to integrate high-speed conversions into script-based automation workflows.

Method 4: Quick Action Automation via macOS Automator

For advanced users, you can create a custom Quick Action that lets you right-click any M4A file in Finder and convert it to MP3 instantly:

  1. Launch the Automator app on your Mac and select Quick Action.
  2. Set "Workflow receives current" to audio files in Finder.
  3. Drag a Run Shell Script action into the empty workspace area.
  4. Set Pass Input to as arguments and paste the following bash script:
for f in "$@"; do
  /opt/homebrew/bin/ffmpeg -i "$f" -c:a libmp3lame -b:a 320k "${f%.m4a}.mp3"
done

Save the workflow as "Convert M4A to MP3". You can now right-click any M4A file in Finder and select your custom Quick Action to convert it in seconds!