source: src/tempo/tempo.h @ 230101d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 230101d was 72af472, checked in by Paul Brossier <piem@piem.org>, 7 years ago

src/tempo/tempo.h: improve documentation (#22)

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[7524d0b]1/*
[b235c0e]2  Copyright (C) 2006-2013 Paul Brossier <piem@aubio.org>
[7524d0b]3
[e6a78ea]4  This file is part of aubio.
[7524d0b]5
[e6a78ea]6  aubio is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
[7524d0b]10
[e6a78ea]11  aubio is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
[7524d0b]18
19*/
20
[7efeffd]21/** \file
22
[c25d5b5]23  Tempo detection object
[d88ea06]24
25  This object stores all the memory required for tempo detection algorithm
26  and returns the estimated beat locations.
27
[e230bb4]28  \example tempo/test-tempo.c
[0aa5208]29  \example examples/aubiotrack.c
[69b11d8]30
[d88ea06]31*/
32
[6f42c16]33#ifndef AUBIO_TEMPO_H
34#define AUBIO_TEMPO_H
[7524d0b]35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
[d88ea06]40/** tempo detection structure */
[7524d0b]41typedef struct _aubio_tempo_t aubio_tempo_t;
42
[7efeffd]43/** create tempo detection object
44
[fdd5315]45  \param method beat tracking method, unused for now (use "default")
[7efeffd]46  \param buf_size length of FFT
47  \param hop_size number of frames between two consecutive runs
48  \param samplerate sampling rate of the signal to analyze
49
50  \return newly created ::aubio_tempo_t if successful, `NULL` otherwise
51
52*/
[69f74f0]53aubio_tempo_t * new_aubio_tempo (const char_t * method,
[d207300]54    uint_t buf_size, uint_t hop_size, uint_t samplerate);
[7524d0b]55
[7efeffd]56/** execute tempo detection
57
58  \param o beat tracking object
59  \param input new samples
60  \param tempo output beats
61
62*/
[69f74f0]63void aubio_tempo_do (aubio_tempo_t *o, const fvec_t * input, fvec_t * tempo);
[7524d0b]64
[483b883]65/** get the time of the latest beat detected, in samples
66
67  \param o tempo detection object as returned by ::new_aubio_tempo
68
69*/
70uint_t aubio_tempo_get_last (aubio_tempo_t *o);
71
72/** get the time of the latest beat detected, in seconds
73
74  \param o tempo detection object as returned by ::new_aubio_tempo
75
76*/
77smpl_t aubio_tempo_get_last_s (aubio_tempo_t *o);
78
79/** get the time of the latest beat detected, in milliseconds
80
81  \param o tempo detection object as returned by ::new_aubio_tempo
82
83*/
84smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o);
85
[7efeffd]86/** set tempo detection silence threshold
87
88  \param o beat tracking object
[5899752]89  \param silence new silence threshold, in dB
[7efeffd]90
91  \return `0` if successful, non-zero otherwise
92
93*/
[0a257a6]94uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence);
[7524d0b]95
[deb1fd4]96/** get tempo detection silence threshold
97
98  \param o tempo detection object as returned by new_aubio_tempo()
99
100  \return current silence threshold
101
102*/
103smpl_t aubio_tempo_get_silence(aubio_tempo_t * o);
104
[7efeffd]105/** set tempo detection peak picking threshold
106
107  \param o beat tracking object
108  \param threshold new threshold
109
110  \return `0` if successful, non-zero otherwise
111
112*/
[0a257a6]113uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold);
[7524d0b]114
[deb1fd4]115/** get tempo peak picking threshold
116
117  \param o tempo detection object as returned by new_aubio_tempo()
118
119  \return current tempo detection threshold
120
121*/
122smpl_t aubio_tempo_get_threshold(aubio_tempo_t * o);
123
[42c3dc0]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*/
132smpl_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*/
142smpl_t aubio_tempo_get_period_s (aubio_tempo_t * bt);
143
[cb0415d]144/** get current tempo
145
[7efeffd]146  \param o beat tracking object
[cb0415d]147
[7efeffd]148  \return the currently observed tempo, or `0` if no consistent value is found
[cb0415d]149
150*/
[7efeffd]151smpl_t aubio_tempo_get_bpm(aubio_tempo_t * o);
[cb0415d]152
[e34b010]153/** get current tempo confidence
154
[7efeffd]155  \param o beat tracking object
[e34b010]156
[72af472]157  \return confidence with which the tempo has been observed, the higher the
158  more confidence, `0` if no consistent value is found.
[e34b010]159
160*/
[7efeffd]161smpl_t aubio_tempo_get_confidence(aubio_tempo_t * o);
162
[5f852c1]163/** set number of tatum per beat
[95748a6]164
165   \param o beat tracking object
166   \param signature number of tatum per beat (between 1 and 64)
167
168*/
169uint_t aubio_tempo_set_tatum_signature(aubio_tempo_t *o, uint_t signature);
170
[5f852c1]171/** check whether a tatum was detected in the current frame
[95748a6]172
173   \param o beat tracking object
174
175   \return 2 if a beat was detected, 1 if a tatum was detected, 0 otherwise
176
177*/
178uint_t aubio_tempo_was_tatum(aubio_tempo_t *o);
179
[5f852c1]180/** get position of last_tatum, in samples
[95748a6]181
182   \param o beat tracking object
183
184*/
185smpl_t aubio_tempo_get_last_tatum(aubio_tempo_t *o);
186
[7e80dc9]187/** get current delay
188
189  \param o beat tracking object
190
191  \return current delay, in samples
192
193 */
194uint_t aubio_tempo_get_delay(aubio_tempo_t * o);
195
196/** get current delay in seconds
197
198  \param o beat tracking object
199
200  \return current delay, in seconds
201
202 */
203smpl_t aubio_tempo_get_delay_s(aubio_tempo_t * o);
204
205/** get current delay in ms
206
207  \param o beat tracking object
208
209  \return current delay, in milliseconds
210
211 */
212smpl_t aubio_tempo_get_delay_ms(aubio_tempo_t * o);
213
214/** set current delay
215
216  \param o beat tracking object
217  \param delay delay to set tempo to, in samples
218
219  \return `0` if successful, non-zero otherwise
220
221 */
222uint_t aubio_tempo_set_delay(aubio_tempo_t * o, sint_t delay);
223
224/** set current delay in seconds
225
226  \param o beat tracking object
227  \param delay delay to set tempo to, in seconds
228
229  \return `0` if successful, non-zero otherwise
230
231 */
232uint_t aubio_tempo_set_delay_s(aubio_tempo_t * o, smpl_t delay);
233
234/** set current delay
235
236  \param o beat tracking object
237  \param delay delay to set tempo to, in samples
238
239  \return `0` if successful, non-zero otherwise
240
241 */
242uint_t aubio_tempo_set_delay_ms(aubio_tempo_t * o, smpl_t delay);
243
[7efeffd]244/** delete tempo detection object
[e34b010]245
[7efeffd]246  \param o beat tracking object
247
248*/
[7524d0b]249void del_aubio_tempo(aubio_tempo_t * o);
250
251#ifdef __cplusplus
252}
253#endif
254
[6f42c16]255#endif /* AUBIO_TEMPO_H */
Note: See TracBrowser for help on using the repository browser.