Tests with PyQt + Python + Qt + vlc.py + vlc 1.0.5 on MacOS
Posted: 02 Feb 2010 09:41
Hi all,
i'm trying to play a video with libVLC using the Python binding (PyQt 4.7 + Qt4 + Python 2.6.4 + vlc 1.0.5) on MacOS Snow Leopard. I'm doing test in Python console:
It's seems to be working but the window player doesn't appear. If I do
Output is 1
And If I do
it's return 0L all time
What can I do?
Thanks a lot
i'm trying to play a video with libVLC using the Python binding (PyQt 4.7 + Qt4 + Python 2.6.4 + vlc 1.0.5) on MacOS Snow Leopard. I'm doing test in Python console:
Code: Select all
import vlc
p=vlc.MediaPlayer('/tmp/foo.avi')
p.play()
Code: Select all
p.is_playing()
And If I do
Code: Select all
p.get_time()
What can I do?
Thanks a lot