ref: b67e715f833a930125968b8ccdc33380ac530d97
parent: 5f0ad5072a4f6e05f22492a5a9b6a9ae12ed5e07
author: Paul Brossier <piem@piem.org>
date: Sun Mar 26 11:40:49 EDT 2017
examples/aubioonset.c: get parameters from created instances
--- a/examples/aubioonset.c
+++ b/examples/aubioonset.c
@@ -62,13 +62,6 @@
int ret = 0;
examples_common_init(argc,argv);
- verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);- verbmsg ("onset method: %s, ", onset_method);- verbmsg ("buffer_size: %d, ", buffer_size);- verbmsg ("hop_size: %d, ", hop_size);- verbmsg ("silence: %f, ", silence_threshold);- verbmsg ("threshold: %f\n", onset_threshold);-
o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate);
if (o == NULL) { ret = 1; goto beach; }if (onset_threshold != 0.)
@@ -77,6 +70,13 @@
aubio_onset_set_silence (o, silence_threshold);
if (onset_minioi != 0.)
aubio_onset_set_minioi_s (o, onset_minioi);
+
+ verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);+ verbmsg ("onset method: %s, ", onset_method);+ verbmsg ("buffer_size: %d, ", buffer_size);+ verbmsg ("hop_size: %d, ", hop_size);+ verbmsg ("silence: %f, ", aubio_onset_get_silence(o));+ verbmsg ("threshold: %f\n", aubio_onset_get_threshold(o));onset = new_fvec (1);
--
⑨