Changeset 9e84cc5


Ignore:
Timestamp:
Sep 17, 2007, 1:58:51 AM (17 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
c0307f0
Parents:
3730d94
Message:

examples/utils.c,aubiomfcc.c: do not set mfcc parameters here, do that in aubiomfcc.c instead

Location:
examples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • examples/aubiomfcc.c

    r3730d94 r9e84cc5  
    8585int main(int argc, char **argv) {
    8686  // params
     87  buffer_size  = 1024;
     88  overlap_size = 512;
    8789 
    8890  examples_common_init(argc,argv);
  • examples/utils.c

    r3730d94 r9e84cc5  
    4040smpl_t threshold                      = 0.3;
    4141smpl_t silence                        = -90.;
    42 // uint_t buffer_size                    = 512;
    43 // uint_t overlap_size                   = 256;
    44 uint_t buffer_size                    = 1024;
    45 uint_t overlap_size                   = 512;
    46 // uint_t buffer_size                    = 2048;
    47 // uint_t overlap_size                   = 1024;
     42uint_t buffer_size                    = 512; //1024;
     43uint_t overlap_size                   = 256; //512;
    4844uint_t channels                       = 1;
    4945uint_t samplerate                     = 44100;
Note: See TracChangeset for help on using the changeset viewer.