55 lines
960 B
Plaintext
55 lines
960 B
Plaintext
// Execute this before booting the server
|
|
|
|
(
|
|
Server.default.options.inDevice_("Scarlett 2i2 USB");
|
|
Server.default.options.hardwareBufferSize_(1024);
|
|
Server.default.options.outDevice_("Scarlett 2i2 USB");
|
|
//Server.default.options.outDevice_("External Headphones");
|
|
)
|
|
Server.killAll;
|
|
|
|
(
|
|
Routine.run({
|
|
|
|
~usbinput = 2;
|
|
~usbinput1 = 2;
|
|
~usbinput2 = 3;
|
|
|
|
~bpm = 85;
|
|
~bps = ~bpm / 60;
|
|
~beatsperbar = 4;
|
|
~buflen = ~beatsperbar / ~bps;
|
|
|
|
[ "bpm", ~bpm ].postln;
|
|
[ "buffer length", ~buflen ].postln;
|
|
|
|
~tc = TempoClock.new(~bps);
|
|
|
|
~touchosc_ip = "192.168.0.209";
|
|
|
|
("./synths.scd").loadRelative;
|
|
Granulator.init(s);
|
|
s.sync;
|
|
("./control.scd").loadRelative;
|
|
s.sync;
|
|
|
|
});
|
|
)
|
|
|
|
("./granulator.scd").loadRelative;
|
|
|
|
|
|
(
|
|
Routine.run({
|
|
("./effects.scd").loadRelative;
|
|
s.sync;
|
|
("./sequencer.scd").loadRelative;
|
|
s.sync;
|
|
("./interface.scd").loadRelative;
|
|
});
|
|
)
|
|
|
|
~posb[0].scope
|
|
~granulators[0].grainamp_(0);
|
|
~granulators[0].loopsynth
|
|
~dumpbuffers.value("looptober23") |