Add: normalize script to normalize volume of sounds library
This commit is contained in:
parent
b9429caf75
commit
6b95e3d43c
14
sounds/normalize
Normal file
14
sounds/normalize
Normal file
|
@ -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")"
|
Loading…
Reference in a new issue