How to Convert M4A to MP3 — Free Online Guide
M4A is Apple's audio format — used by iTunes, Apple Music, and iPhone Voice Memos since the early iPod era. It sounds great on Apple devices. It doesn't play on your 2012 car stereo, your colleague's Android media player, or that old Kindle you use for podcasts.
This guide explains what M4A actually is, why it fails on certain devices, and how to convert it to MP3 for free — without uploading your file anywhere.
Quick answer: M4A (MPEG-4 Audio) is Apple's audio container — used by iPhone voice memos, iTunes purchases, and GarageBand exports. Converting to MP3 gives you universal compatibility on every device and platform. Use Convertlo's M4A to MP3 converter — in-browser, no upload, 192 kbps default.
What Is an M4A File?
M4A is a file extension for an MPEG-4 audio container holding AAC (Advanced Audio Coding) encoded audio. The .m4a extension was introduced by Apple to distinguish pure audio files from .mp4 video files — both are technically MPEG-4 containers, but .m4a signals audio-only content.
AAC is technically superior to MP3 at equivalent bitrates — it achieves better quality at 128 kbps than MP3 does at 192 kbps. But despite the quality advantage, M4A has less universal support than MP3 because it was popularized by Apple and some older or non-Apple hardware and software never added support for it.
Why Won't My M4A File Play?
M4A playback fails in these common situations:
- Car stereos (pre-2015) — Most factory head units from the early 2000s to mid-2010s only support MP3 from USB drives. M4A simply shows as an unsupported format.
- Legacy Windows software — Windows Media Player without codec packs, older DJ software (Traktor, Virtual DJ older versions), and some podcast clients on Windows may reject M4A.
- Android media players — Most modern Android apps support M4A, but older versions and some custom ROMs do not.
- Hardware MP3 players — Older iPod shuffles aside, most non-Apple portable players only decode MP3 and WMA.
- Voice memo compatibility — iPhone Voice Memos save as M4A. Sending these to Windows users or transcription services sometimes requires MP3.
Convert M4A to MP3 Free — Right Now
No upload, no software, no signup. Your file never leaves your device.
Method 1 — Convert M4A to MP3 Free in Your Browser
- Open convertlo.pro/m4a-to-mp3.html on any device.
- Drag and drop your M4A file, or click Browse to select it.
- On first use, the browser downloads FFmpeg.wasm (~32 MB) — cached after first use.
- Conversion runs 100% locally — your audio never leaves your device.
- Click Download to save the MP3 file.
Works on Chrome, Edge, Firefox, and Safari. Handles M4A, M4B, AAC, MP4 audio, and more. Batch conversion available.
Method 2 — Convert Using iTunes / Music App
- Open Music (macOS) or iTunes (Windows).
- Go to Preferences → Files → Import Settings.
- Set Import Using to MP3 Encoder, choose bitrate (192 kbps recommended).
- In your library, right-click the M4A track → Convert → Create MP3 Version.
- The MP3 appears alongside the M4A in your library.
This method works well for converting Voice Memos and iTunes-imported audio. Note: DRM-protected files will not have the "Create MP3 Version" option.
Method 3 — Convert Using FFmpeg (Command Line)
- Install FFmpeg from ffmpeg.org or via
brew install ffmpegon Mac. - Open Terminal or Command Prompt.
- Convert at 192 kbps:
ffmpeg -i input.m4a -b:a 192k output.mp3
Batch convert all M4A files in a folder (Mac/Linux):
for f in *.m4a; do ffmpeg -i "$f" -b:a 192k "${f%.m4a}.mp3"; done
FFmpeg automatically copies metadata tags from M4A to ID3 tags in the output MP3.
M4A vs MP3 — Quality at the Same Bitrate
| Property | M4A (AAC) | MP3 |
|---|---|---|
| Codec | AAC (MPEG-4 Audio) | MP3 (MPEG-1 Audio Layer III) |
| Quality at 128 kbps | Better than MP3 192 kbps | Acceptable |
| Quality at 256 kbps | Near-transparent | Very good |
| File size | Smaller for same quality | Larger for same quality |
| Apple devices | Native, optimal | Supported |
| Car stereos (pre-2015) | Often unsupported | Universal |
| Windows Media Player | Needs codec | Native |
| Hardware MP3 players | Often unsupported | Universal |