Hello silpa.
This is probably a dead issue but here is my experience.
There is a line in wxvlc.py:
self.player.set_xwindow(self.videopanel.GetHandle())
Based on an entry from an 'OS if stmt' from
http://code.google.com/p/wxtoutv/source ... ame.py?r=3
if sys.platform.startswith('win'):
self.player.set_hwnd(self.videopanel.GetHandle())
#self.videopanel.GetHandle()
elif sys.platform.startswith('linux'):
self.player.set_xwindow(self.videopanel.GetHandle())
else:
self.player.set_nsobject(self.videopanel.GetHandle())
The above replacement code will put the video in the wxPython panel on windows.
I'm running on windows and I actually prefer to have the VLC player window come up full size so I comment out the line
self.player.set_hwnd(self.videopanel.GetHandle())
so that the player creates a full sized screen (which I control from my version of the wxvlc.py script.