start_stream
Start a new multi-platform stream across YouTube, Twitch, and Facebook with customizable title, description, and privacy settings.
Instructions
Start a new stream with optional settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | The stream title | |
| description | No | The stream description | |
| privacy | No | The stream privacy setting |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The stream description",
"type": "string"
},
"privacy": {
"description": "The stream privacy setting",
"enum": [
"public",
"private",
"unlisted"
],
"type": "string"
},
"title": {
"description": "The stream title",
"type": "string"
}
},
"type": "object"
}