Skip to content
Morphr

Audio format · .wav

What is a WAV file?

WAV (Waveform Audio File Format) is Microsoft and IBM’s 1991 container for storing audio, almost always as uncompressed PCM — the raw, sample-by-sample representation a studio works with. It is bit-perfect and universally readable, but the files are large and carry very little metadata.

Full name
Waveform Audio File Format
Category
Audio
File extension
.wav
MIME type
audio/wav
Developer
Microsoft / IBM
First released
1991
Compression
Usually none (PCM)
Standard
Open (documented)

Convert a WAV file

Locally in your browser — nothing is uploaded. Pick a target format:

A RIFF container around raw samples

Under the bonnet, WAV is a RIFF (Resource Interchange File Format) container: a header that declares the sample rate, bit depth and channel count, followed by a long block of audio samples laid down one after another. Because nothing is compressed, every sample sits in the file exactly as it was captured — there is no codec to decode and no quality loss to argue about. That simplicity is the whole point. Any audio tool, on any platform, can open a WAV without guessing at proprietary codecs, which is why it has survived three decades as the lowest-common-denominator interchange format.

The trade-off is size. A stereo CD-quality file at 44.1 kHz and 16-bit runs to roughly 10 MB per minute, and higher rates such as 48 kHz or 96 kHz at 24-bit balloon from there. There is also a historical 4 GB ceiling baked into the original 32-bit size fields, which is why long high-resolution recordings sometimes need newer variants such as RF64 or BWF.

Why studios still reach for it

WAV is the working format of recording and editing. When you are cutting, layering and re-exporting audio dozens of times, you want each pass to start from the same untouched samples rather than re-compressing a lossy file and accumulating artefacts. WAV gives you that, and it does so without the CPU cost of decoding. The weakness is metadata: the format was never designed to hold rich tags, so artist, album and artwork support is patchy and inconsistently read. For a master you are about to edit that hardly matters; for a music library you actually browse, it is a real limitation.

Strengths

  • Bit-perfect, uncompressed audio with no generational quality loss.
  • Read by virtually every operating system, editor and player.
  • No decoding overhead, so it is fast and predictable to work with.
  • An ideal master format for editing and archiving raw recordings.

Limitations

  • Very large files — roughly 10 MB per minute at CD quality.
  • Minimal, inconsistent metadata and artwork support.
  • Original format caps file size near 4 GB.
  • Wasteful for distribution or portable listening.

When to use WAV

Use WAV when you are recording, editing or archiving audio and want an untouched master; reach for a compressed format once the audio is finished and you only need to listen to or share it.

WAV FAQ

WAV vs FLAC — which should I use?
Both are lossless and bit-perfect, so they sound identical. Choose WAV as a working master for editing, and FLAC for storage and listening because it carries the same audio in roughly half the space with proper tags.
Does converting to WAV improve the quality of an MP3?
No. Converting a lossy MP3 to WAV cannot recover detail that was discarded during compression — you simply get a much larger file that sounds the same.
Why are my WAV files so big?
Because the audio is stored uncompressed, every sample is written in full. That is deliberate for quality, but it is why a few minutes of stereo audio can run to tens of megabytes.