obs-create-source-filter
Add a new filter to an OBS Studio source by specifying the filter type and configuration settings to modify video or audio output.
Instructions
Creates a new filter, adding it to the specified source
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterKind | Yes | The kind of filter to be created | |
filterName | Yes | Name of the new filter to be created | |
filterSettings | No | Settings object to initialize the filter with | |
sourceName | Yes | Name of the source to add the filter to |
Input Schema (JSON Schema)
{
"properties": {
"filterKind": {
"description": "The kind of filter to be created",
"type": "string"
},
"filterName": {
"description": "Name of the new filter to be created",
"type": "string"
},
"filterSettings": {
"additionalProperties": {},
"description": "Settings object to initialize the filter with",
"type": "object"
},
"sourceName": {
"description": "Name of the source to add the filter to",
"type": "string"
}
},
"required": [
"sourceName",
"filterName",
"filterKind"
],
"type": "object"
}