Changeset 447c673 for tests/src/io/test-source_apple_audio.c
- Timestamp:
- Dec 6, 2013, 8:38:31 PM (11 years ago)
- 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:
- 7816f2b
- Parents:
- 919139b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/io/test-source_apple_audio.c
r919139b r447c673 12 12 err = 2; 13 13 PRINT_ERR("not enough arguments\n"); 14 PRINT_MSG("usage: %s <source_path> [samplerate]\n", argv[0]); 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]); 15 23 return err; 16 24 } 17 25 18 26 #if __APPLE__ 19 uint_t samplerate = 32000;27 uint_t samplerate = 0; 20 28 uint_t hop_size = 256; 21 29 uint_t n_frames = 0, read = 0; 22 30 if ( argc == 3 ) samplerate = atoi(argv[2]); 31 if ( argc == 4 ) hop_size = atoi(argv[3]); 23 32 24 33 char_t *source_path = argv[1]; 25 34 35 36 aubio_source_apple_audio_t * s = 37 new_aubio_source_apple_audio(source_path, samplerate, hop_size); 38 if (!s) { err = 1; goto beach; } 26 39 fvec_t *vec = new_fvec(hop_size); 27 aubio_source_apple_audio_t * s = new_aubio_source_apple_audio(source_path, samplerate, hop_size); 40 28 41 if (samplerate == 0 ) samplerate = aubio_source_apple_audio_get_samplerate(s); 29 30 if (!s) { err = 1; goto beach; }31 42 32 43 do { 33 44 aubio_source_apple_audio_do(s, vec, &read); 34 //fvec_print (vec);45 fvec_print (vec); 35 46 n_frames += read; 36 47 } while ( read == hop_size ); 37 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_apple_audio (s); 38 54 beach: 39 del_aubio_source_apple_audio (s);40 del_fvec (vec);41 55 #else 42 56 err = 3;
Note: See TracChangeset
for help on using the changeset viewer.