From 51ad8ef2df32e9f9d7c9b60cb7696e3529d3aa28 Mon Sep 17 00:00:00 2001 From: Luca_Spanedda Date: Tue, 16 Apr 2024 21:51:44 +0200 Subject: [PATCH] Create sampdel.dsp --- files/sampdel.dsp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 files/sampdel.dsp diff --git a/files/sampdel.dsp b/files/sampdel.dsp new file mode 100644 index 0000000..1e06c8f --- /dev/null +++ b/files/sampdel.dsp @@ -0,0 +1,14 @@ +// import Standard Faust library +// https://github.com/grame-cncm/faustlibraries/ +import("stdfaust.lib"); + +sampdel = ma.SR; +// sample rate - ma.SR + +process = _ : + // input signal goes in + +~ @(sampdel -1) *(0.8) + // delay line with feedback: +~ + : mem + // output goes to a single sample delay + <: si.bus(2);