Add label to fmt_stream

このコミットが含まれているのは:
Omar Roth 2018-04-10 21:36:43 -05:00
コミット 2a4b643539
2個のファイルの変更3行の追加2行の削除

ファイルの表示

@ -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"] }

ファイルの表示

@ -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>