From 6b384f3358ed53505cea751de2c1f43947ff8dbc Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 28 May 2005 21:48:06 +0000 Subject: [PATCH] fix buffer size settings in new aubiocut --- python/aubiocut | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/aubiocut b/python/aubiocut index a83038a3..8242bf9d 100755 --- a/python/aubiocut +++ b/python/aubiocut @@ -93,8 +93,8 @@ options, args = parse_args() filename = options.filename samplerate = float(sndfile(filename).samplerate()) -hopsize = options.hopsize -bufsize = options.bufsize +hopsize = float(options.hopsize) +bufsize = float(options.bufsize) threshold = float(options.threshold) silence = float(options.silence) mintol = float(options.mintol)*samplerate/hopsize -- 2.26.2