From: Dobrica Pavlinusic Date: Tue, 7 Jan 2020 19:57:52 +0000 (+0100) Subject: calculate rms using sox on 1s audio snippets X-Git-Url: http://git.rot13.org/?p=air-quality;a=commitdiff_plain;h=2de210044c403bdee6df39c54ed5d2857d93d897 calculate rms using sox on 1s audio snippets I'm using this to monitor rotation of (unused!) 220v fan to capture it's rotation and have indication of air movement --- diff --git a/audio.sh b/audio.sh new file mode 100755 index 0000000..cb7e9f5 --- /dev/null +++ b/audio.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +while true ; do + +arecord -d 1 -r 96000 /dev/shm/tmp.wav +time=`date +'%s%N'` +info=`sox /dev/shm/tmp.wav -n stat 2>&1 | sed -e 's/(.*)//' -e 's/: */=/' -e 's/ */_/g' | tr '\n' ',' | sed 's/,$//'` +curl --silent -XPOST http://10.60.0.92:8086/write?db=rot13 --data-binary "fan,dc=trnjanska $info $time" + +done