FLAC vs WAV vs MP3 — Which Audio Format Should You Use?
Three formats dominate digital audio: WAV (the lossless original), FLAC (lossless but compressed), and MP3 (lossy but tiny). Each has a clear purpose — but knowing which one to use for your situation can save you disk space, preserve audio quality, or prevent compatibility headaches.
This guide explains exactly what each format does, how they compare in file size and quality, and which one to choose for recording, streaming, archiving, or sharing.
WAV Lossless
- Uncompressed — no quality loss at all
- Very large files (~10 MB/min at CD quality)
- Universal DAW and software support
- No metadata tags in standard form
- Best for: recording, editing, DAW work
FLAC Lossless
- Losslessly compressed — identical quality to WAV
- 40–60% smaller than WAV
- Full metadata tag support
- Not supported by iTunes/Apple Music natively
- Best for: archiving, audiophile collections
MP3 Lossy
- Lossy — permanently discards audio data
- ~90% smaller than WAV at 128 kbps
- Supported on every device ever made
- Full metadata tag support
- Best for: sharing, streaming, mobile listening
What Is WAV?
WAV (Waveform Audio File Format) was developed by Microsoft and IBM in 1991. It stores audio as raw, uncompressed PCM data — the same data that comes off a CD or a recording session. There is no compression at all, which means zero quality loss but very large files.
A single minute of CD-quality audio (44.1 kHz, 16-bit, stereo) in WAV format is approximately 10 MB. An hour-long album would be around 600 MB.
WAV is the standard format for professional audio work because every DAW (Digital Audio Workstation), audio editor, and hardware device supports it without exception.
What Is FLAC?
FLAC (Free Lossless Audio Codec) was created in 2001 as an open-source alternative to WAV that reduces file size without any quality loss. It works like a ZIP file for audio — the compression is completely reversible, and decompressing a FLAC file gives you bit-for-bit identical audio to the original.
FLAC files are typically 40–60% smaller than WAV at the same quality. That same 1-minute CD-quality audio would be around 4–6 MB as FLAC. FLAC also supports full metadata tagging (artist, album, track number, album art), which WAV handles poorly.
What Is MP3?
MP3 (MPEG-1 Audio Layer III) was developed in 1993 and became the dominant audio format of the internet era. Unlike WAV and FLAC, MP3 uses lossy compression — it permanently removes audio data that psychoacoustic models predict the human ear cannot hear well, such as very high frequencies, sounds masked by louder sounds, and subtle spatial details.
The result is files that are dramatically smaller — a 10 MB WAV file becomes roughly 1 MB as 128 kbps MP3. But the removed data is gone forever. You cannot convert MP3 back to lossless quality.
FLAC vs WAV vs MP3 — Full Comparison
| Property | WAV | FLAC | MP3 |
|---|---|---|---|
| Compression type | None (uncompressed) | Lossless | Lossy |
| Audio quality | Perfect (original) | Perfect (identical to WAV) | Reduced (data discarded) |
| File size (1 hr, CD quality) | ~600 MB | ~250–360 MB | ~55 MB at 128 kbps |
| Metadata tags | Limited | Full (artist, album, art) | Full ID3 tags |
| Universal device support | Yes | Most (not iTunes/Apple Music natively) | Every device ever made |
| DAW / audio editor support | Every DAW | Most DAWs | Limited |
| Streaming platform support | Upload source only | Upload source only | Universal |
| Open standard | Yes | Yes | Yes (patents expired) |
| Can convert back to lossless | Already lossless | Already lossless | No — data permanently lost |
File Size Comparison — 1 Hour of Audio
| Format & Setting | File Size (1 hr) | Quality |
|---|---|---|
| WAV (CD quality, 44.1 kHz 16-bit) | ~600 MB | Perfect |
| FLAC (compression level 5) | ~240–360 MB | Perfect (identical to WAV) |
| MP3 320 kbps | ~138 MB | Excellent (virtually indistinguishable) |
| MP3 192 kbps | ~83 MB | Good (transparent for most listeners) |
| MP3 128 kbps | ~55 MB | Acceptable (audible on high-end systems) |
| MP3 96 kbps | ~41 MB | Degraded (audible artefacts on music) |
Can You Hear the Difference?
This is the most common question — and the honest answer depends on your equipment and listening conditions:
- FLAC vs WAV: No audible difference, ever. They contain bit-for-bit identical audio data. Anyone claiming to hear a difference is experiencing the placebo effect.
- MP3 320 kbps vs FLAC: In double-blind listening tests, most trained listeners cannot reliably distinguish these. On consumer headphones or speakers, the difference is essentially inaudible.
- MP3 192 kbps vs FLAC: Transparent on most content and most equipment. May be audible on complex classical music through high-end equipment.
- MP3 128 kbps vs FLAC: The difference becomes audible on music with complex high-frequency content (cymbals, strings, synthesizers) through good headphones.
- MP3 96 kbps or lower: Clearly degraded — the characteristic "watery" MP3 artefacts are audible even through phone speakers.
When to Use Each Format
Use WAV when:
- You are recording or editing audio in a DAW — WAV is universally supported and avoids any re-encoding during editing
- You are sending audio to a mastering engineer or studio — studios always want WAV for master files
- You need guaranteed compatibility with any hardware or software, including vintage gear
- File size is not a constraint and you want zero quality loss with no special decoder needed
Use FLAC when:
- You want to archive your music collection losslessly but cannot afford the storage of WAV
- You use a FLAC-compatible player (most Android devices, Foobar2000, VLC, Plex, Jellyfin)
- You want full metadata support (album art, lyrics, track numbers) — WAV handles this poorly
- You rip CDs and want perfect digital copies at manageable size
Use MP3 when:
- You are sharing audio — by email, messaging app, or upload. MP3 plays everywhere without any special software
- You are distributing podcasts or audiobooks — 128 kbps is standard for speech content
- You need files that play on every device including old iPods, car stereos, and feature phones
- You are uploading to streaming platforms — they re-encode everything anyway, so a high-quality MP3 master (256–320 kbps) is acceptable
Convert Audio Formats Free — No Upload
Convert FLAC, WAV, and MP3 between formats instantly in your browser. Files never leave your device.
How to Convert Between FLAC, WAV, and MP3
Free browser converter (no upload required)
Convertlo converts audio entirely in your browser using FFmpeg.wasm. No file is sent to any server:
- FLAC → MP3 — compress lossless archives for sharing
- FLAC → WAV — for DAW compatibility
- MP3 → WAV — for use in video editors (note: quality cannot exceed the MP3 source)
- WAV → MP3 — shrink recording files for distribution
Using FFmpeg (command line)
# FLAC to MP3 at 320 kbps ffmpeg -i input.flac -b:a 320k output.mp3 # WAV to FLAC ffmpeg -i input.wav output.flac # MP3 to WAV (quality limited to source bitrate) ffmpeg -i input.mp3 output.wav