shithub: aubio

Download patch

ref: d45d118938ed6b13b66ce4fd6411bf24595ec94c
parent: 1944aafc1d7ab59ec9a69b6c12abb7ae5249c702
author: Paul Brossier <piem@altern.org>
date: Thu Mar 2 13:43:33 EST 2006

web: use multiple pitch methods
web: use multiple pitch methods


--- a/python/aubio/web/html.py
+++ b/python/aubio/web/html.py
@@ -177,7 +177,7 @@
 
 ## pitch foo
 def draw_pitch(req,threshold='0.3'):
-    draw_func(req,"aubiopitch -i %%i -p -m yin -t %s -O stdout" % threshold)
+    draw_func(req,"aubiopitch -i %%i -p -m schmitt,yin,fcomb,mcomb -t %s -O stdout" % threshold)
 
 def show_pitch(req):
     show_task(req,"pitch")
--