Add segmentDurations and segmentStartFrames

This commit is contained in:
2024-10-16 16:46:29 -06:00
parent d619751144
commit ae97f956b3
3 changed files with 16 additions and 0 deletions

View File

@@ -2164,7 +2164,9 @@ export type UploadStreamGql = {
linksRequested: Scalars["Int"]["output"];
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
resolution: VideoResolutionGql;
segmentDurations: Array<Scalars["Float"]["output"]>;
segmentProcessingCursor: Scalars["Int"]["output"];
segmentStartFrames: Array<Scalars["Int"]["output"]>;
segments: Array<UploadSegmentGql>;
streamSegmentType: StreamSegmentTypeEnum;
updatedAt: Scalars["DateTime"]["output"];
@@ -3117,6 +3119,8 @@ export type GetVideoForClipTimesQuery = {
__typename?: "UploadStreamGQL";
id: string;
streamSegmentType: StreamSegmentTypeEnum;
segmentDurations: Array<number>;
segmentStartFrames: Array<number>;
segments: Array<{
__typename?: "UploadSegmentGQL";
uploaded: boolean;
@@ -5495,6 +5499,8 @@ export const GetVideoForClipTimesDocument = gql`
stream {
id
streamSegmentType
segmentDurations
segmentStartFrames
segments {
uploaded
valid