tags:

views:

20

answers:

0

First, some background information: I'm currently developing a program for the Nokia N900 using Python and PyQt4. The program accesses the phone's camera. I have figured out how to use GStreamer in a Qt widget to capture the video. It turns out that I need access to a somewhat obscure gstreamer interface which I don't believe I can access from python, so I've resorted to writing the widget in C++. The widget works fine from within C++ programs. Now, to integrate with python...

I looked around a bit for what to use for creating the Python bindings, and found SIP, conveniently developed by Riverbank Computing, the same people who developed PyQt4. Following the directions found here, I attempted to create the bindings, and...it failed with this error: sip: GstBus is undefined. I'm guessing that this is an issue of getting sip to recognize the GStreamer libraries or something to that extent, but I don't really know where to begin. If someone could point me in the right direction, that would be great. Thanks!