add operation for set segment duration
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-07-16 16:33:22 -07:00
parent 12f7e1f115
commit 6205e9a353
2 changed files with 81 additions and 0 deletions

View File

@@ -24,6 +24,18 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
}
}
mutation SetSegmentDuration(
$videoId: Int!
$segmentId: Int!
$duration: Float!
) {
setSegmentDuration(
videoId: $videoId
segmentId: $segmentId
duration: $duration
)
}
mutation EditUploadStream(
$videoId: Int!
$videoMetadataInput: VideoMetadataInput!