WAV Bit Depth Explained: 16-bit vs 24-bit vs 32-bit Float

Quick Answer

Use 16-bit for final delivery (CD, streaming, consumer audio). Use 24-bit when recording or processing in a DAW — the extra headroom prevents rounding errors during EQ, compression, and volume automation. Use 32-bit float only for internal DAW processing or plugin chains where clipping prevention matters. You can choose all three at convertlo.pro/mp3-to-wav.html — no upload needed.

When you export a WAV file — whether from a DAW, a converter, or an audio editor — you'll be asked to choose a bit depth. Most people pick 24-bit without really knowing why, or default to 16-bit without understanding the trade-offs. This guide explains exactly what bit depth does, when it actually matters, and when a higher number is wasted space.

What Is Bit Depth?

Bit depth is the number of bits used to store each audio sample. An audio signal is a continuous waveform; digital audio converts it into a sequence of discrete measurements (samples) taken at regular intervals — that interval rate is the sample rate. Each sample value is then stored as a binary number. The number of bits available for that number is the bit depth.

Think of bit depth as vertical resolution: sample rate controls how often you measure the waveform, bit depth controls how precisely you can record each measurement's amplitude.

  • 16-bit: 2¹⁶ = 65,536 possible amplitude values per sample
  • 24-bit: 2²⁴ = 16,777,216 possible amplitude values
  • 32-bit float: IEEE 754 floating-point — effectively unlimited precision within a huge dynamic range

Bit Depth and Dynamic Range

The primary practical effect of bit depth is dynamic range — the difference between the quietest and loudest sound the system can faithfully represent. The formula is approximately 6 dB per bit:

Bit DepthQuantisation LevelsTheoretical Dynamic RangeNoise Floor (approx.)
8-bit256~48 dBVery audible hiss
16-bit65,536~96 dBBelow hearing threshold in quiet rooms
24-bit16,777,216~144 dBFar below any real acoustic environment
32-bit floatIEEE float~1,528 dB (theoretical)Effectively zero for practical audio
Key fact: The loudest sound the human ear can tolerate (threshold of pain) is around 120–130 dB SPL. A quiet recording studio has a noise floor around 25–30 dB. The actual dynamic range you ever need to capture is roughly 90–100 dB. 16-bit's 96 dB theoretically covers this — but in practice, headroom during processing is why 24-bit matters.

16-bit WAV — CD Quality

16-BIT PCM

The CD Standard Since 1982

16-bit / 44.1 kHz is the Red Book Audio CD specification defined by Sony and Philips — the format that has been the global standard for music distribution for over 40 years. Every audio CD, iTunes purchase, and standard streaming platform delivery uses 16-bit audio.

  • Dynamic range: 96 dB — more than enough for any consumer listening environment
  • File size (4 min stereo, 44.1 kHz): ~40 MB
  • Compatibility: Universal — every device, player, and software reads 16-bit WAV
  • Best for: Final delivery, CD mastering, iTunes submission, broadcast output, consumer playback
  • Not ideal when: You plan to apply heavy processing — the noise floor rises with each operation

The common misconception is that 16-bit is "low quality." In reality, 16-bit is the output format of virtually every piece of music you've ever listened to. The issue is not 16-bit for playback — it's 16-bit during processing. Every gain operation, EQ curve, or compression chain rounds sample values to the nearest integer. At 16-bit, those rounding errors accumulate. At 24-bit, they're negligible.

Use 16-bit when: exporting your final master for Spotify, Apple Music, CD, or any consumer delivery. The listener cannot hear the difference between 16-bit and 24-bit on any real playback system, and streaming platforms re-encode your audio anyway.

24-bit WAV — Studio Standard

24-BIT PCM

The Professional Recording and Mixing Standard

24-bit has been the standard for professional recording, mixing, and mastering since the mid-1990s. Every modern DAW records at 24-bit by default. The difference over 16-bit isn't about what listeners hear — it's about processing headroom.

  • Dynamic range: 144 dB — 48 dB more than 16-bit, far beyond any acoustic environment
  • File size (4 min stereo, 44.1 kHz): ~60 MB (50% larger than 16-bit)
  • Compatibility: Excellent — all modern DAWs, most modern players
  • Best for: Recording sessions, mix sessions, mastering chains, DAW delivery to clients, archival
  • Not ideal when: Delivering final consumer content (just adds file size with no audible benefit)

