How M4A to WAV Conversion Works
AnyTool converts M4A to WAV 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 AAC audio inside the M4A is decoded and written out with ffmpeg using -vn -c:a pcm_s16le, producing uncompressed 16-bit PCM in a WAV container — a lossless, editor-friendly format with no further generation loss. 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 pcm_s16le — uncompressed 16-bit PCM
- Lossless WAV output for editing
- Single-threaded (keeps ads working); no backend, no cap
- Works offline after first load
