summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/invidious.cr3
-rw-r--r--src/views/player/video.ecr2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/invidious.cr b/src/invidious.cr
index 0be59055..911cf1a8 100644
--- a/src/invidious.cr
+++ b/src/invidious.cr
@@ -271,7 +271,8 @@ get "/watch" do |env|
end
end
- fmt_stream = fmt_stream.uniq { |s| s["quality"] }
+ fmt_stream.each { |s| s.add("label", "#{s["quality"]} - #{s["type"].split(";")[0].split("/")[1]}") }
+ fmt_stream = fmt_stream.uniq { |s| s["label"] }
video_streams = adaptive_fmts.compact_map { |s| s["type"].starts_with?("video") ? s : nil }
video_streams = video_streams.uniq { |s| s["size"] }
diff --git a/src/views/player/video.ecr b/src/views/player/video.ecr
index f783b348..23d59c93 100644
--- a/src/views/player/video.ecr
+++ b/src/views/player/video.ecr
@@ -1,5 +1,5 @@
<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" controls>
<% fmt_stream.each_with_index do |fmt, i| %>
- <source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["quality"] %>" selected="<%= i == 0 ? true : false %>">
+ <source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= i == 0 ? true : false %>">
<% end %>
</video> \ No newline at end of file