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.
feedback
|
|
The Snack Sound Toolkit can play wav, au and mp3 files.
| |||
|
feedback
|
|
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) | |||||||||
feedback
|
|
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.
| |||
feedback
|
|
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. edit: I figured out why the pygame sound isn't working for me, it's not loading most sounds correctly, the 'length' attribute is ~0.0002 when I load them. maybe loading them using something other than mygame will get it morking more generally. with pyglet I'm getting a resource not found error Using the above example, wigh both relative and full paths to the files. using but | ||||
feedback
|
|
pyMedia's sound example does just that. This should be all you need.
| ||||
feedback
|
|
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. | |||
|
feedback
|
|
After the play() command add a delay of say 10 secs or so, it'll work
This also plays .mp3 files. | ||||
|
feedback
|