2019-04-11 22:03:37 +00:00
|
|
|
<video style="outline:none;width:100%;background-color:#000" playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>"
|
2018-08-11 15:52:13 +00:00
|
|
|
id="player" class="video-js"
|
2018-11-26 01:01:04 +00:00
|
|
|
onmouseenter='this["data-title"]=this["title"];this["title"]=""'
|
|
|
|
onmouseleave='this["title"]=this["data-title"];this["data-title"]=""'
|
|
|
|
oncontextmenu='this["title"]=this["data-title"]'
|
2018-08-26 01:05:51 +00:00
|
|
|
<% if params[:autoplay] %>autoplay<% end %>
|
|
|
|
<% if params[:video_loop] %>loop<% end %>
|
|
|
|
<% if params[:controls] %>controls<% end %>>
|
2018-08-11 15:52:13 +00:00
|
|
|
<% if hlsvp %>
|
2019-04-25 17:41:35 +00:00
|
|
|
<source src="<%= hlsvp %>?local=true" type="application/x-mpegURL" label="livestream">
|
2018-08-11 15:52:13 +00:00
|
|
|
<% else %>
|
2018-08-26 01:05:51 +00:00
|
|
|
<% if params[:listen] %>
|
2018-08-11 15:52:13 +00:00
|
|
|
<% audio_streams.each_with_index do |fmt, i| %>
|
2019-03-11 16:43:48 +00:00
|
|
|
<source src="/latest_version?id=<%= video.id %>&itag=<%= fmt["itag"] %><% if params[:local] %>&local=true<% end %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
|
2018-08-11 15:52:13 +00:00
|
|
|
<% end %>
|
|
|
|
<% else %>
|
2018-09-25 00:28:36 +00:00
|
|
|
<% if params[:quality] == "dash" %>
|
|
|
|
<source src="/api/manifest/dash/id/<%= video.id %>?local=true" type='application/dash+xml' label="dash">
|
|
|
|
<% end %>
|
2018-08-11 15:52:13 +00:00
|
|
|
<% fmt_stream.each_with_index do |fmt, i| %>
|
2018-08-26 01:05:51 +00:00
|
|
|
<% if params[:quality] %>
|
2019-03-11 16:43:48 +00:00
|
|
|
<source src="/latest_version?id=<%= video.id %>&itag=<%= fmt["itag"] %><% if params[:local] %>&local=true<% end %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= params[:quality] == fmt["label"].split(" - ")[0] %>">
|
2018-08-11 15:52:13 +00:00
|
|
|
<% else %>
|
2019-03-11 16:43:48 +00:00
|
|
|
<source src="/latest_version?id=<%= video.id %>&itag=<%= fmt["itag"] %><% if params[:local] %>&local=true<% end %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= i == 0 ? true : false %>">
|
2018-08-11 15:52:13 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% preferred_captions.each_with_index do |caption, i| %>
|
2019-03-11 17:44:25 +00:00
|
|
|
<track kind="captions" src="/api/v1/captions/<%= video.id %>?label=<%= caption.name.simpleText %>&hl=<%= env.get("preferences").as(Preferences).locale %>"
|
2018-08-11 15:52:13 +00:00
|
|
|
label="<%= caption.name.simpleText %>" <% if i == 0 %>default<% end %>>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% captions.each do |caption| %>
|
2019-03-11 17:44:25 +00:00
|
|
|
<track kind="captions" src="/api/v1/captions/<%= video.id %>?label=<%= caption.name.simpleText %>&hl=<%= env.get("preferences").as(Preferences).locale %>"
|
2018-08-11 15:52:13 +00:00
|
|
|
label="<%= caption.name.simpleText %>">
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2018-12-09 02:12:22 +00:00
|
|
|
</video>
|
2018-08-11 15:52:13 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
var options = {
|
|
|
|
<% if aspect_ratio %>
|
|
|
|
aspectRatio: "<%= aspect_ratio %>",
|
|
|
|
<% end %>
|
|
|
|
preload: "auto",
|
2019-03-23 16:14:15 +00:00
|
|
|
playbackRates: [0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 2.0],
|
2018-08-11 15:52:13 +00:00
|
|
|
controlBar: {
|
|
|
|
children: [
|
|
|
|
"playToggle",
|
|
|
|
"volumePanel",
|
|
|
|
"currentTimeDisplay",
|
|
|
|
"timeDivider",
|
|
|
|
"durationDisplay",
|
|
|
|
"progressControl",
|
|
|
|
"remainingTimeDisplay",
|
|
|
|
"captionsButton",
|
|
|
|
"qualitySelector",
|
|
|
|
"playbackRateMenuButton",
|
|
|
|
"fullscreenToggle"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var shareOptions = {
|
2019-04-12 14:31:05 +00:00
|
|
|
socials: ["fbFeed", "tw", "reddit", "email"],
|
2018-08-11 15:52:13 +00:00
|
|
|
|
2019-04-12 14:31:05 +00:00
|
|
|
url: window.location.href,
|
2018-08-11 15:52:13 +00:00
|
|
|
title: "<%= video.title.dump_unquoted %>",
|
|
|
|
description: "<%= description %>",
|
|
|
|
image: "<%= thumbnail %>",
|
2018-09-13 23:12:19 +00:00
|
|
|
embedCode: "<iframe id='ivplayer' type='text/html' width='640' height='360' \
|
|
|
|
src='<%= host_url %>/embed/<%= video.id %>?<%= host_params %>' frameborder='0'></iframe>"
|
2018-08-11 15:52:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var player = videojs("player", options, function() {
|
|
|
|
this.hotkeys({
|
|
|
|
volumeStep: 0.1,
|
|
|
|
seekStep: 5,
|
|
|
|
enableModifiersForNumbers: false,
|
2019-03-23 16:09:31 +00:00
|
|
|
enableHoverScroll: true,
|
2018-08-11 15:52:13 +00:00
|
|
|
customKeys: {
|
2019-03-17 17:17:53 +00:00
|
|
|
// Toggle play with K Key
|
2018-08-11 15:52:13 +00:00
|
|
|
play: {
|
|
|
|
key: function(e) {
|
|
|
|
return e.which === 75;
|
|
|
|
},
|
|
|
|
handler: function(player, options, e) {
|
|
|
|
if (player.paused()) {
|
|
|
|
player.play();
|
|
|
|
} else {
|
|
|
|
player.pause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-03-17 17:17:53 +00:00
|
|
|
// Go backward 5 seconds
|
2018-08-11 15:52:13 +00:00
|
|
|
backward: {
|
|
|
|
key: function(e) {
|
|
|
|
return e.which === 74;
|
|
|
|
},
|
|
|
|
handler: function(player, options, e) {
|
2019-04-19 14:20:41 +00:00
|
|
|
player.currentTime(player.currentTime() - 10);
|
2018-08-11 15:52:13 +00:00
|
|
|
}
|
|
|
|
},
|
2019-03-17 17:17:53 +00:00
|
|
|
// Go forward 5 seconds
|
2018-08-11 15:52:13 +00:00
|
|
|
forward: {
|
|
|
|
key: function(e) {
|
|
|
|
return e.which === 76;
|
|
|
|
},
|
|
|
|
handler: function(player, options, e) {
|
2019-04-19 14:20:41 +00:00
|
|
|
player.currentTime(player.currentTime() + 10);
|
2018-08-11 15:52:13 +00:00
|
|
|
}
|
2019-03-17 17:17:53 +00:00
|
|
|
},
|
|
|
|
// Increase speed
|
|
|
|
increase_speed: {
|
|
|
|
key: function(e) {
|
2019-04-19 14:20:41 +00:00
|
|
|
return (e.which === 190 && e.shiftKey);
|
2019-03-17 17:17:53 +00:00
|
|
|
},
|
|
|
|
handler: function(player, _, e) {
|
|
|
|
size = options.playbackRates.length;
|
|
|
|
index = options.playbackRates.indexOf(player.playbackRate());
|
|
|
|
player.playbackRate(options.playbackRates[(index + 1) % size]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Decrease speed
|
|
|
|
decrease_speed: {
|
|
|
|
key: function(e) {
|
2019-04-19 14:20:41 +00:00
|
|
|
return (e.which === 188 && e.shiftKey);
|
2019-03-17 17:17:53 +00:00
|
|
|
},
|
|
|
|
handler: function(player, _, e) {
|
|
|
|
size = options.playbackRates.length;
|
|
|
|
index = options.playbackRates.indexOf(player.playbackRate());
|
|
|
|
player.playbackRate(options.playbackRates[(size + index - 1) % size]);
|
|
|
|
}
|
2018-08-11 15:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-01-29 02:45:08 +00:00
|
|
|
player.on('error', function(event) {
|
2019-01-30 01:55:27 +00:00
|
|
|
if (player.error().code === 2 || player.error().code === 4) {
|
2019-01-31 15:09:00 +00:00
|
|
|
setInterval(setTimeout(function (event) {
|
|
|
|
console.log("An error occured in the player, reloading...");
|
2019-01-29 02:45:08 +00:00
|
|
|
|
2019-01-31 15:09:00 +00:00
|
|
|
var currentTime = player.currentTime();
|
|
|
|
var playbackRate = player.playbackRate();
|
2019-02-02 21:27:19 +00:00
|
|
|
var paused = player.paused();
|
2019-02-01 02:25:58 +00:00
|
|
|
|
2019-01-31 15:09:00 +00:00
|
|
|
player.load();
|
|
|
|
if (currentTime > 0.5) {
|
|
|
|
currentTime -= 0.5;
|
|
|
|
}
|
|
|
|
player.currentTime(currentTime);
|
|
|
|
player.playbackRate(playbackRate);
|
2019-03-23 19:05:13 +00:00
|
|
|
|
2019-02-01 02:25:58 +00:00
|
|
|
if (!paused) {
|
|
|
|
player.play();
|
|
|
|
}
|
2019-01-31 15:09:00 +00:00
|
|
|
}, 5000), 5000);
|
2019-01-29 02:45:08 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-08-26 01:05:51 +00:00
|
|
|
<% if params[:video_start] > 0 || params[:video_end] > 0 %>
|
2018-08-11 15:52:13 +00:00
|
|
|
player.markers({
|
|
|
|
onMarkerReached: function(marker) {
|
|
|
|
if (marker.text === "End") {
|
|
|
|
if (player.loop()) {
|
|
|
|
player.markers.prev("Start");
|
|
|
|
} else {
|
|
|
|
player.pause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
markers: [
|
2018-08-26 01:05:51 +00:00
|
|
|
{ time: <%= params[:video_start] %>, text: "Start" },
|
|
|
|
<% if params[:video_end] < 0 %>
|
2018-08-11 15:52:13 +00:00
|
|
|
{ time: <%= video.info["length_seconds"].to_f - 0.5 %>, text: "End" }
|
|
|
|
<% else %>
|
2018-08-26 01:05:51 +00:00
|
|
|
{ time: <%= params[:video_end] %>, text: "End" }
|
2018-08-11 15:52:13 +00:00
|
|
|
<% end %>
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2018-08-26 01:05:51 +00:00
|
|
|
player.currentTime(<%= params[:video_start] %>);
|
2018-08-11 15:52:13 +00:00
|
|
|
<% end %>
|
|
|
|
|
2018-08-26 01:05:51 +00:00
|
|
|
player.volume(<%= params[:volume].to_f / 100 %>);
|
|
|
|
player.playbackRate(<%= params[:speed] %>);
|
2018-11-28 03:18:20 +00:00
|
|
|
|
|
|
|
<% if params[:autoplay] %>
|
|
|
|
var bpb = player.getChild('bigPlayButton');
|
|
|
|
|
|
|
|
if (bpb) {
|
|
|
|
bpb.hide();
|
2019-03-23 19:05:13 +00:00
|
|
|
|
2018-11-28 03:18:20 +00:00
|
|
|
player.ready(function() {
|
|
|
|
new Promise(function(resolve, reject) {
|
|
|
|
setTimeout(() => resolve(1), 1);
|
|
|
|
}).then(function(result) {
|
|
|
|
var promise = player.play();
|
|
|
|
|
|
|
|
if (promise !== undefined) {
|
|
|
|
promise.then(_ => {
|
|
|
|
}).catch(error => {
|
|
|
|
bpb.show();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
<% end %>
|
2019-03-05 21:22:04 +00:00
|
|
|
|
|
|
|
// Since videojs-share can sometimes be blocked, we try to load it last
|
|
|
|
player.share(shareOptions);
|
2018-08-11 15:52:13 +00:00
|
|
|
</script>
|