HTML5 Video Player Enhance

To enhance the functionality of HTML5 Video Player (h5player) supporting all websites using shortcut keys similar to PotPlayer.

  1. // ==UserScript==
  2. // @name HTML5 Video Player Enhance
  3. // @version 2.9.6.1
  4. // @description To enhance the functionality of HTML5 Video Player (h5player) supporting all websites using shortcut keys similar to PotPlayer.
  5. // @author CY Fung
  6. // @icon https://image.flaticon.com/icons/png/128/3291/3291444.png
  7. // @match https://*/*
  8. // @match http://*/*
  9. // @exclude https://www.youtube.com/live_chat*
  10. // @run-at document-start
  11. // @require https://cdnjs.cloudflare.com/ajax/libs/js-sha256/0.9.0/sha256.min.js
  12. // @namespace https://gf.qytechs.cn/users/371179
  13. // @grant GM_getValue
  14. // @grant GM_setValue
  15. // @grant unsafeWindow
  16. // ==/UserScript==
  17. /**
  18. * Remarks
  19. * This script support modern browser only with ES6+.
  20. * fullscreen and pointerLock buggy in shadowRoot
  21. * Space Pause not success
  22. * shift F key issue
  23. **/
  24. !(function($winUnsafe, $winSafe) {
  25. 'use strict';
  26.  
  27.  
  28. !(() => 0)({
  29. requestAnimationFrame,
  30. cancelAnimationFrame,
  31. MutationObserver,
  32. setInterval,
  33. clearInterval,
  34. EventTarget,
  35. Promise,
  36. ResizeObserver
  37. });
  38. //throw Error if your browser is too outdated. (eg ES6 script, no such window object)
  39.  
  40. const window = $winUnsafe || $winSafe
  41. const document = window.document
  42. const $$uWin = $winUnsafe || $winSafe;
  43.  
  44. const $rAf = $$uWin.requestAnimationFrame;
  45. const $cAf = $$uWin.cancelAnimationFrame;
  46.  
  47. const $$setTimeout = $$uWin.setTimeout
  48. const $$clearTimeout = $$uWin.clearTimeout
  49. const $$requestAnimationFrame = $$uWin.requestAnimationFrame;
  50. const $$cancelAnimationFrame = $$uWin.cancelAnimationFrame;
  51.  
  52. const $$addEventListener = Node.prototype.addEventListener;
  53. const $$removeEventListener = Node.prototype.removeEventListener;
  54.  
  55. const $bz = {
  56. boosted: false
  57. }
  58.  
  59. const utPositioner='KVZX';
  60.  
  61. 1&&!(function $$() {
  62. 'use strict';
  63.  
  64. if (!document) return;
  65. if (!document.documentElement) return window.requestAnimationFrame($$);
  66.  
  67. const prettyElm = function(elm) {
  68. if (!elm || !elm.nodeName) return null;
  69. const eId = elm.id || null;
  70. const eClsName = elm.className || null;
  71. return [elm.nodeName.toLowerCase(), typeof eId == 'string' ? "#" + eId : '', typeof eClsName == 'string' ? '.' + eClsName.replace(/\s+/g, '.') : ''].join('').trim();
  72. }
  73.  
  74. const delayCall = function(p, f, d) {
  75. if (delayCall[p] > 0) delayCall[p] = window.clearTimeout(delayCall[p])
  76. if (f) delayCall[p] = window.setTimeout(f, d)
  77. }
  78.  
  79. function isVideoPlaying(video){
  80. return video.currentTime > 0 && !video.paused && !video.ended && video.readyState > video.HAVE_CURRENT_DATA;
  81. }
  82.  
  83.  
  84. const wmListeners = new WeakMap();
  85.  
  86. class Listeners {
  87. constructor() {}
  88. get count() {
  89. return (this._count || 0)
  90. }
  91. makeId() {
  92. return ++this._lastId
  93. }
  94. add(lh) {
  95. this[++this._lastId] = lh;
  96. this._count++;
  97. }
  98. remove(lh_removal) {
  99. for (let k in this) {
  100. let lh = this[k]
  101. if (lh && lh.constructor == ListenerHandle && lh_removal.isEqual(lh)) {
  102. delete this[k];
  103. this._count--;
  104. }
  105. }
  106. }
  107. }
  108.  
  109.  
  110. class ListenerHandle {
  111. constructor(func, options) {
  112. this.func = func
  113. this.options = options
  114. }
  115. isEqual(anotherLH) {
  116. if (this.func != anotherLH.func) return false;
  117. if (this.options === anotherLH.options) return true;
  118. if (this.options && anotherLH.options && typeof this.options == 'object' && typeof anotherLH.options == 'object') {
  119. return this.uOpt() == anotherLH.uOpt()
  120. } else {
  121. return false;
  122. }
  123. }
  124. uOpt() {
  125. let opt1 = "";
  126. for (var k in this.options) {
  127. opt1 += ", " + k + " : " + (typeof this[k] == 'boolean' ? this[k] : "N/A");
  128. }
  129. return opt1;
  130. }
  131. }
  132.  
  133.  
  134. Object.defineProperties(Listeners.prototype, {
  135. _lastId: {
  136. value: 0,
  137. writable: true,
  138. enumerable: false,
  139. configurable: true
  140. },
  141. _count: {
  142. value: 0,
  143. writable: true,
  144. enumerable: false,
  145. configurable: true
  146. }
  147. });
  148.  
  149.  
  150.  
  151.  
  152. let _debug_h5p_logging_ = false;
  153.  
  154. try {
  155. _debug_h5p_logging_ = +window.localStorage.getItem('_h5_player_sLogging_') > 0
  156. } catch (e) {}
  157.  
  158.  
  159.  
  160. const SHIFT = 1;
  161. const CTRL = 2;
  162. const ALT = 4;
  163. const TERMINATE = 0x842;
  164. const _sVersion_ = 1817;
  165. const str_postMsgData = '__postMsgData__'
  166. const DOM_ACTIVE_FOUND = 1;
  167. const DOM_ACTIVE_SRC_LOADED = 2;
  168. const DOM_ACTIVE_ONCE_PLAYED = 4;
  169. const DOM_ACTIVE_MOUSE_CLICK = 8;
  170. const DOM_ACTIVE_KEY_DOWN = 64;
  171. const DOM_ACTIVE_FULLSCREEN = 128;
  172. const DOM_ACTIVE_MOUSE_IN = 16;
  173. const DOM_ACTIVE_DELAYED_PAUSED = 32;
  174. const DOM_ACTIVE_INVALID_PARENT = 2048;
  175.  
  176. var console = {};
  177.  
  178. console.log = function() {
  179. window.console.log(...['[h5p]', ...arguments])
  180. }
  181. console.error = function() {
  182. window.console.error(...['[h5p]', ...arguments])
  183. }
  184.  
  185. function makeNoRoot(shadowRoot) {
  186. const doc = shadowRoot.ownerDocument || document;
  187. const htmlInShadowRoot = doc.createElement('noroot'); // pseudo element
  188. const childNodes = [...shadowRoot.childNodes]
  189. shadowRoot.insertBefore(htmlInShadowRoot, shadowRoot.firstChild)
  190. for (const childNode of childNodes) htmlInShadowRoot.appendChild(childNode);
  191. return shadowRoot.querySelector('noroot');
  192. }
  193.  
  194. let _endlessloop = null;
  195. const isIframe = (window.top !== window.self && window.top && window.self);
  196. const rootDocs = [];
  197.  
  198. const _getRoot = Element.prototype.getRootNode || HTMLElement.prototype.getRootNode || function() {
  199. let elm = this;
  200. while (elm) {
  201. if ('host' in elm) return elm;
  202. elm = elm.parentNode;
  203. }
  204. return elm;
  205. }
  206.  
  207. const getRoot = (elm) => _getRoot.call(elm);
  208.  
  209.  
  210.  
  211. class VQuery{
  212.  
  213. constructor(){
  214. this.videos={};
  215. this.wmMutations={};
  216. }
  217. setVideo(key, value){this.videos[key]=value}
  218. player(key){
  219. const video=this.videos[key];
  220. return video&&video.parentNode?video:null;
  221. }
  222. rootNode(key){
  223. const video=this.videos[key];
  224. return video?getRoot(video):null;
  225. }
  226.  
  227. }
  228.  
  229. const $vQuery=new VQuery();
  230.  
  231. const isShadowRoot = (elm) => (elm && ('host' in elm)) ? elm.nodeType == 11 && !!elm.host && elm.host.nodeType == 1 : null; //instanceof ShadowRoot
  232.  
  233.  
  234. const domAppender = (d) => d.querySelector('head') || d.querySelector('html') || d.querySelector('noroot') || null;
  235.  
  236. const playerConfs = {}
  237.  
  238. const hanlderResizeVideo = (entries) => {
  239. const detected_changes = {};
  240. for (let entry of entries) {
  241. const player = entry.target.nodeName == "VIDEO" ? entry.target : entry.target.querySelector("VIDEO[_h5ppid]");
  242. if (!player || !player.parentNode) continue;
  243. const vpid = player.getAttribute('_h5ppid');
  244. if (!vpid) continue;
  245. if (vpid in detected_changes) continue;
  246. detected_changes[vpid] = true;
  247. const {wPlayerInner,wPlayer} = $hs.getPlayerBlockElement(player)
  248. if (!wPlayerInner) continue;
  249. const layoutBoxInner = wPlayerInner.parentNode
  250. if (!layoutBoxInner) continue;
  251. let tipsDom = layoutBoxInner.querySelector('[data-h5p-pot-tips]');
  252.  
  253. if (tipsDom) {
  254. if (tipsDom._tips_display_none) tipsDom.setAttribute('data-h5p-pot-tips', '')
  255. $hs.fixNonBoxingVideoTipsPosition(tipsDom, player);
  256. } else {
  257. tipsDom = $vQuery.rootNode(vpid).querySelector(`#${player.getAttribute('_h5player_tips')}`)
  258. if (tipsDom) {
  259. if (tipsDom._tips_display_none) tipsDom.setAttribute('data-h5p-pot-tips', '')
  260. $hs.change_layoutBox(tipsDom, player);
  261. $hs.tipsDomObserve(tipsDom, player);
  262. }
  263. }
  264.  
  265. }
  266. };
  267.  
  268. const $mb = {
  269.  
  270.  
  271.  
  272. nightly_isSupportQueueMicrotask: function() {
  273.  
  274. if ('_isSupportQueueMicrotask' in $mb) return $mb._isSupportQueueMicrotask;
  275.  
  276. $mb._isSupportQueueMicrotask = false;
  277. $mb.queueMicrotask = window.queueMicrotask;
  278. if (typeof $mb.queueMicrotask == 'function') {
  279. $mb._isSupportQueueMicrotask = true;
  280. }
  281.  
  282. return $mb._isSupportQueueMicrotask;
  283.  
  284. },
  285.  
  286. stable_isSupportAdvancedEventListener: function() {
  287.  
  288. if ('_isSupportAdvancedEventListener' in $mb) return $mb._isSupportAdvancedEventListener
  289. let prop = 0;
  290. $$addEventListener.call(document.createAttribute('z'), 'z', () => 0, {
  291. get passive() {
  292. prop++;
  293. },
  294. get once() {
  295. prop++;
  296. }
  297. });
  298. return ($mb._isSupportAdvancedEventListener = (prop == 2));
  299. },
  300.  
  301. stable_isSupportPassiveEventListener: function() {
  302.  
  303. if ('_isSupportPassiveEventListener' in $mb) return $mb._isSupportPassiveEventListener
  304. let prop = 0;
  305. $$addEventListener.call(document.createAttribute('z'), 'z', () => 0, {
  306. get passive() {
  307. prop++;
  308. }
  309. });
  310. return ($mb._isSupportPassiveEventListener = (prop == 1));
  311. },
  312.  
  313. eh_capture_passive: () => ($mb._eh_capture_passive = $mb._eh_capture_passive || ($mb.stable_isSupportPassiveEventListener() ? {
  314. capture: true,
  315. passive: true
  316. } : true)),
  317.  
  318. eh_bubble_passive: () => ($mb._eh_capture_passive = $mb._eh_capture_passive || ($mb.stable_isSupportPassiveEventListener() ? {
  319. capture: false,
  320. passive: true
  321. } : false))
  322.  
  323. }
  324.  
  325.  
  326.  
  327. Element.prototype.__matches__ = (Element.prototype.matches || Element.prototype.matchesSelector ||
  328. Element.prototype.mozMatchesSelector || Element.prototype.msMatchesSelector ||
  329. Element.prototype.oMatchesSelector || Element.prototype.webkitMatchesSelector ||
  330. Element.prototype.matches()); // throw Error if not supported
  331.  
  332. // built-in hash - https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/digest
  333. async function digestMessage(message) {
  334. return $winSafe.sha256(message)
  335. }
  336.  
  337. const dround = (x) => ~~(x + .5);
  338.  
  339. const jsonStringify_replacer = function(key, val) {
  340. if (val && (val instanceof Element || val instanceof Document)) return val.toString();
  341. return val; // return as is
  342. };
  343.  
  344. const jsonParse = function() {
  345. try {
  346. return JSON.parse.apply(this, arguments)
  347. } catch (e) {}
  348. return null;
  349. }
  350. const jsonStringify = function(obj) {
  351. try {
  352. return JSON.stringify.call(this, obj, jsonStringify_replacer)
  353. } catch (e) {}
  354. return null;
  355. }
  356.  
  357. function _postMsg() {
  358. //async is needed. or error handling for postMessage
  359. const [win, tag, ...data] = arguments;
  360. if (typeof tag == 'string') {
  361. let postMsgObj = {
  362. tag,
  363. passing: true,
  364. winOrder: _postMsg.a
  365. }
  366. try {
  367. let k = 'msg-' + (+new Date)
  368. win.document[str_postMsgData] = win.document[str_postMsgData] || {}
  369. win.document[str_postMsgData][k] = data; //direct
  370. postMsgObj.str = k;
  371. postMsgObj.stype = 1;
  372. } catch (e) {}
  373. if (!postMsgObj.stype) {
  374. postMsgObj.str = jsonStringify({
  375. d: data
  376. })
  377. if (postMsgObj.str && postMsgObj.str.length) postMsgObj.stype = 2;
  378. }
  379. if (!postMsgObj.stype) {
  380. postMsgObj.str = "" + data;
  381. postMsgObj.stype = 0;
  382. }
  383. win.postMessage(postMsgObj, '*');
  384. }
  385.  
  386. }
  387.  
  388. function postMsg() {
  389. let win = window;
  390. let a = 0;
  391. while ((win = win.parent) && ('postMessage' in win)) {
  392. _postMsg.a = ++a;
  393. _postMsg(win, ...arguments)
  394. if (win == top) break;
  395. }
  396. }
  397.  
  398.  
  399. function crossBrowserTransition(type) {
  400. if (crossBrowserTransition['_result_' + type]) return crossBrowserTransition['_result_' + type]
  401. let el = document.createElement("fakeelement");
  402.  
  403. const capital = (x) => x[0].toUpperCase() + x.substr(1);
  404. const capitalType = capital(type);
  405.  
  406. const transitions = {
  407. [type]: `${type}end`,
  408. [`O${capitalType}`]: `o${capitalType}End`,
  409. [`Moz${capitalType}`]: `${type}end`,
  410. [`Webkit${capitalType}`]: `webkit${capitalType}End`,
  411. [`MS${capitalType}`]: `MS${capitalType}End`
  412. }
  413.  
  414. for (let styleProp in transitions) {
  415. if (el.style[styleProp] !== undefined) {
  416. return (crossBrowserTransition['_result_' + type] = transitions[styleProp]);
  417. }
  418. }
  419. }
  420.  
  421. const fn_toString = (f, n = 50) => {
  422. let s = (f + "");
  423. if (s.length > 2 * n + 5) {
  424. s = s.substr(0, n) + ' ... ' + s.substr(-n);
  425. }
  426. return s
  427. };
  428.  
  429. function consoleLog() {
  430. if (!_debug_h5p_logging_) return;
  431. if (isIframe) postMsg('consoleLog', ...arguments);
  432. else console.log.apply(console, arguments);
  433. }
  434.  
  435. function consoleLogF() {
  436. if (isIframe) postMsg('consoleLog', ...arguments);
  437. else console.log.apply(console, arguments);
  438. }
  439.  
  440. class AFLooperArray extends Array {
  441. constructor() {
  442. super();
  443. this.activeLoopsCount = 0;
  444. this.cid = 0;
  445. this.loopingFrame = this.loopingFrame.bind(this);
  446. }
  447.  
  448. loopingFrame() {
  449. if (!this.cid) return; //cancelled
  450. for (const opt of this) {
  451. if (opt.isFunctionLooping) opt.fn();
  452. }
  453. }
  454.  
  455. get isArrayLooping() {
  456. return this.cid > 0;
  457. }
  458.  
  459. loopStart() {
  460. this.cid = window.setInterval(this.loopingFrame, 300);
  461. }
  462. loopStop() {
  463. if (this.cid) window.clearInterval(this.cid);
  464. this.cid = 0;
  465. }
  466. appendLoop(fn) {
  467. if (typeof fn != 'function' || !this) return;
  468. const opt = new AFLooperFunc(fn, this);
  469. super.push(opt);
  470. return opt;
  471. }
  472. }
  473.  
  474. class AFLooperFunc {
  475. constructor(fn, bind) {
  476. this._looping = false;
  477. this.bind = bind;
  478. this.fn = fn;
  479. }
  480. get isFunctionLooping() {
  481. return this._looping;
  482. }
  483. loopingStart() {
  484. if (this._looping === false) {
  485. this._looping = true;
  486. if (++this.bind.activeLoopsCount == 1) this.bind.loopStart();
  487. }
  488. }
  489. loopingStop() {
  490. if (this._looping === true) {
  491. this._looping = false;
  492. if (--this.bind.activeLoopsCount == 0) this.bind.loopStop();
  493. }
  494. }
  495. }
  496.  
  497. function decimalEqual(a, b) {
  498. return Math.round(a * 100000000) == Math.round(b * 100000000)
  499. }
  500.  
  501. function nonZeroNum(a) {
  502. return a > 0 || a < 0;
  503. }
  504.  
  505. class PlayerConf {
  506.  
  507. get scaleFactor() {
  508. return this.mFactor * this.vFactor;
  509. }
  510.  
  511. cssTransform() {
  512.  
  513. const playerConf = this;
  514. const player = playerConf.domElement;
  515. if (!player || !player.parentNode) return;
  516. const videoScale = playerConf.scaleFactor;
  517.  
  518. let {
  519. x,
  520. y
  521. } = playerConf.translate;
  522.  
  523. let [_x, _y] = ((playerConf.rotate % 180) == 90) ? [y, x] : [x, y];
  524.  
  525.  
  526. if ((playerConf.rotate % 360) == 270) _x = -_x;
  527. if ((playerConf.rotate % 360) == 90) _y = -_y;
  528.  
  529. var s = [
  530. playerConf.rotate > 0 ? 'rotate(' + playerConf.rotate + 'deg)' : '',
  531. !decimalEqual(videoScale, 1.0) ? 'scale(' + videoScale + ')' : '',
  532. (nonZeroNum(_x) || nonZeroNum(_y)) ? `translate(${_x}px, ${_y}px)` : '',
  533. ];
  534.  
  535. player.style.transform = s.join(' ').trim()
  536.  
  537. }
  538.  
  539. constructor() {
  540.  
  541. this.translate = {
  542. x: 0,
  543. y: 0
  544. };
  545. this.rotate = 0;
  546. this.mFactor = 1.0;
  547. this.vFactor = 1.0;
  548. this.fps = 30;
  549. this.filter_key = {};
  550. this.filter_view_units = {
  551. 'hue-rotate': 'deg',
  552. 'blur': 'px'
  553. };
  554. this.filterReset();
  555.  
  556. }
  557.  
  558. setFilter(prop, f) {
  559.  
  560. let oldValue = this.filter_key[prop];
  561. if (typeof oldValue != 'number') return;
  562. let newValue = f(oldValue)
  563. if (oldValue != newValue) {
  564.  
  565. newValue = +newValue.toFixed(6); //javascript bug
  566.  
  567. }
  568.  
  569. this.filter_key[prop] = newValue
  570. this.filterSetup();
  571.  
  572. return newValue;
  573.  
  574.  
  575.  
  576. }
  577.  
  578. filterSetup(options) {
  579.  
  580. let ums = GM_getValue("unsharpen_mask")
  581. if (!ums) ums = ""
  582.  
  583. let view = []
  584. let playerElm = $hs.player();
  585. if (!playerElm || !playerElm.parentNode) return;
  586. for (let view_key in this.filter_key) {
  587. let filter_value = +((+this.filter_key[view_key] || 0).toFixed(3))
  588. let addTo = true;
  589. switch (view_key) {
  590. case 'brightness':
  591. /* fall through */
  592. case 'contrast':
  593. /* fall through */
  594. case 'saturate':
  595. if (decimalEqual(filter_value, 1.0)) addTo = false;
  596. break;
  597. case 'hue-rotate':
  598. /* fall through */
  599. case 'blur':
  600. if (decimalEqual(filter_value, 0.0)) addTo = false;
  601. break;
  602. }
  603. let view_unit = this.filter_view_units[view_key] || ''
  604. if (addTo) view.push(`${view_key}(${filter_value}${view_unit})`)
  605. this.filter_key[view_key] = Number(+this.filter_key[view_key] || 0)
  606. }
  607. if (ums) view.push(`url("#_h5p_${ums}")`);
  608. if (options && options.grey) view.push('url("#grey1")');
  609. playerElm.style.filter = view.join(' ').trim(); //performance in firefox is bad
  610. }
  611.  
  612. filterReset() {
  613. this.filter_key['brightness'] = 1.0
  614. this.filter_key['contrast'] = 1.0
  615. this.filter_key['saturate'] = 1.0
  616. this.filter_key['hue-rotate'] = 0.0
  617. this.filter_key['blur'] = 0.0
  618. this.filterSetup()
  619. }
  620.  
  621. }
  622.  
  623. const Store = {
  624. prefix: '_h5_player',
  625. save: function(k, v) {
  626. if (!Store.available()) return false;
  627. if (typeof v != 'string') return false;
  628. Store.LS.setItem(Store.prefix + k, v)
  629. let sk = fn_toString(k + "", 30);
  630. let sv = fn_toString(v + "", 30);
  631. consoleLog(`localStorage Saved "${sk}" = "${sv}"`)
  632. return true;
  633.  
  634. },
  635. read: function(k) {
  636. if (!Store.available()) return false;
  637. let v = Store.LS.getItem(Store.prefix + k)
  638. let sk = fn_toString(k + "", 30);
  639. let sv = fn_toString(v + "", 30);
  640. consoleLog(`localStorage Read "${sk}" = "${sv}"`);
  641. return v;
  642.  
  643. },
  644. remove: function(k) {
  645.  
  646. if (!Store.available()) return false;
  647. Store.LS.removeItem(Store.prefix + k)
  648. let sk = fn_toString(k + "", 30);
  649. consoleLog(`localStorage Removed "${sk}"`)
  650. return true;
  651. },
  652. clearInvalid: function(sVersion) {
  653. if (!Store.available()) return false;
  654.  
  655. //let sVersion=1814;
  656. if (+Store.read('_sVersion_') < sVersion) {
  657. Store._keys()
  658. .filter(s => s.indexOf(Store.prefix) === 0)
  659. .forEach(key => window.localStorage.removeItem(key))
  660. Store.save('_sVersion_', sVersion + '')
  661. return 2;
  662. }
  663. return 1;
  664.  
  665. },
  666. available: function() {
  667. if (Store.LS) return true;
  668. if (!window) return false;
  669. const localStorage = window.localStorage;
  670. if (!localStorage) return false;
  671. if (typeof localStorage != 'object') return false;
  672. if (!('getItem' in localStorage)) return false;
  673. if (!('setItem' in localStorage)) return false;
  674. Store.LS = localStorage;
  675. return true;
  676.  
  677. },
  678. _keys: function() {
  679. return Object.keys(localStorage);
  680. },
  681. _setItem: function(key, value) {
  682. return localStorage.setItem(key, value)
  683. },
  684. _getItem: function(key) {
  685. return localStorage.getItem(key)
  686. },
  687. _removeItem: function(key) {
  688. return localStorage.removeItem(key)
  689. }
  690.  
  691. }
  692.  
  693. const domTool = {
  694. cssWH: function(m, r) {
  695. if (!r) r = getComputedStyle(m, null);
  696. let c = (x) => +x.replace('px', '');
  697. return {
  698. w: m.offsetWidth || c(r.width),
  699. h: m.offsetHeight || c(r.height)
  700. }
  701. },
  702. _isActionBox_1: function(vEl, pEl) {
  703.  
  704. const vElCSS = domTool.cssWH(vEl);
  705. let vElCSSw = vElCSS.w;
  706. let vElCSSh = vElCSS.h;
  707.  
  708. let vElx = vEl;
  709. const res = [];
  710. //let mLevel = 0;
  711. if (vEl && pEl && vEl != pEl && pEl.contains(vEl)) {
  712. while (vElx && vElx != pEl) {
  713. vElx = vElx.parentNode;
  714. let vElx_css = null;
  715. if (isShadowRoot(vElx)) {} else {
  716. vElx_css = getComputedStyle(vElx, null);
  717. let vElx_wp = parseFloat(vElx_css.paddingLeft) + parseFloat(vElx_css.paddingRight)
  718. vElCSSw += vElx_wp
  719. let vElx_hp = parseFloat(vElx_css.paddingTop) + parseFloat(vElx_css.paddingBottom)
  720. vElCSSh += vElx_hp
  721. }
  722. res.push({
  723. //level: ++mLevel,
  724. padW: vElCSSw,
  725. padH: vElCSSh,
  726. elm: vElx,
  727. css: vElx_css
  728. })
  729.  
  730. }
  731. }
  732.  
  733. // in the array, each item is the parent of video player
  734. //res.vEl_cssWH = vElCSS
  735.  
  736. return res;
  737.  
  738. },
  739. _isActionBox: function(vEl, walkRes, pEl_idx) {
  740.  
  741. function absDiff(w1, w2, h1, h2) {
  742. const w = (w1 - w2),
  743. h = h1 - h2;
  744. return [(w > 0 ? w : -w), (h > 0 ? h : -h)]
  745. }
  746.  
  747. function midPoint(rect) {
  748. return {
  749. x: (rect.left + rect.right) / 2,
  750. y: (rect.top + rect.bottom) / 2
  751. }
  752. }
  753.  
  754. const parentCount = walkRes.length;
  755. if (pEl_idx >= 0 && pEl_idx < parentCount) {} else {
  756. return;
  757. }
  758. const pElr = walkRes[pEl_idx]
  759. if (!pElr.css) {
  760. //shadowRoot
  761. return true;
  762. }
  763.  
  764. const pEl = pElr.elm;
  765.  
  766. //prevent activeElement==body
  767. const pElCSS = domTool.cssWH(pEl, pElr.css);
  768.  
  769. //check prediction of parent dimension
  770. const d1v = absDiff(pElCSS.w, pElr.padW, pElCSS.h, pElr.padH)
  771.  
  772. const d1x = d1v[0] < 10
  773. const d1y = d1v[1] < 10;
  774.  
  775. if (d1x && d1y) return true; //both edge along the container - fit size
  776. if (!d1x && !d1y) return false; //no edge along the container - body contain the video element, fixed width&height
  777.  
  778. //case: youtube video fullscreen
  779.  
  780. //check centre point
  781.  
  782. const pEl_rect = pEl.getBoundingClientRect()
  783. const vEl_rect = vEl.getBoundingClientRect()
  784.  
  785. const pEl_center = midPoint(pEl_rect)
  786. const vEl_center = midPoint(vEl_rect)
  787.  
  788. const d2v = absDiff(pEl_center.x, vEl_center.x, pEl_center.y, vEl_center.y);
  789.  
  790. const d2x = d2v[0] < 10;
  791. const d2y = d2v[1] < 10;
  792.  
  793. return (d2x && d2y);
  794.  
  795. },
  796. addStyle: //GM_addStyle,
  797. function(css, head) {
  798. if (!head) {
  799. let _doc = document.documentElement;
  800. head = domAppender(_doc);
  801. }
  802. let doc = head.ownerDocument;
  803. let style = doc.createElement('style');
  804. style.type = 'text/css';
  805. style.textContent = css;
  806. head.appendChild(style);
  807. //console.log(document.head,style,'add style')
  808. return style;
  809. }
  810. };
  811.  
  812. const handle = {
  813.  
  814.  
  815. afPlaybackRecording: async function() {
  816. const opts = this;
  817.  
  818. let qTime = +new Date;
  819. if (qTime >= opts.pTime) {
  820. opts.pTime = qTime + opts.timeDelta; //prediction of next Interval
  821. opts.savePlaybackProgress()
  822. }
  823.  
  824. },
  825. savePlaybackProgress: function() {
  826.  
  827. //this refer to endless's opts
  828. let player = this.player;
  829.  
  830. let _uid = this.player_uid; //_h5p_uid_encrypted
  831. if (!_uid) return;
  832.  
  833. let shallSave = true;
  834. let currentTimeToSave = ~~player.currentTime;
  835.  
  836. if (this._lastSave == currentTimeToSave) shallSave = false;
  837.  
  838. if (shallSave) {
  839.  
  840. this._lastSave = currentTimeToSave
  841.  
  842. Promise.resolve().then(() => {
  843.  
  844. //console.log('aasas',this.player_uid, shallSave, '_play_progress_'+_uid, currentTimeToSave)
  845.  
  846. Store.save('_play_progress_' + _uid, jsonStringify({
  847. 't': currentTimeToSave
  848. }))
  849. })
  850.  
  851. }
  852. //console.log('playback logged')
  853.  
  854. },
  855. playingWithRecording: function() {
  856. let player = this.player;
  857. if (!player.paused && !this.isFunctionLooping) {
  858. let player = this.player;
  859. let _uid = player.getAttribute('_h5p_uid_encrypted') || ''
  860. if (_uid) {
  861. this.player_uid = _uid;
  862. this.pTime = 0;
  863. this.loopingStart();
  864. }
  865. }
  866. }
  867.  
  868. };
  869.  
  870. const $hs = {
  871.  
  872. /* 提示文本的字號 */
  873. fontSize: 16,
  874. enable: true,
  875. playerInstance: null,
  876. /* 快進快退步長 */
  877. skipStep: 5,
  878.  
  879. mouseMoveCount: 0,
  880.  
  881. //video mouse enter and leave
  882. mouseActioner: {
  883. calls: [],
  884. time: 0,
  885. cid: 0,
  886. lastFound: null,
  887. lastHoverElm: null
  888. },
  889.  
  890. mouseEnteredElement: null,
  891.  
  892. actionBoxRelations: {},
  893. tipsClassName: 'html_player_enhance_tips',
  894.  
  895. //cursor control
  896. mointoringVideo:false, //false -> xxx -> null -> xxx
  897.  
  898. //global focused video
  899. focusHookVId: '',
  900.  
  901. /* 獲取當前播放器的實例 */
  902. player: function() {
  903. let res = $hs.playerInstance || null;
  904. if (res && res.parentNode == null) {
  905. $hs.playerInstance = null;
  906. res = null;
  907. }
  908.  
  909. if (res == null) {
  910. for (let k in playerConfs) {
  911. let playerConf = playerConfs[k];
  912. if (playerConf && playerConf.domElement && playerConf.domElement.parentNode) return playerConf.domElement;
  913. }
  914. }
  915. if(res && res.parentNode)return res;
  916. return null;
  917. },
  918.  
  919. pictureInPicture: function(videoElm) {
  920. if (document.pictureInPictureElement) {
  921. document.exitPictureInPicture();
  922. } else if ('requestPictureInPicture' in videoElm) {
  923. videoElm.requestPictureInPicture()
  924. } else {
  925. $hs.tips('PIP is not supported.');
  926. }
  927. },
  928.  
  929. getPlayerConf: function(video) {
  930.  
  931. if (!video) return null;
  932. let vpid = video.getAttribute('_h5ppid') || null;
  933. if (!vpid) return null;
  934. return playerConfs[vpid] || null;
  935.  
  936. },
  937. debug01: function(evt, videoActive) {
  938.  
  939. if (!$hs.eventHooks) {
  940. document.__h5p_eventhooks = ($hs.eventHooks = {
  941. _debug_: []
  942. });
  943. }
  944. $hs.eventHooks._debug_.push([videoActive, evt.type]);
  945. // console.log('h5p eventhooks = document.__h5p_eventhooks')
  946. },
  947.  
  948. swtichPlayerInstance: function() {
  949.  
  950. let newPlayerInstance = null;
  951. const ONLY_PLAYING_NONE = 0x4A00;
  952. const ONLY_PLAYING_MORE_THAN_ONE = 0x5A00;
  953. let onlyPlayingInstance = ONLY_PLAYING_NONE;
  954. for (let k in playerConfs) {
  955. let playerConf = playerConfs[k] || {};
  956. let {
  957. domElement,
  958. domActive
  959. } = playerConf;
  960. if (domElement) {
  961. if (domActive & DOM_ACTIVE_INVALID_PARENT) continue;
  962. if (!domElement.parentNode) {
  963. playerConf.domActive |= DOM_ACTIVE_INVALID_PARENT;
  964. continue;
  965. }
  966. if ((domActive & DOM_ACTIVE_MOUSE_CLICK) || (domActive & DOM_ACTIVE_KEY_DOWN) || (domActive & DOM_ACTIVE_FULLSCREEN)) {
  967. newPlayerInstance = domElement
  968. break;
  969. }
  970. if (domActive & DOM_ACTIVE_ONCE_PLAYED && (domActive & DOM_ACTIVE_DELAYED_PAUSED) == 0) {
  971. if (onlyPlayingInstance == ONLY_PLAYING_NONE) onlyPlayingInstance = domElement;
  972. else onlyPlayingInstance = ONLY_PLAYING_MORE_THAN_ONE;
  973. }
  974. }
  975. }
  976. if (newPlayerInstance == null && onlyPlayingInstance.nodeType == 1) {
  977. newPlayerInstance = onlyPlayingInstance;
  978. }
  979.  
  980. $hs.playerInstance = newPlayerInstance
  981.  
  982.  
  983. },
  984.  
  985.  
  986. handlerVideoPlaying: function(evt) {
  987. const videoElm = evt.target || this || null;
  988.  
  989. if (!videoElm || videoElm.nodeName != "VIDEO") return;
  990.  
  991. const vpid = videoElm.getAttribute('_h5ppid')
  992.  
  993. if (!vpid) return;
  994.  
  995. $bv.boostVideoPerformanceActivate();
  996.  
  997. //console.log('video play',videoElm.duration,videoElm.currentTime)
  998.  
  999. Promise.resolve().then(() => {
  1000.  
  1001. if ($hs.cid_playHook > 0) window.clearTimeout($hs.cid_playHook);
  1002. $hs.cid_playHook = window.setTimeout(function() {
  1003. let onlyPlayed = null;
  1004. for (var k in playerConfs) {
  1005. if (k == vpid) {
  1006. if (playerConfs[k].domElement.paused === false) onlyPlayed = true;
  1007. } else if (playerConfs[k].domElement.paused === false) {
  1008. onlyPlayed = false;
  1009. break;
  1010. }
  1011. }
  1012. if (onlyPlayed === true) {
  1013. $hs.focusHookVId = vpid
  1014. }
  1015.  
  1016. $hs.hcDelayMouseHideAndStartMointoring(videoElm);
  1017.  
  1018. }, 100)
  1019.  
  1020. }).then(() => {
  1021.  
  1022. const playerConf = $hs.getPlayerConf(videoElm)
  1023.  
  1024. if (playerConf) {
  1025. if (playerConf.timeout_pause > 0) playerConf.timeout_pause = window.clearTimeout(playerConf.timeout_pause);
  1026. playerConf.lastPauseAt = 0
  1027. playerConf.domActive |= DOM_ACTIVE_ONCE_PLAYED;
  1028. playerConf.domActive &= ~DOM_ACTIVE_DELAYED_PAUSED;
  1029. }
  1030.  
  1031. }).then(() => {
  1032.  
  1033. $hs._actionBoxObtain(videoElm);
  1034.  
  1035. }).then(() => {
  1036.  
  1037. $hs.swtichPlayerInstance();
  1038.  
  1039.  
  1040.  
  1041. }).then(() => {
  1042.  
  1043. if (!$hs.enable) return $hs.tips(false);
  1044.  
  1045. if (videoElm._isThisPausedBefore_) consoleLog('resumed')
  1046. let _pausedbefore_ = videoElm._isThisPausedBefore_
  1047.  
  1048. if (videoElm.playpause_cid) {
  1049. window.clearTimeout(videoElm.playpause_cid);
  1050. videoElm.playpause_cid = 0;
  1051. }
  1052. let _last_paused = videoElm._last_paused
  1053. videoElm._last_paused = videoElm.paused
  1054. if (_last_paused === !videoElm.paused) {
  1055. videoElm.playpause_cid = window.setTimeout(() => {
  1056. if (videoElm.paused === !_last_paused && !videoElm.paused && _pausedbefore_) {
  1057. $hs.tips('Playback resumed', undefined, 2500)
  1058. }
  1059. }, 90)
  1060. }
  1061.  
  1062. /* 播放的時候進行相關同步操作 */
  1063.  
  1064. if (!videoElm._record_continuous) {
  1065.  
  1066. /* 同步之前設定的播放速度 */
  1067. $hs.setPlaybackRate()
  1068.  
  1069. if (!_endlessloop) _endlessloop = new AFLooperArray();
  1070.  
  1071. videoElm._record_continuous = _endlessloop.appendLoop(handle.afPlaybackRecording);
  1072. videoElm._record_continuous._lastSave = -999;
  1073.  
  1074. videoElm._record_continuous.timeDelta = 2000;
  1075. videoElm._record_continuous.player = videoElm
  1076. videoElm._record_continuous.savePlaybackProgress = handle.savePlaybackProgress;
  1077. videoElm._record_continuous.playingWithRecording = handle.playingWithRecording;
  1078. }
  1079.  
  1080. videoElm._record_continuous.playingWithRecording(videoElm); //try to start recording
  1081.  
  1082. videoElm._isThisPausedBefore_ = false;
  1083.  
  1084. })
  1085.  
  1086. },
  1087.  
  1088.  
  1089. handlerVideoPause: function(evt) {
  1090.  
  1091. const videoElm = evt.target || this || null;
  1092.  
  1093. if (!videoElm || videoElm.nodeName != "VIDEO") return;
  1094.  
  1095. const vpid = videoElm.getAttribute('_h5ppid')
  1096.  
  1097. if (!vpid) return;
  1098. $bv.boostVideoPerformanceDeactivate();
  1099.  
  1100. const isVideoEnded = (decimalEqual(videoElm.duration,videoElm.currentTime));
  1101.  
  1102.  
  1103.  
  1104. Promise.resolve().then(() => {
  1105.  
  1106. if ($hs.cid_playHook > 0) window.clearTimeout($hs.cid_playHook);
  1107. $hs.cid_playHook = window.setTimeout(function() {
  1108. let allPaused = true;
  1109. for (var k in playerConfs) {
  1110. if (playerConfs[k].domElement.paused === false) {
  1111. allPaused = false;
  1112. break;
  1113. }
  1114. }
  1115. if (allPaused) {
  1116. $hs.focusHookVId = vpid
  1117. }
  1118. }, 100)
  1119.  
  1120. }).then(() => {
  1121.  
  1122. const playerConf = $hs.getPlayerConf(videoElm)
  1123. if (playerConf) {
  1124. playerConf.lastPauseAt = +new Date;
  1125. playerConf.timeout_pause = window.setTimeout(() => {
  1126. if (playerConf.lastPauseAt > 0) playerConf.domActive |= DOM_ACTIVE_DELAYED_PAUSED;
  1127. }, 600)
  1128. }
  1129.  
  1130. }).then(() => {
  1131.  
  1132. if(!isVideoEnded){
  1133.  
  1134. if (!$hs.enable) return $hs.tips(false);
  1135. consoleLog('pause')
  1136. videoElm._isThisPausedBefore_ = true;
  1137.  
  1138. let _last_paused = videoElm._last_paused
  1139. videoElm._last_paused = videoElm.paused
  1140. if (videoElm.playpause_cid) {
  1141. window.clearTimeout(videoElm.playpause_cid);
  1142. videoElm.playpause_cid = 0;
  1143. }
  1144. if (_last_paused === !videoElm.paused) {
  1145. videoElm.playpause_cid = window.setTimeout(() => {
  1146. if (videoElm.paused === !_last_paused && videoElm.paused) {
  1147. $hs._tips(videoElm, 'Playback paused', undefined, 2500)
  1148. }
  1149. }, 90)
  1150. }
  1151.  
  1152. }else{
  1153.  
  1154. videoElm._isThisPausedBefore_ = true;
  1155. }
  1156.  
  1157.  
  1158. if (videoElm._record_continuous && videoElm._record_continuous.isFunctionLooping) {
  1159. window.setTimeout(function() {
  1160. if (videoElm.paused === true && !videoElm._record_continuous.isFunctionLooping) videoElm._record_continuous.savePlaybackProgress(); //savePlaybackProgress once before stopping //handle.savePlaybackProgress;
  1161. }, 380)
  1162. videoElm._record_continuous.loopingStop();
  1163. }
  1164.  
  1165.  
  1166. })
  1167.  
  1168.  
  1169. },
  1170. handlerVideoVolumeChange: function(evt) {
  1171.  
  1172. let videoElm = evt.target || this || null;
  1173.  
  1174. if (videoElm.nodeName != "VIDEO") return;
  1175. if (videoElm.volume >= 0) {} else {
  1176. return;
  1177. }
  1178.  
  1179. if ($hs._volume_change_counter > 0) return;
  1180. $hs._volume_change_counter = ($hs._volume_change_counter || 0) + 1
  1181.  
  1182. window.requestAnimationFrame(function() {
  1183.  
  1184. let makeTips = false;
  1185. Promise.resolve(videoElm).then((videoElm) => {
  1186.  
  1187.  
  1188. let cVol = videoElm.volume;
  1189. let cMuted = videoElm.muted;
  1190.  
  1191. if (cVol === videoElm._volume_p && cMuted === videoElm._muted_p) {
  1192. // nothing changed
  1193. } else if (cVol === videoElm._volume_p && cMuted !== videoElm._muted_p) {
  1194. // muted changed
  1195. } else { // cVol != pVol
  1196.  
  1197. // only volume changed
  1198.  
  1199. let shallShowTips = videoElm._volume >= 0; //prevent initialization
  1200.  
  1201. if (!cVol) {
  1202. videoElm.muted = true;
  1203. } else if (cMuted) {
  1204. videoElm.muted = false;
  1205. videoElm._volume = cVol;
  1206. } else if (!cMuted) {
  1207. videoElm._volume = cVol;
  1208. }
  1209. consoleLog('volume changed');
  1210.  
  1211. if (shallShowTips) makeTips = true;
  1212.  
  1213. }
  1214.  
  1215. videoElm._volume_p = cVol;
  1216. videoElm._muted_p = cMuted;
  1217.  
  1218. return videoElm;
  1219.  
  1220. }).then((videoElm) => {
  1221.  
  1222. if (makeTips) $hs._tips(videoElm, 'Volume: ' + dround(videoElm.volume * 100) + '%', undefined, 3000);
  1223.  
  1224. $hs._volume_change_counter = 0;
  1225.  
  1226. })
  1227. videoElm = null
  1228.  
  1229. })
  1230.  
  1231.  
  1232.  
  1233. },
  1234. handlerVideoLoadedMetaData: function(evt) {
  1235. const videoElm = evt.target || this || null;
  1236.  
  1237. if (!videoElm || videoElm.nodeName != "VIDEO") return;
  1238.  
  1239. Promise.resolve(videoElm).then((videoElm) => {
  1240.  
  1241. consoleLog('video size', videoElm.videoWidth + ' x ' + videoElm.videoHeight);
  1242.  
  1243. let vpid = videoElm.getAttribute('_h5ppid') || null;
  1244. if (!vpid || !videoElm.currentSrc) return;
  1245.  
  1246. let videoElm_withSrcChanged = null
  1247.  
  1248. if ($hs.varSrcList[vpid] != videoElm.currentSrc) {
  1249. $hs.varSrcList[vpid] = videoElm.currentSrc;
  1250. $hs.videoSrcFound(videoElm);
  1251. videoElm_withSrcChanged = videoElm;
  1252. }
  1253. if (!videoElm._onceVideoLoaded) {
  1254. videoElm._onceVideoLoaded = true;
  1255. playerConfs[vpid].domActive |= DOM_ACTIVE_SRC_LOADED;
  1256. }
  1257.  
  1258. return videoElm_withSrcChanged
  1259. }).then((videoElm_withSrcChanged) => {
  1260.  
  1261. if (videoElm_withSrcChanged) $hs._actionBoxObtain(videoElm_withSrcChanged);
  1262.  
  1263.  
  1264.  
  1265. })
  1266.  
  1267. },
  1268. handlerSizing:(entries)=>{
  1269.  
  1270. for(const {target} of entries){
  1271.  
  1272. let cw=target.clientWidth
  1273. let ch=target.clientHeight
  1274. target.__clientWidth = cw
  1275. target.__clientHeight = ch
  1276. target.mouseMoveMax = Math.sqrt(cw * cw + ch * ch) * 0.06;
  1277.  
  1278.  
  1279. }
  1280.  
  1281. },
  1282.  
  1283. mouseAct: function() {
  1284.  
  1285. $hs.mouseActioner.cid = 0;
  1286.  
  1287. if (+new Date - $hs.mouseActioner.time < 30) {
  1288. $hs.mouseActioner.cid = window.setTimeout($hs.mouseAct, 82)
  1289. return;
  1290. }
  1291.  
  1292. if ($hs.mouseDownAt && $hs.mouseActioner.lastFound && $hs.mouseDownAt.insideVideo === $hs.mouseActioner.lastFound) {
  1293.  
  1294. return;
  1295.  
  1296. }
  1297.  
  1298. const getVideo = (target) => {
  1299.  
  1300.  
  1301. const actionBoxRelation = $hs.getActionBoxRelationFromDOM(target);
  1302. if (!actionBoxRelation) return;
  1303. const actionBox = actionBoxRelation.actionBox
  1304. if (!actionBox) return;
  1305. const vpid = actionBox.getAttribute('_h5p_actionbox_');
  1306. const videoElm = actionBoxRelation.player;
  1307. if (!videoElm) return;
  1308.  
  1309. return videoElm
  1310. }
  1311.  
  1312. Promise.resolve().then(() => {
  1313. for (const {
  1314. type,
  1315. target
  1316. } of $hs.mouseActioner.calls) {
  1317. if (type == 'mouseenter') {
  1318. const videoElm = getVideo(target);
  1319. if (videoElm) {
  1320. return videoElm
  1321. }
  1322. }
  1323. }
  1324. return null;
  1325. }).then(videoFound => {
  1326.  
  1327. Promise.resolve().then(() => {
  1328.  
  1329. var plastHoverElm = $hs.mouseActioner.lastHoverElm;
  1330. $hs.mouseActioner.lastHoverElm = $hs.mouseEnteredElement;
  1331.  
  1332. //console.log(!!$hs.mointoringVideo , !!videoFound)
  1333. //console.log(554,'mointoringVideo:'+!!$hs.mointoringVideo,'videoFound:'+ !!videoFound)
  1334.  
  1335. if ($hs.mointoringVideo && !videoFound) {
  1336. $hs.hcShowMouseAndRemoveMointoring($vQuery.player($hs.mointoringVideo))
  1337. } else if ($hs.mointoringVideo && videoFound) {
  1338. if (plastHoverElm != $hs.mouseActioner.lastHoverElm) $hs.hcMouseShowWithMonitoring(videoFound);
  1339. } else if (!$hs.mointoringVideo && videoFound) {
  1340. $hs.hcDelayMouseHideAndStartMointoring(videoFound)
  1341. }
  1342.  
  1343. $hs.mouseMoveCount = 0;
  1344. $hs.mouseActioner.calls.length = 0;
  1345. $hs.mouseActioner.lastFound = videoFound;
  1346.  
  1347. })
  1348.  
  1349.  
  1350.  
  1351. if (videoFound !== $hs.mouseActioner.lastFound) {
  1352. if ($hs.mouseActioner.lastFound) {
  1353. $hs.handlerElementMouseLeaveVideo($hs.mouseActioner.lastFound)
  1354. }
  1355. if (videoFound) {
  1356. $hs.handlerElementMouseEnterVideo(videoFound)
  1357. }
  1358. }
  1359.  
  1360.  
  1361. })
  1362.  
  1363. },
  1364. handlerElementMouseEnterVideo: function(video) {
  1365.  
  1366. //console.log('mouseenter video')
  1367.  
  1368. const playerConf = $hs.getPlayerConf(video)
  1369. if (playerConf) {
  1370. playerConf.domActive |= DOM_ACTIVE_MOUSE_IN;
  1371. }
  1372.  
  1373. $hs._actionBoxObtain(video);
  1374.  
  1375. $hs.enteredActionBoxRelation = $hs.actionBoxRelations[video.getAttribute('_h5ppid') || 'null'] || null
  1376.  
  1377. },
  1378. handlerElementMouseLeaveVideo: function(video) {
  1379.  
  1380. //console.log('mouseleave video')
  1381.  
  1382. const playerConf = $hs.getPlayerConf(video)
  1383. if (playerConf) {
  1384. playerConf.domActive &= ~DOM_ACTIVE_MOUSE_IN;
  1385. }
  1386.  
  1387.  
  1388. $hs.enteredActionBoxRelation = null
  1389.  
  1390.  
  1391. },
  1392. handlerElementMouseEnter: function(evt) {
  1393. if ($hs.intVideoInitCount > 0) {} else {
  1394. return;
  1395. }
  1396. if (!evt || !evt.target || !(evt.target.nodeType > 0)) return;
  1397.  
  1398. $hs.mouseEnteredElement = evt.target
  1399.  
  1400. if ($hs.mouseDownAt && $hs.mouseDownAt.insideVideo) return;
  1401.  
  1402. if ($hs.enteredActionBoxRelation && $hs.enteredActionBoxRelation.pContainer && $hs.enteredActionBoxRelation.pContainer.contains(evt.target)) return;
  1403.  
  1404. //console.log('mouseenter call')
  1405.  
  1406. $hs.mouseActioner.calls.length = 1;
  1407. $hs.mouseActioner.calls[0] = {
  1408. type: evt.type,
  1409. target: evt.target
  1410. }
  1411.  
  1412.  
  1413. //$hs.mouseActioner.calls.push({type:evt.type,target:evt.target});
  1414. $hs.mouseActioner.time = +new Date;
  1415.  
  1416. if (!$hs.mouseActioner.cid) {
  1417. $hs.mouseActioner.cid = window.setTimeout($hs.mouseAct, 82)
  1418. }
  1419.  
  1420. //console.log(evt.target)
  1421.  
  1422. },
  1423. handlerElementMouseLeave: function(evt) {
  1424. if ($hs.intVideoInitCount > 0) {} else {
  1425. return;
  1426. }
  1427. if (!evt || !evt.target || !(evt.target.nodeType > 0)) return;
  1428.  
  1429. if ($hs.mouseDownAt && $hs.mouseDownAt.insideVideo) return;
  1430.  
  1431. if ($hs.enteredActionBoxRelation && $hs.enteredActionBoxRelation.pContainer && !$hs.enteredActionBoxRelation.pContainer.contains(evt.target)) {
  1432.  
  1433. //console.log('mouseleave call')
  1434.  
  1435. //$hs.mouseActioner.calls.push({type:evt.type,target:evt.target});
  1436. $hs.mouseActioner.time = +new Date;
  1437.  
  1438. if (!$hs.mouseActioner.cid) {
  1439. $hs.mouseActioner.cid = window.setTimeout($hs.mouseAct, 82)
  1440. }
  1441. }
  1442.  
  1443. },
  1444. handlerElementMouseDown: function(evt) {
  1445. if ($hs.mouseDownAt) return;
  1446. $hs.mouseDownAt = {
  1447. elm: evt.target,
  1448. insideVideo: false,
  1449. pContainer: null
  1450. };
  1451.  
  1452.  
  1453. if ($hs.intVideoInitCount > 0) {} else {
  1454. return;
  1455. }
  1456.  
  1457. // $hs._mouseIsDown=true;
  1458.  
  1459. if (!evt || !evt.target || !(evt.target.nodeType > 0)) return;
  1460.  
  1461. if ($hs.mouseActioner.lastFound && $hs.mointoringVideo) $hs.hcMouseShowWithMonitoring($hs.mouseActioner.lastFound)
  1462.  
  1463. Promise.resolve(evt.target).then((evtTarget) => {
  1464.  
  1465.  
  1466. if (document.readyState != "complete") return;
  1467.  
  1468.  
  1469. function notAtVideo() {
  1470. if ($hs.focusHookVId) $hs.focusHookVId = ''
  1471. }
  1472.  
  1473.  
  1474. const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evtTarget);
  1475. if (!actionBoxRelation) return notAtVideo();
  1476. const actionBox = actionBoxRelation.actionBox
  1477. if (!actionBox) return notAtVideo();
  1478. const vpid = actionBox.getAttribute('_h5p_actionbox_');
  1479. if (!vpid) return notAtVideo();
  1480. const videoElm = actionBoxRelation.player;
  1481. if (!videoElm) return notAtVideo();
  1482.  
  1483. if (!$hs.mouseDownAt) return;
  1484. $hs.mouseDownAt.insideVideo = videoElm;
  1485.  
  1486. $hs.mouseDownAt.pContainer = actionBoxRelation.pContainer;
  1487.  
  1488. $hs.focusHookVId = vpid
  1489.  
  1490.  
  1491.  
  1492. const playerConf = $hs.getPlayerConf(videoElm)
  1493. if (playerConf) {
  1494. delayCall("$$actionBoxClicking", function() {
  1495. playerConf.domActive &= ~DOM_ACTIVE_MOUSE_CLICK;
  1496. }, 137)
  1497. playerConf.domActive |= DOM_ACTIVE_MOUSE_CLICK;
  1498. }
  1499.  
  1500.  
  1501. return videoElm
  1502.  
  1503. }).then((videoElm) => {
  1504.  
  1505. if (!videoElm) return;
  1506.  
  1507. $hs._actionBoxObtain(videoElm);
  1508.  
  1509. return videoElm
  1510.  
  1511. }).then((videoElm) => {
  1512.  
  1513. if (!videoElm) return;
  1514.  
  1515. $hs.swtichPlayerInstance();
  1516.  
  1517. })
  1518.  
  1519. },
  1520. handlerElementMouseUp: function(evt) {
  1521.  
  1522. if ($hs.pendingTips) {
  1523.  
  1524. let pendingTips = $hs.pendingTips;
  1525. $hs.pendingTips = null;
  1526.  
  1527. for (let vpid in pendingTips) {
  1528. const tipsDom = pendingTips[vpid]
  1529. Promise.resolve(tipsDom).then((tipsDom) => {
  1530. if(tipsDom.getAttribute('_h5p_animate')=='P') tipsDom.setAttribute('_h5p_animate','');
  1531. })
  1532. }
  1533. pendingTips = null;
  1534.  
  1535. }
  1536. if ($hs.mouseDownAt) {
  1537.  
  1538. $hs.mouseDownAt = null;
  1539. }
  1540. },
  1541. handlerElementWheelTuneVolume: function(evt) { //shift + wheel
  1542.  
  1543. if ($hs.intVideoInitCount > 0) {} else {
  1544. return;
  1545. }
  1546.  
  1547. if (!evt.shiftKey || !evt.target || !(evt.target.nodeType > 0)) return;
  1548.  
  1549. const fDeltaY = (evt.deltaY > 0) ? 1 : (evt.deltaY < 0) ? -1 : 0;
  1550. if (fDeltaY) {
  1551.  
  1552.  
  1553.  
  1554. const randomID = +new Date
  1555. $hs.handlerElementWheelTuneVolume._randomID = randomID;
  1556.  
  1557.  
  1558. Promise.resolve(evt.target).then((evtTarget) => {
  1559.  
  1560.  
  1561. const actionBoxRelation = $hs.getActionBoxRelationFromDOM(evtTarget);
  1562. if (!actionBoxRelation) return;
  1563. const actionBox = actionBoxRelation.actionBox
  1564. if (!actionBox) return;
  1565. const vpid = actionBox.getAttribute('_h5p_actionbox_');
  1566. const videoElm = actionBoxRelation.player;
  1567. if (!videoElm) return;
  1568.  
  1569. let player = $hs.player();
  1570. if (!player || !player.parentNode || player != videoElm) return;
  1571.  
  1572. return videoElm
  1573.  
  1574. }).then((videoElm) => {
  1575. if (!videoElm) return;
  1576.  
  1577. if ($hs.handlerElementWheelTuneVolume._randomID != randomID) return;
  1578. // $hs._actionBoxObtain(videoElm);
  1579. return videoElm;
  1580. }).then((player) => {
  1581. if (!player || !player.parentNode) return;
  1582. if ($hs.handlerElementWheelTuneVolume._randomID != randomID) return;
  1583. if (fDeltaY > 0) {
  1584. if ((player.muted && player.volume === 0) && player._volume > 0) {
  1585. player.muted = false;
  1586. player.volume = player._volume;
  1587. } else if (player.muted && (player.volume > 0 || !player._volume)) {
  1588. player.muted = false;
  1589. }
  1590. $hs.tuneVolume(-0.05)
  1591. } else if (fDeltaY < 0) {
  1592. if ((player.muted && player.volume === 0) && player._volume > 0) {
  1593. player.muted = false;
  1594. player.volume = player._volume;
  1595. } else if (player.muted && (player.volume > 0 || !player._volume)) {
  1596. player.muted = false;
  1597. }
  1598. $hs.tuneVolume(+0.05)
  1599. }
  1600. })
  1601. evt.stopPropagation()
  1602. evt.preventDefault()
  1603. return false
  1604. }
  1605. },
  1606.  
  1607. handlerWinMessage: async function(e) {
  1608. let tag, ed;
  1609. if (typeof e.data == 'object' && typeof e.data.tag == 'string') {
  1610. tag = e.data.tag;
  1611. ed = e.data
  1612. } else {
  1613. return;
  1614. }
  1615. let msg = null,
  1616. success = 0;
  1617. let msg_str, msg_stype, p
  1618. switch (tag) {
  1619. case 'consoleLog':
  1620. msg_str = ed.str;
  1621. msg_stype = ed.stype;
  1622. if (msg_stype === 1) {
  1623. msg = (document[str_postMsgData] || {})[msg_str] || [];
  1624. success = 1;
  1625. } else if (msg_stype === 2) {
  1626. msg = jsonParse(msg_str);
  1627. if (msg && msg.d) {
  1628. success = 2;
  1629. msg = msg.d;
  1630. }
  1631. } else {
  1632. msg = msg_str
  1633. }
  1634. p = (ed.passing && ed.winOrder) ? [' | from win-' + ed.winOrder] : [];
  1635. if (success) {
  1636. console.log(...msg, ...p)
  1637. //document[ed.data]=null; // also delete the information
  1638. } else {
  1639. console.log('msg--', msg, ...p, ed);
  1640. }
  1641. break;
  1642.  
  1643. }
  1644. },
  1645.  
  1646. toolCheckFullScreen: function(doc) {
  1647. if (typeof doc.fullScreen == 'boolean') return doc.fullScreen;
  1648. if (typeof doc.webkitIsFullScreen == 'boolean') return doc.webkitIsFullScreen;
  1649. if (typeof doc.mozFullScreen == 'boolean') return doc.mozFullScreen;
  1650. return null;
  1651. },
  1652.  
  1653. toolFormatCT: function(u) {
  1654.  
  1655. let w = Math.round(u, 0)
  1656. let a = w % 60
  1657. w = (w - a) / 60
  1658. let b = w % 60
  1659. w = (w - b) / 60
  1660. let str = ("0" + b).substr(-2) + ":" + ("0" + a).substr(-2);
  1661. if (w) str = w + ":" + str
  1662.  
  1663. return str
  1664.  
  1665. },
  1666.  
  1667. loopOutwards: function(startPoint, maxStep) {
  1668.  
  1669.  
  1670. let c = 0,
  1671. p = startPoint,
  1672. q = null;
  1673. while (p && (++c <= maxStep)) {
  1674. if (p.querySelectorAll('video').length !== 1) {
  1675. return q;
  1676. break;
  1677. }
  1678. q = p;
  1679. p = p.parentNode;
  1680. }
  1681.  
  1682. return p || q || null;
  1683.  
  1684. },
  1685.  
  1686. getActionBlockElement: function(player, layoutBox) {
  1687.  
  1688. //player, $hs.getPlayerBlockElement(player).parentNode;
  1689. //player, player.parentNode .... player.parentNode.parentNode.parentNode
  1690.  
  1691. //layoutBox: a container element containing video and with innerHeight>=player.innerHeight [skipped wrapping]
  1692. //layoutBox parentSize > layoutBox Size
  1693.  
  1694. //actionBox: a container with video and controls
  1695. //can be outside layoutbox (bilibili)
  1696. //assume maximum 3 layers
  1697.  
  1698.  
  1699. let outerLayout = $hs.loopOutwards(layoutBox, 3); //i.e. layoutBox.parent.parent.parent
  1700.  
  1701.  
  1702. const allFullScreenBtns = $hs.queryFullscreenBtnsIndependant(outerLayout)
  1703. //console.log('xx', outerLayout.querySelectorAll('[class*="-fullscreen"]').length, allFullScreenBtns.length)
  1704. let actionBox = null;
  1705.  
  1706. // console.log('fa0a', allFullScreenBtns.length, layoutBox)
  1707. if (allFullScreenBtns.length > 0) {
  1708. // console.log('faa', allFullScreenBtns.length)
  1709.  
  1710. for (const possibleFullScreenBtn of allFullScreenBtns) possibleFullScreenBtn.setAttribute('__h5p_fsb__', '');
  1711. let pElm = player.parentNode;
  1712. let fullscreenBtns = null;
  1713. while (pElm && pElm.parentNode) {
  1714. fullscreenBtns = pElm.querySelectorAll('[__h5p_fsb__]');
  1715. if (fullscreenBtns.length > 0) {
  1716. break;
  1717. }
  1718. pElm = pElm.parentNode;
  1719. }
  1720. for (const possibleFullScreenBtn of allFullScreenBtns) possibleFullScreenBtn.removeAttribute('__h5p_fsb__');
  1721. if (fullscreenBtns && fullscreenBtns.length > 0) {
  1722. actionBox = pElm;
  1723. fullscreenBtns = $hs.exclusiveElements(fullscreenBtns);
  1724. return {
  1725. actionBox,
  1726. fullscreenBtns
  1727. };
  1728. }
  1729. }
  1730.  
  1731. let walkRes = domTool._isActionBox_1(player, layoutBox);
  1732. //walkRes.elm = player... player.parentNode.parentNode (i.e. wPlayer)
  1733. let parentCount = walkRes.length;
  1734.  
  1735. if (parentCount - 1 >= 0 && domTool._isActionBox(player, walkRes, parentCount - 1)) {
  1736. actionBox = walkRes[parentCount - 1].elm;
  1737. } else if (parentCount - 2 >= 0 && domTool._isActionBox(player, walkRes, parentCount - 2)) {
  1738. actionBox = walkRes[parentCount - 2].elm;
  1739. } else {
  1740. actionBox = player;
  1741. }
  1742.  
  1743. return {
  1744. actionBox,
  1745. fullscreenBtns: []
  1746. };
  1747.  
  1748.  
  1749.  
  1750.  
  1751. },
  1752.  
  1753.  
  1754. actionBoxMutationCallback: function(mutations, observer) {
  1755. for (const mutation of mutations) {
  1756.  
  1757.  
  1758. const vpid = mutation.target.getAttribute('_h5p_mf_');
  1759. if (!vpid) continue;
  1760.  
  1761. const actionBoxRelation = $hs.actionBoxRelations[vpid];
  1762. if (!actionBoxRelation) continue;
  1763.  
  1764.  
  1765. const removedNodes = mutation.removedNodes;
  1766. if (removedNodes && removedNodes.length > 0) {
  1767. for (const node of removedNodes) {
  1768. if (node.nodeType == 1) {
  1769. actionBoxRelation.mutationRemovalsCount++
  1770. node.removeAttribute('_h5p_mf_');
  1771. }
  1772. }
  1773.  
  1774. }
  1775.  
  1776. const addedNodes = mutation.addedNodes;
  1777. if (addedNodes && addedNodes.length > 0) {
  1778. for (const node of addedNodes) {
  1779. if (node.nodeType == 1) {
  1780. actionBoxRelation.mutationAdditionsCount++
  1781. }
  1782. }
  1783.  
  1784. }
  1785.  
  1786.  
  1787.  
  1788.  
  1789. }
  1790. },
  1791.  
  1792.  
  1793. getActionBoxRelationFromDOM: function(elm) {
  1794.  
  1795. //assume action boxes are mutually exclusive
  1796.  
  1797. for (let vpid in $hs.actionBoxRelations) {
  1798. const actionBoxRelation = $hs.actionBoxRelations[vpid];
  1799. const actionBox = actionBoxRelation.actionBox
  1800. //console.log('ab', actionBox)
  1801. if (actionBox && actionBox.parentNode) {
  1802. if (elm == actionBox || actionBox.contains(elm)) {
  1803. return actionBoxRelation;
  1804. }
  1805. }
  1806. }
  1807.  
  1808.  
  1809. return null;
  1810.  
  1811. },
  1812.  
  1813.  
  1814.  
  1815. _actionBoxObtain: function(player) {
  1816.  
  1817. if (!player || !player.parentNode) return null;
  1818. let vpid = player.getAttribute('_h5ppid');
  1819. if (!vpid) return null;
  1820.  
  1821. let actionBoxRelation = $hs.actionBoxRelations[vpid],
  1822. layoutBox = null,
  1823. actionBox = null,
  1824. boxSearchResult = null,
  1825. fullscreenBtns = null,
  1826. wPlayer = null;
  1827.  
  1828. function a() {
  1829. let wPlayerr= $hs.getPlayerBlockElement(player);
  1830. wPlayer = wPlayerr.wPlayer;
  1831. layoutBox = wPlayer.parentNode;
  1832. boxSearchResult = $hs.getActionBlockElement(player, layoutBox);
  1833. actionBox = boxSearchResult.actionBox
  1834. fullscreenBtns = boxSearchResult.fullscreenBtns
  1835. }
  1836.  
  1837. function setDOM_mflag(startElm, endElm, vpid) {
  1838. if (!startElm || !endElm) return;
  1839. if (startElm == endElm) startElm.setAttribute('_h5p_mf_', vpid)
  1840. else if (endElm.contains(startElm)) {
  1841.  
  1842. let p = startElm
  1843. while (p) {
  1844. p.setAttribute('_h5p_mf_', vpid)
  1845. if (p == endElm) break;
  1846. p = p.parentNode
  1847. }
  1848.  
  1849. }
  1850. }
  1851.  
  1852. function b(domNodes) {
  1853.  
  1854. actionBox.setAttribute('_h5p_actionbox_', vpid);
  1855. if (!$hs.actionBoxMutationObserver) $hs.actionBoxMutationObserver = new MutationObserver($hs.actionBoxMutationCallback);
  1856.  
  1857. // console.log('Major Mutation on Player Container')
  1858. const actionRelation = {
  1859. player: player,
  1860. wPlayer: wPlayer,
  1861. layoutBox: layoutBox,
  1862. actionBox: actionBox,
  1863. mutationRemovalsCount: 0,
  1864. mutationAdditionsCount: 0,
  1865. fullscreenBtns: fullscreenBtns,
  1866. pContainer: domNodes[domNodes.length - 1], // the block Element as the entire player (including control btns) having size>=video
  1867. ppContainer: domNodes[domNodes.length - 1].parentNode, // reference to the webpage
  1868. }
  1869. domNodes=null;
  1870.  
  1871.  
  1872. const pContainer = actionRelation.pContainer;
  1873. setDOM_mflag(player, pContainer, vpid)
  1874. for (const btn of fullscreenBtns) setDOM_mflag(btn, pContainer, vpid)
  1875. setDOM_mflag = null;
  1876.  
  1877. $hs.actionBoxRelations[vpid] = actionRelation
  1878.  
  1879.  
  1880. //console.log('mutt0',pContainer)
  1881. $hs.actionBoxMutationObserver.observe(pContainer, {
  1882. childList: true,
  1883. subtree: true
  1884. });
  1885. }
  1886.  
  1887. if (actionBoxRelation) {
  1888. //console.log('ddx', actionBoxRelation.mutationCount)
  1889. if (actionBoxRelation.pContainer && actionBoxRelation.pContainer.parentNode && actionBoxRelation.pContainer.parentNode === actionBoxRelation.ppContainer) {
  1890.  
  1891. if (actionBoxRelation.fullscreenBtns && actionBoxRelation.fullscreenBtns.length > 0) {
  1892.  
  1893. if (actionBoxRelation.mutationRemovalsCount === 0 && actionBoxRelation.mutationAdditionsCount === 0) return actionBoxRelation.actionBox
  1894.  
  1895. // if (actionBoxRelation.mutationCount === 0 && actionBoxRelation.fullscreenBtns.every(btn=>actionBoxRelation.actionBox.contains(btn))) return actionBoxRelation.actionBox
  1896. //console.log('Minor Mutation on Player Container', actionBoxRelation ? actionBoxRelation.mutationRemovalsCount : null, actionBoxRelation ? actionBoxRelation.mutationAdditionsCount : null)
  1897. a();
  1898. //console.log(3535,fullscreenBtns.length)
  1899. if (actionBox == actionBoxRelation.actionBox && layoutBox == actionBoxRelation.layoutBox && wPlayer == actionBoxRelation.wPlayer) {
  1900. //pContainer remains the same as actionBox and layoutBox remain unchanged
  1901. actionBoxRelation.ppContainer = actionBoxRelation.pContainer.parentNode; //just update the reference
  1902. if (actionBoxRelation.ppContainer) { //in case removed from DOM
  1903. actionBoxRelation.mutationRemovalsCount = 0;
  1904. actionBoxRelation.mutationAdditionsCount = 0;
  1905. actionBoxRelation.fullscreenBtns = fullscreenBtns;
  1906. return actionBox;
  1907. }
  1908. }
  1909.  
  1910. }
  1911.  
  1912. }
  1913.  
  1914. for(const rootDoc of rootDocs) {
  1915. const elms = rootDoc.querySelectorAll(`[_h5p_mf_="${vpid}"]`)
  1916. for (const elm of elms) elm.removeAttribute('_h5p_mf_')
  1917. actionBoxRelation.pContainer.removeAttribute('_h5p_mf_')
  1918. }
  1919.  
  1920. for (var k in actionBoxRelation) delete actionBoxRelation[k]
  1921. actionBoxRelation = null;
  1922. delete $hs.actionBoxRelations[vpid]
  1923. }
  1924.  
  1925. if (boxSearchResult == null) a();
  1926. a = null;
  1927. if (actionBox) {
  1928. let domNodes = [];
  1929. let pElm = player;
  1930. let containing = 0;
  1931. while (pElm) {
  1932. domNodes.push(pElm);
  1933. if (pElm === actionBox) containing |= 1;
  1934. if (pElm === layoutBox) containing |= 2;
  1935. if (containing === 3) {
  1936. b(domNodes);
  1937. domNodes=null;
  1938. pElm=null;
  1939. b = null;
  1940. return actionBox
  1941. }
  1942. pElm = pElm.parentNode;
  1943. }
  1944. }
  1945.  
  1946. return null;
  1947.  
  1948.  
  1949. // if (!actionBox.hasAttribute('tabindex')) actionBox.setAttribute('tabindex', '-1');
  1950.  
  1951.  
  1952.  
  1953.  
  1954. },
  1955.  
  1956. videoSrcFound: function(player) {
  1957.  
  1958. // src loaded
  1959.  
  1960. if (!player || !player.parentNode) return;
  1961. let vpid = player.getAttribute('_h5ppid') || null;
  1962. if (!vpid || !player.currentSrc) return;
  1963.  
  1964. player._isThisPausedBefore_ = false;
  1965.  
  1966. player.removeAttribute('_h5p_uid_encrypted');
  1967.  
  1968. if (player._record_continuous) player._record_continuous._lastSave = -999; //first time must save
  1969.  
  1970. let uid_A = location.pathname.replace(/[^\d+]/g, '') + '.' + location.search.replace(/[^\d+]/g, '');
  1971. let _uid = location.hostname.replace('www.', '').toLowerCase() + '!' + location.pathname.toLowerCase() + 'A' + uid_A + 'W' + player.videoWidth + 'H' + player.videoHeight + 'L' + (player.duration << 0);
  1972.  
  1973. digestMessage(_uid).then(function(_uid_encrypted) {
  1974.  
  1975. let d = +new Date;
  1976.  
  1977. let recordedTime = null;
  1978.  
  1979. ;
  1980. (function() {
  1981. //read the last record only;
  1982.  
  1983. let k3 = `_h5_player_play_progress_${_uid_encrypted}`;
  1984. let k3n = `_play_progress_${_uid_encrypted}`;
  1985. let m2 = Store._keys().filter(key => key.substr(0, k3.length) == k3); //all progress records for this video
  1986. let m2v = m2.map(keyName => +(keyName.split('+')[1] || '0'))
  1987. let m2vMax = Math.max(0, ...m2v)
  1988. if (!m2vMax) recordedTime = null;
  1989. else {
  1990. let _json_recordedTime = null;
  1991. _json_recordedTime = Store.read(k3n + '+' + m2vMax);
  1992. if (!_json_recordedTime) _json_recordedTime = {};
  1993. else _json_recordedTime = jsonParse(_json_recordedTime);
  1994. if (typeof _json_recordedTime == 'object') recordedTime = _json_recordedTime;
  1995. else recordedTime = null;
  1996. recordedTime = typeof recordedTime == 'object' ? recordedTime.t : recordedTime;
  1997. if (typeof recordedTime == 'number' && (+recordedTime >= 0 || +recordedTime <= 0)) {
  1998.  
  1999. } else if (typeof recordedTime == 'string' && recordedTime.length > 0 && (+recordedTime >= 0 || +recordedTime <= 0)) {
  2000. recordedTime = +recordedTime
  2001. } else {
  2002. recordedTime = null
  2003. }
  2004. }
  2005. if (recordedTime !== null) {
  2006. player._h5player_lastrecord_ = recordedTime;
  2007. } else {
  2008. player._h5player_lastrecord_ = null;
  2009. }
  2010. if (player._h5player_lastrecord_ > 5) {
  2011. consoleLog('last record playing', player._h5player_lastrecord_);
  2012. window.setTimeout(function() {
  2013. $hs._tips(player, `Press Shift-R to restore Last Playback: ${$hs.toolFormatCT(player._h5player_lastrecord_)}`, 5000, 4000)
  2014. }, 1000)
  2015. }
  2016.  
  2017. })();
  2018. // delay the recording by 5.4s => prevent ads or mis operation
  2019. window.setTimeout(function() {
  2020.  
  2021.  
  2022.  
  2023. let k1 = '_h5_player_play_progress_';
  2024. let k3 = `_h5_player_play_progress_${_uid_encrypted}`;
  2025. let k3n = `_play_progress_${_uid_encrypted}`;
  2026.  
  2027. //re-read all the localStorage keys
  2028. let m1 = Store._keys().filter(key => key.substr(0, k1.length) == k1); //all progress records in this site
  2029. let p = m1.length + 1;
  2030.  
  2031. for (const key of m1) { //all progress records for this video
  2032. if (key.substr(0, k3.length) == k3) {
  2033. Store._removeItem(key); //remove previous record for the current video
  2034. p--;
  2035. }
  2036. }
  2037.  
  2038. let asyncPromise = Promise.resolve();
  2039.  
  2040. if (recordedTime !== null) {
  2041. asyncPromise = asyncPromise.then(() => {
  2042. Store.save(k3n + '+' + d, jsonStringify({
  2043. 't': recordedTime
  2044. })) //prevent loss of last record
  2045. })
  2046. }
  2047.  
  2048. const _record_max_ = 48;
  2049. const _record_keep_ = 26;
  2050.  
  2051. if (p > _record_max_) {
  2052. //exisiting 48 records for one site;
  2053. //keep only 26 records
  2054.  
  2055. asyncPromise = asyncPromise.then(() => {
  2056. const comparator = (a, b) => (a.t < b.t ? -1 : a.t > b.t ? 1 : 0);
  2057.  
  2058. m1
  2059. .map(keyName => ({
  2060. keyName,
  2061. t: +(keyName.split('+')[1] || '0')
  2062. }))
  2063. .sort(comparator)
  2064. .slice(0, -_record_keep_)
  2065. .forEach((item) => localStorage.removeItem(item.keyName));
  2066.  
  2067. consoleLog(`stored progress: reduced to ${_record_keep_}`)
  2068. })
  2069. }
  2070.  
  2071. asyncPromise = asyncPromise.then(() => {
  2072. player.setAttribute('_h5p_uid_encrypted', _uid_encrypted + '+' + d);
  2073.  
  2074. //try to start recording
  2075. if (player._record_continuous) player._record_continuous.playingWithRecording();
  2076. })
  2077.  
  2078. }, 5400);
  2079.  
  2080. })
  2081.  
  2082. },
  2083. bindDocEvents: function(rootNode) {
  2084. if (!rootNode._onceBindedDocEvents) {
  2085.  
  2086. rootNode._onceBindedDocEvents = true;
  2087. rootNode.addEventListener('keydown', $hs.handlerRootKeyDownEvent, true)
  2088. //document._debug_rootNode_ = rootNode;
  2089.  
  2090. rootNode.addEventListener('mouseenter', $hs.handlerElementMouseEnter, true)
  2091. rootNode.addEventListener('mouseleave', $hs.handlerElementMouseLeave, true)
  2092. rootNode.addEventListener('mousedown', $hs.handlerElementMouseDown, true)
  2093. rootNode.addEventListener('mouseup', $hs.handlerElementMouseUp, true)
  2094. rootNode.addEventListener('wheel', $hs.handlerElementWheelTuneVolume, {
  2095. passive: false
  2096. });
  2097.  
  2098. // wheel - bubble events to keep it simple (i.e. it must be passive:false & capture:false)
  2099.  
  2100.  
  2101. rootNode.addEventListener('focus', $hs.handlerElementFocus, $mb.eh_capture_passive())
  2102. rootNode.addEventListener('fullscreenchange', $hs.handlerFullscreenChanged, true)
  2103.  
  2104. //rootNode.addEventListener('mousemove', $hs.handlerOverrideMouseMove, {capture:true, passive:false})
  2105.  
  2106. }
  2107. },
  2108.  
  2109. createGlobalCSS: function(){
  2110.  
  2111. let res = [];
  2112.  
  2113. res.push(`
  2114. .ytp-chrome-bottom+span#volumeUI:last-child:empty{
  2115. display:none;
  2116. }
  2117. html{
  2118. cursor:var(--h5p-hide-cursor) !important; /* only override if custom property is set*/
  2119. }
  2120. iframe[src][id]{
  2121. contain: strict;
  2122. }
  2123. `);
  2124.  
  2125. if(document.domain=='bilibili.com'){
  2126. res.push(`
  2127. #bilibili-player .bpx-player-row-dm-wrap{
  2128. contain: strict;
  2129. }
  2130. #bilibili-player .b-danmaku{
  2131. contain: content;
  2132. }
  2133. #bilibili-player{
  2134. contain: strict;
  2135. }
  2136. #bilibili-player .bpx-player-video-area{
  2137. contain: strict;
  2138. }
  2139. .bb-comment, .recom-list{
  2140. contain: content;
  2141. }
  2142. `);
  2143. }else if(document.domain=='youtube.com'){
  2144. res.push(`
  2145. #masthead-container, ytd-masthead#masthead{
  2146. contain: content;
  2147. }
  2148. ytd-watch-flexy #player, ytd-player#ytd-player{
  2149. contain: content;
  2150. }
  2151. .ytp-caption-window-container .caption-window, .ytp-caption-window-container .captions-text, .ytp-caption-window-container .caption-visual-line, .ytp-caption-window-container .ytp-caption-segment{
  2152. contain: content;
  2153. }
  2154. `);
  2155. }
  2156.  
  2157. domTool.addStyle(res.join('\n').trim());
  2158.  
  2159. },
  2160.  
  2161. fireGlobalInit: function() {
  2162. if ($hs.intVideoInitCount != 1) return;
  2163. if (!$hs.varSrcList) $hs.varSrcList = {};
  2164.  
  2165. Store.clearInvalid(_sVersion_)
  2166.  
  2167. Promise.resolve().then(() => {
  2168. $hs.createGlobalCSS();
  2169. });
  2170.  
  2171. },
  2172. getPlaybackRate: function() {
  2173. let playbackRate = Store.read('_playback_rate_');
  2174. if(+playbackRate>0) return +((+playbackRate).toFixed(1));
  2175. return 1.0;
  2176. },
  2177.  
  2178. _getPlayerBlockElement:function(player){
  2179.  
  2180.  
  2181. let layoutBox = null,
  2182. wPlayer = null, wPlayerInner=null;
  2183.  
  2184. if (!player || !player.parentNode) {
  2185. return null;
  2186. }
  2187.  
  2188. //without checkActiveBox, just a DOM for you to append tipsDom
  2189.  
  2190. function oWH(elm) {
  2191. return [elm.offsetWidth, elm.offsetHeight].join(',');
  2192. }
  2193.  
  2194. function search_nodes() {
  2195.  
  2196. wPlayer = player; // NOT NULL
  2197. layoutBox = wPlayer.parentNode; // NOT NULL
  2198.  
  2199. while (layoutBox.parentNode && layoutBox.nodeType == 1 && layoutBox.offsetHeight == 0) {
  2200. wPlayer = layoutBox; // NOT NULL
  2201. layoutBox = layoutBox.parentNode; // NOT NULL
  2202. }
  2203. //container must be with offsetHeight
  2204.  
  2205. while (layoutBox.parentNode && layoutBox.nodeType == 1 && layoutBox.offsetHeight < player.offsetHeight) {
  2206. wPlayer = layoutBox; // NOT NULL
  2207. layoutBox = layoutBox.parentNode; // NOT NULL
  2208. }
  2209. //container must have height >= player height
  2210.  
  2211. wPlayerInner=wPlayer
  2212.  
  2213. const layoutOWH = oWH(layoutBox)
  2214. //const playerOWH=oWH(player)
  2215.  
  2216. //skip all inner wraps
  2217. while (layoutBox.parentNode && layoutBox.nodeType == 1 && oWH(layoutBox.parentNode) == layoutOWH) {
  2218. wPlayer = layoutBox; // NOT NULL
  2219. layoutBox = layoutBox.parentNode; // NOT NULL
  2220. }
  2221.  
  2222. // oWH of layoutBox.parentNode != oWH of layoutBox and layoutBox.offsetHeight >= player.offsetHeight
  2223.  
  2224. }
  2225.  
  2226. search_nodes();
  2227.  
  2228. if (layoutBox.nodeType == 11) {
  2229. makeNoRoot(layoutBox);
  2230. search_nodes();
  2231. }
  2232.  
  2233.  
  2234.  
  2235. //condition:
  2236. //!layoutBox.parentNode || layoutBox.nodeType != 1 || layoutBox.offsetHeight > player.offsetHeight
  2237.  
  2238. // layoutBox is a node contains <video> and offsetHeight>=video.offsetHeight
  2239. // wPlayer is a HTML Element (nodeType==1)
  2240. // you can insert the DOM element into the layoutBox
  2241.  
  2242. if (layoutBox && wPlayer && layoutBox.nodeType === 1 && wPlayer.parentNode == layoutBox && layoutBox.parentNode){
  2243. let p={wPlayerInner,wPlayer};
  2244. return p;
  2245. }
  2246. throw 'unknown error';
  2247. },
  2248.  
  2249. parentingN:function(elm, parent, n){
  2250.  
  2251. if(!elm || !parent) return false;
  2252. let pElm=elm;
  2253. for(let i =0;i<n && pElm;i++) pElm=pElm.parentNode;
  2254. return (pElm===parent);
  2255.  
  2256. },
  2257.  
  2258. parentingInclusive:function(elm, parent){
  2259.  
  2260. let pElm=elm, arr=[];
  2261. while(pElm){
  2262. arr.push(pElm);
  2263. if(pElm===parent)break;
  2264. pElm=pElm.parentNode;
  2265. }
  2266. if(pElm===parent) return arr;
  2267. return null;
  2268.  
  2269. },
  2270. __layout_resize_observer_callback__: (entries, observer)=>{
  2271. const player = observer.player;
  2272. player._cache_wPlayerr=null;
  2273. for(const {target} of entries){
  2274. if('__to_player_n__' in target && target.__to_player_n__>=0){
  2275. if(!$hs.parentingN(player, target, target.__to_player_n__)) observer.unobserve(target)
  2276. }else{
  2277. observer.unobserve(target)
  2278. }
  2279. }
  2280. },
  2281. getPlayerBlockElement: function(player) {
  2282.  
  2283. if (!player || !player.parentNode) {
  2284. return null;
  2285. }
  2286.  
  2287. if(!player.__layout_resize_observer__){
  2288.  
  2289. let wPlayerr = $hs._getPlayerBlockElement(player)
  2290. let {wPlayerInner,wPlayer}=wPlayerr
  2291. let layoutBox = wPlayer.parentNode
  2292.  
  2293. player.__layout_resize_observer__=new ResizeObserver($hs.__layout_resize_observer_callback__)
  2294. player.__layout_resize_observer__.player=player;
  2295.  
  2296. let kh= $hs.parentingInclusive(player, layoutBox);
  2297. if(kh){
  2298.  
  2299. for(const elm of kh) player.__layout_resize_observer__.observe(elm)
  2300. player.__layout_resize_n__=kh.length
  2301.  
  2302. }else{
  2303. player.__layout_resize_n__=0
  2304. }
  2305.  
  2306. player._cache_wPlayerr=wPlayerr;
  2307. return player._cache_wPlayerr;
  2308. }
  2309.  
  2310.  
  2311. if(player._cache_wPlayerr && player.__layout_resize_n__>0) {
  2312. let kt=$hs.parentingN(player, player._cache_wPlayerr.wPlayer.parentNode, player.__layout_resize_n__-1);
  2313. if(kt) return player._cache_wPlayerr;
  2314. }
  2315.  
  2316. let wPlayerr=$hs._getPlayerBlockElement(player);
  2317.  
  2318. let {wPlayerInner,wPlayer} = wPlayerr
  2319. let layoutBox = wPlayer.parentNode
  2320.  
  2321. let kh= $hs.parentingInclusive(player, layoutBox);
  2322.  
  2323. if(kh){
  2324.  
  2325. let wi=0;
  2326. for(const elm of kh) {
  2327. elm.__to_player_n__=wi;
  2328. player.__layout_resize_observer__.observe(elm)
  2329. wi++;
  2330. }
  2331. player.__layout_resize_n__=kh.length
  2332. }else{
  2333. player.__layout_resize_n__=0
  2334. }
  2335. player._cache_wPlayerr=wPlayerr
  2336. return player._cache_wPlayerr;
  2337.  
  2338. },
  2339. change_layoutBox: function(tipsDom, player) {
  2340. if (!player || !player.parentNode) return;
  2341. let {wPlayerInner,wPlayer} = $hs.getPlayerBlockElement(player);
  2342. let layoutBoxInner = wPlayerInner.parentNode;
  2343. let beforeParent = tipsDom.parentNode;
  2344.  
  2345. if ((layoutBoxInner && layoutBoxInner.nodeType == 1) && (!beforeParent || beforeParent !== layoutBoxInner)) {
  2346.  
  2347. consoleLog('changed_layoutBox')
  2348. if (beforeParent && beforeParent !== layoutBoxInner){
  2349. if($hs.observer_resizeVideos) $hs.observer_resizeVideos.unobserve(beforeParent)
  2350. if(tipsDom.nextSibling && tipsDom.nextSibling.nodeName==utPositioner) beforeParent.removeChild(tipsDom.nextSibling);
  2351. }
  2352. layoutBoxInner.insertBefore(tipsDom, wPlayerInner);
  2353.  
  2354. }
  2355.  
  2356. tipsDom._playerVPID = player.getAttribute('_h5ppid');
  2357. },
  2358.  
  2359. _hasEventListener: function(elm, p) {
  2360. if (typeof elm['on' + p] == 'function') return true;
  2361. let listeners = $hs._getEventListeners(elm)
  2362. if (listeners) {
  2363. const cache = listeners[p]
  2364. return cache && cache.count > 0
  2365. }
  2366. return false;
  2367. },
  2368.  
  2369. _getEventListeners: function(elmNode) {
  2370. let listeners = wmListeners.get(elmNode);
  2371. if (listeners && typeof listeners == 'object') return listeners;
  2372. return null;
  2373. },
  2374.  
  2375. queryFullscreenBtnsIndependant: function(parentNode) {
  2376.  
  2377. let btns = [];
  2378.  
  2379. function elmCallback(elm) {
  2380.  
  2381. let hasClickListeners = null,
  2382. childElementCount = null,
  2383. isVisible = null,
  2384. btnElm = elm;
  2385. var pElm = elm;
  2386. while (pElm && pElm.nodeType === 1 && pElm != parentNode && pElm.querySelector('video') === null) {
  2387.  
  2388. let funcTest = $hs._hasEventListener(pElm, 'click');
  2389. funcTest = funcTest || $hs._hasEventListener(pElm, 'mousedown');
  2390. funcTest = funcTest || $hs._hasEventListener(pElm, 'mouseup');
  2391.  
  2392. if (funcTest) {
  2393. hasClickListeners = true
  2394. btnElm = pElm;
  2395. break;
  2396. }
  2397.  
  2398. pElm = pElm.parentNode;
  2399. }
  2400. if (btns.indexOf(btnElm) >= 0) return; //btn>a.fullscreen-1>b.fullscreen-2>c.fullscreen-3
  2401.  
  2402.  
  2403. if ('childElementCount' in elm) {
  2404.  
  2405. childElementCount = elm.childElementCount;
  2406.  
  2407. }
  2408. if ('offsetParent' in elm) {
  2409. isVisible = !!elm.offsetParent; //works with parent/self display none; not work with visiblity hidden / opacity0
  2410.  
  2411. }
  2412.  
  2413. if (hasClickListeners) {
  2414. let btn = {
  2415. elm,
  2416. btnElm,
  2417. isVisible,
  2418. hasClickListeners,
  2419. childElementCount,
  2420. isContained: null
  2421. };
  2422.  
  2423. //console.log('btnElm', btnElm)
  2424.  
  2425. btns.push(btnElm)
  2426.  
  2427. }
  2428. }
  2429.  
  2430.  
  2431. for (const elm of parentNode.querySelectorAll('[class*="full"][class*="screen"]')) {
  2432. let className = (elm.getAttribute('class') || "");
  2433. if (/\b(fullscreen|full-screen)\b/i.test(className.replace(/([A-Z][a-z]+)/g, '-$1-').replace(/[\_\-]+/g, '-'))) {
  2434. elmCallback(elm)
  2435. }
  2436. }
  2437.  
  2438.  
  2439. for (const elm of parentNode.querySelectorAll('[id*="full"][id*="screen"]')) {
  2440. let idName = (elm.getAttribute('id') || "");
  2441. if (/\b(fullscreen|full-screen)\b/i.test(idName.replace(/([A-Z][a-z]+)/g, '-$1-').replace(/[\_\-]+/g, '-'))) {
  2442. elmCallback(elm)
  2443. }
  2444. }
  2445.  
  2446. for (const elm of parentNode.querySelectorAll('[name*="full"][name*="screen"]')) {
  2447. let nName = (elm.getAttribute('name') || "");
  2448. if (/\b(fullscreen|full-screen)\b/i.test(nName.replace(/([A-Z][a-z]+)/g, '-$1-').replace(/[\_\-]+/g, '-'))) {
  2449. elmCallback(elm)
  2450. }
  2451. }
  2452.  
  2453. parentNode = null;
  2454.  
  2455. return btns;
  2456.  
  2457. },
  2458. exclusiveElements: function(elms) {
  2459.  
  2460. //not containing others
  2461. let res = [];
  2462.  
  2463. for (const roleElm of elms) {
  2464.  
  2465. let isContained = false;
  2466. for (const testElm of elms) {
  2467. if (testElm != roleElm && roleElm.contains(testElm)) {
  2468. isContained = true;
  2469. break;
  2470. }
  2471. }
  2472. if (!isContained) res.push(roleElm)
  2473. }
  2474. return res;
  2475.  
  2476. },
  2477.  
  2478. getWithFullscreenBtn: function(actionBoxRelation) {
  2479.  
  2480.  
  2481.  
  2482. //console.log('callFullScreenBtn', 300)
  2483.  
  2484. if (actionBoxRelation && actionBoxRelation.actionBox) {
  2485. let actionBox = actionBoxRelation.actionBox;
  2486. let btnElements = actionBoxRelation.fullscreenBtns;
  2487.  
  2488. // console.log('callFullScreenBtn', 400)
  2489. if (btnElements && btnElements.length > 0) {
  2490.  
  2491. // console.log('callFullScreenBtn', 500, btnElements, actionBox.contains(btnElements[0]))
  2492.  
  2493. let btnElement_idx = btnElements._only_idx;
  2494.  
  2495. if (btnElement_idx >= 0) {
  2496.  
  2497. } else if (btnElements.length === 1) {
  2498. btnElement_idx = 0;
  2499. } else if (btnElements.length > 1) {
  2500. //web-fullscreen-on/off ; fullscreen-on/off ....
  2501.  
  2502. const strList = btnElements.map(elm => [elm.className || 'null', elm.id || 'null', elm.name || 'null'].join('-').replace(/([A-Z][a-z]+)/g, '-$1-').replace(/[\_\-]+/g, '-'))
  2503.  
  2504. const filterOutScores = new Array(strList.length).fill(0);
  2505. const filterInScores = new Array(strList.length).fill(0);
  2506. const filterScores = new Array(strList.length).fill(0);
  2507. for (const [j, str] of strList.entries()) {
  2508. if (/\b(fullscreen|full-screen)\b/i.test(str)) filterInScores[j] += 1
  2509. if (/\b(web-fullscreen|web-full-screen)\b/i.test(str)) filterOutScores[j] += 1
  2510. if (/\b(fullscreen-on|full-screen-on)\b/i.test(str)) filterInScores[j] += 1
  2511. if (/\b(fullscreen-off|full-screen-off)\b/i.test(str)) filterOutScores[j] += 1
  2512. if (/\b(on-fullscreen|on-full-screen)\b/i.test(str)) filterInScores[j] += 1
  2513. if (/\b(off-fullscreen|off-full-screen)\b/i.test(str)) filterOutScores[j] += 1
  2514. }
  2515.  
  2516. let maxScore = -1e7;
  2517. for (const [j, str] of strList.entries()) {
  2518. filterScores[j] = filterInScores[j] * 3 - filterOutScores[j] * 2
  2519. if (filterScores[j] > maxScore) maxScore = filterScores[j];
  2520. }
  2521. btnElement_idx = filterScores.indexOf(maxScore)
  2522. if (btnElement_idx < 0) btnElement_idx = 0; //unknown
  2523. }
  2524.  
  2525. btnElements._only_idx = btnElement_idx
  2526.  
  2527.  
  2528. //consoleLog('original fullscreen')
  2529. return btnElements[btnElement_idx];
  2530.  
  2531. }
  2532.  
  2533.  
  2534. }
  2535. return null
  2536. },
  2537.  
  2538. callFullScreenBtn: function() {
  2539. console.log('callFullScreenBtn')
  2540.  
  2541.  
  2542.  
  2543. let player = $hs.player()
  2544. if (!player || !player.parentNode || !player.ownerDocument || !('exitFullscreen' in player.ownerDocument)) return;
  2545.  
  2546. let vpid = player.getAttribute('_h5ppid') || null;
  2547.  
  2548. if (!vpid) return;
  2549.  
  2550.  
  2551. const chFull = $hs.toolCheckFullScreen(player.ownerDocument);
  2552.  
  2553.  
  2554.  
  2555. if (chFull === true) {
  2556. player.ownerDocument.exitFullscreen();
  2557. return;
  2558. }
  2559.  
  2560. let actionBoxRelation = $hs.actionBoxRelations[vpid];
  2561.  
  2562.  
  2563. let asyncRes = Promise.resolve(actionBoxRelation)
  2564. if (chFull === false) asyncRes = asyncRes.then($hs.getWithFullscreenBtn);
  2565. else asyncRes = asyncRes.then(() => null)
  2566.  
  2567. asyncRes.then((btnElement) => {
  2568.  
  2569. if (btnElement) {
  2570.  
  2571. window.requestAnimationFrame(() => btnElement.click());
  2572. player = null;
  2573. actionBoxRelation = null;
  2574. return;
  2575. }
  2576.  
  2577. let fsElm = $vQuery.rootNode(vpid).querySelector(`[_h5p_fsElm_="${vpid}"]`); //it is set in fullscreenchange
  2578.  
  2579. let gPlayer = fsElm
  2580.  
  2581. if (gPlayer) {
  2582.  
  2583. } else if (actionBoxRelation && actionBoxRelation.actionBox) {
  2584. gPlayer = actionBoxRelation.actionBox;
  2585. } else if (actionBoxRelation && actionBoxRelation.layoutBox) {
  2586. gPlayer = actionBoxRelation.layoutBox;
  2587. } else {
  2588. gPlayer = player;
  2589. }
  2590.  
  2591.  
  2592. player = null;
  2593. actionBoxRelation = null;
  2594.  
  2595. if (gPlayer != fsElm && !fsElm) {
  2596. delayCall('$$videoReset_fsElm', function() {
  2597. gPlayer.removeAttribute('_h5p_fsElm_')
  2598. }, 137)
  2599. }
  2600.  
  2601. console.log('DOM fullscreen', gPlayer)
  2602. try {
  2603. const res = gPlayer.requestFullscreen()
  2604. if (res && res.constructor.name == "Promise") res.catch((e) => 0)
  2605. } catch (e) {
  2606. console.log('DOM fullscreen Error', e)
  2607. }
  2608.  
  2609.  
  2610.  
  2611.  
  2612. })
  2613.  
  2614.  
  2615.  
  2616.  
  2617. },
  2618. /* 設置播放速度 */
  2619. setPlaybackRate: function(num, flagTips) {
  2620. let player = $hs.player()
  2621. let curPlaybackRate
  2622. if (num) {
  2623. num = +num
  2624. if (num > 0) { // also checking the type of variable
  2625. curPlaybackRate = num < 0.1 ? 0.1 : +(num.toFixed(1))
  2626. } else {
  2627. console.error('h5player: 播放速度轉換出錯')
  2628. return false
  2629. }
  2630. } else {
  2631. curPlaybackRate = $hs.getPlaybackRate()
  2632. }
  2633. /* 記錄播放速度的信息 */
  2634.  
  2635. let changed = curPlaybackRate !== player.playbackRate;
  2636.  
  2637. if (curPlaybackRate !== player.playbackRate) {
  2638.  
  2639. Store.save('_playback_rate_', curPlaybackRate + '')
  2640. player.playbackRate = curPlaybackRate
  2641. /* 本身處於1被播放速度的時候不再提示 */
  2642. //if (!num && curPlaybackRate === 1) return;
  2643.  
  2644. }
  2645.  
  2646. flagTips = (flagTips < 0) ? false : (flagTips > 0) ? true : changed;
  2647. if (flagTips) $hs.tips('Playback speed: ' + player.playbackRate + 'x')
  2648. },
  2649. tuneCurrentTimeTips: function(_amount, changed) {
  2650.  
  2651. $hs.tips(false);
  2652. if (changed) {
  2653. if (_amount > 0) $hs.tips(_amount + ' Sec. Forward', undefined, 3000);
  2654. else $hs.tips(-_amount + ' Sec. Backward', undefined, 3000)
  2655. }
  2656. },
  2657. tuneCurrentTime: function(amount) {
  2658. let _amount = +(+amount).toFixed(1);
  2659. if (!$hs.isNum(_amount)) return;
  2660. let player = $hs.player();
  2661.  
  2662. let newCurrentTime = player.currentTime + _amount;
  2663. if (newCurrentTime < 0) newCurrentTime = 0;
  2664. if (newCurrentTime > player.duration) newCurrentTime = player.duration;
  2665.  
  2666. let changed = newCurrentTime != player.currentTime && newCurrentTime >= 0 && newCurrentTime <= player.duration;
  2667.  
  2668. if (changed) {
  2669. //player.currentTime = newCurrentTime;
  2670. //player.pause();
  2671.  
  2672.  
  2673. const video = player;
  2674. var isPlaying = isVideoPlaying(video);
  2675.  
  2676. if (isPlaying) {
  2677. player.pause();
  2678. $hs.ccad = $hs.ccad || function() {
  2679. if (player.paused) player.play();
  2680. };
  2681. player.addEventListener('seeked', $hs.ccad, {
  2682. passive: true,
  2683. capture: true,
  2684. once: true
  2685. });
  2686.  
  2687. }
  2688.  
  2689.  
  2690.  
  2691.  
  2692. player.currentTime = +newCurrentTime.toFixed(0)
  2693.  
  2694. $hs.tuneCurrentTimeTips(_amount, changed)
  2695.  
  2696.  
  2697. }
  2698.  
  2699. },
  2700. tuneVolume: function(amount) {
  2701.  
  2702. let player = $hs.player()
  2703.  
  2704. let intAmount = Math.round(amount * 100)
  2705.  
  2706. let intOldVol = Math.round(player.volume * 100)
  2707. let intNewVol = intOldVol + intAmount
  2708.  
  2709.  
  2710. //0.53 -> 0.55
  2711.  
  2712. //0.53 / 0.05 =10.6 => 11 => 11*0.05 = 0.55
  2713.  
  2714. intNewVol = Math.round(intNewVol / intAmount) * intAmount
  2715. if (intAmount > 0 && intNewVol - intOldVol > intAmount) intNewVol -= intAmount;
  2716. else if (intAmount < 0 && intNewVol - intOldVol < intAmount) intNewVol -= intAmount;
  2717.  
  2718.  
  2719. let _amount = intAmount / 100;
  2720. let oldVol = intOldVol / 100;
  2721. let newVol = intNewVol / 100;
  2722.  
  2723.  
  2724. if (newVol < 0) newVol = 0;
  2725. if (newVol > 1) newVol = 1;
  2726. let chVol = oldVol !== newVol && newVol >= 0 && newVol <= 1;
  2727.  
  2728. if (chVol) {
  2729.  
  2730. if (_amount > 0 && oldVol < 1) {
  2731. player.volume = newVol // positive
  2732. } else if (_amount < 0 && oldVol > 0) {
  2733. player.volume = newVol // negative
  2734. }
  2735. $hs.tips(false);
  2736. $hs.tips('Volume: ' + dround(player.volume * 100) + '%', undefined)
  2737. }
  2738. },
  2739. switchPlayStatus: function() {
  2740. let player = $hs.player()
  2741. if (player.paused) {
  2742. player.play()
  2743. if (player._isThisPausedBefore_) {
  2744. $hs.tips(false);
  2745. $hs.tips('Playback resumed', undefined, 2500)
  2746. }
  2747. } else {
  2748. player.pause()
  2749. $hs.tips(false);
  2750. $hs.tips('Playback paused', undefined, 2500)
  2751. }
  2752. },
  2753. tipsDomObserve: (tipsDom, player) => {
  2754.  
  2755. //observe not fire twice for the same element.
  2756. if (!$hs.observer_resizeVideos) $hs.observer_resizeVideos = new ResizeObserver(hanlderResizeVideo)
  2757. $hs.observer_resizeVideos.observe(tipsDom.parentNode)
  2758. $hs.observer_resizeVideos.observe(player)
  2759.  
  2760. $hs.fixNonBoxingVideoTipsPosition(tipsDom, player);
  2761.  
  2762.  
  2763. },
  2764. _tips: function(player, str, duration, order) {
  2765.  
  2766.  
  2767. if (!player || !player.parentNode) return;
  2768. const vpid = player.getAttribute('_h5ppid');
  2769. if (!vpid) return;
  2770. //$vQuery.rootNode(vpid)
  2771. let fSetDOM = false;
  2772.  
  2773. Promise.resolve().then(() => {
  2774.  
  2775.  
  2776. if (!player.getAttribute('_h5player_tips')){
  2777.  
  2778. // first time to trigger this player
  2779. if (!player.hasAttribute('playsinline')) player.setAttribute('playsinline', 'playsinline');
  2780. if (!player.hasAttribute('x-webkit-airplay')) player.setAttribute('x-webkit-airplay', 'deny');
  2781. if (!player.hasAttribute('preload')) player.setAttribute('preload', 'auto');
  2782. //player.style['image-rendering'] = 'crisp-edges';
  2783.  
  2784. $hs.initTips(player);
  2785. }
  2786.  
  2787. }).then(() => {
  2788. let tipsSelector = '#' + player.getAttribute('_h5player_tips') //if this attribute still doesnt exist, set it to the base cls name
  2789. let tipsDom = $vQuery.rootNode(vpid).querySelector(tipsSelector)
  2790. if (!tipsDom) {
  2791. consoleLog('init h5player tips dom error...')
  2792. return false
  2793. }
  2794. return tipsDom
  2795. }).then((tipsDom) => {
  2796. if (tipsDom === false) return false;
  2797.  
  2798. if (str === false) {
  2799. if ((tipsDom.getAttribute('data-h5p-pot-tips') || '').length) {
  2800. tipsDom.setAttribute('data-h5p-pot-tips', '');
  2801. tipsDom._tips_display_none = true;
  2802. }
  2803. return tipsDom;
  2804. }
  2805.  
  2806. order = order || 1000
  2807. tipsDom.tipsOrder = tipsDom.tipsOrder || 0;
  2808.  
  2809. if (order < tipsDom.tipsOrder && tipsDom._tips_display_none == false){
  2810. return tipsDom;
  2811. }
  2812.  
  2813. if (tipsDom._tips_display_none || tipsDom._playerVPID != vpid) {
  2814. $hs.change_layoutBox(tipsDom, player);
  2815. fSetDOM = true;
  2816. }
  2817.  
  2818. if (duration === undefined) duration = 2000
  2819.  
  2820. $hs.pendingTips = $hs.pendingTips || {};
  2821.  
  2822. if($hs.pendingTips[tipsDom._playerVPID] && tipsDom.tipsOrder == order && duration > 0){
  2823. tipsDom.setAttribute('data-h5p-pot-tips', str);
  2824. tipsDom.style['animation-duration']=duration+'ms';
  2825. }else{
  2826. $hs.pendingTips[tipsDom._playerVPID] = tipsDom
  2827. tipsDom.removeAttribute('_h5p_animate'); //force animation reset
  2828. tipsDom.setAttribute('data-h5p-pot-tips', str);
  2829. tipsDom._tips_display_none = false;
  2830. if(duration>0) tipsDom.style['animation-duration']=duration+'ms';
  2831. const withFadeOut = duration > 0 && !($hs.mouseDownAt && $hs.mouseDownAt.insideVideo === player);
  2832. 1&&!(function(tipsDom, withFadeOut) {
  2833. window.requestAnimationFrame(function() {
  2834. tipsDom.setAttribute('_h5p_animate', withFadeOut?'':'P');
  2835. if(withFadeOut) delete $hs.pendingTips[tipsDom._playerVPID];
  2836. tipsDom=null;
  2837. })
  2838. })(tipsDom, withFadeOut);
  2839. if (!(duration > 0)) {
  2840. order = -1;
  2841. }
  2842. tipsDom.tipsOrder = order
  2843. }
  2844. return tipsDom;
  2845. }).then((tipsDom) => {
  2846. if (tipsDom === false) return false;
  2847.  
  2848. if (fSetDOM) {
  2849. $hs.tipsDomObserve(tipsDom, player);
  2850.  
  2851. }
  2852.  
  2853. })
  2854.  
  2855. },
  2856. tips: function(str, duration, order) {
  2857. let player = $hs.player()
  2858. if (!player || !player.parentNode) {
  2859. consoleLog('h5Player Tips:', str)
  2860. } else {
  2861. $hs._tips(player, str, duration, order)
  2862.  
  2863. }
  2864.  
  2865. },
  2866. handler_tipsDom_animation:function(e) {
  2867. this._tips_display_none = true;
  2868. },
  2869. initTips: function(player) {
  2870. /* 設置提示DOM的樣式 */
  2871.  
  2872. if(!player || !player.parentNode)return;
  2873.  
  2874. let shadowRoot = getRoot(player);
  2875. let doc = player.ownerDocument;
  2876. //console.log((document.documentElement.qq=player),shadowRoot,'xax')
  2877. let parentNode = player.parentNode
  2878. let tcn = player.getAttribute('_h5player_tips') || ($hs.tipsClassName + '_' + (+new Date));
  2879. player.setAttribute('_h5player_tips', tcn)
  2880. if (shadowRoot.querySelector('#' + tcn)) return false;
  2881.  
  2882. if (!shadowRoot._onceAddedCSS) {
  2883. shadowRoot._onceAddedCSS = true;
  2884.  
  2885. let cssStyle = `
  2886. ${utPositioner}{
  2887. position:absolute !important;
  2888. top:auto !important;
  2889. left:auto !important;
  2890. right:auto !important;
  2891. bottom:auto !important;
  2892. width:0 !important;
  2893. height:0 !important;
  2894. margin:0 !important;
  2895. padding:0 !important;
  2896. border:0 !important;
  2897. outline:0 !important;
  2898. transform:none !important;
  2899. contain: strict;
  2900. }
  2901. [data-h5p-pot-tips][_h5p_animate]{
  2902. animation: 2s linear 0s normal forwards 1 delayHide;
  2903. }
  2904.  
  2905. [data-h5p-pot-tips][_h5p_animate="P"]{
  2906. animation-play-state:paused;
  2907. }
  2908. [data-h5p-pot-tips]{
  2909. opacity:.95; transform: translate(0px, 0px);
  2910. }
  2911.  
  2912. @keyframes delayHide{
  2913. 0%, 99% { opacity:0.95; transform: translate(0px, 0px); }
  2914. 100% { opacity:0; transform:translate(-9999px, -9999px); }
  2915. }
  2916. [data-h5p-pot-tips]{
  2917. font-weight: bold !important;
  2918. position:absolute !important;
  2919. top:auto !important;
  2920. left:auto !important;
  2921. right:auto !important;
  2922. bottom:auto !important;
  2923.  
  2924. display:inline-block;
  2925. z-index: 999 !important;
  2926. font-size: ${$hs.fontSize || 16}px !important;
  2927. padding: 0px !important;
  2928. border:none !important;
  2929. background: rgba(0,0,0,0) !important;
  2930. color:#738CE6 !important;
  2931. text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  2932. max-width:500px;max-height:50px;
  2933. border-radius:3px;
  2934. font-family: 'microsoft yahei', Verdana, Geneva, sans-serif;
  2935. pointer-events: none;
  2936. contain: content;
  2937. }
  2938. [data-h5p-pot-tips]::before{
  2939. content:attr(data-h5p-pot-tips);
  2940. display:inline-block;
  2941. position:relative;
  2942.  
  2943. }
  2944. body div[data-h5p-pot-tips]{
  2945. -webkit-user-select: none !important;
  2946. -moz-user-select: none !important;
  2947. -ms-user-select: none !important;
  2948. user-select: none !important;
  2949. -webkit-touch-callout: none !important;
  2950. -webkit-user-select: none !important;
  2951. -khtml-user-drag: none !important;
  2952. -khtml-user-select: none !important;
  2953. -moz-user-select: none !important;
  2954. -moz-user-select: -moz-none !important;
  2955. -ms-user-select: none !important;
  2956. user-select: none !important;
  2957. }
  2958. .ytp-chrome-bottom+span#volumeUI:last-child:empty{
  2959. display:none;
  2960. }
  2961. `.replace(/\r\n/g, '');
  2962.  
  2963.  
  2964. let cssContainer = domAppender(shadowRoot);
  2965.  
  2966.  
  2967. if (!cssContainer) {
  2968. cssContainer = makeNoRoot(shadowRoot)
  2969. }
  2970.  
  2971. domTool.addStyle(cssStyle, cssContainer);
  2972.  
  2973. }
  2974.  
  2975. let tipsDom = doc.createElement('div')
  2976.  
  2977. tipsDom.addEventListener(crossBrowserTransition('animation'), $hs.handler_tipsDom_animation, $mb.eh_bubble_passive())
  2978.  
  2979. tipsDom.id = tcn;
  2980. tipsDom.setAttribute('data-h5p-pot-tips', '');
  2981. tipsDom._tips_display_none = true;
  2982. $hs.change_layoutBox(tipsDom, player);
  2983.  
  2984. return true;
  2985. },
  2986.  
  2987.  
  2988. isNum:(d)=>(d>0||d<0||d===0),
  2989. fixNonBoxingVideoTipsPosition: function(tipsDom, player) {
  2990.  
  2991. if (!tipsDom || !player) return false;
  2992.  
  2993. let ct = tipsDom.parentNode
  2994.  
  2995. if (!ct) return false;
  2996.  
  2997. //return;
  2998. // absolute
  2999.  
  3000. let targetOffset = {
  3001. left: 10,
  3002. top: 15
  3003. };
  3004. if(!tipsDom.nextSibling||tipsDom.nextSibling.nodeName!=utPositioner){
  3005. tipsDom.parentNode.insertBefore(document.createElement(utPositioner),tipsDom.nextSibling);
  3006. }
  3007. let p = tipsDom.nextSibling.getBoundingClientRect();
  3008. let q = player.getBoundingClientRect();
  3009. let basePos = [+(p.left).toFixed(2), +(p.top).toFixed(2)];
  3010. let targetPos = [+(q.left + targetOffset.left).toFixed(2), +(q.top + targetOffset.top).toFixed(2)];
  3011.  
  3012. let tt=basePos.join(',')+','+targetPos.join(',')
  3013.  
  3014. if(tipsDom.__cache_dim__!=tt){
  3015. tipsDom.__cache_dim__=tt;
  3016.  
  3017.  
  3018. let y1 = targetPos[0]- basePos[0]
  3019.  
  3020. let y2 = targetPos[1]- basePos[1]
  3021.  
  3022. if($hs.isNum(y1) && $hs.isNum(y2)){
  3023. tipsDom.style.marginLeft = (y1) + 'px';
  3024. tipsDom.style.marginTop = (y2) + 'px';
  3025. return true;
  3026. }
  3027.  
  3028. }
  3029.  
  3030. tipsDom=null;
  3031. player=null;
  3032.  
  3033. },
  3034.  
  3035. playerTrigger: function(player, event) {
  3036.  
  3037.  
  3038.  
  3039. if (!player || !player.parentNode || !event) return
  3040. const pCode = event.code;
  3041. let keyAsm = (event.shiftKey ? SHIFT : 0) | ((event.ctrlKey || event.metaKey) ? CTRL : 0) | (event.altKey ? ALT : 0);
  3042.  
  3043.  
  3044. if (keyAsm == SHIFT && pCode == 'Backquote') {
  3045. $hs.enable = !$hs.enable;
  3046. $hs._tips(player, false);
  3047. if ($hs.enable) {
  3048. $hs._tips(player, '啟用h5Player插件')
  3049. } else {
  3050. $hs._tips(player, '禁用h5Player插件')
  3051. }
  3052. // 阻止事件冒泡
  3053. return TERMINATE
  3054. }
  3055. if (!$hs.enable) {
  3056. consoleLog('h5Player 已禁用~')
  3057. return false
  3058. }
  3059.  
  3060.  
  3061. if (!keyAsm && pCode == 'Enter') { //not NumberpadEnter
  3062.  
  3063. Promise.resolve(player).then((player) => {
  3064. $hs._actionBoxObtain(player);
  3065. }).then(() => {
  3066. $hs.callFullScreenBtn()
  3067. })
  3068.  
  3069. return TERMINATE
  3070. }
  3071.  
  3072.  
  3073.  
  3074. let vpid = player.getAttribute('_h5ppid') || null;
  3075. if (!vpid) return;
  3076. let playerConf = playerConfs[vpid]
  3077. if (!playerConf) return;
  3078.  
  3079. //shift + key
  3080. if (keyAsm == SHIFT) {
  3081. // 網頁FULLSCREEN
  3082. if (pCode === 'Enter') {
  3083. //$hs.callFullScreenBtn()
  3084. //return TERMINATE
  3085. } else if (pCode == 'KeyF') {
  3086. //change unsharpen filter
  3087.  
  3088. let resList = ["unsharpen3_05", "unsharpen3_10", "unsharpen5_05", "unsharpen5_10", "unsharpen9_05", "unsharpen9_10"]
  3089. let res = (prompt("Enter the unsharpen mask\n(" + resList.map(x => '"' + x + '"').join(', ') + ")", "unsharpen9_05") || "").toLowerCase();
  3090. if (resList.indexOf(res) < 0) res = ""
  3091. GM_setValue("unsharpen_mask", res)
  3092. for (const el of document.querySelectorAll('video[_h5p_uid_encrypted]')) {
  3093. if (el.style.filter == "" || el.style.filter) {
  3094. let filterStr1 = el.style.filter.replace(/\s*url\(\"#_h5p_unsharpen[\d\_]+\"\)/, '');
  3095. let filterStr2 = (res.length > 0 ? ' url("#_h5p_' + res + '")' : '')
  3096. el.style.filter = filterStr1 + filterStr2;
  3097. }
  3098. }
  3099. return TERMINATE
  3100.  
  3101. }
  3102. // 進入或退出畫中畫模式
  3103. else if (pCode == 'KeyP') {
  3104. $hs.pictureInPicture(player)
  3105.  
  3106. return TERMINATE
  3107. } else if (pCode == 'KeyR') {
  3108. if (player._h5player_lastrecord_ !== null && (player._h5player_lastrecord_ >= 0 || player._h5player_lastrecord_ <= 0)) {
  3109. $hs.setPlayProgress(player, player._h5player_lastrecord_)
  3110.  
  3111. return TERMINATE
  3112. }
  3113.  
  3114. } else if (pCode == 'KeyO') {
  3115. let _debug_h5p_logging_ch = false;
  3116. try {
  3117. Store._setItem('_h5_player_sLogging_', 1 - Store._getItem('_h5_player_sLogging_'))
  3118. _debug_h5p_logging_ = +Store._getItem('_h5_player_sLogging_') > 0;
  3119. _debug_h5p_logging_ch = true;
  3120. } catch (e) {
  3121.  
  3122. }
  3123. consoleLogF('_debug_h5p_logging_', !!_debug_h5p_logging_, 'changed', _debug_h5p_logging_ch)
  3124.  
  3125. if (_debug_h5p_logging_ch) {
  3126.  
  3127. return TERMINATE
  3128. }
  3129. } else if (pCode == 'KeyT') {
  3130. if (/^blob/i.test(player.currentSrc)) {
  3131. alert(`The current video is ${player.currentSrc}\nSorry, it cannot be opened in PotPlayer.`);
  3132. } else {
  3133. let confirm_res = confirm(`The current video is ${player.currentSrc}\nDo you want to open it in PotPlayer?`);
  3134. if (confirm_res) window.open('potplayer://' + player.currentSrc, '_blank');
  3135. }
  3136. return TERMINATE
  3137. }
  3138.  
  3139.  
  3140.  
  3141. let videoScale = playerConf.vFactor;
  3142.  
  3143. function tipsForVideoScaling() {
  3144.  
  3145. playerConf.vFactor = +videoScale.toFixed(1);
  3146.  
  3147. playerConf.cssTransform();
  3148. let tipsMsg = `視頻縮放率:${ +(videoScale * 100).toFixed(2) }%`
  3149. if (playerConf.translate.x) {
  3150. tipsMsg += `,水平位移:${playerConf.translate.x}px`
  3151. }
  3152. if (playerConf.translate.y) {
  3153. tipsMsg += `,垂直位移:${playerConf.translate.y}px`
  3154. }
  3155. $hs.tips(false);
  3156. $hs.tips(tipsMsg)
  3157.  
  3158.  
  3159. }
  3160.  
  3161. // 視頻畫面縮放相關事件
  3162.  
  3163. switch (pCode) {
  3164. // shift+X:視頻縮小 -0.1
  3165. case 'KeyX':
  3166. videoScale -= 0.1
  3167. if (videoScale < 0.1) videoScale = 0.1;
  3168. tipsForVideoScaling();
  3169. return TERMINATE
  3170. break
  3171. // shift+C:視頻放大 +0.1
  3172. case 'KeyC':
  3173. videoScale += 0.1
  3174. if (videoScale > 16) videoScale = 16;
  3175. tipsForVideoScaling();
  3176. return TERMINATE
  3177. break
  3178. // shift+Z:視頻恢復正常大小
  3179. case 'KeyZ':
  3180. videoScale = 1.0
  3181. playerConf.translate.x = 0;
  3182. playerConf.translate.y = 0;
  3183. tipsForVideoScaling();
  3184. return TERMINATE
  3185. break
  3186. case 'ArrowRight':
  3187. playerConf.translate.x += 10
  3188. tipsForVideoScaling();
  3189. return TERMINATE
  3190. break
  3191. case 'ArrowLeft':
  3192. playerConf.translate.x -= 10
  3193. tipsForVideoScaling();
  3194. return TERMINATE
  3195. break
  3196. case 'ArrowUp':
  3197. playerConf.translate.y -= 10
  3198. tipsForVideoScaling();
  3199. return TERMINATE
  3200. break
  3201. case 'ArrowDown':
  3202. playerConf.translate.y += 10
  3203. tipsForVideoScaling();
  3204. return TERMINATE
  3205. break
  3206.  
  3207. }
  3208.  
  3209. }
  3210. // 防止其它無關組合鍵衝突
  3211. if (!keyAsm) {
  3212. let kControl = null
  3213. let newPBR, oldPBR, nv, numKey;
  3214. switch (pCode) {
  3215. // 方向鍵右→:快進3秒
  3216. case 'ArrowRight':
  3217. if (1) {
  3218. let aCurrentTime = player.currentTime;
  3219. window.requestAnimationFrame(() => {
  3220. let diff = player.currentTime - aCurrentTime
  3221. diff = Math.round(diff * 5) / 5;
  3222. if (Math.abs(diff) < 0.8) {
  3223. $hs.tuneCurrentTime(+$hs.skipStep);
  3224. } else {
  3225. $hs.tuneCurrentTimeTips(diff, true)
  3226. }
  3227. })
  3228. //if(document.domain.indexOf('youtube.com')>=0){}else{
  3229. //$hs.tuneCurrentTime($hs.skipStep);
  3230. //return TERMINATE;
  3231. //}
  3232. }
  3233. break;
  3234. // 方向鍵左←:後退3秒
  3235. case 'ArrowLeft':
  3236.  
  3237. if (1) {
  3238. let aCurrentTime = player.currentTime;
  3239. window.requestAnimationFrame(() => {
  3240. let diff = player.currentTime - aCurrentTime
  3241. diff = Math.round(diff * 5) / 5;
  3242. if (Math.abs(diff) < 0.8) {
  3243. $hs.tuneCurrentTime(-$hs.skipStep);
  3244. } else {
  3245. $hs.tuneCurrentTimeTips(diff, true)
  3246. }
  3247. })
  3248. //if(document.domain.indexOf('youtube.com')>=0){}else{
  3249. //
  3250. //return TERMINATE;
  3251. //}
  3252. }
  3253. break;
  3254. // 方向鍵上↑:音量升高 1%
  3255. case 'ArrowUp':
  3256. if ((player.muted && player.volume === 0) && player._volume > 0) {
  3257.  
  3258. player.muted = false;
  3259. player.volume = player._volume;
  3260. } else if (player.muted && (player.volume > 0 || !player._volume)) {
  3261. player.muted = false;
  3262. }
  3263. $hs.tuneVolume(0.01);
  3264. return TERMINATE;
  3265. break;
  3266. // 方向鍵下↓:音量降低 1%
  3267. case 'ArrowDown':
  3268.  
  3269. if ((player.muted && player.volume === 0) && player._volume > 0) {
  3270.  
  3271. player.muted = false;
  3272. player.volume = player._volume;
  3273. } else if (player.muted && (player.volume > 0 || !player._volume)) {
  3274. player.muted = false;
  3275. }
  3276. $hs.tuneVolume(-0.01);
  3277. return TERMINATE;
  3278. break;
  3279. // 空格鍵:暫停/播放
  3280. case 'Space':
  3281. $hs.switchPlayStatus();
  3282. return TERMINATE;
  3283. break;
  3284. // 按鍵X:減速播放 -0.1
  3285. case 'KeyX':
  3286. if (player.playbackRate > 0) {
  3287. $hs.tips(false);
  3288. let t=player.playbackRate - 0.1;
  3289. if(t<0.1)t=0.1;
  3290. $hs.setPlaybackRate(t, true);
  3291. return TERMINATE
  3292. }
  3293. break;
  3294. // 按鍵C:加速播放 +0.1
  3295. case 'KeyC':
  3296. if (player.playbackRate < 16) {
  3297. $hs.tips(false);
  3298. $hs.setPlaybackRate(player.playbackRate + 0.1, true);
  3299. return TERMINATE
  3300. }
  3301.  
  3302. break;
  3303. // 按鍵Z:正常速度播放
  3304. case 'KeyZ':
  3305. $hs.tips(false);
  3306. oldPBR = player.playbackRate;
  3307. if (oldPBR != 1.0) {
  3308. player._playbackRate_z = oldPBR;
  3309. newPBR = 1.0;
  3310. } else if (player._playbackRate_z != 1.0) {
  3311. newPBR = player._playbackRate_z || 1.0;
  3312. player._playbackRate_z = 1.0;
  3313. } else {
  3314. newPBR = 1.0
  3315. player._playbackRate_z = 1.0;
  3316. }
  3317. $hs.setPlaybackRate(newPBR, 1)
  3318. return TERMINATE
  3319. break;
  3320. // 按鍵F:下一幀
  3321. case 'KeyF':
  3322. if (window.location.hostname === 'www.netflix.com') return /* netflix 的F鍵是FULLSCREEN的意思 */
  3323. $hs.tips(false);
  3324. if (!player.paused) player.pause()
  3325. player.currentTime += +(1 / playerConf.fps)
  3326. $hs.tips('Jump to: Next frame')
  3327. return TERMINATE
  3328. break;
  3329. // 按鍵D:上一幀
  3330. case 'KeyD':
  3331. $hs.tips(false);
  3332. if (!player.paused) player.pause()
  3333. player.currentTime -= +(1 / playerConf.fps)
  3334. $hs.tips('Jump to: Previous frame')
  3335. return TERMINATE
  3336. break;
  3337. // 按鍵E:亮度增加%
  3338. case 'KeyE':
  3339. $hs.tips(false);
  3340. nv = playerConf.setFilter('brightness', (v) => v + 0.1);
  3341. $hs.tips('Brightness: ' + dround(nv * 100) + '%')
  3342. return TERMINATE
  3343. break;
  3344. // 按鍵W:亮度減少%
  3345. case 'KeyW':
  3346. $hs.tips(false);
  3347. nv = playerConf.setFilter('brightness', (v) => v > 0.1 ? v - 0.1 : 0);
  3348. $hs.tips('Brightness: ' + dround(nv * 100) + '%')
  3349. return TERMINATE
  3350. break;
  3351. // 按鍵T:對比度增加%
  3352. case 'KeyT':
  3353. $hs.tips(false);
  3354. nv = playerConf.setFilter('contrast', (v) => v + 0.1);
  3355. $hs.tips('Contrast: ' + dround(nv * 100) + '%')
  3356. return TERMINATE
  3357. break;
  3358. // 按鍵R:對比度減少%
  3359. case 'KeyR':
  3360. $hs.tips(false);
  3361. nv = playerConf.setFilter('contrast', (v) => v > 0.1 ? v - 0.1 : 0);
  3362. $hs.tips('Contrast: ' + dround(nv * 100) + '%')
  3363. return TERMINATE
  3364. break;
  3365. // 按鍵U:飽和度增加%
  3366. case 'KeyU':
  3367. $hs.tips(false);
  3368. nv = playerConf.setFilter('saturate', (v) => v + 0.1);
  3369. $hs.tips('Saturate: ' + dround(nv * 100) + '%')
  3370. return TERMINATE
  3371. break;
  3372. // 按鍵Y:飽和度減少%
  3373. case 'KeyY':
  3374. $hs.tips(false);
  3375. nv = playerConf.setFilter('saturate', (v) => v > 0.1 ? v - 0.1 : 0);
  3376. $hs.tips('Saturate: ' + dround(nv * 100) + '%')
  3377. return TERMINATE
  3378. break;
  3379. // 按鍵O:色相增加 1 度
  3380. case 'KeyO':
  3381. $hs.tips(false);
  3382. nv = playerConf.setFilter('hue-rotate', (v) => v + 1);
  3383. $hs.tips('Hue: ' + nv + ' deg')
  3384. return TERMINATE
  3385. break;
  3386. // 按鍵I:色相減少 1 度
  3387. case 'KeyI':
  3388. $hs.tips(false);
  3389. nv = playerConf.setFilter('hue-rotate', (v) => v - 1);
  3390. $hs.tips('Hue: ' + nv + ' deg')
  3391. return TERMINATE
  3392. break;
  3393. // 按鍵K:模糊增加 0.1 px
  3394. case 'KeyK':
  3395. $hs.tips(false);
  3396. nv = playerConf.setFilter('blur', (v) => v + 0.1);
  3397. $hs.tips('Blur: ' + nv + ' px')
  3398. return TERMINATE
  3399. break;
  3400. // 按鍵J:模糊減少 0.1 px
  3401. case 'KeyJ':
  3402. $hs.tips(false);
  3403. nv = playerConf.setFilter('blur', (v) => v > 0.1 ? v - 0.1 : 0);
  3404. $hs.tips('Blur: ' + nv + ' px')
  3405. return TERMINATE
  3406. break;
  3407. // 按鍵Q:圖像復位
  3408. case 'KeyQ':
  3409. $hs.tips(false);
  3410. playerConf.filterReset();
  3411. $hs.tips('Video Filter Reset')
  3412. return TERMINATE
  3413. break;
  3414. // 按鍵S:畫面旋轉 90 度
  3415. case 'KeyS':
  3416. $hs.tips(false);
  3417. playerConf.rotate += 90
  3418. if (playerConf.rotate % 360 === 0) playerConf.rotate = 0;
  3419. if (!playerConf.videoHeight || !playerConf.videoWidth) {
  3420. playerConf.videoWidth = playerConf.domElement.videoWidth;
  3421. playerConf.videoHeight = playerConf.domElement.videoHeight;
  3422. }
  3423. if (playerConf.videoWidth > 0 && playerConf.videoHeight > 0) {
  3424.  
  3425.  
  3426. if ((playerConf.rotate % 180) == 90) {
  3427. playerConf.mFactor = playerConf.videoHeight / playerConf.videoWidth;
  3428. } else {
  3429. playerConf.mFactor = 1.0;
  3430. }
  3431.  
  3432.  
  3433. playerConf.cssTransform();
  3434.  
  3435. $hs.tips('Rotation:' + playerConf.rotate + ' deg')
  3436.  
  3437. }
  3438.  
  3439. return TERMINATE
  3440. break;
  3441. // 按鍵迴車,進入FULLSCREEN
  3442. case 'Enter':
  3443. //t.callFullScreenBtn();
  3444. break;
  3445. case 'KeyN':
  3446. $hs.pictureInPicture(player);
  3447. return TERMINATE
  3448. break;
  3449. case 'KeyM':
  3450. //console.log('m!', player.volume,player._volume)
  3451.  
  3452. if (player.volume >= 0) {
  3453.  
  3454. if (!player.volume || player.muted) {
  3455.  
  3456. let newVol = player.volume || player._volume || 0.5;
  3457. if (player.volume !== newVol) {
  3458. player.volume = newVol;
  3459. }
  3460. player.muted = false;
  3461. $hs.tips(false);
  3462. $hs.tips('Mute: Off', undefined);
  3463.  
  3464. } else {
  3465.  
  3466. player._volume = player.volume;
  3467. player._volume_p = player.volume;
  3468. //player.volume = 0;
  3469. player.muted = true;
  3470. $hs.tips(false);
  3471. $hs.tips('Mute: On', undefined);
  3472.  
  3473. }
  3474.  
  3475. }
  3476.  
  3477. return TERMINATE
  3478. break;
  3479. default:
  3480. // 按1-4設置播放速度 49-52;97-100
  3481. numKey = +(event.key)
  3482.  
  3483. if (numKey >= 1 && numKey <= 4) {
  3484. $hs.tips(false);
  3485. $hs.setPlaybackRate(numKey, 1)
  3486. return TERMINATE
  3487. }
  3488. }
  3489.  
  3490. }
  3491. },
  3492.  
  3493. handlerPlayerLockedMouseMove: function(e) {
  3494. //console.log(4545)
  3495.  
  3496. if(!$hs.mointoringVideo) return;
  3497.  
  3498. const player = $vQuery.player($hs.mointoringVideo);
  3499.  
  3500. if (!player) return;
  3501.  
  3502.  
  3503. $hs.mouseMoveCount += Math.sqrt(e.movementX * e.movementX + e.movementY * e.movementY);
  3504.  
  3505. delayCall('$$VideoClearMove', function() {
  3506. $hs.mouseMoveCount = $hs.mouseMoveCount * 0.4;
  3507. }, 100)
  3508.  
  3509. delayCall('$$VideoClearMove2', function() {
  3510. $hs.mouseMoveCount = $hs.mouseMoveCount * 0.1;
  3511. }, 400)
  3512.  
  3513. if ($hs.mouseMoveCount > player.mouseMoveMax) {
  3514. $hs.hcMouseShowWithMonitoring(player)
  3515. }
  3516.  
  3517. },
  3518.  
  3519. _hcMouseHidePre: function(player) {
  3520. if (player.paused === true) {
  3521. $hs.hcShowMouseAndRemoveMointoring(player);
  3522. return;
  3523. }
  3524. if ($hs.mouseEnteredElement) {
  3525. const elm = $hs.mouseEnteredElement;
  3526. switch (getComputedStyle(elm).getPropertyValue('cursor')) {
  3527. case 'grab':
  3528. case 'pointer':
  3529. return;
  3530. }
  3531. if (elm.hasAttribute('alt')) return;
  3532. if (elm.getAttribute('aria-hidden') == 'true') return;
  3533. }
  3534. Promise.resolve().then(() => {
  3535. if (!$hs.mouseDownAt && !$hs.hide_cursor_css) {
  3536. let htmlRoot = player.ownerDocument.querySelector('html');
  3537. htmlRoot.style.setProperty('--h5p-hide-cursor','none');
  3538. $hs.hide_cursor_css=true;
  3539. //if(!htmlRoot.hasAttribute('_h5p_hide_cursor')) htmlRoot.setAttribute('_h5p_hide_cursor', '');
  3540. }
  3541. player = null;
  3542. })
  3543. return true;
  3544. },
  3545.  
  3546. hcStartMointoring:(player)=>{
  3547.  
  3548.  
  3549. $hs.mouseMoveCount = 0;
  3550.  
  3551. Promise.resolve($hs._hcMouseHidePre(player)).then(r => {
  3552. if (r) {
  3553.  
  3554. if($hs.mointoringVideo===false) player.ownerDocument.addEventListener('mousemove', $hs.handlerPlayerLockedMouseMove, $mb.eh_capture_passive())
  3555. $hs.mointoringVideo = player.getAttribute('_h5ppid');
  3556.  
  3557. }
  3558.  
  3559. player = null;
  3560.  
  3561. })
  3562.  
  3563. },
  3564.  
  3565. hcMouseHideAndStartMointoring: function(player) {
  3566.  
  3567. //console.log(554, 'hcMouseHideAndStartMointoring')
  3568. delayCall('$$hcMouseMove')
  3569.  
  3570. $hs.hcStartMointoring(player)
  3571.  
  3572.  
  3573. },
  3574.  
  3575. hcDelayMouseHideAndStartMointoring: function(player) {
  3576. //console.log(554, 'hcDelayMouseHideAndStartMointoring')
  3577. delayCall('$$hcMouseMove', ()=> $hs.hcStartMointoring(player), 1240)
  3578. },
  3579.  
  3580. hcMouseShowWithMonitoring: function(player) {
  3581. //console.log(554, 'hcMouseShowWithMonitoring')
  3582. delayCall('$$hcMouseMove', function() {
  3583. $hs.mouseMoveCount = 0;
  3584. $hs._hcMouseHidePre(player)
  3585. }, 1240)
  3586. $hs.mouseMoveCount = 0;
  3587. if( $hs.hide_cursor_css ){
  3588. let htmlRoot = player.ownerDocument.querySelector('html');
  3589. $hs.hide_cursor_css=false;
  3590. htmlRoot.style.setProperty('--h5p-hide-cursor','');
  3591. }
  3592. //if(htmlRoot.hasAttribute('_h5p_hide_cursor')) htmlRoot.removeAttribute('_h5p_hide_cursor')
  3593. },
  3594.  
  3595. hcShowMouseAndRemoveMointoring: function(player) {
  3596. //console.log(554, 'hcShowMouseAndRemoveMointoring')
  3597. delayCall('$$hcMouseMove')
  3598. if($hs.mointoringVideo) $hs.mointoringVideo = null;
  3599. $hs.mouseMoveCount = 0;
  3600. if( $hs.hide_cursor_css ){
  3601. let htmlRoot = player.ownerDocument.querySelector('html');
  3602. $hs.hide_cursor_css=false;
  3603. htmlRoot.style.setProperty('--h5p-hide-cursor','');
  3604. }
  3605. //if(htmlRoot.hasAttribute('_h5p_hide_cursor')) htmlRoot.removeAttribute('_h5p_hide_cursor')
  3606.  
  3607. },
  3608.  
  3609.  
  3610.  
  3611. handlerElementFocus: function(event) {
  3612.  
  3613. function notAtVideo() {
  3614. if ($hs.focusHookVId) $hs.focusHookVId = ''
  3615. }
  3616.  
  3617. const hookVideo = $hs.focusHookVId ? $vQuery.player($hs.focusHookVId) : null
  3618.  
  3619. if (hookVideo && (event.target == hookVideo || event.target.contains(hookVideo))) {} else {
  3620. notAtVideo();
  3621. }
  3622.  
  3623. },
  3624.  
  3625. handlerFullscreenChanged: function(event) {
  3626.  
  3627.  
  3628. let videoElm = null,
  3629. videosQuery = null;
  3630. if (event && event.target) {
  3631. if (event.target.nodeName == "VIDEO") videoElm = event.target;
  3632. else if (videosQuery = event.target.querySelectorAll("VIDEO")) {
  3633. if (videosQuery.length === 1) videoElm = videosQuery[0]
  3634. }
  3635. }
  3636.  
  3637. if (videoElm) {
  3638. const player = videoElm;
  3639. const vpid = player.getAttribute('_h5ppid')
  3640. event.target.setAttribute('_h5p_fsElm_', vpid)
  3641.  
  3642. function hookTheActionedVideo() {
  3643. $hs.focusHookVId = vpid
  3644. }
  3645. hookTheActionedVideo();
  3646. window.setTimeout(hookTheActionedVideo, 300)
  3647. window.setTimeout(() => {
  3648. const chFull = $hs.toolCheckFullScreen(player.ownerDocument);
  3649. if (chFull) {
  3650. $hs.hcMouseHideAndStartMointoring(player);
  3651. } else {
  3652. $hs.hcShowMouseAndRemoveMointoring(player);
  3653. }
  3654. });
  3655.  
  3656. const playerConf = $hs.getPlayerConf(videoElm)
  3657. if (playerConf) {
  3658. delayCall("$$actionBoxFullscreen", function() {
  3659. playerConf.domActive &= ~DOM_ACTIVE_FULLSCREEN;
  3660. }, 137)
  3661. playerConf.domActive |= DOM_ACTIVE_FULLSCREEN;
  3662. }
  3663.  
  3664. $hs.swtichPlayerInstance()
  3665.  
  3666. } else {
  3667. $hs.focusHookVId = ''
  3668. }
  3669. },
  3670.  
  3671.  
  3672. isEditableElement:function(elm){
  3673.  
  3674. if(elm&& elm.nodeType==1 ){
  3675.  
  3676. return elm.nodeName=="TEXTAREA" || elm.nodeName=="INPUT" || elm.hasAttribute('contenteditable');
  3677. }
  3678. return false
  3679. },
  3680.  
  3681. /* 按鍵響應方法 */
  3682. handlerRootKeyDownEvent: function(event) {
  3683.  
  3684. if ($hs.intVideoInitCount > 0) {} else {
  3685. // return notAtVideo();
  3686. }
  3687.  
  3688. // $hs.lastKeyDown = event.timeStamp
  3689.  
  3690. // DOM Standard - either .key or .code
  3691. // Here we adopt .code (physical layout)
  3692.  
  3693. let pCode = event.code;
  3694. if (typeof pCode != 'string') return;
  3695. let keyAsm = (event.shiftKey ? SHIFT : 0) | ((event.ctrlKey || event.metaKey) ? CTRL : 0) | (event.altKey ? ALT : 0);
  3696. let hookVideo = null;
  3697.  
  3698. if($hs.isEditableElement(document.activeElement)){
  3699. $hs.focusHookVId=null
  3700. } else if (document.fullscreenElement) {
  3701. let playingVideo = document.fullscreenElement.querySelector('VIDEO[_h5ppid]');
  3702. if(!playingVideo) return;
  3703. if (!keyAsm && pCode == 'Escape') {
  3704. window.setTimeout(() => {
  3705. if (document.fullscreenElement) {
  3706. document.exitFullscreen();
  3707. }
  3708. }, 270);
  3709. return;
  3710. }
  3711. $hs.focusHookVId = playingVideo.getAttribute('_h5ppid');
  3712. }else{
  3713. const actionBoxRelation = $hs.getActionBoxRelationFromDOM(event.target)
  3714. if (actionBoxRelation) {
  3715. $hs.focusHookVId = actionBoxRelation.player.getAttribute('_h5ppid');
  3716. } else if ($hs.enteredActionBoxRelation && $hs.enteredActionBoxRelation.pContainer ){
  3717. $hs.focusHookVId=$hs.enteredActionBoxRelation.player.getAttribute('_h5ppid');
  3718. }
  3719. }
  3720.  
  3721. hookVideo = $hs.focusHookVId ? $vQuery.player($hs.focusHookVId) : null
  3722.  
  3723. if (!hookVideo || !hookVideo.parentNode) return; // no video tag
  3724.  
  3725. let videoElm = hookVideo
  3726.  
  3727. const playerConf = $hs.getPlayerConf(videoElm)
  3728. if (playerConf) {
  3729. delayCall("$$actionBoxKeyDown", function() {
  3730. playerConf.domActive &= ~DOM_ACTIVE_KEY_DOWN;
  3731. }, 137)
  3732. playerConf.domActive |= DOM_ACTIVE_KEY_DOWN;
  3733. }
  3734.  
  3735. $hs.swtichPlayerInstance()
  3736.  
  3737. let player = hookVideo;
  3738.  
  3739. let res = $hs.playerTrigger(player, event)
  3740. if (res == TERMINATE) {
  3741. event.stopPropagation()
  3742. event.preventDefault()
  3743. return false
  3744. }
  3745.  
  3746. },
  3747. /* 設置播放進度 */
  3748. setPlayProgress: function(player, curTime) {
  3749. if (!player || !player.parentNode) return
  3750. if (!curTime || Number.isNaN(curTime)) return
  3751. player.currentTime = curTime
  3752. if (curTime > 3) {
  3753. $hs.tips(false);
  3754. $hs.tips(`Playback Jumps to ${$hs.toolFormatCT(curTime)}`)
  3755. if (player.paused) player.play();
  3756. }
  3757. }
  3758. }
  3759.  
  3760. function makeFilter(arr, k) {
  3761. let res = ""
  3762. for (const e of arr) {
  3763. for (const d of e) {
  3764. res += " " + (1.0 * d * k).toFixed(9)
  3765. }
  3766. }
  3767. return res.trim()
  3768. }
  3769.  
  3770. function _add_filter(rootElm) {
  3771. let rootView = null;
  3772. if (rootElm && rootElm.nodeType > 0) {
  3773. while (rootElm.parentNode && rootElm.parentNode.nodeType === 1) rootElm = rootElm.parentNode;
  3774. rootView = rootElm.querySelector('body') || rootElm;
  3775. } else {
  3776. return;
  3777. }
  3778.  
  3779. if (rootView && rootView.querySelector && !rootView.querySelector('#_h5player_section_')) {
  3780.  
  3781. let svgFilterElm = document.createElement('section')
  3782. svgFilterElm.style.position = 'fixed';
  3783. svgFilterElm.style.left = '-999px';
  3784. svgFilterElm.style.width = '1px';
  3785. svgFilterElm.style.top = '-999px';
  3786. svgFilterElm.style.height = '1px';
  3787. svgFilterElm.id = '_h5player_section_'
  3788. let svgXML = `
  3789. <svg id='_h5p_image' version="1.1" xmlns="http://www.w3.org/2000/svg">
  3790. <defs>
  3791. <filter id="_h5p_sharpen1">
  3792. <feConvolveMatrix filterRes="100 100" style="color-interpolation-filters:sRGB" order="3" kernelMatrix="` + `
  3793. -0.3 -0.3 -0.3
  3794. -0.3 3.4 -0.3
  3795. -0.3 -0.3 -0.3`.replace(/[\n\r]+/g, ' ').trim() + `" preserveAlpha="true"/>
  3796. </filter>
  3797. <filter id="_h5p_unsharpen1">
  3798. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="5" kernelMatrix="` +
  3799. makeFilter([
  3800. [1, 4, 6, 4, 1],
  3801. [4, 16, 24, 16, 4],
  3802. [6, 24, -476, 24, 6],
  3803. [4, 16, 24, 16, 4],
  3804. [1, 4, 6, 4, 1]
  3805. ], -1 / 256) + `" preserveAlpha="false"/>
  3806. </filter>
  3807. <filter id="_h5p_unsharpen3_05">
  3808. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="3" kernelMatrix="` +
  3809. makeFilter(
  3810. [
  3811. [0.025, 0.05, 0.025],
  3812. [0.05, -1.1, 0.05],
  3813. [0.025, 0.05, 0.025]
  3814. ], -1 / .8) + `" preserveAlpha="false"/>
  3815. </filter>
  3816. <filter id="_h5p_unsharpen3_10">
  3817. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="3" kernelMatrix="` +
  3818. makeFilter(
  3819. [
  3820. [0.05, 0.1, 0.05],
  3821. [0.1, -1.4, 0.1],
  3822. [0.05, 0.1, 0.05]
  3823. ], -1 / .8) + `" preserveAlpha="false"/>
  3824. </filter>
  3825. <filter id="_h5p_unsharpen5_05">
  3826. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="5" kernelMatrix="` +
  3827. makeFilter(
  3828. [
  3829. [0.025, 0.1, 0.15, 0.1, 0.025],
  3830. [0.1, 0.4, 0.6, 0.4, 0.1],
  3831. [0.15, 0.6, -18.3, 0.6, 0.15],
  3832. [0.1, 0.4, 0.6, 0.4, 0.1],
  3833. [0.025, 0.1, 0.15, 0.1, 0.025]
  3834. ], -1 / 12.8) + `" preserveAlpha="false"/>
  3835. </filter>
  3836. <filter id="_h5p_unsharpen5_10">
  3837. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="5" kernelMatrix="` +
  3838. makeFilter(
  3839. [
  3840. [0.05, 0.2, 0.3, 0.2, 0.05],
  3841. [0.2, 0.8, 1.2, 0.8, 0.2],
  3842. [0.3, 1.2, -23.8, 1.2, 0.3],
  3843. [0.2, 0.8, 1.2, 0.8, 0.2],
  3844. [0.05, 0.2, 0.3, 0.2, 0.05]
  3845. ], -1 / 12.8) + `" preserveAlpha="false"/>
  3846. </filter>
  3847. <filter id="_h5p_unsharpen9_05">
  3848. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="9" kernelMatrix="` +
  3849. makeFilter(
  3850. [
  3851. [0.025, 0.2, 0.7, 1.4, 1.75, 1.4, 0.7, 0.2, 0.025],
  3852. [0.2, 1.6, 5.6, 11.2, 14, 11.2, 5.6, 1.6, 0.2],
  3853. [0.7, 5.6, 19.6, 39.2, 49, 39.2, 19.6, 5.6, 0.7],
  3854. [1.4, 11.2, 39.2, 78.4, 98, 78.4, 39.2, 11.2, 1.4],
  3855. [1.75, 14, 49, 98, -4792.7, 98, 49, 14, 1.75],
  3856. [1.4, 11.2, 39.2, 78.4, 98, 78.4, 39.2, 11.2, 1.4],
  3857. [0.7, 5.6, 19.6, 39.2, 49, 39.2, 19.6, 5.6, 0.7],
  3858. [0.2, 1.6, 5.6, 11.2, 14, 11.2, 5.6, 1.6, 0.2],
  3859. [0.025, 0.2, 0.7, 1.4, 1.75, 1.4, 0.7, 0.2, 0.025]
  3860. ], -1 / 3276.8) + `" preserveAlpha="false"/>
  3861. </filter>
  3862. <filter id="_h5p_unsharpen9_10">
  3863. <feConvolveMatrix style="color-interpolation-filters:sRGB;color-interpolation: sRGB;" order="9" kernelMatrix="` +
  3864. makeFilter(
  3865. [
  3866. [0.05, 0.4, 1.4, 2.8, 3.5, 2.8, 1.4, 0.4, 0.05],
  3867. [0.4, 3.2, 11.2, 22.4, 28, 22.4, 11.2, 3.2, 0.4],
  3868. [1.4, 11.2, 39.2, 78.4, 98, 78.4, 39.2, 11.2, 1.4],
  3869. [2.8, 22.4, 78.4, 156.8, 196, 156.8, 78.4, 22.4, 2.8],
  3870. [3.5, 28, 98, 196, -6308.6, 196, 98, 28, 3.5],
  3871. [2.8, 22.4, 78.4, 156.8, 196, 156.8, 78.4, 22.4, 2.8],
  3872. [1.4, 11.2, 39.2, 78.4, 98, 78.4, 39.2, 11.2, 1.4],
  3873. [0.4, 3.2, 11.2, 22.4, 28, 22.4, 11.2, 3.2, 0.4],
  3874. [0.05, 0.4, 1.4, 2.8, 3.5, 2.8, 1.4, 0.4, 0.05]
  3875. ], -1 / 3276.8) + `" preserveAlpha="false"/>
  3876. </filter>
  3877. <filter id="_h5p_grey1">
  3878. <feColorMatrix values="0.3333 0.3333 0.3333 0 0
  3879. 0.3333 0.3333 0.3333 0 0
  3880. 0.3333 0.3333 0.3333 0 0
  3881. 0 0 0 1 0"/>
  3882. <feColorMatrix type="saturate" values="0" />
  3883. </filter>
  3884. </defs>
  3885. </svg>
  3886. `;
  3887.  
  3888. svgFilterElm.innerHTML = svgXML.replace(/[\r\n\s]+/g, ' ').trim();
  3889.  
  3890. rootView.appendChild(svgFilterElm);
  3891. }
  3892.  
  3893. }
  3894.  
  3895. /**
  3896. * 某些網頁用了attachShadow closed mode,需要open才能獲取video標籤,例如百度雲盤
  3897. * 解決參考:
  3898. * https://developers.google.com/web/fundamentals/web-components/shadowdom?hl=zh-cn#closed
  3899. * https://stackoverflow.com/questions/54954383/override-element-prototype-attachshadow-using-chrome-extension
  3900. */
  3901.  
  3902. const initForShadowRoot = async (shadowRoot) => {
  3903. try {
  3904. if (shadowRoot && shadowRoot.nodeType > 0 && shadowRoot.mode == 'open' && 'querySelectorAll' in shadowRoot) {
  3905. if (!shadowRoot.host.hasAttribute('_h5p_shadowroot_')) {
  3906. shadowRoot.host.setAttribute('_h5p_shadowroot_', '')
  3907.  
  3908. $hs.bindDocEvents(shadowRoot);
  3909. captureVideoEvents(shadowRoot);
  3910.  
  3911. }
  3912. }
  3913. } catch (e) {
  3914. console.log('h5Player: initForShadowRoot failed')
  3915. }
  3916. }
  3917.  
  3918. function hackAttachShadow() { // attachShadow - DOM Standard
  3919.  
  3920. let _prototype_ = window && window.HTMLElement ? window.HTMLElement.prototype : null;
  3921. if (_prototype_ && typeof _prototype_.attachShadow == 'function') {
  3922.  
  3923. let _attachShadow = _prototype_.attachShadow
  3924.  
  3925. hackAttachShadow = null
  3926. _prototype_.attachShadow = function() {
  3927. let arg = [...arguments];
  3928. if (arg[0] && arg[0].mode) arg[0].mode = 'open';
  3929. let shadowRoot = _attachShadow.apply(this, arg);
  3930. initForShadowRoot(shadowRoot);
  3931. return shadowRoot
  3932. };
  3933.  
  3934. _prototype_.attachShadow.toString = () => _attachShadow.toString();
  3935.  
  3936. }
  3937.  
  3938. }
  3939.  
  3940. function hackCreateShadowRoot() { // createShadowRoot - Deprecated
  3941.  
  3942. let _prototype_ = window && window.HTMLElement ? window.HTMLElement.prototype : null;
  3943. if (_prototype_ && typeof _prototype_.createShadowRoot == 'function') {
  3944.  
  3945. let _createShadowRoot = _prototype_.createShadowRoot;
  3946.  
  3947. hackCreateShadowRoot = null
  3948. _prototype_.createShadowRoot = function() {
  3949. const shadowRoot = _createShadowRoot.apply(this, arguments);
  3950. initForShadowRoot(shadowRoot);
  3951. return shadowRoot;
  3952. };
  3953. _prototype_.createShadowRoot.toString = () => _createShadowRoot.toString();
  3954.  
  3955. }
  3956. }
  3957.  
  3958.  
  3959.  
  3960.  
  3961. /* 事件偵聽hack */
  3962. function hackEventListener() {
  3963. if (!window.HTMLElement || !window.HTMLElement.prototype) return;
  3964. const _prototype = window.HTMLElement.prototype;
  3965. let _addEventListener = _prototype.addEventListener;
  3966. let _removeEventListener = _prototype.removeEventListener;
  3967. if (typeof _addEventListener == 'function' && typeof _removeEventListener == 'function') {} else return;
  3968. hackEventListener = null;
  3969.  
  3970. const options_passive_capture = {
  3971. passive: true,
  3972. capture: true
  3973. }
  3974. const options_passive_bubble = {
  3975. passive: true,
  3976. capture: false
  3977. }
  3978.  
  3979. let phListeners = Promise.resolve();
  3980.  
  3981. function getEventChoice(type){
  3982. let eventChoice = 0;
  3983. switch (type) {
  3984. case 'load':
  3985. case 'beforeunload':
  3986. case 'DOMContentLoaded':
  3987. eventChoice=9;
  3988. break;
  3989. case 'touchstart':
  3990. case 'touchmove':
  3991. case 'wheel':
  3992. case 'mousewheel':
  3993. case 'timeupdate':
  3994. eventChoice=6;
  3995. break;
  3996. case 'mouseout':
  3997. case 'mouseover':
  3998. case 'focusin':
  3999. case 'focusout':
  4000. case 'mouseenter':
  4001. case 'mouseleave':
  4002. case 'mousemove':
  4003. eventChoice=8;
  4004. break;
  4005. case 'click':
  4006. case 'mousedown':
  4007. case 'mouseup':
  4008. eventChoice=2;
  4009. break;
  4010. default:
  4011. eventChoice=9;
  4012. }
  4013. return eventChoice;
  4014.  
  4015. }
  4016.  
  4017.  
  4018. _prototype.addEventListener = function addEventListener() {
  4019. const args = arguments
  4020. const type = args[0]
  4021. const listener = args[1]
  4022.  
  4023. if (!this || typeof type != 'string' || typeof listener != 'function') {
  4024. return _addEventListener.apply(this, args);
  4025. }
  4026.  
  4027. let eventChoice = getEventChoice(type);
  4028.  
  4029. if(eventChoice==2) {
  4030.  
  4031. phListeners = phListeners.then(() => {
  4032. let listeners = wmListeners.get(this);
  4033. if (!listeners) wmListeners.set(this, listeners = {});
  4034. if (!listeners[type]) listeners[type] = new Listeners();
  4035. let lh = new ListenerHandle(args[1], args[2]);
  4036. listeners[type].add(lh);
  4037. })
  4038.  
  4039. }
  4040.  
  4041. return _addEventListener.apply(this, args);
  4042.  
  4043.  
  4044. }
  4045. // hack removeEventListener
  4046. _prototype.removeEventListener = function removeEventListener() {
  4047.  
  4048. let args = arguments;
  4049. let type = args[0];
  4050. let listener = args[1];
  4051.  
  4052. if (!this || typeof type != 'string' || typeof listener != 'function') {
  4053. return _removeEventListener.apply(this, args);
  4054. //unknown bug?
  4055. }
  4056.  
  4057. let eventChoice = getEventChoice(type);
  4058.  
  4059. if (eventChoice ==2) {
  4060.  
  4061. phListeners = phListeners.then(() => {
  4062. const listeners = wmListeners.get(this);
  4063. if (listeners) {
  4064. let lh = new ListenerHandle(args[1], args[2]);
  4065. listeners[type].remove(lh);
  4066. }
  4067. })
  4068.  
  4069. }
  4070.  
  4071. return _removeEventListener.apply(this, args);
  4072.  
  4073. }
  4074. _prototype.addEventListener.toString = () => _addEventListener.toString();
  4075. _prototype.removeEventListener.toString = () => _removeEventListener.toString();
  4076.  
  4077.  
  4078. }
  4079.  
  4080.  
  4081. function initShadowRoots(rootDoc) {
  4082. function onReady() {
  4083. var treeWalker = rootDoc.createTreeWalker(
  4084. rootDoc.documentElement,
  4085. NodeFilter.SHOW_ELEMENT, {
  4086. acceptNode: (node) => (node.shadowRoot ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP)
  4087. }
  4088. );
  4089. var nodeList = [];
  4090. while (treeWalker.nextNode()) nodeList.push(treeWalker.currentNode);
  4091. for (const node of nodeList) {
  4092. initForShadowRoot(node.shadowRoot)
  4093. }
  4094. }
  4095. if (rootDoc.readyState !== 'loading') {
  4096. onReady();
  4097. } else {
  4098. rootDoc.addEventListener('DOMContentLoaded', onReady, false);
  4099. }
  4100. }
  4101.  
  4102. function captureVideoEvents(rootDoc) {
  4103.  
  4104. rootDocs.push(rootDoc)
  4105.  
  4106. var g = function(evt) {
  4107.  
  4108.  
  4109. var domElement = evt.target || this || null
  4110. if (domElement && domElement.nodeType == 1 && domElement.nodeName == "VIDEO") {
  4111. var video = domElement
  4112. if (!domElement.getAttribute('_h5ppid')) handlerVideoFound(video);
  4113. if (domElement.getAttribute('_h5ppid')) {
  4114. switch (evt.type) {
  4115. case 'loadedmetadata':
  4116. return $hs.handlerVideoLoadedMetaData.call(video, evt);
  4117. // case 'playing':
  4118. // return $hs.handlerVideoPlaying.call(video, evt);
  4119. // case 'pause':
  4120. // return $hs.handlerVideoPause.call(video, evt);
  4121. // case 'volumechange':
  4122. // return $hs.handlerVideoVolumeChange.call(video, evt);
  4123. }
  4124. }
  4125. }
  4126.  
  4127.  
  4128. }
  4129.  
  4130. // using capture phase
  4131. rootDoc.addEventListener('loadedmetadata', g, $mb.eh_capture_passive());
  4132.  
  4133. }
  4134.  
  4135. function handlerVideoFound(video) {
  4136.  
  4137. if (!video) return;
  4138. if (video.getAttribute('_h5ppid')) return;
  4139.  
  4140. const toSkip = (() => {
  4141. //skip GIF video
  4142. let alabel = video.getAttribute('aria-label')
  4143. if (alabel && typeof alabel == "string" && alabel.toUpperCase() == "GIF") return true;
  4144.  
  4145. //skip video with opacity
  4146. const videoOpacity = video.style.opacity + ''
  4147. if (videoOpacity.length > 0 && +videoOpacity < 0.99 && +videoOpacity >= 0) return true;
  4148.  
  4149. //Google Result Video Preview
  4150. let pElm = video;
  4151. while (pElm && pElm.nodeType == 1) {
  4152. if (pElm.nodeName == "A" && pElm.getAttribute('href')) return true;
  4153. pElm = pElm.parentNode
  4154. }
  4155. pElm = null;
  4156. })();
  4157.  
  4158. if (toSkip) return;
  4159.  
  4160. consoleLog('handlerVideoFound', video)
  4161.  
  4162. $hs.intVideoInitCount = ($hs.intVideoInitCount || 0) + 1;
  4163. consoleLog(' - HTML5 Video is detected -', `Number of Videos: ${$hs.intVideoInitCount}`)
  4164. if ($hs.intVideoInitCount === 1) $hs.fireGlobalInit();
  4165.  
  4166. let vpid = 'h5p-', vRootDoc=null;
  4167. for(let wi=rootDocs.length;wi--;){
  4168. if(rootDocs[wi].contains(video)){
  4169. vpid+=`${wi.toString(36)}-`;
  4170. vRootDoc=rootDocs[wi]
  4171. break;
  4172. }
  4173. }
  4174. vpid += `${$hs.intVideoInitCount.toString(36)}`;
  4175.  
  4176. video.setAttribute('_h5ppid', vpid)
  4177.  
  4178.  
  4179.  
  4180. playerConfs[vpid] = new PlayerConf();
  4181. playerConfs[vpid].domElement = video;
  4182. playerConfs[vpid].domActive = DOM_ACTIVE_FOUND;
  4183.  
  4184. let rootNode = getRoot(video);
  4185.  
  4186. $vQuery.setVideo(vpid,video);
  4187.  
  4188. if (rootNode.host) $hs.getPlayerBlockElement(video); // shadowing
  4189. let rootElm = domAppender(rootNode) || document.documentElement //48763
  4190. _add_filter(rootElm) // either main document or shadow node
  4191.  
  4192.  
  4193.  
  4194. video.addEventListener('playing', $hs.handlerVideoPlaying, $mb.eh_capture_passive());
  4195. video.addEventListener('pause', $hs.handlerVideoPause, $mb.eh_capture_passive());
  4196. video.addEventListener('volumechange', $hs.handlerVideoVolumeChange, $mb.eh_capture_passive());
  4197.  
  4198.  
  4199.  
  4200. //observe not fire twice for the same element.
  4201. if (!$hs.observer_cacheSizing) $hs.observer_cacheSizing = new ResizeObserver($hs.handlerSizing);
  4202. $hs.observer_cacheSizing.observe(video)
  4203.  
  4204.  
  4205.  
  4206. }
  4207.  
  4208.  
  4209. hackAttachShadow()
  4210. hackCreateShadowRoot()
  4211. hackEventListener()
  4212.  
  4213.  
  4214. window.addEventListener('message', $hs.handlerWinMessage, false);
  4215. $hs.bindDocEvents(document);
  4216. captureVideoEvents(document);
  4217. initShadowRoots(document);
  4218.  
  4219.  
  4220. let windowsLD = (function() {
  4221. let ls_res = [];
  4222. try {
  4223. ls_res = [!!window.localStorage, !!window.top.localStorage];
  4224. } catch (e) {}
  4225. try {
  4226. let winp = window;
  4227. let winc = 0;
  4228. while (winp !== window.top && winp && ++winc) winp = winp.parentNode;
  4229. ls_res.push(winc);
  4230. } catch (e) {}
  4231. return ls_res;
  4232. })();
  4233.  
  4234. consoleLogF('- h5Player Plugin Loaded -', ...windowsLD)
  4235.  
  4236. function isInCrossOriginFrame() {
  4237. let result = true;
  4238. try {
  4239. if (window.top.localStorage || window.top.location.href) result = false;
  4240. } catch (e) {}
  4241. return result
  4242. }
  4243.  
  4244. if (isInCrossOriginFrame()) consoleLog('cross origin frame detected');
  4245.  
  4246.  
  4247. const $bv = {
  4248.  
  4249. boostVideoPerformanceActivate: function() {
  4250. if ($bz.boosted) return;
  4251. $bz.boosted = true;
  4252. },
  4253.  
  4254.  
  4255. boostVideoPerformanceDeactivate: function() {
  4256. if (!$bz.boosted) return;
  4257. $bz.boosted = false;
  4258. }
  4259.  
  4260. }
  4261.  
  4262.  
  4263.  
  4264. })();
  4265.  
  4266. })(window.unsafeWindow, window);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址