views:

47

answers:

2

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.

A: 

hmm.. It's a difficult question

Jean-Pierre
A: 

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.

Alastair