Add stream type to get videos
All checks were successful
Tests / Tests (pull_request) Successful in 7s

This commit is contained in:
2024-08-26 06:56:40 -06:00
parent 72b451d322
commit af38fdea64
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
}
}
}