You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can i use CC to control the instrument?i want to use CC to control the kontakt instrument, like string or wind. So,how to load the CC controller on kontakt.Thank you so much!
The text was updated successfully, but these errors were encountered:
I haven't tested this, so I would request your assistance. A few things might work.
Look for MIDI CC parameters in synth.get_parameters_description(). Treat them like any other parameter. You can set them as constants or give them numpy arrays for automation.
Using some other Python library, save your MIDI CC automation into a MIDI file and then call synth.load_midi(filepath, clear_previous=True, beats=False, all_events=True). Those are the default kwargs for load_midi. all_events is the kwarg that is meant to signify that all events (including MIDI CC) will be used from the file. However, I haven't gotten around to testing this yet, sorry!
Can i use CC to control the instrument?i want to use CC to control the kontakt instrument, like string or wind. So,how to load the CC controller on kontakt.Thank you so much!
The text was updated successfully, but these errors were encountered: