1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-11-22 16:37:30 +02:00

nanonote wav2png: draw lines instead points thanks jirka

This commit is contained in:
Xiangfu Liu 2012-03-08 10:10:00 +08:00
parent 4e7ae65a3e
commit b6092096d0

View File

@ -11,4 +11,4 @@ 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
echo -e "set terminal png; set title '$FREQ';set output '$PNG'; plot '$DAT.clean' w l lt 2" | gnuplot