Add tee progress parsing

This commit is contained in:
Ingo Oppermann
2025-06-19 16:11:30 +02:00
parent f241f3f531
commit f445d0c992
7 changed files with 206 additions and 2 deletions

View File

@@ -7817,6 +7817,13 @@ const docTemplate = `{
"type": "integer",
"format": "uint64"
},
"tee": {
"description": "Format specific",
"type": "array",
"items": {
"$ref": "#/definitions/api.ProgressIOTee"
}
},
"type": {
"type": "string"
},
@@ -7840,6 +7847,32 @@ const docTemplate = `{
}
}
},
"api.ProgressIOTee": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"fifo_enabled": {
"type": "boolean"
},
"fifo_revocery_attempts_total": {
"type": "number"
},
"fifo_state": {
"type": "string"
},
"format": {
"type": "string"
},
"id": {
"type": "string"
},
"state": {
"type": "string"
}
}
},
"api.RTMPChannel": {
"type": "object",
"properties": {