Created
August 31, 2011 10:07
-
-
Save moxuse/1183231 to your computer and use it in GitHub Desktop.
Mic Input Convolution
This file contains hidden or 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
( | |
Instr("convo",{arg amp=0,note=60; | |
var input, kernel; | |
input=AudioIn.ar(1)*amp; | |
kernel= Mix.ar(LFSaw.ar([note,note+5,note+3,note+15].midicps,0,1.0)); | |
Out.ar(0,Convolution.ar(input,kernel, 1024, 0.5).dup); | |
},[\amp,[1,127,\linear,1]]).test; | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment