mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Provide dash qualities as reported by YouTube player
This commit is contained in:
parent
64464f23ae
commit
ac957db6d1
1 changed files with 4 additions and 1 deletions
|
@ -4751,7 +4751,10 @@ get "/api/manifest/dash/id/:id" do |env|
|
||||||
bandwidth = fmt["bitrate"]
|
bandwidth = fmt["bitrate"]
|
||||||
itag = fmt["itag"]
|
itag = fmt["itag"]
|
||||||
url = fmt["url"]
|
url = fmt["url"]
|
||||||
width, height = fmt["size"].split("x")
|
width, height = fmt["size"].split("x").map { |i| i.to_i }
|
||||||
|
|
||||||
|
# Resolutions reported by YouTube player (may not accurately reflect source)
|
||||||
|
height = [4320, 2160, 1440, 1080, 720, 480, 360, 240, 144].sort_by { |i| (height - i).abs }[0]
|
||||||
|
|
||||||
xml.element("Representation", id: itag, codecs: codecs, width: width, height: height,
|
xml.element("Representation", id: itag, codecs: codecs, width: width, height: height,
|
||||||
startWithSAP: "1", maxPlayoutRate: "1",
|
startWithSAP: "1", maxPlayoutRate: "1",
|
||||||
|
|
Loading…
Reference in a new issue