invidious/src/views/watch.ecr

72 行
2.5 KiB
Plaintext
Raw 通常表示 履歴

2018-01-08 02:40:03 +09:00
<% content_for "header" do %>
2018-01-08 02:49:48 +09:00
<%= video.info["title"] + " - " %>
2018-01-08 02:40:03 +09:00
<% end %>
2018-01-15 12:16:09 +09:00
2018-01-16 11:30:57 +09:00
<script>
function setRate(rate) {
var video = document.getElementById("player")
video.playbackRate = rate;
};
function toggle() {
var video = document.getElementById("player")
if (video.paused == true) {
video.play();
} else {
video.pause();
};
};
</script>
<video id="player" onclick="toggle()" onplay="setRate(<%= speed %>)" style="width: 100%" poster="<%= player_response["videoDetails"]["thumbnail"]["thumbnails"][-1]["url"] %>" controls>
2018-01-15 12:16:09 +09:00
<% if listen == "true" %>
2018-01-04 11:06:16 +09: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 11:06:16 +09:00
<% else %>
<% fmt_stream.each do |fmt| %>
<source src="<%= fmt["url"] %>" type="<%= fmt["type"].split(";")[0] %>">
<% end %>
<% end %>
</video>
2018-01-16 11:30:57 +09:00
2018-01-15 12:16:09 +09:00
<h1>
<%= video.info["title"] %>
<% if listen == "true" %>
2018-01-16 11:30:57 +09:00
<a class="link" href="/watch?<%= env.params.query %>">
2018-01-15 12:16:09 +09:00
<i class="fa fa-video-camera" aria-hidden="true"></i>
2018-01-04 11:06:16 +09:00
</a>
2018-01-15 12:16:09 +09:00
<% else %>
2018-01-16 11:30:57 +09:00
<a class="link" href="/watch?<%= env.params.query %>&listen=true">
2018-01-15 12:16:09 +09:00
<i class="fa fa-volume-up" aria-hidden="true"></i>
</a>
<% end %>
2018-01-04 11:06:16 +09:00
</h1>
2018-01-16 11:30:57 +09:00
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
2018-01-15 12:16:09 +09: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>
2018-01-16 11:30:57 +09:00
<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 12:16:09 +09:00
<p id="Description"><%= description %></p>
</div>
2018-01-16 11:30:57 +09:00
<div class="pure-u-1 pure-u-md-1-5">
2018-01-15 12:16:09 +09: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-08 02:50:04 +09:00
</div>