invidious/src/views/watch.ecr

59 lines
2.3 KiB
Plaintext
Raw Normal View History

2018-01-07 17:40:03 +00:00
<% content_for "header" do %>
2018-01-07 17:49:48 +00:00
<%= video.info["title"] + " - " %>
2018-01-07 17:40:03 +00:00
<% end %>
2018-01-15 03:16:09 +00:00
<video style="width: 100%" poster="<%= player_response["videoDetails"]["thumbnail"]["thumbnails"][-1]["url"] %>" controls>
<% if listen == "true" %>
2018-01-04 02:06:16 +00:00
<% adaptive_fmts.each do |fmt| %>
<% url = fmt["url"] %>
<% type = fmt["type"].to_s.split(";")[0] %>
<% if type.starts_with?("audio") %>
<source src="<%= url %>" type="<%= type %>">
<% end %>
<% end %>
2018-01-04 02:06:16 +00:00
<% else %>
<% fmt_stream.each do |fmt| %>
<source src="<%= fmt["url"] %>" type="<%= fmt["type"].split(";")[0] %>">
<% end %>
<% end %>
</video>
2018-01-15 03:16:09 +00:00
<h1>
<%= video.info["title"] %>
<% if listen == "true" %>
<a class="link" href="/watch?v=<%= id %>">
<i class="fa fa-video-camera" aria-hidden="true"></i>
2018-01-04 02:06:16 +00:00
</a>
2018-01-15 03:16:09 +00:00
<% else %>
<a class="link" href="/watch?v=<%= id %>&listen=true">
<i class="fa fa-volume-up" aria-hidden="true"></i>
</a>
<% end %>
2018-01-04 02:06:16 +00:00
</h1>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
2018-01-15 03:16:09 +00:00
<p><i class="fa fa-eye" aria-hidden="true"></i> <%= views %></p>
<p><i class="fa fa-thumbs-up" aria-hidden="true"></i> <%= likes %></p>
<p><i class="fa fa-thumbs-down" aria-hidden="true"></i> <%= dislikes %></p>
<p id="Wilson">Wilson Score : <%= ci_lower_bound(likes, likes + dislikes).round(4) %></p>
<p id="Rating">Rating : <%= rating.round(4) %> / 5</p>
<p id="Engagement">Engagement : <%= engagement.round(2) %>%</p>
</div>
<div class="pure-u-1 pure-u-md-3-5">
<p><a class="link" href="https://youtube.com/channel/<%= video.info["ucid"] %>"><%= video.info["author"] %></a></p>
2018-01-15 03:16:09 +00:00
<p id="Description"><%= description %></p>
<% rvs.each do |rv| %>
<% rv.each do |value| %>
<p style="word-break: break-all"><%= value[0] %> => <%= value[1] %></p>
<% end %>
<br>
<% end %>
</div>
<div class="pure-u-1 pure-u-md-1-5">
2018-01-15 03:16:09 +00:00
<% rvs.each do |rv| %>
<% if rv.has_key?("id") %>
<p><a class="link" href="/watch?v=<%= rv["id"] %>"><%= rv["title"] %></a></p>
<% end %>
<% end %>
</div>
2018-01-07 17:50:04 +00:00
</div>
2017-11-23 07:48:55 +00:00
</div>