VST3 Filter Specification
With the VST3 filter, a VST3 plugin can be inserted into an input or output graph.
JSON Structure
{
"name": "VST3 Filter",
"dllPath": "...",
"filterName": "...",
"parameters": [
{
"id": ...,
"title": "...",
"normalizedValue": ...,
"stringValue": "..."
},
{
...
},
...
]
}
Field | Description |
---|---|
dllPath | Full path to the VST3 module (a .vst3 file), which implements the effect |
filterName | Name of the VST3 effect. If the module has only a single effect (a quite common scenario), this parameter can be omitted. |
parameters | An array of parameters, which define the settings of the effect.
An external helper tool is needed, to get IDs/names and possible values of all effect parameters! Any effect parameters, which are not specified, keep their default values. |