mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix width and height in manifest
This commit is contained in:
parent
5de300fb35
commit
a2ab6b89f1
1 changed files with 7 additions and 7 deletions
|
@ -4157,7 +4157,7 @@ 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"]
|
||||||
height, width = fmt["size"].split("x")
|
width, height = fmt["size"].split("x")
|
||||||
|
|
||||||
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