ChangeLog: update for 0.4.3
[aubio.git] / examples / aubioonset.c
1 /*
2   Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
3
4   This file is part of aubio.
5
6   aubio is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   aubio is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with aubio.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "utils.h"
22 #define PROG_HAS_ONSET 1
23 #define PROG_HAS_OUTPUT 1
24 #define PROG_HAS_JACK 1
25 #include "parse_args.h"
26
27 aubio_onset_t *o;
28 aubio_wavetable_t *wavetable;
29 fvec_t *onset;
30 smpl_t is_onset;
31
32 void process_block(fvec_t *ibuf, fvec_t *obuf)
33 {
34   aubio_onset_do (o, ibuf, onset);
35   is_onset = fvec_get_sample(onset, 0);
36   if ( !usejack && ! sink_uri ) return;
37   fvec_zeros(obuf);
38   if ( is_onset ) {
39     aubio_wavetable_play ( wavetable );
40     /* send a midi tap (default to C0) out to the midi output */
41     if (usejack) send_noteon(miditap_note, miditap_velo);
42   } else {
43     aubio_wavetable_stop ( wavetable );
44   }
45   if (mix_input)
46     aubio_wavetable_do (wavetable, ibuf, obuf);
47   else
48     aubio_wavetable_do (wavetable, obuf, obuf);
49 }
50
51 void process_print (void)
52 {
53   if ( is_onset ) {
54     print_time(aubio_onset_get_last (o));
55     outmsg ("\n");
56   }
57 }
58
59 int main(int argc, char **argv) {
60   examples_common_init(argc,argv);
61
62   verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
63   verbmsg ("onset method: %s, ", onset_method);
64   verbmsg ("buffer_size: %d, ", buffer_size);
65   verbmsg ("hop_size: %d, ", hop_size);
66   verbmsg ("silence: %f, ", silence_threshold);
67   verbmsg ("threshold: %f\n", onset_threshold);
68
69   o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate);
70   if (onset_threshold != 0.)
71     aubio_onset_set_threshold (o, onset_threshold);
72   if (silence_threshold != -90.)
73     aubio_onset_set_silence (o, silence_threshold);
74
75   onset = new_fvec (1);
76
77   wavetable = new_aubio_wavetable (samplerate, hop_size);
78   aubio_wavetable_set_freq ( wavetable, 2450.);
79   //aubio_sampler_load (sampler, "/archives/sounds/woodblock.aiff");
80
81   examples_common_process((aubio_process_func_t)process_block, process_print);
82
83   // send a last note off
84   send_noteon (miditap_note, 0);
85
86   del_aubio_onset (o);
87   del_aubio_wavetable (wavetable);
88   del_fvec (onset);
89
90   examples_common_del();
91   return 0;
92 }