PeerTube · Schema
LiveVideoUpdate
VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming
Properties
| Name | Type | Description |
|---|---|---|
| saveReplay | boolean | |
| replaySettings | object | |
| permanentLive | boolean | User can stream multiple times in a permanent live |
| latencyMode | object | User can select live latency mode if enabled by the instance |
| schedules | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/LiveVideoUpdate.json",
"title": "LiveVideoUpdate",
"properties": {
"saveReplay": {
"type": "boolean"
},
"replaySettings": {
"$ref": "#/components/schemas/LiveVideoReplaySettings"
},
"permanentLive": {
"description": "User can stream multiple times in a permanent live",
"type": "boolean"
},
"latencyMode": {
"description": "User can select live latency mode if enabled by the instance",
"allOf": [
{
"$ref": "#/components/schemas/LiveVideoLatencyMode"
}
]
},
"schedules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LiveSchedule"
}
}
}
}