Add prototype for busses and groups
authorEugene Petkevich <nasedil.genio.code@gmail.com>
Thu, 12 May 2022 18:36:28 +0000 (21:36 +0300)
committerEugene Petkevich <nasedil.genio.code@gmail.com>
Thu, 12 May 2022 18:36:28 +0000 (21:36 +0300)
pipelines.scd [new file with mode: 0644]

diff --git a/pipelines.scd b/pipelines.scd
new file mode 100644 (file)
index 0000000..810ff8e
--- /dev/null
@@ -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