Microtonic Scripts [hot]

This allows for a workflow that is impossible in standard plugins. You can create a "Melodic Converter" script that takes a standard noise-based snare drum and tweaks the oscillator tuning and envelope to turn it into a plucky, melodic tom. You aren't just saving a preset; you are writing the tool that creates the preset.

// Setting the engine type engine = 0; // Setting the pitch in semitones pitch = 24; // Setting the decay time decay = 0.5; microtonic scripts

A spiral of jagged peaks and smooth valleys. Its carrier wave was 7/5 of a fundamental tone—an irrational interval that the human ear cannot parse but the limbic system recognizes. Reading it induced the exact sensation of waking up, knowing you saw something profound, but watching it slip away like water through fingers. This allows for a workflow that is impossible

Every parameter in Microtonic can be addressed by a specific variable. For example, if you want to control the pitch of the oscillator, you don't just turn a knob; you can assign a value to a variable like pitch . // Setting the engine type engine = 0;

SuperCollider is a language for audio synthesis. It treats microtonic scripts as first-class citizens. A simple command: Scale(19, \equal).degreeToFreq(7, 440); This script tells SuperCollider: "Give me the 7th degree of 19-EDO." It returns a frequency (approximately 554.365 Hz). You can then build entire orchestras around this mathematical foundation.