Change Audio Volume

Pick an audio file and a gain — it's boosted or cut in your browser, nothing is uploaded.

Adjusted audio

Change audio volume in your browser

Pick an audio file and a gain amount — the volume is changed with ffmpeg, entirely in your browser. Work in decibels (+6 dB is roughly twice as loud-feeling, -6 dB cuts it back) or switch the unit to factor (2 doubles the amplitude, 0.5 halves it). A peak limiter is on by default so big boosts hit 0 dBFS and stop instead of clipping into distortion.

Worked example

A phone recording that's way too quiet: upload memo.m4a, leave Amount at 6 (dB) and Prevent clipping ticked — the result memo-volume.mp3 is clearly louder with no crackle, because the limiter caps any peak that the boost would have pushed past full scale. Still too quiet? Run it again, or use 12. Need an exact halving instead? Set Unit to factor and Amount to 0.5.

Decibels or factor?

Limits and edge cases

FAQ

How many dB make it "twice as loud"?

Roughly +10 dB feels twice as loud to most listeners; +6 dB doubles the signal's amplitude. Try +6 first — it's a clearly audible boost — and repeat or use +12 if the source is very quiet.

Why does my boosted file top out instead of getting ever louder?

The clipping limiter caps peaks at 0 dBFS — digital audio physically can't go above full scale without distortion. Once peaks touch the ceiling, extra gain only raises the quiet parts. If everything already peaks near full scale, consider the audio-normalize tool to raise average loudness instead.

Should I use this or audio-normalize?

Use this tool for a simple fixed change ("make it 6 dB louder"). Use audio-normalize when you need a standard loudness target (Spotify -14 LUFS, podcast -16) or consistent volume across episodes — it measures your audio and applies exactly the gain needed.

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-volume-adjust 'url=https://example.com/input' 'amount=6' 'unit=db' 'limiter=true' '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-volume-adjust/?url=https://example.com/input&amount=6&unit=db&limiter=true&format=mp3