source: tests/src/io/test-source_avcodec.c @ 4fa1fd9

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

tests/src/io/test-source_avcodec.c: add hop_size, improve memory check

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[ba0ba10]1#define AUBIO_UNSTABLE 1
2#include <aubio.h>
3#include "utils_tests.h"
4#include "config.h"
5
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
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");
[ce5e424]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]);
[ba0ba10]24    return err;
25  }
26
27#ifdef HAVE_AVCODEC
28  uint_t samplerate = 0;
29  uint_t hop_size = 256;
30  uint_t n_frames = 0, read = 0;
31  if ( argc == 3 ) samplerate = atoi(argv[2]);
[ce5e424]32  if ( argc == 4 ) hop_size = atoi(argv[3]);
[ba0ba10]33
34  char_t *source_path = argv[1];
35
[ce5e424]36
[ba0ba10]37  aubio_source_avcodec_t * s = new_aubio_source_avcodec(source_path, samplerate, hop_size);
38  if (!s) { err = 1; goto beach; }
[ce5e424]39  fvec_t *vec = new_fvec(hop_size);
40
[23bf001]41  if (samplerate == 0 ) samplerate = aubio_source_avcodec_get_samplerate(s);
[ba0ba10]42
43  do {
44    aubio_source_avcodec_do(s, vec, &read);
45    fvec_print (vec);
46    n_frames += read;
47  } while ( read == hop_size );
48
[ce5e424]49  PRINT_MSG("read %d frames at %dHz (%d blocks) from %s\n", n_frames, samplerate,
50    n_frames / hop_size, source_path);
51
52  del_fvec (vec);
[ba0ba10]53  del_aubio_source_avcodec (s);
[23bf001]54beach:
[ba0ba10]55#else
56  err = 3;
57  PRINT_ERR("aubio was not compiled with aubio_source_avcodec\n");
58#endif /* HAVE_AVCODEC */
59  return err;
60}
Note: See TracBrowser for help on using the repository browser.