From ac957db6d1f54f730f2ef08bc915fa52265e463e Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Thu, 30 May 2019 15:39:02 -0500 Subject: [PATCH] Provide dash qualities as reported by YouTube player --- src/invidious.cr | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index dea32a39..01b1063a 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -4751,7 +4751,10 @@ get "/api/manifest/dash/id/:id" do |env| bandwidth = fmt["bitrate"] itag = fmt["itag"] 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, startWithSAP: "1", maxPlayoutRate: "1",