Changes between Version 2 and Version 3 of AudioVolume
- Timestamp:
- Oct 2, 2018, 7:59:36 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AudioVolume
v2 v3 15 15 }}} 16 16 17 You can also use decibel measures :17 You can also use decibel measures. To increase the volume by 10dB: 18 18 {{{ 19 19 ffmpeg -i input.wav -filter:a "volume=10dB" output.wav 20 20 }}} 21 22 To reduce the volume, use a negative value: 23 {{{ 24 ffmpeg -i input.wav -filter:a "volume=-5dB" output.wav 25 }}} 26 27 Note that the `volume` filter only '''adjusts''' the volume. It does not '''set''' the volume. To set or otherwise normalize the volume of a stream, see the sections below. 21 28 22 29 == Peak and RMS Normalization ==
