AudioUtils

What Is WAV? Everything You Need to Know

Understand the WAV audio format, its uncompressed quality, file sizes, and best uses. Learn when WAV is the right choice.

The Short Answer

WAV (Waveform Audio File Format) is the file format Microsoft and IBM jointly published in August 1991 as part of Windows 3.1's Multimedia Extensions. By default it stores uncompressed linear PCM audio — the raw, sample-by-sample digital representation of sound that comes off an analog-to-digital converter. The format is structurally trivial, decodes with zero CPU overhead, supports any bit depth and sample rate the hardware can handle, and is the lingua franca of professional audio: every DAW, every video editor, every sample library, and every broadcast workflow on earth understands WAV.

The trade-off is size. A three-minute stereo song at CD quality is roughly 30 MB. A one-hour 24-bit/96 kHz session capture is about 1.2 GB. WAV is what you record and edit in; you convert out of it before you distribute.

The RIFF Container

Underneath, a WAV file is a RIFF (Resource Interchange File Format) document. RIFF is Microsoft's tagged-chunk container, originally derived from Electronic Arts' IFF specification, and the WAV layout follows a strict pattern:

  • RIFF header — 12 bytes at the very start: the four ASCII letters 'RIFF', a 32-bit little-endian length field, and the form type 'WAVE'.
  • fmt chunk — describes the audio: format code (1 = PCM, 3 = IEEE float, 6 = A-law, 7 = µ-law, 65534 = WAVE_FORMAT_EXTENSIBLE), channel count, sample rate, byte rate, block alignment, and bit depth.
  • data chunk — the audio samples themselves, stored interleaved (left, right, left, right…) for stereo files. The chunk header gives the byte length of the audio payload.

Optional chunks can appear before, between, or after the required ones: 'LIST' / 'INFO' for metadata, 'bext' for the Broadcast Wave timecode/originator info, 'cue ' for markers, 'smpl' for sampler loop points, 'fact' for non-PCM formats. A reader is supposed to walk the chunk list and skip anything it does not recognize, which is what makes RIFF mostly forward-compatible.

The container is technically able to hold compressed data — anything with a valid Microsoft format code, including ADPCM and even MP3 inside a 'WAVEFORMATEX' header — but in practice the moment you see a '.wav' file, you should expect uncompressed PCM. Compressed WAV exists mostly as a curiosity in legacy Windows software.

Why DAWs and Editors Love WAV

There are three real reasons WAV dominates production environments:

1. No decode overhead. PCM samples are just numbers in a file. A modern CPU can stream dozens of WAV tracks off an SSD without breaking a sweat. Compressed formats need decoding before each playback head can read them, which adds latency and complexity to a tightly timed real-time engine. 2. Sample-accurate seeking. You can jump to any sample in a WAV file by computing 'byte_offset = data_chunk_start + sample_index × bytes_per_sample × channels' and reading from there. Compressed formats have to decode from the previous keyframe — fine for playback, painful for waveform drawing and tight edit-point scrubbing. 3. Predictable file structure. Every DAW developer has written WAV reading code, and every WAV reader behaves the same way. There are no encoder-specific quirks, no LAME-vs-Fraunhofer differences, no padding ambiguities. What you wrote is what gets read back.

This is also why sample libraries, foley packages, and orchestral instrument collections ship as WAV. The streaming engines inside Kontakt, EastWest Play, Spitfire's BBC Symphony Orchestra, and others assume direct PCM.

File Size Math

WAV size is deterministic. The formula is:

bytes ≈ sample_rate × bit_depth/8 × channels × seconds + ~44 byte header

Plugging in standard values:

  • CD quality (44.1 kHz, 16-bit, stereo): 44,100 × 2 × 2 = 176,400 bytes/second, or about 10.1 MB per minute.
  • 48 kHz / 24-bit stereo (broadcast standard): 48,000 × 3 × 2 = 288,000 B/s ≈ 17.3 MB per minute.
  • 96 kHz / 24-bit stereo (high-resolution): 576,000 B/s ≈ 34.6 MB per minute.
  • 192 kHz / 32-bit float stereo (mastering): 1,536,000 B/s ≈ 92 MB per minute.

