Thanks to Georg and Matt for MIDI recording help. I am working on a subpatch with qlist now.
Another question... My synth uses continuous controller sliders to control parameters of timbre in real-time. The values go from from 0 - 127. When I move the slider quickly, clicks are heard as the value steps up. What is the best way of interpolating incoming MIDI slider messages?
Al
Send instant messages to your online friends http://uk.messenger.yahoo.com
Al Riley wrote:
My synth uses continuous controller sliders to control parameters of timbre in real-time. The values go from from 0 - 127. When I move the slider quickly, clicks are heard as the value steps up. What is the best way of interpolating incoming MIDI slider messages?
[inlet] <---from midi controller | | [pack 0 $1] <---where $1 is the amount of interpolation in ms | | [line] | | [outlet] <---to midi synth
good luck, d.
On Fri, 2004-05-28 at 04:45, derek holzer wrote:
[inlet] <---from midi controller | | [pack 0 $1] <---where $1 is the amount of interpolation in ms | | [line]
while the line~ is the classic method for control -> signal interpolation, it is instructive (perhaps even useful) to also consider the following generalization:
[inlet] | [sig~] | [lop~ $1] || [...~]
My synth uses continuous controller sliders to control parameters of timbre in real-time. The values go from from 0 - 127. When I move the slider quickly, clicks are heard as the value steps up. What is the best way of interpolating incoming MIDI slider messages?
hello,
you might also consider to have a look at pmpd from cyrille henry, it's a very nice and powerful way to interpolate data using physical modeling schemes. http://drpichon.free.fr/pmpd/
+! aym3ric.
You might find that there is more resolution (to a total of 14 bits) available on the control numbered 32 past the slider you are using. Something like: [ctlin 2][ctlin 34] | | [<<7] | | | [+ ] | |> 1024 ]
Martin
My synth uses continuous controller sliders to control parameters of timbre in real-time. The values go from from 0 - 127. When I move the slider quickly, clicks are heard as the value steps up. What is the best way of interpolating incoming MIDI slider messages?