forked from sox_ng/sox_ng
12 lines
251 B
Bash
12 lines
251 B
Bash
#! /bin/sh
|
|
|
|
# sox.sf.net bug 293: stats effect returns -inf if window is set to 0.36 seconds
|
|
|
|
RMSPkdB="$(${sox:-sox} 19-76.aiff -n stats -w .36 2>&1 | grep 'RMS Pk dB' | sed 's/.* //')"
|
|
|
|
status=0
|
|
case "$RMSPkdB" in
|
|
-inf) status=2;;
|
|
esac
|
|
|
|
exit $status
|