Because the data chunk uses a 32-bit unsigned length field, classic WAV maxes out at 4 GB. That is roughly 6.7 hours of CD-quality stereo or 1.7 hours at 96 kHz / 24-bit / 5.1. The RF64 extension (and its EBU-blessed cousin BW64) lifts this ceiling by allowing a 64-bit data size, and most modern DAWs auto-promote to RF64 when a recording crosses 4 GB.

Bit Depth and Sample Rate

Bit depth controls the dynamic range and noise floor; sample rate controls the audible frequency ceiling.

  • 8-bit integer — 256 quantization levels, ~48 dB dynamic range. Historical only (early Windows wave sounds).
  • 16-bit integer — 96 dB dynamic range. Audio CD, distribution masters, Bluetooth A2DP.
  • 24-bit integer — 144 dB dynamic range. Tracking and mixing standard.
  • 32-bit integer — 192 dB dynamic range. Mostly a curiosity.
  • 32-bit float — IEEE 754 single-precision. The internal format of every modern DAW, also written to disk by 32-bit-float field recorders (Zoom F-series, Sound Devices MixPre II) so clipping in capture is recoverable in post.
  • 64-bit float — Used internally by some mastering chains; rarely written to disk.

Sample rates run from 8 kHz (telephony) through 11.025 / 22.05 / 32 / 44.1 / 48 / 88.2 / 96 / 176.4 / 192 / 384 kHz. The Nyquist rule means a 44.1 kHz file can represent frequencies up to 22.05 kHz, comfortably above the human hearing limit. Higher rates exist mostly to give downstream filters and pitch-shifters more headroom, not because anyone can hear above 22 kHz.

Channels and Channel Order

