#include #include #include #include #include static PyObject *vlc_create(PyObject *self, PyObject *args) { int iRc; iRc = VLC_Create(); return Py_BuildValue("i", iRc); } static PyObject *vlc_init(PyObject *self, PyObject *args) { int iVlc; char *pArgv[] = { "vlc", "--sout", NULL }; int iRc; if (!PyArg_ParseTuple(args, "is", &iVlc, &pArgv[2])) return NULL; iRc = VLC_Init(iVlc, 3, pArgv); return Py_BuildValue("i", iRc); } static PyObject *vlc_addTarget(PyObject *self, PyObject *args) { int iVlc; char *file; int iRc; if (!PyArg_ParseTuple(args, "is", &iVlc, &file)) return NULL; iRc = VLC_AddTarget(iVlc, file, 0, 0, PLAYLIST_APPEND, PLAYLIST_END); return Py_BuildValue("i", iRc); } static PyObject *vlc_play(PyObject *self, PyObject *args) { int iVlc; int iRc; if (!PyArg_ParseTuple(args, "i", &iVlc)) return NULL; iRc = VLC_Play(iVlc); return Py_BuildValue("i", iRc); } static PyObject *vlc_stop(PyObject *self, PyObject *args) { int iVlc; int iRc; if (!PyArg_ParseTuple(args, "i", &iVlc)) return NULL; iRc = VLC_CleanUp(iVlc); return Py_BuildValue("i", iRc); } static PyObject *vlc_pause(PyObject *self, PyObject *args) { int iVlc; int iRc; if (!PyArg_ParseTuple(args, "i", &iVlc)) return NULL; iRc = VLC_Pause(iVlc); return Py_BuildValue("i", iRc); } static PyMethodDef VlcMethods[] = { {"create", vlc_create, METH_VARARGS, _("Create a vlc thread.")}, {"init", vlc_init, METH_VARARGS, _("Initialize a vlc thread.")}, {"addTarget", vlc_addTarget, METH_VARARGS, _("Add a target in the playlist.")}, {"play", vlc_play, METH_VARARGS, _("Play")}, {"stop", vlc_stop, METH_VARARGS, _("Stop")}, {"pause", vlc_pause, METH_VARARGS, _("Pause")}, {NULL, NULL, 0, NULL} /* Sentinel */ }; void initvlc(void) { Py_InitModule("vlc", VlcMethods); }