Add upload to video gql

This commit is contained in:
2024-04-30 21:55:48 -06:00
parent 527113a099
commit 2f92820895
2 changed files with 23 additions and 0 deletions

View File

@@ -227,12 +227,23 @@ type UploadStreamGQL {
errors: [StreamErrorGQL!]!
createdAt: DateTime!
updatedAt: DateTime!
uploadSegments: [UploadSegmentGQL!]!
}
type StreamErrorGQL {
message: String!
}
type UploadSegmentGQL {
segmentIndex: Int!
uploaded: Boolean!
valid: Boolean!
endFrameIndex: Int
framesPerSecond: Float
durationsInSeconds: Float
linksRequested: Int!
}
type HLSPlaylistGQL {
videoId: Int!
m3u8Text: String!