Merge pull request 'Add stream type to get videos' (#43) from kat/add-stream-type-get-videos into master

Reviewed-on: #43
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
This commit is contained in:
2024-08-26 08:36:44 -06:00
2 changed files with 13 additions and 10 deletions

View File

@@ -118,11 +118,9 @@ query GetVideoDetails($videoId: Int!) {
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
playlist {
segmentDurations
}
stream {
id
streamSegmentType
segments {
uploaded
valid
@@ -131,6 +129,9 @@ query GetVideos($videoIds: [Int!]!) {
framesPerSecond
}
}
playlist {
segmentDurations
}
}
}