The 48 dB of extra headroom above 16-bit translates into roughly 256× more precision at the quiet end of the waveform. When you apply a -20 dB gain reduction followed by a +20 dB boost, the round-trip at 16-bit introduces rounding errors that become audible in complex sessions. At 24-bit, the errors are so small they're inaudible even after hundreds of operations.

Streaming services like Tidal Masters and Amazon Music HD distribute music at 24-bit. Apple Music Lossless uses 24-bit ALAC. If you're delivering to these platforms or to a mastering engineer, 24-bit is the correct choice for your working files — then dither to 16-bit only for standard-resolution delivery.

Note on converted MP3 files: A WAV converted from an MP3 source at 24-bit does not gain real dynamic range. MP3's psychoacoustic compression already limits the effective dynamic range to roughly 12–16-bit equivalent. The extra bits in a 24-bit WAV from MP3 contain noise floor, not real signal. Use 16-bit for MP3 conversions unless your DAW or delivery spec explicitly requires 24-bit.

32-bit Float WAV — Professional DSP

32-BIT IEEE FLOAT

Floating-Point Audio for DSP Workflows

32-bit float is a fundamentally different format from 16-bit and 24-bit PCM. Instead of fixed integers, it uses IEEE 754 floating-point representation — the same format used internally by most digital audio software. This means values can temporarily exceed 0 dBFS (full scale) without clipping, making it ideal for intermediate processing files.

  • Dynamic range: ~1,528 dB (theoretical); practically, about ±770 dB of headroom
  • File size (4 min stereo, 44.1 kHz): ~80 MB (2× 16-bit, ~33% larger than 24-bit)
  • Compatibility: Limited — most consumer devices and players cannot play 32-bit float without conversion
  • Best for: DAW internal processing, plugin chains, field recorder output (some Zoom and Sound Devices recorders output 32-bit float), post-production workflows
  • Not ideal when: Delivering to end consumers, streaming, or any situation requiring broad device compatibility

The key advantage of 32-bit float is clipping protection. If a source is recorded too loud (over 0 dBFS) in 32-bit float, the waveform simply has values above 1.0 — no data is lost. You can recover a "clipped" 32-bit float recording by simply reducing the gain, because the full waveform is preserved above the digital ceiling. In fixed-point formats (16-bit, 24-bit), clipping is permanent — once samples hit the ceiling, the waveform is destroyed.

Compatibility warning: Most playback devices, streaming platforms, and consumer software cannot play 32-bit float WAV files. Before delivering to a client or platform, convert to 24-bit or 16-bit PCM. Use 32-bit float only as an intermediate format during production.

Side-by-Side Comparison

Property16-bit PCM24-bit PCM32-bit Float
Format code (WAV)PCM (1)PCM (1)IEEE FLOAT (3)
Dynamic range~96 dB~144 dB~1,528 dB (theoretical)
Quantisation levels65,53616,777,216Floating point
File size (4 min stereo, 44.1 kHz)~40 MB~60 MB~80 MB
Values above 0 dBFSClips (data lost)Clips (data lost)Preserved (no clipping)
Consumer device supportUniversalGood (modern devices)Limited
Streaming deliveryStandardHD tiers (Tidal, Amazon)Not accepted
DAW recordingAcceptableStandardUsed internally
Processing headroomLimitedExcellentUnlimited

Which Bit Depth for Your Workflow

WorkflowRecommendedReason
MP3 to WAV conversion16-bitMP3 source has ≤16-bit effective dynamic range; 24-bit adds file size without benefit
CD mastering / iTunes delivery16-bitRed Book standard; streaming re-encodes anyway
Recording a live session24-bitPreserves headroom for post-production processing
Mixing and mastering in DAW24-bitProcessing headroom prevents accumulated rounding errors
Delivering to mastering engineer24-bitStandard professional delivery format
Broadcast / EBU R128 delivery24-bit, 48 kHzBroadcast spec requirement
Field recording (outdoor/live)32-bit floatClipping protection on unpredictable sources
Plugin chain intermediate file32-bit floatPreserves headroom between processing stages
Streaming (Spotify, Apple Music)16-bit (or 24-bit for lossless tier)Platforms encode to AAC/Vorbis regardless
Voice AI / Speech recognition16-bit, 16 kHzModels trained on 16 kHz 16-bit PCM; higher rates waste bandwidth

Bit Depth When Converting from MP3

A common question when using a converter like Convertlo: should I pick 16-bit, 24-bit, or 32-bit float when converting an MP3 to WAV?

