Why M4A and MP3 are not the same thing
M4A is Apple's preferred audio format: it stores AAC-encoded audio inside an MP4 container. AAC and MP3 are entirely different codecs — there is no lossless stream copy between them. Converting M4A to MP3 requires decoding the AAC audio and re-encoding it as MP3. That is what this tool does, using the LAME encoder at a VBR quality-2 preset, which lands around 192 kbps. At that bitrate the re-encoding step adds no perceptible quality loss for speech, podcasts, or most music.
Where M4A files come from
You will find M4A in several Apple workflows: Voice Memos exports from iPhone, audio recordings made in QuickTime Player, GarageBand project exports, iTunes-purchased tracks from the DRM-free era (post-2009), and podcast feeds that publish AAC enclosures. The format sounds excellent and is efficient, but it is not universally supported — older car stereos, some podcast apps, and many basic MP3 players will not open it. Converting to MP3 trades a small amount of efficiency for near-universal playback compatibility.
What quality to expect
The output uses VBR MP3 at the LAME quality-2 preset, which averages around 192 kbps and is considered perceptually transparent for most listeners. A typical minute of audio at this bitrate produces a file around 1.4 MB. If your original M4A was encoded at a significantly lower bitrate — say, 64 kbps Voice Memo quality — the output will not be magically better. The conversion is faithful, not upsampling.
No upload — what that actually means
Most online audio converters upload your file to a remote server, transcode it there, and send back a download link. That works fine for a public podcast episode, but not for a private Voice Memo, a client interview recording, or a GarageBand draft. This tool runs FFmpeg inside your browser via WebAssembly. Your M4A file never leaves your device. You can disconnect from the internet after the page loads and the conversion still completes.
File size limits and desktop alternatives
The browser version of FFmpeg is single-threaded and capped around 500 MB. For a typical Voice Memo or GarageBand export that ceiling is never an issue. For very long recordings — an hour-long interview at high quality can push 300 MB — the Clipy desktop app handles larger files natively, or any standalone FFmpeg install converts M4A to MP3 in a single command: ffmpeg -i input.m4a -q:a 2 output.mp3.