From 74bb3e3290d8f4ea82b2caf79f4b96bb7991faad Mon Sep 17 00:00:00 2001 From: David Runge Date: Sun, 29 May 2016 13:38:07 +0200 Subject: 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. --- bowelyzer.scd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bowelyzer.scd (limited to 'bowelyzer.scd') 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; + -- cgit v1.2.3-54-g00ecf