This website works better with JavaScript.
Home
Explore
Help
Sign In
pete
/
milchlode
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Now we are talking
master
Pete Shadbolt
10 years ago
parent
46288fbaa6
commit
df887a892c
2 changed files
with
16 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-3
chuck.ck
+1
-0
run.sh
+ 15
- 3
chuck.ck
View File
@@ -1,3 +1,15 @@
adc => Gain g1 => dac;
0.5 => g1.gain;
1000::second => now;
// feedforward
adc => Gain g => dac;
// feedback
g => Gain feedback => DelayL delay => g;
// set delay parameters
5::second => delay.max => delay.delay;
// set feedback
.5 => feedback.gain;
// set effects mix
.75 => delay.gain;
// infinite time loop
while( true ) 1::second => now;
+ 1
- 0
run.sh
View File
@@ -1 +1,2 @@
#!/bin/bash
chuck.alsa --bufsize64 chuck.ck
Write
Preview
Loading…
Cancel
Save