Faust node Channel mismatch
-
Hi there, I already tried the method from this post: https://forum.hise.audio/topic/7024/faust-channel-mismatch-how-to-tackle-it/4?_=1729928953304 but It doesn't work for me. In the Faust web editor everything works fine with my node and in HISE I get an error message because of the Channel mismatch. Could anyone help me?
// Process implementation for stereo input process = // Process for left and right channels processed_left = (parametric_controller(cntrl, envelope, speed, depth) * shift <: transpose(c_samples, c_xfade));
-
@treynterrio your process is mo ophpnic, one channel, a d by default fast in his is stereo, two channels...
-
@treynterrio said in Faust node Channel mismatch:
processed_left = (parametric_controller(cntrl, envelope, speed, depth) * shift <: transpose(c_samples, c_xfade));
You can write
processed_left = (parametric_controller(cntrl, envelope, speed, depth) * shift <: transpose(c_samples, c_xfade)); process = processed_left,processed_left;