invidious/src/views/watch.ecr

24 行
873 B
Plaintext
Raw 通常表示 履歴

2017-11-30 09:12:23 +09:00
<title><%= video_info["title"] %> - Invidious</title>
<video style="width: 100%" poster="<%= video_info.has_key?("iurlhq720") ? video_info["iurlhq720"] : video_info["iurlmq"] %>" controls>
<% fmt_stream.each do |fmt| %>
<source src="<%= fmt["url"] %>" type="<%= fmt["type"].split(";")[0] %>">
<% end %>
2017-11-23 16:48:55 +09:00
</video>
<h1><%= video_info["title"] %></h1>
2017-11-23 16:48:55 +09:00
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
<p>+ <%= likes %></p>
<p>-&nbsp; <%= dislikes %></p>
</div>
<div class="pure-u-1 pure-u-md-3-5">
2017-11-30 12:49:26 +09:00
<p>Views : <%= views %></p>
<p>Rating : <%= rating %></p>
<p>Calculated Rating : <%= calculated_rating %></p>
<p>Engagement : <%= engagement %>%</p>
</div>
<div class="pure-u-1 pure-u-md-1-5">
<% fmt_stream.each do |fmt| %>
<p><%= fmt["quality"] %></p>
<% end %>
</div>
2017-11-23 16:48:55 +09:00
</div>