[88199ce] | 1 | /* |
---|
[6a2478c] | 2 | Copyright (C) 2007-2009 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" |
---|
| 22 | |
---|
[3e7c408] | 23 | /* mfcc objects */ |
---|
[2a77ff0] | 24 | fvec_t * mfcc_out; |
---|
[3e7c408] | 25 | aubio_mfcc_t * mfcc; |
---|
[d4c5de7] | 26 | aubio_pvoc_t *pv; |
---|
| 27 | cvec_t *fftgrain; |
---|
[3e7c408] | 28 | |
---|
[f72ceeb] | 29 | uint_t n_filters = 40; |
---|
[b901228] | 30 | uint_t n_coefs = 13; |
---|
[7a46bf6] | 31 | |
---|
[88199ce] | 32 | unsigned int pos = 0; /*frames%dspblocksize*/ |
---|
| 33 | |
---|
[d4c5de7] | 34 | static int aubio_process(smpl_t **input, smpl_t **output, int nframes) { |
---|
[88199ce] | 35 | unsigned int j; /*frames*/ |
---|
[dcc649c] | 36 | |
---|
[88199ce] | 37 | for (j=0;j<(unsigned)nframes;j++) { |
---|
| 38 | if(usejack) { |
---|
[4621cd6] | 39 | /* write input to datanew */ |
---|
| 40 | fvec_write_sample(ibuf, input[0][j], pos); |
---|
| 41 | /* put synthnew in output */ |
---|
| 42 | output[0][j] = fvec_read_sample(obuf, pos); |
---|
[88199ce] | 43 | } |
---|
| 44 | /*time for fft*/ |
---|
| 45 | if (pos == overlap_size-1) { |
---|
| 46 | /* block loop */ |
---|
| 47 | |
---|
| 48 | //compute mag spectrum |
---|
[4621cd6] | 49 | aubio_pvoc_do (pv, ibuf, fftgrain); |
---|
[71d3bf0] | 50 | |
---|
[88199ce] | 51 | //compute mfccs |
---|
[2a77ff0] | 52 | aubio_mfcc_do(mfcc, fftgrain, mfcc_out); |
---|
[f72ceeb] | 53 | |
---|
[88199ce] | 54 | /* end of block loop */ |
---|
| 55 | pos = -1; /* so it will be zero next j loop */ |
---|
| 56 | } |
---|
| 57 | pos++; |
---|
| 58 | } |
---|
| 59 | return 1; |
---|
| 60 | } |
---|
| 61 | |
---|
[d4c5de7] | 62 | static void process_print (void) { |
---|
[8c7f80d] | 63 | /* output times in seconds and extracted mfccs */ |
---|
| 64 | if (sink_uri == NULL) { |
---|
| 65 | outmsg("%f\t",frames*overlap_size/(float)samplerate); |
---|
| 66 | fvec_print(mfcc_out); |
---|
| 67 | } |
---|
[88199ce] | 68 | } |
---|
| 69 | |
---|
| 70 | int main(int argc, char **argv) { |
---|
[3e7c408] | 71 | // params |
---|
[b901228] | 72 | buffer_size = 512; |
---|
| 73 | overlap_size = 256; |
---|
[ef1c3b7] | 74 | |
---|
[88199ce] | 75 | examples_common_init(argc,argv); |
---|
[d4c5de7] | 76 | |
---|
| 77 | /* phase vocoder */ |
---|
[4621cd6] | 78 | pv = new_aubio_pvoc (buffer_size, overlap_size); |
---|
[d4c5de7] | 79 | |
---|
[4621cd6] | 80 | fftgrain = new_cvec (buffer_size); |
---|
[d4c5de7] | 81 | |
---|
[fe28ff3] | 82 | //populating the filter |
---|
[d4c5de7] | 83 | mfcc = new_aubio_mfcc(buffer_size, n_filters, n_coefs, samplerate); |
---|
| 84 | |
---|
[4621cd6] | 85 | mfcc_out = new_fvec(n_coefs); |
---|
[f72ceeb] | 86 | |
---|
[fe28ff3] | 87 | //process |
---|
[88199ce] | 88 | examples_common_process(aubio_process,process_print); |
---|
[fe28ff3] | 89 | |
---|
[3e7c408] | 90 | //destroying mfcc |
---|
[d4c5de7] | 91 | del_aubio_pvoc (pv); |
---|
| 92 | del_cvec (fftgrain); |
---|
[3e7c408] | 93 | del_aubio_mfcc(mfcc); |
---|
[2a77ff0] | 94 | del_fvec(mfcc_out); |
---|
[38837b1] | 95 | |
---|
[88199ce] | 96 | examples_common_del(); |
---|
| 97 | debug("End of program.\n"); |
---|
| 98 | fflush(stderr); |
---|
[fe28ff3] | 99 | |
---|
[88199ce] | 100 | return 0; |
---|
| 101 | } |
---|
| 102 | |
---|