- Timestamp:
- Nov 2, 2015, 11:06:55 PM (9 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:
- 810b3b6
- Parents:
- 5f5edc1
- Location:
- src/tempo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tempo/tempo.c
r5f5edc1 r42c3dc0 226 226 } 227 227 228 smpl_t aubio_tempo_get_period (aubio_tempo_t *o) 229 { 230 return aubio_beattracking_get_period (o->bt); 231 } 232 233 smpl_t aubio_tempo_get_period_s (aubio_tempo_t *o) 234 { 235 return aubio_beattracking_get_period_s (o->bt); 236 } 237 228 238 smpl_t aubio_tempo_get_confidence(aubio_tempo_t *o) { 229 239 return aubio_beattracking_get_confidence(o->bt); -
src/tempo/tempo.h
r5f5edc1 r42c3dc0 122 122 smpl_t aubio_tempo_get_threshold(aubio_tempo_t * o); 123 123 124 /** get current beat period in samples 125 126 \param bt beat tracking object 127 128 Returns the currently observed period, in samples, or 0 if no consistent 129 value is found. 130 131 */ 132 smpl_t aubio_tempo_get_period (aubio_tempo_t * bt); 133 134 /** get current beat period in seconds 135 136 \param bt beat tracking object 137 138 Returns the currently observed period, in seconds, or 0 if no consistent 139 value is found. 140 141 */ 142 smpl_t aubio_tempo_get_period_s (aubio_tempo_t * bt); 143 124 144 /** get current tempo 125 145
Note: See TracChangeset
for help on using the changeset viewer.