YooGle Sharma

Results 6 comments of YooGle Sharma

Its working for monophonic node with audiokit 5.0.1 Now struggling, how to make it work for polyphonic node, and how to trigger something like keyOn, keyOff, pitchBend messages to dsp...

Thank you for the response but I am trying to access the `mydsp_poly -> keyOn( )` from swift to trigger note on. May be it can happen via internalAU or...

**Faustguitar.swift** ` import AVFoundation import CAudioKit import AudioKit /// Faust node public class Faustguitar: Node, AudioUnitContainer, Toggleable { /// Unique four-letter identifier. If using multiple Faust generated nodes, make this...

**FaustDSP.mm** `#define NVOICES 10 #define POLY #define MIDICTRL /* ------------------------------------------------------------ name: "guitar" Code generated with Faust 2.41.1 (https://faust.grame.fr) Compilation options: -a /Users/yoogle/Faust-2.41.1/share/faust/audiokit/FaustDSP.mm -lang cpp -cn guitar -es 1 -mcd 16...

**Working for Monophonic Code, will not work with the above polyphonic code** `class Conductor { let engine = AudioEngine() let guitar = Faustguitar() init() { guitar.freq = 440 guitar.gain =...