[chuck-users] Try out this VST instrument/effect chugin

David Braun braun at ccrma.stanford.edu
Mon Jan 11 17:54:07 EST 2021


I created a chugin for Windows that does VST effects and instruments all in
one. https://github.com/ccrma/chugins/pull/47

Sample code:

VST vst => dac;

vst.loadPlugin("C:/VSTPlugIns/Serum_x64.dll");
<<< "num parameters: ", vst.getNumParameters() >>>;
<<< "parameter 0 is named: ", vst.getParameterName(0) >>>;
vst.loadPreset("serum_preset.fxp");
vst.setParameter(0, vst.getParameter(0));

while(true) {
    vst.noteOn(60, 1.);
    200::ms => now;
    vst.noteOff(60, 0.);
    250::ms => now;
}

Please checkout the branch (literally) and try it out!

David
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.cs.princeton.edu/pipermail/chuck-users/attachments/20210111/12eedb04/attachment.html>


More information about the chuck-users mailing list