Skip to content

Instantly share code, notes, and snippets.

@Sciss
Created August 10, 2013 09:22
Show Gist options
  • Select an option

  • Save Sciss/6199748 to your computer and use it in GitHub Desktop.

Select an option

Save Sciss/6199748 to your computer and use it in GitHub Desktop.
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