[5158c22] | 1 | #define AUBIO_UNSTABLE 1 |
---|
| 2 | #include <aubio.h> |
---|
| 3 | #include "utils_tests.h" |
---|
| 4 | |
---|
| 5 | // this file uses the unstable aubio api, please use aubio_source instead |
---|
| 6 | // see src/io/source.h and tests/src/source/test-source.c |
---|
| 7 | |
---|
| 8 | int main (int argc, char **argv) |
---|
| 9 | { |
---|
| 10 | uint_t err = 0; |
---|
| 11 | if (argc < 2) { |
---|
| 12 | err = 2; |
---|
| 13 | PRINT_ERR("not enough arguments\n"); |
---|
| 14 | PRINT_MSG("read a wave file as a mono vector\n"); |
---|
| 15 | PRINT_MSG("usage: %s <source_path> [samplerate] [hop_size]\n", argv[0]); |
---|
| 16 | PRINT_MSG("examples:\n"); |
---|
| 17 | PRINT_MSG(" - read file.wav at original samplerate\n"); |
---|
| 18 | PRINT_MSG(" %s file.wav\n", argv[0]); |
---|
| 19 | PRINT_MSG(" - read file.wav at 32000Hz\n"); |
---|
| 20 | PRINT_MSG(" %s file.aif 32000\n", argv[0]); |
---|
| 21 | PRINT_MSG(" - read file.wav at original samplerate with 4096 blocks\n"); |
---|
| 22 | PRINT_MSG(" %s file.wav 0 4096 \n", argv[0]); |
---|
| 23 | return err; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | #ifdef HAVE_WAVREAD |
---|
| 27 | uint_t samplerate = 0; |
---|
| 28 | uint_t hop_size = 256; |
---|
| 29 | uint_t n_frames = 0, read = 0; |
---|
| 30 | if ( argc == 3 ) samplerate = atoi(argv[2]); |
---|
| 31 | if ( argc == 4 ) hop_size = atoi(argv[3]); |
---|
| 32 | |
---|
| 33 | char_t *source_path = argv[1]; |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | aubio_source_wavread_t * s = |
---|
| 37 | new_aubio_source_wavread(source_path, samplerate, hop_size); |
---|
| 38 | if (!s) { err = 1; goto beach; } |
---|
| 39 | fvec_t *vec = new_fvec(hop_size); |
---|
| 40 | |
---|
| 41 | samplerate = aubio_source_wavread_get_samplerate(s); |
---|
| 42 | |
---|
| 43 | do { |
---|
| 44 | aubio_source_wavread_do(s, vec, &read); |
---|
| 45 | fvec_print (vec); |
---|
| 46 | n_frames += read; |
---|
| 47 | } while ( read == hop_size ); |
---|
| 48 | |
---|
| 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); |
---|
| 53 | del_aubio_source_wavread (s); |
---|
| 54 | beach: |
---|
| 55 | #else |
---|
| 56 | err = 3; |
---|
| 57 | PRINT_ERR("aubio was not compiled with aubio_source_wavread\n"); |
---|
| 58 | #endif /* HAVE_WAVREAD */ |
---|
| 59 | return err; |
---|
| 60 | } |
---|