Created
August 10, 2013 09:22
-
-
Save Sciss/6199748 to your computer and use it in GitHub Desktop.
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
| boot() | |
| val in = play { Out.ar(0, "bus".ar(0)) } | |
| in.mapa("bus" -> 40) | |
| val out1 = play { Out.ar(40, WhiteNoise.ar(0.25)) } | |
| val out2 = play { Out.ar(40, SinOsc.ar(400) * LFPulse.ar(4) * 0.5) } | |
| in.moveAfter(out2) // mapa / InFeedback doesn't mix bus signals with different time stamps :-( | |
| in.free(); out1.free(); out2.free() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment