M4A to MP3 Converter
Drop an M4A file to inspect its metadata in your browser, choose an MP3 bitrate, and copy a ready-to-run FFmpeg command — no upload required.
Inspect M4A Metadata
Drop an M4A (or any audio) file to read its properties. Nothing is uploaded.
FFmpeg Command Generator
ffmpeg -i input.m4a -c:a libmp3lame -b:a 320k -map_metadata 0 output.mp3
Install FFmpeg free at ffmpeg.org.
Replace input.m4a with your actual filename.
Batch convert (Linux / macOS)
for f in *.m4a; do ffmpeg -i "$f" -c:a libmp3lame -b:a 320k -map_metadata 0 "${f%.m4a}.mp3"; done
GUI alternatives
- iTunes / Apple Music — File > Convert > Create MP3 Version on macOS (requires MP3 encoder preference)
- VLC — free media player with a Convert/Save option under the Media menu
- Audacity — free, open-source; import M4A via FFmpeg plugin, export as MP3
- fre:ac — free, open-source batch audio converter for Windows, macOS, and Linux
Drop an M4A file on the left to inspect its metadata
No file is uploaded — everything runs in your browser
Decoding audio metadata...
Duration
—
Sample Rate
—
Channels
—
Source File Size
—
Estimated MP3 Output Size
128 kbps
—
192 kbps
—
256 kbps
—
320 kbps
—
Formula: bitrate (kbps) x duration (s) / 8000. Actual size may vary slightly.
MP3 Bitrate Reference
| Bitrate | Quality | Size / min | Best For |
|---|---|---|---|
| 128 kbps | Acceptable | ~0.9 MB | Earbuds, laptop speakers |
| 192 kbps | Good | ~1.4 MB | General music listening |
| 256 kbps | Very Good | ~1.9 MB | High-quality headphones |
| 320 kbps | Transparent | ~2.4 MB | Audiophile, studio, archival |
AAC is more efficient than MP3: M4A at 128 kbps is roughly equivalent in perceptual quality to MP3 at 160–192 kbps.
Summary
Drop an M4A file to inspect its metadata in your browser, choose an MP3 bitrate, and copy a ready-to-run FFmpeg command — no upload required.
How it works
- Drop an M4A file onto the inspector panel (or click to browse).
- The Web Audio API reads the file's sample rate, duration, and channel count locally — nothing is sent to a server.
- Choose an MP3 bitrate — 128 kbps for casual listening, 192 kbps for good quality, 320 kbps for maximum fidelity.
- Copy the generated FFmpeg command and run it in your terminal.
- Verify the output MP3 in a player before deleting your original M4A.
Use cases
- Convert iTunes purchases or Apple Music downloads to MP3 for use in non-Apple players.
- Prepare voice memos recorded on iPhone for editing in Audacity or GarageBand on Windows.
- Make M4A audiobooks or podcasts compatible with older MP3 players and car stereos.
- Batch-convert an M4A music library by adapting the single-file command into a shell loop.
- Share audio clips in MP3 format for broader compatibility across all devices.
- Check an M4A file's sample rate and duration before encoding.
- Estimate the output MP3 file size before committing to a bitrate.
- Generate a ready-to-paste FFmpeg command without memorizing its flags.