What is WAV?

Discover the WAV format, an uncompressed audio standard used in professional recording and editing. Learn about WAV files and their advantages over MP3.

The WAV audio format explained: how it works, its specs, and when to use it.

WAV

What is WAV?

What is WAV?

WAV (Waveform Audio File Format) was developed by Microsoft and IBM in 1991 as part of the RIFF specification. It stores raw, uncompressed audio data - every sample of the original recording is preserved without any compression or quality loss.

WAV is the standard format for audio production, broadcasting, and archiving. A 1-minute stereo WAV file at CD quality (44.1kHz, 16-bit) takes approximately 10 MB of storage, compared to around 1 MB for the same content in MP3.

Technical Specifications

DeveloperMicrosoft / IBM[1]
File Extension.wav[1]
MIME Typeaudio/wav[1]
CompressionUncompressed (PCM)[1]
Sample RatesUp to 192 kHz[1]
Bit DepthUp to 32-bit[1]

How WAV Works

WAV is an application of Microsoft's Resource Interchange File Format (RIFF), a generic chunk-based container in which every piece of data is wrapped in a "chunk" that carries a four-character identifier and a length field. This design is what makes RIFF, and therefore WAV, easy for software to parse: a program reads the four-character code to learn what a chunk contains, reads the length to learn how many bytes to consume, and then either processes or skips the chunk before moving to the next one. A reader that does not understand a particular chunk can step over it cleanly rather than failing, which is why WAV files have stayed readable across three decades of software.

A minimal WAV file contains just two meaningful chunks inside the outer RIFF wrapper. The first is the fmt  chunk, which is the technical description of the audio: the sample rate (how many times per second the waveform was measured, such as 44,100 Hz for CD audio or 48,000 Hz for video), the bit depth (how many bits encode each sample, typically 16 or 24), the number of channels, and the byte rate. The second is the data chunk, which holds the actual audio samples, almost always as linear PCM (Pulse Code Modulation), the raw, uncompressed numeric values of the waveform itself.

Because the fmt  header can in principle reference codecs other than PCM, WAV is technically a container rather than a single codec. In the real world, though, "a WAV file" almost always means uncompressed PCM audio, which is exactly why the format is treated as the gold-standard working copy in audio production: there is no decoding step, no compression artifacts, and every sample sits in the file exactly as it was recorded.

History and Standardization

WAV was defined jointly by Microsoft and IBM around 1991, introduced alongside RIFF as part of the multimedia extensions that brought sound and video to early versions of Windows. At the time, the personal-computer industry needed a simple, openly documented way to store digital audio that any application could read and write, and RIFF's chunked structure, itself modeled on the earlier Interchange File Format used on the Amiga, provided exactly that. WAV became the default sound format of the Windows ecosystem and, through it, a de facto standard far beyond Microsoft's own software.

Its straightforward, lossless storage made WAV a durable standard in professional studio production and broadcast, where preserving every sample matters more than file size. To serve those industries, the European Broadcasting Union extended the format into the Broadcast Wave Format (BWF), which adds standardized metadata and timecode chunks on top of an ordinary WAV. BWF lets a recording carry the exact time it was captured, scene and take information, and a documented history of edits, which is essential when audio from many sources has to be synchronized in film, television, and radio post-production. Crucially, a BWF file is still a valid WAV, so ordinary players can open it even if they ignore the extra chunks.

That backward compatibility is the reason WAV has outlived nearly every audio format of its era. New codecs have come and gone, but because WAV stores raw PCM in a trivially parseable container, it has remained the lowest-common-denominator format that every operating system, editor, and digital audio workstation can open without plug-ins or licensing.

Sample Rate, Bit Depth, and File Size

Because WAV stores audio uncompressed, its file size is entirely predictable: it is simply the sample rate multiplied by the bit depth, multiplied by the number of channels, multiplied by the duration. A minute of CD-quality stereo audio (44,100 Hz, 16-bit, 2 channels) works out to roughly 10 MB, and high-resolution masters at 96,000 Hz and 24-bit are several times larger again. There is no quality setting to trade off, because there is no compression, the only levers on size are the sample rate, bit depth, and channel count you choose at capture.

This predictability is a feature for professionals. An engineer always knows exactly how much storage a session will consume and never has to worry about a lossy codec quietly discarding detail between edits. The cost is sheer volume, which is why WAV is used as the editing and archival master while a smaller format like MP3, AAC, or FLAC is generated for distribution.

Limitations

WAV's biggest technical constraint is a direct consequence of its 1991 design. Because the RIFF chunk-size fields are 32-bit, the total size of a classic WAV file is effectively capped near 4 GB. For most uses that ceiling is irrelevant, but it becomes a real problem for long high-resolution recordings, a multi-hour multichannel session at 96 kHz / 24-bit can hit the limit, at which point the recording silently stops or splits. The industry works around this with the RF64 and BWF 64-bit extensions, which replace the 32-bit size fields with 64-bit ones while keeping the rest of the format intact.

The second limitation is simply the flip side of WAV's strength: it carries no inherent compression, so its perfect fidelity comes at a substantial storage and bandwidth cost. Sending a WAV by email or streaming it over the web is impractical compared with a lossy file a tenth of the size and no audible difference on typical playback. WAV also has weaker, less consistent support for embedded metadata such as cover art and tags than formats like FLAC, which is another reason it stays in the studio rather than in a portable music library.

WAV vs Other Audio Formats

FeatureWAVMP3FLACAIFF
CompressionUncompressed[1]LossyLosslessUncompressed
QualityPerfect[1]ReducedPerfectPerfect
File sizeVery large[1]SmallestMediumVery large
OriginMicrosoft/IBM[1]FraunhoferXiph.OrgApple
Best forEditing, masteringPortable musicArchivingMac editing

