obs-remove-source-filter
Remove a specific filter from an OBS Studio source to modify its appearance or behavior during live streaming or recording.
Instructions
Removes a filter from a source
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterName | Yes | Name of the filter to remove | |
sourceName | Yes | Name of the source the filter is on |
Input Schema (JSON Schema)
{
"properties": {
"filterName": {
"description": "Name of the filter to remove",
"type": "string"
},
"sourceName": {
"description": "Name of the source the filter is on",
"type": "string"
}
},
"required": [
"sourceName",
"filterName"
],
"type": "object"
}