obs-set-source-filter-enabled
Enable or disable a specific filter on an OBS Studio source to control visual effects and processing during live streaming or recording.
Instructions
Sets the enable state of a source filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterEnabled | Yes | New enable state of the filter | |
filterName | Yes | Name of the filter | |
sourceName | Yes | Name of the source the filter is on |
Input Schema (JSON Schema)
{
"properties": {
"filterEnabled": {
"description": "New enable state of the filter",
"type": "boolean"
},
"filterName": {
"description": "Name of the filter",
"type": "string"
},
"sourceName": {
"description": "Name of the source the filter is on",
"type": "string"
}
},
"required": [
"sourceName",
"filterName",
"filterEnabled"
],
"type": "object"
}