[b78805a] | 1 | /* |
---|
[e6a78ea] | 2 | Copyright (C) 2003-2009 Matthew Davies and Paul Brossier <piem@aubio.org> |
---|
[b78805a] | 3 | |
---|
[e6a78ea] | 4 | This file is part of aubio. |
---|
| 5 | |
---|
| 6 | aubio is free software: you can redistribute it and/or modify |
---|
[ebfbd15] | 7 | it under the terms of the GNU General Public License as published by |
---|
[e6a78ea] | 8 | the Free Software Foundation, either version 3 of the License, or |
---|
[ebfbd15] | 9 | (at your option) any later version. |
---|
[b78805a] | 10 | |
---|
[e6a78ea] | 11 | aubio is distributed in the hope that it will be useful, |
---|
[ebfbd15] | 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. |
---|
[b78805a] | 15 | |
---|
[ebfbd15] | 16 | You should have received a copy of the GNU General Public License |
---|
[e6a78ea] | 17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
| 18 | |
---|
[b78805a] | 19 | */ |
---|
| 20 | |
---|
[ebfbd15] | 21 | /** \file |
---|
| 22 | |
---|
| 23 | Beat tracking using a context dependant model |
---|
| 24 | |
---|
[24d4433] | 25 | This file implements the causal beat tracking algorithm designed by Matthew |
---|
[ebfbd15] | 26 | Davies and described in the following articles: |
---|
| 27 | |
---|
| 28 | Matthew E. P. Davies and Mark D. Plumbley. Causal tempo tracking of audio. |
---|
| 29 | In Proceedings of the International Symposium on Music Information Retrieval |
---|
| 30 | (ISMIR), pages 164169, Barcelona, Spain, 2004. |
---|
| 31 | |
---|
| 32 | Matthew E. P. Davies, Paul Brossier, and Mark D. Plumbley. Beat tracking |
---|
| 33 | towards automatic musical accompaniment. In Proceedings of the Audio |
---|
| 34 | Engeeniring Society 118th Convention, Barcelona, Spain, May 2005. |
---|
| 35 | |
---|
| 36 | */ |
---|
[b78805a] | 37 | #ifndef BEATTRACKING_H |
---|
| 38 | #define BEATTRACKING_H |
---|
| 39 | |
---|
| 40 | #ifdef __cplusplus |
---|
| 41 | extern "C" { |
---|
| 42 | #endif |
---|
| 43 | |
---|
[ebfbd15] | 44 | /** beat tracking object */ |
---|
[b78805a] | 45 | typedef struct _aubio_beattracking_t aubio_beattracking_t; |
---|
[ebfbd15] | 46 | |
---|
| 47 | /** create beat tracking object |
---|
| 48 | |
---|
[3ac7cb0] | 49 | \param hop_size number of onset detection samples [512] |
---|
[ebfbd15] | 50 | |
---|
| 51 | */ |
---|
[d207300] | 52 | aubio_beattracking_t * new_aubio_beattracking(uint_t hop_size); |
---|
[3ac7cb0] | 53 | |
---|
[4b1e7e7] | 54 | /** track the beat |
---|
[ebfbd15] | 55 | |
---|
| 56 | \param bt beat tracking object |
---|
| 57 | \param dfframes current input detection function frame, smoothed by |
---|
| 58 | adaptive median threshold. |
---|
| 59 | \param out stored detected beat locations |
---|
| 60 | |
---|
| 61 | */ |
---|
[3ac7cb0] | 62 | void aubio_beattracking_do (aubio_beattracking_t * bt, fvec_t * dfframes, |
---|
| 63 | fvec_t * out); |
---|
| 64 | |
---|
[416c0b5] | 65 | /** get current tempo in bpm |
---|
| 66 | |
---|
| 67 | \param bt beat tracking object |
---|
| 68 | |
---|
| 69 | Returns the currently observed tempo, in beats per minutes, or 0 if no |
---|
| 70 | consistent value is found. |
---|
| 71 | |
---|
| 72 | */ |
---|
| 73 | smpl_t aubio_beattracking_get_bpm(aubio_beattracking_t * bt); |
---|
[3ac7cb0] | 74 | |
---|
[e34b010] | 75 | /** get current tempo confidence |
---|
| 76 | |
---|
| 77 | \param bt beat tracking object |
---|
| 78 | |
---|
| 79 | Returns the confidence with which the tempo has been observed, 0 if no |
---|
| 80 | consistent value is found. |
---|
| 81 | |
---|
| 82 | */ |
---|
| 83 | smpl_t aubio_beattracking_get_confidence(aubio_beattracking_t * bt); |
---|
[3ac7cb0] | 84 | |
---|
[ebfbd15] | 85 | /** delete beat tracking object |
---|
| 86 | |
---|
| 87 | \param p beat tracking object |
---|
| 88 | |
---|
| 89 | */ |
---|
[b78805a] | 90 | void del_aubio_beattracking(aubio_beattracking_t * p); |
---|
| 91 | |
---|
| 92 | #ifdef __cplusplus |
---|
| 93 | } |
---|
| 94 | #endif |
---|
| 95 | |
---|
| 96 | #endif /* BEATTRACKING_H */ |
---|