Convert MP3 to WAV — the counterintuitive direction, DAW imports, and file-size math
Converting MP3 to WAV feels like going backwards — because it is. MP3 is lossy; whatever the encoder threw away at encode time is gone for good. Decoding to WAV just writes the surviving signal into a format ~10× larger. No quality is restored. So why do this conversion at all? Three real reasons: a DAW that won't import MP3, a video editor demanding uncompressed PCM for sample-accurate sync, and CD burning software that requires WAV. Here's the honest guide.
Why this conversion doesn't restore quality
MP3 encoding throws away audio content based on a psychoacoustic model. Quiet sounds masked by loud sounds get dropped. Content above 16 kHz gets truncated. Stereo redundancy gets folded. The bytes that come out are a compressed representation of the signal, not the signal itself.
Decoding the MP3 reconstructs what the encoder preserved — not what the original recording contained. Writing that reconstruction into a WAV file makes it bigger, not better. The WAV is now a bit-for-bit lossless container of a lossy signal. Any tool that opens the WAV will see a clean, uncompressed PCM waveform, but the frequencies and subtleties MP3 discarded are still missing.
There's no magic here. If someone tells you their tool "restores quality when converting MP3 to WAV," they're selling you something. The only thing that changes is the container and the size.
The file-size explosion
MP3 at 192 kbps is roughly 1.4 MB per minute. WAV at CD spec (16-bit / 44.1 kHz / stereo) is 10.1 MB per minute. A 4-minute song goes from ~5.6 MB to ~40.4 MB. A 1-hour podcast at 128 kbps mono MP3 (~60 MB) becomes WAV mono 44.1 kHz (~305 MB). Plan storage accordingly.
WAV also has a 4 GB file size ceiling (32-bit RIFF offsets). For an uncompressed stereo 48 kHz recording, that caps a single WAV at roughly 6.2 hours. Most DAWs auto-switch to RF64 or split into multiple files beyond that; for < 6 hour conversions it doesn't matter.
Three legitimate reasons to do this
1. Your DAW refuses to import MP3
Some production software still doesn't ingest MP3 natively for licensing or workflow reasons:
- Pro Tools — prior to 2019, Pro Tools required conversion to WAV/AIFF/BWF before import. Newer versions accept MP3 but internally convert to PCM anyway.
- Ableton Live (older) — freezes or warps unreliably on some MP3 encodings. A WAV conversion first fixes beat-warp issues.
- Logic Pro X — imports MP3 fine, but converts to PCM on import. Doing it yourself lets you control sample rate and bit depth explicitly.
- Reaper — happy with MP3 but seeking inside large MP3s is slower than WAV because of variable-bitrate index rebuilding.
- Legacy hardware samplers and some MIDI workstations — USB drive imports often require WAV only.
2. Video editor needs uncompressed audio for sync
Film and broadcast post-production workflows typically require uncompressed audio on the timeline:
- Premiere Pro / Final Cut / DaVinci Resolve — accept MP3, but every clip causes a background decode-and-conform step. Pre-converting to WAV makes scrubbing and playback realtime.
- Avid Media Composer — strict conform pipeline. WAV in, WAV out. Working from MP3 breaks sample-accurate sync because MP3 frame boundaries don't align to video frame boundaries.
- Broadcast delivery specs — almost always require BWF (Broadcast Wave, a WAV variant with extra metadata) for final mix deliverables.
3. CD burning / legacy hardware
Red Book audio CDs are PCM, 16-bit, 44.1 kHz, stereo — literally WAV without the header. CD burning software (ImgBurn, Nero, X Lossless Decoder, Windows Media Player's burn mode) wants WAV or AIFF input. MP3-to-CD conversion was a common ask 15 years ago and still is for:
- Older car audio systems that play CDs but not USB MP3
- In-flight entertainment panels (some airlines still run CD-based systems)
- Library and museum kiosks with CD players
- Professional rehearsal playback setups (click tracks on CD)
For CD burning, pick 44.1 kHz, 16-bit, stereo on the output (Red Book standard). Any other combination gets resampled by the burn software, which is an extra quality step.
The short version
- Open MP3 to WAV.
- Drop your MP3 (or a batch).
- Pick sample rate:
44.1 kHzfor music / CD,48 kHzfor video pairing. - Pick bit depth:
16-bitfor CD,24-bitif a DAW will process further (more headroom for effects). - Click Download.
Sample rate and bit depth — what to actually pick
Sample rate
- 44.1 kHz — CD standard. Music. Streaming platforms (Spotify, Apple Music). Pick this unless you have a specific reason not to.
- 48 kHz — video standard. YouTube, Premiere, Final Cut, broadcast TV. Pick this when the WAV will live on a video timeline.
- 96 kHz or higher — pointless for MP3 source. The MP3's content doesn't exceed what 44.1 already samples perfectly. Upsampling to 96 adds no information and quadruples the file.
If the MP3 was encoded from a 48 kHz source (most video audio), the decoder already has 48 kHz samples ready. Pick 48 kHz WAV to avoid a resample step. If the MP3 was encoded from 44.1 (most music), pick 44.1. Our tool shows the source sample rate so you can match.
Bit depth
- 16-bit — CD quality. 96 dB of dynamic range. Adequate for anything you're not going to process further.
- 24-bit — professional standard. 144 dB of dynamic range. Gives a DAW more headroom when applying gain, compression, or EQ. Pick this if a DAW will process the file and not just play it.
- 32-bit float — effectively infinite dynamic range, immune to clipping during processing. Overkill as a final format. Use only if a specific tool demands it.
What you still can't recover
Things MP3 encoding destroys that WAV conversion does not bring back:
- Content above the MP3 lowpass — most MP3 encoders clip everything above ~16 kHz at lower bitrates. Gone.
- Micro-dynamics in quiet passages — the psychoacoustic model aggressively quantizes bits that were under the masking threshold. Gone.
- Stereo imaging subtleties — joint stereo encoding folds redundant L/R content into mid+side, which can't be perfectly un-folded.
- Transient attack sharpness — pre-echo artifacts around hi-hats and snare hits are baked in.
If you need the original fidelity, you need the original file — the WAV, FLAC, or high-bitrate AAC from before MP3 encoding. No post-conversion can undo information destruction.
Honest comparison — desktop and online alternatives
Audacity (free, desktop)
Open MP3, File → Export Audio → WAV. Straightforward. Supports sample rate and bit depth choices. Overkill for straight format conversion; perfect if you're also editing. Batch requires the Macros feature.
iTunes / Apple Music (free, macOS/Windows)
Change Import Settings to WAV Encoder, right-click track → Convert → Create WAV Version. Works. No per-file sample rate control; whatever Import Settings says applies to all.
ffmpeg CLI (free, desktop, power tool)
Canonical one-liner: ffmpeg -i input.mp3 -acodec pcm_s16le output.wav. pcm_s24le for 24-bit, -ar 48000 for a resample. Scripts beautifully. Not friendly if you don't want to type.
VLC (free, desktop)
Media → Convert / Save, pick "Audio - CD." UI is confusing, batch mode is command-line only, and the default settings hit 44.1/16 regardless of your source. Works if you don't have anything else installed.
foobar2000 (free, Windows/macOS)
Excellent batch converter for audiophile workflows. Exposes every parameter explicitly. Preserves metadata well. The macOS build is third-party.
Online-Audio-Converter and similar sites
Upload to their server, server runs ffmpeg, download. Your file is on their disk with your IP in the logs. Free tiers often cap file size and re-encode at sub-optimal defaults.
Our tool
Runs ffmpeg.wasm in your browser. Exposes sample rate and bit depth as explicit choices. No upload, no watermark, no sign-up. Trade-off: first load is ~25 MB of wasm (cached forever), and single-threaded, so very long files are slower than desktop ffmpeg on the same hardware.
Related audio conversions
- WAV → MP3 to shrink uncompressed audio for distribution
- AAC → MP3 when a target only accepts MP3
- MP4 → MP3 to extract audio from a video file
- Extract audio from video (lossless when source is AAC)
- WAV to MP3 guide — the opposite direction, with bitrate math
Common questions
Is MP3 to WAV lossless?
The conversion itself is lossless — WAV is an uncompressed container, so nothing new is lost. But the MP3 source was already lossy; the WAV is a lossless copy of a lossy signal. You're not gaining quality, just changing containers.
Will the WAV sound better than the MP3?
No. They'll sound identical. The audio information is the same; only the container and the file size differ. Any perceived improvement is expectation bias.
Should I pick 24-bit or 16-bit?
16-bit for playback, burning a CD, or delivery to a spec that calls for CD quality. 24-bit if a DAW will process the file further (gain, EQ, compression) — the extra bits give headroom for internal calculations. For a final delivery file, 16-bit is fine.
Can I convert a batch of MP3s at once?
Yes. Drop a folder or select 50 files. They queue, convert, and download as a zip. We've tested batches of 200+ short files without issue.
What happens to ID3 tags (title, artist)?
WAV supports embedded metadata via LIST/INFO chunks. We read the MP3's ID3v2 tags and write equivalent LIST/INFO chunks on the WAV. Not every player reads them, but most DAWs and media libraries will.
Does this work offline?
Yes after first load. The ffmpeg wasm binary caches in your browser; subsequent visits work with no internet connection.
Why is the WAV so big?
WAV is uncompressed. A 5 MB MP3 becomes a 40-50 MB WAV for a 3-4 minute song. That's the ~10× expansion ratio we're measuring in the chart above. If you want lossless compression, go to FLAC instead — about 60% the size of WAV, bit-identical on decode.
Ready?
Convert MP3 to WAV →. Pick 44.1 kHz / 16-bit for CD, 48 kHz / 24-bit for a video-edit timeline, and remember: the WAV won't sound better than the MP3. It just plays in more tools.