2024-03-08 17:54:59 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-12 12:50:28 -06:00
|
|
|
|
|
|
|
mutation DeleteVideo($videoId: Int!) {
|
|
|
|
deleteVideo(videoId: $videoId)
|
|
|
|
}
|