[96fb8ad] | 1 | /* |
---|
[f549b98d] | 2 | Copyright (C) 2003-2015 Paul Brossier <piem@aubio.org> |
---|
[a6db140] | 3 | |
---|
| 4 | This file is part of aubio. |
---|
| 5 | |
---|
| 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. |
---|
| 10 | |
---|
| 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/>. |
---|
| 18 | |
---|
[96fb8ad] | 19 | */ |
---|
| 20 | |
---|
[f549b98d] | 21 | /** \mainpage |
---|
| 22 | |
---|
[4ef9a9b] | 23 | \section introduction Introduction |
---|
[f549b98d] | 24 | |
---|
[4ef9a9b] | 25 | aubio is a library to extract annotations from audio signals: it provides a |
---|
| 26 | set of functions that take an input audio signal, and output pitch estimates, |
---|
| 27 | attack times (onset), beat location estimates, and other annotation tasks. |
---|
[f549b98d] | 28 | |
---|
| 29 | \section basics Basics |
---|
| 30 | |
---|
[4ef9a9b] | 31 | All object structures in aubio share the same function prefixes and suffixes: |
---|
[f549b98d] | 32 | |
---|
[4ef9a9b] | 33 | - \p new_aubio_foo creates the object \p foo |
---|
| 34 | - \p aubio_foo_do executes the object \p foo |
---|
| 35 | - \p del_aubio_foo destroys the object \p foo |
---|
| 36 | |
---|
| 37 | All memory allocation and deallocation take place in the \p new_ and \p del_ |
---|
| 38 | functions. Optionally, more than one \p _do methods are available. |
---|
| 39 | Additional parameters can be adjusted and observed using: |
---|
[f549b98d] | 40 | |
---|
[4ef9a9b] | 41 | - \p aubio_foo_get_param, getter function, gets the value of a parameter |
---|
| 42 | - \p aubio_foo_set_param, setter function, changes the value of a parameter |
---|
| 43 | |
---|
| 44 | Unless specified in its documentation, no memory operations take place in the |
---|
| 45 | getter functions. However, memory resizing can take place in setter |
---|
| 46 | functions. |
---|
| 47 | |
---|
| 48 | \subsection vectors Vectors |
---|
| 49 | |
---|
| 50 | Two basic structures are being used in aubio: ::fvec_t and ::cvec_t. The |
---|
[02a01dd] | 51 | ::fvec_t structures are used to store vectors of floating pointer number. |
---|
| 52 | ::cvec_t are used to store complex number, as two vectors of norm and phase |
---|
| 53 | elements. |
---|
| 54 | |
---|
[4ef9a9b] | 55 | Additionally, the ::lvec_t structure can be used to store floating point |
---|
| 56 | numbers in double precision. They are mostly used to store filter |
---|
| 57 | coefficients, to avoid instability. |
---|
[02a01dd] | 58 | |
---|
[4ef9a9b] | 59 | \subsection objects Available objects |
---|
| 60 | |
---|
| 61 | Here is a list of some of the most common objects for aubio: |
---|
| 62 | |
---|
| 63 | \code |
---|
| 64 | |
---|
| 65 | // fast Fourier transform (FFT) |
---|
[02a01dd] | 66 | aubio_fft_t *fft = new_aubio_fft (winsize); |
---|
[4ef9a9b] | 67 | // phase vocoder |
---|
[02a01dd] | 68 | aubio_pvoc_t *pv = new_aubio_pvoc (winsize, stepsize); |
---|
| 69 | // onset detection |
---|
| 70 | aubio_onset_t *onset = new_aubio_onset (method, winsize, stepsize, samplerate); |
---|
| 71 | // pitch detection |
---|
| 72 | aubio_pitch_t *pitch = new_aubio_pitch (method, winsize, stepsize, samplerate); |
---|
[4ef9a9b] | 73 | // beat tracking |
---|
[02a01dd] | 74 | aubio_tempo_t *tempo = new_aubio_tempo (method, winsize, stepsize, samplerate); |
---|
[4ef9a9b] | 75 | |
---|
| 76 | \endcode |
---|
| 77 | |
---|
| 78 | See the <a href="globals_type.html">list of typedefs</a> for a complete list. |
---|
| 79 | |
---|
| 80 | \subsection example Example |
---|
| 81 | |
---|
| 82 | Here is a simple example that creates an A-Weighting filter and applies it to a |
---|
| 83 | vector. |
---|
[02a01dd] | 84 | |
---|
[4ef9a9b] | 85 | \code |
---|
| 86 | |
---|
[02a01dd] | 87 | // set window size, and sampling rate |
---|
| 88 | uint_t winsize = 1024, sr = 44100; |
---|
[4ef9a9b] | 89 | // create a vector |
---|
[02a01dd] | 90 | fvec_t *this_buffer = new_fvec (winsize); |
---|
[4ef9a9b] | 91 | // create the a-weighting filter |
---|
[02a01dd] | 92 | aubio_filter_t *this_filter = new_aubio_filter_a_weighting (sr); |
---|
| 93 | |
---|
[4ef9a9b] | 94 | while (running) { |
---|
[998d4d6] | 95 | // here some code to put some data in this_buffer |
---|
| 96 | // ... |
---|
| 97 | |
---|
[4ef9a9b] | 98 | // apply the filter, in place |
---|
| 99 | aubio_filter_do (this_filter, this_buffer); |
---|
[998d4d6] | 100 | |
---|
[02a01dd] | 101 | // here some code to get some data from this_buffer |
---|
[998d4d6] | 102 | // ... |
---|
[4ef9a9b] | 103 | } |
---|
[02a01dd] | 104 | |
---|
[4ef9a9b] | 105 | // and free the structures |
---|
| 106 | del_aubio_filter (this_filter); |
---|
| 107 | del_fvec (this_buffer); |
---|
| 108 | |
---|
| 109 | \endcode |
---|
| 110 | |
---|
| 111 | Several examples of C programs are available in the \p examples/ and \p tests/src |
---|
[784de2f] | 112 | directories of the source tree. See more examples: |
---|
| 113 | @ref spectral/test-fft.c |
---|
| 114 | @ref spectral/test-phasevoc.c |
---|
| 115 | @ref onset/test-onset.c |
---|
| 116 | @ref pitch/test-pitch.c |
---|
| 117 | @ref tempo/test-tempo.c |
---|
| 118 | @ref test-fvec.c |
---|
| 119 | @ref test-cvec.c |
---|
[4ef9a9b] | 120 | |
---|
| 121 | \subsection unstable_api Unstable API |
---|
| 122 | |
---|
| 123 | Several more functions are available and used within aubio, but not |
---|
| 124 | documented here, either because they are not considered useful to the user, |
---|
| 125 | or because they may need to be changed in the future. However, they can still |
---|
| 126 | be used by defining AUBIO_UNSTABLE to 1 before including the aubio header: |
---|
| 127 | |
---|
| 128 | \code |
---|
| 129 | #define AUBIO_UNSTABLE 1 |
---|
| 130 | #include <aubio/aubio.h> |
---|
| 131 | \endcode |
---|
| 132 | |
---|
| 133 | Future versions of aubio could break API compatibility with these functions |
---|
| 134 | without warning. If you choose to use functions in AUBIO_UNSTABLE, you are on |
---|
| 135 | your own. |
---|
| 136 | |
---|
| 137 | \section download Download |
---|
[02a01dd] | 138 | |
---|
[4ef9a9b] | 139 | Latest versions, further documentation, examples, wiki, and mailing lists can |
---|
| 140 | be found at http://aubio.org . |
---|
[02a01dd] | 141 | |
---|
[96fb8ad] | 142 | */ |
---|
| 143 | |
---|
| 144 | #ifndef AUBIO_H |
---|
| 145 | #define AUBIO_H |
---|
| 146 | |
---|
[4ef9a9b] | 147 | /** @file aubio.h Global aubio include file. |
---|
| 148 | |
---|
[8c4560e] | 149 | You will want to include this file as: |
---|
[02a01dd] | 150 | |
---|
[4ef9a9b] | 151 | @code |
---|
| 152 | #include <aubio/aubio.h> |
---|
| 153 | @endcode |
---|
[02a01dd] | 154 | |
---|
[8c4560e] | 155 | To access headers with unstable prototypes, use: |
---|
| 156 | |
---|
| 157 | @code |
---|
| 158 | #define AUBIO_UNSTABLE 1 |
---|
| 159 | #include <aubio/aubio.h> |
---|
| 160 | @endcode |
---|
| 161 | |
---|
[96fb8ad] | 162 | */ |
---|
| 163 | |
---|
| 164 | #ifdef __cplusplus |
---|
[bf9d8a6] | 165 | extern "C" |
---|
| 166 | { |
---|
[96fb8ad] | 167 | #endif |
---|
| 168 | |
---|
| 169 | /* in this order */ |
---|
| 170 | #include "types.h" |
---|
[6c7d49b] | 171 | #include "fvec.h" |
---|
| 172 | #include "cvec.h" |
---|
[658cb41] | 173 | #include "lvec.h" |
---|
[02a01dd] | 174 | #include "fmat.h" |
---|
[83963b3] | 175 | #include "musicutils.h" |
---|
[2fcb973] | 176 | #include "vecutils.h" |
---|
[0af05d3] | 177 | #include "temporal/resampler.h" |
---|
[32d6958] | 178 | #include "temporal/filter.h" |
---|
[b01bd4a] | 179 | #include "temporal/biquad.h" |
---|
[a253fd4] | 180 | #include "temporal/a_weighting.h" |
---|
| 181 | #include "temporal/c_weighting.h" |
---|
[fc6c831] | 182 | #include "spectral/fft.h" |
---|
| 183 | #include "spectral/phasevoc.h" |
---|
[c03e777] | 184 | #include "spectral/filterbank.h" |
---|
| 185 | #include "spectral/filterbank_mel.h" |
---|
[83963b3] | 186 | #include "spectral/mfcc.h" |
---|
[31907fd] | 187 | #include "spectral/specdesc.h" |
---|
[2fcb973] | 188 | #include "spectral/tss.h" |
---|
[ca1abdd] | 189 | #include "pitch/pitch.h" |
---|
[83963b3] | 190 | #include "onset/onset.h" |
---|
| 191 | #include "tempo/tempo.h" |
---|
[4da806c] | 192 | #include "notes/notes.h" |
---|
[a40eea8] | 193 | #include "io/source.h" |
---|
[afbd7e7] | 194 | #include "io/sink.h" |
---|
[04c8346] | 195 | #include "synth/sampler.h" |
---|
[dd15573] | 196 | #include "synth/wavetable.h" |
---|
[509e8f9] | 197 | #include "utils/parameter.h" |
---|
[c8228c7] | 198 | #include "utils/log.h" |
---|
[83963b3] | 199 | |
---|
| 200 | #if AUBIO_UNSTABLE |
---|
| 201 | #include "mathutils.h" |
---|
[2fcb973] | 202 | #include "io/source_sndfile.h" |
---|
| 203 | #include "io/source_apple_audio.h" |
---|
[1b0755d] | 204 | #include "io/source_avcodec.h" |
---|
[5158c22] | 205 | #include "io/source_wavread.h" |
---|
[2fcb973] | 206 | #include "io/sink_sndfile.h" |
---|
| 207 | #include "io/sink_apple_audio.h" |
---|
[52ca8a3] | 208 | #include "io/sink_wavwrite.h" |
---|
[df5eab4] | 209 | #include "io/audio_unit.h" |
---|
[2fcb973] | 210 | #include "onset/peakpicker.h" |
---|
[2d8cffa] | 211 | #include "pitch/pitchmcomb.h" |
---|
| 212 | #include "pitch/pitchyin.h" |
---|
| 213 | #include "pitch/pitchyinfft.h" |
---|
| 214 | #include "pitch/pitchschmitt.h" |
---|
| 215 | #include "pitch/pitchfcomb.h" |
---|
[258d441] | 216 | #include "pitch/pitchspecacf.h" |
---|
[bcf38fe] | 217 | #include "tempo/beattracking.h" |
---|
[2fcb973] | 218 | #include "utils/scale.h" |
---|
| 219 | #include "utils/hist.h" |
---|
[83963b3] | 220 | #endif |
---|
[96fb8ad] | 221 | |
---|
| 222 | #ifdef __cplusplus |
---|
| 223 | } /* extern "C" */ |
---|
| 224 | #endif |
---|
| 225 | |
---|
| 226 | #endif |
---|