source: tests/src/io/test-source_sndfile.c @ 074b41b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 074b41b was 447c673, checked in by Paul Brossier <piem@piem.org>, 11 years ago

src/io/source_sndfile.c: also check parameters here, synchronise tests

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[856ceb5]1#define AUBIO_UNSTABLE 1
[afbd7e7]2#include <aubio.h>
[248da64]3#include "utils_tests.h"
[535d127]4#include "config.h"
[afbd7e7]5
[856ceb5]6// this file uses the unstable aubio api, please use aubio_source instead
7// see src/io/source.h and tests/src/source/test-source.c
8
[248da64]9int main (int argc, char **argv)
10{
11  uint_t err = 0;
12  if (argc < 2) {
13    err = 2;
14    PRINT_ERR("not enough arguments\n");
[447c673]15    PRINT_MSG("read a wave file as a mono vector\n");
16    PRINT_MSG("usage: %s <source_path> [samplerate] [hop_size]\n", argv[0]);
17    PRINT_MSG("examples:\n");
18    PRINT_MSG(" - read file.wav at original samplerate\n");
19    PRINT_MSG("       %s file.wav\n", argv[0]);
20    PRINT_MSG(" - read file.wav at 32000Hz\n");
21    PRINT_MSG("       %s file.aif 32000\n", argv[0]);
22    PRINT_MSG(" - read file.wav at original samplerate with 4096 blocks\n");
23    PRINT_MSG("       %s file.wav 0 4096 \n", argv[0]);
[248da64]24    return err;
25  }
[afbd7e7]26
27#ifdef HAVE_SNDFILE
[2e50800]28  uint_t samplerate = 0;
[248da64]29  uint_t hop_size = 256;
30  uint_t n_frames = 0, read = 0;
31  if ( argc == 3 ) samplerate = atoi(argv[2]);
[447c673]32  if ( argc == 4 ) hop_size = atoi(argv[3]);
[248da64]33
34  char_t *source_path = argv[1];
35
[447c673]36
37  aubio_source_sndfile_t * s =
38    new_aubio_source_sndfile(source_path, samplerate, hop_size);
[ab7d100]39  if (!s) { err = 1; goto beach; }
[447c673]40  fvec_t *vec = new_fvec(hop_size);
41
[294aff6]42  if (samplerate == 0 ) samplerate = aubio_source_sndfile_get_samplerate(s);
[afbd7e7]43
[248da64]44  do {
[afbd7e7]45    aubio_source_sndfile_do(s, vec, &read);
[2e50800]46    fvec_print (vec);
[248da64]47    n_frames += read;
48  } while ( read == hop_size );
[afbd7e7]49
[447c673]50  PRINT_MSG("read %d frames at %dHz (%d blocks) from %s\n", n_frames, samplerate,
51    n_frames / hop_size, source_path);
52
53  del_fvec (vec);
[248da64]54  del_aubio_source_sndfile (s);
[294aff6]55beach:
[afbd7e7]56#else
[856ceb5]57  err = 3;
[248da64]58  PRINT_ERR("aubio was not compiled with aubio_source_sndfile\n");
[afbd7e7]59#endif /* HAVE_SNDFILE */
[ab7d100]60  return err;
[afbd7e7]61}
Note: See TracBrowser for help on using the repository browser.