@audio/host
v0.1.1
Published
Universal audio plugin host — VST3, CLAP, and more
Readme
@audio/host
Universal native plugin host — VST3 + CLAP through one API (format detected from extension) — load, inspect params, process audio block-wise or whole-buffer, from Node. Environment-gated: needs the native addon built for your platform and a real plugin binary.
import { load, scan } from '@audio/host'
const plugin = load(scan()[0].path)
const out = plugin.processAll(channels)
plugin.close()Part of @audio/host.
