[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 i; /*channels*/ |
---|
| 36 | unsigned int j; /*frames*/ |
---|
[dcc649c] | 37 | |
---|
[88199ce] | 38 | for (j=0;j<(unsigned)nframes;j++) { |
---|
| 39 | if(usejack) { |
---|
| 40 | for (i=0;i<channels;i++) { |
---|
| 41 | /* write input to datanew */ |
---|
| 42 | fvec_write_sample(ibuf, input[i][j], i, pos); |
---|
| 43 | /* put synthnew in output */ |
---|
| 44 | output[i][j] = fvec_read_sample(obuf, i, pos); |
---|
| 45 | } |
---|
| 46 | } |
---|
| 47 | /*time for fft*/ |
---|
| 48 | if (pos == overlap_size-1) { |
---|
| 49 | /* block loop */ |
---|
| 50 | |
---|
| 51 | //compute mag spectrum |
---|
| 52 | aubio_pvoc_do (pv,ibuf, fftgrain); |
---|
[71d3bf0] | 53 | |
---|
[88199ce] | 54 | //compute mfccs |
---|
[2a77ff0] | 55 | aubio_mfcc_do(mfcc, fftgrain, mfcc_out); |
---|
[f72ceeb] | 56 | |
---|
[88199ce] | 57 | /* end of block loop */ |
---|
| 58 | pos = -1; /* so it will be zero next j loop */ |
---|
| 59 | } |
---|
| 60 | pos++; |
---|
| 61 | } |
---|
| 62 | return 1; |
---|
| 63 | } |
---|
| 64 | |
---|
[d4c5de7] | 65 | static void process_print (void) { |
---|
[88199ce] | 66 | /* output times in seconds |
---|
| 67 | write extracted mfccs |
---|
| 68 | */ |
---|
| 69 | |
---|
[7a46bf6] | 70 | uint_t coef_cnt; |
---|
[88199ce] | 71 | if (output_filename == NULL) { |
---|
[b901228] | 72 | outmsg("%f\t",frames*overlap_size/(float)samplerate); |
---|
[aeb38cf] | 73 | for (coef_cnt = 0; coef_cnt < n_coefs; coef_cnt++) { |
---|
[0e0a049] | 74 | outmsg("%f ", fvec_read_sample (mfcc_out, 0, coef_cnt) ); |
---|
[aeb38cf] | 75 | } |
---|
| 76 | outmsg("\n"); |
---|
[88199ce] | 77 | } |
---|
| 78 | } |
---|
| 79 | |
---|
| 80 | int main(int argc, char **argv) { |
---|
[3e7c408] | 81 | // params |
---|
[b901228] | 82 | buffer_size = 512; |
---|
| 83 | overlap_size = 256; |
---|
[ef1c3b7] | 84 | |
---|
[88199ce] | 85 | examples_common_init(argc,argv); |
---|
[d4c5de7] | 86 | |
---|
| 87 | /* phase vocoder */ |
---|
| 88 | pv = new_aubio_pvoc (buffer_size, overlap_size, channels); |
---|
| 89 | |
---|
| 90 | fftgrain = new_cvec (buffer_size, channels); |
---|
| 91 | |
---|
[fe28ff3] | 92 | //populating the filter |
---|
[d4c5de7] | 93 | mfcc = new_aubio_mfcc(buffer_size, n_filters, n_coefs, samplerate); |
---|
| 94 | |
---|
| 95 | mfcc_out = new_fvec(n_coefs,channels); |
---|
[f72ceeb] | 96 | |
---|
[fe28ff3] | 97 | //process |
---|
[88199ce] | 98 | examples_common_process(aubio_process,process_print); |
---|
[fe28ff3] | 99 | |
---|
[3e7c408] | 100 | //destroying mfcc |
---|
[d4c5de7] | 101 | del_aubio_pvoc (pv); |
---|
| 102 | del_cvec (fftgrain); |
---|
[3e7c408] | 103 | del_aubio_mfcc(mfcc); |
---|
[2a77ff0] | 104 | del_fvec(mfcc_out); |
---|
[38837b1] | 105 | |
---|
[88199ce] | 106 | examples_common_del(); |
---|
| 107 | debug("End of program.\n"); |
---|
| 108 | fflush(stderr); |
---|
[fe28ff3] | 109 | |
---|
[88199ce] | 110 | return 0; |
---|
| 111 | } |
---|
| 112 | |
---|