mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-08 13:42:27 +05:30
Videos: Append '&mpd_version=5' to DASH manifest URL (#4196)
This commit is contained in:
commit
e8a14446af
@ -227,8 +227,22 @@ struct Video
|
|||||||
info.dig?("streamingData", "hlsManifestUrl").try &.as_s
|
info.dig?("streamingData", "hlsManifestUrl").try &.as_s
|
||||||
end
|
end
|
||||||
|
|
||||||
def dash_manifest_url
|
def dash_manifest_url : String?
|
||||||
info.dig?("streamingData", "dashManifestUrl").try &.as_s
|
raw_dash_url = info.dig?("streamingData", "dashManifestUrl").try &.as_s
|
||||||
|
return nil if raw_dash_url.nil?
|
||||||
|
|
||||||
|
# Use manifest v5 parameter to reduce file size
|
||||||
|
# See https://github.com/iv-org/invidious/issues/4186
|
||||||
|
dash_url = URI.parse(raw_dash_url)
|
||||||
|
dash_query = dash_url.query || ""
|
||||||
|
|
||||||
|
if dash_query.empty?
|
||||||
|
dash_url.path = "#{dash_url.path}/mpd_version/5"
|
||||||
|
else
|
||||||
|
dash_url.query = "#{dash_query}&mpd_version=5"
|
||||||
|
end
|
||||||
|
|
||||||
|
return dash_url.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
def genre_url : String?
|
def genre_url : String?
|
||||||
|
Loading…
Reference in New Issue
Block a user