Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get python to generate a simple sound like a sine wave?

Is there a module available for this? If not, how would you go about creating your own?

Also, would you need some kind of host environment for python to run in in order to play sound, or can it be achieved just from making calls from the terminal?

If the answer is different for different OSes - I'm using a mac.

share|improve this question
What has your Google search turned up so far? – hochl Mar 19 '12 at 12:40

3 Answers

I like PyAudiere , which lets you play numpy arrays as sounds... I guess it jives well with my Matlab background. I believe it's cross-platform. I think scikits.audiolab does the same thing, and may be more current / better supported... seems easier to me than trying to save things as wavfiles or write them to buffers and use Python's builtin sound library.

share|improve this answer
As far as I can see Audiere can not be downloaded from pypi and their pyaudiere.org site is now some random ad-page. – Thomas Wessel Sep 6 '12 at 10:46
Yeah, it seems like all of these sound libraries get abandoned after a few months. It's becoming a real problem. Maybe PyGame is the way to go. It seems like overkill, but at least it's well-supported. – rdchambers Sep 7 '12 at 13:22

The Python In Music wiki page has not been terribly well-kept-up, but it's a good starting point. http://wiki.python.org/moin/PythonInMusic

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.