2018-07-14 13:36:31 +00:00
|
|
|
<!DOCTYPE html>
|
2019-04-28 14:17:35 +00:00
|
|
|
<html lang="<%= env.get("preferences").as(Preferences).locale %>">
|
2018-07-14 13:36:31 +00:00
|
|
|
|
|
|
|
<head>
|
2018-08-11 15:52:13 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="thumbnail" content="<%= thumbnail %>">
|
|
|
|
<%= rendered "components/player_sources" %>
|
|
|
|
<link rel="stylesheet" href="/css/default.css">
|
|
|
|
<title><%= HTML.escape(video.title) %> - Invidious</title>
|
|
|
|
<style>
|
2019-03-17 16:57:29 +00:00
|
|
|
#player {
|
2019-03-23 19:05:13 +00:00
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
2018-08-11 15:52:13 +00:00
|
|
|
bottom: 0;
|
2019-03-23 19:05:13 +00:00
|
|
|
min-width: 100%;
|
2018-08-11 15:52:13 +00:00
|
|
|
min-height: 100%;
|
2019-03-23 19:05:13 +00:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2018-08-11 15:52:13 +00:00
|
|
|
z-index: -100;
|
|
|
|
}
|
|
|
|
</style>
|
2018-07-14 13:36:31 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-04-13 19:26:32 +00:00
|
|
|
<script>
|
2019-05-06 16:23:14 +00:00
|
|
|
var video_data = {
|
2019-05-06 15:37:10 +00:00
|
|
|
id: '<%= video.id %>',
|
|
|
|
plid: '<%= plid %>',
|
2019-05-06 16:23:14 +00:00
|
|
|
length_seconds: '<%= video.info["length_seconds"].to_f %>',
|
2019-05-06 15:37:10 +00:00
|
|
|
video_series: <%= video_series.to_json %>,
|
|
|
|
params: <%= params.to_json %>,
|
|
|
|
preferences: <%= preferences.to_json %>
|
2019-04-13 19:26:32 +00:00
|
|
|
}
|
|
|
|
</script>
|
2019-05-06 16:23:14 +00:00
|
|
|
|
|
|
|
<%= rendered "components/player" %>
|
2019-05-06 15:37:10 +00:00
|
|
|
<script src="/js/embed.js"></script>
|
2018-07-14 13:36:31 +00:00
|
|
|
</body>
|
2018-08-17 16:04:38 +00:00
|
|
|
</html>
|