Jump to content

Recommended Posts

Hi Support,

 

I use Groove Quantize (from Clipboard) & CAL scripts to modify my MIDI events quite often. Normally these included Velocity, Volume & Pan. To get my MIDI tracks sounding more natural, I would like to insert slight pitch bend wheel changes for each note ( actually modulo every 2nd, 3rd or 4th note but anyway ) for strings and horns.

I tried doing something like this:

;Vari-Pitch.CAL
;This CAL program will insert a random pitch wheel event value on each note event.

(do
    (forEachEvent
        (if (== Event.Kind NOTE)
            (do
                (insert (+ Event.Time 1) Event.Chan CONTROL 3 (random 60 84) )
            )
        )
    )
)


But it is not working,  And wheel doesn't show up in the Piano Roll; I guess it is not a controller. How to I insert Pitch-Bend events using a CAL script?

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...