-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07e456f
commit 82d7f11
Showing
24 changed files
with
1,412 additions
and
2,368 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
declare name "korg35LPF"; | ||
declare description "Demonstration of the Korg 35 LPF"; | ||
declare author "Eric Tarr"; | ||
|
||
import("stdfaust.lib"); | ||
import("misceffects.lib"); | ||
|
||
nChans = 2; | ||
Q = hslider("Q",1,0.5,10,0.01); | ||
normFreq = hslider("freq",0.5,0,1,0.001):si.smoo; | ||
|
||
process = dm.reverse_echo_demo(nChans); | ||
|
||
reverse_echo_demo(nChans) = ef.reverseEchoN(nChans,delMax) : ef.reverseEchoN(nChans) | ||
with { | ||
delMax = 2^int(nentry("Log2(Delay)",15,12,16,1)); // delay line length | ||
}; | ||
process = ve.korg35LPF(normFreq,Q), ve.korg35LPF(normFreq,Q); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
//----------------------------------------------- | ||
// A 1000 ms Stereo Echo | ||
//----------------------------------------------- | ||
|
||
import("stdfaust.lib"); | ||
echo(d,f) = + ~ (@(d) : *(f)); | ||
|
||
echo1s = echo(delay,fback) with { | ||
delay = hslider("Delay[OWL:PARAMETER_A]", 0, 0, 1000, 0.10)*millisec; | ||
fback = hslider("Feedback[OWL:PARAMETER_B]", 0, 0, 1, 0.01); | ||
millisec = 48; | ||
}; | ||
|
||
process = dm.reverse_echo_demo(2); | ||
process = vgroup("stereoecho", (echo1s, echo1s)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.