[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] | 27 | aubio_onset_t *o; |
---|
[f3617e7] | 28 | aubio_wavetable_t *wavetable; |
---|
[d4c5de7] | 29 | fvec_t *onset; |
---|
[ce6186a] | 30 | smpl_t is_onset; |
---|
[d4c5de7] | 31 | |
---|
[466dff3] | 32 | void |
---|
| 33 | process_block(fvec_t *ibuf, fvec_t *obuf) { |
---|
| 34 | aubio_onset_do (o, ibuf, onset); |
---|
[c34336e] | 35 | is_onset = fvec_get_sample(onset, 0); |
---|
[822190c] | 36 | if ( !usejack && ! sink_uri ) return; |
---|
| 37 | fvec_zeros(obuf); |
---|
[614ba69] | 38 | if ( is_onset ) { |
---|
[466dff3] | 39 | aubio_wavetable_play ( wavetable ); |
---|
| 40 | } else { |
---|
| 41 | aubio_wavetable_stop ( wavetable ); |
---|
[96fb8ad] | 42 | } |
---|
[3da8187] | 43 | if (mix_input) |
---|
| 44 | aubio_wavetable_do (wavetable, ibuf, obuf); |
---|
| 45 | else |
---|
| 46 | aubio_wavetable_do (wavetable, obuf, obuf); |
---|
[96fb8ad] | 47 | } |
---|
| 48 | |
---|
[466dff3] | 49 | void |
---|
[4621cd6] | 50 | process_print (void) |
---|
| 51 | { |
---|
[614ba69] | 52 | if ( is_onset ) { |
---|
[e987c05] | 53 | outmsg ("%f\n", aubio_onset_get_last_s (o) ); |
---|
[4621cd6] | 54 | } |
---|
[bd2f2ab] | 55 | } |
---|
[96fb8ad] | 56 | |
---|
[bd2f2ab] | 57 | int main(int argc, char **argv) { |
---|
| 58 | examples_common_init(argc,argv); |
---|
[d4c5de7] | 59 | |
---|
[466dff3] | 60 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
| 61 | verbmsg ("onset method: %s, ", onset_method); |
---|
| 62 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
| 63 | verbmsg ("hop_size: %d, ", hop_size); |
---|
[614ba69] | 64 | verbmsg ("silence: %f, ", silence_threshold); |
---|
[466dff3] | 65 | verbmsg ("threshold: %f\n", onset_threshold); |
---|
| 66 | |
---|
| 67 | o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate); |
---|
[614ba69] | 68 | if (onset_threshold != 0.) |
---|
| 69 | aubio_onset_set_threshold (o, onset_threshold); |
---|
| 70 | if (silence_threshold != -90.) |
---|
| 71 | aubio_onset_set_silence (o, silence_threshold); |
---|
| 72 | |
---|
[4621cd6] | 73 | onset = new_fvec (1); |
---|
[d4c5de7] | 74 | |
---|
[466dff3] | 75 | wavetable = new_aubio_wavetable (samplerate, hop_size); |
---|
[f3617e7] | 76 | aubio_wavetable_set_freq ( wavetable, 2450.); |
---|
| 77 | //aubio_sampler_load (sampler, "/archives/sounds/woodblock.aiff"); |
---|
| 78 | |
---|
[466dff3] | 79 | examples_common_process((aubio_process_func_t)process_block, process_print); |
---|
[d4c5de7] | 80 | |
---|
| 81 | del_aubio_onset (o); |
---|
[f3617e7] | 82 | del_aubio_wavetable (wavetable); |
---|
[d4c5de7] | 83 | del_fvec (onset); |
---|
| 84 | |
---|
[bd2f2ab] | 85 | examples_common_del(); |
---|
[96fb8ad] | 86 | return 0; |
---|
| 87 | } |
---|