Format Guides

What Is WAV?

Quick answer

WAV (Waveform Audio File Format) stores audio without compression. Every sample is kept intact — no psychoacoustic removal, no quality trade-off. The result is large files (a 3-minute song is ~50 MB) and audio that is identical to the original recording. WAV is the standard format for professional audio editing.

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.

Format3-min song60-min recordingQuality
WAV~50 MB~600 MBLossless — uncompressed
FLAC~25 MB~300 MBLossless — compressed (identical audio)
MP3 320kbps7.2 MB144 MBLossy — near-lossless at this bitrate
MP3 192kbps4.3 MB86 MBLossy — transparent for most listeners
MP3 128kbps2.9 MB58 MBLossy — 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

WAVFLAC
Audio qualityLosslessLossless (identical)
File sizeLargest40–60% smaller than WAV
CompressionNoneLossless compression
DAW supportUniversalWide but check your software
Metadata supportLimitedRich (title, artist, artwork, etc.)
Streaming supportUniversalWidely supported now (Apple Music, etc.)
Best forEditing, broadcast, legacy softwareArchiving, 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.

Last updated: March 28, 2026