I have an mjpeg stream from a web-cam and would like to display it in an application written in python using pygtk. The stream is a string of bytes from the driver. What widget would be best for displaying this and would I need to do some intermediate conversion before putting it in the widget? Should I write my own widget to do this?

link|improve this question
feedback

2 Answers

GTK+ does not contain a native widget capable of decoding and rendering video.

You should probably look into GStreamer, which is a streaming-media toolkit built on the same GObject framework as GTK+.

It has the GstXvImageSink that is capable of rendering video using X11, and you should be able to configure it to render on top of a GTK+ widget.

link|improve this answer
The autovideosink might also be worth a look. – XTL Feb 15 at 10:25
feedback

This example helped me getting started with gstreamer, it shows how one grabbs the webcam stream and displays it in an widget.

http://pygstdocs.berlios.de/pygst-tutorial/webcam-viewer.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.