ConjureDSP

Vibe code
audio effects
in your DAW

Write DSP effects in Python or Rust and hear them instantly. Describe what you want in plain English and let AI write the code.

A Plugin that Makes Plugins

ConjureDSP is an AudioUnit plugin that lets you write, run, and share your own audio effects — all from within your DAW.

AI-powered DSP Coding

Describe effects in plain English and let AI generate the DSP code for you. Iterate with chat-based assistance right inside your DAW.

Python & Rust

Write audio effects in Python for rapid prototyping, or use Rust for maximum performance. Both run in real-time on the audio thread.

Real-time Visualizations

See your effect's frequency response as you code. Know exactly what your DSP is doing.

16 Parameters

Define up to 16 automatable parameters with custom names, ranges, units, and linear or logarithmic curves. Full DAW automation support.

Built-in Editor

Code editor with syntax highlighting, autocomplete, DSP snippets, and inline error markers. Code right inside your DAW.

Simple and powerful

A stereo width effect in just a few lines of Python

import numpy as np

PARAMS = {
    "width": {"min": 0.0, "max": 2.0, "unit": "x", "default": 1.0},
}

def process(inputs, outputs, frame_count, sample_rate, params):
    width = params["width"]

    left = inputs[0][:frame_count]
    right = inputs[1][:frame_count]

    mid = (left + right) * 0.5
    side = (left - right) * 0.5 * width

    outputs[0][:frame_count] = mid + side
    outputs[1][:frame_count] = mid - side