Re: [PyQt] Embedding VLC

2010-03-08 Thread Mailing List SVR
You can also try the vlc python bindings: http://liris.cnrs.fr/advene/download/python-ctypes/ they work on windows and linux, be warned vlc and the vlc python bindings are GPL so I think you have to release any derivated code as gpl too, Nicola In data lunedì 1 marzo 2010 04:13:03, jaybstory

Re: [PyQt] Embedding VLC

2010-03-08 Thread Chris Laux
On Monday 01 March 2010, Chris Laux wrote: I made a prototype PyQt app that plays movies using MPlayer which displays the video in a plain QWidget. It turns out to be very simple - just pass -wid to mplayer and then the widget's .winId(). I'm using mpylayer (

Re: [PyQt] Embedding VLC

2010-03-06 Thread Matt Carlson
Chris Laux wrote: I made a prototype PyQt app that plays movies using MPlayer which displays the video in a plain QWidget. It turns out to be very simple - just pass -wid to mplayer and then the widget's .winId(). I'm using mpylayer ( http://code.google.com/p/mpylayer/ ) to control mplayer

Re: [PyQt] Embedding VLC

2010-03-06 Thread David Boddie
On Sat Mar 6 09:25:33 GMT 2010, Matt Carlson wrote: Chris Laux wrote: I made a prototype PyQt app that plays movies using MPlayer which displays the video in a plain QWidget. It turns out to be very simple - just pass -wid to mplayer and then the widget's .winId(). I'm using mpylayer (

Re: [PyQt] Embedding VLC

2010-02-28 Thread Christoph Burgmer
Am Samstag, 27. Februar 2010 schrieb jaybstory: I wanted to know if it is possible to embed VLC into a GUI (or to use QProcess to somehow open the external application inside a GUI), if so, how would I go about accomplishing this? Do you know about phonon-vlc?

Re: [PyQt] Embedding VLC

2010-02-28 Thread jaybstory
I've heard about the phonon-vlc-backend which appears to not be available yet. Is this what you are talking about? Bugzilla from chri...@gmx.de wrote: Am Samstag, 27. Februar 2010 schrieb jaybstory: I wanted to know if it is possible to embed VLC into a GUI (or to use QProcess to somehow

[PyQt] Embedding VLC

2010-02-26 Thread jaybstory
Hello, I wanted to know if it is possible to embed VLC into a GUI (or to use QProcess to somehow open the external application inside a GUI), if so, how would I go about accomplishing this? Right now, I am using QProcess to open external applications which open in a separate window. I want