obs-get-scene-item-id
Retrieve the ID of a scene item using its source name in OBS Studio. This tool helps identify specific elements within scenes for precise control and automation.
Instructions
Get the ID of a scene item by its source name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sceneName | Yes | The scene name to search in | |
sourceName | Yes | The source name to find |
Input Schema (JSON Schema)
{
"properties": {
"sceneName": {
"description": "The scene name to search in",
"type": "string"
},
"sourceName": {
"description": "The source name to find",
"type": "string"
}
},
"required": [
"sceneName",
"sourceName"
],
"type": "object"
}