source: examples/aubioonset.c @ 3da8187

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 3da8187 was 3da8187, checked in by Paul Brossier <piem@piem.org>, 10 years ago

examples/: remove -o and -j when unused

  • Property mode set to 100644
File size: 2.2 KB
Line 
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
27aubio_onset_t *o;
28aubio_wavetable_t *wavetable;
29fvec_t *onset;
30
31void
32process_block(fvec_t *ibuf, fvec_t *obuf) {
33  fvec_zeros(obuf);
34  aubio_onset_do (o, ibuf, onset);
35  if ( fvec_read_sample(onset, 0) ) {
36    aubio_wavetable_play ( wavetable );
37  } else {
38    aubio_wavetable_stop ( wavetable );
39  }
40  if (mix_input)
41    aubio_wavetable_do (wavetable, ibuf, obuf);
42  else
43    aubio_wavetable_do (wavetable, obuf, obuf);
44}
45
46void
47process_print (void)
48{
49  smpl_t onset_found = fvec_read_sample (onset, 0);
50  if (onset_found) {
51    outmsg ("%f\n", aubio_onset_get_last_s (o) );
52  }
53}
54
55int main(int argc, char **argv) {
56  examples_common_init(argc,argv);
57
58  verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
59  verbmsg ("onset method: %s, ", onset_method);
60  verbmsg ("buffer_size: %d, ", buffer_size);
61  verbmsg ("hop_size: %d, ", hop_size);
62  verbmsg ("threshold: %f\n", onset_threshold);
63
64  o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate);
65  if (onset_threshold != 0.) aubio_onset_set_threshold (o, onset_threshold);
66  onset = new_fvec (1);
67
68  wavetable = new_aubio_wavetable (samplerate, hop_size);
69  aubio_wavetable_set_freq ( wavetable, 2450.);
70  //aubio_sampler_load (sampler, "/archives/sounds/woodblock.aiff");
71
72  examples_common_process((aubio_process_func_t)process_block, process_print);
73
74  del_aubio_onset (o);
75  del_aubio_wavetable (wavetable);
76  del_fvec (onset);
77
78  examples_common_del();
79  return 0;
80}
Note: See TracBrowser for help on using the repository browser.