Audio to WAV Converter

Turn any audio file your browser can play into an uncompressed 16-bit PCM WAV file, with optional mono mixdown and resampling — decoded and re-encoded entirely on your device.

audio-to-wav · runs locally
Drop an audio file here or click to browse. MP3, WAV, OGG, M4A — anything your browser can play.

How this WAV converter works

Drop in an MP3, OGG, M4A, FLAC or any other file your browser can play. The tool decodes it to raw PCM with the Web Audio API, shows you the duration, sample rate and channel layout, then writes a standard 16-bit WAV file on your device. Optionally it mixes stereo down to mono by averaging the channels, or resamples to a target rate through an offline audio renderer — useful when a transcription service or an old sampler insists on a specific format.

Be ready for the size: WAV is uncompressed, so a 4 MB MP3 typically becomes a 40 MB WAV. That is not a bug — lossless PCM simply stores every sample verbatim, which is exactly why WAV opens everywhere and survives any number of edits without generational loss.

When mono and 16 kHz make sense

For voice recordings, stereo and high sample rates are wasted bytes. Speech-to-text engines are almost universally trained on 16 kHz mono; converting a stereo 44.1 kHz recording to that format cuts the WAV to roughly a fifth of the size with no practical loss for spoken content. For music, keep the original rate and channels — resampling music downward audibly discards high frequencies.

Converting versus editing

This page converts the whole file as-is. If you only need part of it, cut the section first with the Audio Trimmer — it exports WAV too, so there is no need to convert afterwards. And if you are starting from scratch rather than from a file, the Voice Recorder captures straight from your microphone.

Frequently asked questions

Is my audio uploaded anywhere?

No. The file is decoded with the Web Audio API and rewritten as WAV entirely inside your browser — there is no server, no upload and no queue. Your recording never leaves your device.

Why WAV and not MP3 output?

Browsers ship decoders for MP3, OGG and M4A but no encoders — producing MP3 in a page would mean bundling a codec library. WAV is plain lossless PCM the browser can write directly, and every editor, DAW and player on earth accepts it. The cost is larger files: about 10 MB per minute of stereo 44.1 kHz audio.

Will converting my MP3 to WAV improve the quality?

No. Whatever detail the lossy MP3 encoder threw away is gone forever — converting to WAV faithfully preserves what remains, nothing more. Convert when a tool demands WAV input or you want a format-agnostic working copy, not in the hope of restoring quality.

Which sample rate should I pick?

Keep the original unless you have a reason to change it. Choose 16000 Hz mono for speech headed to a transcription service — most engines expect it and the file shrinks dramatically. 44100 Hz is the music standard; 48000 Hz matches video workflows. Upsampling never adds quality.