Decodes an MP3 to uncompressed WAV. Useful when something downstream wants raw PCM — a DAW, a hardware sampler, a transcription model, an analysis script.
It does not improve the audio
What it does achieve is stopping further loss. If you are about to edit, layer or process the audio, working in WAV means the edits are not re-compressed at each step.
The size, and how to control it honestly
If the source was mono to begin with — most spoken-word MP3s are — forcing mono halves the WAV with no loss at all. Dropping the sample rate is the other lever, and for speech 22 kHz is imperceptible.
What is written
Other names for this
Also searched as “convert mp3 to wav”, “mp3 to pcm”.
Questions
- Will this make my MP3 sound better?
- No. MP3 loss is permanent. This gives you an uncompressed copy of the same audio and prevents any further loss.
- Why is the file ten times bigger?
- WAV stores every sample uncompressed. That ratio is exactly what MP3 compression was achieving.
- What bit depth do I get?
- 16-bit PCM, which is CD quality and what every DAW and sampler accepts.
- Is my file uploaded?
- No. The demuxing, decoding and encoding all happen in this tab using the browser’s own media stack plus a WebAssembly encoder. A recording can be an interview, a lecture, a private call — none of it is transmitted. Turn your Wi-Fi off after the page loads and it still works.
- How large a file can I convert?
- There is no imposed limit, only your device’s memory — around 2 GB in a desktop browser and 400 MB on a phone, since the file is held in memory while it converts. A two-hour video converts in well under a minute on a laptop.
- Can I convert several files at once?
- Yes. Drop as many as you like, or a whole folder. Each keeps its original name with the new extension, and you can download them individually or as a ZIP.