WAV stores raw audio at perfect quality for editing, while FLAC keeps that quality at smaller size and MP3 trades fidelity for size.

Pros and Cons of WAV

Advantages

  • Perfect Quality Zero compression means zero quality loss - the exact waveform is preserved.
  • Industry Standard The universal format for professional audio recording, editing, and broadcasting.
  • High Resolution Audio Supports up to 32-bit depth and 192 kHz sample rate for studio-grade recordings.
  • Wide Compatibility Supported by every digital audio workstation and audio software in existence.

Disadvantages

  • Very Large Files 1 minute of stereo CD-quality audio is about 10 MB - 10x larger than MP3.
  • Not for Streaming File sizes are too large for practical music streaming or download distribution.
  • Limited Metadata WAV has poor native metadata support compared to MP3 ID3 tags or FLAC tags.
  • 4 GB File Limit Standard WAV format has a 4 GB file size limit due to the RIFF header structure.

When to Use WAV

WAV is the right choice when audio quality is the top priority and storage space is not a concern.

Audio Production

Recording studios and DAWs use WAV as the working format during recording and mixing.

Broadcasting

Radio and TV broadcast workflows require uncompressed audio for quality control.

Sound Design

Sound effects, foley, and sample libraries are distributed in WAV for maximum quality.

Archiving

Permanent audio archives use WAV or FLAC to preserve recordings indefinitely.

References

  1. WAVE Audio File Format - Library of Congress
  2. Audio codecs guide - MDN Web Docs
  3. WAVE Audio File Format - Library of Congress
  4. WAV - Wikipedia

How to open a WAV file

WAV files are a popular audio format used in various contexts, and there are several categories of software that can open and work with them. Professional audio editing software is ideal for musicians and sound engineers who require advanced editing features, while free and open-source tools cater to casual users and hobbyists. Browser-based applications provide convenience for quick tasks without installation, and built-in tools often offer basic functionality for users who need simple playback or conversion.

When choosing software for WAV files, several factors come into play. Feature fidelity is crucial for professionals who need precise editing capabilities, while casual users may prioritize ease of use and cost. The platform compatibility is also significant, as some tools are exclusive to certain operating systems. Additionally, understanding when to convert WAV files to other formats can help streamline workflows, especially when file size or compatibility is a concern.

Audacity 3.2.1

Windows, macOS, LinuxFree (GPL)

Audacity is a free, open-source audio editing software that supports WAV files extensively. It allows users to record, edit, and manipulate audio with high fidelity, making it suitable for both beginners and professionals.

Key features
  • Multi-track editing and mixing
  • Support for 16/24/32-bit audio
  • Noise reduction and audio effects
  • Real-time audio monitoring
  • Import/export for various audio formats
Strengths
  • Comprehensive editing tools for WAV
  • Free and open-source with no limitations
  • Cross-platform compatibility
Limitations
  • Steeper learning curve for beginners
  • Interface may feel outdated

Exports to: MP3, OGG, FLAC, AIFF, WAV

Best for: Audacity is the best choice for users seeking a powerful, free tool for detailed WAV audio editing.

Visit Audacity →

Adobe Audition 2023

Windows, macOS$20.99/mo

Adobe Audition is a professional audio editing software that excels in handling WAV files with precision. It provides a wide array of tools for audio restoration, mixing, and mastering, making it suitable for industry professionals.

Key features
  • Spectral frequency display for editing
  • Advanced noise reduction tools
  • Multi-track session support
  • Integration with Adobe Creative Cloud
  • Batch processing for multiple files
Strengths
  • Industry-standard tools for audio professionals
  • Seamless integration with other Adobe products
  • High-quality audio processing capabilities
Limitations
  • Subscription model can be costly
  • Resource-intensive on lower-end systems

Exports to: MP3, AAC, FLAC, OGG, WAV

Best for: Adobe Audition is ideal for audio professionals needing advanced features and high fidelity in WAV editing.

Visit Adobe Audition →

WavePad 15.00

Windows, macOS, Android, iOSFree / Paid

WavePad is a versatile audio editing software that supports WAV files and offers a user-friendly interface. It is suitable for both casual users and those needing basic editing features without the complexity of professional software.

Key features
  • Cut, copy, and paste audio clips
  • Audio effects like reverb and echo
  • Batch processing for WAV files
  • Voice recording capabilities
  • Support for various audio formats
Strengths
  • Intuitive interface for easy navigation
  • Free version available with essential features
  • Cross-platform support for mobile and desktop
Limitations
  • Limited advanced features in free version
  • Occasional performance issues with large files

Exports to: MP3, WMA, FLAC, OGG, WAV

Best for: WavePad is suitable for users who need a straightforward audio editor for WAV files without advanced complexities.

Visit WavePad →

VLC Media Player 3.0.18

Windows, macOS, Linux, Android, iOSFree (GPL)

VLC Media Player is a versatile media player that can also handle WAV files effectively. While primarily designed for playback, it offers basic editing features and conversion options, making it a handy tool for quick tasks.

Key features
  • Playback of various audio formats
  • Basic audio editing capabilities
  • Conversion to multiple audio formats
  • Streaming support for audio files
  • Customizable playback settings
Strengths
  • Extensive format support beyond WAV
  • Lightweight and fast performance
  • No cost or ads involved
Limitations
  • Limited editing features compared to dedicated software
  • Interface may not be intuitive for editing

Exports to: MP3, OGG, FLAC, WAV, AAC

Best for: VLC Media Player is best for users needing a free, reliable tool for WAV playback and basic editing tasks.

Visit VLC Media Player →