vlc/python | branch: master | Olivier Aubert <[email protected]> | Tue Jan 3 15:21:22 2017 +0100| [7a2bde0ca37f11c03f85b10584fe71674f11718b] | committer: Olivier Aubert
Make wxvlc example cross-platform Closes #23 > http://git.videolan.org/gitweb.cgi/vlc/python.git/?a=commit;h=7a2bde0ca37f11c03f85b10584fe71674f11718b --- examples/wxvlc.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/examples/wxvlc.py b/examples/wxvlc.py index 9a29031..9e71c63 100755 --- a/examples/wxvlc.py +++ b/examples/wxvlc.py @@ -32,7 +32,7 @@ import vlc # import standard libraries import os -import user +import sys class Player(wx.Frame): """The main window has to deal with events. @@ -120,7 +120,7 @@ class Player(wx.Frame): # Create a file dialog opened in the current home directory, where # you can display all kind of files, having as title "Choose a file". - dlg = wx.FileDialog(self, "Choose a file", user.home, "", + dlg = wx.FileDialog(self, "Choose a file", os.path.expanduser('~'), "", "*.*", wx.OPEN) if dlg.ShowModal() == wx.ID_OK: dirname = dlg.GetDirectory() @@ -137,8 +137,13 @@ class Player(wx.Frame): self.SetTitle("%s - wxVLCplayer" % title) # set the window id where to render VLC's video output - self.player.set_xwindow(self.videopanel.GetHandle()) - # FIXME: this should be made cross-platform + handle = self.videopanel.GetHandle() + if sys.platform.startswith('linux'): # for Linux using the X Server + self.player.set_xwindow(handle) + elif sys.platform == "win32": # for Windows + self.player.set_hwnd(handle) + elif sys.platform == "darwin": # for MacOS + self.player.set_nsobject(handle) self.OnPlay(None) # set the volume slider to the current volume _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
