[b78805a] | 1 | /* |
---|
[466dff3] | 2 | Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org> |
---|
[b78805a] | 3 | |
---|
[6a2478c] | 4 | This file is part of aubio. |
---|
[b78805a] | 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/>. |
---|
[b78805a] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #include "utils.h" |
---|
[1b25a70] | 22 | #define PROG_HAS_TEMPO 1 |
---|
[3da8187] | 23 | #define PROG_HAS_OUTPUT 1 |
---|
| 24 | #define PROG_HAS_JACK 1 |
---|
[1b25a70] | 25 | #include "parse_args.h" |
---|
[b78805a] | 26 | |
---|
[466dff3] | 27 | aubio_tempo_t * tempo; |
---|
[f3617e7] | 28 | aubio_wavetable_t *wavetable; |
---|
[466dff3] | 29 | fvec_t * tempo_out; |
---|
[ce6186a] | 30 | smpl_t is_beat = 0; |
---|
| 31 | uint_t is_silence = 0.; |
---|
[d4c5de7] | 32 | |
---|
[466dff3] | 33 | void process_block(fvec_t * ibuf, fvec_t *obuf) { |
---|
| 34 | aubio_tempo_do (tempo, ibuf, tempo_out); |
---|
[c34336e] | 35 | is_beat = fvec_get_sample (tempo_out, 0); |
---|
[ce6186a] | 36 | if (silence_threshold != -90.) |
---|
| 37 | is_silence = aubio_silence_detection(ibuf, silence_threshold); |
---|
[466dff3] | 38 | fvec_zeros (obuf); |
---|
[ce6186a] | 39 | if ( is_beat && !is_silence ) { |
---|
[466dff3] | 40 | aubio_wavetable_play ( wavetable ); |
---|
| 41 | } else { |
---|
| 42 | aubio_wavetable_stop ( wavetable ); |
---|
[b78805a] | 43 | } |
---|
[3da8187] | 44 | if (mix_input) |
---|
| 45 | aubio_wavetable_do (wavetable, ibuf, obuf); |
---|
| 46 | else |
---|
| 47 | aubio_wavetable_do (wavetable, obuf, obuf); |
---|
[b78805a] | 48 | } |
---|
| 49 | |
---|
[466dff3] | 50 | void process_print (void) { |
---|
[ce6186a] | 51 | if ( is_beat && !is_silence ) { |
---|
[466dff3] | 52 | outmsg("%f\n", aubio_tempo_get_last_s(tempo) ); |
---|
[f3617e7] | 53 | } |
---|
[b78805a] | 54 | } |
---|
| 55 | |
---|
| 56 | int main(int argc, char **argv) { |
---|
[466dff3] | 57 | // override general settings from utils.c |
---|
[b5aa063] | 58 | buffer_size = 1024; |
---|
[466dff3] | 59 | hop_size = 512; |
---|
| 60 | |
---|
[b78805a] | 61 | examples_common_init(argc,argv); |
---|
| 62 | |
---|
[466dff3] | 63 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
| 64 | |
---|
| 65 | verbmsg ("tempo method: %s, ", tempo_method); |
---|
| 66 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
| 67 | verbmsg ("hop_size: %d, ", hop_size); |
---|
| 68 | verbmsg ("threshold: %f\n", onset_threshold); |
---|
| 69 | |
---|
[4621cd6] | 70 | tempo_out = new_fvec(2); |
---|
[466dff3] | 71 | tempo = new_aubio_tempo(tempo_method, buffer_size, hop_size, samplerate); |
---|
| 72 | if (onset_threshold != 0.) aubio_tempo_set_threshold (tempo, onset_threshold); |
---|
[b78805a] | 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); |
---|
[b78805a] | 79 | |
---|
[466dff3] | 80 | del_aubio_tempo(tempo); |
---|
[f3617e7] | 81 | del_aubio_wavetable (wavetable); |
---|
[d4c5de7] | 82 | del_fvec(tempo_out); |
---|
[fc5bc72] | 83 | |
---|
[b78805a] | 84 | examples_common_del(); |
---|
| 85 | return 0; |
---|
| 86 | } |
---|
| 87 | |
---|