add resolution and homography to getVideo
All checks were successful
Tests / Tests (pull_request) Successful in 8s

This commit is contained in:
2024-07-25 18:07:17 -07:00
parent a4f602d651
commit 615e4d5467
2 changed files with 119 additions and 0 deletions

View File

@@ -138,12 +138,56 @@ query GetVideo($videoId: Int!) {
playlist {
segmentDurations
}
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
}
}
}
stream {
segments {
segmentIndex
endFrameIndex
framesPerSecond
}
resolution {
width
height
}
}
}
}