mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
133 lines
4.2 KiB
Text
133 lines
4.2 KiB
Text
<% content_for "header" do %>
|
|
<meta name="thumbnail" content="<%= thumbnail %>">
|
|
<link rel="stylesheet" href="https://vjs.zencdn.net/6.6.3/video-js.css">
|
|
<script src="https://vjs.zencdn.net/6.6.3/video.js"></script>
|
|
<script src="https://cdn.sc.gl/videojs-hotkeys/latest/videojs.hotkeys.min.js"></script>
|
|
<title><%= video.title %> - Invidious</title>
|
|
<% end %>
|
|
|
|
<% if listen %>
|
|
<%= render "src/views/player/audio.ecr" %>
|
|
<% else %>
|
|
<%= render "src/views/player/video.ecr" %>
|
|
<% end %>
|
|
|
|
<script>
|
|
var options = {
|
|
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,
|
|
enableVolumeScroll: false,
|
|
customKeys: {
|
|
play: {
|
|
key: function(e) {
|
|
// Toggle play with K Key
|
|
return (e.which === 75);
|
|
},
|
|
handler: function(player, options, e) {
|
|
if (player.paused()) {
|
|
player.play();
|
|
} else {
|
|
player.pause();
|
|
}
|
|
}
|
|
},
|
|
backward: {
|
|
key: function(e) {
|
|
// Go backward 5 seconds
|
|
return (e.which === 74);
|
|
},
|
|
handler: function(player, options, e) {
|
|
player.currentTime(player.currentTime() - 5);
|
|
}
|
|
},
|
|
forward: {
|
|
key: function(e) {
|
|
// Go forward 5 seconds
|
|
return (e.which === 76);
|
|
},
|
|
handler: function(player, options, e) {
|
|
player.currentTime(player.currentTime() + 5);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
function toggle(target) {
|
|
body = target.parentNode.parentNode.children[1];
|
|
if (body.style.display === null || body.style.display === '') {
|
|
target.innerHTML = '[ + ]';
|
|
body.style.display = 'none';
|
|
} else {
|
|
target.innerHTML = '[ - ]';
|
|
body.style.display = '';
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<h1>
|
|
<%= video.info["title"] %>
|
|
<% if listen %>
|
|
<a href="/watch?<%= env.params.query %>">
|
|
<i class="fa fa-video" aria-hidden="true"></i>
|
|
</a>
|
|
<% else %>
|
|
<a href="/watch?<%= env.params.query %>&listen=true">
|
|
<i class="fa fa-volume-up" aria-hidden="true"></i>
|
|
</a>
|
|
<% end %>
|
|
</h1>
|
|
|
|
<div class="pure-g">
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
|
<p><i class="fa fa-eye" aria-hidden="true"></i> <%= number_with_separator(video.views) %></p>
|
|
<p><i class="fa fa-thumbs-up" aria-hidden="true"></i> <%= number_with_separator(video.likes) %></p>
|
|
<p><i class="fa fa-thumbs-down" aria-hidden="true"></i> <%= number_with_separator(video.dislikes) %></p>
|
|
<p id="Wilson">Wilson Score : <%= video.wilson_score.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 href="https://youtube.com/channel/<%= video.info["ucid"] %>">
|
|
<h3><%= video.info["author"] %></h3>
|
|
</a>
|
|
</p>
|
|
<p>
|
|
<b>Shared <%= video.published.to_s("%B %-d, %Y") %></b>
|
|
</p>
|
|
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
|
|
<%= video.description %>
|
|
</div>
|
|
<hr style="margin-right:1em;">
|
|
<% if reddit_thread && !reddit_html.empty? %>
|
|
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
|
|
<h3><%= reddit_thread.data.title %></h3>
|
|
<b>
|
|
<a target="_blank" href="https://reddit.com<%= reddit_thread.data.permalink %>">View more comments on Reddit</a>
|
|
</b>
|
|
<%= reddit_html %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
|
<% rvs.each do |rv| %>
|
|
<% if rv.has_key?("id") %>
|
|
<a href="/watch?v=<%= rv["id"] %>">
|
|
<img style="width:100%;" alt="thumbnail" src="<%= rv["iurlmq"] %>">
|
|
<p style="width:100%"><%= rv["title"] %></p>
|
|
<p><b style="width: 100%"><%= rv["author"] %></b></p>
|
|
</a>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|