[5652a8c] | 1 | #include "aubio-types.h" |
---|
[d27634d] | 2 | |
---|
| 3 | typedef struct |
---|
| 4 | { |
---|
| 5 | PyObject_HEAD |
---|
| 6 | aubio_source_t * o; |
---|
| 7 | char_t* uri; |
---|
| 8 | uint_t samplerate; |
---|
[1164bcdf] | 9 | uint_t channels; |
---|
[d27634d] | 10 | uint_t hop_size; |
---|
[cfa46b9] | 11 | uint_t duration; |
---|
[1ee5e21] | 12 | PyObject *read_to; |
---|
| 13 | fvec_t c_read_to; |
---|
| 14 | PyObject *mread_to; |
---|
| 15 | fmat_t c_mread_to; |
---|
[d27634d] | 16 | } Py_source; |
---|
| 17 | |
---|
[a79ec76] | 18 | static char Py_source_doc[] = "" |
---|
| 19 | " __new__(path, samplerate = 0, hop_size = 512, channels = 1)\n" |
---|
| 20 | "\n" |
---|
| 21 | " Create a new source, opening the given path for reading.\n" |
---|
| 22 | "\n" |
---|
| 23 | " Examples\n" |
---|
| 24 | " --------\n" |
---|
| 25 | "\n" |
---|
| 26 | " Create a new source, using the original samplerate, with hop_size = 512:\n" |
---|
| 27 | "\n" |
---|
| 28 | " >>> source('/tmp/t.wav')\n" |
---|
| 29 | "\n" |
---|
| 30 | " Create a new source, resampling the original to 8000Hz:\n" |
---|
| 31 | "\n" |
---|
| 32 | " >>> source('/tmp/t.wav', samplerate = 8000)\n" |
---|
| 33 | "\n" |
---|
| 34 | " Create a new source, resampling it at 32000Hz, hop_size = 32:\n" |
---|
| 35 | "\n" |
---|
| 36 | " >>> source('/tmp/t.wav', samplerate = 32000, hop_size = 32)\n" |
---|
| 37 | "\n" |
---|
| 38 | " Create a new source, using its original samplerate:\n" |
---|
| 39 | "\n" |
---|
| 40 | " >>> source('/tmp/t.wav', samplerate = 0)\n" |
---|
| 41 | "\n" |
---|
| 42 | " __call__()\n" |
---|
| 43 | " vec, read = x() <==> vec, read = x.do()\n" |
---|
| 44 | "\n" |
---|
| 45 | " Read vector from source.\n" |
---|
| 46 | "\n" |
---|
| 47 | " See also\n" |
---|
| 48 | " --------\n" |
---|
| 49 | " aubio.source.do\n" |
---|
| 50 | "\n"; |
---|
| 51 | |
---|
| 52 | static char Py_source_get_samplerate_doc[] = "" |
---|
| 53 | "x.get_samplerate() -> source samplerate\n" |
---|
| 54 | "\n" |
---|
| 55 | "Get samplerate of source."; |
---|
| 56 | |
---|
| 57 | static char Py_source_get_channels_doc[] = "" |
---|
| 58 | "x.get_channels() -> number of channels\n" |
---|
| 59 | "\n" |
---|
| 60 | "Get number of channels in source."; |
---|
| 61 | |
---|
| 62 | static char Py_source_do_doc[] = "" |
---|
| 63 | "vec, read = x.do() <==> vec, read = x()\n" |
---|
| 64 | "\n" |
---|
| 65 | "Read monophonic vector from source."; |
---|
| 66 | |
---|
| 67 | static char Py_source_do_multi_doc[] = "" |
---|
| 68 | "mat, read = x.do_multi()\n" |
---|
| 69 | "\n" |
---|
| 70 | "Read polyphonic vector from source."; |
---|
| 71 | |
---|
| 72 | static char Py_source_close_doc[] = "" |
---|
| 73 | "x.close()\n" |
---|
| 74 | "\n" |
---|
| 75 | "Close this source now."; |
---|
[d27634d] | 76 | |
---|
[11b49d7] | 77 | static char Py_source_seek_doc[] = "" |
---|
| 78 | "x.seek(position)\n" |
---|
| 79 | "\n" |
---|
| 80 | "Seek to resampled frame position."; |
---|
| 81 | |
---|
[d27634d] | 82 | static PyObject * |
---|
| 83 | Py_source_new (PyTypeObject * pytype, PyObject * args, PyObject * kwds) |
---|
| 84 | { |
---|
| 85 | Py_source *self; |
---|
| 86 | char_t* uri = NULL; |
---|
| 87 | uint_t samplerate = 0; |
---|
| 88 | uint_t hop_size = 0; |
---|
[24931d5] | 89 | uint_t channels = 0; |
---|
| 90 | static char *kwlist[] = { "uri", "samplerate", "hop_size", "channels", NULL }; |
---|
[d27634d] | 91 | |
---|
[24931d5] | 92 | if (!PyArg_ParseTupleAndKeywords (args, kwds, "|sIII", kwlist, |
---|
| 93 | &uri, &samplerate, &hop_size, &channels)) { |
---|
[d27634d] | 94 | return NULL; |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | self = (Py_source *) pytype->tp_alloc (pytype, 0); |
---|
| 98 | |
---|
| 99 | if (self == NULL) { |
---|
| 100 | return NULL; |
---|
| 101 | } |
---|
| 102 | |
---|
| 103 | self->uri = "none"; |
---|
| 104 | if (uri != NULL) { |
---|
| 105 | self->uri = uri; |
---|
| 106 | } |
---|
| 107 | |
---|
[2f9af5d] | 108 | self->samplerate = 0; |
---|
[18e22f9] | 109 | if ((sint_t)samplerate > 0) { |
---|
[d27634d] | 110 | self->samplerate = samplerate; |
---|
[18e22f9] | 111 | } else if ((sint_t)samplerate < 0) { |
---|
| 112 | PyErr_SetString (PyExc_ValueError, |
---|
| 113 | "can not use negative value for samplerate"); |
---|
| 114 | return NULL; |
---|
[d27634d] | 115 | } |
---|
| 116 | |
---|
| 117 | self->hop_size = Py_default_vector_length / 2; |
---|
[18e22f9] | 118 | if ((sint_t)hop_size > 0) { |
---|
[d27634d] | 119 | self->hop_size = hop_size; |
---|
[18e22f9] | 120 | } else if ((sint_t)hop_size < 0) { |
---|
| 121 | PyErr_SetString (PyExc_ValueError, |
---|
| 122 | "can not use negative value for hop_size"); |
---|
| 123 | return NULL; |
---|
[d27634d] | 124 | } |
---|
| 125 | |
---|
[24931d5] | 126 | self->channels = 1; |
---|
| 127 | if ((sint_t)channels >= 0) { |
---|
| 128 | self->channels = channels; |
---|
| 129 | } else if ((sint_t)channels < 0) { |
---|
| 130 | PyErr_SetString (PyExc_ValueError, |
---|
| 131 | "can not use negative value for channels"); |
---|
| 132 | return NULL; |
---|
| 133 | } |
---|
| 134 | |
---|
[d27634d] | 135 | return (PyObject *) self; |
---|
| 136 | } |
---|
| 137 | |
---|
| 138 | static int |
---|
| 139 | Py_source_init (Py_source * self, PyObject * args, PyObject * kwds) |
---|
| 140 | { |
---|
| 141 | self->o = new_aubio_source ( self->uri, self->samplerate, self->hop_size ); |
---|
| 142 | if (self->o == NULL) { |
---|
[bd8a92d] | 143 | // PyErr_Format(PyExc_RuntimeError, ...) was set above by new_ which called |
---|
| 144 | // AUBIO_ERR when failing |
---|
[d27634d] | 145 | return -1; |
---|
| 146 | } |
---|
| 147 | self->samplerate = aubio_source_get_samplerate ( self->o ); |
---|
[24931d5] | 148 | if (self->channels == 0) { |
---|
| 149 | self->channels = aubio_source_get_channels ( self->o ); |
---|
| 150 | } |
---|
[cfa46b9] | 151 | self->duration = aubio_source_get_duration ( self->o ); |
---|
[d27634d] | 152 | |
---|
[1ee5e21] | 153 | self->read_to = new_py_fvec(self->hop_size); |
---|
| 154 | self->mread_to = new_py_fmat(self->channels, self->hop_size); |
---|
[a28dab6] | 155 | |
---|
[d27634d] | 156 | return 0; |
---|
| 157 | } |
---|
| 158 | |
---|
[a28dab6] | 159 | static void |
---|
| 160 | Py_source_del (Py_source *self, PyObject *unused) |
---|
| 161 | { |
---|
[cd2791f] | 162 | if (self->o) { |
---|
| 163 | del_aubio_source(self->o); |
---|
[c18bbef] | 164 | free(self->c_mread_to.data); |
---|
[cd2791f] | 165 | } |
---|
[1ee5e21] | 166 | Py_XDECREF(self->read_to); |
---|
| 167 | Py_XDECREF(self->mread_to); |
---|
[5c1200a] | 168 | Py_TYPE(self)->tp_free((PyObject *) self); |
---|
[a28dab6] | 169 | } |
---|
| 170 | |
---|
[d27634d] | 171 | |
---|
| 172 | /* function Py_source_do */ |
---|
[1164bcdf] | 173 | static PyObject * |
---|
[d27634d] | 174 | Py_source_do(Py_source * self, PyObject * args) |
---|
| 175 | { |
---|
[a138975] | 176 | PyObject *outputs; |
---|
[d27634d] | 177 | uint_t read; |
---|
| 178 | read = 0; |
---|
| 179 | |
---|
[1ee5e21] | 180 | Py_INCREF(self->read_to); |
---|
| 181 | if (!PyAubio_ArrayToCFvec(self->read_to, &(self->c_read_to))) { |
---|
| 182 | return NULL; |
---|
| 183 | } |
---|
[d27634d] | 184 | /* compute _do function */ |
---|
[1ee5e21] | 185 | aubio_source_do (self->o, &(self->c_read_to), &read); |
---|
[d27634d] | 186 | |
---|
[a138975] | 187 | outputs = PyTuple_New(2); |
---|
[1ee5e21] | 188 | PyTuple_SetItem( outputs, 0, self->read_to ); |
---|
[26eb6d0] | 189 | PyTuple_SetItem( outputs, 1, (PyObject *)PyLong_FromLong(read)); |
---|
[d27634d] | 190 | return outputs; |
---|
| 191 | } |
---|
| 192 | |
---|
[1164bcdf] | 193 | /* function Py_source_do_multi */ |
---|
| 194 | static PyObject * |
---|
| 195 | Py_source_do_multi(Py_source * self, PyObject * args) |
---|
| 196 | { |
---|
[a138975] | 197 | PyObject *outputs; |
---|
[1164bcdf] | 198 | uint_t read; |
---|
| 199 | read = 0; |
---|
| 200 | |
---|
[1ee5e21] | 201 | Py_INCREF(self->mread_to); |
---|
| 202 | if (!PyAubio_ArrayToCFmat(self->mread_to, &(self->c_mread_to))) { |
---|
| 203 | return NULL; |
---|
| 204 | } |
---|
[1164bcdf] | 205 | /* compute _do function */ |
---|
[1ee5e21] | 206 | aubio_source_do_multi (self->o, &(self->c_mread_to), &read); |
---|
[1164bcdf] | 207 | |
---|
[a138975] | 208 | outputs = PyTuple_New(2); |
---|
[1ee5e21] | 209 | PyTuple_SetItem( outputs, 0, self->mread_to); |
---|
[26eb6d0] | 210 | PyTuple_SetItem( outputs, 1, (PyObject *)PyLong_FromLong(read)); |
---|
[1164bcdf] | 211 | return outputs; |
---|
| 212 | } |
---|
| 213 | |
---|
[5652a8c] | 214 | static PyMemberDef Py_source_members[] = { |
---|
[a79ec76] | 215 | {"uri", T_STRING, offsetof (Py_source, uri), READONLY, |
---|
| 216 | "path at which the source was created"}, |
---|
| 217 | {"samplerate", T_INT, offsetof (Py_source, samplerate), READONLY, |
---|
| 218 | "samplerate at which the source is viewed"}, |
---|
| 219 | {"channels", T_INT, offsetof (Py_source, channels), READONLY, |
---|
| 220 | "number of channels found in the source"}, |
---|
| 221 | {"hop_size", T_INT, offsetof (Py_source, hop_size), READONLY, |
---|
| 222 | "number of consecutive frames that will be read at each do or do_multi call"}, |
---|
[cfa46b9] | 223 | {"duration", T_INT, offsetof (Py_source, duration), READONLY, |
---|
| 224 | "total number of frames in the source (estimated)"}, |
---|
[5652a8c] | 225 | { NULL } // sentinel |
---|
| 226 | }; |
---|
[d27634d] | 227 | |
---|
| 228 | static PyObject * |
---|
| 229 | Pyaubio_source_get_samplerate (Py_source *self, PyObject *unused) |
---|
| 230 | { |
---|
| 231 | uint_t tmp = aubio_source_get_samplerate (self->o); |
---|
[5c1200a] | 232 | return (PyObject *)PyLong_FromLong (tmp); |
---|
[d27634d] | 233 | } |
---|
| 234 | |
---|
| 235 | static PyObject * |
---|
| 236 | Pyaubio_source_get_channels (Py_source *self, PyObject *unused) |
---|
| 237 | { |
---|
| 238 | uint_t tmp = aubio_source_get_channels (self->o); |
---|
[5c1200a] | 239 | return (PyObject *)PyLong_FromLong (tmp); |
---|
[d27634d] | 240 | } |
---|
| 241 | |
---|
[7b56229] | 242 | static PyObject * |
---|
| 243 | Pyaubio_source_close (Py_source *self, PyObject *unused) |
---|
| 244 | { |
---|
[3cc3fd8] | 245 | aubio_source_close (self->o); |
---|
[7b56229] | 246 | Py_RETURN_NONE; |
---|
| 247 | } |
---|
| 248 | |
---|
[11b49d7] | 249 | static PyObject * |
---|
| 250 | Pyaubio_source_seek (Py_source *self, PyObject *args) |
---|
| 251 | { |
---|
| 252 | uint_t err = 0; |
---|
| 253 | |
---|
[a2ab20a] | 254 | int position; |
---|
[11b49d7] | 255 | if (!PyArg_ParseTuple (args, "I", &position)) { |
---|
| 256 | return NULL; |
---|
| 257 | } |
---|
| 258 | |
---|
[a2ab20a] | 259 | if (position < 0) { |
---|
| 260 | PyErr_Format(PyExc_ValueError, |
---|
| 261 | "error when seeking in source: can not seek to negative value %d", |
---|
| 262 | position); |
---|
| 263 | return NULL; |
---|
| 264 | } |
---|
| 265 | |
---|
[11b49d7] | 266 | err = aubio_source_seek(self->o, position); |
---|
| 267 | if (err != 0) { |
---|
| 268 | PyErr_SetString (PyExc_ValueError, |
---|
| 269 | "error when seeking in source"); |
---|
| 270 | return NULL; |
---|
| 271 | } |
---|
| 272 | Py_RETURN_NONE; |
---|
| 273 | } |
---|
| 274 | |
---|
[d27634d] | 275 | static PyMethodDef Py_source_methods[] = { |
---|
| 276 | {"get_samplerate", (PyCFunction) Pyaubio_source_get_samplerate, |
---|
[a79ec76] | 277 | METH_NOARGS, Py_source_get_samplerate_doc}, |
---|
[d27634d] | 278 | {"get_channels", (PyCFunction) Pyaubio_source_get_channels, |
---|
[a79ec76] | 279 | METH_NOARGS, Py_source_get_channels_doc}, |
---|
| 280 | {"do", (PyCFunction) Py_source_do, |
---|
| 281 | METH_NOARGS, Py_source_do_doc}, |
---|
[1164bcdf] | 282 | {"do_multi", (PyCFunction) Py_source_do_multi, |
---|
[a79ec76] | 283 | METH_NOARGS, Py_source_do_multi_doc}, |
---|
[7b56229] | 284 | {"close", (PyCFunction) Pyaubio_source_close, |
---|
[a79ec76] | 285 | METH_NOARGS, Py_source_close_doc}, |
---|
[11b49d7] | 286 | {"seek", (PyCFunction) Pyaubio_source_seek, |
---|
| 287 | METH_VARARGS, Py_source_seek_doc}, |
---|
[d27634d] | 288 | {NULL} /* sentinel */ |
---|
| 289 | }; |
---|
| 290 | |
---|
[5652a8c] | 291 | PyTypeObject Py_sourceType = { |
---|
| 292 | PyVarObject_HEAD_INIT (NULL, 0) |
---|
| 293 | "aubio.source", |
---|
| 294 | sizeof (Py_source), |
---|
| 295 | 0, |
---|
| 296 | (destructor) Py_source_del, |
---|
| 297 | 0, |
---|
| 298 | 0, |
---|
| 299 | 0, |
---|
| 300 | 0, |
---|
| 301 | 0, |
---|
| 302 | 0, |
---|
| 303 | 0, |
---|
| 304 | 0, |
---|
| 305 | 0, |
---|
| 306 | (ternaryfunc)Py_source_do, |
---|
| 307 | 0, |
---|
| 308 | 0, |
---|
| 309 | 0, |
---|
| 310 | 0, |
---|
| 311 | Py_TPFLAGS_DEFAULT, |
---|
| 312 | Py_source_doc, |
---|
| 313 | 0, |
---|
| 314 | 0, |
---|
| 315 | 0, |
---|
| 316 | 0, |
---|
| 317 | 0, |
---|
| 318 | 0, |
---|
| 319 | Py_source_methods, |
---|
| 320 | Py_source_members, |
---|
| 321 | 0, |
---|
| 322 | 0, |
---|
| 323 | 0, |
---|
| 324 | 0, |
---|
| 325 | 0, |
---|
| 326 | 0, |
---|
| 327 | (initproc) Py_source_init, |
---|
| 328 | 0, |
---|
| 329 | Py_source_new, |
---|
[0e70ef9] | 330 | 0, |
---|
| 331 | 0, |
---|
| 332 | 0, |
---|
| 333 | 0, |
---|
| 334 | 0, |
---|
| 335 | 0, |
---|
| 336 | 0, |
---|
| 337 | 0, |
---|
| 338 | 0, |
---|
[5652a8c] | 339 | }; |
---|