What's the easiest way to play a sound file (.wav) in Python? By easiest I mean both most platform independent and requiring the least dependencies. pygame is certainly an option, but it seems overkill for just sound.
|
|
|||||
|
|
|
The Snack Sound Toolkit can play wav, au and mp3 files.
|
||
|
|
|
|
pyMedia's sound example does just that. This should be all you need.
|
|||
|
|
|
Definitely use Pyglet for this. It's kind of a large package, but it is pure python with no extension modules. That will definitely be the easiest for deployment. It's also got great format and codec support.
|
||
|
|
|
For Windows, you can use winsound. It's built in
You should be able to use ossaudiodev for linux:
(Credit for ossaudiodev: Bill Dandreta http://mail.python.org/pipermail/python-list/2004-October/288905.html) |
||
|
|
|
To Peter Shinners: Does pyglet support *.mp3 ONLY? When I am playing *.wav,it throw an exception. Brett |
||
|
|
|
|
I like pygame, and the command below should work:
but it doesn't on either of my computers, and there is limited help on the subject out there. with pyglet I'm getting a resource not found error Using both relative and full paths to the files. using "pyglet.media.load()" instead of "pyglet.resource.media()" lets me load the files. but sound.play() only plays the first fraction of a second of the file, unless I run pyglet.app.run() which blocks everything else... edit: sorry this was supposed to be a response to the 'pyglet' comment below |
|||
|
|
|
|
wxPython has support for playing wav files on Windows and Unix - I am not sure if this includes Macs. However it only support wav files as far as I can tell - it does not support other common formats such as mp3 or ogg. |
||
|
|
