From 8ed1c77e47d489637bebc48e556a4ca525bbd65d Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 4 Jul 2020 14:17:46 -0400 Subject: [PATCH] Skip DASH streams segmented by URL --- src/invidious/videos.cr | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/invidious/videos.cr b/src/invidious/videos.cr index 9af45851..dea03163 100644 --- a/src/invidious/videos.cr +++ b/src/invidious/videos.cr @@ -583,6 +583,9 @@ struct Video fmt["url"] = JSON::Any.new("#{fmt["url"]}&host=#{URI.parse(fmt["url"].as_s).host}") fmt["url"] = JSON::Any.new("#{fmt["url"]}®ion=#{self.info["region"]}") if self.info["region"]? end + # See https://github.com/TeamNewPipe/NewPipe/issues/2415 + # Some streams are segmented by URL `sq/` rather than index, for now we just filter them out + fmt_stream.reject! { |f| !f["indexRange"]? } fmt_stream.sort_by! { |f| f["width"]?.try &.as_i || 0 } @adaptive_fmts = fmt_stream return @adaptive_fmts.as(Array(Hash(String, JSON::Any)))