1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-30 01:33:14 +03:00

nanonote-files: add wav2png simple script file

This commit is contained in:
Xiangfu Liu 2012-03-06 18:28:58 +08:00
parent 4c4746551a
commit f0ff76ceb2

View File

@ -0,0 +1,14 @@
#!/bin/sh
#usage: wav2png.sh file.wav
BASE=${1%.wav}
PNG=$BASE.png
WAV=$BASE.wav
DAT=$BASE.dat
#echo $BASE,$PNG,$WAV,$DAT
sox $WAV $DAT
grep -v '^;' $DAT >$DAT.clean
FREQ=`head -1 $DAT|tr -d ';'`
echo -e "set terminal png;set title '$FREQ';set output '$PNG'; plot '$DAT.clean'" | gnuplot