diff options
author | David Runge <dave@sleepmap.de> | 2016-06-22 02:05:05 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-06-22 02:05:05 +0200 |
commit | 195adaa0860f0d2e32ff32ba72226a49e7cf0d59 (patch) | |
tree | e610803e4f1bd883353a630f1c35add419206f7e /BowelyzerConfig.sc | |
parent | fe06ccfb8d92caa775dcb029c67d887d28066141 (diff) | |
download | bowelyzer-195adaa0860f0d2e32ff32ba72226a49e7cf0d59.tar.gz bowelyzer-195adaa0860f0d2e32ff32ba72226a49e7cf0d59.tar.bz2 bowelyzer-195adaa0860f0d2e32ff32ba72226a49e7cf0d59.tar.xz bowelyzer-195adaa0860f0d2e32ff32ba72226a49e7cf0d59.zip |
BowelyzerConfig.sc: Fixing pitchDownSample ControlSpec. Adding ControlSpec for input to Synths.
Diffstat (limited to 'BowelyzerConfig.sc')
-rw-r--r-- | BowelyzerConfig.sc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BowelyzerConfig.sc b/BowelyzerConfig.sc index 8080bf9..70672c9 100644 --- a/BowelyzerConfig.sc +++ b/BowelyzerConfig.sc @@ -116,8 +116,9 @@ BowelyzerConfig{ ControlSpec.specs[\pitchMedian] = ControlSpec(1, 64, \lin, 1, 1, units: ""); ControlSpec.specs[\pitchAmpThreshold] = ControlSpec(0.01, 1.0, \lin, 0.01, 0.01, units: "dB"); ControlSpec.specs[\pitchPeakThreshold] = ControlSpec(0.01, 1.0, \lin, 0.01, 0.5, units: "dB"); - ControlSpec.specs[\pitchDownSample] = ControlSpec(0.01, 1.0, \lin, 0.01, 0.5, units: "dB"); + ControlSpec.specs[\pitchDownSample] = ControlSpec(1, 100, \lin, 1, 1, units: "samples"); ControlSpec.specs[\sendReplyFreq] = ControlSpec(1, 100, \exp, 0.1, 20, units: "Hz"); + ControlSpec.specs[\input] = ControlSpec(0, Server.default.options.numInputBusChannels-1, \lin, 1, 0, units: "channels"); } // create the default configuration |