source: examples/aubioonset.c @ 5bfb0fd

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

examples/: use wavetable to play pitch and to replace woodblock

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[96fb8ad]1/*
[6a2478c]2  Copyright (C) 2003-2009 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"
22
[f3617e7]23uint_t pos = 0; /*frames%dspblocksize*/
[96fb8ad]24
[d4c5de7]25aubio_onset_t *o;
[f3617e7]26aubio_wavetable_t *wavetable;
[d4c5de7]27fvec_t *onset;
28
29static int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
[96fb8ad]30  unsigned int j;       /*frames*/
[af35ed0]31  for (j=0;j<(unsigned)nframes;j++) {
[96fb8ad]32    if(usejack) {
[4621cd6]33      /* write input to datanew */
34      fvec_write_sample(ibuf, input[0][j], pos);
35      /* put synthnew in output */
36      output[0][j] = fvec_read_sample(obuf, pos);
[96fb8ad]37    }
38    /*time for fft*/
[4621cd6]39    if (pos == overlap_size-1) {
[96fb8ad]40      /* block loop */
[f3617e7]41      fvec_zeros(obuf);
[d4c5de7]42      aubio_onset_do (o, ibuf, onset);
[4621cd6]43      if ( fvec_read_sample(onset, 0) ) {
[f3617e7]44        aubio_wavetable_play ( wavetable );
[96fb8ad]45      } else {
[f3617e7]46        aubio_wavetable_stop ( wavetable );
[96fb8ad]47      }
[f3617e7]48      aubio_wavetable_do (wavetable, ibuf, obuf);
[9cba1eb]49      /* end of block loop */
[96fb8ad]50      pos = -1; /* so it will be zero next j loop */
51    }
52    pos++;
53  }
54  return 1;
55}
56
[4621cd6]57static void
58process_print (void)
59{
60  /* output times in seconds, taking back some delay to ensure the label is
61   * _before_ the actual onset */
62  if (!verbose && usejack)
63    return;
64  smpl_t onset_found = fvec_read_sample (onset, 0);
65  if (onset_found) {
[e987c05]66    outmsg ("%f\n", aubio_onset_get_last_s (o) );
[4621cd6]67  }
[bd2f2ab]68}
[96fb8ad]69
[bd2f2ab]70int main(int argc, char **argv) {
[19f1dc9]71  frames_delay = 3;
[bd2f2ab]72  examples_common_init(argc,argv);
[d4c5de7]73
[4621cd6]74  o = new_aubio_onset (onset_mode, buffer_size, overlap_size, samplerate);
[40acfbc]75  if (threshold != 0.) aubio_onset_set_threshold (o, threshold);
[4621cd6]76  onset = new_fvec (1);
[d4c5de7]77
[f3617e7]78  wavetable = new_aubio_wavetable (samplerate, overlap_size);
79  aubio_wavetable_set_freq ( wavetable, 2450.);
80  //aubio_sampler_load (sampler, "/archives/sounds/woodblock.aiff");
81
[bd2f2ab]82  examples_common_process(aubio_process,process_print);
[d4c5de7]83
84  del_aubio_onset (o);
[f3617e7]85  del_aubio_wavetable (wavetable);
[d4c5de7]86  del_fvec (onset);
87
[bd2f2ab]88  examples_common_del();
[96fb8ad]89  debug("End of program.\n");
90  fflush(stderr);
91  return 0;
92}
93
Note: See TracBrowser for help on using the repository browser.