[88199ce] | 1 | /* |
---|
[466dff3] | 2 | Copyright (C) 2007-2013 Paul Brossier <piem@aubio.org> |
---|
[88199ce] | 3 | |
---|
[6a2478c] | 4 | This file is part of aubio. |
---|
[88199ce] | 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/>. |
---|
[88199ce] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #include "utils.h" |
---|
[1b25a70] | 22 | #include "parse_args.h" |
---|
[88199ce] | 23 | |
---|
[466dff3] | 24 | aubio_pvoc_t *pv; // a phase vocoder |
---|
| 25 | cvec_t *fftgrain; // outputs a spectrum |
---|
| 26 | aubio_mfcc_t * mfcc; // which the mfcc will process |
---|
| 27 | fvec_t * mfcc_out; // to get the output coefficients |
---|
[3e7c408] | 28 | |
---|
[f72ceeb] | 29 | uint_t n_filters = 40; |
---|
[b901228] | 30 | uint_t n_coefs = 13; |
---|
[7a46bf6] | 31 | |
---|
[d389e23] | 32 | void process_block (fvec_t *ibuf, fvec_t *obuf) |
---|
| 33 | { |
---|
[466dff3] | 34 | fvec_zeros(obuf); |
---|
| 35 | //compute mag spectrum |
---|
| 36 | aubio_pvoc_do (pv, ibuf, fftgrain); |
---|
| 37 | //compute mfccs |
---|
| 38 | aubio_mfcc_do(mfcc, fftgrain, mfcc_out); |
---|
[88199ce] | 39 | } |
---|
| 40 | |
---|
[d389e23] | 41 | void process_print (void) |
---|
| 42 | { |
---|
[340cb93] | 43 | /* output times in selected format */ |
---|
| 44 | print_time (blocks * hop_size); |
---|
| 45 | outmsg ("\t"); |
---|
| 46 | /* output extracted mfcc */ |
---|
| 47 | fvec_print (mfcc_out); |
---|
[88199ce] | 48 | } |
---|
| 49 | |
---|
| 50 | int main(int argc, char **argv) { |
---|
[61a1e5d] | 51 | int ret = 0; |
---|
[466dff3] | 52 | // change some default params |
---|
[b901228] | 53 | buffer_size = 512; |
---|
[466dff3] | 54 | hop_size = 256; |
---|
| 55 | |
---|
[88199ce] | 56 | examples_common_init(argc,argv); |
---|
[d4c5de7] | 57 | |
---|
[466dff3] | 58 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
| 59 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
| 60 | verbmsg ("hop_size: %d\n", hop_size); |
---|
[d4c5de7] | 61 | |
---|
[466dff3] | 62 | pv = new_aubio_pvoc (buffer_size, hop_size); |
---|
[4621cd6] | 63 | fftgrain = new_cvec (buffer_size); |
---|
[d4c5de7] | 64 | mfcc = new_aubio_mfcc(buffer_size, n_filters, n_coefs, samplerate); |
---|
[4621cd6] | 65 | mfcc_out = new_fvec(n_coefs); |
---|
[61a1e5d] | 66 | if (pv == NULL || fftgrain == NULL || mfcc == NULL || mfcc_out == NULL) { |
---|
| 67 | ret = 1; |
---|
| 68 | goto beach; |
---|
| 69 | } |
---|
[466dff3] | 70 | |
---|
| 71 | examples_common_process((aubio_process_func_t)process_block, process_print); |
---|
| 72 | |
---|
[d4c5de7] | 73 | del_aubio_pvoc (pv); |
---|
| 74 | del_cvec (fftgrain); |
---|
[3e7c408] | 75 | del_aubio_mfcc(mfcc); |
---|
[2a77ff0] | 76 | del_fvec(mfcc_out); |
---|
[38837b1] | 77 | |
---|
[61a1e5d] | 78 | beach: |
---|
[88199ce] | 79 | examples_common_del(); |
---|
[61a1e5d] | 80 | return ret; |
---|
[88199ce] | 81 | } |
---|