Changeset f69e3bd for tests/src/tempo


Ignore:
Timestamp:
Oct 15, 2013, 10:46:18 PM (10 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:
69c39ca
Parents:
47e067b
Message:

tests/src/{onset,tempo}/test-*.c: improve test programs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/tempo/test-tempo.c

    r47e067b rf69e3bd  
    11#include <aubio.h>
     2#include "utils_tests.h"
    23
    3 int main ()
     4int main (int argc, char **argv)
    45{
    5   uint_t i = 0;
     6  uint_t err = 0;
     7  if (argc < 2) {
     8    err = 2;
     9    PRINT_ERR("not enough arguments\n");
     10    PRINT_MSG("read a wave file as a mono vector\n");
     11    PRINT_MSG("usage: %s <source_path> [samplerate] [hop_size]\n", argv[0]);
     12    return err;
     13  }
     14  uint_t samplerate = 0;
    615  uint_t win_s = 1024; // window size
    7   fvec_t * in = new_fvec (win_s); // input vector
    8   fvec_t * out = new_fvec (2); // output beat position
     16  uint_t hop_size = win_s / 4;
     17  uint_t n_frames = 0, read = 0;
     18  if ( argc == 3 ) samplerate = atoi(argv[2]);
     19  if ( argc == 4 ) hop_size = atoi(argv[3]);
     20
     21  char_t *source_path = argv[1];
     22  aubio_source_t * source = new_aubio_source(source_path, samplerate, hop_size);
     23  if (!source) { err = 1; goto beach; }
     24
     25  if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(source);
     26
     27  // create some vectors
     28  fvec_t * in = new_fvec (hop_size); // input audio buffer
     29  fvec_t * out = new_fvec (2); // output position
    930
    1031  // create tempo object
    11   aubio_tempo_t * o = new_aubio_tempo("complex", win_s, win_s/4, 44100.);
     32  aubio_tempo_t * o = new_aubio_tempo("default", win_s, hop_size, samplerate);
    1233
    13   smpl_t bpm, confidence;
    14 
    15   while (i < 1000) {
     34  do {
    1635    // put some fresh data in input vector
    17     // ...
    18 
     36    aubio_source_do(source, in, &read);
    1937    // execute tempo
    2038    aubio_tempo_do(o,in,out);
    2139    // do something with the beats
    22     // ...
     40    if (out->data[0] != 0) {
     41      PRINT_MSG("beat at %.3fms, %.3fs, frame %d, %.2fbpm with confidence %.2f\n",
     42          aubio_tempo_get_last_ms(o), aubio_tempo_get_last_s(o),
     43          aubio_tempo_get_last(o), aubio_tempo_get_bpm(o), aubio_tempo_get_confidence(o));
     44    }
     45    n_frames += read;
     46  } while ( read == hop_size );
    2347
    24     // get bpm and confidence
    25     bpm = aubio_tempo_get_bpm(o);
    26     confidence = aubio_tempo_get_confidence(o);
     48  PRINT_MSG("read %.2fs, %d frames at %dHz (%d blocks) from %s\n",
     49      n_frames * 1. / samplerate,
     50      n_frames, samplerate,
     51      n_frames / hop_size, source_path);
    2752
    28     i++;
    29   };
    30 
     53  // clean up memory
    3154  del_aubio_tempo(o);
    3255  del_fvec(in);
    3356  del_fvec(out);
     57  del_aubio_source(source);
     58beach:
    3459  aubio_cleanup();
    3560
    36   return 0;
     61  return err;
    3762}
Note: See TracChangeset for help on using the changeset viewer.