Faust Gate
-
I'm trying to use the Gate library here, what's the mistake here?
import("stdfaust.lib"); thresh = hslider("Threshold [dB]", -40, -80, 0, 0.1) : ba.db2linear; att = hslider("Attack [ms]", 10, 0, 100, 1) : si.smoo; rel = hslider("Release [ms]", 100, 10, 500, 1) : si.smoo; hold = hslider("Hold [ms]", 10, 0, 100, 1) : si.smoo; process = _,_ : gate_stereo(thresh,att,hold,rel) : _,_;
-
@resonant what error are you getting?
you might want to try
process = _,_ : ef.gate_stereo(thresh,att,hold,rel) : _,_;
-
@Lindon said in Faust Gate:
@resonant what error are you getting?
you might want to try
process = _,_ : ef.gate_stereo(thresh,att,hold,rel) : _,_;
it worked thanks