blob: 596a317a66430d6c8f179556f7b033fda0ab5255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
#
# Date: 2009-12-16
# Author: Ole Kristian Lien
# License: GNU General Public License
#
# Print out some audio info/stats
if [ -z "$1" ]; then
echo "Usage: $0 <audio-file>"
exit 1
fi
./require sox || { exit 1; }
echo -n " * Generating audio statistics for $1..."
sox $1 -n stat
echo -e "OK!"
|