mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Sort dash representations by framerate
This commit is contained in:
parent
004246124b
commit
5680d5a7be
1 changed files with 1 additions and 1 deletions
|
@ -4493,7 +4493,7 @@ get "/api/manifest/dash/id/:id" do |env|
|
|||
end
|
||||
|
||||
audio_streams = video.audio_streams(adaptive_fmts)
|
||||
video_streams = video.video_streams(adaptive_fmts)
|
||||
video_streams = video.video_streams(adaptive_fmts).sort_by { |stream| stream["fps"].to_i }.reverse
|
||||
|
||||
XML.build(indent: " ", encoding: "UTF-8") do |xml|
|
||||
xml.element("MPD", "xmlns": "urn:mpeg:dash:schema:mpd:2011",
|
||||
|
|
Loading…
Reference in a new issue