// ==UserScript==
// @name HTML5 Video Player Enhance
// @version 2.9.4
// @description To enhance the functionality of HTML5 Video Player (h5player) supporting all websites using shortcut keys similar to PotPlayer.
// @author CY Fung
// @match http://*/*
// @match https://*/*
// @run-at document-start
// @require https://cdnjs.cloudflare.com/ajax/libs/js-sha256/0.9.0/sha256.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/mathjs/9.3.2/math.js
// @namespace https://greasyfork.org/users/371179
// @grant GM_getValue
// @grant GM_setValue
// @grant unsafeWindow
// @downloadURL none
// ==/UserScript==
/**
* Remarks
* This script support modern browser only with ES6+.
* fullscreen and pointerLock buggy in shadowRoot
* Space Pause not success
* shift F key issue
**/
(function $$($$uWin) {
'use strict';
if (!document || !document.documentElement) return window.requestAnimationFrame($$);
const $bz={boosted:false}
//document.nmm=[]
!(function(window) {
const $$setTimeout = window.setTimeout
const $$clearTimeout = window.clearTimeout
const $$requestAnimationFrame = window.requestAnimationFrame;
const $$cancelAnimationFrame = window.cancelAnimationFrame;
const $$bind = Function.prototype.bind
Function.prototype.bind=function(){
const bf=$$bind.apply(this,arguments)
bf.__bind_func__=[...arguments]
return bf
}
window.setTimeout = function() {
let f = arguments[0]
let d = arguments[1] || 0;
let res;
//if($bz.boosted) document.nmm.push(d)
if ($bz.boosted && typeof f == 'function' && (arguments.length == 2 || arguments.length == 1)) {
// f : function arguments.length = 1 or 2
// setTimeout(f,d)
if(d>40){
if(!f.__timeout__g__){
f.__timeout__g__= function(){
queueMicrotask(()=>f.apply(this,arguments))
}
}
res = $$setTimeout.call(window, f.__timeout__g__, d)
if (res > 0) res = res << 1;
return res;
}else{
//1000/40=25
res = $$requestAnimationFrame.call(window, f)
if (res > 0) {
res = res << 1;
res |= 1;
}
}
return res;
}
res = $$setTimeout.apply(this, arguments)
if (res > 0) res = res << 1;
return res;
}
window.clearTimeout = function() {
let cid = arguments[0]
if (cid > 0) {
let res;
if (cid & 1) {
cid = cid >> 1;
res = $$cancelAnimationFrame.call(window, cid);
} else {
arguments[0] = arguments[0] >> 1;
res = $$clearTimeout.apply(this, arguments);
}
return res;
} else {
return $$clearTimeout.apply(this, arguments);
}
}
})(window.unsafeWindow || window);
let _debug_h5p_logging_ = false;
try {
_debug_h5p_logging_ = +window.localStorage.getItem('_h5_player_sLogging_') > 0
} catch (e) {}
const SHIFT = 1;
const CTRL = 2;
const ALT = 4;
const TERMINATE = 0x842;
const _sVersion_ = 1817;
const str_postMsgData = '__postMsgData__'
const DOM_ACTIVE_FOUND = 1;
const DOM_ACTIVE_SRC_LOADED = 2;
const DOM_ACTIVE_ONCE_PLAYED = 4;
const DOM_ACTIVE_MOUSE_CLICK = 8;
const DOM_ACTIVE_MOUSE_IN = 16;
const DOM_ACTIVE_DELAYED_PAUSED = 32;
const DOM_ACTIVE_INVALID_PARENT = 2048;
var console = {};
console.log = function() {
window.console.log(...['[h5p]', ...arguments])
}
console.error = function() {
window.console.error(...['[h5p]', ...arguments])
}
function makeNoRoot(shadowRoot) {
const doc = shadowRoot.ownerDocument || document;
const htmlInShadowRoot = doc.createElement('noroot'); // pseudo element
const childNodes = [...shadowRoot.childNodes]
shadowRoot.insertBefore(htmlInShadowRoot, shadowRoot.firstChild)
for (const childNode of childNodes) htmlInShadowRoot.appendChild(childNode);
return shadowRoot.querySelector('noroot');
}
let _endlessloop = null;
const isIframe = (window.top !== window.self && window.top && window.self);
const shadowRoots = [];
const getRoot = (elm) => elm.getRootNode instanceof Function ? elm.getRootNode() : (elm.ownerDocument || null);
const isShadowRoot = (elm) => (elm && ('host' in elm)) ? elm.nodeType == 11 && !!elm.host && elm.host.nodeType == 1 : null; //instanceof ShadowRoot
const domAppender = (d) => d.querySelector('head') || d.querySelector('html') || d.querySelector('noroot') || null;
const playerConfs = {}
const hanlderResizeVideo = (entries) => {
const detected_changes = {};
for (let entry of entries) {
const player = entry.target.nodeName == "VIDEO" ? entry.target : entry.target.querySelector("VIDEO[_h5ppid]");
if (!player) continue;
const vpid = player.getAttribute('_h5ppid');
if (!vpid) continue;
if (vpid in detected_changes) continue;
detected_changes[vpid] = true;
const wPlayer = $hs.getPlayerBlockElement(player, true)
if (!wPlayer) continue;
const layoutBox = wPlayer.parentNode
if (!layoutBox) continue;
const tipsDom = layoutBox.querySelector('[_potTips_]');
if (!tipsDom) continue;
$hs.fixNonBoxingVideoTipsPosition(tipsDom, player);
window.requestAnimationFrame(() => $hs.fixNonBoxingVideoTipsPosition(tipsDom, player))
}
};
const $mb = {
nightly_isSupportQueueMicrotask: function() {
if ('_isSupportQueueMicrotask' in $mb) return $mb._isSupportQueueMicrotask;
$mb._isSupportQueueMicrotask = false;
$mb.queueMicrotask = window.queueMicrotask;
if (typeof $mb.queueMicrotask == 'function') {
$mb._isSupportQueueMicrotask = true;
}
return $mb._isSupportQueueMicrotask;
},
stable_isSupportAdvancedEventListener: function() {
if ('_isSupportAdvancedEventListener' in $mb) return $mb._isSupportAdvancedEventListener
let prop = 0;
document.createAttribute('z').addEventListener('', null, {
get passive() {
prop++;
},
get once() {
prop++;
}
});
return ($mb._isSupportAdvancedEventListener = (prop == 2));
}
}
const $ws = {
requestAnimationFrame,
cancelAnimationFrame,
MutationObserver,
setInterval,
clearInterval
}
//throw Error if your browser is too outdated. (eg ES6 script, no such window object)
Element.prototype.__matches__ = (Element.prototype.matches || Element.prototype.matchesSelector ||
Element.prototype.mozMatchesSelector || Element.prototype.msMatchesSelector ||
Element.prototype.oMatchesSelector || Element.prototype.webkitMatchesSelector ||
Element.prototype.matches()); // throw Error if not supported
Element.prototype.__requestPointerLock__ = (Element.prototype.requestPointerLock ||
Element.prototype.mozRequestPointerLock || Element.prototype.webkitRequestPointerLock || function() {});
// Ask the browser to release the pointer
Document.prototype.__exitPointerLock__ = (Document.prototype.exitPointerLock ||
Document.prototype.mozExitPointerLock || Document.prototype.webkitExitPointerLock || function() {});
// built-in hash - https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/digest
async function digestMessage(message) {
return window.sha256(message)
}
const dround = (x) => ~~(x + .5);
const jsonStringify_replacer = function(key, val) {
if (val && (val instanceof Element || val instanceof Document)) return val.toString();
return val; // return as is
};
const jsonParse = function() {
try {
return JSON.parse.apply(this, arguments)
} catch (e) {}
return null;
}
const jsonStringify = function(obj) {
try {
return JSON.stringify.call(this, obj, jsonStringify_replacer)
} catch (e) {}
return null;
}
function _postMsg() {
//async is needed. or error handling for postMessage
const [win, tag, ...data] = arguments;
if (typeof tag == 'string') {
let postMsgObj = {
tag,
passing: true,
winOrder: _postMsg.a
}
try {
let k = 'msg-' + (+new Date)
win.document[str_postMsgData] = win.document[str_postMsgData] || {}
win.document[str_postMsgData][k] = data; //direct
postMsgObj.str = k;
postMsgObj.stype = 1;
} catch (e) {}
if (!postMsgObj.stype) {
postMsgObj.str = jsonStringify({
d: data
})
if (postMsgObj.str && postMsgObj.str.length) postMsgObj.stype = 2;
}
if (!postMsgObj.stype) {
postMsgObj.str = "" + data;
postMsgObj.stype = 0;
}
win.postMessage(postMsgObj, '*');
}
}
function postMsg() {
let win = window;
let a = 0;
while (win = win.parent) {
_postMsg.a = ++a;
_postMsg(win, ...arguments)
if (win == top) break;
}
}
function crossBrowserTransition(type) {
if (crossBrowserTransition['_result_' + type]) return crossBrowserTransition['_result_' + type]
let el = document.createElement("fakeelement");
const capital = (x) => x[0].toUpperCase() + x.substr(1);
const capitalType = capital(type);
const transitions = {
[type]: `${type}end`,
[`O${capitalType}`]: `o${capitalType}End`,
[`Moz${capitalType}`]: `${type}end`,
[`Webkit${capitalType}`]: `webkit${capitalType}End`,
[`MS${capitalType}`]: `MS${capitalType}End`
}
for (let styleProp in transitions) {
if (el.style[styleProp] !== undefined) {
return (crossBrowserTransition['_result_' + type] = transitions[styleProp]);
}
}
}
function isInOperation(elm) {
let elmInFocus = elm || document.activeElement;
if (!elmInFocus) return false;
let res1 = elmInFocus.__matches__(
'a[href],link[href],button,input:not([type="hidden"]),select,textarea,iframe,frame,menuitem,[draggable],[contenteditable]'
);
return res1;
}
const fn_toString = (f, n = 50) => {
let s = (f + "");
if (s.length > 2 * n + 5) {
s = s.substr(0, n) + ' ... ' + s.substr(-n);
}
return s
};
function consoleLog() {
if (!_debug_h5p_logging_) return;
if (isIframe) postMsg('consoleLog', ...arguments);
else console.log.apply(console, arguments);
}
function consoleLogF() {
if (isIframe) postMsg('consoleLog', ...arguments);
else console.log.apply(console, arguments);
}
class AFLooperArray extends Array {
constructor() {
super();
this.activeLoopsCount = 0;
this.cid = 0;
this.loopingFrame = this.loopingFrame.bind(this);
}
loopingFrame() {
if (!this.cid) return; //cancelled
for (const opt of this) {
if (opt.isFunctionLooping) opt.qn(opt.fn);
}
}
get isArrayLooping() {
return this.cid > 0;
}
loopStart() {
this.cid = $ws.setInterval(this.loopingFrame, 300);
}
loopStop() {
if (this.cid) $ws.clearInterval(this.cid);
this.cid = 0;
}
appendLoop(fn) {
if (typeof fn != 'function' || !this) return;
const opt = new AFLooperFunc(fn, this);
super.push(opt);
return opt;
}
}
class AFLooperFunc {
constructor(fn, bind) {
this._looping = false;
this.fn = fn.bind(this);
if ($mb.nightly_isSupportQueueMicrotask()) this.qn = $mb.queueMicrotask;
else this.qn = this.fn; //qn(fn) = qn() = fn()
this.bind = bind;
}
get isFunctionLooping() {
return this._looping;
}
loopingStart() {
if (this._looping === false) {
this._looping = true;
if (++this.bind.activeLoopsCount == 1) this.bind.loopStart();
}
}
loopingStop() {
if (this._looping === true) {
this._looping = false;
if (--this.bind.activeLoopsCount == 0) this.bind.loopStop();
}
}
}
function decimalEqual(a, b) {
return Math.round(a * 100000000) == Math.round(b * 100000000)
}
function nonZeroNum(a) {
return a > 0 || a < 0;
}
class PlayerConf {
get scaleFactor() {
return this.mFactor * this.vFactor;
}
cssTransform() {
const playerConf = this;
const player = playerConf.domElement;
if (!player) return;
const videoScale = playerConf.scaleFactor;
let {
x,
y
} = playerConf.translate;
let [_x, _y] = ((playerConf.rotate % 180) == 90) ? [y, x] : [x, y];
if ((playerConf.rotate % 360) == 270) _x = -_x;
if ((playerConf.rotate % 360) == 90) _y = -_y;
var s = [
playerConf.rotate > 0 ? 'rotate(' + playerConf.rotate + 'deg)' : '',
!decimalEqual(videoScale, 1.0) ? 'scale(' + videoScale + ')' : '',
(nonZeroNum(_x) || nonZeroNum(_y)) ? `translate(${_x}px, ${_y}px)` : '',
];
player.style.transform = s.join(' ').trim()
}
constructor() {
this.translate = {
x: 0,
y: 0
};
this.rotate = 0;
this.mFactor = 1.0;
this.vFactor = 1.0;
this.fps = 30;
this.filter_key = {};
this.filter_view_units = {
'hue-rotate': 'deg',
'blur': 'px'
};
this.filterReset();
}
setFilter(prop, f) {
let oldValue = this.filter_key[prop];
if (typeof oldValue != 'number') return;
let newValue = f(oldValue)
if (oldValue != newValue) {
newValue = +newValue.toFixed(6); //javascript bug
}
this.filter_key[prop] = newValue
this.filterSetup();
return newValue;
}
filterSetup(options) {
let ums = GM_getValue("unsharpen_mask")
if (!ums) ums = ""
let view = []
let playerElm = $hs.player();
if (!playerElm) return;
for (let view_key in this.filter_key) {
let filter_value = +((+this.filter_key[view_key] || 0).toFixed(3))
let addTo = true;
switch (view_key) {
case 'brightness':
/* fall through */
case 'contrast':
/* fall through */
case 'saturate':
if (decimalEqual(filter_value, 1.0)) addTo = false;
break;
case 'hue-rotate':
/* fall through */
case 'blur':
if (decimalEqual(filter_value, 0.0)) addTo = false;
break;
}
let view_unit = this.filter_view_units[view_key] || ''
if (addTo) view.push(`${view_key}(${filter_value}${view_unit})`)
this.filter_key[view_key] = Number(+this.filter_key[view_key] || 0)
}
if (ums) view.push(`url("#_h5p_${ums}")`);
if (options && options.grey) view.push('url("#grey1")');
playerElm.style.filter = view.join(' ').trim(); //performance in firefox is bad
}
filterReset() {
this.filter_key['brightness'] = 1.0
this.filter_key['contrast'] = 1.0
this.filter_key['saturate'] = 1.0
this.filter_key['hue-rotate'] = 0.0
this.filter_key['blur'] = 0.0
this.filterSetup()
}
}
const Store = {
prefix: '_h5_player',
save: function(k, v) {
if (!Store.available()) return false;
if (typeof v != 'string') return false;
Store.LS.setItem(Store.prefix + k, v)
let sk = fn_toString(k + "", 30);
let sv = fn_toString(v + "", 30);
consoleLog(`localStorage Saved "${sk}" = "${sv}"`)
return true;
},
read: function(k) {
if (!Store.available()) return false;
let v = Store.LS.getItem(Store.prefix + k)
let sk = fn_toString(k + "", 30);
let sv = fn_toString(v + "", 30);
consoleLog(`localStorage Read "${sk}" = "${sv}"`);
return v;
},
remove: function(k) {
if (!Store.available()) return false;
Store.LS.removeItem(Store.prefix + k)
let sk = fn_toString(k + "", 30);
consoleLog(`localStorage Removed "${sk}"`)
return true;
},
clearInvalid: function(sVersion) {
if (!Store.available()) return false;
//let sVersion=1814;
if (+Store.read('_sVersion_') < sVersion) {
Store._keys()
.filter(s => s.indexOf(Store.prefix) === 0)
.forEach(key => window.localStorage.removeItem(key))
Store.save('_sVersion_', sVersion + '')
return 2;
}
return 1;
},
available: function() {
if (Store.LS) return true;
if (!window) return false;
const localStorage = window.localStorage;
if (!localStorage) return false;
if (typeof localStorage != 'object') return false;
if (!('getItem' in localStorage)) return false;
if (!('setItem' in localStorage)) return false;
Store.LS = localStorage;
return true;
},
_keys: function() {
return Object.keys(localStorage);
},
_setItem: function(key, value) {
return localStorage.setItem(key, value)
},
_getItem: function(key) {
return localStorage.getItem(key)
},
_removeItem: function(key) {
return localStorage.removeItem(key)
}
}
const domTool = {
nopx: (x) => +x.replace('px', ''),
cssWH: function(m, r) {
if (!r) r = getComputedStyle(m, null);
let c = (x) => +x.replace('px', '');
return {
w: m.offsetWidth || c(r.width),
h: m.offsetHeight || c(r.height)
}
},
_isActionBox_1: function(vEl, pEl) {
const vElCSS = domTool.cssWH(vEl);
let vElCSSw = vElCSS.w;
let vElCSSh = vElCSS.h;
let vElx = vEl;
const res = [];
//let mLevel = 0;
if (vEl && pEl && vEl != pEl && pEl.contains(vEl)) {
while (vElx && vElx != pEl) {
vElx = vElx.parentNode;
let vElx_css = null;
if (isShadowRoot(vElx)) {} else {
vElx_css = getComputedStyle(vElx, null);
let vElx_wp = domTool.nopx(vElx_css.paddingLeft) + domTool.nopx(vElx_css.paddingRight)
vElCSSw += vElx_wp
let vElx_hp = domTool.nopx(vElx_css.paddingTop) + domTool.nopx(vElx_css.paddingBottom)
vElCSSh += vElx_hp
}
res.push({
//level: ++mLevel,
padW: vElCSSw,
padH: vElCSSh,
elm: vElx,
css: vElx_css
})
}
}
// in the array, each item is the parent of video player
//res.vEl_cssWH = vElCSS
return res;
},
_isActionBox: function(vEl, walkRes, pEl_idx) {
function absDiff(w1, w2, h1, h2) {
const w = (w1 - w2),
h = h1 - h2;
return [(w > 0 ? w : -w), (h > 0 ? h : -h)]
}
function midPoint(rect) {
return {
x: (rect.left + rect.right) / 2,
y: (rect.top + rect.bottom) / 2
}
}
const parentCount = walkRes.length;
if (pEl_idx >= 0 && pEl_idx < parentCount) {} else {
return;
}
const pElr = walkRes[pEl_idx]
if (!pElr.css) {
//shadowRoot
return true;
}
const pEl = pElr.elm;
//prevent activeElement==body
const pElCSS = domTool.cssWH(pEl, pElr.css);
//check prediction of parent dimension
const d1v = absDiff(pElCSS.w, pElr.padW, pElCSS.h, pElr.padH)
const d1x = d1v[0] < 10
const d1y = d1v[1] < 10;
if (d1x && d1y) return true; //both edge along the container - fit size
if (!d1x && !d1y) return false; //no edge along the container - body contain the video element, fixed width&height
//case: youtube video fullscreen
//check centre point
const pEl_rect = pEl.getBoundingClientRect()
const vEl_rect = vEl.getBoundingClientRect()
const pEl_center = midPoint(pEl_rect)
const vEl_center = midPoint(vEl_rect)
const d2v = absDiff(pEl_center.x, vEl_center.x, pEl_center.y, vEl_center.y);
const d2x = d2v[0] < 10;
const d2y = d2v[1] < 10;
return (d2x && d2y);
},
getRect: function(element) {
let rect = element.getBoundingClientRect();
let scroll = domTool.getScroll();
return {
pageX: rect.left + scroll.left,
pageY: rect.top + scroll.top,
screenX: rect.left,
screenY: rect.top
};
},
getScroll: function() {
return {
left: document.documentElement.scrollLeft || document.body.scrollLeft,
top: document.documentElement.scrollTop || document.body.scrollTop
};
},
getClient: function() {
return {
width: document.compatMode == 'CSS1Compat' ? document.documentElement.clientWidth : document.body.clientWidth,
height: document.compatMode == 'CSS1Compat' ? document.documentElement.clientHeight : document.body.clientHeight
};
},
addStyle: //GM_addStyle,
function(css, head) {
if (!head) {
let _doc = document.documentElement;
head = domAppender(_doc);
}
let doc = head.ownerDocument;
let style = doc.createElement('style');
style.type = 'text/css';
style.textContent = css;
head.appendChild(style);
//console.log(document.head,style,'add style')
return style;
},
eachParentNode: function(dom, fn) {
let parent = dom.parentNode
while (parent) {
let isEnd = fn(parent, dom)
parent = parent.parentNode
if (isEnd) {
break
}
}
},
hideDom: function hideDom(selector) {
let dom = document.querySelector(selector)
if (dom) {
$ws.requestAnimationFrame(function() {
dom.style.opacity = 0;
dom.style.transform = 'translate(-9999px)';
dom = null;
})
}
}
};
const handle = {
afPlaybackRecording: async function() {
const opts = this;
let qTime = +new Date;
if (qTime >= opts.pTime) {
opts.pTime = qTime + opts.timeDelta; //prediction of next Interval
opts.savePlaybackProgress()
}
},
savePlaybackProgress: function() {
//this refer to endless's opts
let player = this.player;
let _uid = this.player_uid; //_h5p_uid_encrypted
if (!_uid) return;
let shallSave = true;
let currentTimeToSave = ~~player.currentTime;
if (this._lastSave == currentTimeToSave) shallSave = false;
if (shallSave) {
this._lastSave = currentTimeToSave
//console.log('aasas',this.player_uid, shallSave, '_play_progress_'+_uid, currentTimeToSave)
Store.save('_play_progress_' + _uid, jsonStringify({
't': currentTimeToSave
}))
}
//console.log('playback logged')
},
playingWithRecording: function() {
let player = this.player;
if (!player.paused && !this.isFunctionLooping) {
let player = this.player;
let _uid = player.getAttribute('_h5p_uid_encrypted') || ''
if (_uid) {
this.player_uid = _uid;
this.pTime = 0;
this.loopingStart();
}
}
}
};
class Momentary extends Map {
act(uniqueId, fn_start, fn_end, delay) {
if (!uniqueId) return;
uniqueId = uniqueId + "";
const last_cid = this.get(uniqueId);
if (last_cid > 0) clearTimeout(last_cid);
fn_start();
const new_cid = setTimeout(fn_end, delay)
this.set(uniqueId, new_cid)
}
}
const momentary = new Momentary();
const $hs = {
/* 提示文本的字號 */
fontSize: 16,
enable: true,
playerInstance: null,
playbackRate: 1,
/* 快進快退步長 */
skipStep: 5,
/* 獲取當前播放器的實例 */
player: function() {
let res = $hs.playerInstance || null;
if (res && res.parentNode == null) {
$hs.playerInstance = null;
res = null;
}
if (res == null) {
for (let k in playerConfs) {
let playerConf = playerConfs[k];
if (playerConf && playerConf.domElement && playerConf.domElement.parentNode) return playerConf.domElement;
}
}
return res;
},
pictureInPicture: function(videoElm) {
if (document.pictureInPictureElement) {
document.exitPictureInPicture();
} else if ('requestPictureInPicture' in videoElm) {
videoElm.requestPictureInPicture()
} else {
$hs.tips('PIP is not supported.');
}
},
getPlayerConf: function(video) {
if (!video) return null;
let vpid = video.getAttribute('_h5ppid') || null;
if (!vpid) return null;
return playerConfs[vpid] || null;
},
handlerVideoPlaying: function(evt) {
const videoElm = evt.target || this || null;
if (!videoElm || videoElm.nodeName != "VIDEO") return;
const vpid = videoElm.getAttribute('_h5ppid')
if (!vpid) return;
if ($hs.cid_playHook > 0) clearTimeout($hs.cid_playHook);
$hs.cid_playHook = setTimeout(function() {
let onlyPlayed = null;
for (var k in playerConfs) {
if (k == vpid) {
if (playerConfs[k].domElement.paused === false) onlyPlayed = true;
} else if (playerConfs[k].domElement.paused === false) {
onlyPlayed = false;
break;
}
}
if (onlyPlayed === true) {
$hs.focusHookVDoc = getRoot(videoElm)
$hs.focusHookVId = vpid
}
$bv.boostVideoPerformanceActivate();
}, 100)
const playerConf = $hs.getPlayerConf(videoElm)
$hs._actionBoxObtain(videoElm);
if (playerConf) {
if (playerConf.timeout_pause > 0) playerConf.timeout_pause = clearTimeout(playerConf.timeout_pause);
playerConf.lastPauseAt = 0
playerConf.domActive |= DOM_ACTIVE_ONCE_PLAYED;
playerConf.domActive &= ~DOM_ACTIVE_DELAYED_PAUSED;
}
$hs.swtichPlayerInstance();
$hs.onVideoTriggering();
if (!$hs.enable) return $hs.tips(false);
if (videoElm._isThisPausedBefore_) consoleLog('resumed')
let _pausedbefore_ = videoElm._isThisPausedBefore_
if (videoElm.playpause_cid) {
clearTimeout(videoElm.playpause_cid);
videoElm.playpause_cid = 0;
}
let _last_paused = videoElm._last_paused
videoElm._last_paused = videoElm.paused
if (_last_paused === !videoElm.paused) {
videoElm.playpause_cid = setTimeout(() => {
if (videoElm.paused === !_last_paused && !videoElm.paused && _pausedbefore_) {
$hs.tips('Playback resumed', undefined, 2500)
}
}, 90)
}
/* 播放的時候進行相關同步操作 */
if (!videoElm._record_continuous) {
/* 同步之前設定的播放速度 */
$hs.setPlaybackRate()
if (!_endlessloop) _endlessloop = new AFLooperArray();
videoElm._record_continuous = _endlessloop.appendLoop(handle.afPlaybackRecording);
videoElm._record_continuous._lastSave = -999;
videoElm._record_continuous.timeDelta = 2000;
videoElm._record_continuous.player = videoElm
videoElm._record_continuous.savePlaybackProgress = handle.savePlaybackProgress;
videoElm._record_continuous.playingWithRecording = handle.playingWithRecording;
}
videoElm._record_continuous.playingWithRecording(videoElm); //try to start recording
videoElm._isThisPausedBefore_ = false;
},
handlerVideoPause: function(evt) {
const videoElm = evt.target || this || null;
if (!videoElm || videoElm.nodeName != "VIDEO") return;
const vpid = videoElm.getAttribute('_h5ppid')
if (!vpid) return;
if ($hs.cid_playHook > 0) clearTimeout($hs.cid_playHook);
$hs.cid_playHook = setTimeout(function() {
let allPaused = true;
for (var k in playerConfs) {
if (playerConfs[k].domElement.paused === false) {
allPaused = false;
break;
}
}
if (allPaused) {
$hs.focusHookVDoc = getRoot(videoElm)
$hs.focusHookVId = vpid
}
$bv.boostVideoPerformanceDeactivate();
}, 100)
const playerConf = $hs.getPlayerConf(videoElm)
if (playerConf) {
playerConf.lastPauseAt = +new Date;
playerConf.timeout_pause = setTimeout(() => {
if (playerConf.lastPauseAt > 0) playerConf.domActive |= DOM_ACTIVE_DELAYED_PAUSED;
}, 600)
}
if (!$hs.enable) return $hs.tips(false);
consoleLog('pause')
videoElm._isThisPausedBefore_ = true;
let _last_paused = videoElm._last_paused
videoElm._last_paused = videoElm.paused
if (videoElm.playpause_cid) {
clearTimeout(videoElm.playpause_cid);
videoElm.playpause_cid = 0;
}
if (_last_paused === !videoElm.paused) {
videoElm.playpause_cid = setTimeout(() => {
if (videoElm.paused === !_last_paused && videoElm.paused) {
$hs._tips(videoElm, 'Playback paused', undefined, 2500)
}
}, 90)
}
if (videoElm._record_continuous && videoElm._record_continuous.isFunctionLooping) {
setTimeout(function() {
if (videoElm.paused === true && !videoElm._record_continuous.isFunctionLooping)
videoElm._record_continuous.savePlaybackProgress(); //savePlaybackProgress once before stopping //handle.savePlaybackProgress;
}, 380)
videoElm._record_continuous.loopingStop();
}
},
handlerVideoVolumeChange: function(evt) {
const videoElm = evt.target || this || null;
if (videoElm.volume >= 0) {} else {
return;
}
let cVol = videoElm.volume;
let cMuted = videoElm.muted;
if (cVol === videoElm._volume_p && cMuted === videoElm._muted_p) {
// nothing changed
} else if (cVol === videoElm._volume_p && cMuted !== videoElm._muted_p) {
// muted changed
} else { // cVol != pVol
// only volume changed
let shallShowTips = videoElm._volume >= 0; //prevent initialization
if (!cVol) {
videoElm.muted = true;
} else if (cMuted) {
videoElm.muted = false;
videoElm._volume = cVol;
} else if (!cMuted) {
videoElm._volume = cVol;
}
consoleLog('volume changed')
if (shallShowTips)
$hs._tips(videoElm, 'Volume: ' + dround(videoElm.volume * 100) + '%', undefined, 3000)
}
videoElm._volume_p = cVol
videoElm._muted_p = cMuted
},
handlerVideoLoadedMetaData: function(evt) {
const videoElm = evt.target || this || null;
if (!videoElm || videoElm.nodeName != "VIDEO") return;
consoleLog('video size', videoElm.videoWidth + ' x ' + videoElm.videoHeight);
let vpid = videoElm.getAttribute('_h5ppid') || null;
if (!vpid || !videoElm.currentSrc) return;
if ($hs.varSrcList[vpid] != videoElm.currentSrc) {
$hs.varSrcList[vpid] = videoElm.currentSrc;
$hs.videoSrcFound(videoElm);
$hs._actionBoxObtain(videoElm);
}
if (!videoElm._onceVideoLoaded) {
videoElm._onceVideoLoaded = true;
playerConfs[vpid].domActive |= DOM_ACTIVE_SRC_LOADED;
}
},
handlerElementMouseEnter: function(evt) {
if ($hs.intVideoInitCount > 0) {} else {
return;
}
const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evt.target);
if (!actionBoxRelation) return;
const actionBox = actionBoxRelation.actionBox
if (!actionBox) return;
const vpid = actionBox.getAttribute('_h5p_actionbox_');
const videoElm = actionBoxRelation.player;
if (!videoElm) return;
$hs._actionBoxObtain(videoElm);
const playerConf = $hs.getPlayerConf(videoElm)
if (playerConf) {
momentary.act("actionBoxMouseEnter",
() => {
playerConf.domActive |= DOM_ACTIVE_MOUSE_IN;
},
() => {
playerConf.domActive &= ~DOM_ACTIVE_MOUSE_IN;
},
300)
}
},
handlerElementMouseDown: function(evt) {
function notAtVideo() {
if ($hs.focusHookVDoc) $hs.focusHookVDoc = null
if ($hs.focusHookVId) $hs.focusHookVId = ''
}
if ($hs.intVideoInitCount > 0) {} else {
return notAtVideo();
}
const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evt.target);
if (!actionBoxRelation) return notAtVideo();
const actionBox = actionBoxRelation.actionBox
if (!actionBox) return notAtVideo();
const vpid = actionBox.getAttribute('_h5p_actionbox_');
const videoElm = actionBoxRelation.player;
if (!videoElm) return notAtVideo();
if (vpid) {
$hs.focusHookVDoc = getRoot(videoElm)
$hs.focusHookVId = vpid
}
$hs._actionBoxObtain(videoElm);
const playerConf = $hs.getPlayerConf(videoElm)
if (playerConf) {
momentary.act("actionBoxClicking",
() => {
playerConf.domActive |= DOM_ACTIVE_MOUSE_CLICK;
},
() => {
playerConf.domActive &= ~DOM_ACTIVE_MOUSE_CLICK;
},
300)
}
$hs.swtichPlayerInstance();
},
handlerElementWheelTuneVolume: function(evt) { //shift + wheel
if ($hs.intVideoInitCount > 0) {} else {
return;
}
const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evt.target);
if (!actionBoxRelation) return;
const actionBox = actionBoxRelation.actionBox
if (!actionBox) return;
const vpid = actionBox.getAttribute('_h5p_actionbox_');
const videoElm = actionBoxRelation.player;
if (!videoElm) return;
$hs._actionBoxObtain(videoElm);
if (!evt.shiftKey) return;
if (evt.deltaY) {
let player = $hs.player();
if (!player || player != videoElm) return;
if (evt.deltaY > 0) {
if ((player.muted && player.volume === 0) && player._volume > 0) {
player.muted = false;
player.volume = player._volume;
} else if (player.muted && (player.volume > 0 || !player._volume)) {
player.muted = false;
}
$hs.tuneVolume(-0.05)
evt.stopPropagation()
evt.preventDefault()
return false
} else if (evt.deltaY < 0) {
if ((player.muted && player.volume === 0) && player._volume > 0) {
player.muted = false;
player.volume = player._volume;
} else if (player.muted && (player.volume > 0 || !player._volume)) {
player.muted = false;
}
$hs.tuneVolume(+0.05)
evt.stopPropagation()
evt.preventDefault()
return false
}
}
},
debug01: function(evt, videoActive) {
if (!$hs.eventHooks) {
document.__h5p_eventhooks = ($hs.eventHooks = {
_debug_: []
});
}
$hs.eventHooks._debug_.push([videoActive, evt.type]);
// console.log('h5p eventhooks = document.__h5p_eventhooks')
},
swtichPlayerInstance: function() {
let newPlayerInstance = null;
const ONLY_PLAYING_NONE = 0x4A00;
const ONLY_PLAYING_MORE_THAN_ONE = 0x5A00;
let onlyPlayingInstance = ONLY_PLAYING_NONE;
for (let k in playerConfs) {
let playerConf = playerConfs[k] || {};
let {
domElement,
domActive
} = playerConf;
if (domElement) {
if (domActive & DOM_ACTIVE_INVALID_PARENT) continue;
if (!domElement.parentNode) {
playerConf.domActive |= DOM_ACTIVE_INVALID_PARENT;
continue;
}
if (domActive & DOM_ACTIVE_MOUSE_CLICK) {
newPlayerInstance = domElement
break;
}
if (domActive & DOM_ACTIVE_ONCE_PLAYED && (domActive & DOM_ACTIVE_DELAYED_PAUSED) == 0) {
if (onlyPlayingInstance == ONLY_PLAYING_NONE) onlyPlayingInstance = domElement;
else onlyPlayingInstance = ONLY_PLAYING_MORE_THAN_ONE;
}
}
}
if (newPlayerInstance == null && onlyPlayingInstance.nodeType == 1) {
newPlayerInstance = onlyPlayingInstance;
}
$hs.playerInstance = newPlayerInstance
},
handlerElementDblClick: function(evt) {
if ($hs.intVideoInitCount > 0) {} else {
return;
}
if (document.readyState != "complete") return;
const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evt.target);
if (!actionBoxRelation) return;
const actionBox = actionBoxRelation.actionBox
if (!actionBox) return;
const vpid = actionBox.getAttribute('_h5p_actionbox_');
const videoElm = actionBoxRelation.player;
if (!videoElm) return;
$hs._actionBoxObtain(videoElm);
const playerConf = $hs.getPlayerConf(videoElm)
if (playerConf) {
momentary.act("actionBoxClicking",
() => {
playerConf.domActive |= DOM_ACTIVE_MOUSE_CLICK;
},
() => {
playerConf.domActive &= ~DOM_ACTIVE_MOUSE_CLICK;
},
600)
}
$hs.swtichPlayerInstance()
$hs.onVideoTriggering()
$hs.callFullScreenBtn();
evt.stopPropagation()
evt.preventDefault()
return false
},
handlerDocFocusOut: function(e) {
let doc = this;
$hs.focusFxLock = true;
$ws.requestAnimationFrame(function() {
$hs.focusFxLock = false;
if (!$hs.enable) $hs.tips(false);
else
if (!doc.hasFocus() && $hs.player() && !$hs.isLostFocus) {
$hs.isLostFocus = true;
consoleLog('doc.focusout')
//$hs.tips('focus is lost', -1);
}
});
},
handlerDocFocusIn: function(e) {
let doc = this;
if ($hs.focusFxLock) return;
$ws.requestAnimationFrame(function() {
if ($hs.focusFxLock) return;
if (!$hs.enable) $hs.tips(false);
else
if (doc.hasFocus() && $hs.player() && $hs.isLostFocus) {
$hs.isLostFocus = false;
consoleLog('doc.focusin')
$hs.tips(false);
}
});
},
handlerWinMessage: async function(e) {
let tag, ed;
if (typeof e.data == 'object' && typeof e.data.tag == 'string') {
tag = e.data.tag;
ed = e.data
} else {
return;
}
let msg = null,
success = 0;
let msg_str, msg_stype,p
switch (tag) {
case 'consoleLog':
msg_str = ed.str;
msg_stype = ed.stype;
if (msg_stype === 1) {
msg = (document[str_postMsgData] || {})[msg_str] || [];
success = 1;
} else if (msg_stype === 2) {
msg = jsonParse(msg_str);
if (msg && msg.d) {
success = 2;
msg = msg.d;
}
} else {
msg = msg_str
}
p = (ed.passing && ed.winOrder) ? [' | from win-' + ed.winOrder] : [];
if (success) {
console.log(...msg, ...p)
//document[ed.data]=null; // also delete the information
} else {
console.log('msg--', msg, ...p, ed);
}
break;
}
},
isInActiveMode: function(activeElm, player) {
console.log('check active mode', activeElm, player)
if (activeElm == player) {
return true;
}
for (let vpid in $hs.actionBoxRelations) {
const actionBox = $hs.actionBoxRelations[vpid].actionBox
if (actionBox && actionBox.parentNode) {
if (activeElm == actionBox || actionBox.contains(activeElm)) {
return true;
}
}
}
let _checkingPass = false;
if (!player) return;
let layoutBox = $hs.getPlayerBlockElement(player).parentNode;
if (layoutBox && layoutBox.parentNode && layoutBox.contains(activeElm)) {
let rpid = player.getAttribute('_h5ppid') || "NULL";
let actionBox = layoutBox.parentNode.querySelector(`[_h5p_actionbox_="${rpid}"]`); //the box can be layoutBox
if (actionBox && actionBox.contains(activeElm)) _checkingPass = true;
}
return _checkingPass
},
toolCheckFullScreen: function(doc) {
if (typeof doc.fullScreen == 'boolean') return doc.fullScreen;
if (typeof doc.webkitIsFullScreen == 'boolean') return doc.webkitIsFullScreen;
if (typeof doc.mozFullScreen == 'boolean') return doc.mozFullScreen;
return null;
},
toolFormatCT: function(u) {
let w = Math.round(u, 0)
let a = w % 60
w = (w - a) / 60
let b = w % 60
w = (w - b) / 60
let str = ("0" + b).substr(-2) + ":" + ("0" + a).substr(-2);
if (w) str = w + ":" + str
return str
},
makeFocus: function(player, evt) {
setTimeout(function() {
let rpid = player.getAttribute('_h5ppid');
let actionBox = getRoot(player).querySelector(`[_h5p_actionbox_="${rpid}"]`);
//console.log('p',rpid, player,actionBox,document.activeElement)
if (actionBox && actionBox != document.activeElement && !actionBox.contains(document.activeElement)) {
consoleLog('make focus on', actionBox)
actionBox.focus();
}
}, 300)
},
loopOutwards: function(startPoint, maxStep) {
let c = 0,
p = startPoint,
q = null;
while (p && (++c <= maxStep)) {
if (p.querySelectorAll('video').length !== 1) {
return q;
break;
}
q = p;
p = p.parentNode;
}
return p || q || null;
},
getActionBlockElement: function(player, layoutBox) {
//player, $hs.getPlayerBlockElement(player).parentNode;
//player, player.parentNode .... player.parentNode.parentNode.parentNode
//layoutBox: a container element containing video and with innerHeight>=player.innerHeight [skipped wrapping]
//layoutBox parentSize > layoutBox Size
//actionBox: a container with video and controls
//can be outside layoutbox (bilibili)
//assume maximum 3 layers
let outerLayout = $hs.loopOutwards(layoutBox, 3); //i.e. layoutBox.parent.parent.parent
const allFullScreenBtns = $hs.queryFullscreenBtnsIndependant(outerLayout)
let actionBox = null;
// console.log('fa0a', allFullScreenBtns.length, layoutBox)
if (allFullScreenBtns.length > 0) {
// console.log('faa', allFullScreenBtns.length)
for (const possibleFullScreenBtn of allFullScreenBtns) possibleFullScreenBtn.setAttribute('__h5p_fsb__', '');
let pElm = player.parentNode;
let fullscreenBtns = null;
while (pElm && pElm.parentNode) {
fullscreenBtns = pElm.querySelectorAll('[__h5p_fsb__]');
if (fullscreenBtns.length > 0) {
break;
}
pElm = pElm.parentNode;
}
for (const possibleFullScreenBtn of allFullScreenBtns) possibleFullScreenBtn.removeAttribute('__h5p_fsb__');
if (fullscreenBtns && fullscreenBtns.length > 0) {
actionBox = pElm;
fullscreenBtns = $hs.exclusiveElements(fullscreenBtns);
return {
actionBox,
fullscreenBtns
};
}
}
let walkRes = domTool._isActionBox_1(player, layoutBox);
//walkRes.elm = player... player.parentNode.parentNode (i.e. wPlayer)
let parentCount = walkRes.length;
if (parentCount - 1 >= 0 && domTool._isActionBox(player, walkRes, parentCount - 1)) {
actionBox = walkRes[parentCount - 1].elm;
} else if (parentCount - 2 >= 0 && domTool._isActionBox(player, walkRes, parentCount - 2)) {
actionBox = walkRes[parentCount - 2].elm;
} else {
actionBox = player;
}
return {
actionBox,
fullscreenBtns: []
};
},
actionBoxRelations: {},
actionBoxRelationClearNodes: function(param) {
if (!param) return;
let refNode = null;
let domNodes = null;
if (param.nodeType > 0) {
refNode = param;
const rootNode = getRoot(refNode);
domNodes = rootNode ? rootNode.querySelectorAll(`[_h5p_mo_="${vpid}"]`) : [];
if (refNode) refNode.removeAttribute('_h5p_mo_');
} else {
const actionBoxRelation = param;
domNodes = actionBoxRelation.domNodes;
}
if (domNodes) {
for (const domNode of domNodes) domNode.removeAttribute('_h5p_mo_')
domNodes.length = 0;
}
},
actionBoxMutationCallback: function(mutations, observer) {
for (const mutation of mutations) {
let pElm = mutation.target;
let vpid = null;
if (pElm && pElm.nodeType > 0 && (vpid = pElm.getAttribute('_h5p_mo_'))) {
const actionBoxRelation = $hs.actionBoxRelations[vpid]
if (actionBoxRelation) {
actionBoxRelation.mutationCount++;
} else {
$hs.actionBoxRelationClearNodes(pElm);
}
}
}
},
getActionBoxRelationFromDOM: function(elm) {
//assume action boxes are mutually exclusive
for (let vpid in $hs.actionBoxRelations) {
const actionBoxRelation = $hs.actionBoxRelations[vpid];
const actionBox = actionBoxRelation.actionBox
//console.log('ab', actionBox)
if (actionBox && actionBox.parentNode) {
if (elm == actionBox || actionBox.contains(elm)) {
return actionBoxRelation;
}
}
}
return null;
},
_actionBoxObtain: function(player) {
if (!player) return null;
let vpid = player.getAttribute('_h5ppid');
if (!vpid) return null;
if (!player.parentNode) return null;
let actionBoxRelation = $hs.actionBoxRelations[vpid],
layoutBox = null,
actionBox = null,
boxSearchResult = null,
fullscreenBtns = null,
wPlayer = null;
function a() {
wPlayer = $hs.getPlayerBlockElement(player);
layoutBox = wPlayer.parentNode;
boxSearchResult = $hs.getActionBlockElement(player, layoutBox);
console.log('box search', boxSearchResult)
actionBox = boxSearchResult.actionBox
fullscreenBtns = boxSearchResult.fullscreenBtns
}
function b(domNodes) {
$hs.actionBoxRelations[vpid] = {
player: player,
wPlayer: wPlayer,
layoutBox: layoutBox,
actionBox: actionBox,
mutationCount: 0,
domNodes: domNodes,
fullscreenBtns: fullscreenBtns
}
for (const domNode of domNodes) {
domNode.setAttribute('_h5p_mo_', vpid);
$hs.actionBoxMutationObserver.observe(domNode, {
childList: true
});
}
}
if (actionBoxRelation) {
if (actionBoxRelation.actionBox && actionBoxRelation.actionBox.parentNode && actionBoxRelation.layoutBox && actionBoxRelation.layoutBox.parentNode) {
if (actionBoxRelation.mutationCount === 0) return actionBoxRelation.actionBox
a();
if (actionBox == actionBoxRelation.actionBox && layoutBox == actionBoxRelation.layoutBox && wPlayer == actionBoxRelation.wPlayer) {
actionBoxRelation.mutationCount = 0;
actionBoxRelation.fullscreenBtns = fullscreenBtns;
return actionBox
}
}
$hs.actionBoxRelationClearNodes(actionBoxRelation);
for (var k in actionBoxRelation) delete actionBoxRelation[k]
actionBoxRelation = null;
delete $hs.actionBoxRelations[vpid]
}
if (boxSearchResult == null) a();
if (actionBox) {
actionBox.setAttribute('_h5p_actionbox_', vpid);
if (!$hs.actionBoxMutationObserver) $hs.actionBoxMutationObserver = new MutationObserver($hs.actionBoxMutationCallback);
const domNodes = [];
let pElm = player;
let containing = 0;
while (pElm) {
domNodes.push(pElm);
if (pElm === actionBox) containing |= 1;
if (pElm === layoutBox) containing |= 2;
if (containing === 3) {
b(domNodes);
return actionBox
}
pElm = pElm.parentNode;
}
}
return null;
// if (!actionBox.hasAttribute('tabindex')) actionBox.setAttribute('tabindex', '-1');
},
videoSrcFound: function(player) {
// src loaded
if (!player) return;
let vpid = player.getAttribute('_h5ppid') || null;
if (!vpid || !player.currentSrc) return;
player._isThisPausedBefore_ = false;
player.removeAttribute('_h5p_uid_encrypted');
if (player._record_continuous) player._record_continuous._lastSave = -999; //first time must save
let uid_A = location.pathname.replace(/[^\d+]/g, '') + '.' + location.search.replace(/[^\d+]/g, '');
let _uid = location.hostname.replace('www.', '').toLowerCase() + '!' + location.pathname.toLowerCase() + 'A' + uid_A + 'W' + player.videoWidth + 'H' + player.videoHeight + 'L' + (player.duration << 0);
digestMessage(_uid).then(function(_uid_encrypted) {
let d = +new Date;
let recordedTime = null;
;
(function() {
//read the last record only;
let k1 = '_h5_player_play_progress_';
let k1n = '_play_progress_';
let k2 = _uid_encrypted;
let k3 = k1 + k2;
let k3n = k1n + k2;
let m2 = Store._keys().filter(key => key.substr(0, k3.length) == k3); //all progress records for this video
let m2v = m2.map(keyName => +(keyName.split('+')[1] || '0'))
let m2vMax = Math.max(0, ...m2v)
if (!m2vMax) recordedTime = null;
else {
let _json_recordedTime = null;
_json_recordedTime = Store.read(k3n + '+' + m2vMax);
if (!_json_recordedTime) _json_recordedTime = {};
else _json_recordedTime = jsonParse(_json_recordedTime);
if (typeof _json_recordedTime == 'object') recordedTime = _json_recordedTime;
else recordedTime = null;
recordedTime = typeof recordedTime == 'object' ? recordedTime.t : recordedTime;
if (typeof recordedTime == 'number' && (+recordedTime >= 0 || +recordedTime <= 0)) {
} else if (typeof recordedTime == 'string' && recordedTime.length > 0 && (+recordedTime >= 0 || +recordedTime <= 0)) {
recordedTime = +recordedTime
} else {
recordedTime = null
}
}
if (recordedTime !== null) {
player._h5player_lastrecord_ = recordedTime;
} else {
player._h5player_lastrecord_ = null;
}
if (player._h5player_lastrecord_ > 5) {
consoleLog('last record playing', player._h5player_lastrecord_);
setTimeout(function() {
$hs._tips(player, `Press Shift-R to restore Last Playback: ${$hs.toolFormatCT(player._h5player_lastrecord_)}`, 5000, 4000)
}, 1000)
}
})();
// delay the recording by 5.4s => prevent ads or mis operation
setTimeout(function() {
let k1 = '_h5_player_play_progress_';
let k1n = '_play_progress_';
let k2 = _uid_encrypted;
let k3 = k1 + k2;
let k3n = k1n + k2;
//re-read all the localStorage keys
let m1 = Store._keys().filter(key => key.substr(0, k1.length) == k1); //all progress records in this site
let p = m1.length + 1;
for (const key of m1) { //all progress records for this video
if (key.substr(0, k3.length) == k3) {
Store._removeItem(key); //remove previous record for the current video
p--;
}
}
if (recordedTime !== null) {
Store.save(k3n + '+' + d, jsonStringify({
't': recordedTime
})) //prevent loss of last record
}
const _record_max_ = 48;
const _record_keep_ = 26;
if (p > _record_max_) {
//exisiting 48 records for one site;
//keep only 26 records
const comparator = (a, b) => (a.t < b.t ? -1 : a.t > b.t ? 1 : 0);
m1
.map(keyName => ({
keyName,
t: +(keyName.split('+')[1] || '0')
}))
.sort(comparator)
.slice(0, -_record_keep_)
.forEach((item) => localStorage.removeItem(item.keyName));
consoleLog(`stored progress: reduced to ${_record_keep_}`)
}
player.setAttribute('_h5p_uid_encrypted', _uid_encrypted + '+' + d);
//try to start recording
if (player._record_continuous) player._record_continuous.playingWithRecording();
}, 5400);
})
},
bindDocEvents: function(rootNode) {
if (!rootNode._onceBindedDocEvents) {
rootNode._onceBindedDocEvents = true;
rootNode.addEventListener('keydown', $hs.handlerRootKeyDownEvent, true)
document._debug_rootNode_ = rootNode;
rootNode.addEventListener('mouseenter', $hs.handlerElementMouseEnter, true)
rootNode.addEventListener('mousedown', $hs.handlerElementMouseDown, true)
rootNode.addEventListener('dblclick', $hs.handlerElementDblClick, true)
rootNode.addEventListener('wheel', $hs.handlerElementWheelTuneVolume, {
passive: false
});
// wheel - bubble events to keep it simple (i.e. it must be passive:false & capture:false)
rootNode.addEventListener('focus', $hs.handlerElementFocus, true)
rootNode.addEventListener('fullscreenchange', $hs.handlerFullscreenChanged, true)
}
},
fireGlobalInit: function() {
if ($hs.intVideoInitCount != 1) return;
if (!$hs.varSrcList) $hs.varSrcList = {};
$hs.isLostFocus = null;
try {
//iframe may not be able to control top window
//error; just ignore with async
let topDoc = window.top && window.top.document ? window.top.document : null;
if (topDoc) {
topDoc.addEventListener('focusout', $hs.handlerDocFocusOut, true)
topDoc.addEventListener('focusin', $hs.handlerDocFocusIn, true)
}
} catch (e) {}
Store.clearInvalid(_sVersion_)
},
onVideoTriggering: function() {
// initialize a single video player - h5Player.playerInstance
/**
* 初始化播放器實例
*/
let player = $hs.playerInstance
if (!player) return
let vpid = player.getAttribute('_h5ppid');
if (!vpid) return;
let firstTime = !!$hs.initTips()
if (firstTime) {
// first time to trigger this player
if (!player.hasAttribute('playsinline')) player.setAttribute('playsinline', 'playsinline');
if (!player.hasAttribute('x-webkit-airplay')) player.setAttribute('x-webkit-airplay', 'deny');
if (!player.hasAttribute('preload')) player.setAttribute('preload', 'auto');
//player.style['image-rendering'] = 'crisp-edges';
$hs.playbackRate = $hs.getPlaybackRate()
}
},
getPlaybackRate: function() {
let playbackRate = Store.read('_playback_rate_') || $hs.playbackRate
return Number(Number(playbackRate).toFixed(1))
},
getPlayerBlockElement: function(player, useCache) {
let layoutBox = null,
wPlayer = null
if (!player || !player.offsetHeight || !player.offsetWidth || !player.parentNode) {
return null;
}
if (useCache === true) {
let vpid = player.getAttribute('_h5ppid');
let actionBoxRelation = $hs.actionBoxRelations[vpid]
if (actionBoxRelation && actionBoxRelation.mutationCount === 0) {
return actionBoxRelation.wPlayer
}
}
//without checkActiveBox, just a DOM for you to append tipsDom
function oWH(elm) {
return [elm.offsetWidth, elm.offsetHeight].join(',');
}
function search_nodes() {
wPlayer = player; // NOT NULL
layoutBox = wPlayer.parentNode; // NOT NULL
while (layoutBox.parentNode && layoutBox.nodeType == 1 && layoutBox.offsetHeight == 0) {
wPlayer = layoutBox; // NOT NULL
layoutBox = layoutBox.parentNode; // NOT NULL
}
//container must be with offsetHeight
while (layoutBox.parentNode && layoutBox.nodeType == 1 && layoutBox.offsetHeight < player.offsetHeight) {
wPlayer = layoutBox; // NOT NULL
layoutBox = layoutBox.parentNode; // NOT NULL
}
//container must have height >= player height
const layoutOWH = oWH(layoutBox)
//const playerOWH=oWH(player)
//skip all inner wraps
while (layoutBox.parentNode && layoutBox.nodeType == 1 && oWH(layoutBox.parentNode) == layoutOWH) {
wPlayer = layoutBox; // NOT NULL
layoutBox = layoutBox.parentNode; // NOT NULL
}
// oWH of layoutBox.parentNode != oWH of layoutBox and layoutBox.offsetHeight >= player.offsetHeight
}
search_nodes();
if (layoutBox.nodeType == 11) {
makeNoRoot(layoutBox);
search_nodes();
}
//condition:
//!layoutBox.parentNode || layoutBox.nodeType != 1 || layoutBox.offsetHeight > player.offsetHeight
// layoutBox is a node contains