[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" |
---|
[1b25a70] | 22 | #define PROG_HAS_PITCH 1 |
---|
| 23 | #define PROG_HAS_ONSET 1 |
---|
[3da8187] | 24 | #define PROG_HAS_JACK 1 |
---|
| 25 | // TODO add PROG_HAS_OUTPUT |
---|
[1b25a70] | 26 | #include "parse_args.h" |
---|
[96fb8ad] | 27 | |
---|
[ba303e8] | 28 | aubio_notes_t *notes; |
---|
[9562f08] | 29 | smpl_t lastmidi = 0.; |
---|
[d4c5de7] | 30 | |
---|
[d389e23] | 31 | void process_block (fvec_t *ibuf, fvec_t *obuf) |
---|
| 32 | { |
---|
[ba303e8] | 33 | aubio_notes_do (notes, ibuf, obuf); |
---|
| 34 | // did we get a note off? |
---|
| 35 | if (obuf->data[2] != 0) { |
---|
[9562f08] | 36 | lastmidi = aubio_freqtomidi (obuf->data[2]) + .5; |
---|
| 37 | send_noteon(lastmidi, 0); |
---|
[466dff3] | 38 | } |
---|
[ba303e8] | 39 | // did we get a note on? |
---|
| 40 | if (obuf->data[0] != 0) { |
---|
[9562f08] | 41 | lastmidi = aubio_freqtomidi (obuf->data[0]) + .5; |
---|
| 42 | send_noteon(lastmidi, obuf->data[1]); |
---|
[96fb8ad] | 43 | } |
---|
| 44 | } |
---|
| 45 | |
---|
[d389e23] | 46 | void process_print (void) |
---|
| 47 | { |
---|
[466dff3] | 48 | //if (verbose) outmsg("%f\n",pitch_obuf->data[0]); |
---|
[a0fd4e4] | 49 | } |
---|
[96fb8ad] | 50 | |
---|
[bd2f2ab] | 51 | int main(int argc, char **argv) { |
---|
| 52 | examples_common_init(argc,argv); |
---|
[d4c5de7] | 53 | |
---|
[466dff3] | 54 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
| 55 | |
---|
| 56 | verbmsg ("onset method: %s, ", onset_method); |
---|
| 57 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
| 58 | verbmsg ("hop_size: %d, ", hop_size); |
---|
| 59 | verbmsg ("threshold: %f\n", onset_threshold); |
---|
| 60 | |
---|
| 61 | verbmsg ("pitch method: %s, ", pitch_method); |
---|
| 62 | verbmsg ("buffer_size: %d, ", buffer_size * 4); |
---|
| 63 | verbmsg ("hop_size: %d, ", hop_size); |
---|
| 64 | verbmsg ("tolerance: %f\n", pitch_tolerance); |
---|
| 65 | |
---|
[ba303e8] | 66 | notes = new_aubio_notes ("default", buffer_size, hop_size, samplerate); |
---|
[d4c5de7] | 67 | |
---|
[466dff3] | 68 | examples_common_process((aubio_process_func_t)process_block, process_print); |
---|
[d4c5de7] | 69 | |
---|
[466dff3] | 70 | // send a last note off |
---|
[9562f08] | 71 | send_noteon (lastmidi, 0); |
---|
[466dff3] | 72 | |
---|
[ba303e8] | 73 | del_aubio_notes (notes); |
---|
[d4c5de7] | 74 | |
---|
[bd2f2ab] | 75 | examples_common_del(); |
---|
[96fb8ad] | 76 | return 0; |
---|
| 77 | } |
---|
| 78 | |
---|