source: examples/aubioonset.c @ 5c6b264

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

src/fvec.h: clean up fvec api

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[96fb8ad]1/*
[466dff3]2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[6a2478c]4  This file is part of aubio.
[96fb8ad]5
[6a2478c]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/>.
[96fb8ad]18
19*/
20
21#include "utils.h"
[466dff3]22#define PROG_HAS_ONSET 1
[3da8187]23#define PROG_HAS_OUTPUT 1
24#define PROG_HAS_JACK 1
[1b25a70]25#include "parse_args.h"
[96fb8ad]26
[d4c5de7]27aubio_onset_t *o;
[f3617e7]28aubio_wavetable_t *wavetable;
[d4c5de7]29fvec_t *onset;
[ce6186a]30smpl_t is_onset;
[d4c5de7]31
[466dff3]32void
33process_block(fvec_t *ibuf, fvec_t *obuf) {
34  fvec_zeros(obuf);
35  aubio_onset_do (o, ibuf, onset);
[c34336e]36  is_onset = fvec_get_sample(onset, 0);
[614ba69]37  if ( is_onset ) {
[466dff3]38    aubio_wavetable_play ( wavetable );
39  } else {
40    aubio_wavetable_stop ( wavetable );
[96fb8ad]41  }
[3da8187]42  if (mix_input)
43    aubio_wavetable_do (wavetable, ibuf, obuf);
44  else
45    aubio_wavetable_do (wavetable, obuf, obuf);
[96fb8ad]46}
47
[466dff3]48void
[4621cd6]49process_print (void)
50{
[614ba69]51  if ( is_onset ) {
[e987c05]52    outmsg ("%f\n", aubio_onset_get_last_s (o) );
[4621cd6]53  }
[bd2f2ab]54}
[96fb8ad]55
[bd2f2ab]56int main(int argc, char **argv) {
57  examples_common_init(argc,argv);
[d4c5de7]58
[466dff3]59  verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
60  verbmsg ("onset method: %s, ", onset_method);
61  verbmsg ("buffer_size: %d, ", buffer_size);
62  verbmsg ("hop_size: %d, ", hop_size);
[614ba69]63  verbmsg ("silence: %f, ", silence_threshold);
[466dff3]64  verbmsg ("threshold: %f\n", onset_threshold);
65
66  o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate);
[614ba69]67  if (onset_threshold != 0.)
68    aubio_onset_set_threshold (o, onset_threshold);
69  if (silence_threshold != -90.)
70    aubio_onset_set_silence (o, silence_threshold);
71
[4621cd6]72  onset = new_fvec (1);
[d4c5de7]73
[466dff3]74  wavetable = new_aubio_wavetable (samplerate, hop_size);
[f3617e7]75  aubio_wavetable_set_freq ( wavetable, 2450.);
76  //aubio_sampler_load (sampler, "/archives/sounds/woodblock.aiff");
77
[466dff3]78  examples_common_process((aubio_process_func_t)process_block, process_print);
[d4c5de7]79
80  del_aubio_onset (o);
[f3617e7]81  del_aubio_wavetable (wavetable);
[d4c5de7]82  del_fvec (onset);
83
[bd2f2ab]84  examples_common_del();
[96fb8ad]85  return 0;
86}
Note: See TracBrowser for help on using the repository browser.