1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 12:00:06 +02:00
This commit is contained in:
DanieL 2022-08-24 16:05:41 -03:00
parent 6efee3a800
commit 051401c6fc
803 changed files with 70126 additions and 6014 deletions

View file

@ -1,6 +1,6 @@
/**
* @license
* Video.js 7.20.1 <http://videojs.com/>
* Video.js 7.20.2 <http://videojs.com/>
* Copyright Brightcove, Inc. <https://www.brightcove.com/>
* Available under Apache License Version 2.0
* <https://github.com/videojs/video.js/blob/main/LICENSE>
@ -16,7 +16,7 @@
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.videojs = factory());
}(this, (function () { 'use strict';
var version$5 = "7.20.1";
var version$5 = "7.20.2";
/**
* An Object that contains lifecycle hooks as keys which point to an array
@ -22461,7 +22461,8 @@
_this = _Tech.call(this, options, ready) || this;
var source = options.source;
var crossoriginTracks = false; // Set the source if one is provided
var crossoriginTracks = false;
_this.featuresVideoFrameCallback = _this.featuresVideoFrameCallback && _this.el_.tagName === 'VIDEO'; // Set the source if one is provided
// 1) Check if the source is new (if not, we want to keep the original so playback isn't interrupted)
// 2) Check to see if the network state of the tag was failed at init, and if so, reset the source
// anyway so the error gets fired.
@ -22536,8 +22537,6 @@
_this.proxyWebkitFullscreen_();
_this.featuresVideoFrameCallback = _this.featuresVideoFrameCallback && _this.el_.tagName === 'VIDEO';
_this.triggerReady();
return _this;
@ -23186,6 +23185,9 @@
}
/**
* Native requestVideoFrameCallback if supported by browser/tech, or fallback
* Don't use rVCF on Safari when DRM is playing, as it doesn't fire
* Needs to be checked later than the constructor
* This will be a false positive for clear sources loaded after a Fairplay source
*
* @param {function} cb function to call
* @return {number} id of request
@ -23193,7 +23195,7 @@
;
_proto.requestVideoFrameCallback = function requestVideoFrameCallback(cb) {
if (this.featuresVideoFrameCallback) {
if (this.featuresVideoFrameCallback && !this.el_.webkitKeys) {
return this.el_.requestVideoFrameCallback(cb);
}
@ -23207,7 +23209,7 @@
;
_proto.cancelVideoFrameCallback = function cancelVideoFrameCallback(id) {
if (this.featuresVideoFrameCallback) {
if (this.featuresVideoFrameCallback && !this.el_.webkitKeys) {
this.el_.cancelVideoFrameCallback(id);
} else {
_Tech.prototype.cancelVideoFrameCallback.call(this, id);