Create polyphonic dsp node in audiokit 5

Viewed 16

I am searching for the resources to create a polyphonic dsp node in audiokit 5, so that I can connect and use it with AudioEngine. For c++ dsp, I am using faust.

AudioKit with faust single voice node is working for me by using faust2audiokit (audiokit 5.0.1), but didn't got any success with polyphonic node.

1 Answers

I'm not sure about the DSP nodes, but the AudioKit Oscillators are monophonic. For polyphonic synths they recommend using the DunneAudioKit Synth class. There is a polyphonic oscillator example in the AudioKit Cookbook but it basically is a round-robin Oscillator pool.

Related