Tested tool guide
Tested browser tools
Checked August 15, 2026
What Audio Compressor/Limiter does, with a checked example
Feed this tool an audio file and it narrows the gap between its loudest and quietest moments, then caps whatever peaks remain so the output never exceeds a set ceiling. Compression pulls down levels that cross a threshold by a chosen ratio; limiting is a much steeper version of the same idea, clamping transients that would otherwise clip. Processing happens on the file you provide, so results depend entirely on the settings you pick. The part people get wrong most often: pushing the ratio and threshold too hard flattens transients, so speech or drums end up sounding squashed and pumped rather than simply 'more even.'
Worked example
A concrete input and expected output from the current implementation.
Input
Audio peaking at -6 dBFS, threshold set to -20 dB, ratio 4:1
->
Expected output
Compressed level around -16.5 dBFS before makeup gain (the 14 dB the signal sits above threshold is reduced to 3.5 dB of overshoot)
Standard downward compression math: output = threshold + (input - threshold) / ratio, so -20 + (-6 - (-20)) / 4 = -16.5 dBFS; the limiter stage then guarantees the final peak stays under whatever ceiling is set, regardless of this intermediate value.