[52ca8a3] | 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_sink instead |
---|
| 6 | // see src/io/sink.h and tests/src/sink/test-sink.c |
---|
| 7 | |
---|
| 8 | int main (int argc, char **argv) |
---|
| 9 | { |
---|
| 10 | sint_t err = 0; |
---|
| 11 | |
---|
| 12 | if (argc < 3) { |
---|
| 13 | err = 2; |
---|
| 14 | PRINT_ERR("not enough arguments\n"); |
---|
| 15 | PRINT_MSG("usage: %s <input_path> <output_path> [samplerate]\n", argv[0]); |
---|
| 16 | return err; |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | #ifdef HAVE_WAVWRITE |
---|
| 20 | uint_t samplerate = 44100; |
---|
| 21 | uint_t hop_size = 512; |
---|
| 22 | uint_t n_frames = 0, read = 0; |
---|
| 23 | |
---|
| 24 | char_t *source_path = argv[1]; |
---|
| 25 | char_t *sink_path = argv[2]; |
---|
| 26 | if ( argc == 4 ) samplerate = atoi(argv[3]); |
---|
| 27 | |
---|
| 28 | fvec_t *vec = new_fvec(hop_size); |
---|
| 29 | aubio_source_t *i = new_aubio_source(source_path, samplerate, hop_size); |
---|
| 30 | if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(i); |
---|
| 31 | aubio_sink_wavwrite_t *o = new_aubio_sink_wavwrite(sink_path, samplerate); |
---|
| 32 | |
---|
| 33 | if (!i || !o) { err = 1; goto beach; } |
---|
| 34 | |
---|
| 35 | do { |
---|
| 36 | aubio_source_do(i, vec, &read); |
---|
| 37 | aubio_sink_wavwrite_do(o, vec, read); |
---|
| 38 | n_frames += read; |
---|
| 39 | } while ( read == hop_size ); |
---|
| 40 | |
---|
| 41 | PRINT_MSG("%d frames read from %s\n written to %s at %dHz\n", |
---|
| 42 | n_frames, source_path, sink_path, samplerate); |
---|
| 43 | |
---|
| 44 | beach: |
---|
| 45 | del_aubio_source(i); |
---|
| 46 | del_aubio_sink_wavwrite(o); |
---|
| 47 | del_fvec(vec); |
---|
| 48 | #else |
---|
| 49 | err = 3; |
---|
| 50 | PRINT_ERR("aubio was not compiled with aubio_sink_wavwrite\n"); |
---|
| 51 | #endif /* HAVE_WAVWRITE */ |
---|
| 52 | return err; |
---|
| 53 | } |
---|