[9316173] | 1 | /* |
---|
[ac20c85] | 2 | Copyright (C) 2012-2013 Paul Brossier <piem@aubio.org> |
---|
[9316173] | 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 | |
---|
| 19 | */ |
---|
| 20 | |
---|
[6f42c16] | 21 | #ifndef AUBIO_SOURCE_H |
---|
| 22 | #define AUBIO_SOURCE_H |
---|
[9316173] | 23 | |
---|
| 24 | /** \file |
---|
| 25 | |
---|
[321d507] | 26 | Media source to read blocks of consecutive audio samples from file. |
---|
[8122e54a] | 27 | |
---|
[86cfdfa] | 28 | To write to file, use ::aubio_sink_t. |
---|
| 29 | |
---|
[321d507] | 30 | Depending on how aubio was compiled, the following sources will be available. |
---|
| 31 | |
---|
| 32 | When creating a new source using ::new_aubio_source, the new function of each |
---|
| 33 | of the compiled-in sources will be used, in the following order, until one of |
---|
| 34 | them gets successfully created. If all sources returned NULL, |
---|
| 35 | ::new_aubio_source will return NULL. |
---|
| 36 | |
---|
[8122e54a] | 37 | \b \p source_avcodec : libav |
---|
| 38 | |
---|
| 39 | aubio can be optionally compiled with [libav](http://libav.org), which can |
---|
| 40 | read from a very large number of audio and video formats, including over |
---|
| 41 | different network protocols such as HTTP. |
---|
| 42 | |
---|
| 43 | \b \p source_apple_audio : ExtAudioFileRef |
---|
[321d507] | 44 | |
---|
[8122e54a] | 45 | On Mac and iOS platforms, aubio should be compiled with CoreAudio [Extended |
---|
| 46 | Audio File Services] |
---|
[e5656036] | 47 | (https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/ExtendedAudioFileServicesReference/Reference/reference.html). |
---|
[8122e54a] | 48 | This provides access to most common audio file formats, including compressed |
---|
| 49 | ones. |
---|
| 50 | |
---|
| 51 | \b \p source_sndfile : libsndfile |
---|
| 52 | |
---|
| 53 | Also optional, aubio can be built against |
---|
| 54 | [libsndfile](http://www.mega-nerd.com/libsndfile/), which can read [most |
---|
| 55 | uncompressed formats](http://www.mega-nerd.com/libsndfile/#Features). |
---|
| 56 | |
---|
[4b43742] | 57 | \b \p source_wavread : native WAV reader |
---|
| 58 | |
---|
| 59 | A simple source to read from 16-bits PCM RIFF encoded WAV files. |
---|
| 60 | |
---|
[4e3723d] | 61 | \example io/test-source.c |
---|
[86cfdfa] | 62 | \example io/test-source_multi.c |
---|
[4e3723d] | 63 | |
---|
[9316173] | 64 | */ |
---|
| 65 | |
---|
[4e3723d] | 66 | #ifdef __cplusplus |
---|
| 67 | extern "C" { |
---|
| 68 | #endif |
---|
| 69 | |
---|
[ac20c85] | 70 | /** media source object */ |
---|
[9316173] | 71 | typedef struct _aubio_source_t aubio_source_t; |
---|
[de5d3f1] | 72 | |
---|
| 73 | /** |
---|
| 74 | |
---|
| 75 | create new ::aubio_source_t |
---|
| 76 | |
---|
| 77 | \param uri the file path or uri to read from |
---|
[ac20c85] | 78 | \param samplerate sampling rate to view the fie at |
---|
[6a03729] | 79 | \param hop_size the size of the blocks to read from |
---|
[de5d3f1] | 80 | |
---|
| 81 | Creates a new source object. If `0` is passed as `samplerate`, the sample |
---|
| 82 | rate of the original file is used. |
---|
| 83 | |
---|
[ac20c85] | 84 | The samplerate of newly created source can be obtained using |
---|
[de5d3f1] | 85 | ::aubio_source_get_samplerate. |
---|
| 86 | |
---|
| 87 | */ |
---|
[ae5d58a] | 88 | aubio_source_t * new_aubio_source(const char_t * uri, uint_t samplerate, uint_t hop_size); |
---|
[de5d3f1] | 89 | |
---|
| 90 | /** |
---|
| 91 | |
---|
[6a03729] | 92 | read monophonic vector of length hop_size from source object |
---|
[de5d3f1] | 93 | |
---|
| 94 | \param s source object, created with ::new_aubio_source |
---|
[ac20c85] | 95 | \param read_to ::fvec_t of data to read to |
---|
| 96 | \param read upon returns, equals to number of frames actually read |
---|
[de5d3f1] | 97 | |
---|
| 98 | Upon returns, `read` contains the number of frames actually read from the |
---|
[6a03729] | 99 | source. `hop_size` if enough frames could be read, less otherwise. |
---|
[de5d3f1] | 100 | |
---|
| 101 | */ |
---|
[ac20c85] | 102 | void aubio_source_do(aubio_source_t * s, fvec_t * read_to, uint_t * read); |
---|
[de5d3f1] | 103 | |
---|
| 104 | /** |
---|
| 105 | |
---|
[4865e4b] | 106 | read polyphonic vector of length hop_size from source object |
---|
| 107 | |
---|
| 108 | \param s source object, created with ::new_aubio_source |
---|
| 109 | \param read_to ::fmat_t of data to read to |
---|
[7816f2b] | 110 | \param[out] read upon returns, equals to number of frames actually read |
---|
[4865e4b] | 111 | |
---|
| 112 | Upon returns, `read` contains the number of frames actually read from the |
---|
| 113 | source. `hop_size` if enough frames could be read, less otherwise. |
---|
| 114 | |
---|
| 115 | */ |
---|
| 116 | void aubio_source_do_multi(aubio_source_t * s, fmat_t * read_to, uint_t * read); |
---|
| 117 | |
---|
| 118 | /** |
---|
| 119 | |
---|
[de5d3f1] | 120 | get samplerate of source object |
---|
| 121 | |
---|
| 122 | \param s source object, created with ::new_aubio_source |
---|
| 123 | \return samplerate, in Hz |
---|
| 124 | |
---|
| 125 | */ |
---|
[d00e223] | 126 | uint_t aubio_source_get_samplerate(aubio_source_t * s); |
---|
[de5d3f1] | 127 | |
---|
| 128 | /** |
---|
| 129 | |
---|
[4865e4b] | 130 | get channels of source object |
---|
| 131 | |
---|
| 132 | \param s source object, created with ::new_aubio_source |
---|
| 133 | \return channels |
---|
| 134 | |
---|
| 135 | */ |
---|
| 136 | uint_t aubio_source_get_channels (aubio_source_t * s); |
---|
| 137 | |
---|
| 138 | /** |
---|
| 139 | |
---|
[7982203] | 140 | seek source object |
---|
| 141 | |
---|
| 142 | \param s source object, created with ::new_aubio_source |
---|
| 143 | \param pos position to seek to, in frames |
---|
| 144 | |
---|
| 145 | \return 0 if sucessful, non-zero on failure |
---|
| 146 | |
---|
| 147 | */ |
---|
| 148 | uint_t aubio_source_seek (aubio_source_t * s, uint_t pos); |
---|
| 149 | |
---|
| 150 | /** |
---|
| 151 | |
---|
[857f8871] | 152 | get the duration of source object, in frames |
---|
| 153 | |
---|
| 154 | \param s source object, created with ::new_aubio_source |
---|
| 155 | \return number of frames in file |
---|
| 156 | |
---|
| 157 | */ |
---|
| 158 | uint_t aubio_source_get_duration (aubio_source_t * s); |
---|
| 159 | |
---|
| 160 | /** |
---|
| 161 | |
---|
[422452b] | 162 | close source object |
---|
| 163 | |
---|
| 164 | \param s source object, created with ::new_aubio_source |
---|
| 165 | |
---|
| 166 | \return 0 if sucessful, non-zero on failure |
---|
| 167 | |
---|
| 168 | */ |
---|
| 169 | uint_t aubio_source_close (aubio_source_t *s); |
---|
| 170 | |
---|
| 171 | /** |
---|
| 172 | |
---|
[ac20c85] | 173 | close source and cleanup memory |
---|
[de5d3f1] | 174 | |
---|
| 175 | \param s source object, created with ::new_aubio_source |
---|
| 176 | |
---|
| 177 | */ |
---|
[9316173] | 178 | void del_aubio_source(aubio_source_t * s); |
---|
| 179 | |
---|
| 180 | #ifdef __cplusplus |
---|
| 181 | } |
---|
| 182 | #endif |
---|
| 183 | |
---|
[6f42c16] | 184 | #endif /* AUBIO_SOURCE_H */ |
---|