Solved Adding a Faust scriptnode make the signal path mono
-
HI! I created a ScriptNode to control a Faust filter. But I noticed that after this script the signal became mono, and then I couldn't pan my OSCs sampler into the Synthesizer Group. What I'm doing wrong?
-
@arcy I don't think any Faust filters are polyphonic but I know for sure that one isn't. I got it to work by sticking 2 faust nodes side by side inside a multi container. You'll also need to remove the <:, from your faust code or you'll get a channel mismatch error.
-
@ally yeah it works! This is the final result (but if can be better please let me know):
-
@ally But if you set a ScriptNode to Polyphonic, doesn't that dynamically create multiple instance of the the node?
-
@clevername27 is not polyphony meant to multi notes instead of multichannel?
-
-
@arcy Yes.
-
@arcy That's one solution, another is to just make it stereo in Faust by processing the code on each channel, so in this case it would be
process = v.korg35LPF(normFreq,Q), v.korg35LPF(normFreq,Q);
-
@HISEnberg it works! thanks.