Search found 5 matches

Go to advanced search

by 1099511627776
01 Mar 2013 12:57
Forum: Development around libVLC
Topic: pyGTK player cannot hangs on "next track"
Replies: 8
Views: 1532

Re: pyGTK player cannot hangs on "next track"

Can you post me some code example here?
I don't do python I'm afraid.
That is the main problem that not in python pygtk it works fine. But i need to do this on python language
by 1099511627776
01 Mar 2013 12:35
Forum: Development around libVLC
Topic: pyGTK player cannot hangs on "next track"
Replies: 8
Views: 1532

Re: pyGTK player cannot hangs on "next track"

I use the libvlc media list player without any such "bugs" being apparent.
My main technique is for the event handler to signal another thread. That other thread can then invoke libvlc without deadlocking.
Can you post me some code example here?
by 1099511627776
01 Mar 2013 09:58
Forum: Development around libVLC
Topic: pyGTK player cannot hangs on "next track"
Replies: 8
Views: 1532

Re: pyGTK player cannot hangs on "next track"

A small workaround for this is to use MeiaListPlayer instead of MediaPlayer. That we can in "endCallback" do self.playlist.add_media(.......) But this workaround also has problems: 1. First added media in playlist plays 2 times (after playing first time no endCallback and, maybe, player lo...
by 1099511627776
28 Feb 2013 18:11
Forum: Development around libVLC
Topic: pyGTK player cannot hangs on "next track"
Replies: 8
Views: 1532

Re: pyGTK player cannot hangs on "next track"

Same problem if I modify official vlc.py file:

Code: Select all

def end_callback(event,player,movie): print('End of media stream (event %s)' % event.type) player.set_mrl(os.path.expanduser(sys.argv[1])) player.play()
So I think it sounds like a Bug in libvlc
by 1099511627776
28 Feb 2013 17:01
Forum: Development around libVLC
Topic: pyGTK player cannot hangs on "next track"
Replies: 8
Views: 1532

pyGTK player cannot hangs on "next track"

Hallo world. I have some problem writing my pygtk binding. Here my is stackoverflow question: http://stackoverflow.com/questions/15130580/pygtk-vlc-player-does-not-play-next-track The main problem is that in the callback MediaPlayerEndReached i want player to play a new track That is why I do this: ...

Go to advanced search