You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm finding the exact same thing on Mac OS 10.8.5 and pyglet 1.2α
symptom: music stops after about 25 seconds of playback
steps to reproduce: run the code below with any mp3 file
#!/usr/bin/env python
import pyglet;
pyglet.options['debug_media']=True;
window = pyglet.window.Window();
player = pyglet.media.Player();
music = pyglet.media.load('~/Desktop/example.mp3');
player.queue(music);
player.play();
@window.event
def on_draw():
window.clear();
window.push_handlers(pyglet.window.event.WindowEventLogger())
pyglet.app.run();
Original comment by rg.geor...@gmail.com on 25 Jan 2014 at 9:58
Same issue with Pyglet 1.2x and OSX 10.9.4. Music plays for around 30 seconds
or so then cuts off.
song = pyglet.media.load('example.mp3, streaming=False)
song.play()
The streaming flag doesn't make a difference.
Here is the the output from the media debug log
refill 9024
refill 8728
refill 9052
refill 8972
refill 9024
refill 9024
refill 8728
refill 9052
refill 17996
refill 44800
underrun
refill 44800
underrun
refill 44800
underrun
refill 44800
underrun
refill 44800
underrun
refill 44800
underrun
refill 44800
underrun
Original comment by Wnt2bsle...@gmail.com on 11 Oct 2014 at 11:02
Original issue reported on code.google.com by
mich...@wielondek.com
on 28 Dec 2013 at 12:05The text was updated successfully, but these errors were encountered: