diff options
author | David Runge <dave@sleepmap.de> | 2016-06-19 19:33:36 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-06-19 19:33:36 +0200 |
commit | 830f1d296e402a89c6146e4183e1a2490ca64406 (patch) | |
tree | 56ecef28182f57e5f3971fc06e2f9ab6a46efeb0 /darmstadt.json | |
parent | 5b3f3167eaf5f4165ba471afc7b3894e1d81ce79 (diff) | |
download | bowelyzer-830f1d296e402a89c6146e4183e1a2490ca64406.tar.gz bowelyzer-830f1d296e402a89c6146e4183e1a2490ca64406.tar.bz2 bowelyzer-830f1d296e402a89c6146e4183e1a2490ca64406.tar.xz bowelyzer-830f1d296e402a89c6146e4183e1a2490ca64406.zip |
Bowelyzer.sc, BowelyzerAnalyzer.sc, BowelyzerConfig.sc, BowelyzerOSCHub.sc: Moving from String based identifiers to Symbols. Further refining the configuration parsing and validation process. darmstadt.json: Moving names into inputs Dictionary, holding channel number (offsets are not required/feasible) and name.
Diffstat (limited to 'darmstadt.json')
-rw-r--r-- | darmstadt.json | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/darmstadt.json b/darmstadt.json index e9b64bf..7d19f9f 100644 --- a/darmstadt.json +++ b/darmstadt.json @@ -1,20 +1,12 @@ { -"names": [ - "left", - "right" -], -"channelOffset": [ - 0, - 0 -], -"synthServerAddress": "127.0.0.1", -"synthServerPort": 57110, -"hubAddress": "127.0.0.1", -"hubPort": 57120, -"forwardAddress": "127.0.0.1", -"forwardPort": 9999, -"controls":{ - "left": { + "synthServerAddress": "127.0.0.1", + "synthServerPort": 57110, + "hubAddress": "127.0.0.1", + "hubPort": 57120, + "forwardAddress": "127.0.0.1", + "forwardPort": 57120, + "controls":{ + "left": { "amplitudeAttackTime": 0.01, "amplitudeReleaseTime": 0.1, "hfHainsworth": 1.0, @@ -31,8 +23,8 @@ "pitchPeakThreshold": 0.5, "pitchDownSample": 1, "sendReplyFreq": 20.0 - }, - "right": { + }, + "right": { "amplitudeAttackTime": 0.01, "amplitudeReleaseTime": 0.1, "hfHainsworth": 1.0, @@ -50,5 +42,9 @@ "pitchDownSample":1, "sendReplyFreq": 20.0 } + }, + "inputs": { + "left": 0, + "right": 1 } -}
\ No newline at end of file +} |