Skip to content

Commit

Permalink
Create sampdel.dsp
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaSpanedda committed Apr 16, 2024
1 parent 1525df2 commit 51ad8ef
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions files/sampdel.dsp
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit 51ad8ef

Please sign in to comment.