Three filters that all change volume
- volume — multiplies samples by a factor. Simple, immediate.
- volumedetect — analyzes peaks/RMS without modifying anything. Use this first.
- loudnorm — broadcast-grade loudness normalization (EBU R128). The right tool for podcasts/YouTube. Lesson 5.
Decibel math
volume=2.0 = +6 dB. volume=0.5 = -6 dB. volume=1.5dB works too — FFmpeg parses dB suffix. volume=-3dB halves perceived loudness.
The headroom rule
Don't blindly boost a clip to peak at 0 dBFS — modern podcasts target -16 LUFS integrated loudness with -1 dBTP true peak. Hitting 0 dBFS means inter-sample peaks clip on conversion to MP3/AAC. Lesson 5's loudnorm handles this correctly.