Ddmf Metaplugin Manual Site

MetaPlugin itself runs as a plugin inside your DAW, but can also load other plugins.

// Called once when the plugin loads function init() // Declare variables: this.myVar = 0;

The is not just a utility—it’s a sound design laboratory. Whether you are fixing a mono-only plugin to work in stereo, building a multiband compression matrix that would cost hundreds in standalone units, or writing a few lines of JavaScript to create a unique waveshaper, Metaplugin puts the power of modular routing inside any DAW. ddmf metaplugin manual

Consider this article your extended . Whether you are a seasoned sound designer looking to build modular synthesis racks or a mixing engineer wanting to save CPU while creating complex EQ chains, this guide covers everything from installation to advanced routing strategies.

// Called when user changes a slider function slider(index, value) // Update parameters MetaPlugin itself runs as a plugin inside your

var gain = 1.0; createSlider("Gain", 1.0, 0.0, 2.0, 0.01); function slider(index, val) gain = val; function process(in, out) for(var i=0; i<in[0].length; i++) out[0][i] = in[0][i] * gain; out[1][i] = in[1][i] * gain; // stereo

In the world of digital audio workstations (DAWs), stock plugins and even standard third-party processors often hit a wall when it comes to complex routing. What if you want to run a mono synth through a stereo reverb, but split the signal so the left channel gets a phaser and the right channel gets a delay? What if you need to run a 5.1 surround bus through a plugin that only supports stereo? Consider this article your extended

| Section | Function | |---------|----------| | | Preset manager, settings (gear), global bypass, CPU meter | | Plugin Slots (A–H) | 8 slots, each loads one plugin (internal or external) | | Routing Matrix | Switch between serial, parallel, or custom routing | | Modulation Panel | 4 LFOs, 2 envelope followers, 4 macro knobs | | MIDI Learn Panel | Assign MIDI CC to any parameter | | Global I/O | Input/output gain, dry/wet mix, limiter on output |

Scroll to Top