How M4A to MP3 Conversion Works
AnyTool converts M4A to MP3 entirely in the browser using a self-hosted single-threaded ffmpeg.wasm engine — the core (ffmpeg-core.js + the 32 MB wasm) is bundled from npm and served as a same-origin asset, so nothing is fetched from a CDN. The audio stream is decoded and re-encoded with ffmpeg using -vn -c:a libmp3lame at a VBR quality (-q:a) setting, producing a standard MP3. Because MP3 is a lossy codec this is a true re-encode rather than a copy. Single-threaded is deliberate: the multi-threaded core needs SharedArrayBuffer + cross-origin isolation (COOP/COEP), which would block cross-origin ad iframes, so it is avoided.
- Runs client-side — the audio is never uploaded
- Self-hosted ffmpeg core (bundled) — no CDN
- -vn -c:a libmp3lame with VBR quality (-q:a)
- Lossy re-encode to standard MP3
- Single-threaded (keeps ads working); no backend, no cap
- Works offline after first load
