Convert Audio to Mono

Pick an audio file — it's downmixed to a single channel in your browser, nothing is uploaded.

Mono audio

Convert audio to mono in your browser

Pick an audio file and it's downmixed to a single channel with ffmpeg, entirely in your browser. mix (the default) blends every channel using ffmpeg's standard downmix — the classic (L+R)/2 for stereo, and the proper weighted fold-down for 5.1/7.1 surround. left or right instead keeps just that side of the recording.

Worked example

A two-person interview was recorded with each voice on its own side, and the right channel picked up an air conditioner. Upload interview.wav, set Channel to left and Format to mp3 — the result interview-mono.mp3 contains only the clean left-side voice track. For normal music or voice memos, leave Channel on mix.

Why go mono?

Limits and edge cases

FAQ

Does mixing to mono make the audio quieter?

Slightly, when the two sides differ: ffmpeg's downmix averages the channels, so sound present on only one side ends up at half its original level. Sound present on both sides (like most voice recordings) keeps its level. If the result is too quiet, run it through the audio-normalize tool afterwards.

When should I use left or right instead of mix?

When one channel is the only good one: interviews recorded with a single mic panned to one side, damaged tracks with noise on one channel, or hardware that recorded silence on one side. Mixing in a bad channel would add noise — keeping just the good side avoids that.

Can I convert mono back to stereo?

A mono file plays through both speakers already — players duplicate the channel automatically. True stereo (different left/right content) can't be recovered once it's mixed down; keep your original file if you may need the stereo image again.

Is my audio uploaded anywhere?

No. The page downloads an ffmpeg WebAssembly build once and then processes your file locally in the browser tab — the audio never leaves your device.

Developer & Automation Access

Run it from the terminal

Same engine as this page, headless — via the gizza CLI:

gizza tool audio-to-mono 'url=https://example.com/input' 'channel=mix' 'format=mp3'

New to the CLI? Get gizza →

Open it by URL

Pre-fill and auto-run this tool with query parameters — the names match the API/CLI:

https://gizza.ai/tools/audio-to-mono/?url=https://example.com/input&channel=mix&format=mp3