Add streamSegmentType to Stream

This commit is contained in:
2024-07-27 20:51:48 -06:00
parent 251ebe7056
commit 378878967a
3 changed files with 10 additions and 5 deletions

View File

@@ -274,6 +274,7 @@ type UploadStreamGQL {
updatedAt: DateTime!
segments: [UploadSegmentGQL!]!
resolution: VideoResolutionGQL!
streamSegmentType: StreamSegmentTypeEnum!
}
enum InitPlaylistUploadStatusEnum {
@@ -301,6 +302,11 @@ type VideoResolutionGQL {
height: Int
}
enum StreamSegmentTypeEnum {
FRAGMENTED_MP4
RB_CHUNKED_MP4
}
type HLSPlaylistGQL {
videoId: Int!
m3u8Text: String!
@@ -442,11 +448,6 @@ enum DeviceTypeEnum {
BROWSER
}
enum StreamSegmentTypeEnum {
FRAGMENTED_MP4
RB_CHUNKED_MP4
}
input VideoResolution {
width: Int!
height: Int!