/12 min read

What is WAV? Uncompressed Audio, PCM, Sample Rate, Bit Depth, and WAV Converter Tools

WAV is one of the most common audio formats for editing, recording, transcription, sampling, and production handoff because it usually stores audio as simple, high-quality PCM data.

Need to convert a WAV right now?

Use the main Audio Converter for bulk WAV conversion, sample-rate controls, mono or stereo output, bitrate settings for compressed exports, and browser-based processing that keeps files on your device.

Open Audio Converter

What is a WAV file?

WAV, often written as WAVE, is an audio file format based on the Resource Interchange File Format, or RIFF. A WAV file usually has the extension .wav and is commonly associated with uncompressed PCM audio.

PCM stands for pulse-code modulation. It stores audio as direct sample values instead of trying to remove information for smaller size. That makes a typical PCM WAV file easy for software to decode, inspect, cut, normalize, analyze, and edit.

WAV is technically a container, not a single codec. It can carry different audio encodings, but in everyday work, the word WAV usually means uncompressed PCM. That expectation is why WAV is so common in editors, digital audio workstations, sample packs, field recorders, speech datasets, and transcription workflows.

A brief history of WAV

WAV grew out of the desktop multimedia era. Computers needed a simple way to store sampled sound, and RIFF provided a chunk-based structure that could hold audio data plus metadata.

PeriodMilestone
1991Microsoft and IBM introduce the WAVE format as part of RIFF, giving Windows a practical container for sampled audio.
1990sWAV becomes a familiar format for system sounds, CD audio extraction, voice recording, and desktop audio editing.
2000sDigital audio workstations, sample libraries, transcription tools, and broadcast workflows standardize around WAV for interchange.
TodayWAV remains a dependable editing and production format even though compressed formats are better for delivery.

The format stayed useful because it is plain and predictable. Even when an app can import many compressed formats, it often converts audio into a PCM-like working form before serious editing.

How WAV stores audio

A common WAV file stores a stream of audio samples. For stereo audio, the left and right channel samples are usually interleaved: left sample, right sample, left sample, right sample, and so on. The file also records the sample rate, bit depth, channel count, byte rate, and format code needed to play the stream correctly.

Unlike MP3 or AAC, uncompressed PCM WAV does not use psychoacoustic compression. It does not estimate what listeners might miss. It simply stores the waveform at the chosen resolution.

  1. An analog signal is measured many times per second.
  2. Each measurement becomes a digital sample.
  3. The sample values are stored with a chosen bit depth.
  4. The WAV header tells software how to interpret the bytes.

That directness is the main appeal. WAV is easy to process accurately, but it pays for that simplicity with large file size.

What is inside a WAV file?

A basic PCM WAV file is made of RIFF chunks. The most important pieces are the RIFF header, the format chunk, and the data chunk.

+------------------------------+
| RIFF header                  |  file type: WAVE
+------------------------------+
| fmt chunk                    |  codec, channels, sample rate, bit depth
+------------------------------+
| optional chunks              |  metadata, cue points, broadcast info
+------------------------------+
| data chunk                   |  audio sample bytes
+------------------------------+

The chunk structure is flexible. A WAV can include extra information such as cue points, loop markers, broadcast metadata, or application-specific data. Some software ignores unknown chunks and reads only the audio data it understands.

PCM, sample rate, and bit depth

Three settings define most everyday WAV files: sample rate, bit depth, and channel count. Together they determine the technical resolution of the audio and the file size.

Sample rate

Sample rate is how many times per second the audio waveform is measured. CD audio uses 44.1 kHz. Video workflows commonly use 48 kHz. Higher rates such as 88.2 kHz, 96 kHz, or 192 kHz can be useful in production, but they create larger files and are not automatically better for every final export.

Bit depth

Bit depth controls how many possible values each sample can store. A 16-bit file is common for delivery. A 24-bit file gives more headroom while recording and editing. A 32-bit float WAV can preserve extreme peaks during production, but it is much larger and not always needed for sharing.

Channels

Mono stores one channel. Stereo stores two. Multichannel WAV files can store surround or production stems, but compatibility depends on the receiving software.

Why WAV files are large

WAV file size is predictable because uncompressed PCM stores every sample. The basic formula is:

bytes per second = sample rate * bit depth / 8 * channels
SettingCommon useApproximate size
44.1 kHz / 16-bit / stereoCD-quality music, music exports, general editingAbout 10.1 MB per minute
48 kHz / 24-bit / stereoVideo, podcast production, professional recordingAbout 17.3 MB per minute
96 kHz / 24-bit / stereoHigh-resolution recording and sound designAbout 34.6 MB per minute
16 kHz / 16-bit / monoSpeech, dictation, simple transcriptionAbout 1.9 MB per minute

A three-minute stereo WAV at 44.1 kHz and 16-bit is roughly 30 MB. The same song as an MP3 might be 3-7 MB depending on bitrate. This is why WAV is excellent while working, but less convenient for delivery.

Metadata, loops, and broadcast WAV

WAV files can carry metadata, but metadata support is less consistent than in formats such as MP3 or MP4. Depending on the tool, a WAV may include title, artist, comments, cue points, loop regions, timestamps, or broadcast workflow fields.

