MP3 to WAV

Decodes an MP3 and writes it out as an uncompressed 16-bit PCM WAV file, in your browser, with nothing uploaded. Useful for DAW import, CD burning and hardware samplers — anywhere software wants raw audio rather than a compressed stream. It does not improve quality, and nothing can.

drop your MP3 here

or click to pick a file.

At a glance

Input formats.mp3, plus most other audio files
Output formatWAV, 16-bit PCM (RIFF)
Sample ratePreserved from the source
ChannelsPreserved from the source
Typical size changeAbout 10× larger
BatchYes — drop several files, get a zip back
Practical size limit~500 MB per file (browser memory)
Uploads your fileNo — runs entirely in the page

What actually changes

An MP3 is a set of instructions for reconstructing an approximation of the original audio. A WAV is the audio itself: a list of numbers, one per sample per channel, with a 44-byte header describing the format.

Converting MP3 to WAV runs the MP3 decoder and writes the resulting samples to disk uncompressed. The file gets roughly ten times bigger — a 4 MB song becomes about 40 MB — and the audio is exactly what the MP3 already sounded like. Not better. The information that MP3 encoding discarded was discarded permanently; decoding does not and cannot recover it.

This is worth being explicit about because it is the single most common misunderstanding around this conversion. Converting to WAV, or to FLAC, or to any other lossless format does not upscale, restore, or "un-compress" the audio in any meaningful sense. It just stops applying further compression from this point forward. That is genuinely useful — but for workflow reasons, not quality ones.

When you'd want this

Settings that matter here

There is nothing to choose, and that is deliberate: WAV is uncompressed, so there is no bitrate. Any converter offering you an "MP3 bitrate" for WAV output is showing you a control that does nothing.

The output is 16-bit PCM at the source file's original sample rate, with the channel count preserved. 16-bit is the right depth here — the source is an MP3, so there is no additional dynamic range to capture, and 24-bit would double the file size for no gain.

The sample rate is carried across rather than forced, because resampling is a processing step that slightly alters the audio and there is usually no reason for it. If you specifically need 44.1 kHz — for CD burning, or because your project runs at that rate — use the CD-spec page or the resampler, which do it deliberately.

What you lose

Disk space, and that is about it. The file is roughly ten times larger for audio that sounds identical.

Tags are not carried over. WAV's metadata support is an afterthought — there is no standard tagging system that music software agrees on — so artist, album and artwork are dropped. For a working file heading into a DAW this is usually irrelevant; for a library file it means WAV is the wrong choice, and FLAC is the right one, since it is equally lossless, tags properly, and is about half the size.

You do not lose any audio quality — but you do not gain any either. If someone has sent you an MP3 and you need a high-quality master, converting it to WAV does not produce one. Only the original recording can do that.

FAQ

Does converting MP3 to WAV improve the quality?

No. The data that MP3 compression discarded is gone permanently, and decoding cannot recover it. The WAV sounds exactly like the MP3, in a file about ten times larger. It is useful for compatibility and editing, not for quality.

Why is the WAV so much bigger?

Because it is uncompressed. WAV stores every sample directly — around 10 MB per minute at CD quality — whereas MP3 stores a compressed approximation. A 4 MB song typically becomes about 40 MB.

What bit depth and sample rate do I get?

16-bit PCM at the source file's original sample rate, with the channel count preserved. 16-bit is appropriate because an MP3 source has no extra dynamic range to capture.

Should I use WAV or FLAC?

FLAC if you are storing it — it is equally lossless, about half the size, and supports tags properly. WAV if it is going into a DAW, a hardware sampler or CD-burning software, which often want raw PCM.

Why is there no bitrate setting?

Because WAV is uncompressed, so bitrate does not apply. A converter that offers you a bitrate for WAV output is showing a control that has no effect on the result.