How to Convert WAV to MP3 — Free Online Guide

A 4-minute song recorded at CD quality (44100 Hz / 16-bit stereo) weighs about 40 MB as a WAV file. The same song encoded as a 192 kbps MP3 is about 5.5 MB — seven times smaller. That difference matters when you're filling a phone, uploading to a platform, or sharing via email.

This guide shows you how to convert WAV to MP3 for free, explains which bitrate to choose, and answers the honest question: will you actually hear the difference?

WAV vs MP3 — What Changes When You Convert

WAV stores audio as raw uncompressed PCM data. Every sample is saved exactly as recorded. There is no mathematical approximation, no discarded information. The file accurately represents the original signal.

MP3 uses psychoacoustic modeling to discard audio data that human hearing is least likely to notice — sounds that are masked by louder sounds, very high frequencies above ~16 kHz, quiet sounds that happen simultaneously with loud ones. The result is a much smaller file that sounds perceptually similar but is not mathematically identical to the source.

Keep the original WAV. MP3 encoding is destructive and one-way. Once you convert WAV to MP3, you cannot recover the discarded data. Always archive the WAV and distribute the MP3 — never delete the lossless source.

Convert WAV to MP3 Free — Right Now

No upload, no software, no signup. Your file never leaves your device.

Method 1 — Convert WAV to MP3 Free in Your Browser

1
Convertlo — No Upload, No Install
Recommended
  1. Open convertlo.pro/wav-to-mp3.html on any device.
  2. Drag and drop your WAV file, or click Browse to select it.
  3. On first use, the browser downloads FFmpeg.wasm (~32 MB) — a one-time cached download.
  4. Conversion runs 100% locally — your audio never leaves your device.
  5. Click Download to save the MP3 file.

Works on Chrome, Edge, Firefox, and Safari. Handles WAV, AIFF, FLAC, M4A, OGG, and more. Batch conversion available.

Method 2 — Convert Using FFmpeg (Command Line)

2
FFmpeg — Windows, Mac, Linux
  1. Install FFmpeg from ffmpeg.org or via brew install ffmpeg on Mac.
  2. Open Terminal or Command Prompt.
  3. Standard conversion at 192 kbps:
ffmpeg -i input.wav -b:a 192k output.mp3

For highest quality variable bitrate (VBR):

ffmpeg -i input.wav -q:a 0 output.mp3

The -q:a 0 flag uses LAME's highest VBR setting (roughly equivalent to 245 kbps average). Batch convert a folder: for f in *.wav; do ffmpeg -i "$f" -b:a 192k "${f%.wav}.mp3"; done

Method 3 — Convert Using iTunes / Music App

3
Apple Music (macOS) / iTunes (Windows)
  1. Open Music on macOS or iTunes on Windows.
  2. Go to Preferences → Files → Import Settings.
  3. Set Import Using to MP3 Encoder and choose your quality (192 kbps or Custom).
  4. Drag your WAV file into your library.
  5. Right-click the track → Convert → Create MP3 Version.

The converted MP3 appears alongside the WAV in your library. This method is convenient for personal music libraries but slower for batch work than FFmpeg.

MP3 Bitrate Guide — Which Quality to Choose

96 kbps
Audible compression — not recommended for music
Voice only
128 kbps
Acceptable for speech and podcasts
Podcasts
192 kbps
Standard quality — transparent for most music
Music
256 kbps
High quality — what Apple Music uses
Distribution
320 kbps
Maximum MP3 quality — near-transparent
Archive / Hi-Fi

Will You Actually Hear the Difference?

ABX blind listening tests — where listeners try to tell apart a lossless file and a compressed version without knowing which is which — consistently show:

  • At 128 kbps: Most trained listeners can identify compression, especially on piano, cymbals, and reverb tails.
  • At 192 kbps: Fewer than 50% of trained listeners identify compression in most ABX tests — perceptually transparent for most content.
  • At 320 kbps: Statistically indistinguishable from lossless in the vast majority of double-blind tests.

The audible difference is most noticeable on high-frequency percussion (hi-hats, cymbals) and complex reverbs played through high-resolution headphones or studio monitors. On Bluetooth earbuds or phone speakers, 128 kbps and 320 kbps are practically identical.

File Size Comparison

Format / Bitrate4-min song1 hour of audio
WAV (16-bit/44.1 kHz)~40 MB~600 MB
MP3 128 kbps~3.7 MB~56 MB
MP3 192 kbps~5.5 MB~84 MB
MP3 320 kbps~9.2 MB~138 MB
AAC 256 kbps~7.4 MB~112 MB

Frequently Asked Questions

What bitrate should I use when converting WAV to MP3?
192 kbps is the standard for music and general audio — perceptually transparent for most listeners on typical playback equipment. Use 128 kbps for speech and podcasts. Use 320 kbps for high-quality archives or when you want the absolute best MP3 possible.
How much smaller will my file be?
A WAV at 44100 Hz / 16-bit stereo is about 10 MB per minute. At 192 kbps MP3, the same audio is about 1.4 MB per minute — a 7x reduction. A 600 MB album in WAV becomes about 84 MB as 192 kbps MP3s.
Will I hear the difference between WAV and 192 kbps MP3?
Most people cannot reliably identify 192 kbps MP3 vs lossless in double-blind tests on typical speakers or headphones. Differences are most audible on complex high-frequency content (cymbals, reverb) through high-resolution headphones. For general listening, 192 kbps is transparent enough.
Should I keep the original WAV file?
Yes — always archive the lossless WAV. MP3 encoding is lossy and cannot be reversed. If you later need a higher bitrate, a different format, or want to apply audio processing without generational loss, you need the WAV original. Storage is cheap; re-recording is not.
Does WAV to MP3 work on iPhone and Android?
Yes. Convertlo works in any modern browser including Safari on iPhone and Chrome on Android. All conversion happens locally using FFmpeg.wasm — your file is never uploaded to any server.
🎵
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 →