diff --git a/sounds/normalize b/sounds/normalize new file mode 100644 index 0000000..daed02c --- /dev/null +++ b/sounds/normalize @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "Processing file $1"; +DIR="$(dirname "$1" | awk '{ print substr ($0, 13)}')"/; +if [ $DIR = "/" ] +then + DIR="" +fi +mkdir -p ./normalized/$DIR +ffmpeg-normalize "$1" \ + -ar 48000 \ + -c:a libopus \ + -ofmt opus \ + -o "normalized/$DIR$(basename "$1")" \ No newline at end of file