From c3d5fae9d54061deac8c2b719f8d065dccc1ad26 Mon Sep 17 00:00:00 2001 From: Luca_Spanedda Date: Tue, 16 Apr 2024 22:05:03 +0200 Subject: [PATCH] Create ffcf.dsp --- files/ffcf.dsp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 files/ffcf.dsp diff --git a/files/ffcf.dsp b/files/ffcf.dsp new file mode 100644 index 0000000..cf1b43a --- /dev/null +++ b/files/ffcf.dsp @@ -0,0 +1,7 @@ +// import Standard Faust library +// https://github.com/grame-cncm/faustlibraries/ +import("stdfaust.lib"); + +// (t,g) = delay time in samples, filter gain 0-1 +ffcf(t, g, x) = (x@(t) * g), x :> +; +process = _ * .1 : ffcf(100, 1);