Add an overlay that shows streaming state

This commit is contained in:
2024-03-08 17:54:59 -07:00
parent fd30ae04bf
commit be47dcdba2
2 changed files with 222 additions and 0 deletions

54
src/operations/video.gql Normal file
View File

@@ -0,0 +1,54 @@
query GetStreamMonitoringDetails($videoId: Int!) {
getVideo(videoId: $videoId) {
id
totalShots
makePercentage
elapsedTime
stream {
homographyHistory {
crop {
left
top
width
height
}
pockets {
left
top
width
height
}
sourcePoints {
topLeft {
x
y
}
topSide {
x
y
}
topRight {
x
y
}
bottomLeft {
x
y
}
bottomSide {
x
y
}
bottomRight {
x
y
}
}
}
linksRequested
uploadsCompleted
segmentProcessingCursor
}
}
}