aboutsummaryrefslogtreecommitdiffstats
path: root/bowelyzer.scd
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-05-29 13:38:07 +0200
committerDavid Runge <dave@sleepmap.de>2016-05-29 13:38:07 +0200
commit74bb3e3290d8f4ea82b2caf79f4b96bb7991faad (patch)
tree2da93c9e1923893ec752108733397204821e273d /bowelyzer.scd
parent33d8b5bff1feb3c35fc049e29fcaca985d50520b (diff)
downloadbowelyzer-74bb3e3290d8f4ea82b2caf79f4b96bb7991faad.tar.gz
bowelyzer-74bb3e3290d8f4ea82b2caf79f4b96bb7991faad.tar.bz2
bowelyzer-74bb3e3290d8f4ea82b2caf79f4b96bb7991faad.tar.xz
bowelyzer-74bb3e3290d8f4ea82b2caf79f4b96bb7991faad.zip
First commit of bowelyzer code. Includes Bowelyzer.sc, Bowelyzer{Analyzer,Config,OSCHub}.sc, bowelyzer.scd (for help) and darmstadt.json for a standard configuration in JSON.
Diffstat (limited to 'bowelyzer.scd')
-rw-r--r--bowelyzer.scd12
1 files changed, 12 insertions, 0 deletions
diff --git a/bowelyzer.scd b/bowelyzer.scd
new file mode 100644
index 0000000..7b9c3df
--- /dev/null
+++ b/bowelyzer.scd
@@ -0,0 +1,12 @@
+// this is bowelyzer, a simple audio analysis to OSC hub
+
+
+// init bowelyzer with a configuration file (in JSON format)
+~bowelyzer = Bowelyzer.new("/my/path/to/configuration.json");
+
+// or without for the default values (stereo)
+~bowelyzer = Bowelyzer.new();
+
+// display the configuration (will be shown upon first init, too)
+~bowelyzer.config.showConfig;
+