From 4c2c14c466ca6d3931583f12374ab32a4ba875ad Mon Sep 17 00:00:00 2001 From: Eugene Petkevich Date: Thu, 11 Jan 2024 03:24:51 +0100 Subject: [PATCH] add template --- library/serveroptions.scd | 4 ++-- library/template.scd | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 library/template.scd diff --git a/library/serveroptions.scd b/library/serveroptions.scd index 552bbd7..cc9fc3d 100644 --- a/library/serveroptions.scd +++ b/library/serveroptions.scd @@ -41,11 +41,11 @@ s.recHeaderFormat = "wav"; Platform.case( \osx, { "Macos detected".postln; - thisProcess.platform.recordingsDir = "/Users/genio/stock/audio/supercollider"; + thisProcess.platform.recordingsDir = "/Users/genio/gart/audio/supercollider"; }, \linux, { "Linux detected".postln; - thisProcess.platform.recordingsDir = "/home/genio/stock/audio/supercollider" + thisProcess.platform.recordingsDir = "/home/genio/gart/audio/supercollider" }, \windows, { "Windows detected".postln } ); \ No newline at end of file diff --git a/library/template.scd b/library/template.scd new file mode 100644 index 0000000..bb5851b --- /dev/null +++ b/library/template.scd @@ -0,0 +1,8 @@ + +// recording + +( +s.recorder.filePrefix = "test"; +s.record(bus: ~mainBus); +) +s.stopRecording; \ No newline at end of file -- 2.17.1