- Timestamp:
- Nov 6, 2009, 1:08:44 AM (15 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:
- 8b8336b
- Parents:
- b8ee46c
- Location:
- src/tempo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/tempo/beattracking.h ¶
rb8ee46c r3ac7cb0 47 47 /** create beat tracking object 48 48 49 \param winlen: frame size[512]49 \param hop_size number of onset detection samples [512] 50 50 \param channels number (not functionnal) [1] 51 51 52 52 */ 53 aubio_beattracking_t * new_aubio_beattracking(uint_t winlen, uint_t channels); 53 aubio_beattracking_t * new_aubio_beattracking(uint_t hop_size, uint_t channels); 54 54 55 /** track the beat 55 56 … … 60 61 61 62 */ 62 void aubio_beattracking_do(aubio_beattracking_t * bt, fvec_t * dfframes, fvec_t * out); 63 void aubio_beattracking_do (aubio_beattracking_t * bt, fvec_t * dfframes, 64 fvec_t * out); 65 63 66 /** get current tempo in bpm 64 67 … … 70 73 */ 71 74 smpl_t aubio_beattracking_get_bpm(aubio_beattracking_t * bt); 75 72 76 /** get current tempo confidence 73 77 … … 79 83 */ 80 84 smpl_t aubio_beattracking_get_confidence(aubio_beattracking_t * bt); 85 81 86 /** delete beat tracking object 82 87 -
TabularUnified src/tempo/tempo.h ¶
rb8ee46c r3ac7cb0 39 39 40 40 /** create tempo detection object */ 41 aubio_tempo_t * new_aubio_tempo (char_t * m ode,41 aubio_tempo_t * new_aubio_tempo (char_t * method, 42 42 uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate); 43 43
Note: See TracChangeset
for help on using the changeset viewer.