[pygtk] Embed VLC to PyGTK

2011-12-25 Thread Andrey Popov
Hi all! I'm trying to embed VLC in PyGTK application. At the moment I have a problem - the video covers the entire window, rather than displayed in a small window or in the middle of the window. In the best case with the ability to scale to full screen. Anyone encountered this problem? Help solve

Re: [pygtk] Fullscreen on second monitor

2011-12-25 Thread craf
Hi Thomas. The problem may be related to the distribution of ubuntu and the type of video card installed. I have a Ubuntu 9.10 and ATI video card, and your code recognizes me 2 monitors. But if I run it on a newer version of Ubuntu does not work. That's why I use a distribution as old as the

Re: [pygtk] Embed VLC to PyGTK

2011-12-25 Thread Timo
Op 22-12-11 13:09, Andrey Popov schreef: Hi all! I'm trying to embed VLC in PyGTK application. At the moment I have a problem - the video covers the entire window, rather than displayed in a small window or in the middle of the window. In the best case with the ability to scale to full screen.

[pygtk] Thread finish signal

2011-12-25 Thread Damián Nohales
Hi there! I have a thread that inherits from threading.Thread, I want to reuse the Thread implementation for different purposes but I want to execute some different code when the Thread finish. What is the best way to implement that? lambda functions, signal connection? To clarify the