obs-set-input-name
Rename an input in OBS Studio by specifying its current name and the new desired name, enabling organized source management.
Instructions
Sets the name of an input (rename)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Current input name | |
newInputName | Yes | New name for the input |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Current input name",
"type": "string"
},
"newInputName": {
"description": "New name for the input",
"type": "string"
}
},
"required": [
"inputName",
"newInputName"
],
"type": "object"
}