b2KIT

WAV to MP3 Converter

Convert WAV audio files to compressed MP3 format with bitrate options.

Tested tool guide Tested browser tools Checked August 16, 2026

What WAV to MP3 Converter does, with a checked example

WAV stores audio as uncompressed PCM samples, so a few minutes of stereo sound can run to tens of megabytes. This converter reads the WAV file's RIFF/fmt header to get sample rate, bit depth, and channel count, decodes the raw samples, then re-encodes them into MPEG Layer III (MP3) frames at the bitrate you choose, discarding audio content a psychoacoustic model judges inaudible. People are often surprised that raising the bitrate afterward cannot restore anything already lost in an earlier lossy conversion, and that low bitrates blur cymbals, sibilance, and reverb tails first.

Worked example

A concrete input and expected output from the current implementation.

Input

a 3:00 (180-second), 44.1 kHz 16-bit stereo WAV file, 30.3 MB, converted at 192 kbps

Expected output

an MP3 file, same 3:00 length, about 4.32 MB

MP3 file size follows bitrate x duration / 8: 192,000 bits/s x 180 s / 8 = 4,320,000 bytes, regardless of the WAV's original sample rate or bit depth.

How the result is produced

1

Reading the WAV container

The tool parses the WAV file's RIFF and fmt chunks to read sample rate, bit depth, and channel count, then reads the raw samples from the data chunk. WAV is a container format, not a codec, so no decompression happens at this step - the samples are already linear PCM and ready to feed to an encoder.

2

Bitrate-based lossy encoding

The decoded samples are grouped into frames and passed through an MP3 encoder, which applies a psychoacoustic model to drop frequency content masked by louder nearby sounds, then quantizes what remains to fit the bitrate you selected (for example 128, 192, or 320 kbps). Higher bitrates keep more detail; lower ones shrink the file further at the cost of audible artifacts.

Good uses

  • shrinking a WAV export from a DAW or voice recorder so it fits in an email attachment or upload limit
  • converting a WAV voice memo or podcast recording to MP3 for a platform that only accepts compressed audio
  • reducing the storage footprint of a large WAV archive before putting it on a website

Limits and checks

  • Conversion is lossy and irreversible - encoding back to WAV afterward just wraps the already-compressed MP3 audio in a WAV container, it does not recover the original fidelity.
  • A 24-bit/96kHz or similar high-resolution WAV gets its extra resolution discarded during encoding, which matters if the file was meant for further mastering rather than playback.
  • Quality loss is not linear with bitrate - dense, multi-instrument audio shows artifacts at bitrates where spoken-word content still sounds clean, so the same setting won't suit every source file.

Common questions

Will the MP3 sound identical to the original WAV?

No. MP3 is a lossy format, so some audio data is discarded regardless of bitrate. At 320 kbps most listeners won't notice a difference on typical playback equipment, but the files are not bit-for-bit identical, and at lower bitrates like 96-128 kbps the difference can become audible, especially in cymbals and reverb tails.

Can I get back to the original WAV quality by converting the MP3 back to WAV?

No. Converting an MP3 back to WAV only repackages the already-compressed, already-lossy audio into an uncompressed container - it does not restore any of the detail removed during the original MP3 encoding. Keep the source WAV if you might need full quality later.

References and verification

The example and behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools