audio/wav WAV Common
Identifies WAV audio files — an uncompressed or minimally-compressed format favored for audio production and editing.
What it's for
audio/wav identifies WAV (Waveform Audio File Format) files — typically storing uncompressed PCM audio data, resulting in significantly larger file sizes than compressed formats like MP3, but with no compression-related quality loss and lower processing overhead for editing. This makes WAV the standard choice throughout audio production, recording, and editing workflows, where source fidelity and edit-ability matter far more than file size — the opposite priority from web audio delivery, where MP3/AAC/Opus dominate specifically because of their much smaller compressed file sizes.
Format & syntax
Content-Type: audio/wav
No parameters. WAV is technically a container format (based on the RIFF structure) that most commonly holds uncompressed PCM audio, though it can technically contain compressed audio data too — in practice, "WAV file" is used almost synonymously with "uncompressed audio" given how overwhelmingly common that combination is.
How it's used in practice
- Audio recording and production master files — the standard format for recording sessions, mixing, and mastering workflows, where working with uncompressed audio avoids any compression artifacts accumulating through multiple rounds of editing.
- Voice-over and podcast production source files — professional audio content is typically recorded and edited as WAV, only being exported to a compressed format (like MP3) as the final distribution step once editing is complete.
- Sound effects and game audio assets — game development often uses WAV for short sound effects specifically because uncompressed audio has essentially zero decompression overhead during playback, which matters for latency-sensitive, frequently-triggered sounds.
- Audio quality testing and reference files — when audio fidelity needs to be verified without any compression artifacts potentially masking issues, WAV serves as the uncompressed reference format.
Common mistakes & gotchas
- Using WAV for web audio delivery and creating unnecessarily large downloads — WAV's large, uncompressed file sizes make it a poor choice for actual web-served audio content aimed at end users; compressed formats like MP3, AAC, or Opus should be used for final web delivery, with WAV reserved for production/editing stages.
- Assuming WAV is always literally uncompressed — while overwhelmingly the common case, WAV as a container format can technically hold compressed audio codecs too, so "it's a .wav file" doesn't guarantee uncompressed PCM data with absolute certainty, though this is a fairly rare edge case in practice.
- Repeatedly converting between lossy formats and WAV without understanding the quality implications — converting a lossy MP3 to WAV doesn't restore any quality lost in the original MP3 compression — it just represents the already-lossy audio in an uncompressed container, a common misunderstanding about what format conversion can and can't achieve.
- Not accounting for WAV's larger file size in storage/bandwidth planning — applications that store or process user-uploaded WAV files (voice recording features, for example) need to account for their significantly larger size compared to compressed alternatives when planning storage costs and transfer bandwidth.
Comparison & FAQ
| Type | Purpose | Key difference from audio/wav |
|---|---|---|
| audio/mpeg | Compressed, web-delivery-friendly audio | Much smaller file sizes at the cost of lossy compression; WAV is for production/editing, MP3 for final delivery |
| audio/ogg | Open, compressed audio format | Also much smaller than WAV, an open-format alternative to MP3 for web delivery |
Should I use WAV for audio on my website?
Generally no, for actual end-user delivery — WAV's uncompressed file sizes are impractically large for web audio; use MP3, AAC, or Opus for the final served audio, reserving WAV for production/editing stages only.
Does converting an MP3 to WAV improve its quality?
No — converting a lossy-compressed file to an uncompressed container doesn't recover any quality already lost in the original compression; it just represents the same (already degraded) audio data uncompressed, which is a common misunderstanding.
Why do audio professionals prefer WAV during editing?
Uncompressed audio avoids any compression artifacts from accumulating through multiple rounds of editing and processing, and has lower CPU overhead for real-time editing/playback compared to working directly with compressed formats.
Is WAV always completely uncompressed?
Almost always in practice (typically PCM audio), though technically WAV is a container format that can hold compressed codecs too — this is a fairly rare edge case, but worth knowing that "it's a WAV" isn't an absolute guarantee of uncompressed data.