2022-04-20 14:08:24 +05:30
|
|
|
'use strict';
|
2020-03-16 03:16:08 +05:30
|
|
|
var player_data = JSON.parse(document.getElementById('player_data').innerHTML);
|
|
|
|
var video_data = JSON.parse(document.getElementById('video_data').innerHTML);
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
var options = {
|
2019-06-08 06:26:41 +05:30
|
|
|
preload: 'auto',
|
2019-05-20 22:45:48 +05:30
|
|
|
liveui: true,
|
2019-07-14 20:38:46 +05:30
|
|
|
playbackRates: [0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0],
|
2019-05-06 21:53:14 +05:30
|
|
|
controlBar: {
|
|
|
|
children: [
|
2019-06-08 06:26:41 +05:30
|
|
|
'playToggle',
|
|
|
|
'volumePanel',
|
|
|
|
'currentTimeDisplay',
|
|
|
|
'timeDivider',
|
|
|
|
'durationDisplay',
|
|
|
|
'progressControl',
|
|
|
|
'remainingTimeDisplay',
|
2021-05-03 14:55:32 +05:30
|
|
|
'Spacer',
|
2019-06-08 06:26:41 +05:30
|
|
|
'captionsButton',
|
|
|
|
'qualitySelector',
|
|
|
|
'playbackRateMenuButton',
|
|
|
|
'fullscreenToggle'
|
2019-05-06 21:53:14 +05:30
|
|
|
]
|
2021-01-17 07:13:36 +05:30
|
|
|
},
|
|
|
|
html5: {
|
2021-02-24 11:32:55 +05:30
|
|
|
preloadTextTracks: false,
|
2022-01-30 20:52:31 +05:30
|
|
|
vhs: {
|
2021-01-17 07:13:36 +05:30
|
|
|
overrideNative: true
|
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2019-05-06 21:53:14 +05:30
|
|
|
|
|
|
|
if (player_data.aspect_ratio) {
|
|
|
|
options.aspectRatio = player_data.aspect_ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
var embed_url = new URL(location);
|
|
|
|
embed_url.searchParams.delete('v');
|
2022-02-19 21:33:22 +05:30
|
|
|
var short_url = location.origin + '/' + video_data.id + embed_url.search;
|
2019-05-06 21:53:14 +05:30
|
|
|
embed_url = location.origin + '/embed/' + video_data.id + embed_url.search;
|
|
|
|
|
2021-10-27 04:55:29 +05:30
|
|
|
var save_player_pos_key = "save_player_pos";
|
2021-10-26 06:29:36 +05:30
|
|
|
|
2022-01-30 20:52:31 +05:30
|
|
|
videojs.Vhs.xhr.beforeRequest = function(options) {
|
2020-12-30 04:28:24 +05:30
|
|
|
if (options.uri.indexOf('videoplayback') === -1 && options.uri.indexOf('local=true') === -1) {
|
2020-12-08 11:17:26 +05:30
|
|
|
options.uri = options.uri + '?local=true';
|
|
|
|
}
|
|
|
|
return options;
|
|
|
|
};
|
|
|
|
|
2019-08-17 02:31:14 +05:30
|
|
|
var player = videojs('player', options);
|
2019-05-06 21:53:14 +05:30
|
|
|
|
2022-04-23 02:07:45 +05:30
|
|
|
player.on('error', () => {
|
|
|
|
if (video_data.params.quality !== 'dash') {
|
|
|
|
if (!player.currentSrc().includes("local=true") && !video_data.local_disabled) {
|
|
|
|
var currentSources = player.currentSources();
|
|
|
|
for (var i = 0; i < currentSources.length; i++) {
|
|
|
|
currentSources[i]["src"] += "&local=true"
|
|
|
|
}
|
|
|
|
player.src(currentSources)
|
|
|
|
}
|
|
|
|
else if (player.error().code === 2 || player.error().code === 4) {
|
|
|
|
setTimeout(function (event) {
|
|
|
|
console.log('An error occurred in the player, reloading...');
|
|
|
|
|
|
|
|
var currentTime = player.currentTime();
|
|
|
|
var playbackRate = player.playbackRate();
|
|
|
|
var paused = player.paused();
|
|
|
|
|
|
|
|
player.load();
|
|
|
|
|
|
|
|
if (currentTime > 0.5) currentTime -= 0.5;
|
|
|
|
|
|
|
|
player.currentTime(currentTime);
|
|
|
|
player.playbackRate(playbackRate);
|
|
|
|
|
|
|
|
if (!paused) player.play();
|
|
|
|
}, 10000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (video_data.params.quality == 'dash') {
|
|
|
|
player.reloadSourceOnError({
|
|
|
|
errorInterval: 10
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-19 21:33:22 +05:30
|
|
|
/**
|
|
|
|
* Function for add time argument to url
|
2022-02-22 05:14:36 +05:30
|
|
|
* @param {String} url
|
2022-02-19 21:33:22 +05:30
|
|
|
* @returns urlWithTimeArg
|
|
|
|
*/
|
|
|
|
function addCurrentTimeToURL(url) {
|
|
|
|
var urlUsed = new URL(url);
|
|
|
|
urlUsed.searchParams.delete('start');
|
|
|
|
var currentTime = Math.ceil(player.currentTime());
|
|
|
|
if (currentTime > 0)
|
|
|
|
urlUsed.searchParams.set('t', currentTime);
|
2022-02-22 04:57:00 +05:30
|
|
|
else if (urlUsed.searchParams.has('t'))
|
|
|
|
urlUsed.searchParams.delete('t');
|
2022-02-19 21:33:22 +05:30
|
|
|
return urlUsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
var shareOptions = {
|
|
|
|
socials: ['fbFeed', 'tw', 'reddit', 'email'],
|
|
|
|
|
|
|
|
get url() {
|
|
|
|
return addCurrentTimeToURL(short_url);
|
|
|
|
},
|
|
|
|
title: player_data.title,
|
|
|
|
description: player_data.description,
|
|
|
|
image: player_data.thumbnail,
|
|
|
|
get embedCode() {
|
|
|
|
return "<iframe id='ivplayer' width='640' height='360' src='" +
|
2022-02-22 04:51:47 +05:30
|
|
|
addCurrentTimeToURL(embed_url) + "' style='border:none;'></iframe>";
|
2022-02-19 21:33:22 +05:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-12-26 18:15:27 +05:30
|
|
|
const storage = (() => {
|
2022-02-08 04:38:52 +05:30
|
|
|
try { if (localStorage.length !== -1) return localStorage; }
|
|
|
|
catch (e) { console.info('No storage available: ' + e); }
|
|
|
|
|
2021-12-26 18:15:27 +05:30
|
|
|
return undefined;
|
|
|
|
})();
|
2020-12-08 11:17:26 +05:30
|
|
|
|
2019-06-08 21:22:47 +05:30
|
|
|
if (location.pathname.startsWith('/embed/')) {
|
2022-02-08 04:38:52 +05:30
|
|
|
var overlay_content = '<h1><a rel="noopener" target="_blank" href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>';
|
2019-06-08 21:22:47 +05:30
|
|
|
player.overlay({
|
2022-02-08 04:38:52 +05:30
|
|
|
overlays: [
|
|
|
|
{ start: 'loadstart', content: overlay_content, end: 'playing', align: 'top'},
|
|
|
|
{ start: 'pause', content: overlay_content, end: 'playing', align: 'top'}
|
|
|
|
]
|
2019-06-08 21:22:47 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-07 18:27:14 +05:30
|
|
|
// Detect mobile users and initialize mobileUi for better UX
|
2021-04-11 11:42:35 +05:30
|
|
|
// Detection code taken from https://stackoverflow.com/a/20293441
|
|
|
|
|
|
|
|
function isMobile() {
|
|
|
|
try{ document.createEvent("TouchEvent"); return true; }
|
|
|
|
catch(e){ return false; }
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isMobile()) {
|
2021-04-11 08:52:30 +05:30
|
|
|
player.mobileUi();
|
2021-04-11 11:42:35 +05:30
|
|
|
|
|
|
|
buttons = ["playToggle", "volumePanel", "captionsButton"];
|
|
|
|
|
2022-04-20 14:35:19 +05:30
|
|
|
if (video_data.params.quality !== 'dash') buttons.push("qualitySelector");
|
2021-04-11 11:42:35 +05:30
|
|
|
|
|
|
|
// Create new control bar object for operation buttons
|
|
|
|
const ControlBar = videojs.getComponent("controlBar");
|
|
|
|
let operations_bar = new ControlBar(player, {
|
|
|
|
children: [],
|
|
|
|
playbackRates: [0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0]
|
|
|
|
});
|
2022-04-20 14:35:19 +05:30
|
|
|
buttons.slice(1).forEach(child => operations_bar.addChild(child));
|
2021-04-11 11:42:35 +05:30
|
|
|
|
|
|
|
// Remove operation buttons from primary control bar
|
|
|
|
primary_control_bar = player.getChild("controlBar");
|
|
|
|
buttons.forEach(child => primary_control_bar.removeChild(child));
|
|
|
|
|
|
|
|
operations_bar_element = operations_bar.el();
|
2022-04-20 14:35:19 +05:30
|
|
|
operations_bar_element.className += " mobile-operations-bar";
|
|
|
|
player.addChild(operations_bar);
|
2021-04-11 11:42:35 +05:30
|
|
|
|
2022-02-07 18:27:14 +05:30
|
|
|
// Playback menu doesn't work when it's initialized outside of the primary control bar
|
2022-04-20 14:35:19 +05:30
|
|
|
playback_element = document.getElementsByClassName("vjs-playback-rate")[0];
|
|
|
|
operations_bar_element.append(playback_element);
|
2021-04-11 11:42:35 +05:30
|
|
|
|
|
|
|
// The share and http source selector element can't be fetched till the players ready.
|
|
|
|
player.one("playing", () => {
|
2022-04-20 14:35:19 +05:30
|
|
|
share_element = document.getElementsByClassName("vjs-share-control")[0];
|
|
|
|
operations_bar_element.append(share_element);
|
2021-04-11 11:42:35 +05:30
|
|
|
|
|
|
|
if (video_data.params.quality === 'dash') {
|
2022-04-20 14:35:19 +05:30
|
|
|
http_source_selector = document.getElementsByClassName("vjs-http-source-selector vjs-menu-button")[0];
|
|
|
|
operations_bar_element.append(http_source_selector);
|
2021-04-11 11:42:35 +05:30
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
});
|
2021-04-11 08:52:30 +05:30
|
|
|
}
|
|
|
|
|
2021-04-11 18:39:10 +05:30
|
|
|
// Enable VR video support
|
2021-09-15 05:07:23 +05:30
|
|
|
if (!video_data.params.listen && video_data.vr && video_data.params.vr_mode) {
|
2022-04-20 14:35:19 +05:30
|
|
|
player.crossOrigin("anonymous");
|
2021-09-10 13:12:39 +05:30
|
|
|
switch (video_data.projection_type) {
|
|
|
|
case "EQUIRECTANGULAR":
|
|
|
|
player.vr({projection: "equirectangular"});
|
|
|
|
default: // Should only be "MESH" but we'll use this as a fallback.
|
|
|
|
player.vr({projection: "EAC"});
|
|
|
|
}
|
2021-04-11 18:39:10 +05:30
|
|
|
}
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
// Add markers
|
|
|
|
if (video_data.params.video_start > 0 || video_data.params.video_end > 0) {
|
|
|
|
var markers = [{ time: video_data.params.video_start, text: 'Start' }];
|
|
|
|
|
|
|
|
if (video_data.params.video_end < 0) {
|
|
|
|
markers.push({ time: video_data.length_seconds - 0.5, text: 'End' });
|
|
|
|
} else {
|
|
|
|
markers.push({ time: video_data.params.video_end, text: 'End' });
|
|
|
|
}
|
|
|
|
|
|
|
|
player.markers({
|
|
|
|
onMarkerReached: function (marker) {
|
2022-02-08 04:38:52 +05:30
|
|
|
if (marker.text === 'End')
|
|
|
|
player.loop() ? player.markers.prev('Start') : player.pause();
|
2019-05-06 21:53:14 +05:30
|
|
|
},
|
|
|
|
markers: markers
|
|
|
|
});
|
|
|
|
|
|
|
|
player.currentTime(video_data.params.video_start);
|
|
|
|
}
|
|
|
|
|
|
|
|
player.volume(video_data.params.volume / 100);
|
|
|
|
player.playbackRate(video_data.params.speed);
|
|
|
|
|
2022-02-13 02:37:41 +05:30
|
|
|
/**
|
2022-04-09 23:28:49 +05:30
|
|
|
* Method for getting the contents of a cookie
|
|
|
|
*
|
2022-02-13 02:37:41 +05:30
|
|
|
* @param {String} name Name of cookie
|
|
|
|
* @returns cookieValue
|
|
|
|
*/
|
|
|
|
function getCookieValue(name) {
|
2022-02-18 02:52:04 +05:30
|
|
|
var value = document.cookie.split(";").filter(item => item.includes(name + "="));
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-04-20 14:43:16 +05:30
|
|
|
return (value.length >= 1)
|
2022-04-09 23:28:49 +05:30
|
|
|
? value[0].substring((name + "=").length, value[0].length)
|
|
|
|
: null;
|
2022-02-13 02:37:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-04-09 23:28:49 +05:30
|
|
|
* Method for updating the "PREFS" cookie (or creating it if missing)
|
|
|
|
*
|
|
|
|
* @param {number} newVolume New volume defined (null if unchanged)
|
|
|
|
* @param {number} newSpeed New speed defined (null if unchanged)
|
2022-02-13 02:37:41 +05:30
|
|
|
*/
|
|
|
|
function updateCookie(newVolume, newSpeed) {
|
2022-04-20 14:43:16 +05:30
|
|
|
var volumeValue = newVolume !== null ? newVolume : video_data.params.volume;
|
|
|
|
var speedValue = newSpeed !== null ? newSpeed : video_data.params.speed;
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-02-13 02:37:41 +05:30
|
|
|
var cookieValue = getCookieValue('PREFS');
|
2022-02-23 00:35:22 +05:30
|
|
|
var cookieData;
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-04-20 14:43:16 +05:30
|
|
|
if (cookieValue !== null) {
|
2022-02-13 02:37:41 +05:30
|
|
|
var cookieJson = JSON.parse(decodeURIComponent(cookieValue));
|
|
|
|
cookieJson.volume = volumeValue;
|
|
|
|
cookieJson.speed = speedValue;
|
2022-02-23 00:35:22 +05:30
|
|
|
cookieData = encodeURIComponent(JSON.stringify(cookieJson));
|
2022-02-13 02:37:41 +05:30
|
|
|
} else {
|
2022-02-23 00:35:22 +05:30
|
|
|
cookieData = encodeURIComponent(JSON.stringify({ 'volume': volumeValue, 'speed': speedValue }));
|
2022-02-13 02:37:41 +05:30
|
|
|
}
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-02-23 00:35:22 +05:30
|
|
|
// Set expiration in 2 year
|
2022-04-09 23:28:49 +05:30
|
|
|
var date = new Date();
|
2022-02-23 00:35:22 +05:30
|
|
|
date.setTime(date.getTime() + 63115200);
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-02-23 03:23:26 +05:30
|
|
|
var ipRegex = /^((\d+\.){3}\d+|[A-Fa-f0-9]*:[A-Fa-f0-9:]*:[A-Fa-f0-9:]+)$/;
|
2022-02-23 00:35:22 +05:30
|
|
|
var domainUsed = window.location.hostname;
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-04-09 23:34:42 +05:30
|
|
|
// Fix for a bug in FF where the leading dot in the FQDN is not ignored
|
2022-04-20 14:43:16 +05:30
|
|
|
if (domainUsed.charAt(0) !== '.' && !ipRegex.test(domainUsed) && domainUsed !== 'localhost')
|
2022-02-23 00:35:22 +05:30
|
|
|
domainUsed = '.' + window.location.hostname;
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-02-23 00:35:22 +05:30
|
|
|
document.cookie = 'PREFS=' + cookieData + '; SameSite=Strict; path=/; domain=' +
|
|
|
|
domainUsed + '; expires=' + date.toGMTString() + ';';
|
2022-04-09 23:28:49 +05:30
|
|
|
|
2022-02-13 02:37:41 +05:30
|
|
|
video_data.params.volume = volumeValue;
|
|
|
|
video_data.params.speed = speedValue;
|
2022-02-12 22:04:19 +05:30
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
|
2022-02-13 02:37:41 +05:30
|
|
|
player.on('ratechange', function () {
|
|
|
|
updateCookie(null, player.playbackRate());
|
|
|
|
});
|
|
|
|
|
|
|
|
player.on('volumechange', function () {
|
|
|
|
updateCookie(Math.ceil(player.volume() * 100), null);
|
|
|
|
});
|
|
|
|
|
2019-05-20 22:45:48 +05:30
|
|
|
player.on('waiting', function () {
|
|
|
|
if (player.playbackRate() > 1 && player.liveTracker.isLive() && player.liveTracker.atLiveEdge()) {
|
2022-04-20 14:35:19 +05:30
|
|
|
console.log('Player has caught up to source, resetting playbackRate.');
|
2019-05-20 22:45:48 +05:30
|
|
|
player.playbackRate(1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-06-08 20:48:45 +05:30
|
|
|
if (video_data.premiere_timestamp && Math.round(new Date() / 1000) < video_data.premiere_timestamp) {
|
|
|
|
player.getChild('bigPlayButton').hide();
|
|
|
|
}
|
|
|
|
|
2021-10-27 04:55:29 +05:30
|
|
|
if (video_data.params.save_player_pos) {
|
2021-11-18 06:55:47 +05:30
|
|
|
const url = new URL(location);
|
|
|
|
const hasTimeParam = url.searchParams.has("t");
|
2021-10-26 06:29:36 +05:30
|
|
|
const remeberedTime = get_video_time();
|
|
|
|
let lastUpdated = 0;
|
|
|
|
|
2022-02-08 04:38:52 +05:30
|
|
|
if(!hasTimeParam) set_seconds_after_start(remeberedTime);
|
2021-10-26 06:29:36 +05:30
|
|
|
|
2021-10-27 04:13:28 +05:30
|
|
|
const updateTime = () => {
|
2021-10-26 06:29:36 +05:30
|
|
|
const raw = player.currentTime();
|
|
|
|
const time = Math.floor(raw);
|
|
|
|
|
2021-12-31 07:54:08 +05:30
|
|
|
if(lastUpdated !== time && raw <= video_data.length_seconds - 15) {
|
2021-10-26 06:29:36 +05:30
|
|
|
save_video_time(time);
|
|
|
|
lastUpdated = time;
|
|
|
|
}
|
2021-10-27 04:13:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
player.on("timeupdate", updateTime);
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
2022-02-08 04:38:52 +05:30
|
|
|
else remove_all_video_times();
|
2021-10-26 06:29:36 +05:30
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
if (video_data.params.autoplay) {
|
|
|
|
var bpb = player.getChild('bigPlayButton');
|
2019-06-08 20:48:45 +05:30
|
|
|
bpb.hide();
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
});
|
2019-06-08 20:48:45 +05:30
|
|
|
});
|
2019-05-06 21:53:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (!video_data.params.listen && video_data.params.quality === 'dash') {
|
|
|
|
player.httpSourceSelector();
|
2020-12-13 14:46:26 +05:30
|
|
|
|
2022-04-20 14:43:16 +05:30
|
|
|
if (video_data.params.quality_dash !== "auto") {
|
2020-12-13 14:46:26 +05:30
|
|
|
player.ready(() => {
|
|
|
|
player.on("loadedmetadata", () => {
|
|
|
|
const qualityLevels = Array.from(player.qualityLevels()).sort((a, b) => a.height - b.height);
|
2020-12-19 22:18:20 +05:30
|
|
|
let targetQualityLevel;
|
|
|
|
switch (video_data.params.quality_dash) {
|
|
|
|
case "best":
|
|
|
|
targetQualityLevel = qualityLevels.length - 1;
|
|
|
|
break;
|
|
|
|
case "worst":
|
|
|
|
targetQualityLevel = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
const targetHeight = Number.parseInt(video_data.params.quality_dash, 10);
|
|
|
|
for (let i = 0; i < qualityLevels.length; i++) {
|
|
|
|
if (qualityLevels[i].height <= targetHeight) {
|
|
|
|
targetQualityLevel = i;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-13 14:46:26 +05:30
|
|
|
for (let i = 0; i < qualityLevels.length; i++) {
|
2022-04-20 14:43:16 +05:30
|
|
|
qualityLevels[i].enabled = (i === targetQualityLevel);
|
2020-12-13 14:46:26 +05:30
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
player.vttThumbnails({
|
2020-11-09 02:32:25 +05:30
|
|
|
src: location.origin + '/api/v1/storyboards/' + video_data.id + '?height=90',
|
|
|
|
showTimestamp: true
|
2019-05-06 21:53:14 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
// Enable annotations
|
2019-05-09 19:06:36 +05:30
|
|
|
if (!video_data.params.listen && video_data.params.annotations) {
|
2019-10-18 22:14:11 +05:30
|
|
|
window.addEventListener('load', function (e) {
|
|
|
|
var video_container = document.getElementById('player');
|
|
|
|
let xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'text';
|
|
|
|
xhr.timeout = 60000;
|
|
|
|
xhr.open('GET', '/api/v1/annotations/' + video_data.id, true);
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status === 200) {
|
|
|
|
videojs.registerPlugin('youtubeAnnotationsPlugin', youtubeAnnotationsPlugin);
|
|
|
|
if (!player.paused()) {
|
2019-05-06 21:53:14 +05:30
|
|
|
player.youtubeAnnotationsPlugin({ annotationXml: xhr.response, videoContainer: video_container });
|
2019-10-18 22:14:11 +05:30
|
|
|
} else {
|
|
|
|
player.one('play', function (event) {
|
|
|
|
player.youtubeAnnotationsPlugin({ annotationXml: xhr.response, videoContainer: video_container });
|
|
|
|
});
|
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
window.addEventListener('__ar_annotation_click', e => {
|
|
|
|
const { url, target, seconds } = e.detail;
|
|
|
|
var path = new URL(url);
|
2019-05-06 21:53:14 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (path.href.startsWith('https://www.youtube.com/watch?') && seconds) {
|
|
|
|
path.search += '&t=' + seconds;
|
|
|
|
}
|
2019-05-06 21:53:14 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
path = path.pathname + path.search;
|
2019-05-06 21:53:14 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (target === 'current') {
|
|
|
|
window.location.href = path;
|
|
|
|
} else if (target === 'new') {
|
|
|
|
window.open(path, '_blank');
|
|
|
|
}
|
|
|
|
});
|
2019-06-15 20:38:06 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
xhr.send();
|
|
|
|
});
|
2019-05-06 21:53:14 +05:30
|
|
|
}
|
|
|
|
|
2019-08-17 02:31:14 +05:30
|
|
|
function increase_volume(delta) {
|
|
|
|
const curVolume = player.volume();
|
|
|
|
let newVolume = curVolume + delta;
|
|
|
|
if (newVolume > 1) {
|
|
|
|
newVolume = 1;
|
|
|
|
} else if (newVolume < 0) {
|
|
|
|
newVolume = 0;
|
|
|
|
}
|
|
|
|
player.volume(newVolume);
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggle_muted() {
|
|
|
|
const isMuted = player.muted();
|
|
|
|
player.muted(!isMuted);
|
|
|
|
}
|
|
|
|
|
|
|
|
function skip_seconds(delta) {
|
|
|
|
const duration = player.duration();
|
|
|
|
const curTime = player.currentTime();
|
|
|
|
let newTime = curTime + delta;
|
|
|
|
if (newTime > duration) {
|
|
|
|
newTime = duration;
|
|
|
|
} else if (newTime < 0) {
|
|
|
|
newTime = 0;
|
|
|
|
}
|
|
|
|
player.currentTime(newTime);
|
|
|
|
}
|
|
|
|
|
2021-10-26 06:29:36 +05:30
|
|
|
function set_seconds_after_start(delta) {
|
|
|
|
const start = video_data.params.video_start;
|
|
|
|
player.currentTime(start + delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
function save_video_time(seconds) {
|
|
|
|
const videoId = video_data.id;
|
|
|
|
const all_video_times = get_all_video_times();
|
|
|
|
|
|
|
|
all_video_times[videoId] = seconds;
|
|
|
|
|
|
|
|
set_all_video_times(all_video_times);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_video_time() {
|
|
|
|
try {
|
|
|
|
const videoId = video_data.id;
|
|
|
|
const all_video_times = get_all_video_times();
|
|
|
|
const timestamp = all_video_times[videoId];
|
|
|
|
|
2021-10-27 04:13:28 +05:30
|
|
|
return timestamp || 0;
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
|
|
|
catch {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_all_video_times(times) {
|
2021-12-26 18:15:27 +05:30
|
|
|
if (storage) {
|
|
|
|
if (times) {
|
|
|
|
try {
|
|
|
|
storage.setItem(save_player_pos_key, JSON.stringify(times));
|
|
|
|
} catch (e) {
|
|
|
|
console.debug('set_all_video_times: ' + e);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
storage.removeItem(save_player_pos_key);
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
function get_all_video_times() {
|
2021-12-26 18:15:27 +05:30
|
|
|
if (storage) {
|
|
|
|
const raw = storage.getItem(save_player_pos_key);
|
|
|
|
if (raw !== null) {
|
|
|
|
try {
|
|
|
|
return JSON.parse(raw);
|
|
|
|
} catch (e) {
|
|
|
|
console.debug('get_all_video_times: ' + e);
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
2021-12-26 18:15:27 +05:30
|
|
|
return {};
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
function remove_all_video_times() {
|
2021-12-26 18:15:27 +05:30
|
|
|
set_all_video_times(null);
|
2021-10-26 06:29:36 +05:30
|
|
|
}
|
|
|
|
|
2019-08-17 02:31:14 +05:30
|
|
|
function set_time_percent(percent) {
|
|
|
|
const duration = player.duration();
|
|
|
|
const newTime = duration * (percent / 100);
|
|
|
|
player.currentTime(newTime);
|
|
|
|
}
|
|
|
|
|
2022-02-08 04:38:52 +05:30
|
|
|
function play() { player.play(); }
|
|
|
|
function pause() { player.pause(); }
|
|
|
|
function stop() { player.pause(); player.currentTime(0); }
|
|
|
|
function toggle_play() { player.paused() ? play() : pause(); }
|
2019-08-17 02:31:14 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
const toggle_captions = (function () {
|
2019-08-17 02:31:14 +05:30
|
|
|
let toggledTrack = null;
|
2019-10-18 22:14:11 +05:30
|
|
|
const onChange = function (e) {
|
2019-08-17 02:31:14 +05:30
|
|
|
toggledTrack = null;
|
|
|
|
};
|
2019-10-18 22:14:11 +05:30
|
|
|
const bindChange = function (onOrOff) {
|
2019-08-17 02:31:14 +05:30
|
|
|
player.textTracks()[onOrOff]('change', onChange);
|
|
|
|
};
|
|
|
|
// Wrapper function to ignore our own emitted events and only listen
|
|
|
|
// to events emitted by Video.js on click on the captions menu items.
|
2019-10-18 22:14:11 +05:30
|
|
|
const setMode = function (track, mode) {
|
2019-08-17 02:31:14 +05:30
|
|
|
bindChange('off');
|
|
|
|
track.mode = mode;
|
2019-10-18 22:14:11 +05:30
|
|
|
window.setTimeout(function () {
|
2019-08-17 02:31:14 +05:30
|
|
|
bindChange('on');
|
|
|
|
}, 0);
|
|
|
|
};
|
|
|
|
bindChange('on');
|
2019-10-18 22:14:11 +05:30
|
|
|
return function () {
|
2019-08-17 02:31:14 +05:30
|
|
|
if (toggledTrack !== null) {
|
|
|
|
if (toggledTrack.mode !== 'showing') {
|
|
|
|
setMode(toggledTrack, 'showing');
|
|
|
|
} else {
|
|
|
|
setMode(toggledTrack, 'disabled');
|
|
|
|
}
|
|
|
|
toggledTrack = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used as a fallback if no captions are currently active.
|
|
|
|
// TODO: Make this more intelligent by e.g. relying on browser language.
|
|
|
|
let fallbackCaptionsTrack = null;
|
|
|
|
|
|
|
|
const tracks = player.textTracks();
|
|
|
|
for (let i = 0; i < tracks.length; i++) {
|
|
|
|
const track = tracks[i];
|
2022-02-08 04:38:52 +05:30
|
|
|
if (track.kind !== 'captions') continue;
|
2019-08-17 02:31:14 +05:30
|
|
|
|
|
|
|
if (fallbackCaptionsTrack === null) {
|
|
|
|
fallbackCaptionsTrack = track;
|
|
|
|
}
|
|
|
|
if (track.mode === 'showing') {
|
|
|
|
setMode(track, 'disabled');
|
|
|
|
toggledTrack = track;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback if no captions are currently active.
|
|
|
|
if (fallbackCaptionsTrack !== null) {
|
|
|
|
setMode(fallbackCaptionsTrack, 'showing');
|
|
|
|
toggledTrack = fallbackCaptionsTrack;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
function toggle_fullscreen() {
|
2022-02-08 04:38:52 +05:30
|
|
|
player.isFullscreen() ? player.exitFullscreen() : player.requestFullscreen();
|
2019-08-17 02:31:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
function increase_playback_rate(steps) {
|
|
|
|
const maxIndex = options.playbackRates.length - 1;
|
|
|
|
const curIndex = options.playbackRates.indexOf(player.playbackRate());
|
|
|
|
let newIndex = curIndex + steps;
|
|
|
|
if (newIndex > maxIndex) {
|
|
|
|
newIndex = maxIndex;
|
|
|
|
} else if (newIndex < 0) {
|
|
|
|
newIndex = 0;
|
|
|
|
}
|
|
|
|
player.playbackRate(options.playbackRates[newIndex]);
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('keydown', e => {
|
|
|
|
if (e.target.tagName.toLowerCase() === 'input') {
|
|
|
|
// Ignore input when focus is on certain elements, e.g. form fields.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// See https://github.com/ctd1500/videojs-hotkeys/blob/bb4a158b2e214ccab87c2e7b95f42bc45c6bfd87/videojs.hotkeys.js#L310-L313
|
|
|
|
const isPlayerFocused = false
|
|
|
|
|| e.target === document.querySelector('.video-js')
|
|
|
|
|| e.target === document.querySelector('.vjs-tech')
|
|
|
|
|| e.target === document.querySelector('.iframeblocker')
|
|
|
|
|| e.target === document.querySelector('.vjs-control-bar')
|
2019-10-18 22:14:11 +05:30
|
|
|
;
|
2019-08-17 02:31:14 +05:30
|
|
|
let action = null;
|
|
|
|
|
|
|
|
const code = e.keyCode;
|
2019-08-19 09:52:39 +05:30
|
|
|
const decoratedKey =
|
|
|
|
e.key
|
2019-10-18 22:14:11 +05:30
|
|
|
+ (e.altKey ? '+alt' : '')
|
2019-08-19 09:52:39 +05:30
|
|
|
+ (e.ctrlKey ? '+ctrl' : '')
|
|
|
|
+ (e.metaKey ? '+meta' : '')
|
2019-10-18 22:14:11 +05:30
|
|
|
;
|
2019-08-19 09:52:39 +05:30
|
|
|
switch (decoratedKey) {
|
2019-10-18 22:14:11 +05:30
|
|
|
case ' ':
|
|
|
|
case 'k':
|
2019-08-19 15:40:25 +05:30
|
|
|
case 'MediaPlayPause':
|
2019-10-18 22:14:11 +05:30
|
|
|
action = toggle_play;
|
|
|
|
break;
|
|
|
|
|
2022-02-08 04:38:52 +05:30
|
|
|
case 'MediaPlay': action = play; break;
|
|
|
|
case 'MediaPause': action = pause; break;
|
|
|
|
case 'MediaStop': action = stop; break;
|
2019-08-19 15:40:25 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
case 'ArrowUp':
|
2022-02-08 04:38:52 +05:30
|
|
|
if (isPlayerFocused) action = increase_volume.bind(this, 0.1);
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
case 'ArrowDown':
|
2022-02-08 04:38:52 +05:30
|
|
|
if (isPlayerFocused) action = increase_volume.bind(this, -0.1);
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
action = toggle_muted;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ArrowRight':
|
2019-08-19 15:40:25 +05:30
|
|
|
case 'MediaFastForward':
|
2021-02-17 19:03:26 +05:30
|
|
|
action = skip_seconds.bind(this, 5 * player.playbackRate());
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
case 'ArrowLeft':
|
2019-08-19 15:40:25 +05:30
|
|
|
case 'MediaTrackPrevious':
|
2021-02-17 19:03:26 +05:30
|
|
|
action = skip_seconds.bind(this, -5 * player.playbackRate());
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
case 'l':
|
2021-02-17 19:03:26 +05:30
|
|
|
action = skip_seconds.bind(this, 10 * player.playbackRate());
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
case 'j':
|
2021-02-17 19:03:26 +05:30
|
|
|
action = skip_seconds.bind(this, -10 * player.playbackRate());
|
2019-10-18 22:14:11 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case '0':
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
2022-02-08 04:31:53 +05:30
|
|
|
// Ignore numpad numbers
|
|
|
|
if (code > 57) break;
|
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
const percent = (code - 48) * 10;
|
|
|
|
action = set_time_percent.bind(this, percent);
|
|
|
|
break;
|
|
|
|
|
2022-02-08 04:38:52 +05:30
|
|
|
case 'c': action = toggle_captions; break;
|
|
|
|
case 'f': action = toggle_fullscreen; break;
|
2019-10-18 22:14:11 +05:30
|
|
|
|
|
|
|
case 'N':
|
2019-08-19 15:40:25 +05:30
|
|
|
case 'MediaTrackNext':
|
2019-10-18 22:14:11 +05:30
|
|
|
action = next_video;
|
|
|
|
break;
|
|
|
|
case 'P':
|
2019-08-19 15:40:25 +05:30
|
|
|
case 'MediaTrackPrevious':
|
2019-10-18 22:14:11 +05:30
|
|
|
// TODO: Add support to play back previous video.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '.':
|
|
|
|
// TODO: Add support for next-frame-stepping.
|
|
|
|
break;
|
|
|
|
case ',':
|
|
|
|
// TODO: Add support for previous-frame-stepping.
|
|
|
|
break;
|
|
|
|
|
2022-02-08 04:38:52 +05:30
|
|
|
case '>': action = increase_playback_rate.bind(this, 1); break;
|
|
|
|
case '<': action = increase_playback_rate.bind(this, -1); break;
|
2019-10-18 22:14:11 +05:30
|
|
|
|
|
|
|
default:
|
|
|
|
console.info('Unhandled key down event: %s:', decoratedKey, e);
|
|
|
|
break;
|
2019-08-17 02:31:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (action) {
|
|
|
|
e.preventDefault();
|
|
|
|
action();
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
// Add support for controlling the player volume by scrolling over it. Adapted from
|
|
|
|
// https://github.com/ctd1500/videojs-hotkeys/blob/bb4a158b2e214ccab87c2e7b95f42bc45c6bfd87/videojs.hotkeys.js#L292-L328
|
2019-10-18 22:14:11 +05:30
|
|
|
(function () {
|
2019-08-17 02:31:14 +05:30
|
|
|
const volumeStep = 0.05;
|
|
|
|
const enableVolumeScroll = true;
|
|
|
|
const enableHoverScroll = true;
|
|
|
|
const doc = document;
|
|
|
|
const pEl = document.getElementById('player');
|
|
|
|
|
|
|
|
var volumeHover = false;
|
|
|
|
var volumeSelector = pEl.querySelector('.vjs-volume-menu-button') || pEl.querySelector('.vjs-volume-panel');
|
2022-04-20 14:43:16 +05:30
|
|
|
if (volumeSelector !== null) {
|
2019-10-18 22:14:11 +05:30
|
|
|
volumeSelector.onmouseover = function () { volumeHover = true; };
|
|
|
|
volumeSelector.onmouseout = function () { volumeHover = false; };
|
2019-08-17 02:31:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var mouseScroll = function mouseScroll(event) {
|
2019-10-18 22:14:11 +05:30
|
|
|
var activeEl = doc.activeElement;
|
|
|
|
if (enableHoverScroll) {
|
|
|
|
// If we leave this undefined then it can match non-existent elements below
|
|
|
|
activeEl = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// When controls are disabled, hotkeys will be disabled as well
|
|
|
|
if (player.controls()) {
|
|
|
|
if (volumeHover) {
|
|
|
|
if (enableVolumeScroll) {
|
|
|
|
event = window.event || event;
|
|
|
|
var delta = Math.max(-1, Math.min(1, (event.wheelDelta || -event.detail)));
|
|
|
|
event.preventDefault();
|
|
|
|
|
2022-04-20 14:43:16 +05:30
|
|
|
if (delta === 1) {
|
2019-10-18 22:14:11 +05:30
|
|
|
increase_volume(volumeStep);
|
2022-04-20 14:43:16 +05:30
|
|
|
} else if (delta === -1) {
|
2019-10-18 22:14:11 +05:30
|
|
|
increase_volume(-volumeStep);
|
|
|
|
}
|
|
|
|
}
|
2019-08-17 02:31:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
player.on('mousewheel', mouseScroll);
|
|
|
|
player.on("DOMMouseScroll", mouseScroll);
|
|
|
|
}());
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
// Since videojs-share can sometimes be blocked, we defer it until last
|
2020-12-13 14:46:26 +05:30
|
|
|
if (player.share) {
|
|
|
|
player.share(shareOptions);
|
|
|
|
}
|
2021-02-01 13:29:27 +05:30
|
|
|
|
2021-02-24 11:32:55 +05:30
|
|
|
// show the preferred caption by default
|
|
|
|
if (player_data.preferred_caption_found) {
|
|
|
|
player.ready(() => {
|
|
|
|
player.textTracks()[1].mode = 'showing';
|
|
|
|
});
|
2021-02-27 00:29:16 +05:30
|
|
|
}
|
|
|
|
|
2021-02-02 18:55:13 +05:30
|
|
|
// Safari audio double duration fix
|
2022-04-20 14:43:16 +05:30
|
|
|
if (navigator.vendor === "Apple Computer, Inc." && video_data.params.listen) {
|
2021-02-03 09:20:14 +05:30
|
|
|
player.on('loadedmetadata', function () {
|
2021-02-01 13:29:27 +05:30
|
|
|
player.on('timeupdate', function () {
|
2022-03-27 16:02:00 +05:30
|
|
|
if (player.remainingTime() < player.duration() / 2 && player.remainingTime() >= 2) {
|
|
|
|
player.currentTime(player.duration() - 1);
|
2021-02-01 13:29:27 +05:30
|
|
|
}
|
2021-02-09 22:35:29 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2021-04-08 16:45:15 +05:30
|
|
|
|
|
|
|
// Watch on Invidious link
|
|
|
|
if (window.location.pathname.startsWith("/embed/")) {
|
|
|
|
const Button = videojs.getComponent('Button');
|
|
|
|
let watch_on_invidious_button = new Button(player);
|
|
|
|
|
|
|
|
// Create hyperlink for current instance
|
|
|
|
redirect_element = document.createElement("a");
|
2022-04-20 14:35:19 +05:30
|
|
|
redirect_element.setAttribute("href", `//${window.location.host}/watch?v=${window.location.pathname.replace("/embed/","")}`);
|
|
|
|
redirect_element.appendChild(document.createTextNode("Invidious"));
|
2021-04-08 16:45:15 +05:30
|
|
|
|
2022-04-20 14:35:19 +05:30
|
|
|
watch_on_invidious_button.el().appendChild(redirect_element);
|
|
|
|
watch_on_invidious_button.addClass("watch-on-invidious");
|
2021-04-08 16:45:15 +05:30
|
|
|
|
2022-04-20 14:35:19 +05:30
|
|
|
cb = player.getChild('ControlBar');
|
|
|
|
cb.addChild(watch_on_invidious_button);
|
|
|
|
}
|