Add resolution

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

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!
}