Expose frames per second on video
All checks were successful
Tests / Tests (pull_request) Successful in 8s

This commit is contained in:
Kat Huang 2024-07-30 11:53:34 -06:00
parent 76e792be88
commit 6677b9232f
2 changed files with 3 additions and 0 deletions

View File

@ -1931,6 +1931,7 @@ export type GetVideoForClipTimesQuery = {
getVideo: {
__typename?: "VideoGQL";
id: number;
framesPerSecond: number;
playlist?: {
__typename?: "HLSPlaylistGQL";
segmentDurations: Array<number>;
@ -3720,6 +3721,7 @@ export const GetVideoForClipTimesDocument = gql`
query GetVideoForClipTimes($videoId: Int!) {
getVideo(videoId: $videoId) {
id
framesPerSecond
playlist {
segmentDurations
}

View File

@ -215,6 +215,7 @@ query GetMedianRunForVideo($videoId: Int!) {
query GetVideoForClipTimes($videoId: Int!) {
getVideo(videoId: $videoId) {
id
framesPerSecond
playlist {
segmentDurations
}