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
|
|
|
|
2018-01-16 19:58:08 +00:00
|
|
|
<video id="player" class="video-js" data-setup="{}" style="width:100%" controls>
|
2018-01-15 03:16:09 +00:00
|
|
|
<% 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 %>
|
2017-12-30 21:30:21 +00:00
|
|
|
<% 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 %>
|
2018-01-16 19:58:08 +00:00
|
|
|
</video>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var options = {
|
|
|
|
poster: "<%= player_response["videoDetails"]["thumbnail"]["thumbnails"][-1]["url"] %>",
|
|
|
|
aspectRatio: "16:9",
|
|
|
|
preload: "auto",
|
|
|
|
playbackRates: [0.5, 1, 1.5, 2]
|
|
|
|
};
|
|
|
|
var player = videojs('player', options, function() {
|
|
|
|
this.hotkeys({
|
|
|
|
volumeStep: 0.1,
|
|
|
|
seekStep: 5,
|
|
|
|
enableModifiersForNumbers: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2018-01-16 02:30:57 +00:00
|
|
|
|
2018-01-16 19:58:08 +00:00
|
|
|
<h1>
|
|
|
|
<%= video.info["title"] %>
|
|
|
|
<% if listen == "true" %>
|
2018-01-16 02:30:57 +00:00
|
|
|
<a class="link" href="/watch?<%= env.params.query %>">
|
2018-01-16 19:58:08 +00:00
|
|
|
<i class="fa fa-video-camera" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
<% else %>
|
2018-01-16 02:30:57 +00:00
|
|
|
<a class="link" href="/watch?<%= env.params.query %>&listen=true">
|
2018-01-16 19:58:08 +00:00
|
|
|
<i class="fa fa-volume-up" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
<% end %>
|
|
|
|
</h1>
|
2018-01-16 02:30:57 +00:00
|
|
|
|
2018-01-16 19:58:08 +00:00
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
|
|
|
<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 02:30:57 +00:00
|
|
|
|
2018-01-16 19:58:08 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-3-5">
|
|
|
|
<p>
|
|
|
|
<a class="link" href="https://youtube.com/channel/<%= video.info["ucid"] %>">
|
|
|
|
<h3><%= video.info["author"] %></h3>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<%= description %>
|
|
|
|
</div>
|
2018-01-16 02:30:57 +00:00
|
|
|
|
2018-01-16 19:58:08 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
|
|
|
<% rvs.each do |rv| %>
|
2018-01-15 03:16:09 +00:00
|
|
|
<% if rv.has_key?("id") %>
|
2018-01-16 19:58:08 +00:00
|
|
|
<p><a class="link" href="/watch?v=<%= rv["id"] %>"><%= rv["title"] %></a></p>
|
2018-01-15 03:16:09 +00:00
|
|
|
<% end %>
|
2018-01-16 19:58:08 +00:00
|
|
|
<% end %>
|
2018-01-07 17:50:04 +00:00
|
|
|
</div>
|
2018-01-16 19:58:08 +00:00
|
|
|
</div>
|