| Wow! It'amazing, thank you
<CsoundSynthesizer> <CsOptions> -o dac </CsOptions> <CsInstruments> sr = 44100 ksmps = 32 0dbfs = 1 nchnls = 1 instr 1 aout vco2 0.7, 440 event_i "i", p1, p3 * 2, p3 outs aout, aout endin </CsInstruments> <CsScore> f 0 3600 i 1 0 1 </CsScore> </CsoundSynthesizer>
----Messaggio originale---- Da: thorin.kerr@gmail.com Data: 15/03/2013 14.14 A: <csound@lists.bath.ac.uk> Ogg: Re: [Csnd] Csound 6 - Live Coding Demo
For what it's worth: A trick often used in some livecoding environments (Impromptu, Fluxus, Extempore) is 'temporal recursion', which is just a function which schedules a call to itself. In Csound it might be something like:
------------------
instr 1
aout vco2 0.7, 440
event_i "i", p1, 0.5, p3
outs aout, aout
endin
-------------------------
just a recursive beep, but then then of course you get to edit it into something much more exciting.
It'd be nice to do this in emacs... hmm
Thorin
|