You rip a CD and get a folder of WAV files that eat 600 MB. You buy the same album as a download and it arrives as FLAC at roughly half that — bit-for-bit identical sound. You stream it on your phone as a 128 kbps MP3 that’s a tenth the size and you can’t hear the difference on earbuds. Three formats, three completely different trade-offs, and most “which is best” advice skips the one question that actually decides it: what are you going to do with the file? This guide explains lossy, lossless-compressed, and uncompressed in plain English, then gives you a decision table so you can pick in ten seconds.
Quick answer: Use MP3 for sharing, streaming, podcasts, and anything that has to play everywhere on a small file — it’s lossy (throws away data permanently) but universally compatible. Use FLAC for archiving and music libraries — it’s lossless (perfect quality) and compresses to roughly 50–70% of the original uncompressed size. Use WAV for recording, editing, and mastering — it’s uncompressed, the biggest file, and the safest working format. Rule of thumb: edit in WAV, archive in FLAC, share in MP3.
Jump to a section
- The one distinction that explains everything: lossy vs lossless vs uncompressed
- MP3: lossy, small, plays everywhere
- WAV: uncompressed, perfect, huge
- FLAC: lossless compression — perfect quality at smaller size
- Size vs quality vs compatibility, side by side
- Which format should you actually use?
- Convert or shrink your audio with xconvert
- FAQ
The one distinction that explains everything: lossy vs lossless vs uncompressed
Every audio format falls into one of three buckets, and once you know which bucket a format is in, its behaviour is predictable.
- Uncompressed (WAV, AIFF): stores the raw audio samples with no compression at all. Every sample the recorder captured is written to disk verbatim. Biggest files, zero processing overhead, nothing thrown away.
- Lossless compressed (FLAC, ALAC): compresses the audio the way a ZIP file compresses a document — the file gets smaller, but when you play it back the decoder reconstructs the exact original samples. No quality is lost. Xiph.Org, which develops FLAC, describes it as audio “compressed in FLAC without any loss in quality.”
- Lossy compressed (MP3, AAC, Opus): achieves much smaller files by permanently discarding audio information the encoder judges you’re least likely to hear (a process called perceptual coding). The discarded data is gone for good — you can never get it back by converting to another format.
That last point is the trap most people fall into. Converting an MP3 to WAV or FLAC does not restore quality — it just wraps the already-degraded audio in a bigger container. Quality flows downhill only. So the format you record and archive in matters far more than the one you listen in.
MP3: lossy, small, plays everywhere
MP3 (MPEG-1/2 Audio Layer III) is the format that made portable digital music possible. It’s lossy: a 3-minute song that occupies tens of megabytes as WAV becomes a few megabytes as MP3 at common bitrates. It does this by modelling human hearing and throwing away frequencies and detail the encoder predicts you won’t notice.
Bitrate is the quality dial. MP3 is usually encoded at a chosen bitrate:
- 128 kbps — small, fine for spoken word, podcasts, and casual listening on phone speakers or cheap earbuds.
- 192–256 kbps — a common sweet spot; most listeners struggle to distinguish 256 kbps from the original on consumer gear.
- 320 kbps — the maximum for standard MP3; near-transparent for most ears but still lossy.
MP3 also supports VBR (variable bitrate), which spends more bits on complex passages and fewer on simple ones, often giving better quality per megabyte than a fixed (constant) bitrate.
MP3’s superpower is compatibility. It plays on essentially every device, browser, car stereo, and app made in the last two decades — no codec packs, no surprises. That universality, not its quality, is why it remains the default for sharing.
Where MP3 falls short: it’s a poor choice for archiving (you’ve already lost data and can’t recover it) and a poor choice for editing (every time you re-encode a lossy file you lose a little more — so editing then re-saving as MP3 compounds the damage, called generation loss).
WAV: uncompressed, perfect, huge
WAV (Waveform Audio File Format) is the workhorse of recording and editing. The most common WAV file is uncompressed audio in linear pulse-code modulation (LPCM) format — the same coding used on audio CDs, per Wikipedia’s WAV article. It stores every sample exactly as captured, which makes it the highest-fidelity working format but also the largest.
How big? CD-quality WAV is 16-bit samples at 44,100 samples per second across 2 (stereo) channels. That works out to:
So CD-quality WAV runs at about 1,411 kbps — roughly 10 MB per minute, or close to 600 MB for a typical album. That’s about ten times the size of a 128 kbps MP3 of the same audio.
When WAV is the right call: recording (you want the cleanest possible capture), multi-track editing in a DAW (no decode step, no generation loss between edits), and feeding a mastering or processing chain. Because there’s no compression to undo, WAV opens and seeks instantly — useful when you’re scrubbing through long sessions.
WAV’s weaknesses: the files are enormous, and standard WAV has a 4 GiB file-size ceiling (it uses 32-bit size fields), which is enough for about 6.8 hours of CD-quality stereo but can be hit by very long high-resolution recordings. WAV also carries metadata (tags, album art) far less consistently than FLAC or MP3, so it’s a clumsy library format.
FLAC: lossless compression — perfect quality at smaller size
FLAC stands for Free Lossless Audio Codec, and that name is the whole pitch. It compresses audio losslessly: the file shrinks, but decoding reproduces a bit-perfect copy of the original samples. Xiph.Org describes the result as decompressing “to an identical copy of the original audio data.”
How much smaller? Per Wikipedia’s FLAC article, “digital audio compressed by FLAC’s algorithm can typically be reduced to between 50 and 70 percent of its original size.” The exact ratio depends on the music — sparse acoustic recordings compress more, dense and noisy material compresses less — but you can expect a FLAC to be roughly half to two-thirds the size of the equivalent WAV, with zero quality loss.
FLAC has compression levels (commonly 0 through 8). Higher levels take longer to encode and produce slightly smaller files, but — and this is the key point people get wrong — the level does not affect quality. A level-0 FLAC and a level-8 FLAC of the same source both decode to the identical original waveform; you’re only trading encode time for a few percent of file size.
Where FLAC wins: archiving a music collection, ripping CDs you want to keep at full quality, distributing high-resolution audio, and storing master files you might re-encode to MP3 later. Because it’s lossless, you can always make MP3s from your FLAC archive without ever touching the (lost-forever) original disc again.
FLAC’s one real drawback is compatibility. It’s well supported on desktop players, Android, and modern browsers, but historically lagged on some Apple devices and a few car/older hardware players (Apple’s own lossless format, ALAC, fills the same niche there). If a file has to play on anything, MP3 is still safer.
Size vs quality vs compatibility, side by side
| MP3 | WAV | FLAC | |
|---|---|---|---|
| Type | Lossy compressed | Uncompressed (LPCM) | Lossless compressed |
| Quality | Reduced (data discarded permanently) | Perfect (original samples) | Perfect (bit-identical to original) |
| Typical size (CD-quality album) | ~30–80 MB (bitrate-dependent) | ~600 MB | ~300–400 MB (≈50–70% of WAV) |
| Compatibility | Universal — plays everywhere | Universal, but unwieldy | Broad; weaker on some older/Apple hardware |
| Best for | Sharing, streaming, podcasts | Recording, editing, mastering | Archiving, music libraries, hi-res |
| Re-editing safe? | No — re-encoding loses more | Yes | Yes (decodes to original) |
| Metadata/tags | Good | Limited/inconsistent | Excellent |
The three columns answer three different priorities. Optimise for small + plays-everywhere → MP3. Optimise for clean working file → WAV. Optimise for perfect quality + reasonable size → FLAC.
Which format should you actually use?
Pick by what you’re doing, not by which sounds “best on paper”:
- Sending a track to someone / posting online / podcast feed → MP3 (192–256 kbps is a safe quality/size balance; 128 kbps for pure speech).
- Recording or editing in a DAW → WAV. Keep everything uncompressed while you work, then export to MP3 or FLAC at the end.
- Ripping CDs or archiving a collection you care about → FLAC. Perfect quality, roughly half the WAV size, great tagging.
- Mastering or sending to a mastering engineer → WAV (often 24-bit / high sample rate). It’s the universal interchange format for pro audio.
- Building a phone library where storage is tight → MP3 at 256 kbps, or FLAC if your device supports it and you have the space.
- You already have an MP3 and need WAV/FLAC → you can convert for a tool that requires it, but understand you’re not regaining quality — the lossy step already happened.
The single most useful habit: keep a lossless master (WAV or FLAC) and generate lossy MP3s from it as needed. You can always make a smaller file from a perfect one; you can never make a perfect file from a smaller one.
Convert or shrink your audio with xconvert
When you need to move between these formats — or just make a file smaller — xconvert handles all three. Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours; no sign-up and no watermark.
- Audio Compressor — shrink a file and pick the output via the Audio File Extension dropdown (MP3, FLAC, WAV, AAC, OPUS and more). Choose File Size Percentage, a Specific file size, or a Custom Bitrate (constant or variable). Use it to turn a big WAV into a manageable MP3, or to re-compress an oversized MP3.
- Compress MP3 — purpose-built for cutting MP3 file size by bitrate, percentage, or target megabytes when you need to fit an upload or email cap.
- Audio Converter — convert between MP3, WAV, FLAC, AAC, OGG and more, with control over bitrate, sample rate, and channels — the right tool for “I have a WAV master and need FLAC archives plus MP3 shares.”
A practical workflow: archive your masters as FLAC, then run them through the converter to produce MP3 copies for sharing — keeping the lossless originals untouched.
FAQ
Is FLAC really the same quality as WAV?
For the audio itself, yes — FLAC is lossless, so it decodes to a bit-identical copy of the original samples. A FLAC made from a WAV and converted back to WAV produces the exact same audio data. The only differences are file size (FLAC is roughly 50–70% of the WAV) and a small CPU cost to decode on playback, which is negligible on modern devices.
Does converting MP3 to WAV or FLAC improve the quality?
No. MP3 is lossy — data was permanently discarded when it was first encoded. Converting it to WAV or FLAC just stores that already-reduced audio in a larger, lossless container; it can’t reconstruct what was thrown away. The result sounds the same as the MP3, only bigger. Only convert MP3 → WAV/FLAC when a tool specifically requires an uncompressed/lossless input.
What MP3 bitrate should I use?
For music, 192–256 kbps is a good balance most listeners can’t distinguish from the source on consumer gear; 320 kbps is the standard maximum if you want maximum headroom. For spoken-word content like podcasts, 128 kbps (or even lower mono) is usually plenty. Variable bitrate (VBR) often gives better quality per megabyte than constant bitrate.
Why is my WAV file so much bigger than the MP3?
Because WAV is uncompressed. CD-quality WAV runs at about 1,411 kbps — roughly 10 MB per minute — while a 128 kbps MP3 of the same audio is about a tenth of that. WAV stores every sample verbatim with no compression, which is why it’s ideal for editing but impractical for sharing.
Do FLAC compression levels (0–8) change the sound?
No. Every FLAC compression level produces a bit-perfect copy of the original audio. Higher levels just take longer to encode in exchange for a slightly smaller file; lower levels encode faster and are a bit larger. The decoded sound is identical regardless of level — the setting only trades encode time for a few percent of file size.
Which format is the most compatible?
MP3. It plays on virtually every device, app, browser, and car stereo made in the last two decades with no extra software. WAV is also widely supported but unwieldy due to size. FLAC has broad support on desktops, Android, and modern browsers but can be patchy on some older hardware and certain Apple devices, where ALAC is the common lossless alternative.
Should I archive my music in WAV or FLAC?
FLAC, in almost all cases. It stores the exact same audio data as WAV (lossless) but at roughly half to two-thirds the size, and it handles tags and album art far better. Reserve WAV for files you’re actively recording or editing; once a project is finished, archiving the master as FLAC saves space with no quality cost.
Sources
Last verified 2026-06-18.
- Xiph.Org — FLAC: Free Lossless Audio Codec — primary source for FLAC being lossless (“compressed in FLAC without any loss in quality”) and decoding to an identical copy.
- Wikipedia — FLAC — “digital audio compressed by FLAC’s algorithm can typically be reduced to between 50 and 70 percent of its original size”; lossless / identical-copy and compression-level facts.
- Wikipedia — WAV — WAV is uncompressed LPCM, the same coding as audio CDs; standard 4 GiB / ~6.8-hour CD-quality limit.
- CD-quality WAV bitrate (1,411 kbps ≈ 10 MB/min) derived from the standard 44.1 kHz / 16-bit / 2-channel LPCM constant: 44,100 × 16 × 2 = 1,411,200 bits/s.
