Add resolution

This commit is contained in:
Ivan Malison 2024-07-18 01:14:18 -06:00
parent f9d6377fe4
commit eaeb1ed0ea
2 changed files with 12 additions and 0 deletions

View File

@ -1169,6 +1169,7 @@ export type VideoMetadataInput = {
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
gameType?: InputMaybe<Scalars["String"]["input"]>;
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
resolution?: InputMaybe<VideoResolution>;
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
tableSize?: InputMaybe<Scalars["String"]["input"]>;
@ -1188,6 +1189,11 @@ export type VideoProcessingGql = {
errors: Array<VideoProcessingErrorGql>;
};
export type VideoResolution = {
height: Scalars["Int"]["input"];
width: Scalars["Int"]["input"];
};
export type VideoTag = {
__typename?: "VideoTag";
name: Scalars["String"]["output"];

View File

@ -404,6 +404,7 @@ input VideoMetadataInput {
lastIntendedSegmentBound: Int = null
streamSegmentType: StreamSegmentTypeEnum = null
endStream: Boolean! = false
resolution: VideoResolution = null
}
input UploadStreamMetadataInput {
@ -428,3 +429,8 @@ enum StreamSegmentTypeEnum {
FRAGMENTED_MP4
RB_CHUNKED_MP4
}
input VideoResolution {
width: Int!
height: Int!
}