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.

Can anyone recommend a good library for generating an audio file, such as mp3, wav, or even midi, from python?

I've seen recommendations for working with the id tags (song name, artist, etc) in mp3 files, but this is not my goal.

Thank you very much!

share|improve this question
It's important to note that MIDI is not audio. You only hear sound when MIDI is played back through something like a virtual instrument or synthesizer. – Aaron May 10 '09 at 14:25

3 Answers

up vote 7 down vote accepted

See http://wiki.python.org/moin/Audio/ and http://wiki.python.org/moin/PythonInMusic, maybe some of the projects listed there can be of help.

Also, Google is your friend.

share|improve this answer

Python has a built-in wav module to make wav files. I use it here to make a wav file online of the requested frequency and duration.

share|improve this answer

I've never used it, but check out ounk.

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.