Control-Rate Envelope Generator
I wanted to generate a control-rate signal with my Python-Slipmat prototype. To my surprise, doing so was fairly straight forward; Python iterator classes have a control-rate mechanism built right in. Read and download the full script at snipt. I designed a simple envelope that generates a rise-fall shape. By default, the rise ... read more.
Rendering 1 Second of Audio Data
Yesterday's python script rendered 1 frame of a rudimentary additive synthesizer. Today's script renders 1 second. You can download the complete example at textsnip or at snipt. To render multiple frames of audio, I added two classes: Mixer and Run. class Mixer: '''A simple mixer.''' ... read more.
