Created
June 1, 2021 13:02
-
-
Save juliendargelos/c38eaba6a64bc3f5ea7d6241ac7ddb93 to your computer and use it in GitHub Desktop.
FFmpeg command that changes audio volume by factor or relative dB value.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i input.mp3 -filter:a "volume=0.5" output.mp3 | |
ffmpeg -i input.mp3 -filter:a "volume=5dB" output.mp3 | |
ffmpeg -i input.mp3 -filter:a "volume=-5dB" output.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment