obs-create-scene-item
Add a source to an OBS scene to manage video production elements, enabling control of visibility and scene composition for live streaming or recording setups.
Instructions
Create a scene item for a source in a scene
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | No | Whether the scene item is enabled/visible (default: true) | |
sceneName | Yes | The scene to add the source to | |
sourceName | Yes | The name of the source to add |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether the scene item is enabled/visible (default: true)",
"type": "boolean"
},
"sceneName": {
"description": "The scene to add the source to",
"type": "string"
},
"sourceName": {
"description": "The name of the source to add",
"type": "string"
}
},
"required": [
"sceneName",
"sourceName"
],
"type": "object"
}