Drawing sound
Chris
nospam at [127.0.0.1]
Fri Sep 24 14:52:36 EDT 2004
More information about the Python-list mailing list
Fri Sep 24 14:52:36 EDT 2004
- Previous message (by thread): Drawing sound
- Next message (by thread): Drawing sound
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I want a program that can "draw" sound. Imagine drawing a graph of frequency against time - and then being able to play it over the computer speakers. Can this be done in Python? As a start, consider this simple QBASIC program that generates random frequencies: 10 frequency = 40 + 400 * RND 20 SOUND frequency, 7 30 GOTO 10 That's fine - except that it plays over the PC speaker - the one that's just there for the happy beep - and not through the sound card and proper speakers. Can that be done in Python? Or in any other language? -- Chris
- Previous message (by thread): Drawing sound
- Next message (by thread): Drawing sound
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list