From: Eugene Petkevich Date: Thu, 12 May 2022 18:36:28 +0000 (+0300) Subject: Add prototype for busses and groups X-Git-Url: https://git.zuelum.org/?a=commitdiff_plain;h=733c15b68312d6b76eb3ad8d00bbb876d4f5d41b;p=scprojects.git Add prototype for busses and groups --- diff --git a/pipelines.scd b/pipelines.scd new file mode 100644 index 0000000..810ff8e --- /dev/null +++ b/pipelines.scd @@ -0,0 +1,30 @@ +( +//======== Busses +// speakers +~spik = 0; + +// headphones +~phon = 2; + +// recording +~bare = Bus.audio(s, 2); + +// effect +~bafe = Bus.audio(s, 2); + +a = { [2r10010, 2r101011, 2r11100].choose.postln }; +b = a >> 2; +b.value.asBinaryDigits.join; + + +//======== Groups +// sources +~guso = Group.new(s); + +// recording +~gu + +~gure = Group.new(~guSources, \addAfter); + +~tempo +) \ No newline at end of file