DBraun / DawDreamer

Digital Audio Workstation with Python; VST instruments/effects, parameter automation, FAUST, JAX, Warp Markers, and JUCE processors
GNU General Public License v3.0
896 stars 65 forks source link

how can I load kontakt.dll and load the nki instrument to generate a wav #133

Closed RevolGMPHL closed 1 year ago

RevolGMPHL commented 1 year ago

thanks!

DBraun commented 1 year ago

There isn't a straightforward way to load an NKI file, but here are two solutions:

  1. You can either replace the default kontakt_def.nkm on your filesystem and re-create the PluginProcessor.

  2. Or you can follow the example test_plugin_editor for Kontakt in https://github.com/DBraun/DawDreamer/blob/main/tests/test_plugins.py You would use open_editor, then select the NKI file, then save the state if necessary. Then on subsequent runs you can optionally re-load the state.

RevolGMPHL commented 1 year ago

thank you so much!

DBraun commented 1 year ago

Cool, closing as resolved.