The answer depends entirely on what you're doing with the output:

  • Importing into a DAW for editing — 24-bit is fine but not necessary. The MP3's effective bit depth is already 12–16-bit equivalent. 24-bit just gives the DAW more room to work internally. Either 16-bit or 24-bit works.
  • Submitting to a hardware sampler or game engine — 16-bit is the correct choice. Hardware samplers (Roland, Akai, Elektron) and game engines (Unity, Unreal) typically expect 16-bit WAV. 24-bit sometimes causes import errors on older hardware.
  • DSP processing chain — 32-bit float is worth it here. If you're running the WAV through a chain of plugins that amplify, compress, and process, starting at 32-bit float means intermediate values never clip.
  • CD mastering — 16-bit. The MP3 source limits quality regardless, and CDs are 16-bit anyway.
  • Broadcast delivery — 24-bit at 48 kHz. Match the broadcast spec even when the source is MP3.

Try All Three Bit Depths — Free, No Upload

Convert any audio to 16-bit, 24-bit, or 32-bit float WAV directly in your browser. Choose from 10 sample rates (8 kHz to 192 kHz). Batch convert + ZIP download.

Frequently Asked Questions

What is bit depth in audio?
Bit depth is the number of bits used to store each audio sample — it determines the vertical resolution of the audio waveform. 16-bit stores 65,536 possible amplitude values per sample; 24-bit stores 16.7 million; 32-bit float uses IEEE floating-point with effectively unlimited headroom. Higher bit depth means more precise amplitude representation and greater theoretical dynamic range (96 dB for 16-bit, 144 dB for 24-bit).
Should I use 16-bit or 24-bit WAV?
Use 16-bit for final delivery (CD, streaming, consumer audio). Use 24-bit when recording or processing audio in a DAW — the extra headroom prevents rounding errors when applying EQ, compression, or volume automation. For a WAV converted from an MP3 source, 16-bit is sufficient since MP3's effective dynamic range is well below 16-bit's ceiling.
What is 32-bit float WAV?
32-bit float WAV uses IEEE 754 floating-point format instead of fixed integers. It provides effectively unlimited headroom — values can temporarily exceed 0 dBFS without clipping, which makes it ideal for internal DAW processing, plugin chains, and field recording on professional recorders. The file size is 2× that of 16-bit WAV. Most consumer devices cannot play 32-bit float WAV files — convert to 24-bit or 16-bit before delivery.
Does higher bit depth improve audio quality for listeners?
No — not for playback. Double-blind tests (ABX) consistently show listeners cannot distinguish 16-bit from 24-bit playback in controlled conditions. The audible benefit of 24-bit is during recording and processing: it preserves headroom when applying gain automation, compression, and EQ chains. For a final deliverable played through speakers or headphones, 16-bit is indistinguishable from 24-bit.
How much larger is 24-bit WAV compared to 16-bit?
Exactly 50% larger. A 4-minute stereo 44.1 kHz file: 16-bit ≈ 40 MB, 24-bit ≈ 60 MB, 32-bit float ≈ 80 MB. Formula: (sample rate × bit depth÷8 × channels × seconds) bytes. Mono files are exactly half the size of stereo at the same sample rate and bit depth.
What bit depth do Spotify and Apple Music use?
Spotify streams at 16-bit (Ogg Vorbis or AAC depending on bitrate). Apple Music standard tier uses 256 kbps AAC (16-bit equivalent). Apple Music Lossless uses 24-bit ALAC. Tidal HiFi and Amazon Music HD stream at 24-bit. For standard streaming delivery, master at 24-bit then dither to 16-bit — the platform will re-encode regardless of what you upload.
Can I convert between bit depths online for free?
Yes. Convertlo's MP3 to WAV converter lets you choose 16-bit, 24-bit, or 32-bit float output directly in your browser — no upload, no software install. Convert any audio source (MP3, AAC, FLAC, OGG, M4A) to WAV at any of 10 sample rates and 3 bit depths, with mono or stereo channel options.
What is dithering and when do I need it?
Dithering adds a tiny amount of noise to an audio signal before reducing its bit depth. This converts the hard quantisation distortion (which sounds like harsh digital grit) into a more natural-sounding noise floor. When converting from 24-bit to 16-bit for delivery, always apply dither in your DAW. Convertlo's converter does not apply dither — it outputs the bit depth you select directly, which is fine for conversion purposes but for mastering delivery use a DAW with dither processing.
🎚️
Convertlo Editorial Team
Audio and file format guides written for engineers, creators, and anyone who has ever needed a file in the wrong format at the wrong time.
About Convertlo →