34b89e3647
Converts an MP3 file to another audio format. If <outfile> is - or missing, stdout is used. <format> may be au, wav, aiff, or any other format supported by sox.
14 lines
278 B
Text
14 lines
278 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2001/02/19 16:10:24 tron Exp $
|
|
|
|
--- mp3to.orig Mon Feb 19 16:56:43 2001
|
|
+++ mp3to Mon Feb 19 16:57:34 2001
|
|
@@ -17,6 +17,9 @@
|
|
exit 1
|
|
}
|
|
|
|
+PATH=`dirname $0`:$PATH
|
|
+export PATH
|
|
+
|
|
progname=`basename "$0"`
|
|
|
|
[ $# -ge 2 -a $# -le 3 ] || fail "usage:
|