DawDreamer icon indicating copy to clipboard operation
DawDreamer copied to clipboard

Can i use CC to control the instrument?

Open RevolGMPHL opened this issue 2 years ago • 2 comments

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!

RevolGMPHL avatar Dec 12 '22 07:12 RevolGMPHL

I haven't tested this, so I would request your assistance. A few things might work.

  1. 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.

  2. 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!

DBraun avatar Dec 12 '22 17:12 DBraun

I try this how it works

RevolGMPHL avatar Dec 13 '22 06:12 RevolGMPHL