From b6092096d02316ec460d8d9f6bd0b10dee858b11 Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Thu, 8 Mar 2012 10:10:00 +0800 Subject: [PATCH] nanonote wav2png: draw lines instead points thanks jirka --- nanonote-files/script-files/usr/bin/wav2png | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanonote-files/script-files/usr/bin/wav2png b/nanonote-files/script-files/usr/bin/wav2png index d98adcd..ec1bfc8 100755 --- a/nanonote-files/script-files/usr/bin/wav2png +++ b/nanonote-files/script-files/usr/bin/wav2png @@ -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