Audio Converter
Convert audio files between MP3, WAV, OGG, FLAC, and M4A, right in your browser. Runs entirely on your device — your audio is never uploaded to a server.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
Loading the sample audio — choose your own file to replace it.
How it works
- Choose an audio file, the format you want, and a quality level (for lossy formats).
- Click Convert audio — the file is decoded and re-encoded to your chosen format.
- Preview it right on the page, then download the converted file.
How the conversion works
Every audio format pairs a container (how the bytes are wrapped, e.g.
.mp3, .m4a) with a codec (how the sound itself is
encoded, e.g. LAME MP3, AAC, FLAC). This tool loads FFmpeg — compiled to
WebAssembly so it can run inside your browser tab — decodes your file back
to raw audio samples, then re-encodes those samples with the codec your
target format needs:
ffmpeg -i input.wav -acodec libmp3lame -b:a 192k output.mp3
For MP3, OGG, and M4A the -b:a bitrate flag sets how many
kilobits per second of audio detail survives the re-encode — higher
keeps more detail at the cost of a larger file. WAV and FLAC skip that
flag entirely: WAV stores the decoded samples uncompressed, and FLAC
compresses them losslessly, so both keep 100% of the original audio
detail regardless of bitrate.
FAQ
Does my audio file get uploaded anywhere?
No. The whole conversion runs in your browser using ffmpeg.wasm, a WebAssembly build of FFmpeg — your audio file never leaves your device or touches a server.
Which audio formats can I convert between?
Choose MP3, WAV, OGG, or FLAC as an input, and convert to MP3, WAV, OGG, FLAC, or M4A as the output. The conversion engine bundles its own decoders, so it also accepts less common inputs like AAC, WMA, or Opus.
Why does the first conversion take a moment to start?
The first click loads a ~30MB WebAssembly conversion engine, since it's only fetched when you actually use the tool, not on every page visit. Your browser caches it, so later conversions on this page start instantly.
What's the difference between the lossy and lossless formats?
MP3, OGG, and M4A are lossy — they discard some audio detail to shrink the file, so you can pick a bitrate (128/192/320 kbps) to trade size for quality. WAV and FLAC are lossless and keep the full original audio, so there's no quality setting to choose — FLAC just compresses it losslessly, while WAV stores it uncompressed.
Is there a file size or length limit?
No hard limit is enforced, but everything runs on your device's own CPU and memory, so very large or very long files may be slow or run out of memory on lower-powered devices. It works best for files up to a few hundred MB.
Does this modify or re-encode my original file?
No — your original file is read into memory, converted to the format you chose, and that's it. The source file on your device is never changed.
How we compare
| Feature | Online Tool Store | CloudConvert | Online Audio Converter |
|---|---|---|---|
| No file upload — runs in your browser | ✓ | ✗ | ✗ |
| No sign-up | ✓ | Free tier is conversion-limited | ✓ |
| Preview the result before downloading | ✓ | ✓ | ✓ |
| Lossless output options (WAV, FLAC) | ✓ | ✓ | ✓ |
CloudConvert and Online Audio Converter both get the job done, but only after your file is sent to their server. If you'd rather keep your audio on your own device the whole time, Audio Converter gets you the same result without uploading anything or creating an account.