I'm using this program to play na audio file:
music = pyglet.resource.media('file.wav') music.play()
pyglet.app.run()
I have a problem: I can't do anything after this program. How to stop the audio file when is played? It's look like a loop.
I'm using this program to play na audio file:
music = pyglet.resource.media('file.wav') music.play()
pyglet.app.run()
I have a problem: I can't do anything after this program. How to stop the audio file when is played? It's look like a loop.
I think you'd have to include add an eventlistener for the on_eos event.
For an example have a look as this thread on the pyglet Google group.