From: Paul Brossier Date: Mon, 6 Jun 2005 15:01:21 +0000 (+0000) Subject: removed numarray from aubio{cut,pitch} X-Git-Tag: 0.4.0-beta1~1412 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=97b8c3d3dcad65ae6bf73d01166802374c2fc965;p=aubio.git removed numarray from aubio{cut,pitch} --- diff --git a/python/aubiocut b/python/aubiocut index 5f2f4e59..04655961 100755 --- a/python/aubiocut +++ b/python/aubiocut @@ -5,7 +5,6 @@ """ import sys -import numarray from aubio.aubioclass import * usage = "usage: %s [options] -i soundfile" % sys.argv[0] diff --git a/python/aubiopitch b/python/aubiopitch index d481547b..b45534f3 100755 --- a/python/aubiopitch +++ b/python/aubiopitch @@ -6,7 +6,6 @@ import sys -import numarray from aubio.aubioclass import * usage = "usage: %s [options] -i soundfile" % sys.argv[0] @@ -30,8 +29,8 @@ def parse_args(): action="store", dest="filename", help="input sound file") parser.add_option("-m","--mode", action="callback", - callback=check_mode, dest="mode", default=aubio_schmitt, - help="pitch detection mode [default=dual] \ + callback=check_mode, dest="mode", default=aubio_mcomb, + help="pitch detection mode [default=mcomb] \ mcomb|yin|fcomb|schmitt") parser.add_option("-B","--bufsize", action="store", dest="bufsize", default=1024,