Why this is fast
Native server ffmpeg is roughly 4–8x the throughput of in-browser WASM ffmpeg for the same job, because it runs with real SIMD, threading, and disk I/O instead of the browser shim. Uploads land at the nearest Backblaze B2 point of presence via a presigned URL (a viewer in Tokyo is not pushing bytes through US-east), the encode runs server-side, and the finished MP3 is delivered through Bunny CDN from the same edge. A typical Voice Memo finishes in well under a second of CPU time.
What this tool does, exactly
We run ffmpeg -i input.m4a -vn -c:a libmp3lame -q:a 2 -f mp3 output.mp3 — drop any video stream (M4A never has one but the flag is defensive), decode the AAC track, and re-encode with LAME at VBR quality 2 (~192 kbps). VBR allocates more bits to complex passages and fewer to silence, so the bitrate is allowed to float while average quality stays high. The output is a standard MP3 with no metadata surprises, which means every player — from a 2005 car stereo to a podcast host's ingest pipeline — reads it cleanly.
Why M4A and MP3 are not the same thing
M4A is Apple's preferred audio format: AAC-encoded audio inside an MP4 container. AAC and MP3 are entirely different codecs — there is no lossless stream copy between them. AAC is slightly more efficient than MP3 at the same bitrate, but MP3 plays absolutely everywhere — every car stereo, every old phone, every basic MP3 player, every podcast host. The trade is intentional: a small efficiency hit in exchange for near-universal playback compatibility. At ~192 kbps VBR the re-encoding step adds no perceptible quality loss for speech, podcasts, or most music.
Sister tools
Have any audio file, not just M4A? MP3 converter accepts WAV, FLAC, OGG, AAC, WMA, AIFF, and more. Pulling audio out of a video? MP4 to MP3 converter and video to audio converter both strip the video track and write MP3. Need to trim the MP3 down? MP3 cutter. Make it smaller for email or Discord? Compress audio. Recording fresh audio in a browser? Voice recorder captures straight to MP3.