multigrain/main.scd

41 lines
725 B
Plaintext
Raw Normal View History

2022-04-02 06:51:06 +00:00
// Execute this before booting the server
(
2022-04-02 06:51:06 +00:00
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;
2022-04-02 06:51:06 +00:00
(
Routine.run({
("./synths.scd").loadRelative;
Granulator.init(s);
s.sync;
("./control.scd").loadRelative;
2023-04-24 06:49:36 +00:00
s.sync;
("./granulator.scd").loadRelative;
s.sync;
2023-04-24 06:49:36 +00:00
("./effects.scd").loadRelative;
s.sync;
("./interface.scd").loadRelative;
});
)
2023-04-07 06:16:05 +00:00
2023-04-24 06:49:36 +00:00
("./synths.scd").loadRelative;
Granulator.init(s);
("./control.scd").loadRelative;
("./granulator.scd").loadRelative;
("./effects.scd").loadRelative;
("./interface.scd").loadRelative;