obs-get-source-filter
Retrieve configuration and settings for a specific filter applied to an OBS Studio source, enabling users to inspect filter properties and parameters.
Instructions
Gets the info for a specific source filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterName | Yes | Name of the filter | |
sourceName | Yes | Name of the source |
Input Schema (JSON Schema)
{
"properties": {
"filterName": {
"description": "Name of the filter",
"type": "string"
},
"sourceName": {
"description": "Name of the source",
"type": "string"
}
},
"required": [
"sourceName",
"filterName"
],
"type": "object"
}