invidious/src/invidious/views/watch.ecr

273 行
9.0 KiB
Plaintext
Raw 通常表示 履歴

2018-01-08 02:40:03 +09:00
<% content_for "header" do %>
2018-03-08 07:48:26 +09:00
<meta name="thumbnail" content="<%= thumbnail %>">
2018-07-10 02:17:57 +09:00
<link rel="stylesheet" href="https://unpkg.com/video.js@6.10.3/dist/video-js.min.css">
<link rel="stylesheet" href="https://unpkg.com/silvermine-videojs-quality-selector@1.1.2/dist/css/quality-selector.css">
<script src="https://unpkg.com/video.js@6.10.3/dist/video.min.js"></script>
<script src="https://unpkg.com/videojs-hotkeys@0.2.21/videojs.hotkeys.min.js"></script>
<script src="https://unpkg.com/silvermine-videojs-quality-selector@1.1.2/dist/js/silvermine-videojs-quality-selector.min.js"></script>
<script src="https://unpkg.com/videojs-offset@2.0.0-beta.2/dist/videojs-offset.min.js"></script>
2018-01-28 11:10:08 +09:00
<title><%= video.title %> - Invidious</title>
2018-01-08 02:40:03 +09:00
<% end %>
2018-01-15 12:16:09 +09:00
2018-03-13 08:37:01 +09:00
<div class="h-box">
2018-07-20 00:30:54 +09:00
<video style="width:100%" playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>"
id="player" class="video-js vjs-16-9" data-setup="{}"
<% if autoplay %>autoplay<% end %>
<% if video_loop %>loop<% end %>
2018-07-20 00:30:54 +09:00
controls>
2018-06-09 04:38:59 +09:00
<% if listen %>
<% audio_streams.each_with_index do |fmt, i| %>
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
<% end %>
<% else %>
<% fmt_stream.each_with_index do |fmt, i| %>
2018-07-17 01:24:24 +09:00
<% if preferences %>
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= preferences.quality == fmt["label"].split(" - ")[0] %>">
<% else %>
2018-06-09 04:38:59 +09:00
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= i == 0 ? true : false %>">
2018-07-17 01:24:24 +09:00
<% end %>
<% end %>
2018-07-23 01:09:43 +09:00
<% captions.each do |caption| %>
<track kind="captions" src="/captions/<%= video.id %>?label=<%= caption["name"]["simpleText"] %>"
srclang="<%= caption["languageCode"] %>" label="<%= caption["name"]["simpleText"]%> ">
<% end %>
2018-06-09 04:38:59 +09:00
<% end %>
</video>
2018-03-12 02:05:56 +09:00
</div>
2018-01-17 04:58:08 +09:00
<script>
var options = {
preload: "auto",
2018-03-14 08:37:56 +09:00
playbackRates: [0.5, 1, 1.5, 2],
controlBar: {
children: [
'playToggle',
'volumePanel',
'progressControl',
'remainingTimeDisplay',
2018-07-23 01:09:43 +09:00
'captionsButton',
2018-03-14 08:37:56 +09:00
'qualitySelector',
'playbackRateMenuButton',
'fullscreenToggle',
],
},
2018-01-17 04:58:08 +09:00
};
2018-07-21 04:50:55 +09:00
2018-01-17 04:58:08 +09:00
var player = videojs('player', options, function() {
this.hotkeys({
volumeStep: 0.1,
seekStep: 5,
2018-02-06 09:36:16 +09:00
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);
}
}
}
2018-01-17 04:58:08 +09:00
});
});
2018-07-17 01:24:24 +09:00
<% if preferences %>
player.volume(<%= preferences.volume.to_f / 100 %>);
2018-07-17 01:57:52 +09:00
player.playbackRate(<%= preferences.speed %>);
2018-07-17 01:24:24 +09:00
<% end %>
2018-04-06 10:46:32 +09:00
player.offset({
start: <%= video_start %>,
end: <%= video_end %>
2018-04-06 10:46:32 +09:00
});
2018-03-04 06:06:14 +09:00
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 = '';
}
2018-03-13 08:36:08 +09:00
};
function toggle_comments(target) {
body = target.parentNode.parentNode.parentNode.children[1];
if (body.style.display === null || body.style.display === '') {
target.innerHTML = '[ + ]';
body.style.display = 'none';
} else {
target.innerHTML = '[ - ]';
body.style.display = '';
2018-03-14 08:37:56 +09:00
}
2018-03-13 08:36:08 +09:00
};
2018-04-12 07:24:50 +09:00
<% if !listen %>
var currentSources = player.currentSources();
for ( var i = 0; i < currentSources.length; i++ ) {
if (player.canPlayType(currentSources[i]["type"].split(";")[0]) === "") {
currentSources.splice(i);
i--;
}
}
player.src(currentSources);
2018-04-12 07:24:50 +09:00
<% end %>
fetch("/comments/<%= video.id %>?source=reddit")
.then(function(response) {
return response.json();
})
.then(function(jsonResponse) {
comments = document.getElementById('comments');
comments.innerHTML = `
<div>
<h3>
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a>
{title}
</h3>
<b>
<a target="_blank" href="https://reddit.com{permalink}">View more comments on Reddit</a>
</b>
</div>
<div>{content_html}</div>
</div>
<hr style="margin-left:1em; margin-right:1em;">`.supplant({
title: jsonResponse.title,
permalink: jsonResponse.permalink,
content_html: jsonResponse.content_html
})
2018-07-21 04:50:55 +09:00
}, function(response){
comments.innerHTML = "";
});
String.prototype.supplant = function (o) {
return this.replace(/{([^{}]*)}/g,
function (a, b) {
var r = o[b];
return typeof r === 'string' || typeof r === 'number' ? r : a;
}
);
};
2018-01-17 04:58:08 +09:00
</script>
2018-01-16 11:30:57 +09:00
2018-03-13 08:37:01 +09:00
<div class="h-box">
2018-01-17 04:58:08 +09:00
<h1>
2018-06-03 12:15:15 +09:00
<%= video.title %>
2018-02-12 08:01:32 +09:00
<% if listen %>
<a href="/watch?<%= env.params.query %>">
2018-02-12 08:01:32 +09:00
<i class="fa fa-video" aria-hidden="true"></i>
2018-01-17 04:58:08 +09:00
</a>
<% else %>
<a href="/watch?<%= env.params.query %>&listen=true">
2018-01-17 04:58:08 +09:00
<i class="fa fa-volume-up" aria-hidden="true"></i>
</a>
<% end %>
</h1>
2018-03-12 02:05:56 +09:00
</div>
2018-01-16 11:30:57 +09:00
2018-01-17 04:58:08 +09:00
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
2018-04-18 05:53:12 +09:00
<div class="h-box">
<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>
2018-04-08 10:09:20 +09:00
<% if ad_slots %>
2018-04-11 11:09:31 +09:00
<p id="Slots">Ad Slots : <%= ad_slots %></p>
2018-04-08 10:09:20 +09:00
<% end %>
<% if engage_types %>
2018-04-11 11:09:31 +09:00
<p id="Engage">Engage Types : <%= engage_types %></p>
2018-04-08 10:09:20 +09:00
<% end %>
<% if ad_tag %>
2018-04-11 11:09:31 +09:00
<p id="Category">Ad Category : <%= ad_category %></p>
<p id="Tags">Ad Tags(?) : <%= k2 %></p>
2018-04-08 10:09:20 +09:00
<% end %>
</div>
2018-03-12 02:05:56 +09:00
</div>
2018-01-16 11:30:57 +09:00
2018-01-17 04:58:08 +09:00
<div class="pure-u-1 pure-u-md-3-5">
2018-04-18 05:53:12 +09:00
<div class="h-box">
<p>
2018-06-03 12:15:15 +09:00
<a href="/channel/<%= video.ucid %>">
<h3><%= video.author %></h3>
</a>
</p>
2018-07-17 01:24:24 +09:00
<% if user %>
2018-06-03 12:15:15 +09:00
<% if subscriptions.includes? video.ucid %>
2018-03-31 23:51:14 +09:00
<p>
2018-06-03 12:15:15 +09:00
<a href="/subscription_ajax?action_remove_subscriptions=1&c=<%= video.ucid %>">
<b>Unsubscribe from <%= video.author %></b>
2018-03-31 23:51:14 +09:00
</a>
</p>
<% else %>
<p>
2018-06-03 12:15:15 +09:00
<a href="/subscription_ajax?action_create_subscription_to_channel=1&c=<%= video.ucid %>">
<b>Subscribe to <%= video.author %></b>
2018-03-31 23:51:14 +09:00
</a>
</p>
<% end %>
2018-05-04 10:36:27 +09:00
<% else %>
<p>
<a href="/login">
2018-06-03 12:15:15 +09:00
<b>Login to subscribe to <%= video.author %></b>
2018-05-04 10:36:27 +09:00
</a>
</p>
2018-03-31 23:51:14 +09:00
<% end %>
<p>
<b>Shared <%= video.published.to_s("%B %-d, %Y") %></b>
</p>
2018-04-18 05:53:12 +09:00
<div>
<%= video.description %>
</div>
2018-03-12 02:05:56 +09:00
<hr style="margin-left:1em; margin-right:1em;">
<div id="comments">
<h3><center><i class="loading fas fa-spinner"></i></center></h3>
2018-03-13 08:36:08 +09:00
</div>
2018-03-14 08:37:56 +09:00
</div>
2018-03-12 02:05:56 +09:00
</div>
2018-01-17 04:58:08 +09:00
<div class="pure-u-1 pure-u-md-1-5">
2018-04-18 05:53:12 +09:00
<div class="h-box">
<% 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 %>
2018-01-15 12:16:09 +09:00
<% end %>
</div>
2018-01-08 02:50:04 +09:00
</div>
2018-01-17 04:58:08 +09:00
</div>