Broadcast WAV, often called BWF, extends ordinary WAV with metadata useful in film, TV, radio, and archival workflows. It can store details such as originator information and timestamps so files line up correctly in production systems.

  • Keep filenames clear because metadata may not appear in every player.
  • Check whether cue points and loops survive when moving between apps.
  • Export a separate delivery copy when listeners need small files.
  • Keep an untouched WAV or FLAC master before making lossy versions.

WAV vs MP3, FLAC, AIFF, AAC, OGG, Opus, and M4A

WAV is best understood as a working format. It preserves straightforward sample data, which is ideal when editing matters. Other formats are often better when storage, streaming, or device compatibility is the main goal.

FormatCompressionTypical sizeCompatibilityBest for
WAVUsually uncompressed PCMVery largeExcellentRecording, editing, transcription, production handoff
AIFFUsually uncompressed PCMVery largeGoodApple-oriented editing and production workflows
FLACLossless compressedMedium-largeGoodArchiving a perfect copy in less space
MP3Lossy compressedSmallExcellentSharing, podcasts, downloads, legacy support
AAC/M4ALossy compressedSmallExcellentMobile playback and efficient music delivery
OGG VorbisLossy compressedSmallGoodOpen web audio and non-Apple workflows
OpusLossy compressedVery smallGoodSpeech, streaming, low latency, compact modern audio

A good workflow is to record or edit in WAV, AIFF, or another lossless format, then export compressed copies such as MP3, AAC, OGG, or Opus only when you need to publish or send the audio.

WAV on the web

Browsers can often play WAV files, especially PCM WAV, but WAV is usually a poor default for public web audio because the files are large. For short sound effects, testing, or downloads meant for editing, WAV can be appropriate. For music, podcasts, or long speech, use a compressed delivery format.

<audio controls preload="metadata">
  <source src="/audio/sample.wav" type="audio/wav" />
  <a href="/audio/sample.wav">Download the WAV</a>
</audio>

If you publish WAV downloads, make the file size visible and consider also offering MP3 or AAC for ordinary listening. That gives editors a clean source while giving listeners a smaller file.

When WAV is the right choice

Choose WAV when preserving editable audio quality is more important than minimizing file size.

  • Use WAV for recording, editing, mixing, mastering, and sound design.
  • Use WAV for transcription when software expects simple PCM audio.
  • Use WAV for sample libraries, loops, and production handoff.
  • Use FLAC instead when you want a lossless archive that uses less space.
  • Use MP3, AAC, OGG, or Opus when you need small files for playback and sharing.

In short: WAV is a working format, not the lightest delivery format. Keep it when quality and editability matter. Convert it when distribution is the priority.

Tips before converting WAV files

Start by deciding whether you need a working copy or a delivery copy. If the next step is editing, keep WAV or convert to another uncompressed or lossless format. If the next step is sending, publishing, or embedding, export a compressed copy.

ConversionRecommendationWhy
WAV to MP3Good for sharingCreates a much smaller delivery copy with broad compatibility.
WAV to AAC/M4AGood for mobile playbackKeeps files compact and works well in Apple and modern browser workflows.
WAV to OGG/OpusGood for web and speechUseful when modern efficiency matters more than legacy device support.
WAV to AIFFGood for production interchangeKeeps the audio uncompressed while using a format common in Apple-oriented workflows.
MP3/AAC/OGG/Opus to WAVUseful but not restorativeThe file becomes easier to edit, but lost lossy detail does not come back.
FLAC to WAVGood for editingDecodes a lossless archive into an uncompressed working file.

Practical export settings

  • Music delivery: export MP3 at 192-320 kbps or AAC/M4A at a suitable bitrate.
  • Speech delivery: mono MP3, AAC, or Opus can make files much smaller.
  • Video editing: 48 kHz WAV is a practical default.
  • Archiving: keep WAV if storage is fine, or FLAC if you want lossless compression.
  • Web playback: offer compressed audio for listening and WAV only when users need the source.

Compare audio formats

Use this table to jump between the audio format guides and choose a source, editing, archive, or delivery format that fits your workflow.

GuideCompressionTypical sizeCompatibilityBest for
MP3LossySmallExcellentLegacy support, simple downloads, podcasts, broad sharing
WAVUncompressed PCMVery largeExcellentRecording, editing, transcription, production handoff
AACLossySmallExcellentMobile playback, MP4 soundtracks, efficient delivery
M4AContainer, often AAC or ALACSmall to medium-largeExcellentApple-friendly audio, metadata, podcasts, music libraries
OGGOgg container, often VorbisSmallGoodOpen audio, games, non-Apple workflows, web playback
OGAAudio-only Ogg containerVariesMixedAudio-only Ogg files, open audio workflows
OpusLossyVery smallGoodSpeech, streaming, low latency, compact modern audio
AIFFUncompressed PCMVery largeGoodApple-oriented editing, production, sampling
FLACLossless compressedMedium-largeGoodArchiving, high-quality libraries, source files

Convert WAV to other formats

Use these tools when your source file is WAV and you need MP3, AAC, OGG, Opus, M4A, or AIFF output.

Convert audio and video to WAV

Use these tools when you want an uncompressed WAV output from another audio format, lossless source, or video file.

References

  1. Library of Congress - WAVE Audio File Format
  2. RFC 2361 - WAVE and AVI Codec Registries
  3. MDN - Web audio codec guide
USTHJP