Format Guides
What Is WAV?
Quick answer
What WAV actually is
WAV stands for Waveform Audio File Format. It was developed by Microsoft and IBM and has been a standard since 1991 — making it one of the oldest audio file formats still in common use. The format is simple: a container that holds audio data encoded as PCM (Pulse Code Modulation), which means raw, uncompressed audio samples.
"Uncompressed" is the key word. WAV doesn't use a codec to reduce file size. It stores the audio data exactly as recorded — every measurement, every sample value, in full. There is no encoding algorithm making decisions about what to keep and what to discard.
This gives WAV a specific property: the audio is preserved with complete fidelity. But it comes with an equally specific cost: the file sizes are enormous compared to compressed formats.
Why WAV files are large
CD-quality audio (44,100 Hz sample rate, 16-bit depth, stereo) generates about 10 megabytes of data per minute. A 3-minute song is roughly 50 MB. A 1-hour recording is about 600 MB.
| Format | 3-min song | 60-min recording | Quality |
|---|---|---|---|
| WAV | ~50 MB | ~600 MB | Lossless — uncompressed |
| FLAC | ~25 MB | ~300 MB | Lossless — compressed (identical audio) |
| MP3 320kbps | 7.2 MB | 144 MB | Lossy — near-lossless at this bitrate |
| MP3 192kbps | 4.3 MB | 86 MB | Lossy — transparent for most listeners |
| MP3 128kbps | 2.9 MB | 58 MB | Lossy — audible artifacts in some content |
Note that WAV and FLAC contain identical audio data — FLAC is just compressed more efficiently. Converting between them loses no quality. Converting either to MP3 loses some quality, irreversibly.
Why editors use WAV
Professional audio editing software — DAWs like Pro Tools, Logic Pro, Ableton, Reaper — all read WAV natively and efficiently. There are specific technical reasons this matters in a production context.
- No decoding overhead:Uncompressed audio can be read directly from disk. There's no decode step, which makes random access (jumping to any point in the audio) fast and CPU-efficient.
- No generation loss:When you export a WAV, process it, and export it again — repeatedly — the quality doesn't degrade. Each export is a clean representation of the audio at that stage.
- Universal support:Every piece of professional audio software accepts WAV without question. Compatibility is never an issue.
- Sample-accurate editing:Since every sample is available and unmodified, cuts, fades, and edits happen at the exact sample position — no interpolation or approximation.
The most important misunderstanding about WAV
WAV is not inherently higher quality than the audio stored inside it. This is the single most common confusion about the format — and it's worth being explicit about.
If you take an MP3 — a file where data has already been discarded through lossy compression — and convert it to WAV, you end up with a WAV file that contains the same audio as the MP3. The WAV container doesn't restore the discarded data. The file is larger (because WAV is uncompressed), but the audio is identical to the MP3.
This is sometimes called "re-wrapping" or "upsampling" but those terms can be misleading. The reality is simpler: you've changed the container. The audio data hasn't changed. If the MP3 had audible compression artifacts, the WAV has the same audible compression artifacts. More disk space, same quality.
The reason some software requires WAV input isn't because WAV "sounds better" — it's because WAV has no decompression step, which simplifies processing. Converting MP3 to WAV to use with such software is necessary but shouldn't be mistaken for a quality improvement.
WAV vs FLAC
| WAV | FLAC | |
|---|---|---|
| Audio quality | Lossless | Lossless (identical) |
| File size | Largest | 40–60% smaller than WAV |
| Compression | None | Lossless compression |
| DAW support | Universal | Wide but check your software |
| Metadata support | Limited | Rich (title, artist, artwork, etc.) |
| Streaming support | Universal | Widely supported now (Apple Music, etc.) |
| Best for | Editing, broadcast, legacy software | Archiving, hi-fi, long-term storage |
Both are lossless. The decoded audio is mathematically identical. The choice between them is about file size, metadata, and software compatibility — not quality.
When to use WAV
- Working in a DAW:Use WAV as your working format. Create projects in WAV; export in WAV until the final step.
- Software that requires uncompressed input:Some audio tools, games engines, and broadcast workflows require WAV. Convert to WAV if that's what the software demands.
- Delivering audio professionally:Broadcast, film, and TV deliverables often specify WAV with specific sample rate and bit depth requirements.
When not to use WAV
- Archiving long recordings:Use FLAC. You get identical audio quality at half the file size. WAV's lack of metadata support is also a problem for archiving large collections.
- Sharing or distributing:Use MP3 or AAC. A 50 MB WAV is impractical for email, streaming, or public download. MP3 at 192 kbps is 10x smaller and sounds near-identical for most listeners.
- Mobile storage:WAV files fill up phones and portable devices quickly. Use a compressed format for listening on the go.
Convert to/from WAV
Last updated: March 28, 2026