obs-set-source-filter-name
Rename a filter on an OBS Studio source to organize and identify filters more clearly during live streaming or recording sessions.
Instructions
Sets the name of a source filter (rename)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filterName | Yes | Current name of the filter | |
newFilterName | Yes | New name for the filter | |
sourceName | Yes | Name of the source the filter is on |
Input Schema (JSON Schema)
{
"properties": {
"filterName": {
"description": "Current name of the filter",
"type": "string"
},
"newFilterName": {
"description": "New name for the filter",
"type": "string"
},
"sourceName": {
"description": "Name of the source the filter is on",
"type": "string"
}
},
"required": [
"sourceName",
"filterName",
"newFilterName"
],
"type": "object"
}