shithub: sox

Download patch

ref: abed578324ce19ac81024f2aeb1b5dea8dc74e17
parent: 9807dad14f3c7da4992d7a33d90dd28527ee5bdb
author: cbagwell <cbagwell>
date: Mon Sep 13 19:04:02 EDT 2004

script updates

--- a/scripts/soxeffect
+++ b/scripts/soxeffect
@@ -2,17 +2,17 @@
 #
 # soxeffect - When this script is ran using a different name then soxeffect
 # it will run sox using that name as the effect.  It uses stdin/stdout
-# to grab data and output data.
+# to grab data and output data and so is mainly useful in pipes.
+# 
+# Example usage:
+#   ln -s soxeffect lowpass
+#   rec | lowpass | play
 #
 # TODO: It would be nice to specify different output parameters then
 # the input format.
 #
 
-# Some people prefer to rename sox to something like sox.bin, then use this
-# script to always run sox, using "ln -s soxeffect sox".
-
 SOX=/usr/local/bin/sox
-# SOX=/usr/local/bin/sox.bin
 
 help()
 {
--- a/scripts/testcd.sh
+++ b/scripts/testcd.sh
@@ -1,5 +1,11 @@
 #!/bin/sh
-# create WAV-Files that can be used for an audio Test CD
+# create WAV-Files that can be used to create an audio Test CD
+#
+# The intent of this Test CD is to allow you to test the reproduction
+# quality and response of an audio system by playing back audio
+# of various frequencies and power levels.  Browse through the
+# script comments to see what all audio files are created.
+#
 # all files are created in the current directory
 #
 # Command Line options:
@@ -27,7 +33,7 @@
 OFT=".wav"
 
 #our binary
-SOX=./sox  
+SOX=../src/sox  
 
 # filenameprefix
 if  [ "$1" = "" ] ; then