summaryrefslogtreecommitdiffstats
path: root/tools/audio_check_volume
blob: 37a7239246ea7f8fc58b7e6e3d56a1ab084e8965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

EXT=`echo "$1"|awk -F . '{print $NF}'`
NAME=`basename $1 .$EXT`

if [ -z "$1" ]; then
	echo "Usage: $0 <wav-file>"
	exit 1
fi

echo -n " * Checking volume levels..."
sox $1 -n stat -v 2> $1.vol
echo -e "OK!"