obs-broadcast-custom-event
Send custom event data to all connected WebSocket clients for real-time communication and automation triggers in OBS Studio workflows.
Instructions
Broadcasts a CustomEvent to all WebSocket clients
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventData | Yes | Data payload to emit to all receivers |
Input Schema (JSON Schema)
{
"properties": {
"eventData": {
"additionalProperties": {},
"description": "Data payload to emit to all receivers",
"type": "object"
}
},
"required": [
"eventData"
],
"type": "object"
}