I'm writing a small web app for a music psychology project that will play a series of sound samples for a subject and ask them to rate each one. I need to generate a series of tones (probably all sine waves) with one or two basic filters/effects applied, such as distortion. In effect, I need a simple synthesizer library.
Because it's a web app, I need it to be able to spit out audio files (to play via HTML5 audio), not just play the sounds in real time. I'll be generating these files in advance, not while the app runs, so performance is not an issue.
I'm most comfortable in Python, but the app is simple, so I'm willing to work with pretty much any language. The popular Snack library for Python/Tcl has some basic synthesis facilities but doesn't come with any effects to speak of, besides formants.
The most natural choice would be a sound design language like Csound, Supercollider or ChucK, but it seems like they have a very steep learning curve just to generate sine waves with different frequencies and sometimes a distortion effect.