Skip to content

Instantly share code, notes, and snippets.

@autr
Created August 3, 2021 20:12
Show Gist options
  • Save autr/d65d596384d5b3edad330e4a0824ee46 to your computer and use it in GitHub Desktop.
Save autr/d65d596384d5b3edad330e4a0824ee46 to your computer and use it in GitHub Desktop.
FFMPEG normalise volume of audio files
#!/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