update_stream_settings
Modify live stream configurations including title, description, and privacy settings to control how your content appears across multiple streaming platforms.
Instructions
Update settings for the current stream such as title, description, or privacy 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"
}