obs-set-source-filter-index
Change the order of filters applied to an OBS source by setting a specific filter's position in the stack, which controls the sequence of visual effects processing.
Instructions
Sets the index position of a filter on a source
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterIndex | Yes | New index position of the filter | |
filterName | Yes | Name of the filter | |
sourceName | Yes | Name of the source the filter is on |
Input Schema (JSON Schema)
{
"properties": {
"filterIndex": {
"description": "New index position of the filter",
"minimum": 0,
"type": "number"
},
"filterName": {
"description": "Name of the filter",
"type": "string"
},
"sourceName": {
"description": "Name of the source the filter is on",
"type": "string"
}
},
"required": [
"sourceName",
"filterName",
"filterIndex"
],
"type": "object"
}