| The code Ive posted has PD communicating to it via OSC protocol controlling a
Sine wav oscillator with a few parameter controls. At the moment I only
understand how to play one note at a time and Im trying to understand how to
adapt the code to perform polyphony from the one oscillator? PD is currently
substituting the Monome interface (as it works with OSC protocol) which has
no velocity control so Im only looking to send note-on/off messages some
how. At the moment the sine wav just oscillates until the instrument time
has finished.
Im not sure if Im making this information up but I think I read somewhere
its possible to send just a numerical value (in this case from pd) as an
argument to a midi opcode which interprets the output to midi for
note-on/off polyphonic function? But if theres a more straight for word way
obviously thats what Im aiming for...
Of course your time its fully appreciated so thanks in advance.
sr = 88200
ksmps = 1
0dbfs = 1
nchnls = 1
giSine ftgen 0, 0, 16384, 10, 1
giOSC OSCinit 9999
gklfo init 0
instr 1 ; LFO
klfofreq init 0
klfoamp init 0
ktrig6 OSClisten giOSC, "/lfofreq", "f", klfofreq
ktrig7 OSClisten giOSC, "/lfoamp", "f", klfoamp
gklfo oscil klfoamp, klfofreq, giSine
endin
instr 2
kamp init 0
kfreq init 0
kmfreq init 0
kienv init 0
khp init 4000
ktrig1 OSClisten giOSC, "/amp", "f", kamp
ktrig2 OSClisten giOSC, "/freq", "f", kfreq
ktrig3 OSClisten giOSC, "/mfreq", "f", kmfreq
ktrig4 OSClisten giOSC, "/ienv", "f", kienv
kenv linen kamp, 1, p3, 0.01
asig foscil kenv, kfreq * (1+gklfo), 1, kmfreq, kienv, giSine
outs asig
endin
i1 0 1000
i2 0 1000
i3 0 1000
--
View this message in context: http://csound.1045644.n5.nabble.com/OSClisten-Realtime-Polyphonic-Synth-MIDI-opcodes-tp5736131.html
Sent from the Csound - General mailing list archive at Nabble.com.
|