On 03/11/14 09:45, [email protected] wrote: > I have installed pyglet version 1.2alpha1 and AVbin 10 for Win 64 (I am > on Windows 8.1) > Trying the simple code as: > > import pyglet > sound = pyglet.media.load('english.mp3', streaming=False) > sound.play() > pyglet.app.run() > > I am having following error: pyglet.media.riff.WAVEFormatException: > AVbin is required to decode compressed media.
pyglet is failing to load AVBin library. You can put the AVBin DLL in the same directory of that script and it will work (to discard installation issues). You can add after your pyglet import: pyglet.options['debug_lib'] = True That should give you some extra information regarding the lib loading process. Also I recommend you using latest repository code from: http://pyglet.googlecode.com/archive/tip.zip Regards, Juan -- You received this message because you are subscribed to the Google Groups "pyglet-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyglet-users. For more options, visit https://groups.google.com/d/optout.