WAV supports mono, stereo, and multichannel layouts. For surround content you can either store all channels in one WAV (ordered FL, FR, FC, LFE, BL, BR for 5.1, with the order specified in WAVE_FORMAT_EXTENSIBLE's channel mask) or split into individual mono "stems." DAW projects almost always use the mono-per-track approach because it makes routing and editing cleaner.

Broadcast Wave (BWF)

The European Broadcasting Union extended WAV in 1997 with a 'bext' chunk that adds timecode-aware metadata: an originator string, a creation date, an SMPTE time-of-day timestamp, and a free-text description. This BWF profile is mandatory for film and television deliverables — every Pro Tools recording on a film set is BWF, and broadcast servers like AVID iNEWS expect BWF on ingest. The audio inside is still ordinary PCM; BWF is purely additive metadata.

The Metadata Weakness

WAV's biggest practical flaw is metadata. The original spec had no clear story for tagging, and three competing approaches grew up around it:

  • LIST/INFO chunks — Microsoft's original answer. Limited fields (IART, INAM, ICMT, IGNR, ICRD…), no album art, ASCII-only in older readers.
  • ID3v2 tags — bolted on by encoders like LAME via an 'id3 ' chunk. Many players read these, but the placement is non-standard and some readers strip them.
  • bext chunk — broadcast metadata only.

The result: metadata in WAV is fragile, and tag editors disagree about what to write where. This is one of the strongest reasons to use FLAC for archival instead — FLAC's Vorbis Comments are a clean Unicode key/value store with first-class artwork support.

When to Use WAV

WAV makes sense when:

  • You are tracking, editing, or mixing in a DAW.
  • You are sending masters to a mastering engineer or pressing plant.
  • You are delivering broadcast content (use BWF specifically).
  • You are building a sample library.
  • You are interoperating with a tool that has poor compressed-format support.

WAV is the wrong choice when:

  • You are distributing to listeners — the files are 5–10x larger than necessary. Use the WAV to MP3 converter for general distribution or WAV to FLAC for lossless distribution.
  • You are uploading to a streaming service. Most ingestion pipelines re-encode, but you will burn far more upload bandwidth and storage than needed — compress a WAV file first if you must keep PCM and just need to trim its footprint.
  • You are putting audio in a mobile app. Bundle compressed audio and decode at runtime.
  • You are archiving a music collection long-term — see WAV vs FLAC for archiving and What is FLAC for why FLAC wins on storage cost without losing anything.

For one-off conversion jobs the WAV converter handles WAV-to-anything in your browser, and MP3 to WAV and FLAC to WAV round-trip the other way for editing.

Real-World Use

The places WAV still dominates in 2026:

  • Recording studios — every Pro Tools, Logic Pro, Cubase, and Reaper session is WAV-backed.
  • Film and TV — production sound is BWF, post-production deliveries are BWF, archive masters are BWF.
  • Sample libraries — Native Instruments, Spitfire, Output, Splice all ship WAV.
  • Broadcast servers — radio playout systems like RCS Zetta and ENCO DAD ingest WAV/BWF.
  • Mastering houses — final masters delivered to streaming services, vinyl cutters, and DDP authors are WAV at the project's working sample rate.

Outside those contexts WAV is overkill. Inside them it has not been seriously challenged in 35 years and is unlikely to be — the format is simple enough that the only thing that could replace it is a similarly simple format with better metadata, and FLAC already plays that role for everyone who needs compression.

For the broader story on uncompressed digital audio see the PCM audio explainer.

More to Read

What Is MP3? The Format ExplainedWhat Is OGG? The Open Container Format ExplainedWhat Is M4A? Apple's Audio Format ExplainedWhat Is AAC? Advanced Audio Coding ExplainedWhat Is AIFF? Apple's Lossless Audio FormatWhat Is WMA? Windows Media Audio ExplainedAudio Bitrate Explained: What It Means for QualityWhy WAV Files Are So Large (And What to Do About It)What Is M4A? The iPhone Audio Format ExplainedWhat Is Opus? The Modern Audio Codec ExplainedAudio File Size Comparison: MP3, WAV, FLAC, OGG, AACWhat Is Vorbis? The Open Audio Codec ExplainedWhat Is ALAC? Apple Lossless Audio ExplainediTunes and Apple Music Audio Formats ExplainedWhat Is HLS Audio? HTTP Live Streaming ExplainedAIFF vs. AIF: What Is the Difference?Android Audio Formats: Native Support and Best PracticesiPhone Audio Formats: What iOS Supports & Doesn'tMP3 Bitrate Guide: 128 to 320 kbps ExplainedAudio Bitrate vs. Sample Rate: What's the Difference?Audio Transcoding vs. Converting: What Is the Difference?Audio Normalization: Peak vs Loudness — When to Use EachAudio Quality Settings: Bitrate, Sample Rate, Bit DepthAudio Sample Rate Explained: 44.1 vs 48 vs 96kHzWhat Is VBR vs CBR? Bit Allocation in Audio EncodingContainer vs Codec: The Most Confusing Thing in AudioPCM Audio Explained: Why WAV Files Are So LargeAudio Bitrate Guide: Right Settings for Every Use CaseAudio Compression Explained: File Size vs Dynamic RangeID3 Tags Explained: MP3 Metadata StandardMP3 vs FLAC: Lossy vs Lossless ComparedMP3 vs AAC: Which Codec Sounds Better?MP3 vs OGG (Vorbis): The Complete ComparisonM4A vs MP3: Which Should You Choose?Lossless vs Lossy Audio: The Complete GuideAudio Formats Explained: The Complete GuideHow to Convert Audio Files: Complete GuideHow to Reduce Audio File Size Without Losing QualityHow to Convert iPhone Voice Memo to MP3 FreeHow Audio Compression WorksBest Audio Format for WebsitesHow to Batch Convert Audio FilesHow to Extract Audio from Video FilesBest Audio Format for Music ProductionBest Audio Format for PodcastsBest Audio Format for GamingBest Audio Format for Music StreamingBest Audio Format for Archiving MusicDoes Converting MP3 to WAV Improve Quality?How to Convert MP3 to WAV Without Losing QualityWhen Should You Convert MP3 to WAV?How to Convert MP3 to WAV on Mac and WindowsHow to Convert WAV to MP3 Without Losing QualityConvert WAV to MP3 for Sharing and EmailWAV File Too Large? Convert to MP3How to Convert iPhone Voice Memo to MP3 FreeHow to Play M4A Files on Android (Convert to MP3)M4A vs MP3: Which Has Better Quality and Smaller Size?How to Convert MP3 to OGG for Unity Game DevelopmentOGG vs MP3 for Web Audio: Which Should You Use?WAV vs AIFF: Which Uncompressed Format?AAC vs OGG: Which Lossy Codec Wins?Opus vs MP3: The Modern Codec ShowdownM4A vs AAC: What's the Difference?How to Convert FLAC to MP3 Without Losing QualityBest Bitrate for FLAC to MP3 ConversionConvert AAC to MP3: Best Quality SettingsHow to Extract Audio from MP4 FilesConvert iPhone MOV Video to MP3How to Convert WAV to MP3 (The Complete Guide)How to Convert MOV to MP3 (iPhone & QuickTime)How to Convert MP3 to WAV for Editing and DAWsHow to Convert YouTube to MP3 Legally (3 Ways)Best MP3 to WAV Settings for Editing and DAWsBest WAV to MP3 Bitrate for Music, Podcasts, and VoiceMOV to MP3 on Mac: Fastest Ways ComparedHow to Convert M4A to MP3 on iPhone Without a ComputerHow to Convert FLAC to MP3 on MacHow to Convert FLAC to MP3 on WindowsHow to Convert OGG to MP3 on MacHow to Convert MP4 to MP3 on MacHow to Convert MP4 to MP3 on iPhoneHow to Convert MP4 to MP3 on AndroidHow to Convert WMA to MP3 on MacHow to Convert AIFF to MP3 on MacHow to Convert MOV to MP3 on WindowsMP3 vs WMA: Which Format Should You Choose?AAC vs FLAC: Lossy or Lossless — Which to Choose?OGG vs Opus: What's the Difference?Best Audio Format for Discord in 2026Best Audio Format for Video EditingM4A to WAV: How to Convert and WhyHow to Convert FLAC to OGG VorbisHow to Convert AAC to WAV for EditingOpus Audio for Web Developers: A Practical GuidePrivacy-First Audio Conversion: Why Browser-Based MattersHow to Convert WMA to MP3 on WindowsHow to Convert AIFF to MP3 on WindowsHow to Convert OGG to MP3 on WindowsHow to Convert FLAC to MP3 on iPhoneHow to Convert AAC to MP3 on MacHow to Convert M4A to MP3 on Mac: 3 Easy MethodsHow to Convert Audio Files with AudacityHow to Convert Audio Files with VLCAudacity vs AudioUtils: Which Should You Use?AIFF vs FLAC: Which Lossless Format Is Better?WMA vs MP3: Which Sounds Better?OGG vs AAC: Which Audio Codec Is Better?M4A vs OGG: Which Lossy Audio Codec to UseBest Audio Format for Zoom RecordingsBest Audio Format to Use in AudacityBest Audio Format for Voice RecordingGarageBand Audio Formats: What to Use and WhyAudio Sample Rates: 44.1, 48, 96 kHz ExplainedFLAC to AAC: Bitrate Guide and Practical StepsOGG to AAC: Cross-Platform Audio Migration GuideWMA to OGG: Escape the Windows Media EcosystemWMA to FLAC: Lossless Archiving of Your Old WMA LibraryFLAC to Opus: Web Streaming Optimization GuideAIFF to M4A: Apple Production Workflow GuideWAV to AIFF: Windows to Mac Audio WorkflowBest Audio Format for iMovie: Import and Export GuideAdobe Premiere Pro Audio Format GuideLogic Pro Audio Guide: Best Import & Export SettingsOBS Studio Audio Format and Settings GuideTwitch Audio Requirements: Format, Bitrate & QualitySpotify Audio Format: What You Need to KnowYouTube Audio Requirements: Quality, Format & LUFSTikTok Audio Requirements: Format, Bitrate, and QualityBest Audio Format for Ringtones: iPhone and AndroidBest Audio Format for Car USB: MP3, FLAC, or WAV?How to Convert AAC to MP3 on iPhoneHow to Convert FLAC to MP3 on AndroidHow to Convert OGG to MP3 on AndroidHow to Convert WAV to MP3 on iPhoneHow to Convert AIFF to MP3 on iPhoneHow to Convert M4A to MP3 on WindowsOpus to MP3: Complete Conversion GuideFLAC vs Opus: When to Use Each Audio CodecWAV vs MP3: The Honest Quality ComparisonAAC vs. MP3 for Streaming: Which Is Better?Best Audio Format for AudiobooksConvert Audio on Linux: Command Line and Browser OptionsAudio Formats for Podcast Apps: Spotify, Apple, and MoreHow to Convert Audio Without Installing SoftwareHow to Convert WMA to MP3 on Mac (Step-by-Step Guide)OGG to FLAC: What to Expect from the ConversionAAC to FLAC: Convert and What to ExpectOpus to WAV: How to Convert and Why You Might Need ToWAV to Opus: The Web Developer's Audio GuideOGG vs FLAC: Which Should You Use?Opus vs AAC: Which Codec Is Better?WAV vs FLAC for Archiving: Which Is Best?M4A vs FLAC: Apple AAC vs Lossless Quality ComparedBest Audio Format for Speech-to-Text TranscriptionBest Audio Format for WhatsApp Voice MessagesAudio Formats Windows Media Player Plays NativelyAudio Formats VLC Supports and Its Conversion FeaturesAudio Formats Foobar2000 SupportsAudio Formats Plex Media Server SupportsKodi Audio Format: What Works & What Needs ConversionAudio Formats for PS4 and PS5 USB PlaybackAudio Formats for Xbox USB PlaybackAudio on Nintendo Switch: Limitations and WorkaroundsMP3 vs AAC for AirPods: Does the Codec Matter?How to Play FLAC on iPhone (iOS 11 and Later)How to Play FLAC on Android NativelyWAV to FLAC: Converting Without Any Quality LossAIFF to WAV: macOS to Windows Audio WorkflowM4A to OGG: Converting Apple Audio to Open-SourceOpus Bitrate Guide: 32, 64, 96, 128, 192 kbps ExplainedReduce Audio File Size Without Losing QualityAudio Format Support on Raspberry Pi with mpd and mopidyBest Audio Format in 2025: The Definitive GuideIs yt-dlp Legal? What You Need to KnowLegal Ways to Download Music for Offline ListeningCreative Commons Music for Content Creators: Full GuideWMA to MP3: What to Expect and How to ConvertAIFF to MP3: GarageBand Exports and Quality SettingsMP3 vs. WAV for Podcasting: Which Format to UseBest Audio Format for Discord: Opus, MP3, and File LimitsBest Audio Format for TikTok: Specs and Upload TipsBest Audio Format for Instagram Reels and StoriesHow to Convert Audio on Mac: GarageBand & QuickTimeHow to Convert Audio on iPhone: Files App & BrowserHow to Batch Convert Audio Files: FFmpeg & BrowserFLAC vs. ALAC: Lossless Audio Format ComparisonAudio File Too Large? How to Reduce Audio File SizeAudio Formats for Zoom: Recordings, Uploads, and SharingExtract Audio from MP4 Without Software (Browser Method)VBR vs CBR for MP3: When Each Mode Is the Right ChoiceMP3 128 kbps vs 320 kbps: Does the Difference Matter?FLAC vs WAV for Music Production: The Practical AnswerM4A vs MP3 for iPhone: Which Format to Use and WhenOGG Vorbis vs MP3: Quality, Compatibility & When OGG WinsBest Audio Format for YouTube Uploads in 2026Best Audio Format for Audacity: Import, Edit, and ExportBest Audio Format for Premiere Pro: Timelines & ExportHow to Convert iPhone Voice Memo to MP3 (Free, No App)How to Convert Zoom Recording to MP3 (M4A or MP4 Export)How to Convert Google Meet Recording to MP3Why Is My Audio File So Large? How to Reduce ItLossless Audio: Is It Worth It? The Honest AnswerHow to Extract Audio from a Zoom Webinar RecordingMP3 File Corrupted: How to Diagnose and Fix ItAudio Format for Spotify: Upload Specs & What HappensBest Free Audio Converter: Browser-Based vs DesktopHow to Compress Audio in Audacity: Size & DynamicsFFmpeg Compress Audio: MP3, FLAC, Opus & AAC One-LinersCompress MP3 Without Losing Quality: What's PossibleHow to Make a Ringtone From an MP3 (iPhone & Android)How to Trim an MP3 Without Losing QualityHow to Cut Audio in Audacity (2026 Step-by-Step)How to Merge Audio Files: Three Real MethodsHow to Remove Vocals From a Song (Honest 2026 Guide)How to Edit MP3 Metadata: Tools & WorkflowsHow to Find BPM of a Song: 5 MethodsHow to Split Audio Files: 3 Methods That Work