search for: py_ogg_page_from_pag

Displaying 1 result from an estimated 1 matches for "py_ogg_page_from_pag".

Did you mean: py_ogg_page_from_page
2009 Feb 24
0
any help with pyogg and pyvorbis?
.../ static PyObject * py_ogg_stream_pageout(PyObject *self, PyObject *args) { ogg_page op; int res; if (!PyArg_ParseTuple(args, "")) return NULL; res = ogg_stream_pageout(PY_OGG_STREAM(self), &op); if (res == 0) { Py_INCREF(Py_None); return Py_None; } return py_ogg_page_from_page(&op); } And ogg_stream_pageout always returns 0, so, insufficent data has been accumulated to write a page. Can anyone help me and guess, where the fault may be. After all I've read this seems to be the right encoding procedure. So is it the python-wrapper? Is it the data I've been...