Using py2exe on the following code doesn't yield a working exe.

from pyglet import media
from pyglet.media import procedural


player = media.Player()
player.queue(media.StaticSource(procedural.Sine(2, 1000)))
player.queue(media.StaticSource(procedural.Sine(10, 500)))
player.queue(media.StaticSource(procedural.WhiteNoise(5)))
player.eos_action = player.EOS_NEXT
player.play()
while player.source:
    player.dispatch_events()


We get the following error even though the python sound.py plays
sounds just fine.


C:\Documents and Settings\Administrator\My Documents
\py2exe2\dist>sound.exe
Traceback (most recent call last):
  File "sound.py", line 1, in <module>
  File "pyglet\media\__init__.pyc", line 1219, in <module>
ImportError: No suitable audio driver could be loaded.




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to