Re: [Tutor] Making a sound

2010-07-31 Thread Dave Angel
Michael Bernhard Arp S wrote: Greetings, programs. How do I create a sound from python? I'm thinking along the line of generating a sinus wave where I can control the frequency and duration. I want to produce a string of sounds based on a character string. Probabl

Re: [Tutor] Making a sound

2010-07-31 Thread Luke Paireepinart
You can generate the sound data in a buffer either in native python or using numpy, then play it back by loading the buffer into a sound object with pygame. It depends how much control you want on the sounds. You might want to use csound or supercollider or something if you want to programmatica

[Tutor] Making a sound

2010-07-31 Thread Michael Bernhard Arp Sørensen
Greetings, programs. How do I create a sound from python? I'm thinking along the line of generating a sinus wave where I can control the frequency and duration. I want to produce a string of sounds based on a character string. Probably not original. :-) I don't want to save a sound to a file and p