From 733c15b68312d6b76eb3ad8d00bbb876d4f5d41b Mon Sep 17 00:00:00 2001 From: Eugene Petkevich Date: Thu, 12 May 2022 21:36:28 +0300 Subject: [PATCH] Add prototype for busses and groups --- pipelines.scd | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pipelines.scd 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 -- 2.17.1