Created
August 3, 2021 20:12
-
-
Save autr/d65d596384d5b3edad330e4a0824ee46 to your computer and use it in GitHub Desktop.
FFMPEG normalise volume of audio files
This file contains hidden or 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
#!/bin/bash | |
# Using pip install ffmpeg-normalize | |
for f in ${1}*.wav | |
do | |
echo $f | |
ffmpeg-normalize ${f} -of ${1}normalized/ -ext wav | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment