|
@@ -1,6655 +1,8255 @@
|
|
|
/*!
|
|
|
- *
|
|
|
* MediaElement.js
|
|
|
- * HTML5 <video> and <audio> shim and player
|
|
|
- * http://mediaelementjs.com/
|
|
|
+ * http://www.mediaelementjs.com/
|
|
|
*
|
|
|
- * Creates a JavaScript object that mimics HTML5 MediaElement API
|
|
|
- * for browsers that don't understand HTML5 or can't play the provided codec
|
|
|
- * Can play MP4 (H.264), Ogg, WebM, FLV, WMV, WMA, ACC, and MP3
|
|
|
+ * Wrapper that mimics native HTML5 MediaElement (audio and video)
|
|
|
+ * using a variety of technologies (pure JavaScript, Flash, iframe)
|
|
|
*
|
|
|
- * Copyright 2010-2014, John Dyer (http://j.hn)
|
|
|
+ * Copyright 2010-2017, John Dyer (http://j.hn/)
|
|
|
* License: MIT
|
|
|
*
|
|
|
- */
|
|
|
-// Namespace
|
|
|
-var mejs = mejs || {};
|
|
|
-
|
|
|
-// version number
|
|
|
-mejs.version = '2.23.5';
|
|
|
-
|
|
|
-
|
|
|
-// player number (for missing, same id attr)
|
|
|
-mejs.meIndex = 0;
|
|
|
-
|
|
|
-// media types accepted by plugins
|
|
|
-mejs.plugins = {
|
|
|
- silverlight: [
|
|
|
- {version: [3,0], types: ['video/mp4','video/m4v','video/mov','video/wmv','audio/wma','audio/m4a','audio/mp3','audio/wav','audio/mpeg']}
|
|
|
- ],
|
|
|
- flash: [
|
|
|
- {version: [9,0,124], types: ['video/mp4','video/m4v','video/mov','video/flv','video/rtmp','video/x-flv','audio/flv','audio/x-flv','audio/mp3','audio/m4a', 'audio/mp4', 'audio/mpeg', 'video/dailymotion', 'video/x-dailymotion', 'application/x-mpegURL', 'audio/ogg']}
|
|
|
- // 'video/youtube', 'video/x-youtube',
|
|
|
- // ,{version: [12,0], types: ['video/webm']} // for future reference (hopefully!)
|
|
|
- ],
|
|
|
- youtube: [
|
|
|
- {version: null, types: ['video/youtube', 'video/x-youtube', 'audio/youtube', 'audio/x-youtube']}
|
|
|
- ],
|
|
|
- vimeo: [
|
|
|
- {version: null, types: ['video/vimeo', 'video/x-vimeo']}
|
|
|
- ]
|
|
|
-};
|
|
|
+ */(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
|
|
|
|
|
|
-/*
|
|
|
-Utility methods
|
|
|
-*/
|
|
|
-mejs.Utility = {
|
|
|
- encodeUrl: function(url) {
|
|
|
- return encodeURIComponent(url); //.replace(/\?/gi,'%3F').replace(/=/gi,'%3D').replace(/&/gi,'%26');
|
|
|
- },
|
|
|
- escapeHTML: function(s) {
|
|
|
- return s.toString().split('&').join('&').split('<').join('<').split('"').join('"');
|
|
|
- },
|
|
|
- absolutizeUrl: function(url) {
|
|
|
- var el = document.createElement('div');
|
|
|
- el.innerHTML = '<a href="' + this.escapeHTML(url) + '">x</a>';
|
|
|
- return el.firstChild.href;
|
|
|
- },
|
|
|
- getScriptPath: function(scriptNames) {
|
|
|
- var
|
|
|
- i = 0,
|
|
|
- j,
|
|
|
- codePath = '',
|
|
|
- testname = '',
|
|
|
- slashPos,
|
|
|
- filenamePos,
|
|
|
- scriptUrl,
|
|
|
- scriptPath,
|
|
|
- scriptFilename,
|
|
|
- scripts = document.getElementsByTagName('script'),
|
|
|
- il = scripts.length,
|
|
|
- jl = scriptNames.length;
|
|
|
-
|
|
|
- // go through all <script> tags
|
|
|
- for (; i < il; i++) {
|
|
|
- scriptUrl = scripts[i].src;
|
|
|
- slashPos = scriptUrl.lastIndexOf('/');
|
|
|
- if (slashPos > -1) {
|
|
|
- scriptFilename = scriptUrl.substring(slashPos + 1);
|
|
|
- scriptPath = scriptUrl.substring(0, slashPos + 1);
|
|
|
- } else {
|
|
|
- scriptFilename = scriptUrl;
|
|
|
- scriptPath = '';
|
|
|
- }
|
|
|
-
|
|
|
- // see if any <script> tags have a file name that matches the
|
|
|
- for (j = 0; j < jl; j++) {
|
|
|
- testname = scriptNames[j];
|
|
|
- filenamePos = scriptFilename.indexOf(testname);
|
|
|
- if (filenamePos > -1) {
|
|
|
- codePath = scriptPath;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // if we found a path, then break and return it
|
|
|
- if (codePath !== '') {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // send the best path back
|
|
|
- return codePath;
|
|
|
- },
|
|
|
- /*
|
|
|
- * Calculate the time format to use. We have a default format set in the
|
|
|
- * options but it can be imcomplete. We ajust it according to the media
|
|
|
- * duration.
|
|
|
- *
|
|
|
- * We support format like 'hh:mm:ss:ff'.
|
|
|
- */
|
|
|
- calculateTimeFormat: function(time, options, fps) {
|
|
|
- if (time < 0) {
|
|
|
- time = 0;
|
|
|
- }
|
|
|
-
|
|
|
- if(typeof fps == 'undefined') {
|
|
|
- fps = 25;
|
|
|
- }
|
|
|
-
|
|
|
- var format = options.timeFormat,
|
|
|
- firstChar = format[0],
|
|
|
- firstTwoPlaces = (format[1] == format[0]),
|
|
|
- separatorIndex = firstTwoPlaces? 2: 1,
|
|
|
- separator = ':',
|
|
|
- hours = Math.floor(time / 3600) % 24,
|
|
|
- minutes = Math.floor(time / 60) % 60,
|
|
|
- seconds = Math.floor(time % 60),
|
|
|
- frames = Math.floor(((time % 1)*fps).toFixed(3)),
|
|
|
- lis = [
|
|
|
- [frames, 'f'],
|
|
|
- [seconds, 's'],
|
|
|
- [minutes, 'm'],
|
|
|
- [hours, 'h']
|
|
|
- ];
|
|
|
-
|
|
|
- // Try to get the separator from the format
|
|
|
- if (format.length < separatorIndex) {
|
|
|
- separator = format[separatorIndex];
|
|
|
- }
|
|
|
-
|
|
|
- var required = false;
|
|
|
-
|
|
|
- for (var i=0, len=lis.length; i < len; i++) {
|
|
|
- if (format.indexOf(lis[i][1]) !== -1) {
|
|
|
- required=true;
|
|
|
- }
|
|
|
- else if (required) {
|
|
|
- var hasNextValue = false;
|
|
|
- for (var j=i; j < len; j++) {
|
|
|
- if (lis[j][0] > 0) {
|
|
|
- hasNextValue = true;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
+},{}],2:[function(_dereq_,module,exports){
|
|
|
+(function (global){
|
|
|
+var topLevel = typeof global !== 'undefined' ? global :
|
|
|
+ typeof window !== 'undefined' ? window : {}
|
|
|
+var minDoc = _dereq_(1);
|
|
|
|
|
|
- if (! hasNextValue) {
|
|
|
- break;
|
|
|
- }
|
|
|
+var doccy;
|
|
|
|
|
|
- if (!firstTwoPlaces) {
|
|
|
- format = firstChar + format;
|
|
|
- }
|
|
|
- format = lis[i][1] + separator + format;
|
|
|
- if (firstTwoPlaces) {
|
|
|
- format = lis[i][1] + format;
|
|
|
- }
|
|
|
- firstChar = lis[i][1];
|
|
|
- }
|
|
|
- }
|
|
|
- options.currentTimeFormat = format;
|
|
|
- },
|
|
|
- /*
|
|
|
- * Prefix the given number by zero if it is lower than 10.
|
|
|
- */
|
|
|
- twoDigitsString: function(n) {
|
|
|
- if (n < 10) {
|
|
|
- return '0' + n;
|
|
|
- }
|
|
|
- return String(n);
|
|
|
- },
|
|
|
- secondsToTimeCode: function(time, options) {
|
|
|
- if (time < 0) {
|
|
|
- time = 0;
|
|
|
- }
|
|
|
+if (typeof document !== 'undefined') {
|
|
|
+ doccy = document;
|
|
|
+} else {
|
|
|
+ doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'];
|
|
|
|
|
|
- // Maintain backward compatibility with method signature before v2.18.
|
|
|
- if (typeof options !== 'object') {
|
|
|
- var format = 'm:ss';
|
|
|
- format = arguments[1] ? 'hh:mm:ss' : format; // forceHours
|
|
|
- format = arguments[2] ? format + ':ff' : format; // showFrameCount
|
|
|
+ if (!doccy) {
|
|
|
+ doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'] = minDoc;
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- options = {
|
|
|
- currentTimeFormat: format,
|
|
|
- framesPerSecond: arguments[3] || 25
|
|
|
- };
|
|
|
- }
|
|
|
+module.exports = doccy;
|
|
|
+
|
|
|
+}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
|
+},{"1":1}],3:[function(_dereq_,module,exports){
|
|
|
+(function (global){
|
|
|
+var win;
|
|
|
+
|
|
|
+if (typeof window !== "undefined") {
|
|
|
+ win = window;
|
|
|
+} else if (typeof global !== "undefined") {
|
|
|
+ win = global;
|
|
|
+} else if (typeof self !== "undefined"){
|
|
|
+ win = self;
|
|
|
+} else {
|
|
|
+ win = {};
|
|
|
+}
|
|
|
|
|
|
- var fps = options.framesPerSecond;
|
|
|
- if(typeof fps === 'undefined') {
|
|
|
- fps = 25;
|
|
|
- }
|
|
|
+module.exports = win;
|
|
|
+
|
|
|
+}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
|
+},{}],4:[function(_dereq_,module,exports){
|
|
|
+(function (root) {
|
|
|
+
|
|
|
+ // Store setTimeout reference so promise-polyfill will be unaffected by
|
|
|
+ // other code modifying setTimeout (like sinon.useFakeTimers())
|
|
|
+ var setTimeoutFunc = setTimeout;
|
|
|
+
|
|
|
+ function noop() {}
|
|
|
+
|
|
|
+ // Polyfill for Function.prototype.bind
|
|
|
+ function bind(fn, thisArg) {
|
|
|
+ return function () {
|
|
|
+ fn.apply(thisArg, arguments);
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ function Promise(fn) {
|
|
|
+ if (typeof this !== 'object') throw new TypeError('Promises must be constructed via new');
|
|
|
+ if (typeof fn !== 'function') throw new TypeError('not a function');
|
|
|
+ this._state = 0;
|
|
|
+ this._handled = false;
|
|
|
+ this._value = undefined;
|
|
|
+ this._deferreds = [];
|
|
|
+
|
|
|
+ doResolve(fn, this);
|
|
|
+ }
|
|
|
+
|
|
|
+ function handle(self, deferred) {
|
|
|
+ while (self._state === 3) {
|
|
|
+ self = self._value;
|
|
|
+ }
|
|
|
+ if (self._state === 0) {
|
|
|
+ self._deferreds.push(deferred);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ self._handled = true;
|
|
|
+ Promise._immediateFn(function () {
|
|
|
+ var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected;
|
|
|
+ if (cb === null) {
|
|
|
+ (self._state === 1 ? resolve : reject)(deferred.promise, self._value);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var ret;
|
|
|
+ try {
|
|
|
+ ret = cb(self._value);
|
|
|
+ } catch (e) {
|
|
|
+ reject(deferred.promise, e);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ resolve(deferred.promise, ret);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ function resolve(self, newValue) {
|
|
|
+ try {
|
|
|
+ // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure
|
|
|
+ if (newValue === self) throw new TypeError('A promise cannot be resolved with itself.');
|
|
|
+ if (newValue && (typeof newValue === 'object' || typeof newValue === 'function')) {
|
|
|
+ var then = newValue.then;
|
|
|
+ if (newValue instanceof Promise) {
|
|
|
+ self._state = 3;
|
|
|
+ self._value = newValue;
|
|
|
+ finale(self);
|
|
|
+ return;
|
|
|
+ } else if (typeof then === 'function') {
|
|
|
+ doResolve(bind(then, newValue), self);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ self._state = 1;
|
|
|
+ self._value = newValue;
|
|
|
+ finale(self);
|
|
|
+ } catch (e) {
|
|
|
+ reject(self, e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function reject(self, newValue) {
|
|
|
+ self._state = 2;
|
|
|
+ self._value = newValue;
|
|
|
+ finale(self);
|
|
|
+ }
|
|
|
+
|
|
|
+ function finale(self) {
|
|
|
+ if (self._state === 2 && self._deferreds.length === 0) {
|
|
|
+ Promise._immediateFn(function() {
|
|
|
+ if (!self._handled) {
|
|
|
+ Promise._unhandledRejectionFn(self._value);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var i = 0, len = self._deferreds.length; i < len; i++) {
|
|
|
+ handle(self, self._deferreds[i]);
|
|
|
+ }
|
|
|
+ self._deferreds = null;
|
|
|
+ }
|
|
|
+
|
|
|
+ function Handler(onFulfilled, onRejected, promise) {
|
|
|
+ this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;
|
|
|
+ this.onRejected = typeof onRejected === 'function' ? onRejected : null;
|
|
|
+ this.promise = promise;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Take a potentially misbehaving resolver function and make sure
|
|
|
+ * onFulfilled and onRejected are only called once.
|
|
|
+ *
|
|
|
+ * Makes no guarantees about asynchrony.
|
|
|
+ */
|
|
|
+ function doResolve(fn, self) {
|
|
|
+ var done = false;
|
|
|
+ try {
|
|
|
+ fn(function (value) {
|
|
|
+ if (done) return;
|
|
|
+ done = true;
|
|
|
+ resolve(self, value);
|
|
|
+ }, function (reason) {
|
|
|
+ if (done) return;
|
|
|
+ done = true;
|
|
|
+ reject(self, reason);
|
|
|
+ });
|
|
|
+ } catch (ex) {
|
|
|
+ if (done) return;
|
|
|
+ done = true;
|
|
|
+ reject(self, ex);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Promise.prototype['catch'] = function (onRejected) {
|
|
|
+ return this.then(null, onRejected);
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise.prototype.then = function (onFulfilled, onRejected) {
|
|
|
+ var prom = new (this.constructor)(noop);
|
|
|
+
|
|
|
+ handle(this, new Handler(onFulfilled, onRejected, prom));
|
|
|
+ return prom;
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise.all = function (arr) {
|
|
|
+ var args = Array.prototype.slice.call(arr);
|
|
|
+
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
+ if (args.length === 0) return resolve([]);
|
|
|
+ var remaining = args.length;
|
|
|
+
|
|
|
+ function res(i, val) {
|
|
|
+ try {
|
|
|
+ if (val && (typeof val === 'object' || typeof val === 'function')) {
|
|
|
+ var then = val.then;
|
|
|
+ if (typeof then === 'function') {
|
|
|
+ then.call(val, function (val) {
|
|
|
+ res(i, val);
|
|
|
+ }, reject);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ args[i] = val;
|
|
|
+ if (--remaining === 0) {
|
|
|
+ resolve(args);
|
|
|
+ }
|
|
|
+ } catch (ex) {
|
|
|
+ reject(ex);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var i = 0; i < args.length; i++) {
|
|
|
+ res(i, args[i]);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise.resolve = function (value) {
|
|
|
+ if (value && typeof value === 'object' && value.constructor === Promise) {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ return new Promise(function (resolve) {
|
|
|
+ resolve(value);
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise.reject = function (value) {
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
+ reject(value);
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise.race = function (values) {
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
+ for (var i = 0, len = values.length; i < len; i++) {
|
|
|
+ values[i].then(resolve, reject);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ // Use polyfill for setImmediate for performance gains
|
|
|
+ Promise._immediateFn = (typeof setImmediate === 'function' && function (fn) { setImmediate(fn); }) ||
|
|
|
+ function (fn) {
|
|
|
+ setTimeoutFunc(fn, 0);
|
|
|
+ };
|
|
|
+
|
|
|
+ Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) {
|
|
|
+ if (typeof console !== 'undefined' && console) {
|
|
|
+ console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Set the immediate function to execute callbacks
|
|
|
+ * @param fn {function} Function to execute
|
|
|
+ * @deprecated
|
|
|
+ */
|
|
|
+ Promise._setImmediateFn = function _setImmediateFn(fn) {
|
|
|
+ Promise._immediateFn = fn;
|
|
|
+ };
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Change the function to execute on unhandled rejection
|
|
|
+ * @param {function} fn Function to execute on unhandled rejection
|
|
|
+ * @deprecated
|
|
|
+ */
|
|
|
+ Promise._setUnhandledRejectionFn = function _setUnhandledRejectionFn(fn) {
|
|
|
+ Promise._unhandledRejectionFn = fn;
|
|
|
+ };
|
|
|
+
|
|
|
+ if (typeof module !== 'undefined' && module.exports) {
|
|
|
+ module.exports = Promise;
|
|
|
+ } else if (!root.Promise) {
|
|
|
+ root.Promise = Promise;
|
|
|
+ }
|
|
|
+
|
|
|
+})(this);
|
|
|
+
|
|
|
+},{}],5:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
+
|
|
|
+var _mejs = _dereq_(7);
|
|
|
+
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
+
|
|
|
+var _en = _dereq_(15);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+var i18n = { lang: 'en', en: _en.EN };
|
|
|
|
|
|
- var format = options.currentTimeFormat,
|
|
|
- hours = Math.floor(time / 3600) % 24,
|
|
|
- minutes = Math.floor(time / 60) % 60,
|
|
|
- seconds = Math.floor(time % 60),
|
|
|
- frames = Math.floor(((time % 1)*fps).toFixed(3));
|
|
|
- lis = [
|
|
|
- [frames, 'f'],
|
|
|
- [seconds, 's'],
|
|
|
- [minutes, 'm'],
|
|
|
- [hours, 'h']
|
|
|
- ];
|
|
|
+i18n.language = function () {
|
|
|
+ for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
|
+ args[_key] = arguments[_key];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (args !== null && args !== undefined && args.length) {
|
|
|
|
|
|
- var res = format;
|
|
|
- for (i=0,len=lis.length; i < len; i++) {
|
|
|
- res = res.replace(lis[i][1]+lis[i][1], this.twoDigitsString(lis[i][0]));
|
|
|
- res = res.replace(lis[i][1], lis[i][0]);
|
|
|
+ if (typeof args[0] !== 'string') {
|
|
|
+ throw new TypeError('Language code must be a string value');
|
|
|
}
|
|
|
- return res;
|
|
|
- },
|
|
|
-
|
|
|
- timeCodeToSeconds: function(hh_mm_ss_ff, forceHours, showFrameCount, fps){
|
|
|
- if (typeof showFrameCount == 'undefined') {
|
|
|
- showFrameCount=false;
|
|
|
- } else if(typeof fps == 'undefined') {
|
|
|
- fps = 25;
|
|
|
- }
|
|
|
-
|
|
|
- var tc_array = hh_mm_ss_ff.split(":"),
|
|
|
- tc_hh = parseInt(tc_array[0], 10),
|
|
|
- tc_mm = parseInt(tc_array[1], 10),
|
|
|
- tc_ss = parseInt(tc_array[2], 10),
|
|
|
- tc_ff = 0,
|
|
|
- tc_in_seconds = 0;
|
|
|
-
|
|
|
- if (showFrameCount) {
|
|
|
- tc_ff = parseInt(tc_array[3])/fps;
|
|
|
+
|
|
|
+ if (!/^[a-z]{2}(\-[a-z]{2})?$/i.test(args[0])) {
|
|
|
+ throw new TypeError('Language code must have format `xx` or `xx-xx`');
|
|
|
}
|
|
|
-
|
|
|
- tc_in_seconds = ( tc_hh * 3600 ) + ( tc_mm * 60 ) + tc_ss + tc_ff;
|
|
|
-
|
|
|
- return tc_in_seconds;
|
|
|
- },
|
|
|
-
|
|
|
|
|
|
- convertSMPTEtoSeconds: function (SMPTE) {
|
|
|
- if (typeof SMPTE != 'string')
|
|
|
- return false;
|
|
|
+ i18n.lang = args[0];
|
|
|
|
|
|
- SMPTE = SMPTE.replace(',', '.');
|
|
|
-
|
|
|
- var secs = 0,
|
|
|
- decimalLen = (SMPTE.indexOf('.') != -1) ? SMPTE.split('.')[1].length : 0,
|
|
|
- multiplier = 1;
|
|
|
-
|
|
|
- SMPTE = SMPTE.split(':').reverse();
|
|
|
-
|
|
|
- for (var i = 0; i < SMPTE.length; i++) {
|
|
|
- multiplier = 1;
|
|
|
- if (i > 0) {
|
|
|
- multiplier = Math.pow(60, i);
|
|
|
- }
|
|
|
- secs += Number(SMPTE[i]) * multiplier;
|
|
|
- }
|
|
|
- return Number(secs.toFixed(decimalLen));
|
|
|
- },
|
|
|
-
|
|
|
- /* borrowed from SWFObject: http://code.google.com/p/swfobject/source/browse/trunk/swfobject/src/swfobject.js#474 */
|
|
|
- removeSwf: function(id) {
|
|
|
- var obj = document.getElementById(id);
|
|
|
- if (obj && /object|embed/i.test(obj.nodeName)) {
|
|
|
- if (mejs.MediaFeatures.isIE) {
|
|
|
- obj.style.display = "none";
|
|
|
- (function(){
|
|
|
- if (obj.readyState == 4) {
|
|
|
- mejs.Utility.removeObjectInIE(id);
|
|
|
- } else {
|
|
|
- setTimeout(arguments.callee, 10);
|
|
|
- }
|
|
|
- })();
|
|
|
- } else {
|
|
|
- obj.parentNode.removeChild(obj);
|
|
|
- }
|
|
|
+ if (i18n[args[0]] === undefined) {
|
|
|
+ args[1] = args[1] !== null && args[1] !== undefined && _typeof(args[1]) === 'object' ? args[1] : {};
|
|
|
+ i18n[args[0]] = !(0, _general.isObjectEmpty)(args[1]) ? args[1] : _en.EN;
|
|
|
+ } else if (args[1] !== null && args[1] !== undefined && _typeof(args[1]) === 'object') {
|
|
|
+ i18n[args[0]] = args[1];
|
|
|
}
|
|
|
- },
|
|
|
- removeObjectInIE: function(id) {
|
|
|
- var obj = document.getElementById(id);
|
|
|
- if (obj) {
|
|
|
- for (var i in obj) {
|
|
|
- if (typeof obj[i] == "function") {
|
|
|
- obj[i] = null;
|
|
|
- }
|
|
|
- }
|
|
|
- obj.parentNode.removeChild(obj);
|
|
|
- }
|
|
|
- },
|
|
|
- determineScheme: function(url) {
|
|
|
- if (url && url.indexOf("://") != -1) {
|
|
|
- return url.substr(0, url.indexOf("://")+3);
|
|
|
- }
|
|
|
- return "//"; // let user agent figure this out
|
|
|
- },
|
|
|
-
|
|
|
- // taken from underscore
|
|
|
- debounce: function(func, wait, immediate) {
|
|
|
- var timeout;
|
|
|
- return function() {
|
|
|
- var context = this, args = arguments;
|
|
|
- var later = function() {
|
|
|
- timeout = null;
|
|
|
- if (!immediate) func.apply(context, args);
|
|
|
- };
|
|
|
- var callNow = immediate && !timeout;
|
|
|
- clearTimeout(timeout);
|
|
|
- timeout = setTimeout(later, wait);
|
|
|
- if (callNow) func.apply(context, args);
|
|
|
- };
|
|
|
- },
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns true if targetNode appears after sourceNode in the dom.
|
|
|
- * @param {HTMLElement} sourceNode - the source node for comparison
|
|
|
- * @param {HTMLElement} targetNode - the node to compare against sourceNode
|
|
|
- */
|
|
|
- isNodeAfter: function(sourceNode, targetNode) {
|
|
|
- return !!(
|
|
|
- sourceNode &&
|
|
|
- targetNode &&
|
|
|
- typeof sourceNode.compareDocumentPosition === 'function' &&
|
|
|
- sourceNode.compareDocumentPosition(targetNode) & Node.DOCUMENT_POSITION_PRECEDING
|
|
|
- );
|
|
|
}
|
|
|
+
|
|
|
+ return i18n.lang;
|
|
|
};
|
|
|
|
|
|
+i18n.t = function (message) {
|
|
|
+ var pluralParam = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
|
|
|
|
-// Core detector, plugins are added below
|
|
|
-mejs.PluginDetector = {
|
|
|
|
|
|
- // main public function to test a plug version number PluginDetector.hasPluginVersion('flash',[9,0,125]);
|
|
|
- hasPluginVersion: function(plugin, v) {
|
|
|
- var pv = this.plugins[plugin];
|
|
|
- v[1] = v[1] || 0;
|
|
|
- v[2] = v[2] || 0;
|
|
|
- return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
|
|
|
- },
|
|
|
+ if (typeof message === 'string' && message.length) {
|
|
|
|
|
|
- // cached values
|
|
|
- nav: window.navigator,
|
|
|
- ua: window.navigator.userAgent.toLowerCase(),
|
|
|
+ var str = void 0,
|
|
|
+ pluralForm = void 0;
|
|
|
|
|
|
- // stored version numbers
|
|
|
- plugins: [],
|
|
|
+ var language = i18n.language();
|
|
|
|
|
|
- // runs detectPlugin() and stores the version number
|
|
|
- addPlugin: function(p, pluginName, mimeType, activeX, axDetect) {
|
|
|
- this.plugins[p] = this.detectPlugin(pluginName, mimeType, activeX, axDetect);
|
|
|
- },
|
|
|
+ var _plural = function _plural(input, number, form) {
|
|
|
+
|
|
|
+ if ((typeof input === 'undefined' ? 'undefined' : _typeof(input)) !== 'object' || typeof number !== 'number' || typeof form !== 'number') {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
|
|
|
- // get the version number from the mimetype (all but IE) or ActiveX (IE)
|
|
|
- detectPlugin: function(pluginName, mimeType, activeX, axDetect) {
|
|
|
+ var _pluralForms = function () {
|
|
|
+ return [function () {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ }, function () {
|
|
|
+ return (arguments.length <= 0 ? undefined : arguments[0]) === 1 ? arguments.length <= 1 ? undefined : arguments[1] : arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ }, function () {
|
|
|
+ return (arguments.length <= 0 ? undefined : arguments[0]) === 0 || (arguments.length <= 0 ? undefined : arguments[0]) === 1 ? arguments.length <= 1 ? undefined : arguments[1] : arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 === 1 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 !== 11) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) !== 0) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1 || (arguments.length <= 0 ? undefined : arguments[0]) === 11) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 2 || (arguments.length <= 0 ? undefined : arguments[0]) === 12) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) > 2 && (arguments.length <= 0 ? undefined : arguments[0]) < 20) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 0 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 > 0 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 < 20) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 === 1 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 !== 11) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 >= 2 && ((arguments.length <= 0 ? undefined : arguments[0]) % 100 < 10 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 20)) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return [3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 === 1 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 !== 11) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 >= 2 && (arguments.length <= 0 ? undefined : arguments[0]) % 10 <= 4 && ((arguments.length <= 0 ? undefined : arguments[0]) % 100 < 10 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 20)) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) >= 2 && (arguments.length <= 0 ? undefined : arguments[0]) <= 4) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 >= 2 && (arguments.length <= 0 ? undefined : arguments[0]) % 10 <= 4 && ((arguments.length <= 0 ? undefined : arguments[0]) % 100 < 10 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 20)) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 === 1) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 === 2) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 === 3 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 === 4) {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 2) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) > 2 && (arguments.length <= 0 ? undefined : arguments[0]) < 7) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) > 6 && (arguments.length <= 0 ? undefined : arguments[0]) < 11) {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 5 ? undefined : arguments[5];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 0) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 2) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 3 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 <= 10) {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 11) {
|
|
|
+ return arguments.length <= 5 ? undefined : arguments[5];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 6 ? undefined : arguments[6];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 0 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 > 1 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 < 11) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 100 > 10 && (arguments.length <= 0 ? undefined : arguments[0]) % 100 < 20) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 === 2) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ return (arguments.length <= 0 ? undefined : arguments[0]) !== 11 && (arguments.length <= 0 ? undefined : arguments[0]) % 10 === 1 ? arguments.length <= 1 ? undefined : arguments[1] : arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) % 10 >= 2 && (arguments.length <= 0 ? undefined : arguments[0]) % 10 <= 4 && ((arguments.length <= 0 ? undefined : arguments[0]) % 100 < 10 || (arguments.length <= 0 ? undefined : arguments[0]) % 100 >= 20)) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 2) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) !== 8 && (arguments.length <= 0 ? undefined : arguments[0]) !== 11) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ return (arguments.length <= 0 ? undefined : arguments[0]) === 0 ? arguments.length <= 1 ? undefined : arguments[1] : arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 2) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 3) {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 4 ? undefined : arguments[4];
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ if ((arguments.length <= 0 ? undefined : arguments[0]) === 0) {
|
|
|
+ return arguments.length <= 1 ? undefined : arguments[1];
|
|
|
+ } else if ((arguments.length <= 0 ? undefined : arguments[0]) === 1) {
|
|
|
+ return arguments.length <= 2 ? undefined : arguments[2];
|
|
|
+ } else {
|
|
|
+ return arguments.length <= 3 ? undefined : arguments[3];
|
|
|
+ }
|
|
|
+ }];
|
|
|
+ }();
|
|
|
|
|
|
- var version = [0,0,0],
|
|
|
- description,
|
|
|
- i,
|
|
|
- ax;
|
|
|
+ return _pluralForms[form].apply(null, [number].concat(input));
|
|
|
+ };
|
|
|
|
|
|
- // Firefox, Webkit, Opera
|
|
|
- if (typeof(this.nav.plugins) != 'undefined' && typeof this.nav.plugins[pluginName] == 'object') {
|
|
|
- description = this.nav.plugins[pluginName].description;
|
|
|
- if (description && !(typeof this.nav.mimeTypes != 'undefined' && this.nav.mimeTypes[mimeType] && !this.nav.mimeTypes[mimeType].enabledPlugin)) {
|
|
|
- version = description.replace(pluginName, '').replace(/^\s+/,'').replace(/\sr/gi,'.').split('.');
|
|
|
- for (i=0; i<version.length; i++) {
|
|
|
- version[i] = parseInt(version[i].match(/\d+/), 10);
|
|
|
- }
|
|
|
+ if (i18n[language] !== undefined) {
|
|
|
+ str = i18n[language][message];
|
|
|
+ if (pluralParam !== null && typeof pluralParam === 'number') {
|
|
|
+ pluralForm = i18n[language]['mejs.plural-form'];
|
|
|
+ str = _plural.apply(null, [str, pluralParam, pluralForm]);
|
|
|
}
|
|
|
- // Internet Explorer / ActiveX
|
|
|
- } else if (typeof(window.ActiveXObject) != 'undefined') {
|
|
|
- try {
|
|
|
- ax = new ActiveXObject(activeX);
|
|
|
- if (ax) {
|
|
|
- version = axDetect(ax);
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!str && i18n.en) {
|
|
|
+ str = i18n.en[message];
|
|
|
+ if (pluralParam !== null && typeof pluralParam === 'number') {
|
|
|
+ pluralForm = i18n.en['mejs.plural-form'];
|
|
|
+ str = _plural.apply(null, [str, pluralParam, pluralForm]);
|
|
|
}
|
|
|
- catch (e) { }
|
|
|
}
|
|
|
- return version;
|
|
|
- }
|
|
|
-};
|
|
|
|
|
|
-// Add Flash detection
|
|
|
-mejs.PluginDetector.addPlugin('flash','Shockwave Flash','application/x-shockwave-flash','ShockwaveFlash.ShockwaveFlash', function(ax) {
|
|
|
- // adapted from SWFObject
|
|
|
- var version = [],
|
|
|
- d = ax.GetVariable("$version");
|
|
|
- if (d) {
|
|
|
- d = d.split(" ")[1].split(",");
|
|
|
- version = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
|
|
- }
|
|
|
- return version;
|
|
|
-});
|
|
|
+ str = str || message;
|
|
|
|
|
|
-// Add Silverlight detection
|
|
|
-mejs.PluginDetector.addPlugin('silverlight','Silverlight Plug-In','application/x-silverlight-2','AgControl.AgControl', function (ax) {
|
|
|
- // Silverlight cannot report its version number to IE
|
|
|
- // but it does have a isVersionSupported function, so we have to loop through it to get a version number.
|
|
|
- // adapted from http://www.silverlightversion.com/
|
|
|
- var v = [0,0,0,0],
|
|
|
- loopMatch = function(ax, v, i, n) {
|
|
|
- while(ax.isVersionSupported(v[0]+ "."+ v[1] + "." + v[2] + "." + v[3])){
|
|
|
- v[i]+=n;
|
|
|
- }
|
|
|
- v[i] -= n;
|
|
|
- };
|
|
|
- loopMatch(ax, v, 0, 1);
|
|
|
- loopMatch(ax, v, 1, 1);
|
|
|
- loopMatch(ax, v, 2, 10000); // the third place in the version number is usually 5 digits (4.0.xxxxx)
|
|
|
- loopMatch(ax, v, 2, 1000);
|
|
|
- loopMatch(ax, v, 2, 100);
|
|
|
- loopMatch(ax, v, 2, 10);
|
|
|
- loopMatch(ax, v, 2, 1);
|
|
|
- loopMatch(ax, v, 3, 1);
|
|
|
-
|
|
|
- return v;
|
|
|
-});
|
|
|
-// add adobe acrobat
|
|
|
-/*
|
|
|
-PluginDetector.addPlugin('acrobat','Adobe Acrobat','application/pdf','AcroPDF.PDF', function (ax) {
|
|
|
- var version = [],
|
|
|
- d = ax.GetVersions().split(',')[0].split('=')[1].split('.');
|
|
|
+ if (pluralParam !== null && typeof pluralParam === 'number') {
|
|
|
+ str = str.replace('%1', pluralParam);
|
|
|
+ }
|
|
|
|
|
|
- if (d) {
|
|
|
- version = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
|
|
+ return (0, _general.escapeHTML)(str);
|
|
|
}
|
|
|
- return version;
|
|
|
-});
|
|
|
-*/
|
|
|
-// necessary detection (fixes for <IE9)
|
|
|
-mejs.MediaFeatures = {
|
|
|
- init: function() {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- d = document,
|
|
|
- nav = mejs.PluginDetector.nav,
|
|
|
- ua = mejs.PluginDetector.ua.toLowerCase(),
|
|
|
- i,
|
|
|
- v,
|
|
|
- html5Elements = ['source','track','audio','video'];
|
|
|
-
|
|
|
- // detect browsers (only the ones that have some kind of quirk we need to work around)
|
|
|
- t.isiPad = (ua.match(/ipad/i) !== null);
|
|
|
- t.isiPhone = (ua.match(/iphone/i) !== null);
|
|
|
- t.isiOS = t.isiPhone || t.isiPad;
|
|
|
- t.isAndroid = (ua.match(/android/i) !== null);
|
|
|
- t.isBustedAndroid = (ua.match(/android 2\.[12]/) !== null);
|
|
|
- t.isBustedNativeHTTPS = (location.protocol === 'https:' && (ua.match(/android [12]\./) !== null || ua.match(/macintosh.* version.* safari/) !== null));
|
|
|
- t.isIE = (nav.appName.toLowerCase().indexOf("microsoft") != -1 || nav.appName.toLowerCase().match(/trident/gi) !== null);
|
|
|
- t.isChrome = (ua.match(/chrome/gi) !== null);
|
|
|
- t.isChromium = (ua.match(/chromium/gi) !== null);
|
|
|
- t.isFirefox = (ua.match(/firefox/gi) !== null);
|
|
|
- t.isWebkit = (ua.match(/webkit/gi) !== null);
|
|
|
- t.isGecko = (ua.match(/gecko/gi) !== null) && !t.isWebkit && !t.isIE;
|
|
|
- t.isOpera = (ua.match(/opera/gi) !== null);
|
|
|
- t.hasTouch = ('ontouchstart' in window); // && window.ontouchstart != null); // this breaks iOS 7
|
|
|
-
|
|
|
- // Borrowed from `Modernizr.svgasimg`, sources:
|
|
|
- // - https://github.com/Modernizr/Modernizr/issues/687
|
|
|
- // - https://github.com/Modernizr/Modernizr/pull/1209/files
|
|
|
- t.svgAsImg = !!document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#Image', '1.1');
|
|
|
-
|
|
|
- // create HTML5 media elements for IE before 9, get a <video> element for fullscreen detection
|
|
|
- for (i=0; i<html5Elements.length; i++) {
|
|
|
- v = document.createElement(html5Elements[i]);
|
|
|
- }
|
|
|
-
|
|
|
- t.supportsMediaTag = (typeof v.canPlayType !== 'undefined' || t.isBustedAndroid);
|
|
|
-
|
|
|
- // Fix for IE9 on Windows 7N / Windows 7KN (Media Player not installer)
|
|
|
- try{
|
|
|
- v.canPlayType("video/mp4");
|
|
|
- }catch(e){
|
|
|
- t.supportsMediaTag = false;
|
|
|
- }
|
|
|
-
|
|
|
- t.supportsPointerEvents = (function() {
|
|
|
- // TAKEN FROM MODERNIZR
|
|
|
- var element = document.createElement('x'),
|
|
|
- documentElement = document.documentElement,
|
|
|
- getComputedStyle = window.getComputedStyle,
|
|
|
- supports;
|
|
|
- if(!('pointerEvents' in element.style)){
|
|
|
- return false;
|
|
|
- }
|
|
|
- element.style.pointerEvents = 'auto';
|
|
|
- element.style.pointerEvents = 'x';
|
|
|
- documentElement.appendChild(element);
|
|
|
- supports = getComputedStyle &&
|
|
|
- getComputedStyle(element, '').pointerEvents === 'auto';
|
|
|
- documentElement.removeChild(element);
|
|
|
- return !!supports;
|
|
|
- })();
|
|
|
|
|
|
+ return message;
|
|
|
+};
|
|
|
|
|
|
- // Older versions of Firefox can't move plugins around without it resetting,
|
|
|
- t.hasFirefoxPluginMovingProblem = false;
|
|
|
+_mejs2.default.i18n = i18n;
|
|
|
|
|
|
- // detect native JavaScript fullscreen (Safari/Firefox only, Chrome still fails)
|
|
|
+if (typeof mejsL10n !== 'undefined') {
|
|
|
+ _mejs2.default.i18n.language(mejsL10n.language, mejsL10n.strings);
|
|
|
+}
|
|
|
|
|
|
- // iOS
|
|
|
- t.hasiOSFullScreen = (typeof v.webkitEnterFullscreen !== 'undefined');
|
|
|
+exports.default = i18n;
|
|
|
|
|
|
- // W3C
|
|
|
- t.hasNativeFullscreen = (typeof v.requestFullscreen !== 'undefined');
|
|
|
+},{"15":15,"27":27,"7":7}],6:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- // webkit/firefox/IE11+
|
|
|
- t.hasWebkitNativeFullScreen = (typeof v.webkitRequestFullScreen !== 'undefined');
|
|
|
- t.hasMozNativeFullScreen = (typeof v.mozRequestFullScreen !== 'undefined');
|
|
|
- t.hasMsNativeFullScreen = (typeof v.msRequestFullscreen !== 'undefined');
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
|
|
|
- t.hasTrueNativeFullScreen = (t.hasWebkitNativeFullScreen || t.hasMozNativeFullScreen || t.hasMsNativeFullScreen);
|
|
|
- t.nativeFullScreenEnabled = t.hasTrueNativeFullScreen;
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
|
|
|
- // Enabled?
|
|
|
- if (t.hasMozNativeFullScreen) {
|
|
|
- t.nativeFullScreenEnabled = document.mozFullScreenEnabled;
|
|
|
- } else if (t.hasMsNativeFullScreen) {
|
|
|
- t.nativeFullScreenEnabled = document.msFullscreenEnabled;
|
|
|
- }
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- if (t.isChrome) {
|
|
|
- t.hasiOSFullScreen = false;
|
|
|
- }
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- if (t.hasTrueNativeFullScreen) {
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- t.fullScreenEventName = '';
|
|
|
- if (t.hasWebkitNativeFullScreen) {
|
|
|
- t.fullScreenEventName = 'webkitfullscreenchange';
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- } else if (t.hasMozNativeFullScreen) {
|
|
|
- t.fullScreenEventName = 'mozfullscreenchange';
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- } else if (t.hasMsNativeFullScreen) {
|
|
|
- t.fullScreenEventName = 'MSFullscreenChange';
|
|
|
- }
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- t.isFullScreen = function() {
|
|
|
- if (t.hasMozNativeFullScreen) {
|
|
|
- return d.mozFullScreen;
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- } else if (t.hasWebkitNativeFullScreen) {
|
|
|
- return d.webkitIsFullScreen;
|
|
|
+var _media2 = _dereq_(28);
|
|
|
|
|
|
- } else if (t.hasMsNativeFullScreen) {
|
|
|
- return d.msFullscreenElement !== null;
|
|
|
- }
|
|
|
- }
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- t.requestFullScreen = function(el) {
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- if (t.hasWebkitNativeFullScreen) {
|
|
|
- el.webkitRequestFullScreen();
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- } else if (t.hasMozNativeFullScreen) {
|
|
|
- el.mozRequestFullScreen();
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
|
|
- } else if (t.hasMsNativeFullScreen) {
|
|
|
- el.msRequestFullscreen();
|
|
|
+var MediaElement = function MediaElement(idOrNode, options, sources) {
|
|
|
+ var _this = this;
|
|
|
|
|
|
- }
|
|
|
- }
|
|
|
+ _classCallCheck(this, MediaElement);
|
|
|
|
|
|
- t.cancelFullScreen = function() {
|
|
|
- if (t.hasWebkitNativeFullScreen) {
|
|
|
- document.webkitCancelFullScreen();
|
|
|
+ var t = this;
|
|
|
|
|
|
- } else if (t.hasMozNativeFullScreen) {
|
|
|
- document.mozCancelFullScreen();
|
|
|
+ sources = Array.isArray(sources) ? sources : null;
|
|
|
|
|
|
- } else if (t.hasMsNativeFullScreen) {
|
|
|
- document.msExitFullscreen();
|
|
|
+ t.defaults = {
|
|
|
+ renderers: [],
|
|
|
|
|
|
- }
|
|
|
- }
|
|
|
+ fakeNodeName: 'mediaelementwrapper',
|
|
|
|
|
|
- }
|
|
|
+ pluginPath: 'build/',
|
|
|
|
|
|
+ shimScriptAccess: 'sameDomain'
|
|
|
+ };
|
|
|
|
|
|
- // OS X 10.5 can't do this even if it says it can :(
|
|
|
- if (t.hasiOSFullScreen && ua.match(/mac os x 10_5/i)) {
|
|
|
- t.hasNativeFullScreen = false;
|
|
|
- t.hasiOSFullScreen = false;
|
|
|
- }
|
|
|
+ options = Object.assign(t.defaults, options);
|
|
|
+
|
|
|
+ t.mediaElement = _document2.default.createElement(options.fakeNodeName);
|
|
|
+
|
|
|
+ var id = idOrNode,
|
|
|
+ error = false;
|
|
|
|
|
|
+ if (typeof idOrNode === 'string') {
|
|
|
+ t.mediaElement.originalNode = _document2.default.getElementById(idOrNode);
|
|
|
+ } else {
|
|
|
+ t.mediaElement.originalNode = idOrNode;
|
|
|
+ id = idOrNode.id;
|
|
|
}
|
|
|
-};
|
|
|
-mejs.MediaFeatures.init();
|
|
|
|
|
|
-/*
|
|
|
-extension methods to <video> or <audio> object to bring it into parity with PluginMediaElement (see below)
|
|
|
-*/
|
|
|
-mejs.HtmlMediaElement = {
|
|
|
- pluginType: 'native',
|
|
|
- isFullScreen: false,
|
|
|
+ if (t.mediaElement.originalNode === undefined || t.mediaElement.originalNode === null) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
- setCurrentTime: function (time) {
|
|
|
- this.currentTime = time;
|
|
|
- },
|
|
|
+ t.mediaElement.options = options;
|
|
|
+ id = id || 'mejs_' + Math.random().toString().slice(2);
|
|
|
|
|
|
- setMuted: function (muted) {
|
|
|
- this.muted = muted;
|
|
|
- },
|
|
|
+ t.mediaElement.originalNode.setAttribute('id', id + '_from_mejs');
|
|
|
|
|
|
- setVolume: function (volume) {
|
|
|
- this.volume = volume;
|
|
|
- },
|
|
|
+ var tagName = t.mediaElement.originalNode.tagName.toLowerCase();
|
|
|
+ if (['video', 'audio'].indexOf(tagName) > -1 && !t.mediaElement.originalNode.getAttribute('preload')) {
|
|
|
+ t.mediaElement.originalNode.setAttribute('preload', 'none');
|
|
|
+ }
|
|
|
|
|
|
- // for parity with the plugin versions
|
|
|
- stop: function () {
|
|
|
- this.pause();
|
|
|
- },
|
|
|
+ t.mediaElement.originalNode.parentNode.insertBefore(t.mediaElement, t.mediaElement.originalNode);
|
|
|
|
|
|
- // This can be a url string
|
|
|
- // or an array [{src:'file.mp4',type:'video/mp4'},{src:'file.webm',type:'video/webm'}]
|
|
|
- setSrc: function (url) {
|
|
|
-
|
|
|
- // Fix for IE9 which can't set .src when there are <source> elements. Awesome, right?
|
|
|
- var
|
|
|
- existingSources = this.getElementsByTagName('source');
|
|
|
- while (existingSources.length > 0){
|
|
|
- this.removeChild(existingSources[0]);
|
|
|
- }
|
|
|
-
|
|
|
- if (typeof url == 'string') {
|
|
|
- this.src = url;
|
|
|
- } else {
|
|
|
- var i, media;
|
|
|
+ t.mediaElement.appendChild(t.mediaElement.originalNode);
|
|
|
|
|
|
- for (i=0; i<url.length; i++) {
|
|
|
- media = url[i];
|
|
|
- if (this.canPlayType(media.type)) {
|
|
|
- this.src = media.src;
|
|
|
- break;
|
|
|
+ var processURL = function processURL(url, type) {
|
|
|
+ if (_window2.default.location.protocol === 'https:' && url.indexOf('http:') === 0 && _constants.IS_IOS && _mejs2.default.html5media.mediaTypes.indexOf(type) > -1) {
|
|
|
+ var xhr = new XMLHttpRequest();
|
|
|
+ xhr.onreadystatechange = function () {
|
|
|
+ if (this.readyState === 4 && this.status === 200) {
|
|
|
+ var _url = _window2.default.URL || _window2.default.webkitURL,
|
|
|
+ blobUrl = _url.createObjectURL(this.response);
|
|
|
+ t.mediaElement.originalNode.setAttribute('src', blobUrl);
|
|
|
+ return blobUrl;
|
|
|
}
|
|
|
- }
|
|
|
+ return url;
|
|
|
+ };
|
|
|
+ xhr.open('GET', url);
|
|
|
+ xhr.responseType = 'blob';
|
|
|
+ xhr.send();
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- setVideoSize: function (width, height) {
|
|
|
- this.width = width;
|
|
|
- this.height = height;
|
|
|
- }
|
|
|
-};
|
|
|
+ return url;
|
|
|
+ };
|
|
|
|
|
|
-/*
|
|
|
-Mimics the <video/audio> element by calling Flash's External Interface or Silverlights [ScriptableMember]
|
|
|
-*/
|
|
|
-mejs.PluginMediaElement = function (pluginid, pluginType, mediaUrl) {
|
|
|
- this.id = pluginid;
|
|
|
- this.pluginType = pluginType;
|
|
|
- this.src = mediaUrl;
|
|
|
- this.events = {};
|
|
|
- this.attributes = {};
|
|
|
-};
|
|
|
+ var mediaFiles = void 0;
|
|
|
|
|
|
-// JavaScript values and ExternalInterface methods that match HTML5 video properties methods
|
|
|
-// http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html
|
|
|
-// http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html
|
|
|
-mejs.PluginMediaElement.prototype = {
|
|
|
+ if (sources !== null) {
|
|
|
+ mediaFiles = sources;
|
|
|
+ } else if (t.mediaElement.originalNode !== null) {
|
|
|
|
|
|
- // special
|
|
|
- pluginElement: null,
|
|
|
- pluginType: '',
|
|
|
- isFullScreen: false,
|
|
|
+ mediaFiles = [];
|
|
|
|
|
|
- // not implemented :(
|
|
|
- playbackRate: -1,
|
|
|
- defaultPlaybackRate: -1,
|
|
|
- seekable: [],
|
|
|
- played: [],
|
|
|
+ switch (t.mediaElement.originalNode.nodeName.toLowerCase()) {
|
|
|
+ case 'iframe':
|
|
|
+ mediaFiles.push({
|
|
|
+ type: '',
|
|
|
+ src: t.mediaElement.originalNode.getAttribute('src')
|
|
|
+ });
|
|
|
+ break;
|
|
|
+ case 'audio':
|
|
|
+ case 'video':
|
|
|
+ var _sources = t.mediaElement.originalNode.children.length,
|
|
|
+ nodeSource = t.mediaElement.originalNode.getAttribute('src');
|
|
|
+
|
|
|
+ if (nodeSource) {
|
|
|
+ var node = t.mediaElement.originalNode,
|
|
|
+ type = (0, _media2.formatType)(nodeSource, node.getAttribute('type'));
|
|
|
+ mediaFiles.push({
|
|
|
+ type: type,
|
|
|
+ src: processURL(nodeSource, type)
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
- // HTML5 read-only properties
|
|
|
- paused: true,
|
|
|
- ended: false,
|
|
|
- seeking: false,
|
|
|
- duration: 0,
|
|
|
- error: null,
|
|
|
- tagName: '',
|
|
|
-
|
|
|
- // HTML5 get/set properties, but only set (updated by event handlers)
|
|
|
- muted: false,
|
|
|
- volume: 1,
|
|
|
- currentTime: 0,
|
|
|
-
|
|
|
- // HTML5 methods
|
|
|
- play: function () {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube' || this.pluginType == 'vimeo') {
|
|
|
- this.pluginApi.playVideo();
|
|
|
- } else {
|
|
|
- this.pluginApi.playMedia();
|
|
|
- }
|
|
|
- this.paused = false;
|
|
|
- }
|
|
|
- },
|
|
|
- load: function () {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube' || this.pluginType == 'vimeo') {
|
|
|
- } else {
|
|
|
- this.pluginApi.loadMedia();
|
|
|
- }
|
|
|
-
|
|
|
- this.paused = false;
|
|
|
- }
|
|
|
- },
|
|
|
- pause: function () {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube' || this.pluginType == 'vimeo') {
|
|
|
- if( this.pluginApi.getPlayerState() == 1 ) {
|
|
|
- this.pluginApi.pauseVideo();
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.pluginApi.pauseMedia();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- this.paused = true;
|
|
|
- }
|
|
|
- },
|
|
|
- stop: function () {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube' || this.pluginType == 'vimeo') {
|
|
|
- this.pluginApi.stopVideo();
|
|
|
- } else {
|
|
|
- this.pluginApi.stopMedia();
|
|
|
- }
|
|
|
- this.paused = true;
|
|
|
- }
|
|
|
- },
|
|
|
- canPlayType: function(type) {
|
|
|
- var i,
|
|
|
- j,
|
|
|
- pluginInfo,
|
|
|
- pluginVersions = mejs.plugins[this.pluginType];
|
|
|
-
|
|
|
- for (i=0; i<pluginVersions.length; i++) {
|
|
|
- pluginInfo = pluginVersions[i];
|
|
|
-
|
|
|
- // test if user has the correct plugin version
|
|
|
- if (mejs.PluginDetector.hasPluginVersion(this.pluginType, pluginInfo.version)) {
|
|
|
-
|
|
|
- // test for plugin playback types
|
|
|
- for (j=0; j<pluginInfo.types.length; j++) {
|
|
|
- // find plugin that can play the type
|
|
|
- if (type == pluginInfo.types[j]) {
|
|
|
- return 'probably';
|
|
|
+ for (var i = 0; i < _sources; i++) {
|
|
|
+ var n = t.mediaElement.originalNode.children[i];
|
|
|
+ if (n.tagName.toLowerCase() === 'source') {
|
|
|
+ var src = n.getAttribute('src'),
|
|
|
+ _type = (0, _media2.formatType)(src, n.getAttribute('type'));
|
|
|
+ mediaFiles.push({ type: _type, src: processURL(src, _type) });
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ break;
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- return '';
|
|
|
- },
|
|
|
-
|
|
|
- positionFullscreenButton: function(x,y,visibleAndAbove) {
|
|
|
- if (this.pluginApi != null && this.pluginApi.positionFullscreenButton) {
|
|
|
- this.pluginApi.positionFullscreenButton(Math.floor(x),Math.floor(y),visibleAndAbove);
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- hideFullscreenButton: function() {
|
|
|
- if (this.pluginApi != null && this.pluginApi.hideFullscreenButton) {
|
|
|
- this.pluginApi.hideFullscreenButton();
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
- // custom methods since not all JavaScript implementations support get/set
|
|
|
-
|
|
|
- // This can be a url string
|
|
|
- // or an array [{src:'file.mp4',type:'video/mp4'},{src:'file.webm',type:'video/webm'}]
|
|
|
- setSrc: function (url) {
|
|
|
- if (typeof url == 'string') {
|
|
|
- this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(url));
|
|
|
- this.src = mejs.Utility.absolutizeUrl(url);
|
|
|
- } else {
|
|
|
- var i, media;
|
|
|
+ t.mediaElement.id = id;
|
|
|
+ t.mediaElement.renderers = {};
|
|
|
+ t.mediaElement.events = {};
|
|
|
+ t.mediaElement.promises = [];
|
|
|
+ t.mediaElement.renderer = null;
|
|
|
+ t.mediaElement.rendererName = null;
|
|
|
|
|
|
- for (i=0; i<url.length; i++) {
|
|
|
- media = url[i];
|
|
|
- if (this.canPlayType(media.type)) {
|
|
|
- this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(media.src));
|
|
|
- this.src = mejs.Utility.absolutizeUrl(media.src);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ t.mediaElement.changeRenderer = function (rendererName, mediaFiles) {
|
|
|
|
|
|
- },
|
|
|
- setCurrentTime: function (time) {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube' || this.pluginType == 'vimeo') {
|
|
|
- this.pluginApi.seekTo(time);
|
|
|
- } else {
|
|
|
- this.pluginApi.setCurrentTime(time);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- this.currentTime = time;
|
|
|
- }
|
|
|
- },
|
|
|
- setVolume: function (volume) {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- // same on YouTube and MEjs
|
|
|
- if (this.pluginType == 'youtube') {
|
|
|
- this.pluginApi.setVolume(volume * 100);
|
|
|
- } else {
|
|
|
- this.pluginApi.setVolume(volume);
|
|
|
+ var t = _this,
|
|
|
+ media = Object.keys(mediaFiles[0]).length > 2 ? mediaFiles[0] : mediaFiles[0].src;
|
|
|
+
|
|
|
+ if (t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null && t.mediaElement.renderer.name === rendererName) {
|
|
|
+ t.mediaElement.renderer.pause();
|
|
|
+ if (t.mediaElement.renderer.stop) {
|
|
|
+ t.mediaElement.renderer.stop();
|
|
|
}
|
|
|
- this.volume = volume;
|
|
|
+ t.mediaElement.renderer.show();
|
|
|
+ t.mediaElement.renderer.setSrc(media);
|
|
|
+ return true;
|
|
|
}
|
|
|
- },
|
|
|
- setMuted: function (muted) {
|
|
|
- if (this.pluginApi != null) {
|
|
|
- if (this.pluginType == 'youtube') {
|
|
|
- if (muted) {
|
|
|
- this.pluginApi.mute();
|
|
|
- } else {
|
|
|
- this.pluginApi.unMute();
|
|
|
- }
|
|
|
- this.muted = muted;
|
|
|
- this.dispatchEvent({type:'volumechange'});
|
|
|
- } else {
|
|
|
- this.pluginApi.setMuted(muted);
|
|
|
+
|
|
|
+ if (t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null) {
|
|
|
+ t.mediaElement.renderer.pause();
|
|
|
+ if (t.mediaElement.renderer.stop) {
|
|
|
+ t.mediaElement.renderer.stop();
|
|
|
}
|
|
|
- this.muted = muted;
|
|
|
+ t.mediaElement.renderer.hide();
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- // additional non-HTML5 methods
|
|
|
- setVideoSize: function (width, height) {
|
|
|
-
|
|
|
- //if (this.pluginType == 'flash' || this.pluginType == 'silverlight') {
|
|
|
- if (this.pluginElement && this.pluginElement.style) {
|
|
|
- this.pluginElement.style.width = width + 'px';
|
|
|
- this.pluginElement.style.height = height + 'px';
|
|
|
- }
|
|
|
- if (this.pluginApi != null && this.pluginApi.setVideoSize) {
|
|
|
- this.pluginApi.setVideoSize(width, height);
|
|
|
- }
|
|
|
- //}
|
|
|
- },
|
|
|
+ var newRenderer = t.mediaElement.renderers[rendererName],
|
|
|
+ newRendererType = null;
|
|
|
|
|
|
- setFullscreen: function (fullscreen) {
|
|
|
- if (this.pluginApi != null && this.pluginApi.setFullscreen) {
|
|
|
- this.pluginApi.setFullscreen(fullscreen);
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- enterFullScreen: function() {
|
|
|
- if (this.pluginApi != null && this.pluginApi.setFullscreen) {
|
|
|
- this.setFullscreen(true);
|
|
|
- }
|
|
|
-
|
|
|
- },
|
|
|
-
|
|
|
- exitFullScreen: function() {
|
|
|
- if (this.pluginApi != null && this.pluginApi.setFullscreen) {
|
|
|
- this.setFullscreen(false);
|
|
|
+ if (newRenderer !== undefined && newRenderer !== null) {
|
|
|
+ newRenderer.show();
|
|
|
+ newRenderer.setSrc(media);
|
|
|
+ t.mediaElement.renderer = newRenderer;
|
|
|
+ t.mediaElement.rendererName = rendererName;
|
|
|
+ return true;
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- // start: fake events
|
|
|
- addEventListener: function (eventName, callback, bubble) {
|
|
|
- this.events[eventName] = this.events[eventName] || [];
|
|
|
- this.events[eventName].push(callback);
|
|
|
- },
|
|
|
- removeEventListener: function (eventName, callback) {
|
|
|
- if (!eventName) { this.events = {}; return true; }
|
|
|
- var callbacks = this.events[eventName];
|
|
|
- if (!callbacks) return true;
|
|
|
- if (!callback) { this.events[eventName] = []; return true; }
|
|
|
- for (var i = 0; i < callbacks.length; i++) {
|
|
|
- if (callbacks[i] === callback) {
|
|
|
- this.events[eventName].splice(i, 1);
|
|
|
+ var rendererArray = t.mediaElement.options.renderers.length ? t.mediaElement.options.renderers : _renderer.renderer.order;
|
|
|
+
|
|
|
+ for (var _i = 0, total = rendererArray.length; _i < total; _i++) {
|
|
|
+ var index = rendererArray[_i];
|
|
|
+
|
|
|
+ if (index === rendererName) {
|
|
|
+ var rendererList = _renderer.renderer.renderers;
|
|
|
+ newRendererType = rendererList[index];
|
|
|
+
|
|
|
+ var renderOptions = Object.assign(newRendererType.options, t.mediaElement.options);
|
|
|
+ newRenderer = newRendererType.create(t.mediaElement, renderOptions, mediaFiles);
|
|
|
+ newRenderer.name = rendererName;
|
|
|
+
|
|
|
+ t.mediaElement.renderers[newRendererType.name] = newRenderer;
|
|
|
+ t.mediaElement.renderer = newRenderer;
|
|
|
+ t.mediaElement.rendererName = rendererName;
|
|
|
+ newRenderer.show();
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
return false;
|
|
|
- },
|
|
|
- dispatchEvent: function (event) {
|
|
|
- var i,
|
|
|
- args,
|
|
|
- callbacks = this.events[event.type];
|
|
|
+ };
|
|
|
|
|
|
- if (callbacks) {
|
|
|
- for (i = 0; i < callbacks.length; i++) {
|
|
|
- callbacks[i].apply(this, [event]);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- // end: fake events
|
|
|
-
|
|
|
- // fake DOM attribute methods
|
|
|
- hasAttribute: function(name){
|
|
|
- return (name in this.attributes);
|
|
|
- },
|
|
|
- removeAttribute: function(name){
|
|
|
- delete this.attributes[name];
|
|
|
- },
|
|
|
- getAttribute: function(name){
|
|
|
- if (this.hasAttribute(name)) {
|
|
|
- return this.attributes[name];
|
|
|
+ t.mediaElement.setSize = function (width, height) {
|
|
|
+ if (t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null) {
|
|
|
+ t.mediaElement.renderer.setSize(width, height);
|
|
|
}
|
|
|
- return null;
|
|
|
- },
|
|
|
- setAttribute: function(name, value){
|
|
|
- this.attributes[name] = value;
|
|
|
- },
|
|
|
+ };
|
|
|
|
|
|
- remove: function() {
|
|
|
- mejs.Utility.removeSwf(this.pluginElement.id);
|
|
|
- }
|
|
|
-};
|
|
|
+ t.mediaElement.generateError = function (message, urlList) {
|
|
|
+ message = message || '';
|
|
|
+ urlList = Array.isArray(urlList) ? urlList : [];
|
|
|
+ var event = (0, _general.createEvent)('error', t.mediaElement);
|
|
|
+ event.message = message;
|
|
|
+ event.urls = urlList;
|
|
|
+ t.mediaElement.dispatchEvent(event);
|
|
|
+ error = true;
|
|
|
+ };
|
|
|
|
|
|
-/*
|
|
|
-Default options
|
|
|
-*/
|
|
|
-mejs.MediaElementDefaults = {
|
|
|
- // allows testing on HTML5, flash, silverlight
|
|
|
- // auto: attempts to detect what the browser can do
|
|
|
- // auto_plugin: prefer plugins and then attempt native HTML5
|
|
|
- // native: forces HTML5 playback
|
|
|
- // shim: disallows HTML5, will attempt either Flash or Silverlight
|
|
|
- // none: forces fallback view
|
|
|
- mode: 'auto',
|
|
|
- // remove or reorder to change plugin priority and availability
|
|
|
- plugins: ['flash','silverlight','youtube','vimeo'],
|
|
|
- // shows debug errors on screen
|
|
|
- enablePluginDebug: false,
|
|
|
- // use plugin for browsers that have trouble with Basic Authentication on HTTPS sites
|
|
|
- httpsBasicAuthSite: false,
|
|
|
- // overrides the type specified, useful for dynamic instantiation
|
|
|
- type: '',
|
|
|
- // path to Flash and Silverlight plugins
|
|
|
- pluginPath: mejs.Utility.getScriptPath(['mediaelement.js','mediaelement.min.js','mediaelement-and-player.js','mediaelement-and-player.min.js']),
|
|
|
- // name of flash file
|
|
|
- flashName: 'flashmediaelement.swf',
|
|
|
- // streamer for RTMP streaming
|
|
|
- flashStreamer: '',
|
|
|
- // set to 'always' for CDN version
|
|
|
- flashScriptAccess: 'sameDomain',
|
|
|
- // turns on the smoothing filter in Flash
|
|
|
- enablePluginSmoothing: false,
|
|
|
- // enabled pseudo-streaming (seek) on .mp4 files
|
|
|
- enablePseudoStreaming: false,
|
|
|
- // start query parameter sent to server for pseudo-streaming
|
|
|
- pseudoStreamingStartQueryParam: 'start',
|
|
|
- // name of silverlight file
|
|
|
- silverlightName: 'silverlightmediaelement.xap',
|
|
|
- // default if the <video width> is not specified
|
|
|
- defaultVideoWidth: 480,
|
|
|
- // default if the <video height> is not specified
|
|
|
- defaultVideoHeight: 270,
|
|
|
- // overrides <video width>
|
|
|
- pluginWidth: -1,
|
|
|
- // overrides <video height>
|
|
|
- pluginHeight: -1,
|
|
|
- // additional plugin variables in 'key=value' form
|
|
|
- pluginVars: [],
|
|
|
- // rate in milliseconds for Flash and Silverlight to fire the timeupdate event
|
|
|
- // larger number is less accurate, but less strain on plugin->JavaScript bridge
|
|
|
- timerRate: 250,
|
|
|
- // initial volume for player
|
|
|
- startVolume: 0.8,
|
|
|
- // custom error message in case media cannot be played; otherwise, Download File
|
|
|
- // link will be displayed
|
|
|
- customError: "",
|
|
|
- success: function () { },
|
|
|
- error: function () { }
|
|
|
-};
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ methods = _mejs2.default.html5media.methods,
|
|
|
+ addProperty = function addProperty(obj, name, onGet, onSet) {
|
|
|
+ var oldValue = obj[name];
|
|
|
+ var getFn = function getFn() {
|
|
|
+ return onGet.apply(obj, [oldValue]);
|
|
|
+ },
|
|
|
+ setFn = function setFn(newValue) {
|
|
|
+ oldValue = onSet.apply(obj, [newValue]);
|
|
|
+ return oldValue;
|
|
|
+ };
|
|
|
|
|
|
-/*
|
|
|
-Determines if a browser supports the <video> or <audio> element
|
|
|
-and returns either the native element or a Flash/Silverlight version that
|
|
|
-mimics HTML5 MediaElement
|
|
|
-*/
|
|
|
-mejs.MediaElement = function (el, o) {
|
|
|
- return mejs.HtmlMediaElementShim.create(el,o);
|
|
|
-};
|
|
|
+ Object.defineProperty(obj, name, {
|
|
|
+ get: getFn,
|
|
|
+ set: setFn
|
|
|
+ });
|
|
|
+ },
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ if (propName !== 'src') {
|
|
|
|
|
|
-mejs.HtmlMediaElementShim = {
|
|
|
-
|
|
|
- create: function(el, o) {
|
|
|
- var
|
|
|
- options = {},
|
|
|
- htmlMediaElement = (typeof(el) == 'string') ? document.getElementById(el) : el,
|
|
|
- tagName = htmlMediaElement.tagName.toLowerCase(),
|
|
|
- isMediaTag = (tagName === 'audio' || tagName === 'video'),
|
|
|
- src = (isMediaTag) ? htmlMediaElement.getAttribute('src') : htmlMediaElement.getAttribute('href'),
|
|
|
- poster = htmlMediaElement.getAttribute('poster'),
|
|
|
- autoplay = htmlMediaElement.getAttribute('autoplay'),
|
|
|
- preload = htmlMediaElement.getAttribute('preload'),
|
|
|
- controls = htmlMediaElement.getAttribute('controls'),
|
|
|
- playback,
|
|
|
- prop;
|
|
|
-
|
|
|
- // extend options
|
|
|
- for (prop in mejs.MediaElementDefaults) {
|
|
|
- options[prop] = mejs.MediaElementDefaults[prop];
|
|
|
- }
|
|
|
- for (prop in o) {
|
|
|
- options[prop] = o[prop];
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- // clean up attributes
|
|
|
- src = (typeof src == 'undefined' || src === null || src == '') ? null : src;
|
|
|
- poster = (typeof poster == 'undefined' || poster === null) ? '' : poster;
|
|
|
- preload = (typeof preload == 'undefined' || preload === null || preload === 'false') ? 'none' : preload;
|
|
|
- autoplay = !(typeof autoplay == 'undefined' || autoplay === null || autoplay === 'false');
|
|
|
- controls = !(typeof controls == 'undefined' || controls === null || controls === 'false');
|
|
|
-
|
|
|
- // test for HTML5 and plugin capabilities
|
|
|
- playback = this.determinePlayback(htmlMediaElement, options, mejs.MediaFeatures.supportsMediaTag, isMediaTag, src);
|
|
|
- playback.url = (playback.url !== null) ? mejs.Utility.absolutizeUrl(playback.url) : '';
|
|
|
- playback.scheme = mejs.Utility.determineScheme(playback.url);
|
|
|
-
|
|
|
- if (playback.method == 'native') {
|
|
|
- // second fix for android
|
|
|
- if (mejs.MediaFeatures.isBustedAndroid) {
|
|
|
- htmlMediaElement.src = playback.url;
|
|
|
- htmlMediaElement.addEventListener('click', function() {
|
|
|
- htmlMediaElement.play();
|
|
|
- }, false);
|
|
|
- }
|
|
|
-
|
|
|
- // add methods to native HTMLMediaElement
|
|
|
- return this.updateNative(playback, options, autoplay, preload);
|
|
|
- } else if (playback.method !== '') {
|
|
|
- // create plugin to mimic HTMLMediaElement
|
|
|
-
|
|
|
- return this.createPlugin( playback, options, poster, autoplay, preload, controls);
|
|
|
- } else {
|
|
|
- // boo, no HTML5, no Flash, no Silverlight.
|
|
|
- this.createErrorMessage( playback, options, poster );
|
|
|
-
|
|
|
- return this;
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1),
|
|
|
+ getFn = function getFn() {
|
|
|
+ return t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null && typeof t.mediaElement.renderer['get' + capName] === 'function' ? t.mediaElement.renderer['get' + capName]() : null;
|
|
|
+ },
|
|
|
+ setFn = function setFn(value) {
|
|
|
+ if (t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null && typeof t.mediaElement.renderer['set' + capName] === 'function') {
|
|
|
+ t.mediaElement.renderer['set' + capName](value);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ addProperty(t.mediaElement, propName, getFn, setFn);
|
|
|
+ t.mediaElement['get' + capName] = getFn;
|
|
|
+ t.mediaElement['set' + capName] = setFn;
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
- determinePlayback: function(htmlMediaElement, options, supportsMediaTag, isMediaTag, src) {
|
|
|
- var
|
|
|
- mediaFiles = [],
|
|
|
- i,
|
|
|
- j,
|
|
|
- k,
|
|
|
- l,
|
|
|
- n,
|
|
|
- type,
|
|
|
- result = { method: '', url: '', htmlMediaElement: htmlMediaElement, isVideo: (htmlMediaElement.tagName.toLowerCase() !== 'audio'), scheme: ''},
|
|
|
- pluginName,
|
|
|
- pluginVersions,
|
|
|
- pluginInfo,
|
|
|
- dummy,
|
|
|
- media;
|
|
|
-
|
|
|
- // STEP 1: Get URL and type from <video src> or <source src>
|
|
|
-
|
|
|
- // supplied type overrides <video type> and <source type>
|
|
|
- if (typeof options.type != 'undefined' && options.type !== '') {
|
|
|
-
|
|
|
- // accept either string or array of types
|
|
|
- if (typeof options.type == 'string') {
|
|
|
- mediaFiles.push({type:options.type, url:src});
|
|
|
- } else {
|
|
|
-
|
|
|
- for (i=0; i<options.type.length; i++) {
|
|
|
- mediaFiles.push({type:options.type[i], url:src});
|
|
|
- }
|
|
|
- }
|
|
|
+ getSrc = function getSrc() {
|
|
|
+ return t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null ? t.mediaElement.renderer.getSrc() : null;
|
|
|
+ },
|
|
|
+ setSrc = function setSrc(value) {
|
|
|
+ var mediaFiles = [];
|
|
|
|
|
|
- // test for src attribute first
|
|
|
- } else if (src !== null) {
|
|
|
- type = this.formatType(src, htmlMediaElement.getAttribute('type'));
|
|
|
- mediaFiles.push({type:type, url:src});
|
|
|
+ if (typeof value === 'string') {
|
|
|
+ mediaFiles.push({
|
|
|
+ src: value,
|
|
|
+ type: value ? (0, _media2.getTypeFromFile)(value) : ''
|
|
|
+ });
|
|
|
+ } else if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && value.src !== undefined) {
|
|
|
+ var _src = (0, _media2.absolutizeUrl)(value.src),
|
|
|
+ _type2 = value.type,
|
|
|
+ media = Object.assign(value, {
|
|
|
+ src: _src,
|
|
|
+ type: (_type2 === '' || _type2 === null || _type2 === undefined) && _src ? (0, _media2.getTypeFromFile)(_src) : _type2
|
|
|
+ });
|
|
|
+ mediaFiles.push(media);
|
|
|
+ } else if (Array.isArray(value)) {
|
|
|
+ for (var _i2 = 0, total = value.length; _i2 < total; _i2++) {
|
|
|
+
|
|
|
+ var _src2 = (0, _media2.absolutizeUrl)(value[_i2].src),
|
|
|
+ _type3 = value[_i2].type,
|
|
|
+ _media = Object.assign(value[_i2], {
|
|
|
+ src: _src2,
|
|
|
+ type: (_type3 === '' || _type3 === null || _type3 === undefined) && _src2 ? (0, _media2.getTypeFromFile)(_src2) : _type3
|
|
|
+ });
|
|
|
|
|
|
- // then test for <source> elements
|
|
|
- } else {
|
|
|
- // test <source> types to see if they are usable
|
|
|
- for (i = 0; i < htmlMediaElement.childNodes.length; i++) {
|
|
|
- n = htmlMediaElement.childNodes[i];
|
|
|
- if (n.nodeType == 1 && n.tagName.toLowerCase() == 'source') {
|
|
|
- src = n.getAttribute('src');
|
|
|
- type = this.formatType(src, n.getAttribute('type'));
|
|
|
- media = n.getAttribute('media');
|
|
|
-
|
|
|
- if (!media || !window.matchMedia || (window.matchMedia && window.matchMedia(media).matches)) {
|
|
|
- mediaFiles.push({type:type, url:src});
|
|
|
- }
|
|
|
- }
|
|
|
+ mediaFiles.push(_media);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- // in the case of dynamicly created players
|
|
|
- // check for audio types
|
|
|
- if (!isMediaTag && mediaFiles.length > 0 && mediaFiles[0].url !== null && this.getTypeFromFile(mediaFiles[0].url).indexOf('audio') > -1) {
|
|
|
- result.isVideo = false;
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
- // STEP 2: Test for playback method
|
|
|
-
|
|
|
- // special case for Android which sadly doesn't implement the canPlayType function (always returns '')
|
|
|
- if (result.isVideo && mejs.MediaFeatures.isBustedAndroid) {
|
|
|
- htmlMediaElement.canPlayType = function(type) {
|
|
|
- return (type.match(/video\/(mp4|m4v)/gi) !== null) ? 'maybe' : '';
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- // special case for Chromium to specify natively supported video codecs (i.e. WebM and Theora)
|
|
|
- if (result.isVideo && mejs.MediaFeatures.isChromium) {
|
|
|
- htmlMediaElement.canPlayType = function(type) {
|
|
|
- return (type.match(/video\/(webm|ogv|ogg)/gi) !== null) ? 'maybe' : '';
|
|
|
- };
|
|
|
+ var renderInfo = _renderer.renderer.select(mediaFiles, t.mediaElement.options.renderers.length ? t.mediaElement.options.renderers : []),
|
|
|
+ event = void 0;
|
|
|
+
|
|
|
+ if (!t.mediaElement.paused) {
|
|
|
+ t.mediaElement.pause();
|
|
|
+ event = (0, _general.createEvent)('pause', t.mediaElement);
|
|
|
+ t.mediaElement.dispatchEvent(event);
|
|
|
}
|
|
|
+ t.mediaElement.originalNode.src = mediaFiles[0].src || '';
|
|
|
|
|
|
- // test for native playback first
|
|
|
- if (supportsMediaTag && (options.mode === 'auto' || options.mode === 'auto_plugin' || options.mode === 'native') && !(mejs.MediaFeatures.isBustedNativeHTTPS && options.httpsBasicAuthSite === true)) {
|
|
|
-
|
|
|
- if (!isMediaTag) {
|
|
|
+ if (renderInfo === null && mediaFiles[0].src) {
|
|
|
+ t.mediaElement.generateError('No renderer found', mediaFiles);
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- // create a real HTML5 Media Element
|
|
|
- dummy = document.createElement( result.isVideo ? 'video' : 'audio');
|
|
|
- htmlMediaElement.parentNode.insertBefore(dummy, htmlMediaElement);
|
|
|
- htmlMediaElement.style.display = 'none';
|
|
|
-
|
|
|
- // use this one from now on
|
|
|
- result.htmlMediaElement = htmlMediaElement = dummy;
|
|
|
+ return mediaFiles[0].src ? t.mediaElement.changeRenderer(renderInfo.rendererName, mediaFiles) : null;
|
|
|
+ },
|
|
|
+ triggerAction = function triggerAction(methodName, args) {
|
|
|
+ try {
|
|
|
+ if (methodName === 'play' && t.mediaElement.rendererName === 'native_dash') {
|
|
|
+ setTimeout(function () {
|
|
|
+ t.mediaElement.renderer[methodName](args);
|
|
|
+ }, 100);
|
|
|
+ } else {
|
|
|
+ t.mediaElement.renderer[methodName](args);
|
|
|
}
|
|
|
-
|
|
|
- for (i=0; i<mediaFiles.length; i++) {
|
|
|
- // normal check
|
|
|
- if (mediaFiles[i].type == "video/m3u8" || htmlMediaElement.canPlayType(mediaFiles[i].type).replace(/no/, '') !== ''
|
|
|
- // special case for Mac/Safari 5.0.3 which answers '' to canPlayType('audio/mp3') but 'maybe' to canPlayType('audio/mpeg')
|
|
|
- || htmlMediaElement.canPlayType(mediaFiles[i].type.replace(/mp3/,'mpeg')).replace(/no/, '') !== ''
|
|
|
- // special case for m4a supported by detecting mp4 support
|
|
|
- || htmlMediaElement.canPlayType(mediaFiles[i].type.replace(/m4a/,'mp4')).replace(/no/, '') !== '') {
|
|
|
- result.method = 'native';
|
|
|
- result.url = mediaFiles[i].url;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (result.method === 'native') {
|
|
|
- if (result.url !== null) {
|
|
|
- htmlMediaElement.src = result.url;
|
|
|
- }
|
|
|
-
|
|
|
- // if `auto_plugin` mode, then cache the native result but try plugins.
|
|
|
- if (options.mode !== 'auto_plugin') {
|
|
|
- return result;
|
|
|
+ } catch (e) {
|
|
|
+ t.mediaElement.generateError(e, mediaFiles);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ assignMethods = function assignMethods(methodName) {
|
|
|
+ t.mediaElement[methodName] = function () {
|
|
|
+ for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
|
+ args[_key] = arguments[_key];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.mediaElement.renderer !== undefined && t.mediaElement.renderer !== null && typeof t.mediaElement.renderer[methodName] === 'function') {
|
|
|
+ if (t.mediaElement.promises.length) {
|
|
|
+ Promise.all(t.mediaElement.promises).then(function () {
|
|
|
+ triggerAction(methodName, args);
|
|
|
+ }).catch(function (e) {
|
|
|
+ t.mediaElement.generateError(e, mediaFiles);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ triggerAction(methodName, args);
|
|
|
}
|
|
|
}
|
|
|
+ return null;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ addProperty(t.mediaElement, 'src', getSrc, setSrc);
|
|
|
+ t.mediaElement.getSrc = getSrc;
|
|
|
+ t.mediaElement.setSrc = setSrc;
|
|
|
+
|
|
|
+ for (var _i3 = 0, total = props.length; _i3 < total; _i3++) {
|
|
|
+ assignGettersSetters(props[_i3]);
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i4 = 0, _total = methods.length; _i4 < _total; _i4++) {
|
|
|
+ assignMethods(methods[_i4]);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.mediaElement.addEventListener = function (eventName, callback) {
|
|
|
+ t.mediaElement.events[eventName] = t.mediaElement.events[eventName] || [];
|
|
|
+
|
|
|
+ t.mediaElement.events[eventName].push(callback);
|
|
|
+ };
|
|
|
+ t.mediaElement.removeEventListener = function (eventName, callback) {
|
|
|
+ if (!eventName) {
|
|
|
+ t.mediaElement.events = {};
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
- // if native playback didn't work, then test plugins
|
|
|
- if (options.mode === 'auto' || options.mode === 'auto_plugin' || options.mode === 'shim') {
|
|
|
- for (i=0; i<mediaFiles.length; i++) {
|
|
|
- type = mediaFiles[i].type;
|
|
|
+ var callbacks = t.mediaElement.events[eventName];
|
|
|
|
|
|
- // test all plugins in order of preference [silverlight, flash]
|
|
|
- for (j=0; j<options.plugins.length; j++) {
|
|
|
+ if (!callbacks) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
|
|
|
- pluginName = options.plugins[j];
|
|
|
-
|
|
|
- // test version of plugin (for future features)
|
|
|
- pluginVersions = mejs.plugins[pluginName];
|
|
|
-
|
|
|
- for (k=0; k<pluginVersions.length; k++) {
|
|
|
- pluginInfo = pluginVersions[k];
|
|
|
-
|
|
|
- // test if user has the correct plugin version
|
|
|
-
|
|
|
- // for youtube/vimeo
|
|
|
- if (pluginInfo.version == null ||
|
|
|
-
|
|
|
- mejs.PluginDetector.hasPluginVersion(pluginName, pluginInfo.version)) {
|
|
|
-
|
|
|
- // test for plugin playback types
|
|
|
- for (l=0; l<pluginInfo.types.length; l++) {
|
|
|
- // find plugin that can play the type
|
|
|
- if (type.toLowerCase() == pluginInfo.types[l].toLowerCase()) {
|
|
|
- result.method = pluginName;
|
|
|
- result.url = mediaFiles[i].url;
|
|
|
- return result;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ if (!callback) {
|
|
|
+ t.mediaElement.events[eventName] = [];
|
|
|
+ return true;
|
|
|
}
|
|
|
-
|
|
|
- // at this point, being in 'auto_plugin' mode implies that we tried plugins but failed.
|
|
|
- // if we have native support then return that.
|
|
|
- if (options.mode === 'auto_plugin' && result.method === 'native') {
|
|
|
- return result;
|
|
|
+
|
|
|
+ for (var _i5 = 0; _i5 < callbacks.length; _i5++) {
|
|
|
+ if (callbacks[_i5] === callback) {
|
|
|
+ t.mediaElement.events[eventName].splice(_i5, 1);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|
|
|
+ return false;
|
|
|
+ };
|
|
|
|
|
|
- // what if there's nothing to play? just grab the first available
|
|
|
- if (result.method === '' && mediaFiles.length > 0) {
|
|
|
- result.url = mediaFiles[0].url;
|
|
|
+ t.mediaElement.dispatchEvent = function (event) {
|
|
|
+ var callbacks = t.mediaElement.events[event.type];
|
|
|
+ if (callbacks) {
|
|
|
+ for (var _i6 = 0; _i6 < callbacks.length; _i6++) {
|
|
|
+ callbacks[_i6].apply(null, [event]);
|
|
|
+ }
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- return result;
|
|
|
- },
|
|
|
+ if (mediaFiles.length) {
|
|
|
+ t.mediaElement.src = mediaFiles;
|
|
|
+ }
|
|
|
|
|
|
- formatType: function(url, type) {
|
|
|
- // if no type is supplied, fake it with the extension
|
|
|
- if (url && !type) {
|
|
|
- return this.getTypeFromFile(url);
|
|
|
- } else {
|
|
|
- // only return the mime part of the type in case the attribute contains the codec
|
|
|
- // see http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#the-source-element
|
|
|
- // `video/mp4; codecs="avc1.42E01E, mp4a.40.2"` becomes `video/mp4`
|
|
|
-
|
|
|
- if (type && ~type.indexOf(';')) {
|
|
|
- return type.substr(0, type.indexOf(';'));
|
|
|
- } else {
|
|
|
- return type;
|
|
|
+ if (t.mediaElement.promises.length) {
|
|
|
+ Promise.all(t.mediaElement.promises).then(function () {
|
|
|
+ if (t.mediaElement.options.success) {
|
|
|
+ t.mediaElement.options.success(t.mediaElement, t.mediaElement.originalNode);
|
|
|
+ }
|
|
|
+ }).catch(function () {
|
|
|
+ if (error && t.mediaElement.options.error) {
|
|
|
+ t.mediaElement.options.error(t.mediaElement, t.mediaElement.originalNode);
|
|
|
}
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ if (t.mediaElement.options.success) {
|
|
|
+ t.mediaElement.options.success(t.mediaElement, t.mediaElement.originalNode);
|
|
|
}
|
|
|
- },
|
|
|
-
|
|
|
- getTypeFromFile: function(url) {
|
|
|
- url = url.split('?')[0];
|
|
|
- var
|
|
|
- ext = url.substring(url.lastIndexOf('.') + 1).toLowerCase(),
|
|
|
- av = /(mp4|m4v|ogg|ogv|m3u8|webm|webmv|flv|wmv|mpeg|mov)/gi.test(ext) ? 'video/' : 'audio/';
|
|
|
- return this.getTypeFromExtension(ext, av);
|
|
|
- },
|
|
|
-
|
|
|
- getTypeFromExtension: function(ext, av) {
|
|
|
- av = av || '';
|
|
|
-
|
|
|
- switch (ext) {
|
|
|
- case 'mp4':
|
|
|
- case 'm4v':
|
|
|
- case 'm4a':
|
|
|
- case 'f4v':
|
|
|
- case 'f4a':
|
|
|
- return av + 'mp4';
|
|
|
- case 'flv':
|
|
|
- return av + 'x-flv';
|
|
|
- case 'webm':
|
|
|
- case 'webma':
|
|
|
- case 'webmv':
|
|
|
- return av + 'webm';
|
|
|
- case 'ogg':
|
|
|
- case 'oga':
|
|
|
- case 'ogv':
|
|
|
- return av + 'ogg';
|
|
|
- case 'm3u8':
|
|
|
- return 'application/x-mpegurl';
|
|
|
- case 'ts':
|
|
|
- return av + 'mp2t';
|
|
|
- default:
|
|
|
- return av + ext;
|
|
|
+
|
|
|
+ if (error && t.mediaElement.options.error) {
|
|
|
+ t.mediaElement.options.error(t.mediaElement, t.mediaElement.originalNode);
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
|
|
|
- createErrorMessage: function(playback, options, poster) {
|
|
|
- var
|
|
|
- htmlMediaElement = playback.htmlMediaElement,
|
|
|
- errorContainer = document.createElement('div'),
|
|
|
- errorContent = options.customError;
|
|
|
-
|
|
|
- errorContainer.className = 'me-cannotplay';
|
|
|
+ return t.mediaElement;
|
|
|
+};
|
|
|
|
|
|
- try {
|
|
|
- errorContainer.style.width = htmlMediaElement.width + 'px';
|
|
|
- errorContainer.style.height = htmlMediaElement.height + 'px';
|
|
|
- } catch (e) {}
|
|
|
+_window2.default.MediaElement = MediaElement;
|
|
|
|
|
|
- if (!errorContent) {
|
|
|
- errorContent = '<a href="' + playback.url + '">';
|
|
|
+exports.default = MediaElement;
|
|
|
|
|
|
- if (poster !== '') {
|
|
|
- errorContent += '<img src="' + poster + '" width="100%" height="100%" alt="" />';
|
|
|
- }
|
|
|
+},{"2":2,"25":25,"27":27,"28":28,"3":3,"7":7,"8":8}],7:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- errorContent += '<span>' + mejs.i18n.t('mejs.download-file') + '</span></a>';
|
|
|
- }
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
|
|
|
- errorContainer.innerHTML = errorContent;
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- htmlMediaElement.parentNode.insertBefore(errorContainer, htmlMediaElement);
|
|
|
- htmlMediaElement.style.display = 'none';
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- options.error(htmlMediaElement);
|
|
|
- },
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- createPlugin:function(playback, options, poster, autoplay, preload, controls) {
|
|
|
- var
|
|
|
- htmlMediaElement = playback.htmlMediaElement,
|
|
|
- width = 1,
|
|
|
- height = 1,
|
|
|
- pluginid = 'me_' + playback.method + '_' + (mejs.meIndex++),
|
|
|
- pluginMediaElement = new mejs.PluginMediaElement(pluginid, playback.method, playback.url),
|
|
|
- container = document.createElement('div'),
|
|
|
- specialIEContainer,
|
|
|
- node,
|
|
|
- initVars;
|
|
|
+var mejs = {};
|
|
|
|
|
|
- // copy tagName from html media element
|
|
|
- pluginMediaElement.tagName = htmlMediaElement.tagName;
|
|
|
+mejs.version = '4.2.5';
|
|
|
|
|
|
- // copy attributes from html media element to plugin media element
|
|
|
- for (var i = 0; i < htmlMediaElement.attributes.length; i++) {
|
|
|
- var attribute = htmlMediaElement.attributes[i];
|
|
|
- if (attribute.specified) {
|
|
|
- pluginMediaElement.setAttribute(attribute.name, attribute.value);
|
|
|
- }
|
|
|
- }
|
|
|
+mejs.html5media = {
|
|
|
+ properties: ['volume', 'src', 'currentTime', 'muted', 'duration', 'paused', 'ended', 'buffered', 'error', 'networkState', 'readyState', 'seeking', 'seekable', 'currentSrc', 'preload', 'bufferedBytes', 'bufferedTime', 'initialTime', 'startOffsetTime', 'defaultPlaybackRate', 'playbackRate', 'played', 'autoplay', 'loop', 'controls'],
|
|
|
+ readOnlyProperties: ['duration', 'paused', 'ended', 'buffered', 'error', 'networkState', 'readyState', 'seeking', 'seekable'],
|
|
|
|
|
|
- // check for placement inside a <p> tag (sometimes WYSIWYG editors do this)
|
|
|
- node = htmlMediaElement.parentNode;
|
|
|
+ methods: ['load', 'play', 'pause', 'canPlayType'],
|
|
|
|
|
|
- while (node !== null && node.tagName != null && node.tagName.toLowerCase() !== 'body' &&
|
|
|
- node.parentNode != null && node.parentNode.tagName != null && node.parentNode.constructor != null && node.parentNode.constructor.name === "ShadowRoot") {
|
|
|
- if (node.parentNode.tagName.toLowerCase() === 'p') {
|
|
|
- node.parentNode.parentNode.insertBefore(node, node.parentNode);
|
|
|
- break;
|
|
|
- }
|
|
|
- node = node.parentNode;
|
|
|
- }
|
|
|
+ events: ['loadstart', 'durationchange', 'loadedmetadata', 'loadeddata', 'progress', 'canplay', 'canplaythrough', 'suspend', 'abort', 'error', 'emptied', 'stalled', 'play', 'playing', 'pause', 'waiting', 'seeking', 'seeked', 'timeupdate', 'ended', 'ratechange', 'volumechange'],
|
|
|
|
|
|
- if (playback.isVideo) {
|
|
|
- width = (options.pluginWidth > 0) ? options.pluginWidth : (options.videoWidth > 0) ? options.videoWidth : (htmlMediaElement.getAttribute('width') !== null) ? htmlMediaElement.getAttribute('width') : options.defaultVideoWidth;
|
|
|
- height = (options.pluginHeight > 0) ? options.pluginHeight : (options.videoHeight > 0) ? options.videoHeight : (htmlMediaElement.getAttribute('height') !== null) ? htmlMediaElement.getAttribute('height') : options.defaultVideoHeight;
|
|
|
-
|
|
|
- // in case of '%' make sure it's encoded
|
|
|
- width = mejs.Utility.encodeUrl(width);
|
|
|
- height = mejs.Utility.encodeUrl(height);
|
|
|
-
|
|
|
- } else {
|
|
|
- if (options.enablePluginDebug) {
|
|
|
- width = 320;
|
|
|
- height = 240;
|
|
|
+ mediaTypes: ['audio/mp3', 'audio/ogg', 'audio/oga', 'audio/wav', 'audio/x-wav', 'audio/wave', 'audio/x-pn-wav', 'audio/mpeg', 'audio/mp4', 'video/mp4', 'video/webm', 'video/ogg', 'video/ogv']
|
|
|
+};
|
|
|
+
|
|
|
+_window2.default.mejs = mejs;
|
|
|
+
|
|
|
+exports.default = mejs;
|
|
|
+
|
|
|
+},{"3":3}],8:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.renderer = undefined;
|
|
|
+
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
+
|
|
|
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
|
+
|
|
|
+var _mejs = _dereq_(7);
|
|
|
+
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
+
|
|
|
+var Renderer = function () {
|
|
|
+ function Renderer() {
|
|
|
+ _classCallCheck(this, Renderer);
|
|
|
+
|
|
|
+ this.renderers = {};
|
|
|
+ this.order = [];
|
|
|
+ }
|
|
|
+
|
|
|
+ _createClass(Renderer, [{
|
|
|
+ key: 'add',
|
|
|
+ value: function add(renderer) {
|
|
|
+ if (renderer.name === undefined) {
|
|
|
+ throw new TypeError('renderer must contain at least `name` property');
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- // register plugin
|
|
|
- pluginMediaElement.success = options.success;
|
|
|
-
|
|
|
- // add container (must be added to DOM before inserting HTML for IE)
|
|
|
- container.className = 'me-plugin';
|
|
|
- container.id = pluginid + '_container';
|
|
|
-
|
|
|
- if (playback.isVideo) {
|
|
|
- htmlMediaElement.parentNode.insertBefore(container, htmlMediaElement);
|
|
|
- } else {
|
|
|
- document.body.insertBefore(container, document.body.childNodes[0]);
|
|
|
+ this.renderers[renderer.name] = renderer;
|
|
|
+ this.order.push(renderer.name);
|
|
|
}
|
|
|
-
|
|
|
- if (playback.method === 'flash' || playback.method === 'silverlight') {
|
|
|
+ }, {
|
|
|
+ key: 'select',
|
|
|
+ value: function select(mediaFiles) {
|
|
|
+ var renderers = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
|
|
|
|
- var canPlayVideo = htmlMediaElement.getAttribute('type') === 'audio/mp4',
|
|
|
- childrenSources = htmlMediaElement.getElementsByTagName('source');
|
|
|
+ var renderersLength = renderers.length;
|
|
|
|
|
|
- if (childrenSources && !canPlayVideo) {
|
|
|
- for (var i = 0, total = childrenSources.length; i < total; i++) {
|
|
|
- if (childrenSources[i].getAttribute('type') === 'audio/mp4') {
|
|
|
- canPlayVideo = true;
|
|
|
+ renderers = renderers.length ? renderers : this.order;
|
|
|
+
|
|
|
+ if (!renderersLength) {
|
|
|
+ var rendererIndicator = [/^(html5|native)/i, /^flash/i, /iframe$/i],
|
|
|
+ rendererRanking = function rendererRanking(renderer) {
|
|
|
+ for (var i = 0, total = rendererIndicator.length; i < total; i++) {
|
|
|
+ if (rendererIndicator[i].test(renderer)) {
|
|
|
+ return i;
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
+ return rendererIndicator.length;
|
|
|
+ };
|
|
|
+
|
|
|
+ renderers.sort(function (a, b) {
|
|
|
+ return rendererRanking(a) - rendererRanking(b);
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- // flash/silverlight vars
|
|
|
- initVars = [
|
|
|
- 'id=' + pluginid,
|
|
|
- 'isvideo=' + ((playback.isVideo || canPlayVideo) ? "true" : "false"),
|
|
|
- 'autoplay=' + ((autoplay) ? "true" : "false"),
|
|
|
- 'preload=' + preload,
|
|
|
- 'width=' + width,
|
|
|
- 'startvolume=' + options.startVolume,
|
|
|
- 'timerrate=' + options.timerRate,
|
|
|
- 'flashstreamer=' + options.flashStreamer,
|
|
|
- 'height=' + height,
|
|
|
- 'pseudostreamstart=' + options.pseudoStreamingStartQueryParam];
|
|
|
-
|
|
|
- if (playback.url !== null) {
|
|
|
- if (playback.method == 'flash') {
|
|
|
- initVars.push('file=' + mejs.Utility.encodeUrl(playback.url));
|
|
|
- } else {
|
|
|
- initVars.push('file=' + playback.url);
|
|
|
+ for (var i = 0, total = renderers.length; i < total; i++) {
|
|
|
+ var key = renderers[i],
|
|
|
+ _renderer = this.renderers[key];
|
|
|
+
|
|
|
+ if (_renderer !== null && _renderer !== undefined) {
|
|
|
+ for (var j = 0, jl = mediaFiles.length; j < jl; j++) {
|
|
|
+ if (typeof _renderer.canPlayType === 'function' && typeof mediaFiles[j].type === 'string' && _renderer.canPlayType(mediaFiles[j].type)) {
|
|
|
+ return {
|
|
|
+ rendererName: _renderer.name,
|
|
|
+ src: mediaFiles[j].src
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- if (options.enablePluginDebug) {
|
|
|
- initVars.push('debug=true');
|
|
|
- }
|
|
|
- if (options.enablePluginSmoothing) {
|
|
|
- initVars.push('smoothing=true');
|
|
|
- }
|
|
|
- if (options.enablePseudoStreaming) {
|
|
|
- initVars.push('pseudostreaming=true');
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'order',
|
|
|
+ set: function set(order) {
|
|
|
+ if (!Array.isArray(order)) {
|
|
|
+ throw new TypeError('order must be an array of strings.');
|
|
|
}
|
|
|
- if (controls) {
|
|
|
- initVars.push('controls=true'); // shows controls in the plugin if desired
|
|
|
+
|
|
|
+ this._order = order;
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this._order;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'renderers',
|
|
|
+ set: function set(renderers) {
|
|
|
+ if (renderers !== null && (typeof renderers === 'undefined' ? 'undefined' : _typeof(renderers)) !== 'object') {
|
|
|
+ throw new TypeError('renderers must be an array of objects.');
|
|
|
}
|
|
|
- if (options.pluginVars) {
|
|
|
- initVars = initVars.concat(options.pluginVars);
|
|
|
- }
|
|
|
-
|
|
|
- // call from plugin
|
|
|
- window[pluginid + '_init'] = function() {
|
|
|
- switch (pluginMediaElement.pluginType) {
|
|
|
- case 'flash':
|
|
|
- pluginMediaElement.pluginElement = pluginMediaElement.pluginApi = document.getElementById(pluginid);
|
|
|
- break;
|
|
|
- case 'silverlight':
|
|
|
- pluginMediaElement.pluginElement = document.getElementById(pluginMediaElement.id);
|
|
|
- pluginMediaElement.pluginApi = pluginMediaElement.pluginElement.Content.MediaElementJS;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (pluginMediaElement.pluginApi != null && pluginMediaElement.success) {
|
|
|
- pluginMediaElement.success(pluginMediaElement, htmlMediaElement);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- // event call from plugin
|
|
|
- window[pluginid + '_event'] = function(eventName, values) {
|
|
|
-
|
|
|
- var
|
|
|
- e,
|
|
|
- i,
|
|
|
- bufferedTime;
|
|
|
-
|
|
|
- // fake event object to mimic real HTML media event.
|
|
|
- e = {
|
|
|
- type: eventName,
|
|
|
- target: pluginMediaElement
|
|
|
- };
|
|
|
-
|
|
|
- // attach all values to element and event object
|
|
|
- for (i in values) {
|
|
|
- pluginMediaElement[i] = values[i];
|
|
|
- e[i] = values[i];
|
|
|
- }
|
|
|
-
|
|
|
- // fake the newer W3C buffered TimeRange (loaded and total have been removed)
|
|
|
- bufferedTime = values.bufferedTime || 0;
|
|
|
-
|
|
|
- e.target.buffered = e.buffered = {
|
|
|
- start: function(index) {
|
|
|
- return 0;
|
|
|
- },
|
|
|
- end: function (index) {
|
|
|
- return bufferedTime;
|
|
|
- },
|
|
|
- length: 1
|
|
|
- };
|
|
|
-
|
|
|
- pluginMediaElement.dispatchEvent(e);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- switch (playback.method) {
|
|
|
- case 'silverlight':
|
|
|
- container.innerHTML =
|
|
|
-'<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" id="' + pluginid + '" name="' + pluginid + '" width="' + width + '" height="' + height + '" class="mejs-shim">' +
|
|
|
-'<param name="initParams" value="' + initVars.join(',') + '" />' +
|
|
|
-'<param name="windowless" value="true" />' +
|
|
|
-'<param name="background" value="black" />' +
|
|
|
-'<param name="minRuntimeVersion" value="3.0.0.0" />' +
|
|
|
-'<param name="autoUpgrade" value="true" />' +
|
|
|
-'<param name="source" value="' + options.pluginPath + options.silverlightName + '" />' +
|
|
|
-'</object>';
|
|
|
- break;
|
|
|
|
|
|
- case 'flash':
|
|
|
-
|
|
|
- if (mejs.MediaFeatures.isIE) {
|
|
|
- specialIEContainer = document.createElement('div');
|
|
|
- container.appendChild(specialIEContainer);
|
|
|
- specialIEContainer.outerHTML =
|
|
|
-'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" ' +
|
|
|
-'id="' + pluginid + '" width="' + width + '" height="' + height + '" class="mejs-shim">' +
|
|
|
-'<param name="movie" value="' + options.pluginPath + options.flashName + '?' + (new Date().getTime()) + '" />' +
|
|
|
-'<param name="flashvars" value="' + initVars.join('&') + '" />' +
|
|
|
-'<param name="quality" value="high" />' +
|
|
|
-'<param name="bgcolor" value="#000000" />' +
|
|
|
-'<param name="wmode" value="transparent" />' +
|
|
|
-'<param name="allowScriptAccess" value="' + options.flashScriptAccess + '" />' +
|
|
|
-'<param name="allowFullScreen" value="true" />' +
|
|
|
-'<param name="scale" value="default" />' +
|
|
|
-'</object>';
|
|
|
+ this._renderers = renderers;
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this._renderers;
|
|
|
+ }
|
|
|
+ }]);
|
|
|
|
|
|
- } else {
|
|
|
+ return Renderer;
|
|
|
+}();
|
|
|
|
|
|
- container.innerHTML =
|
|
|
-'<embed id="' + pluginid + '" name="' + pluginid + '" ' +
|
|
|
-'play="true" ' +
|
|
|
-'loop="false" ' +
|
|
|
-'quality="high" ' +
|
|
|
-'bgcolor="#000000" ' +
|
|
|
-'wmode="transparent" ' +
|
|
|
-'allowScriptAccess="' + options.flashScriptAccess + '" ' +
|
|
|
-'allowFullScreen="true" ' +
|
|
|
-'type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" ' +
|
|
|
-'src="' + options.pluginPath + options.flashName + '" ' +
|
|
|
-'flashvars="' + initVars.join('&') + '" ' +
|
|
|
-'width="' + width + '" ' +
|
|
|
-'height="' + height + '" ' +
|
|
|
-'scale="default"' +
|
|
|
-'class="mejs-shim"></embed>';
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
- case 'youtube':
|
|
|
-
|
|
|
-
|
|
|
- var videoId;
|
|
|
- // youtu.be url from share button
|
|
|
- if (playback.url.lastIndexOf("youtu.be") != -1) {
|
|
|
- videoId = playback.url.substr(playback.url.lastIndexOf('/')+1);
|
|
|
- if (videoId.indexOf('?') != -1) {
|
|
|
- videoId = videoId.substr(0, videoId.indexOf('?'));
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- // https://www.youtube.com/watch?v=
|
|
|
- var videoIdMatch = playback.url.match( /[?&]v=([^&#]+)|&|#|$/ );
|
|
|
- if ( videoIdMatch ) {
|
|
|
- videoId = videoIdMatch[1];
|
|
|
- }
|
|
|
- }
|
|
|
- youtubeSettings = {
|
|
|
- container: container,
|
|
|
- containerId: container.id,
|
|
|
- pluginMediaElement: pluginMediaElement,
|
|
|
- pluginId: pluginid,
|
|
|
- videoId: videoId,
|
|
|
- height: height,
|
|
|
- width: width,
|
|
|
- scheme: playback.scheme,
|
|
|
- variables: options.youtubeIframeVars
|
|
|
- };
|
|
|
-
|
|
|
- // favor iframe version of YouTube
|
|
|
- if (window.postMessage) {
|
|
|
- mejs.YouTubeApi.enqueueIframe(youtubeSettings);
|
|
|
- } else if (mejs.PluginDetector.hasPluginVersion('flash', [10,0,0]) ) {
|
|
|
- mejs.YouTubeApi.createFlash(youtubeSettings, options);
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
- // DEMO Code. Does NOT work.
|
|
|
- case 'vimeo':
|
|
|
- var player_id = pluginid + "_player";
|
|
|
- pluginMediaElement.vimeoid = playback.url.substr(playback.url.lastIndexOf('/')+1);
|
|
|
-
|
|
|
- container.innerHTML ='<iframe src="' + playback.scheme + 'player.vimeo.com/video/' + pluginMediaElement.vimeoid + '?api=1&portrait=0&byline=0&title=0&player_id=' + player_id + '" width="' + width +'" height="' + height +'" frameborder="0" class="mejs-shim" id="' + player_id + '" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
|
|
|
- if (typeof($f) == 'function') { // froogaloop available
|
|
|
- var player = $f(container.childNodes[0]),
|
|
|
- playerState = -1;
|
|
|
-
|
|
|
- player.addEvent('ready', function() {
|
|
|
-
|
|
|
- player.playVideo = function() {
|
|
|
- player.api( 'play' );
|
|
|
- };
|
|
|
- player.stopVideo = function() {
|
|
|
- player.api( 'unload' );
|
|
|
- };
|
|
|
- player.pauseVideo = function() {
|
|
|
- player.api( 'pause' );
|
|
|
- };
|
|
|
- player.seekTo = function( seconds ) {
|
|
|
- player.api( 'seekTo', seconds );
|
|
|
- };
|
|
|
- player.setVolume = function( volume ) {
|
|
|
- player.api( 'setVolume', volume );
|
|
|
- };
|
|
|
- player.setMuted = function( muted ) {
|
|
|
- if( muted ) {
|
|
|
- player.lastVolume = player.api( 'getVolume' );
|
|
|
- player.api( 'setVolume', 0 );
|
|
|
- } else {
|
|
|
- player.api( 'setVolume', player.lastVolume );
|
|
|
- delete player.lastVolume;
|
|
|
- }
|
|
|
- };
|
|
|
- // parity with YT player
|
|
|
- player.getPlayerState = function() {
|
|
|
- return playerState;
|
|
|
- };
|
|
|
+var renderer = exports.renderer = new Renderer();
|
|
|
|
|
|
- function createEvent(player, pluginMediaElement, eventName, e) {
|
|
|
- var event = {
|
|
|
- type: eventName,
|
|
|
- target: pluginMediaElement
|
|
|
- };
|
|
|
- if (eventName == 'timeupdate') {
|
|
|
- pluginMediaElement.currentTime = event.currentTime = e.seconds;
|
|
|
- pluginMediaElement.duration = event.duration = e.duration;
|
|
|
- }
|
|
|
- pluginMediaElement.dispatchEvent(event);
|
|
|
- }
|
|
|
+_mejs2.default.Renderers = renderer;
|
|
|
|
|
|
- player.addEvent('play', function() {
|
|
|
- playerState = 1;
|
|
|
- createEvent(player, pluginMediaElement, 'play');
|
|
|
- createEvent(player, pluginMediaElement, 'playing');
|
|
|
- });
|
|
|
+},{"7":7}],9:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- player.addEvent('pause', function() {
|
|
|
- playerState = 2;
|
|
|
- createEvent(player, pluginMediaElement, 'pause');
|
|
|
- });
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- player.addEvent('finish', function() {
|
|
|
- playerState = 0;
|
|
|
- createEvent(player, pluginMediaElement, 'ended');
|
|
|
- });
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- player.addEvent('playProgress', function(e) {
|
|
|
- createEvent(player, pluginMediaElement, 'timeupdate', e);
|
|
|
- });
|
|
|
-
|
|
|
- player.addEvent('seek', function(e) {
|
|
|
- playerState = 3;
|
|
|
- createEvent(player, pluginMediaElement, 'seeked', e);
|
|
|
- });
|
|
|
-
|
|
|
- player.addEvent('loadProgress', function(e) {
|
|
|
- playerState = 3;
|
|
|
- createEvent(player, pluginMediaElement, 'progress', e);
|
|
|
- });
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- pluginMediaElement.pluginElement = container;
|
|
|
- pluginMediaElement.pluginApi = player;
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- pluginMediaElement.success(pluginMediaElement, pluginMediaElement.pluginElement);
|
|
|
- });
|
|
|
- }
|
|
|
- else {
|
|
|
- console.warn("You need to include froogaloop for vimeo to work");
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
- // hide original element
|
|
|
- htmlMediaElement.style.display = 'none';
|
|
|
- // prevent browser from autoplaying when using a plugin
|
|
|
- htmlMediaElement.removeAttribute('autoplay');
|
|
|
-
|
|
|
- return pluginMediaElement;
|
|
|
- },
|
|
|
+var _i18n = _dereq_(5);
|
|
|
|
|
|
- updateNative: function(playback, options, autoplay, preload) {
|
|
|
-
|
|
|
- var htmlMediaElement = playback.htmlMediaElement,
|
|
|
- m;
|
|
|
-
|
|
|
-
|
|
|
- // add methods to video object to bring it into parity with Flash Object
|
|
|
- for (m in mejs.HtmlMediaElement) {
|
|
|
- htmlMediaElement[m] = mejs.HtmlMediaElement[m];
|
|
|
- }
|
|
|
-
|
|
|
- /*
|
|
|
- Chrome now supports preload="none"
|
|
|
- if (mejs.MediaFeatures.isChrome) {
|
|
|
-
|
|
|
- // special case to enforce preload attribute (Chrome doesn't respect this)
|
|
|
- if (preload === 'none' && !autoplay) {
|
|
|
-
|
|
|
- // forces the browser to stop loading (note: fails in IE9)
|
|
|
- htmlMediaElement.src = '';
|
|
|
- htmlMediaElement.load();
|
|
|
- htmlMediaElement.canceledPreload = true;
|
|
|
-
|
|
|
- htmlMediaElement.addEventListener('play',function() {
|
|
|
- if (htmlMediaElement.canceledPreload) {
|
|
|
- htmlMediaElement.src = playback.url;
|
|
|
- htmlMediaElement.load();
|
|
|
- htmlMediaElement.play();
|
|
|
- htmlMediaElement.canceledPreload = false;
|
|
|
- }
|
|
|
- }, false);
|
|
|
- // for some reason Chrome forgets how to autoplay sometimes.
|
|
|
- } else if (autoplay) {
|
|
|
- htmlMediaElement.load();
|
|
|
- htmlMediaElement.play();
|
|
|
- }
|
|
|
- }
|
|
|
- */
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
|
|
|
- // fire success code
|
|
|
- options.success(htmlMediaElement, htmlMediaElement);
|
|
|
-
|
|
|
- return htmlMediaElement;
|
|
|
- }
|
|
|
-};
|
|
|
+var _player = _dereq_(16);
|
|
|
|
|
|
-/*
|
|
|
- - test on IE (object vs. embed)
|
|
|
- - determine when to use iframe (Firefox, Safari, Mobile) vs. Flash (Chrome, IE)
|
|
|
- - fullscreen?
|
|
|
-*/
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
|
|
|
-// YouTube Flash and Iframe API
|
|
|
-mejs.YouTubeApi = {
|
|
|
- isIframeStarted: false,
|
|
|
- isIframeLoaded: false,
|
|
|
- loadIframeApi: function(yt) {
|
|
|
- if (!this.isIframeStarted) {
|
|
|
- var tag = document.createElement('script');
|
|
|
- tag.src = yt.scheme + "www.youtube.com/player_api";
|
|
|
- var firstScriptTag = document.getElementsByTagName('script')[0];
|
|
|
- firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
|
|
|
- this.isIframeStarted = true;
|
|
|
- }
|
|
|
- },
|
|
|
- iframeQueue: [],
|
|
|
- enqueueIframe: function(yt) {
|
|
|
-
|
|
|
- if (this.isLoaded) {
|
|
|
- this.createIframe(yt);
|
|
|
- } else {
|
|
|
- this.loadIframeApi(yt);
|
|
|
- this.iframeQueue.push(yt);
|
|
|
+var _constants = _dereq_(25);
|
|
|
+
|
|
|
+var Features = _interopRequireWildcard(_constants);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+var _media = _dereq_(28);
|
|
|
+
|
|
|
+function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ usePluginFullScreen: true,
|
|
|
+
|
|
|
+ fullscreenText: null,
|
|
|
+
|
|
|
+ useFakeFullscreen: false
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ isFullScreen: false,
|
|
|
+
|
|
|
+ isNativeFullScreen: false,
|
|
|
+
|
|
|
+ isInIframe: false,
|
|
|
+
|
|
|
+ isPluginClickThroughCreated: false,
|
|
|
+
|
|
|
+ fullscreenMode: '',
|
|
|
+
|
|
|
+ containerSizeTimeout: null,
|
|
|
+
|
|
|
+ buildfullscreen: function buildfullscreen(player) {
|
|
|
+ if (!player.isVideo) {
|
|
|
+ return;
|
|
|
}
|
|
|
- },
|
|
|
- createIframe: function(settings) {
|
|
|
-
|
|
|
- var
|
|
|
- pluginMediaElement = settings.pluginMediaElement,
|
|
|
- defaultVars = {controls:0, wmode:'transparent'},
|
|
|
- player = new YT.Player(settings.containerId, {
|
|
|
- height: settings.height,
|
|
|
- width: settings.width,
|
|
|
- videoId: settings.videoId,
|
|
|
- playerVars: mejs.$.extend({}, defaultVars, settings.variables),
|
|
|
- events: {
|
|
|
- 'onReady': function(e) {
|
|
|
-
|
|
|
- // wrapper to match
|
|
|
- player.setVideoSize = function(width, height) {
|
|
|
- player.setSize(width, height);
|
|
|
- };
|
|
|
-
|
|
|
- // hook up iframe object to MEjs
|
|
|
- settings.pluginMediaElement.pluginApi = player;
|
|
|
- settings.pluginMediaElement.pluginElement = document.getElementById(settings.containerId);
|
|
|
-
|
|
|
- // init mejs
|
|
|
- pluginMediaElement.success(pluginMediaElement, pluginMediaElement.pluginElement);
|
|
|
-
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'canplay');
|
|
|
-
|
|
|
- // create timer
|
|
|
- setInterval(function() {
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate');
|
|
|
- }, 250);
|
|
|
-
|
|
|
- if (typeof pluginMediaElement.attributes.autoplay !== 'undefined') {
|
|
|
- player.playVideo();
|
|
|
- }
|
|
|
- },
|
|
|
- 'onStateChange': function(e) {
|
|
|
-
|
|
|
- mejs.YouTubeApi.handleStateChange(e.data, player, pluginMediaElement);
|
|
|
-
|
|
|
- }
|
|
|
+
|
|
|
+ player.isInIframe = _window2.default.location !== _window2.default.parent.location;
|
|
|
+
|
|
|
+ player.detectFullscreenMode();
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ fullscreenTitle = (0, _general.isString)(t.options.fullscreenText) ? t.options.fullscreenText : _i18n2.default.t('mejs.fullscreen'),
|
|
|
+ fullscreenBtn = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ fullscreenBtn.className = t.options.classPrefix + 'button ' + t.options.classPrefix + 'fullscreen-button';
|
|
|
+ fullscreenBtn.innerHTML = '<button type="button" aria-controls="' + t.id + '" title="' + fullscreenTitle + '" aria-label="' + fullscreenTitle + '" tabindex="0"></button>';
|
|
|
+ t.addControlElement(fullscreenBtn, 'fullscreen');
|
|
|
+
|
|
|
+ fullscreenBtn.addEventListener('click', function () {
|
|
|
+ var isFullScreen = Features.HAS_TRUE_NATIVE_FULLSCREEN && Features.IS_FULLSCREEN || player.isFullScreen;
|
|
|
+
|
|
|
+ if (isFullScreen) {
|
|
|
+ player.exitFullScreen();
|
|
|
+ } else {
|
|
|
+ player.enterFullScreen();
|
|
|
}
|
|
|
});
|
|
|
- },
|
|
|
-
|
|
|
- createEvent: function (player, pluginMediaElement, eventName) {
|
|
|
- var event = {
|
|
|
- type: eventName,
|
|
|
- target: pluginMediaElement
|
|
|
+
|
|
|
+ player.fullscreenBtn = fullscreenBtn;
|
|
|
+
|
|
|
+ t.exitFullscreenCallback = function (e) {
|
|
|
+ var key = e.which || e.keyCode || 0;
|
|
|
+ if (key === 27 && (Features.HAS_TRUE_NATIVE_FULLSCREEN && Features.IS_FULLSCREEN || t.isFullScreen)) {
|
|
|
+ player.exitFullScreen();
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
- if (player && player.getDuration) {
|
|
|
-
|
|
|
- // time
|
|
|
- pluginMediaElement.currentTime = event.currentTime = player.getCurrentTime();
|
|
|
- pluginMediaElement.duration = event.duration = player.getDuration();
|
|
|
-
|
|
|
- // state
|
|
|
- event.paused = pluginMediaElement.paused;
|
|
|
- event.ended = pluginMediaElement.ended;
|
|
|
-
|
|
|
- // sound
|
|
|
- event.muted = player.isMuted();
|
|
|
- event.volume = player.getVolume() / 100;
|
|
|
-
|
|
|
- // progress
|
|
|
- event.bytesTotal = player.getVideoBytesTotal();
|
|
|
- event.bufferedBytes = player.getVideoBytesLoaded();
|
|
|
-
|
|
|
- // fake the W3C buffered TimeRange
|
|
|
- var bufferedTime = event.bufferedBytes / event.bytesTotal * event.duration;
|
|
|
-
|
|
|
- event.target.buffered = event.buffered = {
|
|
|
- start: function(index) {
|
|
|
- return 0;
|
|
|
- },
|
|
|
- end: function (index) {
|
|
|
- return bufferedTime;
|
|
|
- },
|
|
|
- length: 1
|
|
|
+ t.globalBind('keydown', t.exitFullscreenCallback);
|
|
|
+
|
|
|
+ t.normalHeight = 0;
|
|
|
+ t.normalWidth = 0;
|
|
|
+
|
|
|
+ if (Features.HAS_TRUE_NATIVE_FULLSCREEN) {
|
|
|
+ var fullscreenChanged = function fullscreenChanged() {
|
|
|
+ if (player.isFullScreen) {
|
|
|
+ if (Features.isFullScreen()) {
|
|
|
+ player.isNativeFullScreen = true;
|
|
|
+
|
|
|
+ player.setControlsSize();
|
|
|
+ } else {
|
|
|
+ player.isNativeFullScreen = false;
|
|
|
+
|
|
|
+ player.exitFullScreen();
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
+ player.globalBind(Features.FULLSCREEN_EVENT_NAME, fullscreenChanged);
|
|
|
}
|
|
|
-
|
|
|
- // send event up the chain
|
|
|
- pluginMediaElement.dispatchEvent(event);
|
|
|
- },
|
|
|
-
|
|
|
- iFrameReady: function() {
|
|
|
-
|
|
|
- this.isLoaded = true;
|
|
|
- this.isIframeLoaded = true;
|
|
|
-
|
|
|
- while (this.iframeQueue.length > 0) {
|
|
|
- var settings = this.iframeQueue.pop();
|
|
|
- this.createIframe(settings);
|
|
|
- }
|
|
|
},
|
|
|
-
|
|
|
- // FLASH!
|
|
|
- flashPlayers: {},
|
|
|
- createFlash: function(settings) {
|
|
|
-
|
|
|
- this.flashPlayers[settings.pluginId] = settings;
|
|
|
-
|
|
|
- /*
|
|
|
- settings.container.innerHTML =
|
|
|
- '<object type="application/x-shockwave-flash" id="' + settings.pluginId + '" data="' + settings.scheme + 'www.youtube.com/apiplayer?enablejsapi=1&playerapiid=' + settings.pluginId + '&version=3&autoplay=0&controls=0&modestbranding=1&loop=0" ' +
|
|
|
- 'width="' + settings.width + '" height="' + settings.height + '" style="visibility: visible; " class="mejs-shim">' +
|
|
|
- '<param name="allowScriptAccess" value="sameDomain">' +
|
|
|
- '<param name="wmode" value="transparent">' +
|
|
|
- '</object>';
|
|
|
- */
|
|
|
-
|
|
|
- var specialIEContainer,
|
|
|
- youtubeUrl = settings.scheme + 'www.youtube.com/apiplayer?enablejsapi=1&playerapiid=' + settings.pluginId + '&version=3&autoplay=0&controls=0&modestbranding=1&loop=0';
|
|
|
-
|
|
|
- if (mejs.MediaFeatures.isIE) {
|
|
|
-
|
|
|
- specialIEContainer = document.createElement('div');
|
|
|
- settings.container.appendChild(specialIEContainer);
|
|
|
- specialIEContainer.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="' + settings.scheme + 'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" ' +
|
|
|
-'id="' + settings.pluginId + '" width="' + settings.width + '" height="' + settings.height + '" class="mejs-shim">' +
|
|
|
- '<param name="movie" value="' + youtubeUrl + '" />' +
|
|
|
- '<param name="wmode" value="transparent" />' +
|
|
|
- '<param name="allowScriptAccess" value="' + options.flashScriptAccess + '" />' +
|
|
|
- '<param name="allowFullScreen" value="true" />' +
|
|
|
-'</object>';
|
|
|
- } else {
|
|
|
- settings.container.innerHTML =
|
|
|
- '<object type="application/x-shockwave-flash" id="' + settings.pluginId + '" data="' + youtubeUrl + '" ' +
|
|
|
- 'width="' + settings.width + '" height="' + settings.height + '" style="visibility: visible; " class="mejs-shim">' +
|
|
|
- '<param name="allowScriptAccess" value="' + options.flashScriptAccess + '">' +
|
|
|
- '<param name="wmode" value="transparent">' +
|
|
|
- '</object>';
|
|
|
- }
|
|
|
-
|
|
|
+ cleanfullscreen: function cleanfullscreen(player) {
|
|
|
+ player.exitFullScreen();
|
|
|
+ player.globalUnbind('keydown', player.exitFullscreenCallback);
|
|
|
},
|
|
|
-
|
|
|
- flashReady: function(id) {
|
|
|
- var
|
|
|
- settings = this.flashPlayers[id],
|
|
|
- player = document.getElementById(id),
|
|
|
- pluginMediaElement = settings.pluginMediaElement;
|
|
|
-
|
|
|
- // hook up and return to MediaELementPlayer.success
|
|
|
- pluginMediaElement.pluginApi =
|
|
|
- pluginMediaElement.pluginElement = player;
|
|
|
-
|
|
|
- settings.success(pluginMediaElement, pluginMediaElement.pluginElement);
|
|
|
-
|
|
|
- // load the youtube video
|
|
|
- player.cueVideoById(settings.videoId);
|
|
|
-
|
|
|
- var callbackName = settings.containerId + '_callback';
|
|
|
-
|
|
|
- window[callbackName] = function(e) {
|
|
|
- mejs.YouTubeApi.handleStateChange(e, player, pluginMediaElement);
|
|
|
- };
|
|
|
-
|
|
|
- player.addEventListener('onStateChange', callbackName);
|
|
|
-
|
|
|
- setInterval(function() {
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate');
|
|
|
- }, 250);
|
|
|
-
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'canplay');
|
|
|
+ detectFullscreenMode: function detectFullscreenMode() {
|
|
|
+ var t = this,
|
|
|
+ isNative = t.media.rendererName !== null && /(native|html5)/i.test(t.media.rendererName);
|
|
|
+
|
|
|
+ var mode = '';
|
|
|
+
|
|
|
+ if (Features.HAS_TRUE_NATIVE_FULLSCREEN && isNative) {
|
|
|
+ mode = 'native-native';
|
|
|
+ } else if (Features.HAS_TRUE_NATIVE_FULLSCREEN && !isNative) {
|
|
|
+ mode = 'plugin-native';
|
|
|
+ } else if (t.usePluginFullScreen && Features.SUPPORT_POINTER_EVENTS) {
|
|
|
+ mode = 'plugin-click';
|
|
|
+ }
|
|
|
+
|
|
|
+ t.fullscreenMode = mode;
|
|
|
+ return mode;
|
|
|
},
|
|
|
-
|
|
|
- handleStateChange: function(youTubeState, player, pluginMediaElement) {
|
|
|
- switch (youTubeState) {
|
|
|
- case -1: // not started
|
|
|
- pluginMediaElement.paused = true;
|
|
|
- pluginMediaElement.ended = true;
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'loadedmetadata');
|
|
|
- //createYouTubeEvent(player, pluginMediaElement, 'loadeddata');
|
|
|
- break;
|
|
|
- case 0:
|
|
|
- pluginMediaElement.paused = false;
|
|
|
- pluginMediaElement.ended = true;
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'ended');
|
|
|
- break;
|
|
|
- case 1:
|
|
|
- pluginMediaElement.paused = false;
|
|
|
- pluginMediaElement.ended = false;
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'play');
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'playing');
|
|
|
- break;
|
|
|
- case 2:
|
|
|
- pluginMediaElement.paused = true;
|
|
|
- pluginMediaElement.ended = false;
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'pause');
|
|
|
- break;
|
|
|
- case 3: // buffering
|
|
|
- mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'progress');
|
|
|
- break;
|
|
|
- case 5:
|
|
|
- // cued?
|
|
|
- break;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-}
|
|
|
-// IFRAME
|
|
|
-window.onYouTubePlayerAPIReady = function() {
|
|
|
- mejs.YouTubeApi.iFrameReady();
|
|
|
-};
|
|
|
-// FLASH
|
|
|
-window.onYouTubePlayerReady = function(id) {
|
|
|
- mejs.YouTubeApi.flashReady(id);
|
|
|
-};
|
|
|
+ enterFullScreen: function enterFullScreen() {
|
|
|
+ var t = this,
|
|
|
+ isNative = t.media.rendererName !== null && /(html5|native)/i.test(t.media.rendererName),
|
|
|
+ containerStyles = getComputedStyle(t.container);
|
|
|
|
|
|
-window.mejs = mejs;
|
|
|
-window.MediaElement = mejs.MediaElement;
|
|
|
+ if (t.options.useFakeFullscreen === false && Features.IS_IOS && Features.HAS_IOS_FULLSCREEN && typeof t.media.originalNode.webkitEnterFullscreen === 'function' && t.media.originalNode.canPlayType((0, _media.getTypeFromFile)(t.media.getSrc()))) {
|
|
|
+ t.media.originalNode.webkitEnterFullscreen();
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
-/**
|
|
|
- * Localize strings
|
|
|
- *
|
|
|
- * Include translations from JS files and method to pluralize properly strings.
|
|
|
- *
|
|
|
- */
|
|
|
-(function (doc, win, mejs, undefined) {
|
|
|
-
|
|
|
- var i18n = {
|
|
|
- /**
|
|
|
- * @type {String}
|
|
|
- */
|
|
|
- 'default': 'en',
|
|
|
-
|
|
|
- /**
|
|
|
- * @type {String[]}
|
|
|
- */
|
|
|
- locale: {
|
|
|
- language: (mejs.i18n && mejs.i18n.locale.language) || '',
|
|
|
- strings: (mejs.i18n && mejs.i18n.locale.strings) || {}
|
|
|
+ (0, _dom.addClass)(_document2.default.documentElement, t.options.classPrefix + 'fullscreen');
|
|
|
+ (0, _dom.addClass)(t.container, t.options.classPrefix + 'container-fullscreen');
|
|
|
+
|
|
|
+ t.normalHeight = parseFloat(containerStyles.height);
|
|
|
+ t.normalWidth = parseFloat(containerStyles.width);
|
|
|
+
|
|
|
+ if (t.fullscreenMode === 'native-native' || t.fullscreenMode === 'plugin-native') {
|
|
|
+ Features.requestFullScreen(t.container);
|
|
|
+
|
|
|
+ if (t.isInIframe) {
|
|
|
+ setTimeout(function checkFullscreen() {
|
|
|
+
|
|
|
+ if (t.isNativeFullScreen) {
|
|
|
+ var percentErrorMargin = 0.002,
|
|
|
+ windowWidth = _window2.default.innerWidth || _document2.default.documentElement.clientWidth || _document2.default.body.clientWidth,
|
|
|
+ screenWidth = screen.width,
|
|
|
+ absDiff = Math.abs(screenWidth - windowWidth),
|
|
|
+ marginError = screenWidth * percentErrorMargin;
|
|
|
+
|
|
|
+ if (absDiff > marginError) {
|
|
|
+ t.exitFullScreen();
|
|
|
+ } else {
|
|
|
+ setTimeout(checkFullscreen, 500);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.container.style.width = '100%';
|
|
|
+ t.container.style.height = '100%';
|
|
|
+
|
|
|
+ t.containerSizeTimeout = setTimeout(function () {
|
|
|
+ t.container.style.width = '100%';
|
|
|
+ t.container.style.height = '100%';
|
|
|
+ t.setControlsSize();
|
|
|
+ }, 500);
|
|
|
+
|
|
|
+ if (isNative) {
|
|
|
+ t.node.style.width = '100%';
|
|
|
+ t.node.style.height = '100%';
|
|
|
+ } else {
|
|
|
+ var elements = t.container.querySelectorAll('embed, object, video'),
|
|
|
+ _total = elements.length;
|
|
|
+ for (var i = 0; i < _total; i++) {
|
|
|
+ elements[i].style.width = '100%';
|
|
|
+ elements[i].style.height = '100%';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.setDimensions && typeof t.media.setSize === 'function') {
|
|
|
+ t.media.setSize(screen.width, screen.height);
|
|
|
+ }
|
|
|
+
|
|
|
+ var layers = t.layers.children,
|
|
|
+ total = layers.length;
|
|
|
+ for (var _i = 0; _i < total; _i++) {
|
|
|
+ layers[_i].style.width = '100%';
|
|
|
+ layers[_i].style.height = '100%';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.fullscreenBtn) {
|
|
|
+ (0, _dom.removeClass)(t.fullscreenBtn, t.options.classPrefix + 'fullscreen');
|
|
|
+ (0, _dom.addClass)(t.fullscreenBtn, t.options.classPrefix + 'unfullscreen');
|
|
|
+ }
|
|
|
+
|
|
|
+ t.setControlsSize();
|
|
|
+ t.isFullScreen = true;
|
|
|
+
|
|
|
+ var zoomFactor = Math.min(screen.width / t.width, screen.height / t.height),
|
|
|
+ captionText = t.container.querySelector('.' + t.options.classPrefix + 'captions-text');
|
|
|
+ if (captionText) {
|
|
|
+ captionText.style.fontSize = zoomFactor * 100 + '%';
|
|
|
+ captionText.style.lineHeight = 'normal';
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'captions-position').style.bottom = '45px';
|
|
|
+ }
|
|
|
+ var event = (0, _general.createEvent)('enteredfullscreen', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ },
|
|
|
+ exitFullScreen: function exitFullScreen() {
|
|
|
+ var t = this,
|
|
|
+ isNative = t.media.rendererName !== null && /(native|html5)/i.test(t.media.rendererName);
|
|
|
+
|
|
|
+ clearTimeout(t.containerSizeTimeout);
|
|
|
+
|
|
|
+ if (Features.HAS_TRUE_NATIVE_FULLSCREEN && (Features.IS_FULLSCREEN || t.isFullScreen)) {
|
|
|
+ Features.cancelFullScreen();
|
|
|
+ }
|
|
|
+
|
|
|
+ (0, _dom.removeClass)(_document2.default.documentElement, t.options.classPrefix + 'fullscreen');
|
|
|
+ (0, _dom.removeClass)(t.container, t.options.classPrefix + 'container-fullscreen');
|
|
|
+
|
|
|
+ if (t.options.setDimensions) {
|
|
|
+ t.container.style.width = t.normalWidth + 'px';
|
|
|
+ t.container.style.height = t.normalHeight + 'px';
|
|
|
+
|
|
|
+ if (isNative) {
|
|
|
+ t.node.style.width = t.normalWidth + 'px';
|
|
|
+ t.node.style.height = t.normalHeight + 'px';
|
|
|
+ } else {
|
|
|
+ var elements = t.container.querySelectorAll('embed, object, video'),
|
|
|
+ _total2 = elements.length;
|
|
|
+ for (var i = 0; i < _total2; i++) {
|
|
|
+ elements[i].style.width = t.normalWidth + 'px';
|
|
|
+ elements[i].style.height = t.normalHeight + 'px';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (typeof t.media.setSize === 'function') {
|
|
|
+ t.media.setSize(t.normalWidth, t.normalHeight);
|
|
|
+ }
|
|
|
+
|
|
|
+ var layers = t.layers.children,
|
|
|
+ total = layers.length;
|
|
|
+ for (var _i2 = 0; _i2 < total; _i2++) {
|
|
|
+ layers[_i2].style.width = t.normalWidth + 'px';
|
|
|
+ layers[_i2].style.height = t.normalHeight + 'px';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.fullscreenBtn) {
|
|
|
+ (0, _dom.removeClass)(t.fullscreenBtn, t.options.classPrefix + 'unfullscreen');
|
|
|
+ (0, _dom.addClass)(t.fullscreenBtn, t.options.classPrefix + 'fullscreen');
|
|
|
+ }
|
|
|
+
|
|
|
+ t.setControlsSize();
|
|
|
+ t.isFullScreen = false;
|
|
|
+
|
|
|
+ var captionText = t.container.querySelector('.' + t.options.classPrefix + 'captions-text');
|
|
|
+ if (captionText) {
|
|
|
+ captionText.style.fontSize = '';
|
|
|
+ captionText.style.lineHeight = '';
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'captions-position').style.bottom = '';
|
|
|
+ }
|
|
|
+ var event = (0, _general.createEvent)('exitedfullscreen', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+},{"16":16,"2":2,"25":25,"26":26,"27":27,"28":28,"3":3,"5":5}],10:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _player = _dereq_(16);
|
|
|
+
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
+
|
|
|
+var _i18n = _dereq_(5);
|
|
|
+
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ playText: null,
|
|
|
+
|
|
|
+ pauseText: null
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ buildplaypause: function buildplaypause(player, controls, layers, media) {
|
|
|
+ var t = this,
|
|
|
+ op = t.options,
|
|
|
+ playTitle = (0, _general.isString)(op.playText) ? op.playText : _i18n2.default.t('mejs.play'),
|
|
|
+ pauseTitle = (0, _general.isString)(op.pauseText) ? op.pauseText : _i18n2.default.t('mejs.pause'),
|
|
|
+ play = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ play.className = t.options.classPrefix + 'button ' + t.options.classPrefix + 'playpause-button ' + t.options.classPrefix + 'play';
|
|
|
+ play.innerHTML = '<button type="button" aria-controls="' + t.id + '" title="' + playTitle + '" aria-label="' + pauseTitle + '" tabindex="0"></button>';
|
|
|
+ play.addEventListener('click', function () {
|
|
|
+ if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ var playBtn = play.querySelector('button');
|
|
|
+ t.addControlElement(play, 'playpause');
|
|
|
+
|
|
|
+ function togglePlayPause(which) {
|
|
|
+ if ('play' === which) {
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'play');
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'replay');
|
|
|
+ (0, _dom.addClass)(play, t.options.classPrefix + 'pause');
|
|
|
+ playBtn.setAttribute('title', pauseTitle);
|
|
|
+ playBtn.setAttribute('aria-label', pauseTitle);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'pause');
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'replay');
|
|
|
+ (0, _dom.addClass)(play, t.options.classPrefix + 'play');
|
|
|
+ playBtn.setAttribute('title', playTitle);
|
|
|
+ playBtn.setAttribute('aria-label', playTitle);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ togglePlayPause('pse');
|
|
|
+
|
|
|
+ media.addEventListener('loadedmetadata', function () {
|
|
|
+ if (media.rendererName.indexOf('flash') === -1) {
|
|
|
+ togglePlayPause('pse');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ media.addEventListener('play', function () {
|
|
|
+ togglePlayPause('play');
|
|
|
+ });
|
|
|
+ media.addEventListener('playing', function () {
|
|
|
+ togglePlayPause('play');
|
|
|
+ });
|
|
|
+ media.addEventListener('pause', function () {
|
|
|
+ togglePlayPause('pse');
|
|
|
+ });
|
|
|
+ media.addEventListener('ended', function () {
|
|
|
+ if (!player.options.loop) {
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'pause');
|
|
|
+ (0, _dom.removeClass)(play, t.options.classPrefix + 'play');
|
|
|
+ (0, _dom.addClass)(play, t.options.classPrefix + 'replay');
|
|
|
+ playBtn.setAttribute('title', playTitle);
|
|
|
+ playBtn.setAttribute('aria-label', playTitle);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+},{"16":16,"2":2,"26":26,"27":27,"5":5}],11:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _player = _dereq_(16);
|
|
|
+
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
+
|
|
|
+var _i18n = _dereq_(5);
|
|
|
+
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
+
|
|
|
+var _constants = _dereq_(25);
|
|
|
+
|
|
|
+var _time = _dereq_(30);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ enableProgressTooltip: true,
|
|
|
+
|
|
|
+ useSmoothHover: true,
|
|
|
+
|
|
|
+ forceLive: false
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ buildprogress: function buildprogress(player, controls, layers, media) {
|
|
|
+
|
|
|
+ var lastKeyPressTime = 0,
|
|
|
+ mouseIsDown = false,
|
|
|
+ startedPaused = false;
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ autoRewindInitial = player.options.autoRewind,
|
|
|
+ tooltip = player.options.enableProgressTooltip ? '<span class="' + t.options.classPrefix + 'time-float">' + ('<span class="' + t.options.classPrefix + 'time-float-current">00:00</span>') + ('<span class="' + t.options.classPrefix + 'time-float-corner"></span>') + '</span>' : '',
|
|
|
+ rail = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ rail.className = t.options.classPrefix + 'time-rail';
|
|
|
+ rail.innerHTML = '<span class="' + t.options.classPrefix + 'time-total ' + t.options.classPrefix + 'time-slider">' + ('<span class="' + t.options.classPrefix + 'time-buffering"></span>') + ('<span class="' + t.options.classPrefix + 'time-loaded"></span>') + ('<span class="' + t.options.classPrefix + 'time-current"></span>') + ('<span class="' + t.options.classPrefix + 'time-hovered no-hover"></span>') + ('<span class="' + t.options.classPrefix + 'time-handle"><span class="' + t.options.classPrefix + 'time-handle-content"></span></span>') + ('' + tooltip) + '</span>';
|
|
|
+
|
|
|
+ t.addControlElement(rail, 'progress');
|
|
|
+
|
|
|
+ controls.querySelector('.' + t.options.classPrefix + 'time-buffering').style.display = 'none';
|
|
|
+
|
|
|
+ t.rail = controls.querySelector('.' + t.options.classPrefix + 'time-rail');
|
|
|
+ t.total = controls.querySelector('.' + t.options.classPrefix + 'time-total');
|
|
|
+ t.loaded = controls.querySelector('.' + t.options.classPrefix + 'time-loaded');
|
|
|
+ t.current = controls.querySelector('.' + t.options.classPrefix + 'time-current');
|
|
|
+ t.handle = controls.querySelector('.' + t.options.classPrefix + 'time-handle');
|
|
|
+ t.timefloat = controls.querySelector('.' + t.options.classPrefix + 'time-float');
|
|
|
+ t.timefloatcurrent = controls.querySelector('.' + t.options.classPrefix + 'time-float-current');
|
|
|
+ t.slider = controls.querySelector('.' + t.options.classPrefix + 'time-slider');
|
|
|
+ t.hovered = controls.querySelector('.' + t.options.classPrefix + 'time-hovered');
|
|
|
+ t.newTime = 0;
|
|
|
+ t.forcedHandlePause = false;
|
|
|
+ t.setTransformStyle = function (element, value) {
|
|
|
+ element.style.transform = value;
|
|
|
+ element.style.webkitTransform = value;
|
|
|
+ element.style.MozTransform = value;
|
|
|
+ element.style.msTransform = value;
|
|
|
+ element.style.OTransform = value;
|
|
|
+ };
|
|
|
+
|
|
|
+ var handleMouseMove = function handleMouseMove(e) {
|
|
|
+ var totalStyles = getComputedStyle(t.total),
|
|
|
+ offsetStyles = (0, _dom.offset)(t.total),
|
|
|
+ width = t.total.offsetWidth,
|
|
|
+ transform = function () {
|
|
|
+ if (totalStyles.webkitTransform !== undefined) {
|
|
|
+ return 'webkitTransform';
|
|
|
+ } else if (totalStyles.mozTransform !== undefined) {
|
|
|
+ return 'mozTransform ';
|
|
|
+ } else if (totalStyles.oTransform !== undefined) {
|
|
|
+ return 'oTransform';
|
|
|
+ } else if (totalStyles.msTransform !== undefined) {
|
|
|
+ return 'msTransform';
|
|
|
+ } else {
|
|
|
+ return 'transform';
|
|
|
+ }
|
|
|
+ }(),
|
|
|
+ cssMatrix = function () {
|
|
|
+ if ('WebKitCSSMatrix' in window) {
|
|
|
+ return 'WebKitCSSMatrix';
|
|
|
+ } else if ('MSCSSMatrix' in window) {
|
|
|
+ return 'MSCSSMatrix';
|
|
|
+ } else if ('CSSMatrix' in window) {
|
|
|
+ return 'CSSMatrix';
|
|
|
+ }
|
|
|
+ }();
|
|
|
+
|
|
|
+ var percentage = 0,
|
|
|
+ leftPos = 0,
|
|
|
+ pos = 0,
|
|
|
+ x = void 0;
|
|
|
+
|
|
|
+ if (e.originalEvent && e.originalEvent.changedTouches) {
|
|
|
+ x = e.originalEvent.changedTouches[0].pageX;
|
|
|
+ } else if (e.changedTouches) {
|
|
|
+ x = e.changedTouches[0].pageX;
|
|
|
+ } else {
|
|
|
+ x = e.pageX;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.getDuration()) {
|
|
|
+ if (x < offsetStyles.left) {
|
|
|
+ x = offsetStyles.left;
|
|
|
+ } else if (x > width + offsetStyles.left) {
|
|
|
+ x = width + offsetStyles.left;
|
|
|
+ }
|
|
|
+
|
|
|
+ pos = x - offsetStyles.left;
|
|
|
+ percentage = pos / width;
|
|
|
+ t.newTime = percentage <= 0.02 ? 0 : percentage * t.getDuration();
|
|
|
+
|
|
|
+ if (mouseIsDown && t.getCurrentTime() !== null && t.newTime.toFixed(4) !== t.getCurrentTime().toFixed(4)) {
|
|
|
+ t.setCurrentRailHandle(t.newTime);
|
|
|
+ t.updateCurrent(t.newTime);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!_constants.IS_IOS && !_constants.IS_ANDROID && t.timefloat) {
|
|
|
+ if (pos < 0) {
|
|
|
+ pos = 0;
|
|
|
+ }
|
|
|
+ if (t.options.useSmoothHover && cssMatrix !== null && typeof window[cssMatrix] !== 'undefined') {
|
|
|
+ var matrix = new window[cssMatrix](getComputedStyle(t.handle)[transform]),
|
|
|
+ handleLocation = matrix.m41,
|
|
|
+ hoverScaleX = pos / parseFloat(getComputedStyle(t.total).width) - handleLocation / parseFloat(getComputedStyle(t.total).width);
|
|
|
+
|
|
|
+ t.hovered.style.left = handleLocation + 'px';
|
|
|
+ t.setTransformStyle(t.hovered, 'scaleX(' + hoverScaleX + ')');
|
|
|
+ t.hovered.setAttribute('pos', pos);
|
|
|
+
|
|
|
+ if (hoverScaleX >= 0) {
|
|
|
+ (0, _dom.removeClass)(t.hovered, 'negative');
|
|
|
+ } else {
|
|
|
+ (0, _dom.addClass)(t.hovered, 'negative');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ var half = t.timefloat.offsetWidth / 2;
|
|
|
+ if (x <= t.timefloat.offsetWidth + half) {
|
|
|
+ leftPos = half;
|
|
|
+ } else if (x >= t.container.offsetWidth - half) {
|
|
|
+ leftPos = t.total.offsetWidth - half;
|
|
|
+ } else {
|
|
|
+ leftPos = pos;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.timefloat.style.left = leftPos + 'px';
|
|
|
+ t.timefloatcurrent.innerHTML = (0, _time.secondsToTimeCode)(t.newTime, player.options.alwaysShowHours, player.options.showTimecodeFrameCount, player.options.framesPerSecond, player.options.secondsDecimalLength);
|
|
|
+ t.timefloat.style.display = 'block';
|
|
|
+ }
|
|
|
+ } else if (!_constants.IS_IOS && !_constants.IS_ANDROID && t.timefloat) {
|
|
|
+ leftPos = t.timefloat.offsetWidth + width >= t.container.offsetWidth ? t.timefloat.offsetWidth / 2 : 0;
|
|
|
+ t.timefloat.style.left = leftPos + 'px';
|
|
|
+ t.timefloat.style.left = leftPos + 'px';
|
|
|
+ t.timefloat.style.display = 'block';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ updateSlider = function updateSlider() {
|
|
|
+ var seconds = t.getCurrentTime(),
|
|
|
+ timeSliderText = _i18n2.default.t('mejs.time-slider'),
|
|
|
+ time = (0, _time.secondsToTimeCode)(seconds, player.options.alwaysShowHours, player.options.showTimecodeFrameCount, player.options.framesPerSecond, player.options.secondsDecimalLength),
|
|
|
+ duration = t.getDuration();
|
|
|
+
|
|
|
+ t.slider.setAttribute('role', 'slider');
|
|
|
+ t.slider.tabIndex = 0;
|
|
|
+
|
|
|
+ if (media.paused) {
|
|
|
+ t.slider.setAttribute('aria-label', timeSliderText);
|
|
|
+ t.slider.setAttribute('aria-valuemin', 0);
|
|
|
+ t.slider.setAttribute('aria-valuemax', duration);
|
|
|
+ t.slider.setAttribute('aria-valuenow', seconds);
|
|
|
+ t.slider.setAttribute('aria-valuetext', time);
|
|
|
+ } else {
|
|
|
+ t.slider.removeAttribute('aria-label');
|
|
|
+ t.slider.removeAttribute('aria-valuemin');
|
|
|
+ t.slider.removeAttribute('aria-valuemax');
|
|
|
+ t.slider.removeAttribute('aria-valuenow');
|
|
|
+ t.slider.removeAttribute('aria-valuetext');
|
|
|
+ }
|
|
|
},
|
|
|
+ restartPlayer = function restartPlayer() {
|
|
|
+ if (new Date() - lastKeyPressTime >= 1000) {
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleMouseup = function handleMouseup() {
|
|
|
+ if (mouseIsDown && t.getCurrentTime() !== null && t.newTime.toFixed(4) !== t.getCurrentTime().toFixed(4)) {
|
|
|
+ t.setCurrentTime(t.newTime);
|
|
|
+ t.setCurrentRail();
|
|
|
+ t.updateCurrent(t.newTime);
|
|
|
+ }
|
|
|
+ if (t.forcedHandlePause) {
|
|
|
+ t.slider.focus();
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+ t.forcedHandlePause = false;
|
|
|
+ };
|
|
|
+
|
|
|
+ t.slider.addEventListener('focus', function () {
|
|
|
+ player.options.autoRewind = false;
|
|
|
+ });
|
|
|
+ t.slider.addEventListener('blur', function () {
|
|
|
+ player.options.autoRewind = autoRewindInitial;
|
|
|
+ });
|
|
|
+ t.slider.addEventListener('keydown', function (e) {
|
|
|
+ if (new Date() - lastKeyPressTime >= 1000) {
|
|
|
+ startedPaused = t.paused;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.keyActions.length) {
|
|
|
+
|
|
|
+ var keyCode = e.which || e.keyCode || 0,
|
|
|
+ duration = t.getDuration(),
|
|
|
+ seekForward = player.options.defaultSeekForwardInterval(media),
|
|
|
+ seekBackward = player.options.defaultSeekBackwardInterval(media);
|
|
|
+
|
|
|
+ var seekTime = t.getCurrentTime();
|
|
|
+
|
|
|
+ switch (keyCode) {
|
|
|
+ case 37:
|
|
|
+ case 40:
|
|
|
+ if (t.getDuration() !== Infinity) {
|
|
|
+ seekTime -= seekBackward;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 39:
|
|
|
+ case 38:
|
|
|
+ if (t.getDuration() !== Infinity) {
|
|
|
+ seekTime += seekForward;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 36:
|
|
|
+ seekTime = 0;
|
|
|
+ break;
|
|
|
+ case 35:
|
|
|
+ seekTime = duration;
|
|
|
+ break;
|
|
|
+ case 32:
|
|
|
+ if (!_constants.IS_FIREFOX) {
|
|
|
+ if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ case 13:
|
|
|
+ if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ default:
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ seekTime = seekTime < 0 ? 0 : seekTime >= duration ? duration : Math.floor(seekTime);
|
|
|
+ lastKeyPressTime = new Date();
|
|
|
+ if (!startedPaused) {
|
|
|
+ player.pause();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (seekTime < t.getDuration() && !startedPaused) {
|
|
|
+ setTimeout(restartPlayer, 1100);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.setCurrentTime(seekTime);
|
|
|
+
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ var events = ['mousedown', 'touchstart'];
|
|
|
+
|
|
|
+ t.slider.addEventListener('dragstart', function () {
|
|
|
+ return false;
|
|
|
+ });
|
|
|
+
|
|
|
+ for (var i = 0, total = events.length; i < total; i++) {
|
|
|
+ t.slider.addEventListener(events[i], function (e) {
|
|
|
+ t.forcedHandlePause = false;
|
|
|
+ if (t.getDuration() !== Infinity) {
|
|
|
+ if (e.which === 1 || e.which === 0) {
|
|
|
+ if (!t.paused) {
|
|
|
+ t.pause();
|
|
|
+ t.forcedHandlePause = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ mouseIsDown = true;
|
|
|
+ handleMouseMove(e);
|
|
|
+ var endEvents = ['mouseup', 'touchend'];
|
|
|
+
|
|
|
+ for (var j = 0, totalEvents = endEvents.length; j < totalEvents; j++) {
|
|
|
+ t.container.addEventListener(endEvents[j], function (event) {
|
|
|
+ var target = event.target;
|
|
|
+ if (target === t.slider || target.closest('.' + t.options.classPrefix + 'time-slider')) {
|
|
|
+ handleMouseMove(event);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ t.globalBind('mouseup.dur touchend.dur', function () {
|
|
|
+ handleMouseup();
|
|
|
+ mouseIsDown = false;
|
|
|
+ if (t.timefloat) {
|
|
|
+ t.timefloat.style.display = 'none';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ t.slider.addEventListener('mouseenter', function (e) {
|
|
|
+ if (e.target === t.slider && t.getDuration() !== Infinity) {
|
|
|
+ t.container.addEventListener('mousemove', function (event) {
|
|
|
+ var target = event.target;
|
|
|
+ if (target === t.slider || target.closest('.' + t.options.classPrefix + 'time-slider')) {
|
|
|
+ handleMouseMove(event);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (t.timefloat && !_constants.IS_IOS && !_constants.IS_ANDROID) {
|
|
|
+ t.timefloat.style.display = 'block';
|
|
|
+ }
|
|
|
+ if (t.hovered && !_constants.IS_IOS && !_constants.IS_ANDROID && t.options.useSmoothHover) {
|
|
|
+ (0, _dom.removeClass)(t.hovered, 'no-hover');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.slider.addEventListener('mouseleave', function () {
|
|
|
+ if (t.getDuration() !== Infinity) {
|
|
|
+ if (!mouseIsDown) {
|
|
|
+ if (t.timefloat) {
|
|
|
+ t.timefloat.style.display = 'none';
|
|
|
+ }
|
|
|
+ if (t.hovered && t.options.useSmoothHover) {
|
|
|
+ (0, _dom.addClass)(t.hovered, 'no-hover');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ t.broadcastCallback = function (e) {
|
|
|
+ var broadcast = controls.querySelector('.' + t.options.classPrefix + 'broadcast');
|
|
|
+ if (!t.options.forceLive && t.getDuration() !== Infinity) {
|
|
|
+ if (broadcast) {
|
|
|
+ t.slider.style.display = '';
|
|
|
+ broadcast.remove();
|
|
|
+ }
|
|
|
+
|
|
|
+ player.setProgressRail(e);
|
|
|
+ if (!t.forcedHandlePause) {
|
|
|
+ player.setCurrentRail(e);
|
|
|
+ }
|
|
|
+ updateSlider();
|
|
|
+ } else if (!broadcast || t.options.forceLive) {
|
|
|
+ var label = _document2.default.createElement('span');
|
|
|
+ label.className = t.options.classPrefix + 'broadcast';
|
|
|
+ label.innerText = _i18n2.default.t('mejs.live-broadcast');
|
|
|
+ t.slider.style.display = 'none';
|
|
|
+ t.rail.appendChild(label);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ media.addEventListener('progress', t.broadcastCallback);
|
|
|
+ media.addEventListener('timeupdate', t.broadcastCallback);
|
|
|
+
|
|
|
+ t.container.addEventListener('controlsresize', function (e) {
|
|
|
+ if (t.getDuration() !== Infinity) {
|
|
|
+ player.setProgressRail(e);
|
|
|
+ if (!t.forcedHandlePause) {
|
|
|
+ player.setCurrentRail(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ cleanprogress: function cleanprogress(player, controls, layers, media) {
|
|
|
+ media.removeEventListener('progress', player.broadcastCallback);
|
|
|
+ media.removeEventListener('timeupdate', player.broadcastCallback);
|
|
|
+ if (player.rail) {
|
|
|
+ player.rail.remove();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setProgressRail: function setProgressRail(e) {
|
|
|
+ var t = this,
|
|
|
+ target = e !== undefined ? e.detail.target || e.target : t.media;
|
|
|
+
|
|
|
+ var percent = null;
|
|
|
+
|
|
|
+ if (target && target.buffered && target.buffered.length > 0 && target.buffered.end && t.getDuration()) {
|
|
|
+ percent = target.buffered.end(target.buffered.length - 1) / t.getDuration();
|
|
|
+ } else if (target && target.bytesTotal !== undefined && target.bytesTotal > 0 && target.bufferedBytes !== undefined) {
|
|
|
+ percent = target.bufferedBytes / target.bytesTotal;
|
|
|
+ } else if (e && e.lengthComputable && e.total !== 0) {
|
|
|
+ percent = e.loaded / e.total;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (percent !== null) {
|
|
|
+ percent = Math.min(1, Math.max(0, percent));
|
|
|
+
|
|
|
+ if (t.loaded) {
|
|
|
+ t.setTransformStyle(t.loaded, 'scaleX(' + percent + ')');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setCurrentRailHandle: function setCurrentRailHandle(fakeTime) {
|
|
|
+ var t = this;
|
|
|
+ t.setCurrentRailMain(t, fakeTime);
|
|
|
+ },
|
|
|
+ setCurrentRail: function setCurrentRail() {
|
|
|
+ var t = this;
|
|
|
+ t.setCurrentRailMain(t);
|
|
|
+ },
|
|
|
+ setCurrentRailMain: function setCurrentRailMain(t, fakeTime) {
|
|
|
+ if (t.getCurrentTime() !== undefined && t.getDuration()) {
|
|
|
+ var nTime = typeof fakeTime === 'undefined' ? t.getCurrentTime() : fakeTime;
|
|
|
+
|
|
|
+ if (t.total && t.handle) {
|
|
|
+ var tW = parseFloat(getComputedStyle(t.total).width);
|
|
|
+
|
|
|
+ var newWidth = Math.round(tW * nTime / t.getDuration()),
|
|
|
+ handlePos = newWidth - Math.round(t.handle.offsetWidth / 2);
|
|
|
+
|
|
|
+ handlePos = handlePos < 0 ? 0 : handlePos;
|
|
|
+ t.setTransformStyle(t.current, 'scaleX(' + newWidth / tW + ')');
|
|
|
+ t.setTransformStyle(t.handle, 'translateX(' + handlePos + 'px)');
|
|
|
+
|
|
|
+ if (t.options.useSmoothHover && !(0, _dom.hasClass)(t.hovered, 'no-hover')) {
|
|
|
+ var pos = parseInt(t.hovered.getAttribute('pos'));
|
|
|
+ pos = isNaN(pos) ? 0 : pos;
|
|
|
+
|
|
|
+ var hoverScaleX = pos / tW - handlePos / tW;
|
|
|
+
|
|
|
+ t.hovered.style.left = handlePos + 'px';
|
|
|
+ t.setTransformStyle(t.hovered, 'scaleX(' + hoverScaleX + ')');
|
|
|
+
|
|
|
+ if (hoverScaleX >= 0) {
|
|
|
+ (0, _dom.removeClass)(t.hovered, 'negative');
|
|
|
+ } else {
|
|
|
+ (0, _dom.addClass)(t.hovered, 'negative');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+},{"16":16,"2":2,"25":25,"26":26,"30":30,"5":5}],12:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _player = _dereq_(16);
|
|
|
+
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
+
|
|
|
+var _time = _dereq_(30);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ duration: 0,
|
|
|
+
|
|
|
+ timeAndDurationSeparator: '<span> | </span>'
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ buildcurrent: function buildcurrent(player, controls, layers, media) {
|
|
|
+ var t = this,
|
|
|
+ time = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ time.className = t.options.classPrefix + 'time';
|
|
|
+ time.setAttribute('role', 'timer');
|
|
|
+ time.setAttribute('aria-live', 'off');
|
|
|
+ time.innerHTML = '<span class="' + t.options.classPrefix + 'currenttime">' + (0, _time.secondsToTimeCode)(0, player.options.alwaysShowHours, player.options.showTimecodeFrameCount, player.options.framesPerSecond, player.options.secondsDecimalLength) + '</span>';
|
|
|
+
|
|
|
+ t.addControlElement(time, 'current');
|
|
|
+ t.updateTimeCallback = function () {
|
|
|
+ if (t.controlsAreVisible) {
|
|
|
+ player.updateCurrent();
|
|
|
+ }
|
|
|
+ };
|
|
|
+ media.addEventListener('timeupdate', t.updateTimeCallback);
|
|
|
+ },
|
|
|
+ cleancurrent: function cleancurrent(player, controls, layers, media) {
|
|
|
+ media.removeEventListener('timeupdate', player.updateTimeCallback);
|
|
|
+ },
|
|
|
+ buildduration: function buildduration(player, controls, layers, media) {
|
|
|
+ var t = this,
|
|
|
+ currTime = controls.lastChild.querySelector('.' + t.options.classPrefix + 'currenttime');
|
|
|
+
|
|
|
+ if (currTime) {
|
|
|
+ controls.querySelector('.' + t.options.classPrefix + 'time').innerHTML += t.options.timeAndDurationSeparator + '<span class="' + t.options.classPrefix + 'duration">' + ((0, _time.secondsToTimeCode)(t.options.duration, t.options.alwaysShowHours, t.options.showTimecodeFrameCount, t.options.framesPerSecond, t.options.secondsDecimalLength) + '</span>');
|
|
|
+ } else {
|
|
|
+ if (controls.querySelector('.' + t.options.classPrefix + 'currenttime')) {
|
|
|
+ (0, _dom.addClass)(controls.querySelector('.' + t.options.classPrefix + 'currenttime').parentNode, t.options.classPrefix + 'currenttime-container');
|
|
|
+ }
|
|
|
+
|
|
|
+ var duration = _document2.default.createElement('div');
|
|
|
+ duration.className = t.options.classPrefix + 'time ' + t.options.classPrefix + 'duration-container';
|
|
|
+ duration.innerHTML = '<span class="' + t.options.classPrefix + 'duration">' + ((0, _time.secondsToTimeCode)(t.options.duration, t.options.alwaysShowHours, t.options.showTimecodeFrameCount, t.options.framesPerSecond, t.options.secondsDecimalLength) + '</span>');
|
|
|
+
|
|
|
+ t.addControlElement(duration, 'duration');
|
|
|
+ }
|
|
|
+
|
|
|
+ media.addEventListener('timeupdate', t.updateTimeCallback);
|
|
|
+ },
|
|
|
+ cleanduration: function cleanduration(player, controls, layers, media) {
|
|
|
+ media.removeEventListener('timeupdate', player.updateTimeCallback);
|
|
|
+ },
|
|
|
+ updateCurrent: function updateCurrent() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ var currentTime = t.getCurrentTime();
|
|
|
+
|
|
|
+ if (isNaN(currentTime)) {
|
|
|
+ currentTime = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ var timecode = (0, _time.secondsToTimeCode)(currentTime, t.options.alwaysShowHours, t.options.showTimecodeFrameCount, t.options.framesPerSecond, t.options.secondsDecimalLength);
|
|
|
+
|
|
|
+ if (timecode.length > 5) {
|
|
|
+ (0, _dom.addClass)(t.container, t.options.classPrefix + 'long-video');
|
|
|
+ } else {
|
|
|
+ (0, _dom.removeClass)(t.container, t.options.classPrefix + 'long-video');
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.controls.querySelector('.' + t.options.classPrefix + 'currenttime')) {
|
|
|
+ t.controls.querySelector('.' + t.options.classPrefix + 'currenttime').innerText = timecode;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ updateDuration: function updateDuration() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ var duration = t.getDuration();
|
|
|
+
|
|
|
+ if (isNaN(duration) || duration === Infinity || duration < 0) {
|
|
|
+ t.media.duration = t.options.duration = duration = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.duration > 0) {
|
|
|
+ duration = t.options.duration;
|
|
|
+ }
|
|
|
+
|
|
|
+ var timecode = (0, _time.secondsToTimeCode)(duration, t.options.alwaysShowHours, t.options.showTimecodeFrameCount, t.options.framesPerSecond, t.options.secondsDecimalLength);
|
|
|
+
|
|
|
+ if (timecode.length > 5) {
|
|
|
+ (0, _dom.addClass)(t.container, t.options.classPrefix + 'long-video');
|
|
|
+ } else {
|
|
|
+ (0, _dom.removeClass)(t.container, t.options.classPrefix + 'long-video');
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.controls.querySelector('.' + t.options.classPrefix + 'duration') && duration > 0) {
|
|
|
+ t.controls.querySelector('.' + t.options.classPrefix + 'duration').innerHTML = timecode;
|
|
|
+ }
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+},{"16":16,"2":2,"26":26,"30":30}],13:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _mejs = _dereq_(7);
|
|
|
+
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
+
|
|
|
+var _i18n = _dereq_(5);
|
|
|
+
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
+
|
|
|
+var _player = _dereq_(16);
|
|
|
+
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
+
|
|
|
+var _time = _dereq_(30);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ startLanguage: '',
|
|
|
+
|
|
|
+ tracksText: null,
|
|
|
+
|
|
|
+ chaptersText: null,
|
|
|
+
|
|
|
+ tracksAriaLive: false,
|
|
|
+
|
|
|
+ hideCaptionsButtonWhenEmpty: true,
|
|
|
+
|
|
|
+ toggleCaptionsButtonWhenOnlyOne: false,
|
|
|
+
|
|
|
+ slidesSelector: ''
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ hasChapters: false,
|
|
|
+
|
|
|
+ buildtracks: function buildtracks(player, controls, layers, media) {
|
|
|
+
|
|
|
+ if (!player.tracks.length && (!player.trackFiles || !player.trackFiles.length === 0)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ attr = t.options.tracksAriaLive ? ' role="log" aria-live="assertive" aria-atomic="false"' : '',
|
|
|
+ tracksTitle = (0, _general.isString)(t.options.tracksText) ? t.options.tracksText : _i18n2.default.t('mejs.captions-subtitles'),
|
|
|
+ chaptersTitle = (0, _general.isString)(t.options.chaptersText) ? t.options.chaptersText : _i18n2.default.t('mejs.captions-chapters'),
|
|
|
+ total = player.trackFiles === null ? player.tracks.length : player.trackFiles.length;
|
|
|
+
|
|
|
+ if (t.domNode.textTracks) {
|
|
|
+ for (var i = t.domNode.textTracks.length - 1; i >= 0; i--) {
|
|
|
+ t.domNode.textTracks[i].mode = 'hidden';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.cleartracks(player);
|
|
|
+
|
|
|
+ player.captions = _document2.default.createElement('div');
|
|
|
+ player.captions.className = t.options.classPrefix + 'captions-layer ' + t.options.classPrefix + 'layer';
|
|
|
+ player.captions.innerHTML = '<div class="' + t.options.classPrefix + 'captions-position ' + t.options.classPrefix + 'captions-position-hover"' + attr + '>' + ('<span class="' + t.options.classPrefix + 'captions-text"></span>') + '</div>';
|
|
|
+ player.captions.style.display = 'none';
|
|
|
+ layers.insertBefore(player.captions, layers.firstChild);
|
|
|
+
|
|
|
+ player.captionsText = player.captions.querySelector('.' + t.options.classPrefix + 'captions-text');
|
|
|
+
|
|
|
+ player.captionsButton = _document2.default.createElement('div');
|
|
|
+ player.captionsButton.className = t.options.classPrefix + 'button ' + t.options.classPrefix + 'captions-button';
|
|
|
+ player.captionsButton.innerHTML = '<button type="button" aria-controls="' + t.id + '" title="' + tracksTitle + '" aria-label="' + tracksTitle + '" tabindex="0"></button>' + ('<div class="' + t.options.classPrefix + 'captions-selector ' + t.options.classPrefix + 'offscreen">') + ('<ul class="' + t.options.classPrefix + 'captions-selector-list">') + ('<li class="' + t.options.classPrefix + 'captions-selector-list-item">') + ('<input type="radio" class="' + t.options.classPrefix + 'captions-selector-input" ') + ('name="' + player.id + '_captions" id="' + player.id + '_captions_none" ') + 'value="none" checked disabled>' + ('<label class="' + t.options.classPrefix + 'captions-selector-label ') + (t.options.classPrefix + 'captions-selected" ') + ('for="' + player.id + '_captions_none">' + _i18n2.default.t('mejs.none') + '</label>') + '</li>' + '</ul>' + '</div>';
|
|
|
+
|
|
|
+ t.addControlElement(player.captionsButton, 'tracks');
|
|
|
+
|
|
|
+ player.captionsButton.querySelector('.' + t.options.classPrefix + 'captions-selector-input').disabled = false;
|
|
|
+
|
|
|
+ player.chaptersButton = _document2.default.createElement('div');
|
|
|
+ player.chaptersButton.className = t.options.classPrefix + 'button ' + t.options.classPrefix + 'chapters-button';
|
|
|
+ player.chaptersButton.innerHTML = '<button type="button" aria-controls="' + t.id + '" title="' + chaptersTitle + '" aria-label="' + chaptersTitle + '" tabindex="0"></button>' + ('<div class="' + t.options.classPrefix + 'chapters-selector ' + t.options.classPrefix + 'offscreen">') + ('<ul class="' + t.options.classPrefix + 'chapters-selector-list"></ul>') + '</div>';
|
|
|
+
|
|
|
+ var subtitleCount = 0;
|
|
|
+
|
|
|
+ for (var _i = 0; _i < total; _i++) {
|
|
|
+ var kind = player.tracks[_i].kind,
|
|
|
+ src = player.tracks[_i].src;
|
|
|
+ if (src.trim()) {
|
|
|
+ if (kind === 'subtitles' || kind === 'captions') {
|
|
|
+ subtitleCount++;
|
|
|
+ } else if (kind === 'chapters' && !controls.querySelector('.' + t.options.classPrefix + 'chapter-selector')) {
|
|
|
+ player.captionsButton.parentNode.insertBefore(player.chaptersButton, player.captionsButton);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ player.trackToLoad = -1;
|
|
|
+ player.selectedTrack = null;
|
|
|
+ player.isLoadingTrack = false;
|
|
|
+
|
|
|
+ for (var _i2 = 0; _i2 < total; _i2++) {
|
|
|
+ var _kind = player.tracks[_i2].kind;
|
|
|
+ if (player.tracks[_i2].src.trim() && (_kind === 'subtitles' || _kind === 'captions')) {
|
|
|
+ player.addTrackButton(player.tracks[_i2].trackId, player.tracks[_i2].srclang, player.tracks[_i2].label);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ player.loadNextTrack();
|
|
|
+
|
|
|
+ var inEvents = ['mouseenter', 'focusin'],
|
|
|
+ outEvents = ['mouseleave', 'focusout'];
|
|
|
+
|
|
|
+ if (t.options.toggleCaptionsButtonWhenOnlyOne && subtitleCount === 1) {
|
|
|
+ player.captionsButton.addEventListener('click', function () {
|
|
|
+ var trackId = 'none';
|
|
|
+ if (player.selectedTrack === null) {
|
|
|
+ trackId = player.tracks[0].trackId;
|
|
|
+ }
|
|
|
+ player.setTrack(trackId);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ var labels = player.captionsButton.querySelectorAll('.' + t.options.classPrefix + 'captions-selector-label'),
|
|
|
+ captions = player.captionsButton.querySelectorAll('input[type=radio]');
|
|
|
+
|
|
|
+ for (var _i3 = 0, _total = inEvents.length; _i3 < _total; _i3++) {
|
|
|
+ player.captionsButton.addEventListener(inEvents[_i3], function () {
|
|
|
+ (0, _dom.removeClass)(this.querySelector('.' + t.options.classPrefix + 'captions-selector'), t.options.classPrefix + 'offscreen');
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i4 = 0, _total2 = outEvents.length; _i4 < _total2; _i4++) {
|
|
|
+ player.captionsButton.addEventListener(outEvents[_i4], function () {
|
|
|
+ (0, _dom.addClass)(this.querySelector('.' + t.options.classPrefix + 'captions-selector'), t.options.classPrefix + 'offscreen');
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i5 = 0, _total3 = captions.length; _i5 < _total3; _i5++) {
|
|
|
+ captions[_i5].addEventListener('click', function () {
|
|
|
+ player.setTrack(this.value);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i6 = 0, _total4 = labels.length; _i6 < _total4; _i6++) {
|
|
|
+ labels[_i6].addEventListener('click', function () {
|
|
|
+ var radio = (0, _dom.siblings)(this, function (el) {
|
|
|
+ return el.tagName === 'INPUT';
|
|
|
+ })[0],
|
|
|
+ event = (0, _general.createEvent)('click', radio);
|
|
|
+ radio.dispatchEvent(event);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ player.captionsButton.addEventListener('keydown', function (e) {
|
|
|
+ e.stopPropagation();
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i7 = 0, _total5 = inEvents.length; _i7 < _total5; _i7++) {
|
|
|
+ player.chaptersButton.addEventListener(inEvents[_i7], function () {
|
|
|
+ if (this.querySelector('.' + t.options.classPrefix + 'chapters-selector-list').children.length) {
|
|
|
+ (0, _dom.removeClass)(this.querySelector('.' + t.options.classPrefix + 'chapters-selector'), t.options.classPrefix + 'offscreen');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i8 = 0, _total6 = outEvents.length; _i8 < _total6; _i8++) {
|
|
|
+ player.chaptersButton.addEventListener(outEvents[_i8], function () {
|
|
|
+ (0, _dom.addClass)(this.querySelector('.' + t.options.classPrefix + 'chapters-selector'), t.options.classPrefix + 'offscreen');
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ player.chaptersButton.addEventListener('keydown', function (e) {
|
|
|
+ e.stopPropagation();
|
|
|
+ });
|
|
|
+
|
|
|
+ if (!player.options.alwaysShowControls) {
|
|
|
+ player.container.addEventListener('controlsshown', function () {
|
|
|
+ (0, _dom.addClass)(player.container.querySelector('.' + t.options.classPrefix + 'captions-position'), t.options.classPrefix + 'captions-position-hover');
|
|
|
+ });
|
|
|
+
|
|
|
+ player.container.addEventListener('controlshidden', function () {
|
|
|
+ if (!media.paused) {
|
|
|
+ (0, _dom.removeClass)(player.container.querySelector('.' + t.options.classPrefix + 'captions-position'), t.options.classPrefix + 'captions-position-hover');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ (0, _dom.addClass)(player.container.querySelector('.' + t.options.classPrefix + 'captions-position'), t.options.classPrefix + 'captions-position-hover');
|
|
|
+ }
|
|
|
+
|
|
|
+ media.addEventListener('timeupdate', function () {
|
|
|
+ player.displayCaptions();
|
|
|
+ });
|
|
|
+
|
|
|
+ if (player.options.slidesSelector !== '') {
|
|
|
+ player.slidesContainer = _document2.default.querySelectorAll(player.options.slidesSelector);
|
|
|
+
|
|
|
+ media.addEventListener('timeupdate', function () {
|
|
|
+ player.displaySlides();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ cleartracks: function cleartracks(player) {
|
|
|
+ if (player) {
|
|
|
+ if (player.captions) {
|
|
|
+ player.captions.remove();
|
|
|
+ }
|
|
|
+ if (player.chapters) {
|
|
|
+ player.chapters.remove();
|
|
|
+ }
|
|
|
+ if (player.captionsText) {
|
|
|
+ player.captionsText.remove();
|
|
|
+ }
|
|
|
+ if (player.captionsButton) {
|
|
|
+ player.captionsButton.remove();
|
|
|
+ }
|
|
|
+ if (player.chaptersButton) {
|
|
|
+ player.chaptersButton.remove();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ rebuildtracks: function rebuildtracks() {
|
|
|
+ var t = this;
|
|
|
+ t.findTracks();
|
|
|
+ t.buildtracks(t, t.controls, t.layers, t.media);
|
|
|
+ },
|
|
|
+ findTracks: function findTracks() {
|
|
|
+ var t = this,
|
|
|
+ tracktags = t.trackFiles === null ? t.node.querySelectorAll('track') : t.trackFiles,
|
|
|
+ total = tracktags.length;
|
|
|
+
|
|
|
+ t.tracks = [];
|
|
|
+ for (var i = 0; i < total; i++) {
|
|
|
+ var track = tracktags[i],
|
|
|
+ srclang = track.getAttribute('srclang').toLowerCase() || '',
|
|
|
+ trackId = t.id + '_track_' + i + '_' + track.getAttribute('kind') + '_' + srclang;
|
|
|
+ t.tracks.push({
|
|
|
+ trackId: trackId,
|
|
|
+ srclang: srclang,
|
|
|
+ src: track.getAttribute('src'),
|
|
|
+ kind: track.getAttribute('kind'),
|
|
|
+ label: track.getAttribute('label') || '',
|
|
|
+ entries: [],
|
|
|
+ isLoaded: false
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setTrack: function setTrack(trackId) {
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ radios = t.captionsButton.querySelectorAll('input[type="radio"]'),
|
|
|
+ captions = t.captionsButton.querySelectorAll('.' + t.options.classPrefix + 'captions-selected'),
|
|
|
+ track = t.captionsButton.querySelector('input[value="' + trackId + '"]');
|
|
|
+
|
|
|
+ for (var i = 0, total = radios.length; i < total; i++) {
|
|
|
+ radios[i].checked = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i9 = 0, _total7 = captions.length; _i9 < _total7; _i9++) {
|
|
|
+ (0, _dom.removeClass)(captions[_i9], t.options.classPrefix + 'captions-selected');
|
|
|
+ }
|
|
|
+
|
|
|
+ track.checked = true;
|
|
|
+ var labels = (0, _dom.siblings)(track, function (el) {
|
|
|
+ return (0, _dom.hasClass)(el, t.options.classPrefix + 'captions-selector-label');
|
|
|
+ });
|
|
|
+ for (var _i10 = 0, _total8 = labels.length; _i10 < _total8; _i10++) {
|
|
|
+ (0, _dom.addClass)(labels[_i10], t.options.classPrefix + 'captions-selected');
|
|
|
+ }
|
|
|
+
|
|
|
+ if (trackId === 'none') {
|
|
|
+ t.selectedTrack = null;
|
|
|
+ (0, _dom.removeClass)(t.captionsButton, t.options.classPrefix + 'captions-enabled');
|
|
|
+ } else {
|
|
|
+ for (var _i11 = 0, _total9 = t.tracks.length; _i11 < _total9; _i11++) {
|
|
|
+ var _track = t.tracks[_i11];
|
|
|
+ if (_track.trackId === trackId) {
|
|
|
+ if (t.selectedTrack === null) {
|
|
|
+ (0, _dom.addClass)(t.captionsButton, t.options.classPrefix + 'captions-enabled');
|
|
|
+ }
|
|
|
+ t.selectedTrack = _track;
|
|
|
+ t.captions.setAttribute('lang', t.selectedTrack.srclang);
|
|
|
+ t.displayCaptions();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ var event = (0, _general.createEvent)('captionschange', t.media);
|
|
|
+ event.detail.caption = t.selectedTrack;
|
|
|
+ t.media.dispatchEvent(event);
|
|
|
+ },
|
|
|
+ loadNextTrack: function loadNextTrack() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ t.trackToLoad++;
|
|
|
+ if (t.trackToLoad < t.tracks.length) {
|
|
|
+ t.isLoadingTrack = true;
|
|
|
+ t.loadTrack(t.trackToLoad);
|
|
|
+ } else {
|
|
|
+ t.isLoadingTrack = false;
|
|
|
+ t.checkForTracks();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ loadTrack: function loadTrack(index) {
|
|
|
+ var t = this,
|
|
|
+ track = t.tracks[index];
|
|
|
+
|
|
|
+ if (track !== undefined && (track.src !== undefined || track.src !== "")) {
|
|
|
+ (0, _dom.ajax)(track.src, 'text', function (d) {
|
|
|
+ track.entries = typeof d === 'string' && /<tt\s+xml/ig.exec(d) ? _mejs2.default.TrackFormatParser.dfxp.parse(d) : _mejs2.default.TrackFormatParser.webvtt.parse(d);
|
|
|
+
|
|
|
+ track.isLoaded = true;
|
|
|
+ t.enableTrackButton(track);
|
|
|
+ t.loadNextTrack();
|
|
|
+
|
|
|
+ if (track.kind === 'slides') {
|
|
|
+ t.setupSlides(track);
|
|
|
+ } else if (track.kind === 'chapters' && !t.hasChapters) {
|
|
|
+ t.drawChapters(track);
|
|
|
+ t.hasChapters = true;
|
|
|
+ }
|
|
|
+ }, function () {
|
|
|
+ t.removeTrackButton(track.trackId);
|
|
|
+ t.loadNextTrack();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ enableTrackButton: function enableTrackButton(track) {
|
|
|
+ var t = this,
|
|
|
+ lang = track.srclang,
|
|
|
+ target = _document2.default.getElementById('' + track.trackId);
|
|
|
+
|
|
|
+ if (!target) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var label = track.label;
|
|
|
+
|
|
|
+ if (label === '') {
|
|
|
+ label = _i18n2.default.t(_mejs2.default.language.codes[lang]) || lang;
|
|
|
+ }
|
|
|
+ target.disabled = false;
|
|
|
+ var targetSiblings = (0, _dom.siblings)(target, function (el) {
|
|
|
+ return (0, _dom.hasClass)(el, t.options.classPrefix + 'captions-selector-label');
|
|
|
+ });
|
|
|
+ for (var i = 0, total = targetSiblings.length; i < total; i++) {
|
|
|
+ targetSiblings[i].innerHTML = label;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.startLanguage === lang) {
|
|
|
+ target.checked = true;
|
|
|
+ var event = (0, _general.createEvent)('click', target);
|
|
|
+ target.dispatchEvent(event);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ removeTrackButton: function removeTrackButton(trackId) {
|
|
|
+ var element = _document2.default.getElementById('' + trackId);
|
|
|
+ if (element) {
|
|
|
+ var button = element.closest('li');
|
|
|
+ if (button) {
|
|
|
+ button.remove();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addTrackButton: function addTrackButton(trackId, lang, label) {
|
|
|
+ var t = this;
|
|
|
+ if (label === '') {
|
|
|
+ label = _i18n2.default.t(_mejs2.default.language.codes[lang]) || lang;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.captionsButton.querySelector('ul').innerHTML += '<li class="' + t.options.classPrefix + 'captions-selector-list-item">' + ('<input type="radio" class="' + t.options.classPrefix + 'captions-selector-input" ') + ('name="' + t.id + '_captions" id="' + trackId + '" value="' + trackId + '" disabled>') + ('<label class="' + t.options.classPrefix + 'captions-selector-label"') + ('for="' + trackId + '">' + label + ' (loading)</label>') + '</li>';
|
|
|
+ },
|
|
|
+ checkForTracks: function checkForTracks() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ var hasSubtitles = false;
|
|
|
+
|
|
|
+ if (t.options.hideCaptionsButtonWhenEmpty) {
|
|
|
+ for (var i = 0, total = t.tracks.length; i < total; i++) {
|
|
|
+ var kind = t.tracks[i].kind;
|
|
|
+ if ((kind === 'subtitles' || kind === 'captions') && t.tracks[i].isLoaded) {
|
|
|
+ hasSubtitles = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.captionsButton.style.display = hasSubtitles ? '' : 'none';
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ displayCaptions: function displayCaptions() {
|
|
|
+ if (this.tracks === undefined) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ track = t.selectedTrack,
|
|
|
+ sanitize = function sanitize(html) {
|
|
|
+ var div = _document2.default.createElement('div');
|
|
|
+ div.innerHTML = html;
|
|
|
+
|
|
|
+ var scripts = div.getElementsByTagName('script');
|
|
|
+ var i = scripts.length;
|
|
|
+ while (i--) {
|
|
|
+ scripts[i].remove();
|
|
|
+ }
|
|
|
+
|
|
|
+ var allElements = div.getElementsByTagName('*');
|
|
|
+ for (var _i12 = 0, n = allElements.length; _i12 < n; _i12++) {
|
|
|
+ var attributesObj = allElements[_i12].attributes,
|
|
|
+ attributes = Array.prototype.slice.call(attributesObj);
|
|
|
+
|
|
|
+ for (var j = 0, total = attributes.length; j < total; j++) {
|
|
|
+ if (attributes[j].name.startsWith('on') || attributes[j].value.startsWith('javascript')) {
|
|
|
+ allElements[_i12].remove();
|
|
|
+ } else if (attributes[j].name === 'style') {
|
|
|
+ allElements[_i12].removeAttribute(attributes[j].name);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return div.innerHTML;
|
|
|
+ };
|
|
|
+
|
|
|
+ if (track !== null && track.isLoaded) {
|
|
|
+ var i = t.searchTrackPosition(track.entries, t.media.currentTime);
|
|
|
+ if (i > -1) {
|
|
|
+ t.captionsText.innerHTML = sanitize(track.entries[i].text);
|
|
|
+ t.captionsText.className = t.options.classPrefix + 'captions-text ' + (track.entries[i].identifier || '');
|
|
|
+ t.captions.style.display = '';
|
|
|
+ t.captions.style.height = '0px';
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ t.captions.style.display = 'none';
|
|
|
+ } else {
|
|
|
+ t.captions.style.display = 'none';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setupSlides: function setupSlides(track) {
|
|
|
+ var t = this;
|
|
|
+ t.slides = track;
|
|
|
+ t.slides.entries.imgs = [t.slides.entries.length];
|
|
|
+ t.showSlide(0);
|
|
|
+ },
|
|
|
+ showSlide: function showSlide(index) {
|
|
|
+ var _this = this;
|
|
|
+
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (t.tracks === undefined || t.slidesContainer === undefined) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var url = t.slides.entries[index].text;
|
|
|
+
|
|
|
+ var img = t.slides.entries[index].imgs;
|
|
|
+
|
|
|
+ if (img === undefined || img.fadeIn === undefined) {
|
|
|
+ var image = _document2.default.createElement('img');
|
|
|
+ image.src = url;
|
|
|
+ image.addEventListener('load', function () {
|
|
|
+ var self = _this,
|
|
|
+ visible = (0, _dom.siblings)(self, function (el) {
|
|
|
+ return visible(el);
|
|
|
+ });
|
|
|
+ self.style.display = 'none';
|
|
|
+ t.slidesContainer.innerHTML += self.innerHTML;
|
|
|
+ (0, _dom.fadeIn)(t.slidesContainer.querySelector(image));
|
|
|
+ for (var i = 0, total = visible.length; i < total; i++) {
|
|
|
+ (0, _dom.fadeOut)(visible[i], 400);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.slides.entries[index].imgs = img = image;
|
|
|
+ } else if (!(0, _dom.visible)(img)) {
|
|
|
+ var _visible = (0, _dom.siblings)(self, function (el) {
|
|
|
+ return _visible(el);
|
|
|
+ });
|
|
|
+ (0, _dom.fadeIn)(t.slidesContainer.querySelector(img));
|
|
|
+ for (var i = 0, total = _visible.length; i < total; i++) {
|
|
|
+ (0, _dom.fadeOut)(_visible[i]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ displaySlides: function displaySlides() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (this.slides === undefined) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var slides = t.slides,
|
|
|
+ i = t.searchTrackPosition(slides.entries, t.media.currentTime);
|
|
|
+
|
|
|
+ if (i > -1) {
|
|
|
+ t.showSlide(i);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ drawChapters: function drawChapters(chapters) {
|
|
|
+ var t = this,
|
|
|
+ total = chapters.entries.length;
|
|
|
+
|
|
|
+ if (!total) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.chaptersButton.querySelector('ul').innerHTML = '';
|
|
|
+
|
|
|
+ for (var i = 0; i < total; i++) {
|
|
|
+ t.chaptersButton.querySelector('ul').innerHTML += '<li class="' + t.options.classPrefix + 'chapters-selector-list-item" ' + 'role="menuitemcheckbox" aria-live="polite" aria-disabled="false" aria-checked="false">' + ('<input type="radio" class="' + t.options.classPrefix + 'captions-selector-input" ') + ('name="' + t.id + '_chapters" id="' + t.id + '_chapters_' + i + '" value="' + chapters.entries[i].start + '" disabled>') + ('<label class="' + t.options.classPrefix + 'chapters-selector-label"') + ('for="' + t.id + '_chapters_' + i + '">' + chapters.entries[i].text + '</label>') + '</li>';
|
|
|
+ }
|
|
|
+
|
|
|
+ var radios = t.chaptersButton.querySelectorAll('input[type="radio"]'),
|
|
|
+ labels = t.chaptersButton.querySelectorAll('.' + t.options.classPrefix + 'chapters-selector-label');
|
|
|
+
|
|
|
+ for (var _i13 = 0, _total10 = radios.length; _i13 < _total10; _i13++) {
|
|
|
+ radios[_i13].disabled = false;
|
|
|
+ radios[_i13].checked = false;
|
|
|
+ radios[_i13].addEventListener('click', function () {
|
|
|
+ var self = this,
|
|
|
+ listItems = t.chaptersButton.querySelectorAll('li'),
|
|
|
+ label = (0, _dom.siblings)(self, function (el) {
|
|
|
+ return (0, _dom.hasClass)(el, t.options.classPrefix + 'chapters-selector-label');
|
|
|
+ })[0];
|
|
|
+
|
|
|
+ self.checked = true;
|
|
|
+ self.parentNode.setAttribute('aria-checked', true);
|
|
|
+ (0, _dom.addClass)(label, t.options.classPrefix + 'chapters-selected');
|
|
|
+ (0, _dom.removeClass)(t.chaptersButton.querySelector('.' + t.options.classPrefix + 'chapters-selected'), t.options.classPrefix + 'chapters-selected');
|
|
|
+
|
|
|
+ for (var _i14 = 0, _total11 = listItems.length; _i14 < _total11; _i14++) {
|
|
|
+ listItems[_i14].setAttribute('aria-checked', false);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.media.setCurrentTime(parseFloat(self.value));
|
|
|
+ if (t.media.paused) {
|
|
|
+ t.media.play();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i15 = 0, _total12 = labels.length; _i15 < _total12; _i15++) {
|
|
|
+ labels[_i15].addEventListener('click', function () {
|
|
|
+ var radio = (0, _dom.siblings)(this, function (el) {
|
|
|
+ return el.tagName === 'INPUT';
|
|
|
+ })[0],
|
|
|
+ event = (0, _general.createEvent)('click', radio);
|
|
|
+ radio.dispatchEvent(event);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ searchTrackPosition: function searchTrackPosition(tracks, currentTime) {
|
|
|
+ var lo = 0,
|
|
|
+ hi = tracks.length - 1,
|
|
|
+ mid = void 0,
|
|
|
+ start = void 0,
|
|
|
+ stop = void 0;
|
|
|
+
|
|
|
+ while (lo <= hi) {
|
|
|
+ mid = lo + hi >> 1;
|
|
|
+ start = tracks[mid].start;
|
|
|
+ stop = tracks[mid].stop;
|
|
|
+
|
|
|
+ if (currentTime >= start && currentTime < stop) {
|
|
|
+ return mid;
|
|
|
+ } else if (start < currentTime) {
|
|
|
+ lo = mid + 1;
|
|
|
+ } else if (start > currentTime) {
|
|
|
+ hi = mid - 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+_mejs2.default.language = {
|
|
|
+ codes: {
|
|
|
+ af: 'mejs.afrikaans',
|
|
|
+ sq: 'mejs.albanian',
|
|
|
+ ar: 'mejs.arabic',
|
|
|
+ be: 'mejs.belarusian',
|
|
|
+ bg: 'mejs.bulgarian',
|
|
|
+ ca: 'mejs.catalan',
|
|
|
+ zh: 'mejs.chinese',
|
|
|
+ 'zh-cn': 'mejs.chinese-simplified',
|
|
|
+ 'zh-tw': 'mejs.chines-traditional',
|
|
|
+ hr: 'mejs.croatian',
|
|
|
+ cs: 'mejs.czech',
|
|
|
+ da: 'mejs.danish',
|
|
|
+ nl: 'mejs.dutch',
|
|
|
+ en: 'mejs.english',
|
|
|
+ et: 'mejs.estonian',
|
|
|
+ fl: 'mejs.filipino',
|
|
|
+ fi: 'mejs.finnish',
|
|
|
+ fr: 'mejs.french',
|
|
|
+ gl: 'mejs.galician',
|
|
|
+ de: 'mejs.german',
|
|
|
+ el: 'mejs.greek',
|
|
|
+ ht: 'mejs.haitian-creole',
|
|
|
+ iw: 'mejs.hebrew',
|
|
|
+ hi: 'mejs.hindi',
|
|
|
+ hu: 'mejs.hungarian',
|
|
|
+ is: 'mejs.icelandic',
|
|
|
+ id: 'mejs.indonesian',
|
|
|
+ ga: 'mejs.irish',
|
|
|
+ it: 'mejs.italian',
|
|
|
+ ja: 'mejs.japanese',
|
|
|
+ ko: 'mejs.korean',
|
|
|
+ lv: 'mejs.latvian',
|
|
|
+ lt: 'mejs.lithuanian',
|
|
|
+ mk: 'mejs.macedonian',
|
|
|
+ ms: 'mejs.malay',
|
|
|
+ mt: 'mejs.maltese',
|
|
|
+ no: 'mejs.norwegian',
|
|
|
+ fa: 'mejs.persian',
|
|
|
+ pl: 'mejs.polish',
|
|
|
+ pt: 'mejs.portuguese',
|
|
|
+ ro: 'mejs.romanian',
|
|
|
+ ru: 'mejs.russian',
|
|
|
+ sr: 'mejs.serbian',
|
|
|
+ sk: 'mejs.slovak',
|
|
|
+ sl: 'mejs.slovenian',
|
|
|
+ es: 'mejs.spanish',
|
|
|
+ sw: 'mejs.swahili',
|
|
|
+ sv: 'mejs.swedish',
|
|
|
+ tl: 'mejs.tagalog',
|
|
|
+ th: 'mejs.thai',
|
|
|
+ tr: 'mejs.turkish',
|
|
|
+ uk: 'mejs.ukrainian',
|
|
|
+ vi: 'mejs.vietnamese',
|
|
|
+ cy: 'mejs.welsh',
|
|
|
+ yi: 'mejs.yiddish'
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+_mejs2.default.TrackFormatParser = {
|
|
|
+ webvtt: {
|
|
|
+ pattern: /^((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{1,3})?) --\> ((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,
|
|
|
+
|
|
|
+ parse: function parse(trackText) {
|
|
|
+ var lines = trackText.split(/\r?\n/),
|
|
|
+ entries = [];
|
|
|
+
|
|
|
+ var timecode = void 0,
|
|
|
+ text = void 0,
|
|
|
+ identifier = void 0;
|
|
|
+
|
|
|
+ for (var i = 0, total = lines.length; i < total; i++) {
|
|
|
+ timecode = this.pattern.exec(lines[i]);
|
|
|
+
|
|
|
+ if (timecode && i < lines.length) {
|
|
|
+ if (i - 1 >= 0 && lines[i - 1] !== '') {
|
|
|
+ identifier = lines[i - 1];
|
|
|
+ }
|
|
|
+ i++;
|
|
|
+
|
|
|
+ text = lines[i];
|
|
|
+ i++;
|
|
|
+ while (lines[i] !== '' && i < lines.length) {
|
|
|
+ text = text + '\n' + lines[i];
|
|
|
+ i++;
|
|
|
+ }
|
|
|
+ text = text.trim().replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, "<a href='$1' target='_blank'>$1</a>");
|
|
|
+ entries.push({
|
|
|
+ identifier: identifier,
|
|
|
+ start: (0, _time.convertSMPTEtoSeconds)(timecode[1]) === 0 ? 0.200 : (0, _time.convertSMPTEtoSeconds)(timecode[1]),
|
|
|
+ stop: (0, _time.convertSMPTEtoSeconds)(timecode[3]),
|
|
|
+ text: text,
|
|
|
+ settings: timecode[5]
|
|
|
+ });
|
|
|
+ }
|
|
|
+ identifier = '';
|
|
|
+ }
|
|
|
+ return entries;
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ dfxp: {
|
|
|
+ parse: function parse(trackText) {
|
|
|
+ trackText = $(trackText).filter('tt');
|
|
|
+ var container = trackText.firstChild,
|
|
|
+ lines = container.querySelectorAll('p'),
|
|
|
+ styleNode = trackText.getElementById('' + container.attr('style')),
|
|
|
+ entries = [];
|
|
|
+
|
|
|
+ var styles = void 0;
|
|
|
+
|
|
|
+ if (styleNode.length) {
|
|
|
+ styleNode.removeAttribute('id');
|
|
|
+ var attributes = styleNode.attributes;
|
|
|
+ if (attributes.length) {
|
|
|
+ styles = {};
|
|
|
+ for (var i = 0, total = attributes.length; i < total; i++) {
|
|
|
+ styles[attributes[i].name.split(":")[1]] = attributes[i].value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var _i16 = 0, _total13 = lines.length; _i16 < _total13; _i16++) {
|
|
|
+ var style = void 0,
|
|
|
+ _temp = {
|
|
|
+ start: null,
|
|
|
+ stop: null,
|
|
|
+ style: null,
|
|
|
+ text: null
|
|
|
+ };
|
|
|
+
|
|
|
+ if (lines.eq(_i16).attr('begin')) {
|
|
|
+ _temp.start = (0, _time.convertSMPTEtoSeconds)(lines.eq(_i16).attr('begin'));
|
|
|
+ }
|
|
|
+ if (!_temp.start && lines.eq(_i16 - 1).attr('end')) {
|
|
|
+ _temp.start = (0, _time.convertSMPTEtoSeconds)(lines.eq(_i16 - 1).attr('end'));
|
|
|
+ }
|
|
|
+ if (lines.eq(_i16).attr('end')) {
|
|
|
+ _temp.stop = (0, _time.convertSMPTEtoSeconds)(lines.eq(_i16).attr('end'));
|
|
|
+ }
|
|
|
+ if (!_temp.stop && lines.eq(_i16 + 1).attr('begin')) {
|
|
|
+ _temp.stop = (0, _time.convertSMPTEtoSeconds)(lines.eq(_i16 + 1).attr('begin'));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (styles) {
|
|
|
+ style = '';
|
|
|
+ for (var _style in styles) {
|
|
|
+ style += _style + ':' + styles[_style] + ';';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (style) {
|
|
|
+ _temp.style = style;
|
|
|
+ }
|
|
|
+ if (_temp.start === 0) {
|
|
|
+ _temp.start = 0.200;
|
|
|
+ }
|
|
|
+ _temp.text = lines.eq(_i16).innerHTML.trim().replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, "<a href='$1' target='_blank'>$1</a>");
|
|
|
+ entries.push(_temp);
|
|
|
+ }
|
|
|
+ return entries;
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+},{"16":16,"2":2,"26":26,"27":27,"30":30,"5":5,"7":7}],14:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _player = _dereq_(16);
|
|
|
+
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
+
|
|
|
+var _i18n = _dereq_(5);
|
|
|
+
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
+
|
|
|
+var _constants = _dereq_(25);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+Object.assign(_player.config, {
|
|
|
+ muteText: null,
|
|
|
+
|
|
|
+ unmuteText: null,
|
|
|
+
|
|
|
+ allyVolumeControlText: null,
|
|
|
+
|
|
|
+ hideVolumeOnTouchDevices: true,
|
|
|
+
|
|
|
+ audioVolume: 'horizontal',
|
|
|
+
|
|
|
+ videoVolume: 'vertical',
|
|
|
+
|
|
|
+ startVolume: 0.8
|
|
|
+});
|
|
|
+
|
|
|
+Object.assign(_player2.default.prototype, {
|
|
|
+ buildvolume: function buildvolume(player, controls, layers, media) {
|
|
|
+ if ((_constants.IS_ANDROID || _constants.IS_IOS) && this.options.hideVolumeOnTouchDevices) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ mode = t.isVideo ? t.options.videoVolume : t.options.audioVolume,
|
|
|
+ muteText = (0, _general.isString)(t.options.muteText) ? t.options.muteText : _i18n2.default.t('mejs.mute'),
|
|
|
+ unmuteText = (0, _general.isString)(t.options.unmuteText) ? t.options.unmuteText : _i18n2.default.t('mejs.unmute'),
|
|
|
+ volumeControlText = (0, _general.isString)(t.options.allyVolumeControlText) ? t.options.allyVolumeControlText : _i18n2.default.t('mejs.volume-help-text'),
|
|
|
+ mute = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ mute.className = t.options.classPrefix + 'button ' + t.options.classPrefix + 'volume-button ' + t.options.classPrefix + 'mute';
|
|
|
+ mute.innerHTML = mode === 'horizontal' ? '<button type="button" aria-controls="' + t.id + '" title="' + muteText + '" aria-label="' + muteText + '" tabindex="0"></button>' : '<button type="button" aria-controls="' + t.id + '" title="' + muteText + '" aria-label="' + muteText + '" tabindex="0"></button>' + ('<a href="javascript:void(0);" class="' + t.options.classPrefix + 'volume-slider" ') + ('aria-label="' + _i18n2.default.t('mejs.volume-slider') + '" aria-valuemin="0" aria-valuemax="100" role="slider" ') + 'aria-orientation="vertical">' + ('<span class="' + t.options.classPrefix + 'offscreen">' + volumeControlText + '</span>') + ('<div class="' + t.options.classPrefix + 'volume-total">') + ('<div class="' + t.options.classPrefix + 'volume-current"></div>') + ('<div class="' + t.options.classPrefix + 'volume-handle"></div>') + '</div>' + '</a>';
|
|
|
+
|
|
|
+ t.addControlElement(mute, 'volume');
|
|
|
+
|
|
|
+ if (mode === 'horizontal') {
|
|
|
+ var anchor = _document2.default.createElement('a');
|
|
|
+ anchor.className = t.options.classPrefix + 'horizontal-volume-slider';
|
|
|
+ anchor.href = 'javascript:void(0);';
|
|
|
+ anchor.setAttribute('aria-label', _i18n2.default.t('mejs.volume-slider'));
|
|
|
+ anchor.setAttribute('aria-valuemin', 0);
|
|
|
+ anchor.setAttribute('aria-valuemax', 100);
|
|
|
+ anchor.setAttribute('role', 'slider');
|
|
|
+ anchor.innerHTML += '<span class="' + t.options.classPrefix + 'offscreen">' + volumeControlText + '</span>' + ('<div class="' + t.options.classPrefix + 'horizontal-volume-total">') + ('<div class="' + t.options.classPrefix + 'horizontal-volume-current"></div>') + ('<div class="' + t.options.classPrefix + 'horizontal-volume-handle"></div>') + '</div>';
|
|
|
+ mute.parentNode.insertBefore(anchor, mute.nextSibling);
|
|
|
+ }
|
|
|
+
|
|
|
+ var mouseIsDown = false,
|
|
|
+ mouseIsOver = false,
|
|
|
+ modified = false,
|
|
|
+ updateVolumeSlider = function updateVolumeSlider() {
|
|
|
+ var volume = Math.floor(media.volume * 100);
|
|
|
+ volumeSlider.setAttribute('aria-valuenow', volume);
|
|
|
+ volumeSlider.setAttribute('aria-valuetext', volume + '%');
|
|
|
+ };
|
|
|
+
|
|
|
+ var volumeSlider = mode === 'vertical' ? t.container.querySelector('.' + t.options.classPrefix + 'volume-slider') : t.container.querySelector('.' + t.options.classPrefix + 'horizontal-volume-slider'),
|
|
|
+ volumeTotal = mode === 'vertical' ? t.container.querySelector('.' + t.options.classPrefix + 'volume-total') : t.container.querySelector('.' + t.options.classPrefix + 'horizontal-volume-total'),
|
|
|
+ volumeCurrent = mode === 'vertical' ? t.container.querySelector('.' + t.options.classPrefix + 'volume-current') : t.container.querySelector('.' + t.options.classPrefix + 'horizontal-volume-current'),
|
|
|
+ volumeHandle = mode === 'vertical' ? t.container.querySelector('.' + t.options.classPrefix + 'volume-handle') : t.container.querySelector('.' + t.options.classPrefix + 'horizontal-volume-handle'),
|
|
|
+ positionVolumeHandle = function positionVolumeHandle(volume) {
|
|
|
+
|
|
|
+ if (volume === null || isNaN(volume) || volume === undefined) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ volume = Math.max(0, volume);
|
|
|
+ volume = Math.min(volume, 1);
|
|
|
+
|
|
|
+ if (volume === 0) {
|
|
|
+ (0, _dom.removeClass)(mute, t.options.classPrefix + 'mute');
|
|
|
+ (0, _dom.addClass)(mute, t.options.classPrefix + 'unmute');
|
|
|
+ var button = mute.firstElementChild;
|
|
|
+ button.setAttribute('title', unmuteText);
|
|
|
+ button.setAttribute('aria-label', unmuteText);
|
|
|
+ } else {
|
|
|
+ (0, _dom.removeClass)(mute, t.options.classPrefix + 'unmute');
|
|
|
+ (0, _dom.addClass)(mute, t.options.classPrefix + 'mute');
|
|
|
+ var _button = mute.firstElementChild;
|
|
|
+ _button.setAttribute('title', muteText);
|
|
|
+ _button.setAttribute('aria-label', muteText);
|
|
|
+ }
|
|
|
+
|
|
|
+ var volumePercentage = volume * 100 + '%',
|
|
|
+ volumeStyles = getComputedStyle(volumeHandle);
|
|
|
+
|
|
|
+ if (mode === 'vertical') {
|
|
|
+ volumeCurrent.style.bottom = 0;
|
|
|
+ volumeCurrent.style.height = volumePercentage;
|
|
|
+ volumeHandle.style.bottom = volumePercentage;
|
|
|
+ volumeHandle.style.marginBottom = -parseFloat(volumeStyles.height) / 2 + 'px';
|
|
|
+ } else {
|
|
|
+ volumeCurrent.style.left = 0;
|
|
|
+ volumeCurrent.style.width = volumePercentage;
|
|
|
+ volumeHandle.style.left = volumePercentage;
|
|
|
+ volumeHandle.style.marginLeft = -parseFloat(volumeStyles.width) / 2 + 'px';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleVolumeMove = function handleVolumeMove(e) {
|
|
|
+ var totalOffset = (0, _dom.offset)(volumeTotal),
|
|
|
+ volumeStyles = getComputedStyle(volumeTotal);
|
|
|
+
|
|
|
+ modified = true;
|
|
|
+
|
|
|
+ var volume = null;
|
|
|
+
|
|
|
+ if (mode === 'vertical') {
|
|
|
+ var railHeight = parseFloat(volumeStyles.height),
|
|
|
+ newY = e.pageY - totalOffset.top;
|
|
|
+
|
|
|
+ volume = (railHeight - newY) / railHeight;
|
|
|
+
|
|
|
+ if (totalOffset.top === 0 || totalOffset.left === 0) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ var railWidth = parseFloat(volumeStyles.width),
|
|
|
+ newX = e.pageX - totalOffset.left;
|
|
|
+
|
|
|
+ volume = newX / railWidth;
|
|
|
+ }
|
|
|
+
|
|
|
+ volume = Math.max(0, volume);
|
|
|
+ volume = Math.min(volume, 1);
|
|
|
+
|
|
|
+ positionVolumeHandle(volume);
|
|
|
+
|
|
|
+ t.setMuted(volume === 0);
|
|
|
+ t.setVolume(volume);
|
|
|
+
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ },
|
|
|
+ toggleMute = function toggleMute() {
|
|
|
+ if (t.muted) {
|
|
|
+ positionVolumeHandle(0);
|
|
|
+ (0, _dom.removeClass)(mute, t.options.classPrefix + 'mute');
|
|
|
+ (0, _dom.addClass)(mute, t.options.classPrefix + 'unmute');
|
|
|
+ } else {
|
|
|
+ positionVolumeHandle(media.volume);
|
|
|
+ (0, _dom.removeClass)(mute, t.options.classPrefix + 'unmute');
|
|
|
+ (0, _dom.addClass)(mute, t.options.classPrefix + 'mute');
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ mute.addEventListener('mouseenter', function (e) {
|
|
|
+ if (e.target === mute) {
|
|
|
+ volumeSlider.style.display = 'block';
|
|
|
+ mouseIsOver = true;
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mute.addEventListener('focusin', function () {
|
|
|
+ volumeSlider.style.display = 'block';
|
|
|
+ mouseIsOver = true;
|
|
|
+ });
|
|
|
+
|
|
|
+ mute.addEventListener('focusout', function (e) {
|
|
|
+ if ((!e.relatedTarget || e.relatedTarget && !e.relatedTarget.matches('.' + t.options.classPrefix + 'volume-slider')) && mode === 'vertical') {
|
|
|
+ volumeSlider.style.display = 'none';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mute.addEventListener('mouseleave', function () {
|
|
|
+ mouseIsOver = false;
|
|
|
+ if (!mouseIsDown && mode === 'vertical') {
|
|
|
+ volumeSlider.style.display = 'none';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mute.addEventListener('focusout', function () {
|
|
|
+ mouseIsOver = false;
|
|
|
+ });
|
|
|
+ mute.addEventListener('keydown', function (e) {
|
|
|
+ if (t.options.keyActions.length) {
|
|
|
+ var keyCode = e.which || e.keyCode || 0,
|
|
|
+ volume = media.volume;
|
|
|
+
|
|
|
+ switch (keyCode) {
|
|
|
+ case 38:
|
|
|
+ volume = Math.min(volume + 0.1, 1);
|
|
|
+ break;
|
|
|
+ case 40:
|
|
|
+ volume = Math.max(0, volume - 0.1);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ mouseIsDown = false;
|
|
|
+ positionVolumeHandle(volume);
|
|
|
+ media.setVolume(volume);
|
|
|
+
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mute.querySelector('button').addEventListener('click', function () {
|
|
|
+ media.setMuted(!media.muted);
|
|
|
+ var event = (0, _general.createEvent)('volumechange', media);
|
|
|
+ media.dispatchEvent(event);
|
|
|
+ });
|
|
|
+
|
|
|
+ volumeSlider.addEventListener('dragstart', function () {
|
|
|
+ return false;
|
|
|
+ });
|
|
|
+
|
|
|
+ volumeSlider.addEventListener('mouseover', function () {
|
|
|
+ mouseIsOver = true;
|
|
|
+ });
|
|
|
+ volumeSlider.addEventListener('focusin', function () {
|
|
|
+ volumeSlider.style.display = 'block';
|
|
|
+ mouseIsOver = true;
|
|
|
+ });
|
|
|
+ volumeSlider.addEventListener('focusout', function () {
|
|
|
+ mouseIsOver = false;
|
|
|
+ if (!mouseIsDown && mode === 'vertical') {
|
|
|
+ volumeSlider.style.display = 'none';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ volumeSlider.addEventListener('mousedown', function (e) {
|
|
|
+ handleVolumeMove(e);
|
|
|
+ t.globalBind('mousemove.vol', function (event) {
|
|
|
+ var target = event.target;
|
|
|
+ if (mouseIsDown && (target === volumeSlider || target.closest(mode === 'vertical' ? '.' + t.options.classPrefix + 'volume-slider' : '.' + t.options.classPrefix + 'horizontal-volume-slider'))) {
|
|
|
+ handleVolumeMove(event);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.globalBind('mouseup.vol', function () {
|
|
|
+ mouseIsDown = false;
|
|
|
+ if (!mouseIsOver && mode === 'vertical') {
|
|
|
+ volumeSlider.style.display = 'none';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mouseIsDown = true;
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ });
|
|
|
+
|
|
|
+ media.addEventListener('volumechange', function (e) {
|
|
|
+ if (!mouseIsDown) {
|
|
|
+ toggleMute();
|
|
|
+ }
|
|
|
+ updateVolumeSlider(e);
|
|
|
+ });
|
|
|
+
|
|
|
+ var rendered = false;
|
|
|
+ media.addEventListener('rendererready', function () {
|
|
|
+ if (!modified) {
|
|
|
+ setTimeout(function () {
|
|
|
+ rendered = true;
|
|
|
+ if (player.options.startVolume === 0 || media.originalNode.muted) {
|
|
|
+ media.setMuted(true);
|
|
|
+ player.options.startVolume = 0;
|
|
|
+ }
|
|
|
+ media.setVolume(player.options.startVolume);
|
|
|
+ t.setControlsSize();
|
|
|
+ }, 250);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ media.addEventListener('loadedmetadata', function () {
|
|
|
+ setTimeout(function () {
|
|
|
+ if (!modified && !rendered) {
|
|
|
+ if (player.options.startVolume === 0 || media.originalNode.muted) {
|
|
|
+ media.setMuted(true);
|
|
|
+ player.options.startVolume = 0;
|
|
|
+ }
|
|
|
+ media.setVolume(player.options.startVolume);
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ rendered = false;
|
|
|
+ }, 250);
|
|
|
+ });
|
|
|
+
|
|
|
+ if (player.options.startVolume === 0 || media.originalNode.muted) {
|
|
|
+ media.setMuted(true);
|
|
|
+ player.options.startVolume = 0;
|
|
|
+ toggleMute();
|
|
|
+ }
|
|
|
+
|
|
|
+ t.container.addEventListener('controlsresize', function () {
|
|
|
+ toggleMute();
|
|
|
+ });
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+},{"16":16,"2":2,"25":25,"26":26,"27":27,"5":5}],15:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+var EN = exports.EN = {
|
|
|
+ 'mejs.plural-form': 1,
|
|
|
+
|
|
|
+ 'mejs.download-file': 'Download File',
|
|
|
+
|
|
|
+ 'mejs.install-flash': 'You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https://get.adobe.com/flashplayer/',
|
|
|
+
|
|
|
+ 'mejs.fullscreen': 'Fullscreen',
|
|
|
+
|
|
|
+ 'mejs.play': 'Play',
|
|
|
+ 'mejs.pause': 'Pause',
|
|
|
+
|
|
|
+ 'mejs.time-slider': 'Time Slider',
|
|
|
+ 'mejs.time-help-text': 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.',
|
|
|
+ 'mejs.live-broadcast': 'Live Broadcast',
|
|
|
+
|
|
|
+ 'mejs.volume-help-text': 'Use Up/Down Arrow keys to increase or decrease volume.',
|
|
|
+ 'mejs.unmute': 'Unmute',
|
|
|
+ 'mejs.mute': 'Mute',
|
|
|
+ 'mejs.volume-slider': 'Volume Slider',
|
|
|
+
|
|
|
+ 'mejs.video-player': 'Video Player',
|
|
|
+ 'mejs.audio-player': 'Audio Player',
|
|
|
+
|
|
|
+ 'mejs.captions-subtitles': 'Captions/Subtitles',
|
|
|
+ 'mejs.captions-chapters': 'Chapters',
|
|
|
+ 'mejs.none': 'None',
|
|
|
+ 'mejs.afrikaans': 'Afrikaans',
|
|
|
+ 'mejs.albanian': 'Albanian',
|
|
|
+ 'mejs.arabic': 'Arabic',
|
|
|
+ 'mejs.belarusian': 'Belarusian',
|
|
|
+ 'mejs.bulgarian': 'Bulgarian',
|
|
|
+ 'mejs.catalan': 'Catalan',
|
|
|
+ 'mejs.chinese': 'Chinese',
|
|
|
+ 'mejs.chinese-simplified': 'Chinese (Simplified)',
|
|
|
+ 'mejs.chinese-traditional': 'Chinese (Traditional)',
|
|
|
+ 'mejs.croatian': 'Croatian',
|
|
|
+ 'mejs.czech': 'Czech',
|
|
|
+ 'mejs.danish': 'Danish',
|
|
|
+ 'mejs.dutch': 'Dutch',
|
|
|
+ 'mejs.english': 'English',
|
|
|
+ 'mejs.estonian': 'Estonian',
|
|
|
+ 'mejs.filipino': 'Filipino',
|
|
|
+ 'mejs.finnish': 'Finnish',
|
|
|
+ 'mejs.french': 'French',
|
|
|
+ 'mejs.galician': 'Galician',
|
|
|
+ 'mejs.german': 'German',
|
|
|
+ 'mejs.greek': 'Greek',
|
|
|
+ 'mejs.haitian-creole': 'Haitian Creole',
|
|
|
+ 'mejs.hebrew': 'Hebrew',
|
|
|
+ 'mejs.hindi': 'Hindi',
|
|
|
+ 'mejs.hungarian': 'Hungarian',
|
|
|
+ 'mejs.icelandic': 'Icelandic',
|
|
|
+ 'mejs.indonesian': 'Indonesian',
|
|
|
+ 'mejs.irish': 'Irish',
|
|
|
+ 'mejs.italian': 'Italian',
|
|
|
+ 'mejs.japanese': 'Japanese',
|
|
|
+ 'mejs.korean': 'Korean',
|
|
|
+ 'mejs.latvian': 'Latvian',
|
|
|
+ 'mejs.lithuanian': 'Lithuanian',
|
|
|
+ 'mejs.macedonian': 'Macedonian',
|
|
|
+ 'mejs.malay': 'Malay',
|
|
|
+ 'mejs.maltese': 'Maltese',
|
|
|
+ 'mejs.norwegian': 'Norwegian',
|
|
|
+ 'mejs.persian': 'Persian',
|
|
|
+ 'mejs.polish': 'Polish',
|
|
|
+ 'mejs.portuguese': 'Portuguese',
|
|
|
+ 'mejs.romanian': 'Romanian',
|
|
|
+ 'mejs.russian': 'Russian',
|
|
|
+ 'mejs.serbian': 'Serbian',
|
|
|
+ 'mejs.slovak': 'Slovak',
|
|
|
+ 'mejs.slovenian': 'Slovenian',
|
|
|
+ 'mejs.spanish': 'Spanish',
|
|
|
+ 'mejs.swahili': 'Swahili',
|
|
|
+ 'mejs.swedish': 'Swedish',
|
|
|
+ 'mejs.tagalog': 'Tagalog',
|
|
|
+ 'mejs.thai': 'Thai',
|
|
|
+ 'mejs.turkish': 'Turkish',
|
|
|
+ 'mejs.ukrainian': 'Ukrainian',
|
|
|
+ 'mejs.vietnamese': 'Vietnamese',
|
|
|
+ 'mejs.welsh': 'Welsh',
|
|
|
+ 'mejs.yiddish': 'Yiddish'
|
|
|
+};
|
|
|
+
|
|
|
+},{}],16:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.config = undefined;
|
|
|
+
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
+
|
|
|
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
|
+
|
|
|
+var _window = _dereq_(3);
|
|
|
+
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
+
|
|
|
+var _document = _dereq_(2);
|
|
|
+
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
+
|
|
|
+var _mejs = _dereq_(7);
|
|
|
+
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
+
|
|
|
+var _mediaelement = _dereq_(6);
|
|
|
+
|
|
|
+var _mediaelement2 = _interopRequireDefault(_mediaelement);
|
|
|
+
|
|
|
+var _default = _dereq_(17);
|
|
|
+
|
|
|
+var _default2 = _interopRequireDefault(_default);
|
|
|
+
|
|
|
+var _i18n = _dereq_(5);
|
|
|
+
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
+
|
|
|
+var _constants = _dereq_(25);
|
|
|
+
|
|
|
+var _general = _dereq_(27);
|
|
|
+
|
|
|
+var _time = _dereq_(30);
|
|
|
+
|
|
|
+var _media = _dereq_(28);
|
|
|
+
|
|
|
+var _dom = _dereq_(26);
|
|
|
+
|
|
|
+var dom = _interopRequireWildcard(_dom);
|
|
|
+
|
|
|
+function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
+
|
|
|
+_mejs2.default.mepIndex = 0;
|
|
|
+
|
|
|
+_mejs2.default.players = {};
|
|
|
+
|
|
|
+var config = exports.config = {
|
|
|
+ poster: '',
|
|
|
+
|
|
|
+ showPosterWhenEnded: false,
|
|
|
+
|
|
|
+ showPosterWhenPaused: false,
|
|
|
+
|
|
|
+ defaultVideoWidth: 480,
|
|
|
+
|
|
|
+ defaultVideoHeight: 270,
|
|
|
+
|
|
|
+ videoWidth: -1,
|
|
|
+
|
|
|
+ videoHeight: -1,
|
|
|
+
|
|
|
+ defaultAudioWidth: 400,
|
|
|
+
|
|
|
+ defaultAudioHeight: 40,
|
|
|
+
|
|
|
+ defaultSeekBackwardInterval: function defaultSeekBackwardInterval(media) {
|
|
|
+ return media.getDuration() * 0.05;
|
|
|
+ },
|
|
|
+
|
|
|
+ defaultSeekForwardInterval: function defaultSeekForwardInterval(media) {
|
|
|
+ return media.getDuration() * 0.05;
|
|
|
+ },
|
|
|
+
|
|
|
+ setDimensions: true,
|
|
|
+
|
|
|
+ audioWidth: -1,
|
|
|
+
|
|
|
+ audioHeight: -1,
|
|
|
+
|
|
|
+ loop: false,
|
|
|
+
|
|
|
+ autoRewind: true,
|
|
|
+
|
|
|
+ enableAutosize: true,
|
|
|
+
|
|
|
+ timeFormat: '',
|
|
|
+
|
|
|
+ alwaysShowHours: false,
|
|
|
+
|
|
|
+ showTimecodeFrameCount: false,
|
|
|
+
|
|
|
+ framesPerSecond: 25,
|
|
|
+
|
|
|
+ alwaysShowControls: false,
|
|
|
+
|
|
|
+ hideVideoControlsOnLoad: false,
|
|
|
+
|
|
|
+ hideVideoControlsOnPause: false,
|
|
|
+
|
|
|
+ clickToPlayPause: true,
|
|
|
+
|
|
|
+ controlsTimeoutDefault: 1500,
|
|
|
+
|
|
|
+ controlsTimeoutMouseEnter: 2500,
|
|
|
+
|
|
|
+ controlsTimeoutMouseLeave: 1000,
|
|
|
+
|
|
|
+ iPadUseNativeControls: false,
|
|
|
+
|
|
|
+ iPhoneUseNativeControls: false,
|
|
|
+
|
|
|
+ AndroidUseNativeControls: false,
|
|
|
+
|
|
|
+ features: ['playpause', 'current', 'progress', 'duration', 'tracks', 'volume', 'fullscreen'],
|
|
|
+
|
|
|
+ useDefaultControls: false,
|
|
|
+
|
|
|
+ isVideo: true,
|
|
|
+
|
|
|
+ stretching: 'auto',
|
|
|
+
|
|
|
+ classPrefix: 'mejs__',
|
|
|
+
|
|
|
+ enableKeyboard: true,
|
|
|
+
|
|
|
+ pauseOtherPlayers: true,
|
|
|
+
|
|
|
+ secondsDecimalLength: 0,
|
|
|
+
|
|
|
+ customError: null,
|
|
|
+
|
|
|
+ keyActions: [{
|
|
|
+ keys: [32, 179],
|
|
|
+ action: function action(player) {
|
|
|
+
|
|
|
+ if (!_constants.IS_FIREFOX) {
|
|
|
+ if (player.paused || player.ended) {
|
|
|
+ player.play();
|
|
|
+ } else {
|
|
|
+ player.pause();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [38],
|
|
|
+ action: function action(player) {
|
|
|
+
|
|
|
+ if (player.container.querySelector('.' + config.classPrefix + 'volume-button>button').matches(':focus') || player.container.querySelector('.' + config.classPrefix + 'volume-slider').matches(':focus')) {
|
|
|
+ player.container.querySelector('.' + config.classPrefix + 'volume-slider').style.display = '';
|
|
|
+ }
|
|
|
+ if (player.isVideo) {
|
|
|
+ player.showControls();
|
|
|
+ player.startControlsTimer();
|
|
|
+ }
|
|
|
+
|
|
|
+ var newVolume = Math.min(player.volume + 0.1, 1);
|
|
|
+ player.setVolume(newVolume);
|
|
|
+ if (newVolume > 0) {
|
|
|
+ player.setMuted(false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [40],
|
|
|
+ action: function action(player) {
|
|
|
+
|
|
|
+ if (player.container.querySelector('.' + config.classPrefix + 'volume-button>button').matches(':focus') || player.container.querySelector('.' + config.classPrefix + 'volume-slider').matches(':focus')) {
|
|
|
+ player.container.querySelector('.' + config.classPrefix + 'volume-slider').style.display = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (player.isVideo) {
|
|
|
+ player.showControls();
|
|
|
+ player.startControlsTimer();
|
|
|
+ }
|
|
|
+
|
|
|
+ var newVolume = Math.max(player.volume - 0.1, 0);
|
|
|
+ player.setVolume(newVolume);
|
|
|
+
|
|
|
+ if (newVolume <= 0.1) {
|
|
|
+ player.setMuted(true);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [37, 227],
|
|
|
+ action: function action(player) {
|
|
|
+ if (!isNaN(player.duration) && player.duration > 0) {
|
|
|
+ if (player.isVideo) {
|
|
|
+ player.showControls();
|
|
|
+ player.startControlsTimer();
|
|
|
+ }
|
|
|
+
|
|
|
+ var newTime = Math.max(player.currentTime - player.options.defaultSeekBackwardInterval(player), 0);
|
|
|
+ player.setCurrentTime(newTime);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [39, 228],
|
|
|
+ action: function action(player) {
|
|
|
+
|
|
|
+ if (!isNaN(player.duration) && player.duration > 0) {
|
|
|
+ if (player.isVideo) {
|
|
|
+ player.showControls();
|
|
|
+ player.startControlsTimer();
|
|
|
+ }
|
|
|
+
|
|
|
+ var newTime = Math.min(player.currentTime + player.options.defaultSeekForwardInterval(player), player.duration);
|
|
|
+ player.setCurrentTime(newTime);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [70],
|
|
|
+ action: function action(player, media, key, event) {
|
|
|
+ if (!event.ctrlKey) {
|
|
|
+ if (typeof player.enterFullScreen !== 'undefined') {
|
|
|
+ if (player.isFullScreen) {
|
|
|
+ player.exitFullScreen();
|
|
|
+ } else {
|
|
|
+ player.enterFullScreen();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ keys: [77],
|
|
|
+ action: function action(player) {
|
|
|
+
|
|
|
+ player.container.querySelector('.' + config.classPrefix + 'volume-slider').style.display = '';
|
|
|
+ if (player.isVideo) {
|
|
|
+ player.showControls();
|
|
|
+ player.startControlsTimer();
|
|
|
+ }
|
|
|
+ if (player.media.muted) {
|
|
|
+ player.setMuted(false);
|
|
|
+ } else {
|
|
|
+ player.setMuted(true);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }]
|
|
|
+};
|
|
|
+
|
|
|
+_mejs2.default.MepDefaults = config;
|
|
|
+
|
|
|
+var MediaElementPlayer = function () {
|
|
|
+ function MediaElementPlayer(node, o) {
|
|
|
+ _classCallCheck(this, MediaElementPlayer);
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ element = typeof node === 'string' ? _document2.default.getElementById(node) : node;
|
|
|
+
|
|
|
+ if (!(t instanceof MediaElementPlayer)) {
|
|
|
+ return new MediaElementPlayer(element, o);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.node = t.media = element;
|
|
|
+
|
|
|
+ if (!t.node) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.media.player) {
|
|
|
+ return t.media.player;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.hasFocus = false;
|
|
|
+
|
|
|
+ t.controlsAreVisible = true;
|
|
|
+
|
|
|
+ t.controlsEnabled = true;
|
|
|
+
|
|
|
+ t.controlsTimer = null;
|
|
|
+
|
|
|
+ t.currentMediaTime = 0;
|
|
|
+
|
|
|
+ t.proxy = null;
|
|
|
+
|
|
|
+ if (o === undefined) {
|
|
|
+ var options = t.node.getAttribute('data-mejsoptions');
|
|
|
+ o = options ? JSON.parse(options) : {};
|
|
|
+ }
|
|
|
+
|
|
|
+ t.options = Object.assign({}, config, o);
|
|
|
+
|
|
|
+ if (t.options.loop && !t.media.getAttribute('loop')) {
|
|
|
+ t.media.loop = true;
|
|
|
+ t.node.loop = true;
|
|
|
+ } else if (t.media.loop) {
|
|
|
+ t.options.loop = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!t.options.timeFormat) {
|
|
|
+ t.options.timeFormat = 'mm:ss';
|
|
|
+ if (t.options.alwaysShowHours) {
|
|
|
+ t.options.timeFormat = 'hh:mm:ss';
|
|
|
+ }
|
|
|
+ if (t.options.showTimecodeFrameCount) {
|
|
|
+ t.options.timeFormat += ':ff';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ (0, _time.calculateTimeFormat)(0, t.options, t.options.framesPerSecond || 25);
|
|
|
+
|
|
|
+ t.id = 'mep_' + _mejs2.default.mepIndex++;
|
|
|
+
|
|
|
+ _mejs2.default.players[t.id] = t;
|
|
|
+
|
|
|
+ var playerOptions = Object.assign({}, t.options, {
|
|
|
+ success: function success(media, domNode) {
|
|
|
+ t._meReady(media, domNode);
|
|
|
+ },
|
|
|
+ error: function error(e) {
|
|
|
+ t._handleError(e);
|
|
|
+ }
|
|
|
+ }),
|
|
|
+ tagName = t.node.tagName.toLowerCase();
|
|
|
+
|
|
|
+ t.isDynamic = tagName !== 'audio' && tagName !== 'video' && tagName !== 'iframe';
|
|
|
+ t.isVideo = t.isDynamic ? t.options.isVideo : tagName !== 'audio' && t.options.isVideo;
|
|
|
+ t.mediaFiles = null;
|
|
|
+ t.trackFiles = null;
|
|
|
+
|
|
|
+ if (_constants.IS_IPAD && t.options.iPadUseNativeControls || _constants.IS_IPHONE && t.options.iPhoneUseNativeControls) {
|
|
|
+ t.node.setAttribute('controls', true);
|
|
|
+
|
|
|
+ if (_constants.IS_IPAD && t.node.getAttribute('autoplay')) {
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+ } else if ((t.isVideo || !t.isVideo && (t.options.features.length || t.options.useDefaultControls)) && !(_constants.IS_ANDROID && t.options.AndroidUseNativeControls)) {
|
|
|
+ t.node.removeAttribute('controls');
|
|
|
+ var videoPlayerTitle = t.isVideo ? _i18n2.default.t('mejs.video-player') : _i18n2.default.t('mejs.audio-player');
|
|
|
+
|
|
|
+ var offscreen = _document2.default.createElement('span');
|
|
|
+ offscreen.className = t.options.classPrefix + 'offscreen';
|
|
|
+ offscreen.innerText = videoPlayerTitle;
|
|
|
+ t.media.parentNode.insertBefore(offscreen, t.media);
|
|
|
+
|
|
|
+ t.container = _document2.default.createElement('div');
|
|
|
+ t.container.id = t.id;
|
|
|
+ t.container.className = t.options.classPrefix + 'container ' + t.options.classPrefix + 'container-keyboard-inactive ' + t.media.className;
|
|
|
+ t.container.tabIndex = 0;
|
|
|
+ t.container.setAttribute('role', 'application');
|
|
|
+ t.container.setAttribute('aria-label', videoPlayerTitle);
|
|
|
+ t.container.innerHTML = '<div class="' + t.options.classPrefix + 'inner">' + ('<div class="' + t.options.classPrefix + 'mediaelement"></div>') + ('<div class="' + t.options.classPrefix + 'layers"></div>') + ('<div class="' + t.options.classPrefix + 'controls"></div>') + '</div>';
|
|
|
+ t.container.addEventListener('focus', function (e) {
|
|
|
+ if (!t.controlsAreVisible && !t.hasFocus && t.controlsEnabled) {
|
|
|
+ t.showControls(true);
|
|
|
+
|
|
|
+ var btnSelector = (0, _general.isNodeAfter)(e.relatedTarget, t.container) ? '.' + t.options.classPrefix + 'controls .' + t.options.classPrefix + 'button:last-child > button' : '.' + t.options.classPrefix + 'playpause-button > button',
|
|
|
+ button = t.container.querySelector(btnSelector);
|
|
|
+
|
|
|
+ button.focus();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.node.parentNode.insertBefore(t.container, t.node);
|
|
|
+
|
|
|
+ if (!t.options.features.length && !t.options.useDefaultControls) {
|
|
|
+ t.container.style.background = 'transparent';
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'controls').style.display = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.isVideo && t.options.stretching === 'fill' && !dom.hasClass(t.container.parentNode, t.options.classPrefix + 'fill-container')) {
|
|
|
+ t.outerContainer = t.media.parentNode;
|
|
|
+
|
|
|
+ var wrapper = _document2.default.createElement('div');
|
|
|
+ wrapper.className = t.options.classPrefix + 'fill-container';
|
|
|
+ t.container.parentNode.insertBefore(wrapper, t.container);
|
|
|
+ wrapper.appendChild(t.container);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (_constants.IS_ANDROID) {
|
|
|
+ dom.addClass(t.container, t.options.classPrefix + 'android');
|
|
|
+ }
|
|
|
+ if (_constants.IS_IOS) {
|
|
|
+ dom.addClass(t.container, t.options.classPrefix + 'ios');
|
|
|
+ }
|
|
|
+ if (_constants.IS_IPAD) {
|
|
|
+ dom.addClass(t.container, t.options.classPrefix + 'ipad');
|
|
|
+ }
|
|
|
+ if (_constants.IS_IPHONE) {
|
|
|
+ dom.addClass(t.container, t.options.classPrefix + 'iphone');
|
|
|
+ }
|
|
|
+ dom.addClass(t.container, t.isVideo ? t.options.classPrefix + 'video' : t.options.classPrefix + 'audio');
|
|
|
+
|
|
|
+ if (_constants.IS_SAFARI && !_constants.IS_IOS) {
|
|
|
+
|
|
|
+ dom.addClass(t.container, t.options.classPrefix + 'hide-cues');
|
|
|
+
|
|
|
+ var cloneNode = t.node.cloneNode(),
|
|
|
+ children = t.node.children,
|
|
|
+ mediaFiles = [],
|
|
|
+ tracks = [];
|
|
|
+
|
|
|
+ for (var i = 0, total = children.length; i < total; i++) {
|
|
|
+ var childNode = children[i];
|
|
|
+
|
|
|
+ (function () {
|
|
|
+ switch (childNode.tagName.toLowerCase()) {
|
|
|
+ case 'source':
|
|
|
+ var elements = {};
|
|
|
+ Array.prototype.slice.call(childNode.attributes).forEach(function (item) {
|
|
|
+ elements[item.name] = item.value;
|
|
|
+ });
|
|
|
+ elements.type = (0, _media.formatType)(elements.src, elements.type);
|
|
|
+ mediaFiles.push(elements);
|
|
|
+ break;
|
|
|
+ case 'track':
|
|
|
+ childNode.mode = 'hidden';
|
|
|
+ tracks.push(childNode);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ cloneNode.appendChild(childNode);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ })();
|
|
|
+ }
|
|
|
+
|
|
|
+ t.node.remove();
|
|
|
+ t.node = t.media = cloneNode;
|
|
|
+
|
|
|
+ if (mediaFiles.length) {
|
|
|
+ t.mediaFiles = mediaFiles;
|
|
|
+ }
|
|
|
+ if (tracks.length) {
|
|
|
+ t.trackFiles = tracks;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'mediaelement').appendChild(t.node);
|
|
|
+
|
|
|
+ t.media.player = t;
|
|
|
+
|
|
|
+ t.controls = t.container.querySelector('.' + t.options.classPrefix + 'controls');
|
|
|
+ t.layers = t.container.querySelector('.' + t.options.classPrefix + 'layers');
|
|
|
+
|
|
|
+ var tagType = t.isVideo ? 'video' : 'audio',
|
|
|
+ capsTagName = tagType.substring(0, 1).toUpperCase() + tagType.substring(1);
|
|
|
+
|
|
|
+ if (t.options[tagType + 'Width'] > 0 || t.options[tagType + 'Width'].toString().indexOf('%') > -1) {
|
|
|
+ t.width = t.options[tagType + 'Width'];
|
|
|
+ } else if (t.node.style.width !== '' && t.node.style.width !== null) {
|
|
|
+ t.width = t.node.style.width;
|
|
|
+ } else if (t.node.getAttribute('width')) {
|
|
|
+ t.width = t.node.getAttribute('width');
|
|
|
+ } else {
|
|
|
+ t.width = t.options['default' + capsTagName + 'Width'];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options[tagType + 'Height'] > 0 || t.options[tagType + 'Height'].toString().indexOf('%') > -1) {
|
|
|
+ t.height = t.options[tagType + 'Height'];
|
|
|
+ } else if (t.node.style.height !== '' && t.node.style.height !== null) {
|
|
|
+ t.height = t.node.style.height;
|
|
|
+ } else if (t.node.getAttribute('height')) {
|
|
|
+ t.height = t.node.getAttribute('height');
|
|
|
+ } else {
|
|
|
+ t.height = t.options['default' + capsTagName + 'Height'];
|
|
|
+ }
|
|
|
+
|
|
|
+ t.initialAspectRatio = t.height >= t.width ? t.width / t.height : t.height / t.width;
|
|
|
+
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+
|
|
|
+ playerOptions.pluginWidth = t.width;
|
|
|
+ playerOptions.pluginHeight = t.height;
|
|
|
+ } else if (!t.isVideo && !t.options.features.length && !t.options.useDefaultControls) {
|
|
|
+ t.node.style.display = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ _mejs2.default.MepDefaults = playerOptions;
|
|
|
+
|
|
|
+ new _mediaelement2.default(t.media, playerOptions, t.mediaFiles);
|
|
|
+
|
|
|
+ if (t.container !== undefined && t.options.features.length && t.controlsAreVisible && !t.options.hideVideoControlsOnLoad) {
|
|
|
+ var event = (0, _general.createEvent)('controlsshown', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ }
|
|
|
+
|
|
|
+ return t;
|
|
|
+ }
|
|
|
+
|
|
|
+ _createClass(MediaElementPlayer, [{
|
|
|
+ key: 'showControls',
|
|
|
+ value: function showControls(doAnimation) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ doAnimation = doAnimation === undefined || doAnimation;
|
|
|
+
|
|
|
+ if (t.controlsAreVisible || !t.isVideo) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (doAnimation) {
|
|
|
+ (function () {
|
|
|
+ dom.fadeIn(t.controls, 200, function () {
|
|
|
+ dom.removeClass(t.controls, t.options.classPrefix + 'offscreen');
|
|
|
+ var event = (0, _general.createEvent)('controlsshown', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ });
|
|
|
+
|
|
|
+ var controls = t.container.querySelectorAll('.' + t.options.classPrefix + 'control');
|
|
|
+
|
|
|
+ var _loop = function _loop(i, total) {
|
|
|
+ dom.fadeIn(controls[i], 200, function () {
|
|
|
+ dom.removeClass(controls[i], t.options.classPrefix + 'offscreen');
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ for (var i = 0, total = controls.length; i < total; i++) {
|
|
|
+ _loop(i, total);
|
|
|
+ }
|
|
|
+ })();
|
|
|
+ } else {
|
|
|
+ dom.removeClass(t.controls, t.options.classPrefix + 'offscreen');
|
|
|
+ t.controls.style.display = '';
|
|
|
+ t.controls.style.opacity = 1;
|
|
|
+
|
|
|
+ var controls = t.container.querySelectorAll('.' + t.options.classPrefix + 'control');
|
|
|
+ for (var i = 0, total = controls.length; i < total; i++) {
|
|
|
+ dom.removeClass(controls[i], t.options.classPrefix + 'offscreen');
|
|
|
+ controls[i].style.display = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ var event = (0, _general.createEvent)('controlsshown', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.controlsAreVisible = true;
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'hideControls',
|
|
|
+ value: function hideControls(doAnimation, forceHide) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ doAnimation = doAnimation === undefined || doAnimation;
|
|
|
+
|
|
|
+ if (forceHide !== true && (!t.controlsAreVisible || t.options.alwaysShowControls || t.paused && t.readyState === 4 && (!t.options.hideVideoControlsOnLoad && t.currentTime <= 0 || !t.options.hideVideoControlsOnPause && t.currentTime > 0) || t.isVideo && !t.options.hideVideoControlsOnLoad && !t.readyState || t.ended)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (doAnimation) {
|
|
|
+ (function () {
|
|
|
+ dom.fadeOut(t.controls, 200, function () {
|
|
|
+ dom.addClass(t.controls, t.options.classPrefix + 'offscreen');
|
|
|
+ t.controls.style.display = '';
|
|
|
+ var event = (0, _general.createEvent)('controlshidden', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ });
|
|
|
+
|
|
|
+ var controls = t.container.querySelectorAll('.' + t.options.classPrefix + 'control');
|
|
|
+
|
|
|
+ var _loop2 = function _loop2(i, total) {
|
|
|
+ dom.fadeOut(controls[i], 200, function () {
|
|
|
+ dom.addClass(controls[i], t.options.classPrefix + 'offscreen');
|
|
|
+ controls[i].style.display = '';
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ for (var i = 0, total = controls.length; i < total; i++) {
|
|
|
+ _loop2(i, total);
|
|
|
+ }
|
|
|
+ })();
|
|
|
+ } else {
|
|
|
+ dom.addClass(t.controls, t.options.classPrefix + 'offscreen');
|
|
|
+ t.controls.style.display = '';
|
|
|
+ t.controls.style.opacity = 0;
|
|
|
+
|
|
|
+ var controls = t.container.querySelectorAll('.' + t.options.classPrefix + 'control');
|
|
|
+ for (var i = 0, total = controls.length; i < total; i++) {
|
|
|
+ dom.addClass(controls[i], t.options.classPrefix + 'offscreen');
|
|
|
+ controls[i].style.display = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ var event = (0, _general.createEvent)('controlshidden', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.controlsAreVisible = false;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'startControlsTimer',
|
|
|
+ value: function startControlsTimer(timeout) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ timeout = typeof timeout !== 'undefined' ? timeout : t.options.controlsTimeoutDefault;
|
|
|
+
|
|
|
+ t.killControlsTimer('start');
|
|
|
+
|
|
|
+ t.controlsTimer = setTimeout(function () {
|
|
|
+ t.hideControls();
|
|
|
+ t.killControlsTimer('hide');
|
|
|
+ }, timeout);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'killControlsTimer',
|
|
|
+ value: function killControlsTimer() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (t.controlsTimer !== null) {
|
|
|
+ clearTimeout(t.controlsTimer);
|
|
|
+ delete t.controlsTimer;
|
|
|
+ t.controlsTimer = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'disableControls',
|
|
|
+ value: function disableControls() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ t.killControlsTimer();
|
|
|
+ t.controlsEnabled = false;
|
|
|
+ t.hideControls(false, true);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'enableControls',
|
|
|
+ value: function enableControls() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ t.controlsEnabled = true;
|
|
|
+ t.showControls(false);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: '_setDefaultPlayer',
|
|
|
+ value: function _setDefaultPlayer() {
|
|
|
+ var t = this;
|
|
|
+ if (t.proxy) {
|
|
|
+ t.proxy.pause();
|
|
|
+ }
|
|
|
+ t.proxy = new _default2.default(t);
|
|
|
+ t.media.addEventListener('loadedmetadata', function () {
|
|
|
+ if (t.getCurrentTime() > 0 && t.currentMediaTime > 0) {
|
|
|
+ t.setCurrentTime(t.currentMediaTime);
|
|
|
+ if (!_constants.IS_IOS && !_constants.IS_ANDROID) {
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: '_meReady',
|
|
|
+ value: function _meReady(media, domNode) {
|
|
|
+ var t = this,
|
|
|
+ autoplayAttr = domNode.getAttribute('autoplay'),
|
|
|
+ autoplay = !(autoplayAttr === undefined || autoplayAttr === null || autoplayAttr === 'false'),
|
|
|
+ isNative = media.rendererName !== null && /(native|html5)/i.test(t.media.rendererName);
|
|
|
+
|
|
|
+ if (t.controls) {
|
|
|
+ t.enableControls();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.container && t.container.querySelector('.' + t.options.classPrefix + 'overlay-play')) {
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'overlay-play').style.display = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.created) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.created = true;
|
|
|
+ t.media = media;
|
|
|
+ t.domNode = domNode;
|
|
|
+
|
|
|
+ if (!(_constants.IS_ANDROID && t.options.AndroidUseNativeControls) && !(_constants.IS_IPAD && t.options.iPadUseNativeControls) && !(_constants.IS_IPHONE && t.options.iPhoneUseNativeControls)) {
|
|
|
+ if (!t.isVideo && !t.options.features.length && !t.options.useDefaultControls) {
|
|
|
+ if (autoplay && isNative) {
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.success) {
|
|
|
+
|
|
|
+ if (typeof t.options.success === 'string') {
|
|
|
+ _window2.default[t.options.success](t.media, t.domNode, t);
|
|
|
+ } else {
|
|
|
+ t.options.success(t.media, t.domNode, t);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.findTracks();
|
|
|
+
|
|
|
+ t.featurePosition = {};
|
|
|
+
|
|
|
+ t._setDefaultPlayer();
|
|
|
+
|
|
|
+ if (t.options.useDefaultControls) {
|
|
|
+ var defaultControls = ['playpause', 'current', 'progress', 'duration', 'tracks', 'volume', 'fullscreen'];
|
|
|
+ t.options.features = defaultControls.concat(t.options.features.filter(function (item) {
|
|
|
+ return defaultControls.indexOf(item) === -1;
|
|
|
+ }));
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var i = 0, total = t.options.features.length; i < total; i++) {
|
|
|
+ var feature = t.options.features[i];
|
|
|
+ if (t['build' + feature]) {
|
|
|
+ try {
|
|
|
+ t['build' + feature](t, t.controls, t.layers, t.media);
|
|
|
+ } catch (e) {
|
|
|
+ console.error('error building ' + feature, e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.buildposter(t, t.controls, t.layers, t.media);
|
|
|
+ t.buildkeyboard(t, t.controls, t.layers, t.media);
|
|
|
+ t.buildoverlays(t, t.controls, t.layers, t.media);
|
|
|
+
|
|
|
+ var event = (0, _general.createEvent)('controlsready', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ t.setControlsSize();
|
|
|
+
|
|
|
+ if (t.isVideo) {
|
|
|
+ t.clickToPlayPauseCallback = function () {
|
|
|
+
|
|
|
+ if (t.options.clickToPlayPause) {
|
|
|
+ var button = t.container.querySelector('.' + t.options.classPrefix + 'overlay-button'),
|
|
|
+ pressed = button.getAttribute('aria-pressed');
|
|
|
+
|
|
|
+ if (t.paused && pressed) {
|
|
|
+ t.pause();
|
|
|
+ } else if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+
|
|
|
+ button.setAttribute('aria-pressed', !pressed);
|
|
|
+ t.container.focus();
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ t.createIframeLayer();
|
|
|
+
|
|
|
+ t.media.addEventListener('click', t.clickToPlayPauseCallback);
|
|
|
+
|
|
|
+ if ((_constants.IS_ANDROID || _constants.IS_IOS) && !t.options.alwaysShowControls) {
|
|
|
+ t.node.addEventListener('touchstart', function () {
|
|
|
+ if (t.controlsAreVisible) {
|
|
|
+ t.hideControls(false);
|
|
|
+ } else {
|
|
|
+ if (t.controlsEnabled) {
|
|
|
+ t.showControls(false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ t.container.addEventListener('mouseenter', function () {
|
|
|
+ if (t.controlsEnabled) {
|
|
|
+ if (!t.options.alwaysShowControls) {
|
|
|
+ t.killControlsTimer('enter');
|
|
|
+ t.showControls();
|
|
|
+ t.startControlsTimer(t.options.controlsTimeoutMouseEnter);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.container.addEventListener('mousemove', function () {
|
|
|
+ if (t.controlsEnabled) {
|
|
|
+ if (!t.controlsAreVisible) {
|
|
|
+ t.showControls();
|
|
|
+ }
|
|
|
+ if (!t.options.alwaysShowControls) {
|
|
|
+ t.startControlsTimer(t.options.controlsTimeoutMouseEnter);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.container.addEventListener('mouseleave', function () {
|
|
|
+ if (t.controlsEnabled) {
|
|
|
+ if (!t.paused && !t.options.alwaysShowControls) {
|
|
|
+ t.startControlsTimer(t.options.controlsTimeoutMouseLeave);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.hideVideoControlsOnLoad) {
|
|
|
+ t.hideControls(false);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.enableAutosize) {
|
|
|
+ t.media.addEventListener('loadedmetadata', function (e) {
|
|
|
+ var target = e !== undefined ? e.detail.target || e.target : t.media;
|
|
|
+ if (t.options.videoHeight <= 0 && !t.domNode.getAttribute('height') && target !== null && !isNaN(target.videoHeight)) {
|
|
|
+ t.setPlayerSize(target.videoWidth, target.videoHeight);
|
|
|
+ t.setControlsSize();
|
|
|
+ t.media.setSize(target.videoWidth, target.videoHeight);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ t.media.addEventListener('play', function () {
|
|
|
+ t.hasFocus = true;
|
|
|
+
|
|
|
+ for (var playerIndex in _mejs2.default.players) {
|
|
|
+ if (_mejs2.default.players.hasOwnProperty(playerIndex)) {
|
|
|
+ var p = _mejs2.default.players[playerIndex];
|
|
|
+
|
|
|
+ if (p.id !== t.id && t.options.pauseOtherPlayers && !p.paused && !p.ended) {
|
|
|
+ p.pause();
|
|
|
+ p.hasFocus = false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!(_constants.IS_ANDROID || _constants.IS_IOS) && !t.options.alwaysShowControls && t.isVideo) {
|
|
|
+ t.hideControls();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ t.media.addEventListener('ended', function () {
|
|
|
+ if (t.options.autoRewind) {
|
|
|
+ try {
|
|
|
+ t.setCurrentTime(0);
|
|
|
+
|
|
|
+ setTimeout(function () {
|
|
|
+ var loadingElement = t.container.querySelector('.' + t.options.classPrefix + 'overlay-loading');
|
|
|
+ if (loadingElement && loadingElement.parentNode) {
|
|
|
+ loadingElement.parentNode.style.display = 'none';
|
|
|
+ }
|
|
|
+ }, 20);
|
|
|
+ } catch (exp) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (typeof t.media.renderer.stop === 'function') {
|
|
|
+ t.media.renderer.stop();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.setProgressRail) {
|
|
|
+ t.setProgressRail();
|
|
|
+ }
|
|
|
+ if (t.setCurrentRail) {
|
|
|
+ t.setCurrentRail();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.loop) {
|
|
|
+ t.play();
|
|
|
+ } else if (!t.options.alwaysShowControls && t.controlsEnabled) {
|
|
|
+ t.showControls();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ t.media.addEventListener('loadedmetadata', function () {
|
|
|
+
|
|
|
+ (0, _time.calculateTimeFormat)(t.getDuration(), t.options, t.options.framesPerSecond || 25);
|
|
|
+
|
|
|
+ if (t.updateDuration) {
|
|
|
+ t.updateDuration();
|
|
|
+ }
|
|
|
+ if (t.updateCurrent) {
|
|
|
+ t.updateCurrent();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!t.isFullScreen) {
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ var duration = null;
|
|
|
+ t.media.addEventListener('timeupdate', function () {
|
|
|
+ if (!isNaN(t.getDuration()) && duration !== t.getDuration()) {
|
|
|
+ duration = t.getDuration();
|
|
|
+ (0, _time.calculateTimeFormat)(duration, t.options, t.options.framesPerSecond || 25);
|
|
|
+
|
|
|
+ if (t.updateDuration) {
|
|
|
+ t.updateDuration();
|
|
|
+ }
|
|
|
+ if (t.updateCurrent) {
|
|
|
+ t.updateCurrent();
|
|
|
+ }
|
|
|
+
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ t.container.addEventListener('click', function (e) {
|
|
|
+ dom.addClass(e.currentTarget, t.options.classPrefix + 'container-keyboard-inactive');
|
|
|
+ });
|
|
|
+
|
|
|
+ t.container.addEventListener('focusin', function (e) {
|
|
|
+ dom.removeClass(e.currentTarget, t.options.classPrefix + 'container-keyboard-inactive');
|
|
|
+ if (t.isVideo && !_constants.IS_ANDROID && !_constants.IS_IOS && t.controlsEnabled && !t.options.alwaysShowControls) {
|
|
|
+ t.killControlsTimer('enter');
|
|
|
+ t.showControls();
|
|
|
+ t.startControlsTimer(t.options.controlsTimeoutMouseEnter);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ t.container.addEventListener('focusout', function (e) {
|
|
|
+ setTimeout(function () {
|
|
|
+ if (e.relatedTarget) {
|
|
|
+ if (t.keyboardAction && !e.relatedTarget.closest('.' + t.options.classPrefix + 'container')) {
|
|
|
+ t.keyboardAction = false;
|
|
|
+ if (t.isVideo && !t.options.alwaysShowControls && !t.paused) {
|
|
|
+ t.startControlsTimer(t.options.controlsTimeoutMouseLeave);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, 0);
|
|
|
+ });
|
|
|
+
|
|
|
+ setTimeout(function () {
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ t.setControlsSize();
|
|
|
+ }, 0);
|
|
|
+
|
|
|
+ t.globalResizeCallback = function () {
|
|
|
+ if (!(t.isFullScreen || _constants.HAS_TRUE_NATIVE_FULLSCREEN && _document2.default.webkitIsFullScreen)) {
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ }
|
|
|
+
|
|
|
+ t.setControlsSize();
|
|
|
+ };
|
|
|
+
|
|
|
+ t.globalBind('resize', t.globalResizeCallback);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (autoplay && isNative) {
|
|
|
+ t.play();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.success) {
|
|
|
+ if (typeof t.options.success === 'string') {
|
|
|
+ _window2.default[t.options.success](t.media, t.domNode, t);
|
|
|
+ } else {
|
|
|
+ t.options.success(t.media, t.domNode, t);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: '_handleError',
|
|
|
+ value: function _handleError(e, media, node) {
|
|
|
+ var t = this,
|
|
|
+ play = t.layers.querySelector('.' + t.options.classPrefix + 'overlay-play');
|
|
|
|
|
|
- /**
|
|
|
- * Filters for available languages.
|
|
|
- *
|
|
|
- * This plural forms are grouped in family groups based on
|
|
|
- * https://developer.mozilla.org/en-US/docs/Mozilla/Localization/Localization_and_Plurals#List_of_Plural_Rules
|
|
|
- * with some additions and corrections according to the Localization Guide list
|
|
|
- * (http://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html)
|
|
|
- *
|
|
|
- * Arguments are dynamic following the structure:
|
|
|
- * - argument1 : Number to determine form
|
|
|
- * - argument2...argumentN: Possible matches
|
|
|
- *
|
|
|
- * @type {Function[]}
|
|
|
- */
|
|
|
- pluralForms: [
|
|
|
- // 0: Chinese, Japanese, Korean, Persian, Turkish, Thai, Lao, Aymará,
|
|
|
- // Tibetan, Chiga, Dzongkha, Indonesian, Lojban, Georgian, Kazakh, Khmer, Kyrgyz, Malay,
|
|
|
- // Burmese, Yakut, Sundanese, Tatar, Uyghur, Vietnamese, Wolof
|
|
|
- function () {
|
|
|
- return arguments[1];
|
|
|
- },
|
|
|
- // 1: Danish, Dutch, English, Faroese, Frisian, German, Norwegian, Swedish, Estonian, Finnish,
|
|
|
- // Hungarian, Basque, Greek, Hebrew, Italian, Portuguese, Spanish, Catalan, Afrikaans,
|
|
|
- // Angika, Assamese, Asturian, Azerbaijani, Bulgarian, Bengali, Bodo, Aragonese, Dogri,
|
|
|
- // Esperanto, Argentinean Spanish, Fulah, Friulian, Galician, Gujarati, Hausa,
|
|
|
- // Hindi, Chhattisgarhi, Armenian, Interlingua, Greenlandic, Kannada, Kurdish, Letzeburgesch,
|
|
|
- // Maithili, Malayalam, Mongolian, Manipuri, Marathi, Nahuatl, Neapolitan, Norwegian Bokmal,
|
|
|
- // Nepali, Norwegian Nynorsk, Norwegian (old code), Northern Sotho, Oriya, Punjabi, Papiamento,
|
|
|
- // Piemontese, Pashto, Romansh, Kinyarwanda, Santali, Scots, Sindhi, Northern Sami, Sinhala,
|
|
|
- // Somali, Songhay, Albanian, Swahili, Tamil, Telugu, Turkmen, Urdu, Yoruba
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else {
|
|
|
- return args[2];
|
|
|
+ if (play) {
|
|
|
+ play.style.display = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.options.error) {
|
|
|
+ t.options.error(e, media, node);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.container.querySelector('.' + t.options.classPrefix + 'cannotplay')) {
|
|
|
+ t.container.querySelector('.' + t.options.classPrefix + 'cannotplay').remove();
|
|
|
+ }
|
|
|
+
|
|
|
+ var errorContainer = _document2.default.createElement('div');
|
|
|
+ errorContainer.className = t.options.classPrefix + 'cannotplay';
|
|
|
+ errorContainer.style.width = '100%';
|
|
|
+ errorContainer.style.height = '100%';
|
|
|
+
|
|
|
+ var errorContent = typeof t.options.customError === 'function' ? t.options.customError(t.media, t.media.originalNode) : t.options.customError,
|
|
|
+ imgError = '';
|
|
|
+
|
|
|
+ if (errorContent) {
|
|
|
+ var poster = t.media.originalNode.getAttribute('poster');
|
|
|
+ if (poster) {
|
|
|
+ imgError = '<img src="' + poster + '" alt="' + _mejs2.default.i18n.t('mejs.download-file') + '">';
|
|
|
}
|
|
|
- },
|
|
|
- // 2: French, Brazilian Portuguese, Acholi, Akan, Amharic, Mapudungun, Breton, Filipino,
|
|
|
- // Gun, Lingala, Mauritian Creole, Malagasy, Maori, Occitan, Tajik, Tigrinya, Uzbek, Walloon
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if ([0, 1].indexOf(args[0]) > -1) {
|
|
|
- return args[1];
|
|
|
- } else {
|
|
|
- return args[2];
|
|
|
+
|
|
|
+ if (e.message) {
|
|
|
+ errorContent += '<p>' + e.message + '</p>';
|
|
|
}
|
|
|
- },
|
|
|
- // 3: Latvian
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] % 10 === 1 && args[0] % 100 !== 11) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] !== 0) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+
|
|
|
+ if (e.urls) {
|
|
|
+ for (var i = 0, total = e.urls.length; i < total; i++) {
|
|
|
+ var url = e.urls[i];
|
|
|
+ errorContent += '<a href="' + url.src + '" data-type="' + url.type + '"><span>' + _mejs2.default.i18n.t('mejs.download-file') + ': ' + url.src + '</span></a>';
|
|
|
+ }
|
|
|
}
|
|
|
- },
|
|
|
- // 4: Scottish Gaelic
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1 || args[0] === 11) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 2 || args[0] === 12) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] > 2 && args[0] < 20) {
|
|
|
- return args[3];
|
|
|
- } else {
|
|
|
- return args[4];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (errorContent && t.layers.querySelector('.' + t.options.classPrefix + 'overlay-error')) {
|
|
|
+ errorContainer.innerHTML = errorContent;
|
|
|
+ t.layers.querySelector('.' + t.options.classPrefix + 'overlay-error').innerHTML = '' + imgError + errorContainer.outerHTML;
|
|
|
+ t.layers.querySelector('.' + t.options.classPrefix + 'overlay-error').parentNode.style.display = 'block';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setPlayerSize',
|
|
|
+ value: function setPlayerSize(width, height) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (!t.options.setDimensions) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (typeof width !== 'undefined') {
|
|
|
+ t.width = width;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (typeof height !== 'undefined') {
|
|
|
+ t.height = height;
|
|
|
+ }
|
|
|
+
|
|
|
+ switch (t.options.stretching) {
|
|
|
+ case 'fill':
|
|
|
+ if (t.isVideo) {
|
|
|
+ t.setFillMode();
|
|
|
+ } else {
|
|
|
+ t.setDimensions(t.width, t.height);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 'responsive':
|
|
|
+ t.setResponsiveMode();
|
|
|
+ break;
|
|
|
+ case 'none':
|
|
|
+ t.setDimensions(t.width, t.height);
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ if (t.hasFluidMode() === true) {
|
|
|
+ t.setResponsiveMode();
|
|
|
+ } else {
|
|
|
+ t.setDimensions(t.width, t.height);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'hasFluidMode',
|
|
|
+ value: function hasFluidMode() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ return t.height.toString().indexOf('%') !== -1 || t.node && t.node.style.maxWidth && t.node.style.maxWidth !== 'none' && t.node.style.maxWidth !== t.width || t.node && t.node.currentStyle && t.node.currentStyle.maxWidth === '100%';
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setResponsiveMode',
|
|
|
+ value: function setResponsiveMode() {
|
|
|
+ var t = this,
|
|
|
+ parent = function () {
|
|
|
+
|
|
|
+ var parentEl = void 0,
|
|
|
+ el = t.container;
|
|
|
+
|
|
|
+ while (el) {
|
|
|
+ try {
|
|
|
+ if (_constants.IS_FIREFOX && el.tagName.toLowerCase() === 'html' && _window2.default.self !== _window2.default.top && _window2.default.frameElement !== null) {
|
|
|
+ return _window2.default.frameElement;
|
|
|
+ } else {
|
|
|
+ parentEl = el.parentElement;
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ parentEl = el.parentElement;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (parentEl && dom.visible(parentEl)) {
|
|
|
+ return parentEl;
|
|
|
+ }
|
|
|
+ el = parentEl;
|
|
|
}
|
|
|
- },
|
|
|
- // 5: Romanian
|
|
|
- function () {
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 0 || (args[0] % 100 > 0 && args[0] % 100 < 20)) {
|
|
|
- return args[2];
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }(),
|
|
|
+ parentStyles = parent ? getComputedStyle(parent, null) : getComputedStyle(_document2.default.body, null),
|
|
|
+ nativeWidth = function () {
|
|
|
+ if (t.isVideo) {
|
|
|
+ if (t.media.videoWidth && t.media.videoWidth > 0) {
|
|
|
+ return t.media.videoWidth;
|
|
|
+ } else if (t.node.getAttribute('width')) {
|
|
|
+ return t.node.getAttribute('width');
|
|
|
+ } else {
|
|
|
+ return t.options.defaultVideoWidth;
|
|
|
+ }
|
|
|
} else {
|
|
|
- return args[3];
|
|
|
+ return t.options.defaultAudioWidth;
|
|
|
}
|
|
|
- },
|
|
|
- // 6: Lithuanian
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] % 10 === 1 && args[0] % 100 !== 11) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] % 10 >= 2 && (args[0] % 100 < 10 || args[0] % 100 >= 20)) {
|
|
|
- return args[2];
|
|
|
+ }(),
|
|
|
+ nativeHeight = function () {
|
|
|
+ if (t.isVideo) {
|
|
|
+ if (t.media.videoHeight && t.media.videoHeight > 0) {
|
|
|
+ return t.media.videoHeight;
|
|
|
+ } else if (t.node.getAttribute('height')) {
|
|
|
+ return t.node.getAttribute('height');
|
|
|
+ } else {
|
|
|
+ return t.options.defaultVideoHeight;
|
|
|
+ }
|
|
|
} else {
|
|
|
- return [3];
|
|
|
+ return t.options.defaultAudioHeight;
|
|
|
}
|
|
|
- },
|
|
|
- // 7: Belarusian, Bosnian, Croatian, Serbian, Russian, Ukrainian
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] % 10 === 1 && args[0] % 100 !== 11) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] % 10 >= 2 && args[0] % 10 <= 4 && (args[0] % 100 < 10 || args[0] % 100 >= 20)) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+ }(),
|
|
|
+ aspectRatio = function () {
|
|
|
+ var ratio = 1;
|
|
|
+ if (!t.isVideo) {
|
|
|
+ return ratio;
|
|
|
}
|
|
|
- },
|
|
|
- // 8: Slovak, Czech
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] >= 2 && args[0] <= 4) {
|
|
|
- return args[2];
|
|
|
+
|
|
|
+ if (t.media.videoWidth && t.media.videoWidth > 0 && t.media.videoHeight && t.media.videoHeight > 0) {
|
|
|
+ ratio = t.height >= t.width ? t.media.videoWidth / t.media.videoHeight : t.media.videoHeight / t.media.videoWidth;
|
|
|
} else {
|
|
|
- return args[3];
|
|
|
+ ratio = t.initialAspectRatio;
|
|
|
}
|
|
|
- },
|
|
|
- // 9: Polish
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] % 10 >= 2 && args[0] % 10 <= 4 && (args[0] % 100 < 10 || args[0] % 100 >= 20)) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+
|
|
|
+ if (isNaN(ratio) || ratio < 0.01 || ratio > 100) {
|
|
|
+ ratio = 1;
|
|
|
}
|
|
|
- },
|
|
|
- // 10: Slovenian
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] % 100 === 1) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] % 100 === 2) {
|
|
|
- return args[3];
|
|
|
- } else if (args[0] % 100 === 3 || args[0] % 100 === 4) {
|
|
|
- return args[4];
|
|
|
+
|
|
|
+ return ratio;
|
|
|
+ }(),
|
|
|
+ parentHeight = parseFloat(parentStyles.height);
|
|
|
+
|
|
|
+ var newHeight = void 0,
|
|
|
+ parentWidth = parseFloat(parentStyles.width);
|
|
|
+
|
|
|
+ if (t.isVideo) {
|
|
|
+ if (t.height === '100%') {
|
|
|
+ newHeight = parseFloat(parentWidth * nativeHeight / nativeWidth, 10);
|
|
|
} else {
|
|
|
- return args[1];
|
|
|
+ newHeight = t.height >= t.width ? parseFloat(parentWidth / aspectRatio, 10) : parseFloat(parentWidth * aspectRatio, 10);
|
|
|
}
|
|
|
- },
|
|
|
- // 11: Irish Gaelic
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 2) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] > 2 && args[0] < 7) {
|
|
|
- return args[3];
|
|
|
- } else if (args[0] > 6 && args[0] < 11) {
|
|
|
- return args[4];
|
|
|
- } else {
|
|
|
- return args[5];
|
|
|
+ } else {
|
|
|
+ newHeight = nativeHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isNaN(newHeight)) {
|
|
|
+ newHeight = parentHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.container.parentNode.length > 0 && t.container.parentNode.tagName.toLowerCase() === 'body') {
|
|
|
+ parentWidth = _window2.default.innerWidth || _document2.default.documentElement.clientWidth || _document2.default.body.clientWidth;
|
|
|
+ newHeight = _window2.default.innerHeight || _document2.default.documentElement.clientHeight || _document2.default.body.clientHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (newHeight && parentWidth) {
|
|
|
+ t.container.style.width = parentWidth + 'px';
|
|
|
+ t.container.style.height = newHeight + 'px';
|
|
|
+
|
|
|
+ t.node.style.width = '100%';
|
|
|
+ t.node.style.height = '100%';
|
|
|
+
|
|
|
+ if (t.isVideo && t.media.setSize) {
|
|
|
+ t.media.setSize(parentWidth, newHeight);
|
|
|
}
|
|
|
- },
|
|
|
- // 12: Arabic
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 0) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 1) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] === 2) {
|
|
|
- return args[3];
|
|
|
- } else if (args[0] % 100 >= 3 && args[0] % 100 <= 10) {
|
|
|
- return args[4];
|
|
|
- } else if (args[0] % 100 >= 11) {
|
|
|
- return args[5];
|
|
|
- } else {
|
|
|
- return args[6];
|
|
|
+
|
|
|
+ var layerChildren = t.layers.children;
|
|
|
+ for (var i = 0, total = layerChildren.length; i < total; i++) {
|
|
|
+ layerChildren[i].style.width = '100%';
|
|
|
+ layerChildren[i].style.height = '100%';
|
|
|
}
|
|
|
- },
|
|
|
- // 13: Maltese
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 0 || (args[0] % 100 > 1 && args[0] % 100 < 11)) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] % 100 > 10 && args[0] % 100 < 20) {
|
|
|
- return args[3];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setFillMode',
|
|
|
+ value: function setFillMode() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ var parent = void 0,
|
|
|
+ isIframe = false;
|
|
|
+
|
|
|
+ try {
|
|
|
+ if (_window2.default.self !== _window2.default.top) {
|
|
|
+ isIframe = true;
|
|
|
+ parent = _window2.default.frameElement;
|
|
|
} else {
|
|
|
- return args[4];
|
|
|
+ parent = t.outerContainer;
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ parent = t.outerContainer;
|
|
|
+ }
|
|
|
+
|
|
|
+ var parentStyles = getComputedStyle(parent);
|
|
|
+
|
|
|
+ if (t.node.style.height !== 'none' && t.node.style.height !== t.height) {
|
|
|
+ t.node.style.height = 'auto';
|
|
|
+ }
|
|
|
+ if (t.node.style.maxWidth !== 'none' && t.node.style.maxWidth !== t.width) {
|
|
|
+ t.node.style.maxWidth = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.node.style.maxHeight !== 'none' && t.node.style.maxHeight !== t.height) {
|
|
|
+ t.node.style.maxHeight = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.node.currentStyle) {
|
|
|
+ if (t.node.currentStyle.height === '100%') {
|
|
|
+ t.node.currentStyle.height = 'auto';
|
|
|
+ }
|
|
|
+ if (t.node.currentStyle.maxWidth === '100%') {
|
|
|
+ t.node.currentStyle.maxWidth = 'none';
|
|
|
+ }
|
|
|
+ if (t.node.currentStyle.maxHeight === '100%') {
|
|
|
+ t.node.currentStyle.maxHeight = 'none';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!isIframe && !parseFloat(parentStyles.width)) {
|
|
|
+ parent.style.width = t.media.offsetWidth + 'px';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!isIframe && !parseFloat(parentStyles.height)) {
|
|
|
+ parent.style.height = t.media.offsetHeight + 'px';
|
|
|
+ }
|
|
|
+
|
|
|
+ parentStyles = getComputedStyle(parent);
|
|
|
+
|
|
|
+ var parentWidth = parseFloat(parentStyles.width),
|
|
|
+ parentHeight = parseFloat(parentStyles.height);
|
|
|
+
|
|
|
+ t.setDimensions('100%', '100%');
|
|
|
+
|
|
|
+ var poster = t.container.querySelector('.' + t.options.classPrefix + 'poster>img');
|
|
|
+ if (poster) {
|
|
|
+ poster.style.display = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ var targetElement = t.container.querySelectorAll('object, embed, iframe, video'),
|
|
|
+ initHeight = t.height,
|
|
|
+ initWidth = t.width,
|
|
|
+ scaleX1 = parentWidth,
|
|
|
+ scaleY1 = initHeight * parentWidth / initWidth,
|
|
|
+ scaleX2 = initWidth * parentHeight / initHeight,
|
|
|
+ scaleY2 = parentHeight,
|
|
|
+ bScaleOnWidth = scaleX2 > parentWidth === false,
|
|
|
+ finalWidth = bScaleOnWidth ? Math.floor(scaleX1) : Math.floor(scaleX2),
|
|
|
+ finalHeight = bScaleOnWidth ? Math.floor(scaleY1) : Math.floor(scaleY2),
|
|
|
+ width = bScaleOnWidth ? parentWidth + 'px' : finalWidth + 'px',
|
|
|
+ height = bScaleOnWidth ? finalHeight + 'px' : parentHeight + 'px';
|
|
|
+
|
|
|
+ for (var i = 0, total = targetElement.length; i < total; i++) {
|
|
|
+ targetElement[i].style.height = height;
|
|
|
+ targetElement[i].style.width = width;
|
|
|
+ if (t.media.setSize) {
|
|
|
+ t.media.setSize(width, height);
|
|
|
+ }
|
|
|
+
|
|
|
+ targetElement[i].style.marginLeft = Math.floor((parentWidth - finalWidth) / 2) + 'px';
|
|
|
+ targetElement[i].style.marginTop = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setDimensions',
|
|
|
+ value: function setDimensions(width, height) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ width = (0, _general.isString)(width) && width.indexOf('%') > -1 ? width : parseFloat(width) + 'px';
|
|
|
+ height = (0, _general.isString)(height) && height.indexOf('%') > -1 ? height : parseFloat(height) + 'px';
|
|
|
+
|
|
|
+ t.container.style.width = width;
|
|
|
+ t.container.style.height = height;
|
|
|
+
|
|
|
+ var layers = t.layers.children;
|
|
|
+ for (var i = 0, total = layers.length; i < total; i++) {
|
|
|
+ layers[i].style.width = width;
|
|
|
+ layers[i].style.height = height;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setControlsSize',
|
|
|
+ value: function setControlsSize() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (!dom.visible(t.container)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (t.rail && dom.visible(t.rail)) {
|
|
|
+ var totalStyles = t.total ? getComputedStyle(t.total, null) : null,
|
|
|
+ totalMargin = totalStyles ? parseFloat(totalStyles.marginLeft) + parseFloat(totalStyles.marginRight) : 0,
|
|
|
+ railStyles = getComputedStyle(t.rail),
|
|
|
+ railMargin = parseFloat(railStyles.marginLeft) + parseFloat(railStyles.marginRight);
|
|
|
+
|
|
|
+ var siblingsWidth = 0;
|
|
|
+
|
|
|
+ var siblings = dom.siblings(t.rail, function (el) {
|
|
|
+ return el !== t.rail;
|
|
|
+ }),
|
|
|
+ total = siblings.length;
|
|
|
+ for (var i = 0; i < total; i++) {
|
|
|
+ siblingsWidth += siblings[i].offsetWidth;
|
|
|
+ }
|
|
|
+
|
|
|
+ siblingsWidth += totalMargin + (totalMargin === 0 ? railMargin * 2 : railMargin) + 1;
|
|
|
+
|
|
|
+ t.container.style.minWidth = siblingsWidth + 'px';
|
|
|
+
|
|
|
+ var event = (0, _general.createEvent)('controlsresize', t.container);
|
|
|
+ t.container.dispatchEvent(event);
|
|
|
+ } else {
|
|
|
+ var children = t.controls.children;
|
|
|
+ var minWidth = 0;
|
|
|
+
|
|
|
+ for (var _i = 0, _total = children.length; _i < _total; _i++) {
|
|
|
+ minWidth += children[_i].offsetWidth;
|
|
|
+ }
|
|
|
+
|
|
|
+ t.container.style.minWidth = minWidth + 'px';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'addControlElement',
|
|
|
+ value: function addControlElement(element, key) {
|
|
|
+
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (t.featurePosition[key] !== undefined) {
|
|
|
+ var child = t.controls.children[t.featurePosition[key] - 1];
|
|
|
+ child.parentNode.insertBefore(element, child.nextSibling);
|
|
|
+ } else {
|
|
|
+ t.controls.appendChild(element);
|
|
|
+ var children = t.controls.children;
|
|
|
+ for (var i = 0, total = children.length; i < total; i++) {
|
|
|
+ if (element === children[i]) {
|
|
|
+ t.featurePosition[key] = i;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'createIframeLayer',
|
|
|
+ value: function createIframeLayer() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ if (t.isVideo && t.media.rendererName !== null && t.media.rendererName.indexOf('iframe') > -1 && !_document2.default.getElementById(t.media.id + '-iframe-overlay')) {
|
|
|
+
|
|
|
+ var layer = _document2.default.createElement('div'),
|
|
|
+ target = _document2.default.getElementById(t.media.id + '_' + t.media.rendererName);
|
|
|
+
|
|
|
+ layer.id = t.media.id + '-iframe-overlay';
|
|
|
+ layer.className = t.options.classPrefix + 'iframe-overlay';
|
|
|
+ layer.addEventListener('click', function (e) {
|
|
|
+ if (t.options.clickToPlayPause) {
|
|
|
+ if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ target.parentNode.insertBefore(layer, target);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'resetSize',
|
|
|
+ value: function resetSize() {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ setTimeout(function () {
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ t.setControlsSize();
|
|
|
+ }, 50);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setPoster',
|
|
|
+ value: function setPoster(url) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ var posterDiv = t.container.querySelector('.' + t.options.classPrefix + 'poster');
|
|
|
+
|
|
|
+ if (!posterDiv) {
|
|
|
+ posterDiv = _document2.default.createElement('div');
|
|
|
+ posterDiv.className = t.options.classPrefix + 'poster ' + t.options.classPrefix + 'layer';
|
|
|
+ t.layers.appendChild(posterDiv);
|
|
|
+ }
|
|
|
+
|
|
|
+ var posterImg = posterDiv.querySelector('img');
|
|
|
+
|
|
|
+ if (!posterImg && url) {
|
|
|
+ posterImg = _document2.default.createElement('img');
|
|
|
+ posterImg.className = t.options.classPrefix + 'poster-img';
|
|
|
+ posterImg.width = '100%';
|
|
|
+ posterImg.height = '100%';
|
|
|
+ posterDiv.style.display = '';
|
|
|
+ posterDiv.appendChild(posterImg);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (url) {
|
|
|
+ posterImg.setAttribute('src', url);
|
|
|
+ posterDiv.style.backgroundImage = 'url("' + url + '")';
|
|
|
+ posterDiv.style.display = '';
|
|
|
+ } else if (posterImg) {
|
|
|
+ posterDiv.style.backgroundImage = 'none';
|
|
|
+ posterDiv.style.display = 'none';
|
|
|
+ posterImg.remove();
|
|
|
+ } else {
|
|
|
+ posterDiv.style.display = 'none';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'changeSkin',
|
|
|
+ value: function changeSkin(className) {
|
|
|
+ var t = this;
|
|
|
+
|
|
|
+ t.container.className = t.options.classPrefix + 'container ' + className;
|
|
|
+ t.setPlayerSize(t.width, t.height);
|
|
|
+ t.setControlsSize();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'globalBind',
|
|
|
+ value: function globalBind(events, callback) {
|
|
|
+ var t = this,
|
|
|
+ doc = t.node ? t.node.ownerDocument : _document2.default;
|
|
|
+
|
|
|
+ events = (0, _general.splitEvents)(events, t.id);
|
|
|
+ if (events.d) {
|
|
|
+ var eventList = events.d.split(' ');
|
|
|
+ for (var i = 0, total = eventList.length; i < total; i++) {
|
|
|
+ eventList[i].split('.').reduce(function (part, e) {
|
|
|
+ doc.addEventListener(e, callback, false);
|
|
|
+ return e;
|
|
|
+ }, '');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (events.w) {
|
|
|
+ var _eventList = events.w.split(' ');
|
|
|
+ for (var _i2 = 0, _total2 = _eventList.length; _i2 < _total2; _i2++) {
|
|
|
+ _eventList[_i2].split('.').reduce(function (part, e) {
|
|
|
+ _window2.default.addEventListener(e, callback, false);
|
|
|
+ return e;
|
|
|
+ }, '');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'globalUnbind',
|
|
|
+ value: function globalUnbind(events, callback) {
|
|
|
+ var t = this,
|
|
|
+ doc = t.node ? t.node.ownerDocument : _document2.default;
|
|
|
+
|
|
|
+ events = (0, _general.splitEvents)(events, t.id);
|
|
|
+ if (events.d) {
|
|
|
+ var eventList = events.d.split(' ');
|
|
|
+ for (var i = 0, total = eventList.length; i < total; i++) {
|
|
|
+ eventList[i].split('.').reduce(function (part, e) {
|
|
|
+ doc.removeEventListener(e, callback, false);
|
|
|
+ return e;
|
|
|
+ }, '');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (events.w) {
|
|
|
+ var _eventList2 = events.w.split(' ');
|
|
|
+ for (var _i3 = 0, _total3 = _eventList2.length; _i3 < _total3; _i3++) {
|
|
|
+ _eventList2[_i3].split('.').reduce(function (part, e) {
|
|
|
+ _window2.default.removeEventListener(e, callback, false);
|
|
|
+ return e;
|
|
|
+ }, '');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'buildposter',
|
|
|
+ value: function buildposter(player, controls, layers, media) {
|
|
|
+ var t = this,
|
|
|
+ poster = _document2.default.createElement('div');
|
|
|
+
|
|
|
+ poster.className = t.options.classPrefix + 'poster ' + t.options.classPrefix + 'layer';
|
|
|
+ layers.appendChild(poster);
|
|
|
+
|
|
|
+ var posterUrl = media.originalNode.getAttribute('poster');
|
|
|
+
|
|
|
+ if (player.options.poster !== '' && posterUrl && _constants.IS_IOS) {
|
|
|
+ media.originalNode.removeAttribute('poster');
|
|
|
+ posterUrl = player.options.poster;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (posterUrl) {
|
|
|
+ t.setPoster(posterUrl);
|
|
|
+ } else if (t.media.renderer !== null && typeof t.media.renderer.getPosterUrl === 'function') {
|
|
|
+ t.setPoster(t.media.renderer.getPosterUrl());
|
|
|
+ } else {
|
|
|
+ poster.style.display = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ media.addEventListener('play', function () {
|
|
|
+ poster.style.display = 'none';
|
|
|
+ });
|
|
|
+
|
|
|
+ media.addEventListener('playing', function () {
|
|
|
+ poster.style.display = 'none';
|
|
|
+ });
|
|
|
+
|
|
|
+ if (player.options.showPosterWhenEnded && player.options.autoRewind) {
|
|
|
+ media.addEventListener('ended', function () {
|
|
|
+ poster.style.display = '';
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ media.addEventListener('error', function () {
|
|
|
+ poster.style.display = 'none';
|
|
|
+ });
|
|
|
+
|
|
|
+ if (player.options.showPosterWhenPaused) {
|
|
|
+ media.addEventListener('pause', function () {
|
|
|
+ if (!player.ended) {
|
|
|
+ poster.style.display = '';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'buildoverlays',
|
|
|
+ value: function buildoverlays(player, controls, layers, media) {
|
|
|
+
|
|
|
+ if (!player.isVideo) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var t = this,
|
|
|
+ loading = _document2.default.createElement('div'),
|
|
|
+ error = _document2.default.createElement('div'),
|
|
|
+ bigPlay = _document2.default.createElement('div'),
|
|
|
+ buffer = controls.querySelector('.' + t.options.classPrefix + 'time-buffering');
|
|
|
+
|
|
|
+ loading.style.display = 'none';
|
|
|
+ loading.className = t.options.classPrefix + 'overlay ' + t.options.classPrefix + 'layer';
|
|
|
+ loading.innerHTML = '<div class="' + t.options.classPrefix + 'overlay-loading">' + ('<span class="' + t.options.classPrefix + 'overlay-loading-bg-img"></span>') + '</div>';
|
|
|
+ layers.appendChild(loading);
|
|
|
+
|
|
|
+ error.style.display = 'none';
|
|
|
+ error.className = t.options.classPrefix + 'overlay ' + t.options.classPrefix + 'layer';
|
|
|
+ error.innerHTML = '<div class="' + t.options.classPrefix + 'overlay-error"></div>';
|
|
|
+ layers.appendChild(error);
|
|
|
+
|
|
|
+ bigPlay.className = t.options.classPrefix + 'overlay ' + t.options.classPrefix + 'layer ' + t.options.classPrefix + 'overlay-play';
|
|
|
+ bigPlay.innerHTML = '<div class="' + t.options.classPrefix + 'overlay-button" role="button" tabindex="0" ' + ('aria-label="' + _i18n2.default.t('mejs.play') + '" aria-pressed="false"></div>');
|
|
|
+ bigPlay.addEventListener('click', function () {
|
|
|
+ if (t.options.clickToPlayPause) {
|
|
|
+
|
|
|
+ var button = t.container.querySelector('.' + t.options.classPrefix + 'overlay-button'),
|
|
|
+ pressed = button.getAttribute('aria-pressed');
|
|
|
+
|
|
|
+ if (t.paused) {
|
|
|
+ t.play();
|
|
|
+ } else {
|
|
|
+ t.pause();
|
|
|
+ }
|
|
|
+
|
|
|
+ button.setAttribute('aria-pressed', !!pressed);
|
|
|
+ t.container.focus();
|
|
|
}
|
|
|
+ });
|
|
|
|
|
|
- },
|
|
|
- // 14: Macedonian
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] % 10 === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] % 10 === 2) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+ bigPlay.addEventListener('keydown', function (e) {
|
|
|
+ var keyPressed = e.keyCode || e.which || 0;
|
|
|
+
|
|
|
+ if (keyPressed === 13 || _constants.IS_FIREFOX && keyPressed === 32) {
|
|
|
+ var event = (0, _general.createEvent)('click', bigPlay);
|
|
|
+ bigPlay.dispatchEvent(event);
|
|
|
+ return false;
|
|
|
}
|
|
|
- },
|
|
|
- // 15: Icelandic
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] !== 11 && args[0] % 10 === 1) {
|
|
|
- return args[1];
|
|
|
- } else {
|
|
|
- return args[2];
|
|
|
+ });
|
|
|
+
|
|
|
+ layers.appendChild(bigPlay);
|
|
|
+
|
|
|
+ if (t.media.rendererName !== null && (/(youtube|facebook)/i.test(t.media.rendererName) && !(t.media.originalNode.getAttribute('poster') || player.options.poster || typeof t.media.renderer.getPosterUrl === 'function' && t.media.renderer.getPosterUrl()) || _constants.IS_STOCK_ANDROID || t.media.originalNode.getAttribute('autoplay'))) {
|
|
|
+ bigPlay.style.display = 'none';
|
|
|
+ }
|
|
|
+
|
|
|
+ var hasError = false;
|
|
|
+
|
|
|
+ media.addEventListener('play', function () {
|
|
|
+ bigPlay.style.display = 'none';
|
|
|
+ loading.style.display = 'none';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
}
|
|
|
- },
|
|
|
- // New additions
|
|
|
-
|
|
|
- // 16: Kashubian
|
|
|
- // Note: in https://developer.mozilla.org/en-US/docs/Mozilla/Localization/Localization_and_Plurals#List_of_Plural_Rules
|
|
|
- // Breton is listed as #16 but in the Localization Guide it belongs to the group 2
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] % 10 >= 2 && args[0] % 10 <= 4 && (args[0] % 100 < 10 || args[0] % 100 >= 20)) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+ error.style.display = 'none';
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('playing', function () {
|
|
|
+ bigPlay.style.display = 'none';
|
|
|
+ loading.style.display = 'none';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
+ }
|
|
|
+ error.style.display = 'none';
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('seeking', function () {
|
|
|
+ bigPlay.style.display = 'none';
|
|
|
+ loading.style.display = '';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = '';
|
|
|
}
|
|
|
- },
|
|
|
- // 17: Welsh
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 2) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] !== 8 && args[0] !== 11) {
|
|
|
- return args[3];
|
|
|
- } else {
|
|
|
- return args[4];
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('seeked', function () {
|
|
|
+ bigPlay.style.display = t.paused && !_constants.IS_STOCK_ANDROID ? '' : 'none';
|
|
|
+ loading.style.display = 'none';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
}
|
|
|
- },
|
|
|
- // 18: Javanese
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 0) {
|
|
|
- return args[1];
|
|
|
- } else {
|
|
|
- return args[2];
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('pause', function () {
|
|
|
+ loading.style.display = 'none';
|
|
|
+ if (!_constants.IS_STOCK_ANDROID && !hasError) {
|
|
|
+ bigPlay.style.display = '';
|
|
|
}
|
|
|
- },
|
|
|
- // 19: Cornish
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 1) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 2) {
|
|
|
- return args[2];
|
|
|
- } else if (args[0] === 3) {
|
|
|
- return args[3];
|
|
|
- } else {
|
|
|
- return args[4];
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
}
|
|
|
- },
|
|
|
- // 20: Mandinka
|
|
|
- function () {
|
|
|
- var args = arguments;
|
|
|
- if (args[0] === 0) {
|
|
|
- return args[1];
|
|
|
- } else if (args[0] === 1) {
|
|
|
- return args[2];
|
|
|
- } else {
|
|
|
- return args[3];
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('waiting', function () {
|
|
|
+ loading.style.display = '';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = '';
|
|
|
}
|
|
|
- }
|
|
|
- ],
|
|
|
- /**
|
|
|
- * Get specified language
|
|
|
- *
|
|
|
- */
|
|
|
- getLanguage: function () {
|
|
|
- var language = i18n.locale.language || i18n['default'];
|
|
|
- return /^(x\-)?[a-z]{2,}(\-\w{2,})?(\-\w{2,})?$/.exec(language) ? language : i18n['default'];
|
|
|
- },
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
|
|
|
- /**
|
|
|
- * Translate a string to a specified language, including optionally a number to pluralize translation
|
|
|
- *
|
|
|
- * @param {String} message
|
|
|
- * @param {Number} pluralParam
|
|
|
- * @return {String}
|
|
|
- */
|
|
|
- t: function (message, pluralParam) {
|
|
|
-
|
|
|
- if (typeof message === 'string' && message.length) {
|
|
|
-
|
|
|
- var
|
|
|
- language = i18n.getLanguage(),
|
|
|
- str,
|
|
|
- pluralForm,
|
|
|
- /**
|
|
|
- * Modify string using algorithm to detect plural forms.
|
|
|
- *
|
|
|
- * @private
|
|
|
- * @see http://stackoverflow.com/questions/1353408/messageformat-in-javascript-parameters-in-localized-ui-strings
|
|
|
- * @param {String|String[]} input - String or array of strings to pick the plural form
|
|
|
- * @param {Number} number - Number to determine the proper plural form
|
|
|
- * @param {Number} form - Number of language family to apply plural form
|
|
|
- * @return {String}
|
|
|
- */
|
|
|
- plural = function (input, number, form) {
|
|
|
-
|
|
|
- if (typeof input !== 'object' || typeof number !== 'number' || typeof form !== 'number') {
|
|
|
- return input;
|
|
|
- }
|
|
|
+ media.addEventListener('loadeddata', function () {
|
|
|
+ loading.style.display = '';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = '';
|
|
|
+ }
|
|
|
|
|
|
- if (typeof input === 'string') {
|
|
|
- return input;
|
|
|
+ if (_constants.IS_ANDROID) {
|
|
|
+ media.canplayTimeout = setTimeout(function () {
|
|
|
+ if (_document2.default.createEvent) {
|
|
|
+ var evt = _document2.default.createEvent('HTMLEvents');
|
|
|
+ evt.initEvent('canplay', true, true);
|
|
|
+ return media.dispatchEvent(evt);
|
|
|
}
|
|
|
+ }, 300);
|
|
|
+ }
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ media.addEventListener('canplay', function () {
|
|
|
+ loading.style.display = 'none';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
+ }
|
|
|
|
|
|
- // Perform plural form or return original text
|
|
|
- return i18n.pluralForms[form].apply(null, [number].concat(input));
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param {String} input
|
|
|
- * @return {String}
|
|
|
- */
|
|
|
- escapeHTML = function (input) {
|
|
|
- var map = {
|
|
|
- '&': '&',
|
|
|
- '<': '<',
|
|
|
- '>': '>',
|
|
|
- '"': '"'
|
|
|
- };
|
|
|
+ clearTimeout(media.canplayTimeout);
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
|
|
|
- return input.replace(/[&<>"]/g, function(c) {
|
|
|
- return map[c];
|
|
|
- });
|
|
|
- }
|
|
|
- ;
|
|
|
-
|
|
|
- // Fetch the localized version of the string
|
|
|
- if (i18n.locale.strings && i18n.locale.strings[language]) {
|
|
|
- str = i18n.locale.strings[language][message];
|
|
|
- if (typeof pluralParam === 'number') {
|
|
|
- pluralForm = i18n.locale.strings[language]['mejs.plural-form'];
|
|
|
- str = plural.apply(null, [str, pluralParam, pluralForm]);
|
|
|
- }
|
|
|
+ media.addEventListener('error', function (e) {
|
|
|
+ t._handleError(e, t.media, t.node);
|
|
|
+ loading.style.display = 'none';
|
|
|
+ bigPlay.style.display = 'none';
|
|
|
+ if (buffer !== null) {
|
|
|
+ buffer.style.display = 'none';
|
|
|
}
|
|
|
+ hasError = true;
|
|
|
+ });
|
|
|
|
|
|
- // Fallback to default language if requested uid is not translated
|
|
|
- if (!str && i18n.locale.strings && i18n.locale.strings[i18n['default']]) {
|
|
|
- str = i18n.locale.strings[i18n['default']][message];
|
|
|
- if (typeof pluralParam === 'number') {
|
|
|
- pluralForm = i18n.locale.strings[i18n['default']]['mejs.plural-form'];
|
|
|
- str = plural.apply(null, [str, pluralParam, pluralForm]);
|
|
|
+ media.addEventListener('keydown', function (e) {
|
|
|
+ t.onkeydown(player, media, e);
|
|
|
+ hasError = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'buildkeyboard',
|
|
|
+ value: function buildkeyboard(player, controls, layers, media) {
|
|
|
|
|
|
- }
|
|
|
- }
|
|
|
+ var t = this;
|
|
|
|
|
|
- // As a last resort, use the requested uid, to mimic original behavior of i18n utils (in which uid was the english text)
|
|
|
- str = str || message;
|
|
|
+ t.container.addEventListener('keydown', function () {
|
|
|
+ t.keyboardAction = true;
|
|
|
+ });
|
|
|
|
|
|
- // Replace token
|
|
|
- if (typeof pluralParam === 'number') {
|
|
|
- str = str.replace('%1', pluralParam);
|
|
|
- }
|
|
|
+ t.globalKeydownCallback = function (event) {
|
|
|
+ var container = _document2.default.activeElement.closest('.' + t.options.classPrefix + 'container'),
|
|
|
+ target = t.media.closest('.' + t.options.classPrefix + 'container');
|
|
|
+ t.hasFocus = !!(container && target && container.id === target.id);
|
|
|
+ return t.onkeydown(player, media, event);
|
|
|
+ };
|
|
|
|
|
|
- return escapeHTML(str);
|
|
|
+ t.globalClickCallback = function (event) {
|
|
|
+ t.hasFocus = !!event.target.closest('.' + t.options.classPrefix + 'container');
|
|
|
+ };
|
|
|
|
|
|
- }
|
|
|
+ t.globalBind('keydown', t.globalKeydownCallback);
|
|
|
|
|
|
- return message;
|
|
|
+ t.globalBind('click', t.globalClickCallback);
|
|
|
}
|
|
|
+ }, {
|
|
|
+ key: 'onkeydown',
|
|
|
+ value: function onkeydown(player, media, e) {
|
|
|
|
|
|
- };
|
|
|
+ if (player.hasFocus && player.options.enableKeyboard) {
|
|
|
+ for (var i = 0, total = player.options.keyActions.length; i < total; i++) {
|
|
|
+ var keyAction = player.options.keyActions[i];
|
|
|
|
|
|
- // i18n fixes for compatibility with WordPress
|
|
|
- if (typeof mejsL10n !== 'undefined') {
|
|
|
- i18n.locale.language = mejsL10n.language;
|
|
|
- }
|
|
|
+ for (var j = 0, jl = keyAction.keys.length; j < jl; j++) {
|
|
|
+ if (e.keyCode === keyAction.keys[j]) {
|
|
|
+ keyAction.action(player, media, e.keyCode, e);
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- // Register variable
|
|
|
- mejs.i18n = i18n;
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'play',
|
|
|
+ value: function play() {
|
|
|
+ this.proxy.play();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'pause',
|
|
|
+ value: function pause() {
|
|
|
+ this.proxy.pause();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'load',
|
|
|
+ value: function load() {
|
|
|
+ this.proxy.load();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setCurrentTime',
|
|
|
+ value: function setCurrentTime(time) {
|
|
|
+ this.proxy.setCurrentTime(time);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getCurrentTime',
|
|
|
+ value: function getCurrentTime() {
|
|
|
+ return this.proxy.currentTime;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getDuration',
|
|
|
+ value: function getDuration() {
|
|
|
+ return this.proxy.duration;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setVolume',
|
|
|
+ value: function setVolume(volume) {
|
|
|
+ this.proxy.volume = volume;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getVolume',
|
|
|
+ value: function getVolume() {
|
|
|
+ return this.proxy.getVolume();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setMuted',
|
|
|
+ value: function setMuted(value) {
|
|
|
+ this.proxy.setMuted(value);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setSrc',
|
|
|
+ value: function setSrc(src) {
|
|
|
+ if (!this.controlsEnabled) {
|
|
|
+ this.enableControls();
|
|
|
+ }
|
|
|
+ this.proxy.setSrc(src);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getSrc',
|
|
|
+ value: function getSrc() {
|
|
|
+ return this.proxy.getSrc();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'canPlayType',
|
|
|
+ value: function canPlayType(type) {
|
|
|
+ return this.proxy.canPlayType(type);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'remove',
|
|
|
+ value: function remove() {
|
|
|
+ var t = this,
|
|
|
+ rendererName = t.media.rendererName,
|
|
|
+ src = t.media.originalNode.src;
|
|
|
|
|
|
+ for (var featureIndex in t.options.features) {
|
|
|
+ var feature = t.options.features[featureIndex];
|
|
|
+ if (t['clean' + feature]) {
|
|
|
+ try {
|
|
|
+ t['clean' + feature](t, t.layers, t.controls, t.media);
|
|
|
+ } catch (e) {
|
|
|
+ console.error('error cleaning ' + feature, e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
-}(document, window, mejs));
|
|
|
+ var nativeWidth = t.node.getAttribute('width'),
|
|
|
+ nativeHeight = t.node.getAttribute('height');
|
|
|
|
|
|
-// i18n fixes for compatibility with WordPress
|
|
|
-;(function (mejs, undefined) {
|
|
|
+ if (nativeWidth) {
|
|
|
+ if (nativeWidth.indexOf('%') === -1) {
|
|
|
+ nativeWidth = nativeWidth + 'px';
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ nativeWidth = 'auto';
|
|
|
+ }
|
|
|
|
|
|
- "use strict";
|
|
|
+ if (nativeHeight) {
|
|
|
+ if (nativeHeight.indexOf('%') === -1) {
|
|
|
+ nativeHeight = nativeHeight + 'px';
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ nativeHeight = 'auto';
|
|
|
+ }
|
|
|
|
|
|
- if (typeof mejsL10n !== 'undefined') {
|
|
|
- mejs[mejsL10n.language] = mejsL10n.strings;
|
|
|
- }
|
|
|
+ t.node.style.width = nativeWidth;
|
|
|
+ t.node.style.height = nativeHeight;
|
|
|
|
|
|
-}(mejs.i18n.locale.strings));
|
|
|
-/*!
|
|
|
- * This is a i18n.locale language object.
|
|
|
- *
|
|
|
- * English; This can serve as a template for other languages to translate
|
|
|
- *
|
|
|
- * @author
|
|
|
- * TBD
|
|
|
- * Sascha Greuel (Twitter: @SoftCreatR)
|
|
|
- *
|
|
|
- * @see
|
|
|
- * me-i18n.js
|
|
|
- *
|
|
|
- * @params
|
|
|
- * - exports - CommonJS, window ..
|
|
|
- */
|
|
|
-(function (exports) {
|
|
|
- "use strict";
|
|
|
-
|
|
|
- if (exports.en === undefined) {
|
|
|
- exports.en = {
|
|
|
- "mejs.plural-form": 1,
|
|
|
-
|
|
|
- // me-shim
|
|
|
- "mejs.download-file": "Download File",
|
|
|
-
|
|
|
- // mep-feature-contextmenu
|
|
|
- "mejs.fullscreen-off": "Turn off Fullscreen",
|
|
|
- "mejs.fullscreen-on": "Go Fullscreen",
|
|
|
- "mejs.download-video": "Download Video",
|
|
|
-
|
|
|
- // mep-feature-fullscreen
|
|
|
- "mejs.fullscreen": "Fullscreen",
|
|
|
-
|
|
|
- // mep-feature-jumpforward
|
|
|
- "mejs.time-jump-forward": ["Jump forward 1 second", "Jump forward %1 seconds"],
|
|
|
-
|
|
|
- // mep-feature-playpause
|
|
|
- "mejs.play": "Play",
|
|
|
- "mejs.pause": "Pause",
|
|
|
-
|
|
|
- // mep-feature-postroll
|
|
|
- "mejs.close": "Close",
|
|
|
-
|
|
|
- // mep-feature-progress
|
|
|
- "mejs.time-slider": "Time Slider",
|
|
|
- "mejs.time-help-text": "Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.",
|
|
|
-
|
|
|
- // mep-feature-skipback
|
|
|
- "mejs.time-skip-back": ["Skip back 1 second", "Skip back %1 seconds"],
|
|
|
-
|
|
|
- // mep-feature-tracks
|
|
|
- "mejs.captions-subtitles": "Captions/Subtitles",
|
|
|
- "mejs.none": "None",
|
|
|
-
|
|
|
- // mep-feature-volume
|
|
|
- "mejs.mute-toggle": "Mute Toggle",
|
|
|
- "mejs.volume-help-text": "Use Up/Down Arrow keys to increase or decrease volume.",
|
|
|
- "mejs.unmute": "Unmute",
|
|
|
- "mejs.mute": "Mute",
|
|
|
- "mejs.volume-slider": "Volume Slider",
|
|
|
-
|
|
|
- // mep-player
|
|
|
- "mejs.video-player": "Video Player",
|
|
|
- "mejs.audio-player": "Audio Player",
|
|
|
-
|
|
|
- // mep-feature-ads
|
|
|
- "mejs.ad-skip": "Skip ad",
|
|
|
- "mejs.ad-skip-info": ["Skip in 1 second", "Skip in %1 seconds"],
|
|
|
-
|
|
|
- // mep-feature-sourcechooser
|
|
|
- "mejs.source-chooser": "Source Chooser"
|
|
|
- };
|
|
|
- }
|
|
|
-}(mejs.i18n.locale.strings));
|
|
|
+ if (!t.isDynamic) {
|
|
|
+ (function () {
|
|
|
+ t.node.setAttribute('controls', true);
|
|
|
+ t.node.setAttribute('id', t.node.getAttribute('id').replace('_' + rendererName, '').replace('_from_mejs', ''));
|
|
|
+ var poster = t.container.querySelector('.' + t.options.classPrefix + 'poster>img');
|
|
|
+ if (poster) {
|
|
|
+ t.node.setAttribute('poster', poster.src);
|
|
|
+ }
|
|
|
|
|
|
-/*!
|
|
|
- *
|
|
|
- * MediaElementPlayer
|
|
|
- * http://mediaelementjs.com/
|
|
|
- *
|
|
|
- * Creates a controller bar for HTML5 <video> add <audio> tags
|
|
|
- * using jQuery and MediaElement.js (HTML5 Flash/Silverlight wrapper)
|
|
|
- *
|
|
|
- * Copyright 2010-2013, John Dyer (http://j.hn/)
|
|
|
- * License: MIT
|
|
|
- *
|
|
|
- */
|
|
|
-if (typeof jQuery != 'undefined') {
|
|
|
- mejs.$ = jQuery;
|
|
|
-} else if (typeof Zepto != 'undefined') {
|
|
|
- mejs.$ = Zepto;
|
|
|
-
|
|
|
- // define `outerWidth` method which has not been realized in Zepto
|
|
|
- Zepto.fn.outerWidth = function(includeMargin) {
|
|
|
- var width = $(this).width();
|
|
|
- if (includeMargin) {
|
|
|
- width += parseInt($(this).css('margin-right'), 10);
|
|
|
- width += parseInt($(this).css('margin-left'), 10);
|
|
|
- }
|
|
|
- return width
|
|
|
- }
|
|
|
+ delete t.node.autoplay;
|
|
|
|
|
|
-} else if (typeof ender != 'undefined') {
|
|
|
- mejs.$ = ender;
|
|
|
-}
|
|
|
-(function ($) {
|
|
|
+ if (t.media.canPlayType((0, _media.getTypeFromFile)(src)) !== '') {
|
|
|
+ t.node.setAttribute('src', src);
|
|
|
+ }
|
|
|
|
|
|
- // default player values
|
|
|
- mejs.MepDefaults = {
|
|
|
- // url to poster (to fix iOS 3.x)
|
|
|
- poster: '',
|
|
|
- // When the video is ended, we can show the poster.
|
|
|
- showPosterWhenEnded: false,
|
|
|
- // default if the <video width> is not specified
|
|
|
- defaultVideoWidth: 480,
|
|
|
- // default if the <video height> is not specified
|
|
|
- defaultVideoHeight: 270,
|
|
|
- // if set, overrides <video width>
|
|
|
- videoWidth: -1,
|
|
|
- // if set, overrides <video height>
|
|
|
- videoHeight: -1,
|
|
|
- // default if the user doesn't specify
|
|
|
- defaultAudioWidth: 400,
|
|
|
- // default if the user doesn't specify
|
|
|
- defaultAudioHeight: 30,
|
|
|
- // default amount to move back when back key is pressed
|
|
|
- defaultSeekBackwardInterval: function(media) {
|
|
|
- return (media.duration * 0.05);
|
|
|
- },
|
|
|
- // default amount to move forward when forward key is pressed
|
|
|
- defaultSeekForwardInterval: function(media) {
|
|
|
- return (media.duration * 0.05);
|
|
|
- },
|
|
|
- // set dimensions via JS instead of CSS
|
|
|
- setDimensions: true,
|
|
|
- // width of audio player
|
|
|
- audioWidth: -1,
|
|
|
- // height of audio player
|
|
|
- audioHeight: -1,
|
|
|
- // initial volume when the player starts (overrided by user cookie)
|
|
|
- startVolume: 0.8,
|
|
|
- // useful for <audio> player loops
|
|
|
- loop: false,
|
|
|
- // rewind to beginning when media ends
|
|
|
- autoRewind: true,
|
|
|
- // resize to media dimensions
|
|
|
- enableAutosize: true,
|
|
|
- /*
|
|
|
- * Time format to use. Default: 'mm:ss'
|
|
|
- * Supported units:
|
|
|
- * h: hour
|
|
|
- * m: minute
|
|
|
- * s: second
|
|
|
- * f: frame count
|
|
|
- * When using 'hh', 'mm', 'ss' or 'ff' we always display 2 digits.
|
|
|
- * If you use 'h', 'm', 's' or 'f' we display 1 digit if possible.
|
|
|
- *
|
|
|
- * Example to display 75 seconds:
|
|
|
- * Format 'mm:ss': 01:15
|
|
|
- * Format 'm:ss': 1:15
|
|
|
- * Format 'm:s': 1:15
|
|
|
- */
|
|
|
- timeFormat: '',
|
|
|
- // forces the hour marker (##:00:00)
|
|
|
- alwaysShowHours: false,
|
|
|
- // show framecount in timecode (##:00:00:00)
|
|
|
- showTimecodeFrameCount: false,
|
|
|
- // used when showTimecodeFrameCount is set to true
|
|
|
- framesPerSecond: 25,
|
|
|
- // automatically calculate the width of the progress bar based on the sizes of other elements
|
|
|
- autosizeProgress : true,
|
|
|
- // Hide controls when playing and mouse is not over the video
|
|
|
- alwaysShowControls: false,
|
|
|
- // Display the video control
|
|
|
- hideVideoControlsOnLoad: false,
|
|
|
- // Enable click video element to toggle play/pause
|
|
|
- clickToPlayPause: true,
|
|
|
- // Time in ms to hide controls
|
|
|
- controlsTimeoutDefault: 1500,
|
|
|
- // Time in ms to trigger the timer when mouse moves
|
|
|
- controlsTimeoutMouseEnter: 2500,
|
|
|
- // Time in ms to trigger the timer when mouse leaves
|
|
|
- controlsTimeoutMouseLeave: 1000,
|
|
|
- // force iPad's native controls
|
|
|
- iPadUseNativeControls: false,
|
|
|
- // force iPhone's native controls
|
|
|
- iPhoneUseNativeControls: false,
|
|
|
- // force Android's native controls
|
|
|
- AndroidUseNativeControls: false,
|
|
|
- // features to show
|
|
|
- features: ['playpause','current','progress','duration','tracks','volume','fullscreen'],
|
|
|
- // only for dynamic
|
|
|
- isVideo: true,
|
|
|
- // stretching modes (auto, fill, responsive, none)
|
|
|
- stretching: 'auto',
|
|
|
- // turns keyboard support on and off for this instance
|
|
|
- enableKeyboard: true,
|
|
|
- // when this player starts, it will pause other players
|
|
|
- pauseOtherPlayers: true,
|
|
|
- // array of keyboard actions such as play pause
|
|
|
- keyActions: [
|
|
|
- {
|
|
|
- keys: [
|
|
|
- 32, // SPACE
|
|
|
- 179 // GOOGLE play/pause button
|
|
|
- ],
|
|
|
- action: function(player, media, key, event) {
|
|
|
-
|
|
|
- if (!mejs.MediaFeatures.isFirefox) {
|
|
|
- if (media.paused || media.ended) {
|
|
|
- media.play();
|
|
|
- } else {
|
|
|
- media.pause();
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [38], // UP
|
|
|
- action: function(player, media, key, event) {
|
|
|
- player.container.find('.mejs-volume-slider').css('display','block');
|
|
|
- if (player.isVideo) {
|
|
|
- player.showControls();
|
|
|
- player.startControlsTimer();
|
|
|
- }
|
|
|
+ if (~rendererName.indexOf('iframe')) {
|
|
|
+ var layer = _document2.default.getElementById(t.media.id + '-iframe-overlay');
|
|
|
+ layer.remove();
|
|
|
+ }
|
|
|
|
|
|
- var newVolume = Math.min(media.volume + 0.1, 1);
|
|
|
- media.setVolume(newVolume);
|
|
|
+ var node = t.node.cloneNode();
|
|
|
+ node.style.display = '';
|
|
|
+ t.container.parentNode.insertBefore(node, t.container);
|
|
|
+ t.node.remove();
|
|
|
+
|
|
|
+ if (t.mediaFiles) {
|
|
|
+ for (var i = 0, total = t.mediaFiles.length; i < total; i++) {
|
|
|
+ var source = _document2.default.createElement('source');
|
|
|
+ source.setAttribute('src', t.mediaFiles[i].src);
|
|
|
+ source.setAttribute('type', t.mediaFiles[i].type);
|
|
|
+ node.appendChild(source);
|
|
|
}
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [40], // DOWN
|
|
|
- action: function(player, media, key, event) {
|
|
|
- player.container.find('.mejs-volume-slider').css('display','block');
|
|
|
- if (player.isVideo) {
|
|
|
- player.showControls();
|
|
|
- player.startControlsTimer();
|
|
|
- }
|
|
|
+ }
|
|
|
+ if (t.trackFiles) {
|
|
|
+ var _loop3 = function _loop3(_i4, _total4) {
|
|
|
+ var track = t.trackFiles[_i4];
|
|
|
+ var newTrack = _document2.default.createElement('track');
|
|
|
+ newTrack.kind = track.kind;
|
|
|
+ newTrack.label = track.label;
|
|
|
+ newTrack.srclang = track.srclang;
|
|
|
+ newTrack.src = track.src;
|
|
|
+
|
|
|
+ node.appendChild(newTrack);
|
|
|
+ newTrack.addEventListener('load', function () {
|
|
|
+ this.mode = 'showing';
|
|
|
+ node.textTracks[_i4].mode = 'showing';
|
|
|
+ });
|
|
|
+ };
|
|
|
|
|
|
- var newVolume = Math.max(media.volume - 0.1, 0);
|
|
|
- media.setVolume(newVolume);
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [
|
|
|
- 37, // LEFT
|
|
|
- 227 // Google TV rewind
|
|
|
- ],
|
|
|
- action: function(player, media, key, event) {
|
|
|
- if (!isNaN(media.duration) && media.duration > 0) {
|
|
|
- if (player.isVideo) {
|
|
|
- player.showControls();
|
|
|
- player.startControlsTimer();
|
|
|
- }
|
|
|
-
|
|
|
- // 5%
|
|
|
- var newTime = Math.max(media.currentTime - player.options.defaultSeekBackwardInterval(media), 0);
|
|
|
- media.setCurrentTime(newTime);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [
|
|
|
- 39, // RIGHT
|
|
|
- 228 // Google TV forward
|
|
|
- ],
|
|
|
- action: function(player, media, key, event) {
|
|
|
- if (!isNaN(media.duration) && media.duration > 0) {
|
|
|
- if (player.isVideo) {
|
|
|
- player.showControls();
|
|
|
- player.startControlsTimer();
|
|
|
- }
|
|
|
-
|
|
|
- // 5%
|
|
|
- var newTime = Math.min(media.currentTime + player.options.defaultSeekForwardInterval(media), media.duration);
|
|
|
- media.setCurrentTime(newTime);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [70], // F
|
|
|
- action: function(player, media, key, event) {
|
|
|
- if (typeof player.enterFullScreen != 'undefined') {
|
|
|
- if (player.isFullScreen) {
|
|
|
- player.exitFullScreen();
|
|
|
- } else {
|
|
|
- player.enterFullScreen();
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- keys: [77], // M
|
|
|
- action: function(player, media, key, event) {
|
|
|
- player.container.find('.mejs-volume-slider').css('display','block');
|
|
|
- if (player.isVideo) {
|
|
|
- player.showControls();
|
|
|
- player.startControlsTimer();
|
|
|
- }
|
|
|
- if (player.media.muted) {
|
|
|
- player.setMuted(false);
|
|
|
- } else {
|
|
|
- player.setMuted(true);
|
|
|
- }
|
|
|
+ for (var _i4 = 0, _total4 = t.trackFiles.length; _i4 < _total4; _i4++) {
|
|
|
+ _loop3(_i4, _total4);
|
|
|
}
|
|
|
- }
|
|
|
- ]
|
|
|
- };
|
|
|
+ }
|
|
|
+
|
|
|
+ delete t.node;
|
|
|
+ delete t.mediaFiles;
|
|
|
+ delete t.trackFiles;
|
|
|
+ })();
|
|
|
+ } else {
|
|
|
+ t.container.parentNode.insertBefore(t.node, t.container);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (typeof t.media.renderer.destroy === 'function') {
|
|
|
+ t.media.renderer.destroy();
|
|
|
+ }
|
|
|
|
|
|
- mejs.mepIndex = 0;
|
|
|
+ delete _mejs2.default.players[t.id];
|
|
|
|
|
|
- mejs.players = {};
|
|
|
+ if (_typeof(t.container) === 'object') {
|
|
|
+ var offscreen = t.container.parentNode.querySelector('.' + t.options.classPrefix + 'offscreen');
|
|
|
+ offscreen.remove();
|
|
|
+ t.container.remove();
|
|
|
+ }
|
|
|
+ t.globalUnbind('resize', t.globalResizeCallback);
|
|
|
+ t.globalUnbind('keydown', t.globalKeydownCallback);
|
|
|
+ t.globalUnbind('click', t.globalClickCallback);
|
|
|
|
|
|
- // wraps a MediaElement object in player controls
|
|
|
- mejs.MediaElementPlayer = function(node, o) {
|
|
|
- // enforce object, even without "new" (via John Resig)
|
|
|
- if ( !(this instanceof mejs.MediaElementPlayer) ) {
|
|
|
- return new mejs.MediaElementPlayer(node, o);
|
|
|
+ delete t.media.player;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'paused',
|
|
|
+ get: function get() {
|
|
|
+ return this.proxy.paused;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'muted',
|
|
|
+ get: function get() {
|
|
|
+ return this.proxy.muted;
|
|
|
+ },
|
|
|
+ set: function set(muted) {
|
|
|
+ this.setMuted(muted);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'ended',
|
|
|
+ get: function get() {
|
|
|
+ return this.proxy.ended;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'readyState',
|
|
|
+ get: function get() {
|
|
|
+ return this.proxy.readyState;
|
|
|
}
|
|
|
+ }, {
|
|
|
+ key: 'currentTime',
|
|
|
+ set: function set(time) {
|
|
|
+ this.setCurrentTime(time);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getCurrentTime();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'duration',
|
|
|
+ get: function get() {
|
|
|
+ return this.getDuration();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'volume',
|
|
|
+ set: function set(volume) {
|
|
|
+ this.setVolume(volume);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getVolume();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'src',
|
|
|
+ set: function set(src) {
|
|
|
+ this.setSrc(src);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getSrc();
|
|
|
+ }
|
|
|
+ }]);
|
|
|
|
|
|
- var t = this;
|
|
|
+ return MediaElementPlayer;
|
|
|
+}();
|
|
|
|
|
|
- // these will be reset after the MediaElement.success fires
|
|
|
- t.$media = t.$node = $(node);
|
|
|
- t.node = t.media = t.$media[0];
|
|
|
+_window2.default.MediaElementPlayer = MediaElementPlayer;
|
|
|
|
|
|
- if(!t.node) {
|
|
|
- return;
|
|
|
- }
|
|
|
+exports.default = MediaElementPlayer;
|
|
|
|
|
|
- // check for existing player
|
|
|
- if (typeof t.node.player != 'undefined') {
|
|
|
- return t.node.player;
|
|
|
- }
|
|
|
+},{"17":17,"2":2,"25":25,"26":26,"27":27,"28":28,"3":3,"30":30,"5":5,"6":6,"7":7}],17:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
|
|
|
- // try to get options from data-mejsoptions
|
|
|
- if (typeof o == 'undefined') {
|
|
|
- o = t.$node.data('mejsoptions');
|
|
|
- }
|
|
|
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
|
|
|
|
- // extend default options
|
|
|
- t.options = $.extend({},mejs.MepDefaults,o);
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- if (!t.options.timeFormat) {
|
|
|
- // Generate the time format according to options
|
|
|
- t.options.timeFormat = 'mm:ss';
|
|
|
- if (t.options.alwaysShowHours) {
|
|
|
- t.options.timeFormat = 'hh:mm:ss';
|
|
|
- }
|
|
|
- if (t.options.showTimecodeFrameCount) {
|
|
|
- t.options.timeFormat += ':ff';
|
|
|
- }
|
|
|
- }
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- mejs.Utility.calculateTimeFormat(0, t.options, t.options.framesPerSecond || 25);
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- // unique ID
|
|
|
- t.id = 'mep_' + mejs.mepIndex++;
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
|
|
- // add to player array (for focus events)
|
|
|
- mejs.players[t.id] = t;
|
|
|
+var DefaultPlayer = function () {
|
|
|
+ function DefaultPlayer(player) {
|
|
|
+ _classCallCheck(this, DefaultPlayer);
|
|
|
+
|
|
|
+ this.media = player.media;
|
|
|
+ this.isVideo = player.isVideo;
|
|
|
+ this.classPrefix = player.options.classPrefix;
|
|
|
+ this.createIframeLayer = function () {
|
|
|
+ return player.createIframeLayer();
|
|
|
+ };
|
|
|
+ this.setPoster = function (url) {
|
|
|
+ return player.setPoster(url);
|
|
|
+ };
|
|
|
+ return this;
|
|
|
+ }
|
|
|
|
|
|
- // start up
|
|
|
- t.init();
|
|
|
+ _createClass(DefaultPlayer, [{
|
|
|
+ key: 'play',
|
|
|
+ value: function play() {
|
|
|
+ this.media.play();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'pause',
|
|
|
+ value: function pause() {
|
|
|
+ this.media.pause();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'load',
|
|
|
+ value: function load() {
|
|
|
+ var t = this;
|
|
|
|
|
|
- return t;
|
|
|
- };
|
|
|
+ if (!t.isLoaded) {
|
|
|
+ t.media.load();
|
|
|
+ }
|
|
|
|
|
|
- // actual player
|
|
|
- mejs.MediaElementPlayer.prototype = {
|
|
|
+ t.isLoaded = true;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setCurrentTime',
|
|
|
+ value: function setCurrentTime(time) {
|
|
|
+ this.media.setCurrentTime(time);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getCurrentTime',
|
|
|
+ value: function getCurrentTime() {
|
|
|
+ return this.media.currentTime;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getDuration',
|
|
|
+ value: function getDuration() {
|
|
|
+ return this.media.getDuration();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setVolume',
|
|
|
+ value: function setVolume(volume) {
|
|
|
+ this.media.setVolume(volume);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getVolume',
|
|
|
+ value: function getVolume() {
|
|
|
+ return this.media.getVolume();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setMuted',
|
|
|
+ value: function setMuted(value) {
|
|
|
+ this.media.setMuted(value);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'setSrc',
|
|
|
+ value: function setSrc(src) {
|
|
|
+ var t = this,
|
|
|
+ layer = document.getElementById(t.media.id + '-iframe-overlay');
|
|
|
|
|
|
- hasFocus: false,
|
|
|
+ if (layer) {
|
|
|
+ layer.remove();
|
|
|
+ }
|
|
|
|
|
|
- controlsAreVisible: true,
|
|
|
+ t.media.setSrc(src);
|
|
|
+ t.createIframeLayer();
|
|
|
+ if (t.media.renderer !== null && typeof t.media.renderer.getPosterUrl === 'function') {
|
|
|
+ t.setPoster(t.media.renderer.getPosterUrl());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'getSrc',
|
|
|
+ value: function getSrc() {
|
|
|
+ return this.media.getSrc();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'canPlayType',
|
|
|
+ value: function canPlayType(type) {
|
|
|
+ return this.media.canPlayType(type);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'paused',
|
|
|
+ get: function get() {
|
|
|
+ return this.media.paused;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'muted',
|
|
|
+ set: function set(muted) {
|
|
|
+ this.setMuted(muted);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.media.muted;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'ended',
|
|
|
+ get: function get() {
|
|
|
+ return this.media.ended;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'readyState',
|
|
|
+ get: function get() {
|
|
|
+ return this.media.readyState;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'currentTime',
|
|
|
+ set: function set(time) {
|
|
|
+ this.setCurrentTime(time);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getCurrentTime();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'duration',
|
|
|
+ get: function get() {
|
|
|
+ return this.getDuration();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'volume',
|
|
|
+ set: function set(volume) {
|
|
|
+ this.setVolume(volume);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getVolume();
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: 'src',
|
|
|
+ set: function set(src) {
|
|
|
+ this.setSrc(src);
|
|
|
+ },
|
|
|
+ get: function get() {
|
|
|
+ return this.getSrc();
|
|
|
+ }
|
|
|
+ }]);
|
|
|
|
|
|
- init: function() {
|
|
|
+ return DefaultPlayer;
|
|
|
+}();
|
|
|
|
|
|
- var
|
|
|
- t = this,
|
|
|
- mf = mejs.MediaFeatures,
|
|
|
- // options for MediaElement (shim)
|
|
|
- meOptions = $.extend(true, {}, t.options, {
|
|
|
- success: function(media, domNode) { t.meReady(media, domNode); },
|
|
|
- error: function(e) { t.handleError(e);}
|
|
|
- }),
|
|
|
- tagName = t.media.tagName.toLowerCase();
|
|
|
+exports.default = DefaultPlayer;
|
|
|
|
|
|
- t.isDynamic = (tagName !== 'audio' && tagName !== 'video');
|
|
|
|
|
|
- if (t.isDynamic) {
|
|
|
- // get video from src or href?
|
|
|
- t.isVideo = t.options.isVideo;
|
|
|
- } else {
|
|
|
- t.isVideo = (tagName !== 'audio' && t.options.isVideo);
|
|
|
- }
|
|
|
-
|
|
|
- // use native controls in iPad, iPhone, and Android
|
|
|
- if ((mf.isiPad && t.options.iPadUseNativeControls) || (mf.isiPhone && t.options.iPhoneUseNativeControls)) {
|
|
|
-
|
|
|
- // add controls and stop
|
|
|
- t.$media.attr('controls', 'controls');
|
|
|
-
|
|
|
- // attempt to fix iOS 3 bug
|
|
|
- //t.$media.removeAttr('poster');
|
|
|
- // no Issue found on iOS3 -ttroxell
|
|
|
-
|
|
|
- // override Apple's autoplay override for iPads
|
|
|
- if (mf.isiPad && t.media.getAttribute('autoplay') !== null) {
|
|
|
- t.play();
|
|
|
- }
|
|
|
-
|
|
|
- } else if (mf.isAndroid && t.options.AndroidUseNativeControls) {
|
|
|
-
|
|
|
- // leave default player
|
|
|
-
|
|
|
- } else if (t.isVideo || (!t.isVideo && t.options.features.length)) {
|
|
|
-
|
|
|
- // DESKTOP: use MediaElementPlayer controls
|
|
|
-
|
|
|
- // remove native controls
|
|
|
- t.$media.removeAttr('controls');
|
|
|
- var videoPlayerTitle = t.isVideo ?
|
|
|
- mejs.i18n.t('mejs.video-player') : mejs.i18n.t('mejs.audio-player');
|
|
|
- // insert description for screen readers
|
|
|
- $('<span class="mejs-offscreen">' + videoPlayerTitle + '</span>').insertBefore(t.$media);
|
|
|
- // build container
|
|
|
- t.container =
|
|
|
- $('<div id="' + t.id + '" class="mejs-container ' + (mejs.MediaFeatures.svgAsImg ? 'svg' : 'no-svg') +
|
|
|
- '" tabindex="0" role="application" aria-label="' + videoPlayerTitle + '">'+
|
|
|
- '<div class="mejs-inner">'+
|
|
|
- '<div class="mejs-mediaelement"></div>'+
|
|
|
- '<div class="mejs-layers"></div>'+
|
|
|
- '<div class="mejs-controls"></div>'+
|
|
|
- '<div class="mejs-clear"></div>'+
|
|
|
- '</div>' +
|
|
|
- '</div>')
|
|
|
- .addClass(t.$media[0].className)
|
|
|
- .insertBefore(t.$media)
|
|
|
- .focus(function ( e ) {
|
|
|
- if( !t.controlsAreVisible && !t.hasFocus && t.controlsEnabled) {
|
|
|
- t.showControls(true);
|
|
|
- // In versions older than IE11, the focus causes the playbar to be displayed
|
|
|
- // if user clicks on the Play/Pause button in the control bar once it attempts
|
|
|
- // to hide it
|
|
|
- if (!t.hasMsNativeFullScreen) {
|
|
|
- // If e.relatedTarget appears before container, send focus to play button,
|
|
|
- // else send focus to last control button.
|
|
|
- var btnSelector = '.mejs-playpause-button > button';
|
|
|
-
|
|
|
- if (mejs.Utility.isNodeAfter(e.relatedTarget, t.container[0])) {
|
|
|
- btnSelector = '.mejs-controls .mejs-button:last-child > button';
|
|
|
- }
|
|
|
+_window2.default.DefaultPlayer = DefaultPlayer;
|
|
|
|
|
|
- var button = t.container.find(btnSelector);
|
|
|
- button.focus();
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+},{"3":3}],18:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- // When no elements in controls, hide bar completely
|
|
|
- if (!t.options.features.length) {
|
|
|
- t.container.css('background', 'transparent').find('.mejs-controls').hide();
|
|
|
- }
|
|
|
-
|
|
|
- if (t.isVideo && t.options.stretching === 'fill' && !t.container.parent('mejs-fill-container').length) {
|
|
|
- // outer container
|
|
|
- t.outerContainer = t.$media.parent();
|
|
|
- t.container.wrap('<div class="mejs-fill-container"/>');
|
|
|
- }
|
|
|
+var _window = _dereq_(3);
|
|
|
+
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- // add classes for user and content
|
|
|
- t.container.addClass(
|
|
|
- (mf.isAndroid ? 'mejs-android ' : '') +
|
|
|
- (mf.isiOS ? 'mejs-ios ' : '') +
|
|
|
- (mf.isiPad ? 'mejs-ipad ' : '') +
|
|
|
- (mf.isiPhone ? 'mejs-iphone ' : '') +
|
|
|
- (t.isVideo ? 'mejs-video ' : 'mejs-audio ')
|
|
|
- );
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- // move the <video/video> tag into the right spot
|
|
|
- t.container.find('.mejs-mediaelement').append(t.$media);
|
|
|
+var _player = _dereq_(16);
|
|
|
|
|
|
- // needs to be assigned here, after iOS remap
|
|
|
- t.node.player = t;
|
|
|
+var _player2 = _interopRequireDefault(_player);
|
|
|
|
|
|
- // find parts
|
|
|
- t.controls = t.container.find('.mejs-controls');
|
|
|
- t.layers = t.container.find('.mejs-layers');
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- // determine the size
|
|
|
+if (typeof jQuery !== 'undefined') {
|
|
|
+ _mejs2.default.$ = _window2.default.jQuery = _window2.default.$ = jQuery;
|
|
|
+} else if (typeof Zepto !== 'undefined') {
|
|
|
+ _mejs2.default.$ = _window2.default.Zepto = _window2.default.$ = Zepto;
|
|
|
+} else if (typeof ender !== 'undefined') {
|
|
|
+ _mejs2.default.$ = _window2.default.ender = _window2.default.$ = ender;
|
|
|
+}
|
|
|
|
|
|
- /* size priority:
|
|
|
- (1) videoWidth (forced),
|
|
|
- (2) style="width;height;"
|
|
|
- (3) width attribute,
|
|
|
- (4) defaultVideoWidth (for unspecified cases)
|
|
|
- */
|
|
|
+(function ($) {
|
|
|
+ if (typeof $ !== 'undefined') {
|
|
|
+ $.fn.mediaelementplayer = function (options) {
|
|
|
+ if (options === false) {
|
|
|
+ this.each(function () {
|
|
|
+ var player = $(this).data('mediaelementplayer');
|
|
|
+ if (player) {
|
|
|
+ player.remove();
|
|
|
+ }
|
|
|
+ $(this).removeData('mediaelementplayer');
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.each(function () {
|
|
|
+ $(this).data('mediaelementplayer', new _player2.default(this, options));
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return this;
|
|
|
+ };
|
|
|
|
|
|
- var tagType = (t.isVideo ? 'video' : 'audio'),
|
|
|
- capsTagName = tagType.substring(0,1).toUpperCase() + tagType.substring(1);
|
|
|
+ $(document).ready(function () {
|
|
|
+ $('.' + _mejs2.default.MepDefaults.classPrefix + 'player').mediaelementplayer();
|
|
|
+ });
|
|
|
+ }
|
|
|
+})(_mejs2.default.$);
|
|
|
|
|
|
+},{"16":16,"3":3,"7":7}],19:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
|
|
|
- if (t.options[tagType + 'Width'] > 0 || t.options[tagType + 'Width'].toString().indexOf('%') > -1) {
|
|
|
- t.width = t.options[tagType + 'Width'];
|
|
|
- } else if (t.media.style.width !== '' && t.media.style.width !== null) {
|
|
|
- t.width = t.media.style.width;
|
|
|
- } else if (t.media.getAttribute('width') !== null) {
|
|
|
- t.width = t.$media.attr('width');
|
|
|
- } else {
|
|
|
- t.width = t.options['default' + capsTagName + 'Width'];
|
|
|
- }
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- if (t.options[tagType + 'Height'] > 0 || t.options[tagType + 'Height'].toString().indexOf('%') > -1) {
|
|
|
- t.height = t.options[tagType + 'Height'];
|
|
|
- } else if (t.media.style.height !== '' && t.media.style.height !== null) {
|
|
|
- t.height = t.media.style.height;
|
|
|
- } else if (t.$media[0].getAttribute('height') !== null) {
|
|
|
- t.height = t.$media.attr('height');
|
|
|
- } else {
|
|
|
- t.height = t.options['default' + capsTagName + 'Height'];
|
|
|
- }
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- // set the size, while we wait for the plugins to load below
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- // create MediaElementShim
|
|
|
- meOptions.pluginWidth = t.width;
|
|
|
- meOptions.pluginHeight = t.height;
|
|
|
- }
|
|
|
- // Hide media completely for audio that doesn't have any features
|
|
|
- else if (!t.isVideo && !t.options.features.length) {
|
|
|
- t.$media.hide();
|
|
|
- }
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- // create MediaElement shim
|
|
|
- mejs.MediaElement(t.$media[0], meOptions);
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- if (typeof(t.container) !== 'undefined' && t.options.features.length && t.controlsAreVisible) {
|
|
|
- // controls are shown when loaded
|
|
|
- t.container.trigger('controlsshown');
|
|
|
- }
|
|
|
- },
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- showControls: function(doAnimation) {
|
|
|
- var t = this;
|
|
|
+var _media = _dereq_(28);
|
|
|
|
|
|
- doAnimation = typeof doAnimation == 'undefined' || doAnimation;
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- if (t.controlsAreVisible)
|
|
|
- return;
|
|
|
+var _dom = _dereq_(26);
|
|
|
|
|
|
- if (doAnimation) {
|
|
|
- t.controls
|
|
|
- .removeClass('mejs-offscreen')
|
|
|
- .stop(true, true).fadeIn(200, function() {
|
|
|
- t.controlsAreVisible = true;
|
|
|
- t.container.trigger('controlsshown');
|
|
|
- });
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- // any additional controls people might add and want to hide
|
|
|
- t.container.find('.mejs-control')
|
|
|
- .removeClass('mejs-offscreen')
|
|
|
- .stop(true, true).fadeIn(200, function() {t.controlsAreVisible = true;});
|
|
|
+var NativeDash = {
|
|
|
|
|
|
- } else {
|
|
|
- t.controls
|
|
|
- .removeClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
+ promise: null,
|
|
|
|
|
|
- // any additional controls people might add and want to hide
|
|
|
- t.container.find('.mejs-control')
|
|
|
- .removeClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
+ load: function load(settings) {
|
|
|
+ if (typeof dashjs !== 'undefined') {
|
|
|
+ NativeDash.promise = new Promise(function (resolve) {
|
|
|
+ resolve();
|
|
|
+ }).then(function () {
|
|
|
+ NativeDash._createPlayer(settings);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ settings.options.path = typeof settings.options.path === 'string' ? settings.options.path : 'https://cdn.dashjs.org/latest/dash.all.min.js';
|
|
|
|
|
|
- t.controlsAreVisible = true;
|
|
|
- t.container.trigger('controlsshown');
|
|
|
- }
|
|
|
+ NativeDash.promise = NativeDash.promise || (0, _dom.loadScript)(settings.options.path);
|
|
|
+ NativeDash.promise.then(function () {
|
|
|
+ NativeDash._createPlayer(settings);
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
- t.setControlsSize();
|
|
|
+ return NativeDash.promise;
|
|
|
+ },
|
|
|
|
|
|
- },
|
|
|
+ _createPlayer: function _createPlayer(settings) {
|
|
|
+ var player = dashjs.MediaPlayer().create();
|
|
|
+ _window2.default['__ready__' + settings.id](player);
|
|
|
+ return player;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- hideControls: function(doAnimation) {
|
|
|
- var t = this;
|
|
|
+var DashNativeRenderer = {
|
|
|
+ name: 'native_dash',
|
|
|
+ options: {
|
|
|
+ prefix: 'native_dash',
|
|
|
+ dash: {
|
|
|
+ path: 'https://cdn.dashjs.org/latest/dash.all.min.js',
|
|
|
+ debug: false,
|
|
|
+ drm: {},
|
|
|
|
|
|
- doAnimation = typeof doAnimation == 'undefined' || doAnimation;
|
|
|
+ robustnessLevel: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- if (!t.controlsAreVisible || t.options.alwaysShowControls || t.keyboardAction || t.media.paused || t.media.ended)
|
|
|
- return;
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return _constants.HAS_MSE && ['application/dash+xml'].indexOf(type.toLowerCase()) > -1;
|
|
|
+ },
|
|
|
|
|
|
- if (doAnimation) {
|
|
|
- // fade out main controls
|
|
|
- t.controls.stop(true, true).fadeOut(200, function() {
|
|
|
- $(this)
|
|
|
- .addClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
-
|
|
|
- t.controlsAreVisible = false;
|
|
|
- t.container.trigger('controlshidden');
|
|
|
- });
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
|
|
|
- // any additional controls people might add and want to hide
|
|
|
- t.container.find('.mejs-control').stop(true, true).fadeOut(200, function() {
|
|
|
- $(this)
|
|
|
- .addClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
- });
|
|
|
- } else {
|
|
|
+ var originalNode = mediaElement.originalNode,
|
|
|
+ id = mediaElement.id + '_' + options.prefix,
|
|
|
+ autoplay = originalNode.autoplay,
|
|
|
+ children = originalNode.children;
|
|
|
|
|
|
- // hide main controls
|
|
|
- t.controls
|
|
|
- .addClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
+ var node = null,
|
|
|
+ dashPlayer = null;
|
|
|
+
|
|
|
+ originalNode.removeAttribute('type');
|
|
|
+ for (var i = 0, total = children.length; i < total; i++) {
|
|
|
+ children[i].removeAttribute('type');
|
|
|
+ }
|
|
|
|
|
|
- // hide others
|
|
|
- t.container.find('.mejs-control')
|
|
|
- .addClass('mejs-offscreen')
|
|
|
- .css('display','block');
|
|
|
+ node = originalNode.cloneNode(true);
|
|
|
+ options = Object.assign(options, mediaElement.options);
|
|
|
|
|
|
- t.controlsAreVisible = false;
|
|
|
- t.container.trigger('controlshidden');
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ events = _mejs2.default.html5media.events.concat(['click', 'mouseover', 'mouseout']),
|
|
|
+ attachNativeEvents = function attachNativeEvents(e) {
|
|
|
+ if (e.type !== 'error') {
|
|
|
+ var _event = (0, _general.createEvent)(e.type, mediaElement);
|
|
|
+ mediaElement.dispatchEvent(_event);
|
|
|
}
|
|
|
},
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- controlsTimer: null,
|
|
|
+ node['get' + capName] = function () {
|
|
|
+ return dashPlayer !== null ? node[propName] : null;
|
|
|
+ };
|
|
|
|
|
|
- startControlsTimer: function(timeout) {
|
|
|
+ node['set' + capName] = function (value) {
|
|
|
+ if (_mejs2.default.html5media.readOnlyProperties.indexOf(propName) === -1) {
|
|
|
+ if (propName === 'src') {
|
|
|
+ var source = (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && value.src ? value.src : value;
|
|
|
+ node[propName] = source;
|
|
|
+ if (dashPlayer !== null) {
|
|
|
+ dashPlayer.reset();
|
|
|
+ for (var _i = 0, _total = events.length; _i < _total; _i++) {
|
|
|
+ node.removeEventListener(events[_i], attachNativeEvents);
|
|
|
+ }
|
|
|
+ dashPlayer = NativeDash._createPlayer({
|
|
|
+ options: options.dash,
|
|
|
+ id: id
|
|
|
+ });
|
|
|
|
|
|
- var t = this;
|
|
|
+ if (value && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && _typeof(value.drm) === 'object') {
|
|
|
+ dashPlayer.setProtectionData(value.drm);
|
|
|
+ if ((0, _general.isString)(options.dash.robustnessLevel) && options.dash.robustnessLevel) {
|
|
|
+ dashPlayer.getProtectionController().setRobustnessLevel(options.dash.robustnessLevel);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ dashPlayer.attachSource(source);
|
|
|
+ if (autoplay) {
|
|
|
+ dashPlayer.play();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ node[propName] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- timeout = typeof timeout != 'undefined' ? timeout : t.options.controlsTimeoutDefault;
|
|
|
+ for (var _i2 = 0, _total2 = props.length; _i2 < _total2; _i2++) {
|
|
|
+ assignGettersSetters(props[_i2]);
|
|
|
+ }
|
|
|
|
|
|
- t.killControlsTimer('start');
|
|
|
+ _window2.default['__ready__' + id] = function (_dashPlayer) {
|
|
|
+ mediaElement.dashPlayer = dashPlayer = _dashPlayer;
|
|
|
+
|
|
|
+ var dashEvents = dashjs.MediaPlayer.events,
|
|
|
+ assignEvents = function assignEvents(eventName) {
|
|
|
+ if (eventName === 'loadedmetadata') {
|
|
|
+ dashPlayer.getDebug().setLogToBrowserConsole(options.dash.debug);
|
|
|
+ dashPlayer.initialize();
|
|
|
+ dashPlayer.setScheduleWhilePaused(false);
|
|
|
+ dashPlayer.setFastSwitchEnabled(true);
|
|
|
+ dashPlayer.attachView(node);
|
|
|
+ dashPlayer.setAutoPlay(false);
|
|
|
+
|
|
|
+ if (_typeof(options.dash.drm) === 'object' && !_mejs2.default.Utils.isObjectEmpty(options.dash.drm)) {
|
|
|
+ dashPlayer.setProtectionData(options.dash.drm);
|
|
|
+ if ((0, _general.isString)(options.dash.robustnessLevel) && options.dash.robustnessLevel) {
|
|
|
+ dashPlayer.getProtectionController().setRobustnessLevel(options.dash.robustnessLevel);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ dashPlayer.attachSource(node.getSrc());
|
|
|
+ }
|
|
|
|
|
|
- t.controlsTimer = setTimeout(function() {
|
|
|
- //
|
|
|
- t.hideControls();
|
|
|
- t.killControlsTimer('hide');
|
|
|
- }, timeout);
|
|
|
- },
|
|
|
+ node.addEventListener(eventName, attachNativeEvents);
|
|
|
+ };
|
|
|
|
|
|
- killControlsTimer: function(src) {
|
|
|
+ for (var _i3 = 0, _total3 = events.length; _i3 < _total3; _i3++) {
|
|
|
+ assignEvents(events[_i3]);
|
|
|
+ }
|
|
|
|
|
|
- var t = this;
|
|
|
+ var assignMdashEvents = function assignMdashEvents(name, data) {
|
|
|
+ if (name.toLowerCase() === 'error') {
|
|
|
+ mediaElement.generateError(data.message, node.src);
|
|
|
+ console.error(data);
|
|
|
+ } else {
|
|
|
+ var _event2 = (0, _general.createEvent)(name, mediaElement);
|
|
|
+ _event2.data = data;
|
|
|
+ mediaElement.dispatchEvent(_event2);
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- if (t.controlsTimer !== null) {
|
|
|
- clearTimeout(t.controlsTimer);
|
|
|
- delete t.controlsTimer;
|
|
|
- t.controlsTimer = null;
|
|
|
+ for (var eventType in dashEvents) {
|
|
|
+ if (dashEvents.hasOwnProperty(eventType)) {
|
|
|
+ dashPlayer.on(dashEvents[eventType], function (e) {
|
|
|
+ for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
|
+ args[_key - 1] = arguments[_key];
|
|
|
+ }
|
|
|
+
|
|
|
+ return assignMdashEvents(e.type, args);
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
- },
|
|
|
+ };
|
|
|
|
|
|
- controlsEnabled: true,
|
|
|
+ if (mediaFiles && mediaFiles.length > 0) {
|
|
|
+ for (var _i4 = 0, _total4 = mediaFiles.length; _i4 < _total4; _i4++) {
|
|
|
+ if (_renderer.renderer.renderers[options.prefix].canPlayType(mediaFiles[_i4].type)) {
|
|
|
+ node.setAttribute('src', mediaFiles[_i4].src);
|
|
|
+ if (typeof mediaFiles[_i4].drm !== 'undefined') {
|
|
|
+ options.dash.drm = mediaFiles[_i4].drm;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- disableControls: function() {
|
|
|
- var t= this;
|
|
|
+ node.setAttribute('id', id);
|
|
|
|
|
|
- t.killControlsTimer();
|
|
|
- t.hideControls(false);
|
|
|
- this.controlsEnabled = false;
|
|
|
- },
|
|
|
+ originalNode.parentNode.insertBefore(node, originalNode);
|
|
|
+ originalNode.autoplay = false;
|
|
|
+ originalNode.style.display = 'none';
|
|
|
|
|
|
- enableControls: function() {
|
|
|
- var t= this;
|
|
|
+ node.setSize = function (width, height) {
|
|
|
+ node.style.width = width + 'px';
|
|
|
+ node.style.height = height + 'px';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- t.showControls(false);
|
|
|
+ node.hide = function () {
|
|
|
+ node.pause();
|
|
|
+ node.style.display = 'none';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- t.controlsEnabled = true;
|
|
|
- },
|
|
|
+ node.show = function () {
|
|
|
+ node.style.display = '';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- // Sets up all controls and events
|
|
|
- meReady: function(media, domNode) {
|
|
|
-
|
|
|
- var
|
|
|
- t = this,
|
|
|
- mf = mejs.MediaFeatures,
|
|
|
- autoplayAttr = domNode.getAttribute('autoplay'),
|
|
|
- autoplay = !(typeof autoplayAttr == 'undefined' || autoplayAttr === null || autoplayAttr === 'false'),
|
|
|
- featureIndex,
|
|
|
- feature;
|
|
|
-
|
|
|
- // make sure it can't create itself again if a plugin reloads
|
|
|
- if (t.created) {
|
|
|
- return;
|
|
|
- } else {
|
|
|
- t.created = true;
|
|
|
+ node.destroy = function () {
|
|
|
+ if (dashPlayer !== null) {
|
|
|
+ dashPlayer.reset();
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- t.media = media;
|
|
|
- t.domNode = domNode;
|
|
|
-
|
|
|
- if (!(mf.isAndroid && t.options.AndroidUseNativeControls) && !(mf.isiPad && t.options.iPadUseNativeControls) && !(mf.isiPhone && t.options.iPhoneUseNativeControls)) {
|
|
|
+ var event = (0, _general.createEvent)('rendererready', node);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
|
|
|
- // In the event that no features are specified for audio,
|
|
|
- // create only MediaElement instance rather than
|
|
|
- // doing all the work to create a full player
|
|
|
- if (!t.isVideo && !t.options.features.length) {
|
|
|
+ mediaElement.promises.push(NativeDash.load({
|
|
|
+ options: options.dash,
|
|
|
+ id: id
|
|
|
+ }));
|
|
|
|
|
|
- // force autoplay for HTML5
|
|
|
- if (autoplay && media.pluginType == 'native') {
|
|
|
- t.play();
|
|
|
- }
|
|
|
+ return node;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
+_media.typeChecks.push(function (url) {
|
|
|
+ return ~url.toLowerCase().indexOf('.mpd') ? 'application/dash+xml' : null;
|
|
|
+});
|
|
|
|
|
|
- if (t.options.success) {
|
|
|
+_renderer.renderer.add(DashNativeRenderer);
|
|
|
|
|
|
- if (typeof t.options.success == 'string') {
|
|
|
- window[t.options.success](t.media, t.domNode, t);
|
|
|
- } else {
|
|
|
- t.options.success(t.media, t.domNode, t);
|
|
|
- }
|
|
|
- }
|
|
|
+},{"25":25,"26":26,"27":27,"28":28,"3":3,"7":7,"8":8}],20:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- return;
|
|
|
- }
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.PluginDetector = undefined;
|
|
|
|
|
|
- // two built in features
|
|
|
- t.buildposter(t, t.controls, t.layers, t.media);
|
|
|
- t.buildkeyboard(t, t.controls, t.layers, t.media);
|
|
|
- t.buildoverlays(t, t.controls, t.layers, t.media);
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
|
|
|
- // grab for use by features
|
|
|
- t.findTracks();
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- // add user-defined features/controls
|
|
|
- for (featureIndex in t.options.features) {
|
|
|
- feature = t.options.features[featureIndex];
|
|
|
- if (t['build' + feature]) {
|
|
|
- try {
|
|
|
- t['build' + feature](t, t.controls, t.layers, t.media);
|
|
|
- } catch (e) {
|
|
|
- // TODO: report control error
|
|
|
- //throw e;
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- t.container.trigger('controlsready');
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- // reset all layers and controls
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
- t.setControlsSize();
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- // controls fade
|
|
|
- if (t.isVideo) {
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- if (mejs.MediaFeatures.hasTouch && !t.options.alwaysShowControls) {
|
|
|
+var _i18n = _dereq_(5);
|
|
|
|
|
|
- // for touch devices (iOS, Android)
|
|
|
- // show/hide without animation on touch
|
|
|
+var _i18n2 = _interopRequireDefault(_i18n);
|
|
|
|
|
|
- t.$media.bind('touchstart', function() {
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- // toggle controls
|
|
|
- if (t.controlsAreVisible) {
|
|
|
- t.hideControls(false);
|
|
|
- } else {
|
|
|
- if (t.controlsEnabled) {
|
|
|
- t.showControls(false);
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- } else {
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- // create callback here since it needs access to current
|
|
|
- // MediaElement object
|
|
|
- t.clickToPlayPauseCallback = function() {
|
|
|
- //
|
|
|
+var _media = _dereq_(28);
|
|
|
|
|
|
- if (t.options.clickToPlayPause) {
|
|
|
- if (t.media.paused) {
|
|
|
- t.play();
|
|
|
- } else {
|
|
|
- t.pause();
|
|
|
- }
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- var button = t.$media.closest('.mejs-container').find('.mejs-overlay-button'),
|
|
|
- pressed = button.attr('aria-pressed');
|
|
|
- button.attr('aria-pressed', !pressed);
|
|
|
- }
|
|
|
- };
|
|
|
+var PluginDetector = exports.PluginDetector = {
|
|
|
+ plugins: [],
|
|
|
|
|
|
- // click to play/pause
|
|
|
- t.media.addEventListener('click', t.clickToPlayPauseCallback, false);
|
|
|
+ hasPluginVersion: function hasPluginVersion(plugin, v) {
|
|
|
+ var pv = PluginDetector.plugins[plugin];
|
|
|
+ v[1] = v[1] || 0;
|
|
|
+ v[2] = v[2] || 0;
|
|
|
+ return pv[0] > v[0] || pv[0] === v[0] && pv[1] > v[1] || pv[0] === v[0] && pv[1] === v[1] && pv[2] >= v[2];
|
|
|
+ },
|
|
|
|
|
|
- // show/hide controls
|
|
|
- t.container
|
|
|
- .bind('mouseenter', function () {
|
|
|
- if (t.controlsEnabled) {
|
|
|
- if (!t.options.alwaysShowControls ) {
|
|
|
- t.killControlsTimer('enter');
|
|
|
- t.showControls();
|
|
|
- t.startControlsTimer(t.options.controlsTimeoutMouseEnter);
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- .bind('mousemove', function() {
|
|
|
- if (t.controlsEnabled) {
|
|
|
- if (!t.controlsAreVisible) {
|
|
|
- t.showControls();
|
|
|
- }
|
|
|
- if (!t.options.alwaysShowControls) {
|
|
|
- t.startControlsTimer(t.options.controlsTimeoutMouseEnter);
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- .bind('mouseleave', function () {
|
|
|
- if (t.controlsEnabled) {
|
|
|
- if (!t.media.paused && !t.options.alwaysShowControls) {
|
|
|
- t.startControlsTimer(t.options.controlsTimeoutMouseLeave);
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
+ addPlugin: function addPlugin(p, pluginName, mimeType, activeX, axDetect) {
|
|
|
+ PluginDetector.plugins[p] = PluginDetector.detectPlugin(pluginName, mimeType, activeX, axDetect);
|
|
|
+ },
|
|
|
|
|
|
- if(t.options.hideVideoControlsOnLoad) {
|
|
|
- t.hideControls(false);
|
|
|
- }
|
|
|
+ detectPlugin: function detectPlugin(pluginName, mimeType, activeX, axDetect) {
|
|
|
|
|
|
- // check for autoplay
|
|
|
- if (autoplay && !t.options.alwaysShowControls) {
|
|
|
- t.hideControls();
|
|
|
- }
|
|
|
+ var version = [0, 0, 0],
|
|
|
+ description = void 0,
|
|
|
+ ax = void 0;
|
|
|
|
|
|
- // resizer
|
|
|
- if (t.options.enableAutosize) {
|
|
|
- t.media.addEventListener('loadedmetadata', function(e) {
|
|
|
- // if the <video height> was not set and the options.videoHeight was not set
|
|
|
- // then resize to the real dimensions
|
|
|
- if (t.options.videoHeight <= 0 && t.domNode.getAttribute('height') === null && !isNaN(e.target.videoHeight)) {
|
|
|
- t.setPlayerSize(e.target.videoWidth, e.target.videoHeight);
|
|
|
- t.setControlsSize();
|
|
|
- t.media.setVideoSize(e.target.videoWidth, e.target.videoHeight);
|
|
|
- }
|
|
|
- }, false);
|
|
|
- }
|
|
|
+ if (_constants.NAV.plugins !== null && _constants.NAV.plugins !== undefined && _typeof(_constants.NAV.plugins[pluginName]) === 'object') {
|
|
|
+ description = _constants.NAV.plugins[pluginName].description;
|
|
|
+ if (description && !(typeof _constants.NAV.mimeTypes !== 'undefined' && _constants.NAV.mimeTypes[mimeType] && !_constants.NAV.mimeTypes[mimeType].enabledPlugin)) {
|
|
|
+ version = description.replace(pluginName, '').replace(/^\s+/, '').replace(/\sr/gi, '.').split('.');
|
|
|
+ for (var i = 0, total = version.length; i < total; i++) {
|
|
|
+ version[i] = parseInt(version[i].match(/\d+/), 10);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if (_window2.default.ActiveXObject !== undefined) {
|
|
|
+ try {
|
|
|
+ ax = new ActiveXObject(activeX);
|
|
|
+ if (ax) {
|
|
|
+ version = axDetect(ax);
|
|
|
}
|
|
|
+ } catch (e) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return version;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- // EVENTS
|
|
|
+PluginDetector.addPlugin('flash', 'Shockwave Flash', 'application/x-shockwave-flash', 'ShockwaveFlash.ShockwaveFlash', function (ax) {
|
|
|
+ var version = [],
|
|
|
+ d = ax.GetVariable("$version");
|
|
|
|
|
|
- // FOCUS: when a video starts playing, it takes focus from other players (possibly pausing them)
|
|
|
- t.media.addEventListener('play', function() {
|
|
|
- var playerIndex;
|
|
|
+ if (d) {
|
|
|
+ d = d.split(" ")[1].split(",");
|
|
|
+ version = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
|
|
+ }
|
|
|
+ return version;
|
|
|
+});
|
|
|
|
|
|
- // go through all other players
|
|
|
- for (playerIndex in mejs.players) {
|
|
|
- var p = mejs.players[playerIndex];
|
|
|
- if (p.id != t.id && t.options.pauseOtherPlayers && !p.paused && !p.ended) {
|
|
|
- p.pause();
|
|
|
+var FlashMediaElementRenderer = {
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
+
|
|
|
+ var flash = {};
|
|
|
+
|
|
|
+ flash.options = options;
|
|
|
+ flash.id = mediaElement.id + '_' + flash.options.prefix;
|
|
|
+ flash.mediaElement = mediaElement;
|
|
|
+ flash.flashState = {};
|
|
|
+ flash.flashApi = null;
|
|
|
+ flash.flashApiStack = [];
|
|
|
+
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ flash.flashState[propName] = null;
|
|
|
+
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
+
|
|
|
+ flash['get' + capName] = function () {
|
|
|
+ if (flash.flashApi !== null) {
|
|
|
+ if (typeof flash.flashApi['get_' + propName] === 'function') {
|
|
|
+ var value = flash.flashApi['get_' + propName]();
|
|
|
+
|
|
|
+ if (propName === 'buffered') {
|
|
|
+ return {
|
|
|
+ start: function start() {
|
|
|
+ return 0;
|
|
|
+ },
|
|
|
+ end: function end() {
|
|
|
+ return value;
|
|
|
+ },
|
|
|
+ length: 1
|
|
|
+ };
|
|
|
}
|
|
|
- p.hasFocus = false;
|
|
|
+ return value;
|
|
|
+ } else {
|
|
|
+ return null;
|
|
|
}
|
|
|
+ } else {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- t.hasFocus = true;
|
|
|
- },false);
|
|
|
+ flash['set' + capName] = function (value) {
|
|
|
+ if (propName === 'src') {
|
|
|
+ value = (0, _media.absolutizeUrl)(value);
|
|
|
+ }
|
|
|
|
|
|
+ if (flash.flashApi !== null && flash.flashApi['set_' + propName] !== undefined) {
|
|
|
+ try {
|
|
|
+ flash.flashApi['set_' + propName](value);
|
|
|
+ } catch (e) {
|
|
|
+
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ flash.flashApiStack.push({
|
|
|
+ type: 'set',
|
|
|
+ propName: propName,
|
|
|
+ value: value
|
|
|
+ });
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- // ended for all
|
|
|
- t.media.addEventListener('ended', function (e) {
|
|
|
- if(t.options.autoRewind) {
|
|
|
- try{
|
|
|
- t.media.setCurrentTime(0);
|
|
|
- // Fixing an Android stock browser bug, where "seeked" isn't fired correctly after ending the video and jumping to the beginning
|
|
|
- window.setTimeout(function(){
|
|
|
- $(t.container).find('.mejs-overlay-loading').parent().hide();
|
|
|
- }, 20);
|
|
|
- } catch (exp) {
|
|
|
+ for (var i = 0, total = props.length; i < total; i++) {
|
|
|
+ assignGettersSetters(props[i]);
|
|
|
+ }
|
|
|
|
|
|
+ var methods = _mejs2.default.html5media.methods,
|
|
|
+ assignMethods = function assignMethods(methodName) {
|
|
|
+ flash[methodName] = function () {
|
|
|
+ if (flash.flashApi !== null) {
|
|
|
+ if (flash.flashApi['fire_' + methodName]) {
|
|
|
+ try {
|
|
|
+ flash.flashApi['fire_' + methodName]();
|
|
|
+ } catch (e) {
|
|
|
+
|
|
|
}
|
|
|
- }
|
|
|
- if (t.media.pluginType === 'youtube') {
|
|
|
- t.media.stop();
|
|
|
} else {
|
|
|
- t.media.pause();
|
|
|
+
|
|
|
}
|
|
|
+ } else {
|
|
|
+ flash.flashApiStack.push({
|
|
|
+ type: 'call',
|
|
|
+ methodName: methodName
|
|
|
+ });
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
+ methods.push('stop');
|
|
|
+ for (var _i = 0, _total = methods.length; _i < _total; _i++) {
|
|
|
+ assignMethods(methods[_i]);
|
|
|
+ }
|
|
|
|
|
|
- if (t.setProgressRail) {
|
|
|
- t.setProgressRail();
|
|
|
- }
|
|
|
- if (t.setCurrentRail) {
|
|
|
- t.setCurrentRail();
|
|
|
- }
|
|
|
+ var initEvents = ['rendererready'];
|
|
|
|
|
|
- if (t.options.loop) {
|
|
|
- t.play();
|
|
|
- } else if (!t.options.alwaysShowControls && t.controlsEnabled) {
|
|
|
- t.showControls();
|
|
|
- }
|
|
|
- }, false);
|
|
|
+ for (var _i2 = 0, _total2 = initEvents.length; _i2 < _total2; _i2++) {
|
|
|
+ var event = (0, _general.createEvent)(initEvents[_i2], flash);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }
|
|
|
|
|
|
- // resize on the first play
|
|
|
- t.media.addEventListener('loadedmetadata', function() {
|
|
|
+ _window2.default['__ready__' + flash.id] = function () {
|
|
|
|
|
|
- mejs.Utility.calculateTimeFormat(t.duration, t.options, t.options.framesPerSecond || 25);
|
|
|
+ flash.flashReady = true;
|
|
|
+ flash.flashApi = _document2.default.getElementById('__' + flash.id);
|
|
|
|
|
|
- if (t.updateDuration) {
|
|
|
- t.updateDuration();
|
|
|
- }
|
|
|
- if (t.updateCurrent) {
|
|
|
- t.updateCurrent();
|
|
|
- }
|
|
|
+ if (flash.flashApiStack.length) {
|
|
|
+ for (var _i3 = 0, _total3 = flash.flashApiStack.length; _i3 < _total3; _i3++) {
|
|
|
+ var stackItem = flash.flashApiStack[_i3];
|
|
|
|
|
|
- if (!t.isFullScreen) {
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
- t.setControlsSize();
|
|
|
- }
|
|
|
- }, false);
|
|
|
+ if (stackItem.type === 'set') {
|
|
|
+ var propName = stackItem.propName,
|
|
|
+ capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- // Only change the time format when necessary
|
|
|
- var duration = null;
|
|
|
- t.media.addEventListener('timeupdate',function() {
|
|
|
- if (duration !== this.duration) {
|
|
|
- duration = this.duration;
|
|
|
- mejs.Utility.calculateTimeFormat(duration, t.options, t.options.framesPerSecond || 25);
|
|
|
-
|
|
|
- // make sure to fill in and resize the controls (e.g., 00:00 => 01:13:15
|
|
|
- if (t.updateDuration) {
|
|
|
- t.updateDuration();
|
|
|
- }
|
|
|
- if (t.updateCurrent) {
|
|
|
- t.updateCurrent();
|
|
|
- }
|
|
|
- t.setControlsSize();
|
|
|
-
|
|
|
+ flash['set' + capName](stackItem.value);
|
|
|
+ } else if (stackItem.type === 'call') {
|
|
|
+ flash[stackItem.methodName]();
|
|
|
}
|
|
|
- }, false);
|
|
|
-
|
|
|
- t.container.focusout(function (e) {
|
|
|
- if( e.relatedTarget ) { //FF is working on supporting focusout https://bugzilla.mozilla.org/show_bug.cgi?id=687787
|
|
|
- var $target = $(e.relatedTarget);
|
|
|
- if (t.keyboardAction && $target.parents('.mejs-container').length === 0) {
|
|
|
- t.keyboardAction = false;
|
|
|
- if (t.isVideo && !t.options.alwaysShowControls) {
|
|
|
- t.hideControls(true);
|
|
|
- }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ _window2.default['__event__' + flash.id] = function (eventName, message) {
|
|
|
+ var event = (0, _general.createEvent)(eventName, flash);
|
|
|
+ if (message) {
|
|
|
+ try {
|
|
|
+ event.data = JSON.parse(message);
|
|
|
+ event.details.data = JSON.parse(message);
|
|
|
+ } catch (e) {
|
|
|
+ event.message = message;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- // webkit has trouble doing this without a delay
|
|
|
- setTimeout(function () {
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
- t.setControlsSize();
|
|
|
- }, 50);
|
|
|
+ flash.mediaElement.dispatchEvent(event);
|
|
|
+ };
|
|
|
|
|
|
- // adjust controls whenever window sizes (used to be in fullscreen only)
|
|
|
- t.globalBind('resize', function() {
|
|
|
+ flash.flashWrapper = _document2.default.createElement('div');
|
|
|
|
|
|
- // don't resize for fullscreen mode
|
|
|
- if ( !(t.isFullScreen || (mejs.MediaFeatures.hasTrueNativeFullScreen && document.webkitIsFullScreen)) ) {
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
- }
|
|
|
+ if (['always', 'sameDomain'].indexOf(flash.options.shimScriptAccess) === -1) {
|
|
|
+ flash.options.shimScriptAccess = 'sameDomain';
|
|
|
+ }
|
|
|
|
|
|
- // always adjust controls
|
|
|
- t.setControlsSize();
|
|
|
- });
|
|
|
+ var autoplay = mediaElement.originalNode.autoplay,
|
|
|
+ flashVars = ['uid=' + flash.id, 'autoplay=' + autoplay, 'allowScriptAccess=' + flash.options.shimScriptAccess, 'preload=' + (mediaElement.originalNode.getAttribute('preload') || '')],
|
|
|
+ isVideo = mediaElement.originalNode !== null && mediaElement.originalNode.tagName.toLowerCase() === 'video',
|
|
|
+ flashHeight = isVideo ? mediaElement.originalNode.height : 1,
|
|
|
+ flashWidth = isVideo ? mediaElement.originalNode.width : 1;
|
|
|
|
|
|
- // This is a work-around for a bug in the YouTube iFrame player, which means
|
|
|
- // we can't use the play() API for the initial playback on iOS or Android;
|
|
|
- // user has to start playback directly by tapping on the iFrame.
|
|
|
- if (t.media.pluginType == 'youtube' && ( mf.isiOS || mf.isAndroid ) ) {
|
|
|
- t.container.find('.mejs-overlay-play').hide();
|
|
|
- t.container.find('.mejs-poster').hide();
|
|
|
- }
|
|
|
- }
|
|
|
+ if (mediaElement.originalNode.getAttribute('src')) {
|
|
|
+ flashVars.push('src=' + mediaElement.originalNode.getAttribute('src'));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (flash.options.enablePseudoStreaming === true) {
|
|
|
+ flashVars.push('pseudostreamstart=' + flash.options.pseudoStreamingStartQueryParam);
|
|
|
+ flashVars.push('pseudostreamtype=' + flash.options.pseudoStreamingType);
|
|
|
+ }
|
|
|
+
|
|
|
+ mediaElement.appendChild(flash.flashWrapper);
|
|
|
+ mediaElement.originalNode.style.display = 'none';
|
|
|
|
|
|
- // force autoplay for HTML5
|
|
|
- if (autoplay && media.pluginType == 'native') {
|
|
|
- t.play();
|
|
|
- }
|
|
|
+ var settings = [];
|
|
|
|
|
|
+ if (_constants.IS_IE) {
|
|
|
+ var specialIEContainer = _document2.default.createElement('div');
|
|
|
+ flash.flashWrapper.appendChild(specialIEContainer);
|
|
|
|
|
|
- if (t.options.success) {
|
|
|
+ settings = ['classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"', 'codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"', 'id="__' + flash.id + '"', 'width="' + flashWidth + '"', 'height="' + flashHeight + '"'];
|
|
|
|
|
|
- if (typeof t.options.success == 'string') {
|
|
|
- window[t.options.success](t.media, t.domNode, t);
|
|
|
- } else {
|
|
|
- t.options.success(t.media, t.domNode, t);
|
|
|
- }
|
|
|
+ if (!isVideo) {
|
|
|
+ settings.push('style="clip: rect(0 0 0 0); position: absolute;"');
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- handleError: function(e) {
|
|
|
- var t = this;
|
|
|
+ specialIEContainer.outerHTML = '<object ' + settings.join(' ') + '>' + ('<param name="movie" value="' + flash.options.pluginPath + flash.options.filename + '?x=' + new Date() + '" />') + ('<param name="flashvars" value="' + flashVars.join('&') + '" />') + '<param name="quality" value="high" />' + '<param name="bgcolor" value="#000000" />' + '<param name="wmode" value="transparent" />' + ('<param name="allowScriptAccess" value="' + flash.options.shimScriptAccess + '" />') + '<param name="allowFullScreen" value="true" />' + ('<div>' + _i18n2.default.t('mejs.install-flash') + '</div>') + '</object>';
|
|
|
+ } else {
|
|
|
|
|
|
- if (t.controls) {
|
|
|
- t.controls.hide();
|
|
|
- }
|
|
|
+ settings = ['id="__' + flash.id + '"', 'name="__' + flash.id + '"', 'play="true"', 'loop="false"', 'quality="high"', 'bgcolor="#000000"', 'wmode="transparent"', 'allowScriptAccess="' + flash.options.shimScriptAccess + '"', 'allowFullScreen="true"', 'type="application/x-shockwave-flash"', 'pluginspage="//www.macromedia.com/go/getflashplayer"', 'src="' + flash.options.pluginPath + flash.options.filename + '"', 'flashvars="' + flashVars.join('&') + '"', 'width="' + flashWidth + '"', 'height="' + flashHeight + '"'];
|
|
|
|
|
|
- // Tell user that the file cannot be played
|
|
|
- if (t.options.error) {
|
|
|
- t.options.error(e);
|
|
|
+ if (!isVideo) {
|
|
|
+ settings.push('style="clip: rect(0 0 0 0); position: absolute;"');
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- setPlayerSize: function(width,height) {
|
|
|
- var t = this;
|
|
|
+ flash.flashWrapper.innerHTML = '<embed ' + settings.join(' ') + '>';
|
|
|
+ }
|
|
|
|
|
|
- if( !t.options.setDimensions ) {
|
|
|
- return false;
|
|
|
- }
|
|
|
+ flash.flashNode = flash.flashWrapper.lastChild;
|
|
|
|
|
|
- if (typeof width != 'undefined') {
|
|
|
- t.width = width;
|
|
|
+ flash.hide = function () {
|
|
|
+ if (isVideo) {
|
|
|
+ flash.flashNode.style.display = 'none';
|
|
|
+ }
|
|
|
+ };
|
|
|
+ flash.show = function () {
|
|
|
+ if (isVideo) {
|
|
|
+ flash.flashNode.style.display = '';
|
|
|
}
|
|
|
+ };
|
|
|
+ flash.setSize = function (width, height) {
|
|
|
+ flash.flashNode.style.width = width + 'px';
|
|
|
+ flash.flashNode.style.height = height + 'px';
|
|
|
|
|
|
- if (typeof height != 'undefined') {
|
|
|
- t.height = height;
|
|
|
+ if (flash.flashApi !== null && typeof flash.flashApi.fire_setSize === 'function') {
|
|
|
+ flash.flashApi.fire_setSize(width, height);
|
|
|
}
|
|
|
-
|
|
|
- // check stretching modes
|
|
|
- switch (t.options.stretching) {
|
|
|
- case 'fill':
|
|
|
- // The 'fill' effect only makes sense on video; for audio we will set the dimensions
|
|
|
- if (t.isVideo) {
|
|
|
- this.setFillMode();
|
|
|
- } else {
|
|
|
- this.setDimensions(t.width, t.height);
|
|
|
- }
|
|
|
- break;
|
|
|
- case 'responsive':
|
|
|
- this.setResponsiveMode();
|
|
|
- break;
|
|
|
- case 'none':
|
|
|
- this.setDimensions(t.width, t.height);
|
|
|
- break;
|
|
|
- // This is the 'auto' mode
|
|
|
- default:
|
|
|
- if (this.hasFluidMode() === true) {
|
|
|
- this.setResponsiveMode();
|
|
|
- } else {
|
|
|
- this.setDimensions(t.width, t.height);
|
|
|
- }
|
|
|
+ };
|
|
|
+
|
|
|
+ flash.destroy = function () {
|
|
|
+ flash.flashNode.remove();
|
|
|
+ };
|
|
|
+
|
|
|
+ if (mediaFiles && mediaFiles.length > 0) {
|
|
|
+ for (var _i4 = 0, _total4 = mediaFiles.length; _i4 < _total4; _i4++) {
|
|
|
+ if (_renderer.renderer.renderers[options.prefix].canPlayType(mediaFiles[_i4].type)) {
|
|
|
+ flash.setSrc(mediaFiles[_i4].src);
|
|
|
break;
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- hasFluidMode: function() {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- // detect 100% mode - use currentStyle for IE since css() doesn't return percentages
|
|
|
- return (t.height.toString().indexOf('%') > 0 || (t.$node.css('max-width') !== 'none' && t.$node.css('max-width') !== 't.width') || (t.$node[0].currentStyle && t.$node[0].currentStyle.maxWidth === '100%'));
|
|
|
- },
|
|
|
-
|
|
|
- setResponsiveMode: function() {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- // do we have the native dimensions yet?
|
|
|
- var nativeWidth = (function() {
|
|
|
- if (t.isVideo) {
|
|
|
- if (t.media.videoWidth && t.media.videoWidth > 0) {
|
|
|
- return t.media.videoWidth;
|
|
|
- } else if (t.media.getAttribute('width') !== null) {
|
|
|
- return t.media.getAttribute('width');
|
|
|
- } else {
|
|
|
- return t.options.defaultVideoWidth;
|
|
|
- }
|
|
|
- } else {
|
|
|
- return t.options.defaultAudioWidth;
|
|
|
- }
|
|
|
- })();
|
|
|
-
|
|
|
- var nativeHeight = (function() {
|
|
|
- if (t.isVideo) {
|
|
|
- if (t.media.videoHeight && t.media.videoHeight > 0) {
|
|
|
- return t.media.videoHeight;
|
|
|
- } else if (t.media.getAttribute('height') !== null) {
|
|
|
- return t.media.getAttribute('height');
|
|
|
- } else {
|
|
|
- return t.options.defaultVideoHeight;
|
|
|
- }
|
|
|
- } else {
|
|
|
- return t.options.defaultAudioHeight;
|
|
|
- }
|
|
|
- })();
|
|
|
-
|
|
|
- var parentWidth = t.container.parent().closest(':visible').width(),
|
|
|
- parentHeight = t.container.parent().closest(':visible').height(),
|
|
|
- newHeight = t.isVideo || !t.options.autosizeProgress ? parseInt(parentWidth * nativeHeight/nativeWidth, 10) : nativeHeight;
|
|
|
-
|
|
|
- // When we use percent, the newHeight can't be calculated so we get the container height
|
|
|
- if (isNaN(newHeight) || ( parentHeight !== 0 && newHeight > parentHeight && parentHeight > nativeHeight)) {
|
|
|
- newHeight = parentHeight;
|
|
|
- }
|
|
|
-
|
|
|
- if (t.container.parent().length > 0 && t.container.parent()[0].tagName.toLowerCase() === 'body') { // && t.container.siblings().count == 0) {
|
|
|
- parentWidth = $(window).width();
|
|
|
- newHeight = $(window).height();
|
|
|
- }
|
|
|
-
|
|
|
- if ( newHeight && parentWidth ) {
|
|
|
-
|
|
|
- // set outer container size
|
|
|
- t.container
|
|
|
- .width(parentWidth)
|
|
|
- .height(newHeight);
|
|
|
-
|
|
|
- // set native <video> or <audio> and shims
|
|
|
- t.$media.add(t.container.find('.mejs-shim'))
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
-
|
|
|
- // if shim is ready, send the size to the embeded plugin
|
|
|
- if (t.isVideo) {
|
|
|
- if (t.media.setVideoSize) {
|
|
|
- t.media.setVideoSize(parentWidth, newHeight);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // set the layers
|
|
|
- t.layers.children('.mejs-layer')
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- setFillMode: function() {
|
|
|
- var t = this,
|
|
|
- parent = t.outerContainer;
|
|
|
-
|
|
|
- if (!parent.width()) {
|
|
|
- parent.height(t.$media.width());
|
|
|
- }
|
|
|
-
|
|
|
- if (!parent.height()) {
|
|
|
- parent.height(t.$media.height());
|
|
|
- }
|
|
|
-
|
|
|
- var parentWidth = parent.width(),
|
|
|
- parentHeight = parent.height();
|
|
|
-
|
|
|
- t.setDimensions('100%', '100%');
|
|
|
-
|
|
|
- // This prevents an issue when displaying poster
|
|
|
- t.container.find('.mejs-poster img').css('display', 'block');
|
|
|
-
|
|
|
- targetElement = t.container.find('object, embed, iframe, video');
|
|
|
-
|
|
|
- // calculate new width and height
|
|
|
- var initHeight = t.height,
|
|
|
- initWidth = t.width,
|
|
|
- // scale to the target width
|
|
|
- scaleX1 = parentWidth,
|
|
|
- scaleY1 = (initHeight * parentWidth) / initWidth,
|
|
|
- // scale to the target height
|
|
|
- scaleX2 = (initWidth * parentHeight) / initHeight,
|
|
|
- scaleY2 = parentHeight,
|
|
|
- // now figure out which one we should use
|
|
|
- bScaleOnWidth = !(scaleX2 > parentWidth),
|
|
|
- finalWidth = bScaleOnWidth ? Math.floor(scaleX1) : Math.floor(scaleX2),
|
|
|
- finalHeight = bScaleOnWidth ? Math.floor(scaleY1) : Math.floor(scaleY2);
|
|
|
-
|
|
|
- if (bScaleOnWidth) {
|
|
|
- targetElement.height(finalHeight).width(parentWidth);
|
|
|
- if (t.media.setVideoSize) {
|
|
|
- t.media.setVideoSize(parentWidth, finalHeight);
|
|
|
- }
|
|
|
- } else {
|
|
|
- targetElement.height(parentHeight).width(finalWidth);
|
|
|
- if (t.media.setVideoSize) {
|
|
|
- t.media.setVideoSize(finalWidth, parentHeight);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- targetElement.css({
|
|
|
- 'margin-left': Math.floor((parentWidth - finalWidth) / 2),
|
|
|
- 'margin-top': 0
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- setDimensions: function(width, height) {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- t.container
|
|
|
- .width(width)
|
|
|
- .height(height);
|
|
|
-
|
|
|
- t.layers.children('.mejs-layer')
|
|
|
- .width(width)
|
|
|
- .height(height);
|
|
|
- },
|
|
|
-
|
|
|
- setControlsSize: function() {
|
|
|
- var t = this,
|
|
|
- usedWidth = 0,
|
|
|
- railWidth = 0,
|
|
|
- rail = t.controls.find('.mejs-time-rail'),
|
|
|
- total = t.controls.find('.mejs-time-total'),
|
|
|
- others = rail.siblings(),
|
|
|
- lastControl = others.last(),
|
|
|
- lastControlPosition = null,
|
|
|
- avoidAutosizeProgress = t.options && !t.options.autosizeProgress;
|
|
|
-
|
|
|
- // skip calculation if hidden
|
|
|
- if (!t.container.is(':visible') || !rail.length || !rail.is(':visible')) {
|
|
|
- return;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- // allow the size to come from custom CSS
|
|
|
- if (avoidAutosizeProgress) {
|
|
|
- // Also, frontends devs can be more flexible
|
|
|
- // due the opportunity of absolute positioning.
|
|
|
- railWidth = parseInt(rail.css('width'), 10);
|
|
|
- }
|
|
|
+ return flash;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- // attempt to autosize
|
|
|
- if (railWidth === 0 || !railWidth) {
|
|
|
+var hasFlash = PluginDetector.hasPluginVersion('flash', [10, 0, 0]);
|
|
|
|
|
|
- // find the size of all the other controls besides the rail
|
|
|
- others.each(function() {
|
|
|
- var $this = $(this);
|
|
|
- if ($this.css('position') != 'absolute' && $this.is(':visible')) {
|
|
|
- usedWidth += $(this).outerWidth(true);
|
|
|
- }
|
|
|
- });
|
|
|
+if (hasFlash) {
|
|
|
+ _media.typeChecks.push(function (url) {
|
|
|
+ url = url.toLowerCase();
|
|
|
|
|
|
- // fit the rail into the remaining space
|
|
|
- railWidth = t.controls.width() - usedWidth - (rail.outerWidth(true) - rail.width());
|
|
|
- }
|
|
|
+ if (url.startsWith('rtmp')) {
|
|
|
+ if (~url.indexOf('.mp3')) {
|
|
|
+ return 'audio/rtmp';
|
|
|
+ } else {
|
|
|
+ return 'video/rtmp';
|
|
|
+ }
|
|
|
+ } else if (/\.og(a|g)/i.test(url)) {
|
|
|
+ return 'audio/ogg';
|
|
|
+ } else if (~url.indexOf('.m3u8')) {
|
|
|
+ return 'application/x-mpegURL';
|
|
|
+ } else if (~url.indexOf('.mpd')) {
|
|
|
+ return 'application/dash+xml';
|
|
|
+ } else if (~url.indexOf('.flv')) {
|
|
|
+ return 'video/flv';
|
|
|
+ } else {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
- // resize the rail,
|
|
|
- // but then check if the last control (say, the fullscreen button) got pushed down
|
|
|
- // this often happens when zoomed
|
|
|
- do {
|
|
|
- // outer area
|
|
|
- // we only want to set an inline style with the width of the rail
|
|
|
- // if we're trying to autosize.
|
|
|
- if (!avoidAutosizeProgress) {
|
|
|
- rail.width(railWidth);
|
|
|
- }
|
|
|
+ var FlashMediaElementVideoRenderer = {
|
|
|
+ name: 'flash_video',
|
|
|
+ options: {
|
|
|
+ prefix: 'flash_video',
|
|
|
+ filename: 'mediaelement-flash-video.swf',
|
|
|
+ enablePseudoStreaming: false,
|
|
|
|
|
|
- // dark space
|
|
|
- total.width(railWidth - (total.outerWidth(true) - total.width()));
|
|
|
+ pseudoStreamingStartQueryParam: 'start',
|
|
|
|
|
|
- if (lastControl.css('position') != 'absolute') {
|
|
|
- lastControlPosition = lastControl.length ? lastControl.position() : null;
|
|
|
- railWidth--;
|
|
|
- }
|
|
|
- } while (lastControlPosition !== null && lastControlPosition.top.toFixed(2) > 0 && railWidth > 0);
|
|
|
+ pseudoStreamingType: 'byte'
|
|
|
+ },
|
|
|
|
|
|
- t.container.trigger('controlsresize');
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['video/mp4', 'video/rtmp', 'audio/rtmp', 'rtmp/mp4', 'audio/mp4', 'video/flv', 'video/x-flv'].indexOf(type.toLowerCase());
|
|
|
},
|
|
|
|
|
|
+ create: FlashMediaElementRenderer.create
|
|
|
|
|
|
- buildposter: function(player, controls, layers, media) {
|
|
|
- var t = this,
|
|
|
- poster =
|
|
|
- $('<div class="mejs-poster mejs-layer">' +
|
|
|
- '</div>')
|
|
|
- .appendTo(layers),
|
|
|
- posterUrl = player.$media.attr('poster');
|
|
|
-
|
|
|
- // prioriy goes to option (this is useful if you need to support iOS 3.x (iOS completely fails with poster)
|
|
|
- if (player.options.poster !== '') {
|
|
|
- posterUrl = player.options.poster;
|
|
|
- }
|
|
|
+ };
|
|
|
+ _renderer.renderer.add(FlashMediaElementVideoRenderer);
|
|
|
|
|
|
- // second, try the real poster
|
|
|
- if ( posterUrl ) {
|
|
|
- t.setPoster(posterUrl);
|
|
|
- } else {
|
|
|
- poster.hide();
|
|
|
- }
|
|
|
+ var FlashMediaElementHlsVideoRenderer = {
|
|
|
+ name: 'flash_hls',
|
|
|
+ options: {
|
|
|
+ prefix: 'flash_hls',
|
|
|
+ filename: 'mediaelement-flash-video-hls.swf'
|
|
|
+ },
|
|
|
|
|
|
- media.addEventListener('play',function() {
|
|
|
- poster.hide();
|
|
|
- }, false);
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['application/x-mpegurl', 'application/vnd.apple.mpegurl', 'audio/mpegurl', 'audio/hls', 'video/hls'].indexOf(type.toLowerCase());
|
|
|
+ },
|
|
|
|
|
|
- if(player.options.showPosterWhenEnded && player.options.autoRewind){
|
|
|
- media.addEventListener('ended',function() {
|
|
|
- poster.show();
|
|
|
- }, false);
|
|
|
- }
|
|
|
+ create: FlashMediaElementRenderer.create
|
|
|
+ };
|
|
|
+ _renderer.renderer.add(FlashMediaElementHlsVideoRenderer);
|
|
|
+
|
|
|
+ var FlashMediaElementMdashVideoRenderer = {
|
|
|
+ name: 'flash_dash',
|
|
|
+ options: {
|
|
|
+ prefix: 'flash_dash',
|
|
|
+ filename: 'mediaelement-flash-video-mdash.swf'
|
|
|
},
|
|
|
|
|
|
- setPoster: function(url) {
|
|
|
- var t = this,
|
|
|
- posterDiv = t.container.find('.mejs-poster'),
|
|
|
- posterImg = posterDiv.find('img');
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['application/dash+xml'].indexOf(type.toLowerCase());
|
|
|
+ },
|
|
|
|
|
|
- if (posterImg.length === 0) {
|
|
|
- posterImg = $('<img width="100%" height="100%" alt="" />').appendTo(posterDiv);
|
|
|
- }
|
|
|
+ create: FlashMediaElementRenderer.create
|
|
|
+ };
|
|
|
+ _renderer.renderer.add(FlashMediaElementMdashVideoRenderer);
|
|
|
|
|
|
- posterImg.attr('src', url);
|
|
|
- posterDiv.css({'background-image' : 'url(' + url + ')'});
|
|
|
+ var FlashMediaElementAudioRenderer = {
|
|
|
+ name: 'flash_audio',
|
|
|
+ options: {
|
|
|
+ prefix: 'flash_audio',
|
|
|
+ filename: 'mediaelement-flash-audio.swf'
|
|
|
},
|
|
|
|
|
|
- buildoverlays: function(player, controls, layers, media) {
|
|
|
- var t = this;
|
|
|
- if (!player.isVideo)
|
|
|
- return;
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['audio/mp3'].indexOf(type.toLowerCase());
|
|
|
+ },
|
|
|
|
|
|
- var
|
|
|
- loading =
|
|
|
- $('<div class="mejs-overlay mejs-layer">'+
|
|
|
- '<div class="mejs-overlay-loading"><span></span></div>'+
|
|
|
- '</div>')
|
|
|
- .hide() // start out hidden
|
|
|
- .appendTo(layers),
|
|
|
- error =
|
|
|
- $('<div class="mejs-overlay mejs-layer">'+
|
|
|
- '<div class="mejs-overlay-error"></div>'+
|
|
|
- '</div>')
|
|
|
- .hide() // start out hidden
|
|
|
- .appendTo(layers),
|
|
|
- // this needs to come last so it's on top
|
|
|
- bigPlay =
|
|
|
- $('<div class="mejs-overlay mejs-layer mejs-overlay-play">'+
|
|
|
- '<div class="mejs-overlay-button" role="button" aria-label="' + mejs.i18n.t('mejs.play') + '" aria-pressed="false"></div>'+
|
|
|
- '</div>')
|
|
|
- .appendTo(layers)
|
|
|
- .bind('click', function() { // Removed 'touchstart' due issues on Samsung Android devices where a tap on bigPlay started and immediately stopped the video
|
|
|
- if (t.options.clickToPlayPause) {
|
|
|
- if (media.paused) {
|
|
|
- media.play();
|
|
|
- }
|
|
|
+ create: FlashMediaElementRenderer.create
|
|
|
+ };
|
|
|
+ _renderer.renderer.add(FlashMediaElementAudioRenderer);
|
|
|
|
|
|
- var button = $(this).find('.mejs-overlay-button'),
|
|
|
- pressed = button.attr('aria-pressed');
|
|
|
- button.attr('aria-pressed', !!pressed);
|
|
|
- }
|
|
|
- });
|
|
|
+ var FlashMediaElementAudioOggRenderer = {
|
|
|
+ name: 'flash_audio_ogg',
|
|
|
+ options: {
|
|
|
+ prefix: 'flash_audio_ogg',
|
|
|
+ filename: 'mediaelement-flash-audio-ogg.swf'
|
|
|
+ },
|
|
|
|
|
|
- /*
|
|
|
- if (mejs.MediaFeatures.isiOS || mejs.MediaFeatures.isAndroid) {
|
|
|
- bigPlay.remove();
|
|
|
- loading.remove();
|
|
|
- }
|
|
|
- */
|
|
|
-
|
|
|
-
|
|
|
- // show/hide big play button
|
|
|
- media.addEventListener('play',function() {
|
|
|
- bigPlay.hide();
|
|
|
- loading.hide();
|
|
|
- controls.find('.mejs-time-buffering').hide();
|
|
|
- error.hide();
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('playing', function() {
|
|
|
- bigPlay.hide();
|
|
|
- loading.hide();
|
|
|
- controls.find('.mejs-time-buffering').hide();
|
|
|
- error.hide();
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('seeking', function() {
|
|
|
- loading.show();
|
|
|
- controls.find('.mejs-time-buffering').show();
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('seeked', function() {
|
|
|
- loading.hide();
|
|
|
- controls.find('.mejs-time-buffering').hide();
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('pause',function() {
|
|
|
- if (!mejs.MediaFeatures.isiPhone) {
|
|
|
- bigPlay.show();
|
|
|
- }
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('waiting', function() {
|
|
|
- loading.show();
|
|
|
- controls.find('.mejs-time-buffering').show();
|
|
|
- }, false);
|
|
|
-
|
|
|
-
|
|
|
- // show/hide loading
|
|
|
- media.addEventListener('loadeddata',function() {
|
|
|
- // for some reason Chrome is firing this event
|
|
|
- //if (mejs.MediaFeatures.isChrome && media.getAttribute && media.getAttribute('preload') === 'none')
|
|
|
- // return;
|
|
|
-
|
|
|
- loading.show();
|
|
|
- controls.find('.mejs-time-buffering').show();
|
|
|
- // Firing the 'canplay' event after a timeout which isn't getting fired on some Android 4.1 devices (https://github.com/johndyer/mediaelement/issues/1305)
|
|
|
- if (mejs.MediaFeatures.isAndroid) {
|
|
|
- media.canplayTimeout = window.setTimeout(
|
|
|
- function() {
|
|
|
- if (document.createEvent) {
|
|
|
- var evt = document.createEvent('HTMLEvents');
|
|
|
- evt.initEvent('canplay', true, true);
|
|
|
- return media.dispatchEvent(evt);
|
|
|
- }
|
|
|
- }, 300
|
|
|
- );
|
|
|
- }
|
|
|
- }, false);
|
|
|
- media.addEventListener('canplay',function() {
|
|
|
- loading.hide();
|
|
|
- controls.find('.mejs-time-buffering').hide();
|
|
|
- clearTimeout(media.canplayTimeout); // Clear timeout inside 'loadeddata' to prevent 'canplay' to fire twice
|
|
|
- }, false);
|
|
|
-
|
|
|
- // error handling
|
|
|
- media.addEventListener('error',function(e) {
|
|
|
- t.handleError(e);
|
|
|
- loading.hide();
|
|
|
- bigPlay.hide();
|
|
|
- error.show();
|
|
|
- error.find('.mejs-overlay-error').html("Error loading this resource");
|
|
|
- }, false);
|
|
|
-
|
|
|
- media.addEventListener('keydown', function(e) {
|
|
|
- t.onkeydown(player, media, e);
|
|
|
- }, false);
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['audio/ogg', 'audio/oga', 'audio/ogv'].indexOf(type.toLowerCase());
|
|
|
},
|
|
|
|
|
|
- buildkeyboard: function(player, controls, layers, media) {
|
|
|
+ create: FlashMediaElementRenderer.create
|
|
|
+ };
|
|
|
+ _renderer.renderer.add(FlashMediaElementAudioOggRenderer);
|
|
|
+}
|
|
|
|
|
|
- var t = this;
|
|
|
+},{"2":2,"25":25,"27":27,"28":28,"3":3,"5":5,"7":7,"8":8}],21:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- t.container.keydown(function () {
|
|
|
- t.keyboardAction = true;
|
|
|
- });
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
|
|
|
- // listen for key presses
|
|
|
- t.globalBind('keydown', function(event) {
|
|
|
- player.hasFocus = $(event.target).closest('.mejs-container').length !== 0
|
|
|
- && $(event.target).closest('.mejs-container').attr('id') === player.$media.closest('.mejs-container').attr('id');
|
|
|
- return t.onkeydown(player, media, event);
|
|
|
- });
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- // check if someone clicked outside a player region, then kill its focus
|
|
|
- t.globalBind('click', function(event) {
|
|
|
- player.hasFocus = $(event.target).closest('.mejs-container').length !== 0;
|
|
|
- });
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- },
|
|
|
- onkeydown: function(player, media, e) {
|
|
|
- if (player.hasFocus && player.options.enableKeyboard) {
|
|
|
- // find a matching key
|
|
|
- for (var i = 0, il = player.options.keyActions.length; i < il; i++) {
|
|
|
- var keyAction = player.options.keyActions[i];
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- for (var j = 0, jl = keyAction.keys.length; j < jl; j++) {
|
|
|
- if (e.keyCode == keyAction.keys[j]) {
|
|
|
- if (typeof(e.preventDefault) == "function") e.preventDefault();
|
|
|
- keyAction.action(player, media, e.keyCode, e);
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- return true;
|
|
|
- },
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- findTracks: function() {
|
|
|
- var t = this,
|
|
|
- tracktags = t.$media.find('track');
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- // store for use by plugins
|
|
|
- t.tracks = [];
|
|
|
- tracktags.each(function(index, track) {
|
|
|
+var _media = _dereq_(28);
|
|
|
|
|
|
- track = $(track);
|
|
|
+var _dom = _dereq_(26);
|
|
|
|
|
|
- t.tracks.push({
|
|
|
- srclang: (track.attr('srclang')) ? track.attr('srclang').toLowerCase() : '',
|
|
|
- src: track.attr('src'),
|
|
|
- kind: track.attr('kind'),
|
|
|
- label: track.attr('label') || '',
|
|
|
- entries: [],
|
|
|
- isLoaded: false
|
|
|
- });
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+var NativeFlv = {
|
|
|
+
|
|
|
+ promise: null,
|
|
|
+
|
|
|
+ load: function load(settings) {
|
|
|
+ if (typeof flvjs !== 'undefined') {
|
|
|
+ NativeFlv.promise = new Promise(function (resolve) {
|
|
|
+ resolve();
|
|
|
+ }).then(function () {
|
|
|
+ NativeFlv._createPlayer(settings);
|
|
|
});
|
|
|
- },
|
|
|
- changeSkin: function(className) {
|
|
|
- this.container[0].className = 'mejs-container ' + className;
|
|
|
- this.setPlayerSize(this.width, this.height);
|
|
|
- this.setControlsSize();
|
|
|
- },
|
|
|
- play: function() {
|
|
|
- this.load();
|
|
|
- this.media.play();
|
|
|
- },
|
|
|
- pause: function() {
|
|
|
- try {
|
|
|
- this.media.pause();
|
|
|
- } catch (e) {}
|
|
|
- },
|
|
|
- load: function() {
|
|
|
- if (!this.isLoaded) {
|
|
|
- this.media.load();
|
|
|
- }
|
|
|
+ } else {
|
|
|
+ settings.options.path = typeof settings.options.path === 'string' ? settings.options.path : 'https://cdnjs.cloudflare.com/ajax/libs/flv.js/1.3.2/flv.min.js';
|
|
|
|
|
|
- this.isLoaded = true;
|
|
|
- },
|
|
|
- setMuted: function(muted) {
|
|
|
- this.media.setMuted(muted);
|
|
|
- },
|
|
|
- setCurrentTime: function(time) {
|
|
|
- this.media.setCurrentTime(time);
|
|
|
- },
|
|
|
- getCurrentTime: function() {
|
|
|
- return this.media.currentTime;
|
|
|
- },
|
|
|
- setVolume: function(volume) {
|
|
|
- this.media.setVolume(volume);
|
|
|
- },
|
|
|
- getVolume: function() {
|
|
|
- return this.media.volume;
|
|
|
- },
|
|
|
- setSrc: function(src) {
|
|
|
- var
|
|
|
- t = this;
|
|
|
+ NativeFlv.promise = NativeFlv.promise || (0, _dom.loadScript)(settings.options.path);
|
|
|
+ NativeFlv.promise.then(function () {
|
|
|
+ NativeFlv._createPlayer(settings);
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
- // If using YouTube, its API is different to load a specific source
|
|
|
- if (t.media.pluginType === 'youtube') {
|
|
|
- var videoId;
|
|
|
+ return NativeFlv.promise;
|
|
|
+ },
|
|
|
|
|
|
- if (typeof src !== 'string') {
|
|
|
- var i, media;
|
|
|
+ _createPlayer: function _createPlayer(settings) {
|
|
|
+ flvjs.LoggingControl.enableDebug = settings.options.debug;
|
|
|
+ flvjs.LoggingControl.enableVerbose = settings.options.debug;
|
|
|
+ var player = flvjs.createPlayer(settings.options);
|
|
|
+ _window2.default['__ready__' + settings.id](player);
|
|
|
+ return player;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- for (i=0; i<src.length; i++) {
|
|
|
- media = src[i];
|
|
|
- if (this.canPlayType(media.type)) {
|
|
|
- src = media.src;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+var FlvNativeRenderer = {
|
|
|
+ name: 'native_flv',
|
|
|
+ options: {
|
|
|
+ prefix: 'native_flv',
|
|
|
+ flv: {
|
|
|
+ path: 'https://cdnjs.cloudflare.com/ajax/libs/flv.js/1.3.2/flv.min.js',
|
|
|
|
|
|
- // youtu.be url from share button
|
|
|
- if (src.lastIndexOf('youtu.be') !== -1) {
|
|
|
- videoId = src.substr(src.lastIndexOf('/') + 1);
|
|
|
+ cors: true,
|
|
|
+ debug: false
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- if (videoId.indexOf('?') !== -1) {
|
|
|
- videoId = videoId.substr(0, videoId.indexOf('?'));
|
|
|
- }
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return _constants.HAS_MSE && ['video/x-flv', 'video/flv'].indexOf(type.toLowerCase()) > -1;
|
|
|
+ },
|
|
|
|
|
|
- } else {
|
|
|
- // https://www.youtube.com/watch?v=
|
|
|
- var videoIdMatch = src.match(/[?&]v=([^&#]+)|&|#|$/);
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
|
|
|
- if (videoIdMatch) {
|
|
|
- videoId = videoIdMatch[1];
|
|
|
- }
|
|
|
- }
|
|
|
+ var originalNode = mediaElement.originalNode,
|
|
|
+ id = mediaElement.id + '_' + options.prefix;
|
|
|
|
|
|
- if (t.media.getAttribute('autoplay') !== null) {
|
|
|
- t.media.pluginApi.loadVideoById(videoId);
|
|
|
- } else {
|
|
|
- t.media.pluginApi.cueVideoById(videoId);
|
|
|
- }
|
|
|
+ var node = null,
|
|
|
+ flvPlayer = null;
|
|
|
|
|
|
- }
|
|
|
- else {
|
|
|
- t.media.setSrc(src);
|
|
|
+ node = originalNode.cloneNode(true);
|
|
|
+ options = Object.assign(options, mediaElement.options);
|
|
|
+
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ events = _mejs2.default.html5media.events.concat(['click', 'mouseover', 'mouseout']),
|
|
|
+ attachNativeEvents = function attachNativeEvents(e) {
|
|
|
+ if (e.type !== 'error') {
|
|
|
+ var _event = (0, _general.createEvent)(e.type, mediaElement);
|
|
|
+ mediaElement.dispatchEvent(_event);
|
|
|
}
|
|
|
},
|
|
|
- remove: function() {
|
|
|
- var t = this, featureIndex, feature;
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- t.container.prev('.mejs-offscreen').remove();
|
|
|
+ node['get' + capName] = function () {
|
|
|
+ return flvPlayer !== null ? node[propName] : null;
|
|
|
+ };
|
|
|
|
|
|
- // invoke features cleanup
|
|
|
- for (featureIndex in t.options.features) {
|
|
|
- feature = t.options.features[featureIndex];
|
|
|
- if (t['clean' + feature]) {
|
|
|
- try {
|
|
|
- t['clean' + feature](t);
|
|
|
- } catch (e) {
|
|
|
- // TODO: report control error
|
|
|
- //throw e;
|
|
|
- //
|
|
|
- //
|
|
|
+ node['set' + capName] = function (value) {
|
|
|
+ if (_mejs2.default.html5media.readOnlyProperties.indexOf(propName) === -1) {
|
|
|
+ if (propName === 'src') {
|
|
|
+ node[propName] = (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && value.src ? value.src : value;
|
|
|
+ if (flvPlayer !== null) {
|
|
|
+ var _flvOptions = {};
|
|
|
+ _flvOptions.type = 'flv';
|
|
|
+ _flvOptions.url = value;
|
|
|
+ _flvOptions.cors = options.flv.cors;
|
|
|
+ _flvOptions.debug = options.flv.debug;
|
|
|
+ _flvOptions.path = options.flv.path;
|
|
|
+
|
|
|
+ flvPlayer.destroy();
|
|
|
+ for (var i = 0, total = events.length; i < total; i++) {
|
|
|
+ node.removeEventListener(events[i], attachNativeEvents);
|
|
|
+ }
|
|
|
+ flvPlayer = NativeFlv._createPlayer({
|
|
|
+ options: _flvOptions,
|
|
|
+ id: id
|
|
|
+ });
|
|
|
+ flvPlayer.attachMediaElement(node);
|
|
|
+ flvPlayer.load();
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ node[propName] = value;
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- // grab video and put it back in place
|
|
|
- if (!t.isDynamic) {
|
|
|
- t.$media.prop('controls', true);
|
|
|
- // detach events from the video
|
|
|
- // TODO: detach event listeners better than this;
|
|
|
- // also detach ONLY the events attached by this plugin!
|
|
|
- t.$node.clone().insertBefore(t.container).show();
|
|
|
- t.$node.remove();
|
|
|
- } else {
|
|
|
- t.$node.insertBefore(t.container);
|
|
|
- }
|
|
|
+ for (var i = 0, total = props.length; i < total; i++) {
|
|
|
+ assignGettersSetters(props[i]);
|
|
|
+ }
|
|
|
|
|
|
- if (t.media.pluginType !== 'native') {
|
|
|
- t.media.remove();
|
|
|
- }
|
|
|
+ _window2.default['__ready__' + id] = function (_flvPlayer) {
|
|
|
+ mediaElement.flvPlayer = flvPlayer = _flvPlayer;
|
|
|
+
|
|
|
+ var flvEvents = flvjs.Events,
|
|
|
+ assignEvents = function assignEvents(eventName) {
|
|
|
+ if (eventName === 'loadedmetadata') {
|
|
|
+ flvPlayer.unload();
|
|
|
+ flvPlayer.detachMediaElement();
|
|
|
+ flvPlayer.attachMediaElement(node);
|
|
|
+ flvPlayer.load();
|
|
|
+ }
|
|
|
|
|
|
- // Remove the player from the mejs.players object so that pauseOtherPlayers doesn't blow up when trying to pause a non existance flash api.
|
|
|
- delete mejs.players[t.id];
|
|
|
+ node.addEventListener(eventName, attachNativeEvents);
|
|
|
+ };
|
|
|
|
|
|
- if (typeof t.container == 'object') {
|
|
|
- t.container.remove();
|
|
|
+ for (var _i = 0, _total = events.length; _i < _total; _i++) {
|
|
|
+ assignEvents(events[_i]);
|
|
|
}
|
|
|
- t.globalUnbind();
|
|
|
- delete t.node.player;
|
|
|
- },
|
|
|
- rebuildtracks: function(){
|
|
|
- var t = this;
|
|
|
- t.findTracks();
|
|
|
- t.buildtracks(t, t.controls, t.layers, t.media);
|
|
|
- },
|
|
|
- resetSize: function(){
|
|
|
- var t = this;
|
|
|
- // webkit has trouble doing this without a delay
|
|
|
- setTimeout(function () {
|
|
|
- //
|
|
|
- t.setPlayerSize(t.width, t.height);
|
|
|
- t.setControlsSize();
|
|
|
- }, 50);
|
|
|
- }
|
|
|
- };
|
|
|
|
|
|
- (function(){
|
|
|
- var rwindow = /^((after|before)print|(before)?unload|hashchange|message|o(ff|n)line|page(hide|show)|popstate|resize|storage)\b/;
|
|
|
+ var assignFlvEvents = function assignFlvEvents(name, data) {
|
|
|
+ if (name === 'error') {
|
|
|
+ var message = data[0] + ': ' + data[1] + ' ' + data[2].msg;
|
|
|
+ mediaElement.generateError(message, node.src);
|
|
|
+ } else {
|
|
|
+ var _event2 = (0, _general.createEvent)(name, mediaElement);
|
|
|
+ _event2.data = data;
|
|
|
+ mediaElement.dispatchEvent(_event2);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ var _loop = function _loop(eventType) {
|
|
|
+ if (flvEvents.hasOwnProperty(eventType)) {
|
|
|
+ flvPlayer.on(flvEvents[eventType], function () {
|
|
|
+ for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
|
+ args[_key] = arguments[_key];
|
|
|
+ }
|
|
|
|
|
|
- function splitEvents(events, id) {
|
|
|
- // add player ID as an event namespace so it's easier to unbind them all later
|
|
|
- var ret = {d: [], w: []};
|
|
|
- $.each((events || '').split(' '), function(k, v){
|
|
|
- var eventname = v + '.' + id;
|
|
|
- if (eventname.indexOf('.') === 0) {
|
|
|
- ret.d.push(eventname);
|
|
|
- ret.w.push(eventname);
|
|
|
+ return assignFlvEvents(flvEvents[eventType], args);
|
|
|
+ });
|
|
|
}
|
|
|
- else {
|
|
|
- ret[rwindow.test(v) ? 'w' : 'd'].push(eventname);
|
|
|
+ };
|
|
|
+
|
|
|
+ for (var eventType in flvEvents) {
|
|
|
+ _loop(eventType);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ if (mediaFiles && mediaFiles.length > 0) {
|
|
|
+ for (var _i2 = 0, _total2 = mediaFiles.length; _i2 < _total2; _i2++) {
|
|
|
+ if (_renderer.renderer.renderers[options.prefix].canPlayType(mediaFiles[_i2].type)) {
|
|
|
+ node.setAttribute('src', mediaFiles[_i2].src);
|
|
|
+ break;
|
|
|
}
|
|
|
- });
|
|
|
- ret.d = ret.d.join(' ');
|
|
|
- ret.w = ret.w.join(' ');
|
|
|
- return ret;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- mejs.MediaElementPlayer.prototype.globalBind = function(events, data, callback) {
|
|
|
- var t = this;
|
|
|
- var doc = t.node ? t.node.ownerDocument : document;
|
|
|
+ node.setAttribute('id', id);
|
|
|
|
|
|
- events = splitEvents(events, t.id);
|
|
|
- if (events.d) $(doc).bind(events.d, data, callback);
|
|
|
- if (events.w) $(window).bind(events.w, data, callback);
|
|
|
- };
|
|
|
+ originalNode.parentNode.insertBefore(node, originalNode);
|
|
|
+ originalNode.autoplay = false;
|
|
|
+ originalNode.style.display = 'none';
|
|
|
|
|
|
- mejs.MediaElementPlayer.prototype.globalUnbind = function(events, callback) {
|
|
|
- var t = this;
|
|
|
- var doc = t.node ? t.node.ownerDocument : document;
|
|
|
+ var flvOptions = {};
|
|
|
+ flvOptions.type = 'flv';
|
|
|
+ flvOptions.url = node.src;
|
|
|
+ flvOptions.cors = options.flv.cors;
|
|
|
+ flvOptions.debug = options.flv.debug;
|
|
|
+ flvOptions.path = options.flv.path;
|
|
|
|
|
|
- events = splitEvents(events, t.id);
|
|
|
- if (events.d) $(doc).unbind(events.d, callback);
|
|
|
- if (events.w) $(window).unbind(events.w, callback);
|
|
|
+ node.setSize = function (width, height) {
|
|
|
+ node.style.width = width + 'px';
|
|
|
+ node.style.height = height + 'px';
|
|
|
+ return node;
|
|
|
};
|
|
|
- })();
|
|
|
|
|
|
- // turn into jQuery plugin
|
|
|
- if (typeof $ != 'undefined') {
|
|
|
- $.fn.mediaelementplayer = function (options) {
|
|
|
- if (options === false) {
|
|
|
- this.each(function () {
|
|
|
- var player = $(this).data('mediaelementplayer');
|
|
|
- if (player) {
|
|
|
- player.remove();
|
|
|
- }
|
|
|
- $(this).removeData('mediaelementplayer');
|
|
|
- });
|
|
|
+ node.hide = function () {
|
|
|
+ if (flvPlayer !== null) {
|
|
|
+ flvPlayer.pause();
|
|
|
}
|
|
|
- else {
|
|
|
- this.each(function () {
|
|
|
- $(this).data('mediaelementplayer', new mejs.MediaElementPlayer(this, options));
|
|
|
- });
|
|
|
+ node.style.display = 'none';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
+
|
|
|
+ node.show = function () {
|
|
|
+ node.style.display = '';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
+
|
|
|
+ node.destroy = function () {
|
|
|
+ if (flvPlayer !== null) {
|
|
|
+ flvPlayer.destroy();
|
|
|
}
|
|
|
- return this;
|
|
|
};
|
|
|
|
|
|
+ var event = (0, _general.createEvent)('rendererready', node);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
|
|
|
- $(document).ready(function() {
|
|
|
- // auto enable using JSON attribute
|
|
|
- $('.mejs-player').mediaelementplayer();
|
|
|
- });
|
|
|
+ mediaElement.promises.push(NativeFlv.load({
|
|
|
+ options: flvOptions,
|
|
|
+ id: id
|
|
|
+ }));
|
|
|
+
|
|
|
+ return node;
|
|
|
}
|
|
|
+};
|
|
|
+
|
|
|
+_media.typeChecks.push(function (url) {
|
|
|
+ return ~url.toLowerCase().indexOf('.flv') ? 'video/flv' : null;
|
|
|
+});
|
|
|
+
|
|
|
+_renderer.renderer.add(FlvNativeRenderer);
|
|
|
+
|
|
|
+},{"25":25,"26":26,"27":27,"28":28,"3":3,"7":7,"8":8}],22:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
|
+
|
|
|
+var _window = _dereq_(3);
|
|
|
+
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- // push out to window
|
|
|
- window.MediaElementPlayer = mejs.MediaElementPlayer;
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
-(function($) {
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- playText: '',
|
|
|
- pauseText: ''
|
|
|
- });
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- // PLAY/pause BUTTON
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildplaypause: function(player, controls, layers, media) {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- op = t.options,
|
|
|
- playTitle = op.playText ? op.playText : mejs.i18n.t('mejs.play'),
|
|
|
- pauseTitle = op.pauseText ? op.pauseText : mejs.i18n.t('mejs.pause'),
|
|
|
- play =
|
|
|
- $('<div class="mejs-button mejs-playpause-button mejs-play" >' +
|
|
|
- '<button type="button" aria-controls="' + t.id + '" title="' + playTitle + '" aria-label="' + pauseTitle + '"></button>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls)
|
|
|
- .click(function(e) {
|
|
|
- e.preventDefault();
|
|
|
-
|
|
|
- if (media.paused) {
|
|
|
- media.play();
|
|
|
- } else {
|
|
|
- media.pause();
|
|
|
- }
|
|
|
-
|
|
|
- return false;
|
|
|
- }),
|
|
|
- play_btn = play.find('button');
|
|
|
+var _media = _dereq_(28);
|
|
|
|
|
|
+var _dom = _dereq_(26);
|
|
|
|
|
|
- function togglePlayPause(which) {
|
|
|
- if ('play' === which) {
|
|
|
- play.removeClass('mejs-play').addClass('mejs-pause');
|
|
|
- play_btn.attr({
|
|
|
- 'title': pauseTitle,
|
|
|
- 'aria-label': pauseTitle
|
|
|
- });
|
|
|
- } else {
|
|
|
- play.removeClass('mejs-pause').addClass('mejs-play');
|
|
|
- play_btn.attr({
|
|
|
- 'title': playTitle,
|
|
|
- 'aria-label': playTitle
|
|
|
- });
|
|
|
- }
|
|
|
- };
|
|
|
- togglePlayPause('pse');
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
+var NativeHls = {
|
|
|
|
|
|
- media.addEventListener('play',function() {
|
|
|
- togglePlayPause('play');
|
|
|
- }, false);
|
|
|
- media.addEventListener('playing',function() {
|
|
|
- togglePlayPause('play');
|
|
|
- }, false);
|
|
|
+ promise: null,
|
|
|
|
|
|
+ load: function load(settings) {
|
|
|
+ if (typeof Hls !== 'undefined') {
|
|
|
+ NativeHls.promise = new Promise(function (resolve) {
|
|
|
+ resolve();
|
|
|
+ }).then(function () {
|
|
|
+ NativeHls._createPlayer(settings);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ settings.options.path = typeof settings.options.path === 'string' ? settings.options.path : 'https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.7.11/hls.min.js';
|
|
|
|
|
|
- media.addEventListener('pause',function() {
|
|
|
- togglePlayPause('pse');
|
|
|
- }, false);
|
|
|
- media.addEventListener('paused',function() {
|
|
|
- togglePlayPause('pse');
|
|
|
- }, false);
|
|
|
+ NativeHls.promise = NativeHls.promise || (0, _dom.loadScript)(settings.options.path);
|
|
|
+ NativeHls.promise.then(function () {
|
|
|
+ NativeHls._createPlayer(settings);
|
|
|
+ });
|
|
|
}
|
|
|
- });
|
|
|
-
|
|
|
-})(mejs.$);
|
|
|
|
|
|
-(function($) {
|
|
|
+ return NativeHls.promise;
|
|
|
+ },
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- stopText: 'Stop'
|
|
|
- });
|
|
|
+ _createPlayer: function _createPlayer(settings) {
|
|
|
+ var player = new Hls(settings.options);
|
|
|
+ _window2.default['__ready__' + settings.id](player);
|
|
|
+ return player;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- // STOP BUTTON
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildstop: function(player, controls, layers, media) {
|
|
|
- var t = this;
|
|
|
+var HlsNativeRenderer = {
|
|
|
+ name: 'native_hls',
|
|
|
+ options: {
|
|
|
+ prefix: 'native_hls',
|
|
|
+ hls: {
|
|
|
+ path: 'https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.7.11/hls.min.js',
|
|
|
|
|
|
- $('<div class="mejs-button mejs-stop-button mejs-stop">' +
|
|
|
- '<button type="button" aria-controls="' + t.id + '" title="' + t.options.stopText + '" aria-label="' + t.options.stopText + '"></button>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls)
|
|
|
- .click(function() {
|
|
|
- if (!media.paused) {
|
|
|
- media.pause();
|
|
|
- }
|
|
|
- if (media.currentTime > 0) {
|
|
|
- media.setCurrentTime(0);
|
|
|
- media.pause();
|
|
|
- controls.find('.mejs-time-current').width('0px');
|
|
|
- controls.find('.mejs-time-handle').css('left', '0px');
|
|
|
- controls.find('.mejs-time-float-current').html( mejs.Utility.secondsToTimeCode(0, player.options));
|
|
|
- controls.find('.mejs-currenttime').html( mejs.Utility.secondsToTimeCode(0, player.options));
|
|
|
- layers.find('.mejs-poster').show();
|
|
|
- }
|
|
|
- });
|
|
|
+ autoStartLoad: false,
|
|
|
+ debug: false
|
|
|
}
|
|
|
- });
|
|
|
-
|
|
|
-})(mejs.$);
|
|
|
+ },
|
|
|
|
|
|
-(function($) {
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return _constants.HAS_MSE && ['application/x-mpegurl', 'application/vnd.apple.mpegurl', 'audio/mpegurl', 'audio/hls', 'video/hls'].indexOf(type.toLowerCase()) > -1;
|
|
|
+ },
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- // Enable tooltip that shows time in progress bar
|
|
|
- enableProgressTooltip: true,
|
|
|
- progressHelpText: ''
|
|
|
- });
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
|
|
|
- // progress/loaded bar
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildprogress: function(player, controls, layers, media) {
|
|
|
-
|
|
|
- var
|
|
|
- t = this,
|
|
|
- mouseIsDown = false,
|
|
|
- mouseIsOver = false,
|
|
|
- lastKeyPressTime = 0,
|
|
|
- startedPaused = false,
|
|
|
- autoRewindInitial = player.options.autoRewind,
|
|
|
- progressTitle = t.options.progressHelpText ? t.options.progressHelpText : mejs.i18n.t('mejs.time-help-text'),
|
|
|
- tooltip = player.options.enableProgressTooltip ? '<span class="mejs-time-float">' +
|
|
|
- '<span class="mejs-time-float-current">00:00</span>' +
|
|
|
- '<span class="mejs-time-float-corner"></span>' +
|
|
|
- '</span>' : "";
|
|
|
-
|
|
|
- $('<div class="mejs-time-rail">' +
|
|
|
- '<span class="mejs-time-total mejs-time-slider">' +
|
|
|
- //'<span class="mejs-offscreen">' + progressTitle + '</span>' +
|
|
|
- '<span class="mejs-time-buffering"></span>' +
|
|
|
- '<span class="mejs-time-loaded"></span>' +
|
|
|
- '<span class="mejs-time-current"></span>' +
|
|
|
- '<span class="mejs-time-handle"></span>' +
|
|
|
- tooltip +
|
|
|
- '</span>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls);
|
|
|
- controls.find('.mejs-time-buffering').hide();
|
|
|
-
|
|
|
- t.total = controls.find('.mejs-time-total');
|
|
|
- t.loaded = controls.find('.mejs-time-loaded');
|
|
|
- t.current = controls.find('.mejs-time-current');
|
|
|
- t.handle = controls.find('.mejs-time-handle');
|
|
|
- t.timefloat = controls.find('.mejs-time-float');
|
|
|
- t.timefloatcurrent = controls.find('.mejs-time-float-current');
|
|
|
- t.slider = controls.find('.mejs-time-slider');
|
|
|
-
|
|
|
- var handleMouseMove = function (e) {
|
|
|
-
|
|
|
- var offset = t.total.offset(),
|
|
|
- width = t.total.width(),
|
|
|
- percentage = 0,
|
|
|
- newTime = 0,
|
|
|
- pos = 0,
|
|
|
- x;
|
|
|
-
|
|
|
- // mouse or touch position relative to the object
|
|
|
- if (e.originalEvent && e.originalEvent.changedTouches) {
|
|
|
- x = e.originalEvent.changedTouches[0].pageX;
|
|
|
- } else if (e.changedTouches) { // for Zepto
|
|
|
- x = e.changedTouches[0].pageX;
|
|
|
- } else {
|
|
|
- x = e.pageX;
|
|
|
- }
|
|
|
+ var originalNode = mediaElement.originalNode,
|
|
|
+ id = mediaElement.id + '_' + options.prefix,
|
|
|
+ preload = originalNode.getAttribute('preload'),
|
|
|
+ autoplay = originalNode.autoplay;
|
|
|
|
|
|
- if (media.duration) {
|
|
|
- if (x < offset.left) {
|
|
|
- x = offset.left;
|
|
|
- } else if (x > width + offset.left) {
|
|
|
- x = width + offset.left;
|
|
|
- }
|
|
|
+ var hlsPlayer = null,
|
|
|
+ node = null;
|
|
|
|
|
|
- pos = x - offset.left;
|
|
|
- percentage = (pos / width);
|
|
|
- newTime = (percentage <= 0.02) ? 0 : percentage * media.duration;
|
|
|
+ node = originalNode.cloneNode(true);
|
|
|
+ options = Object.assign(options, mediaElement.options);
|
|
|
+ options.hls.autoStartLoad = preload && preload !== 'none' || autoplay;
|
|
|
|
|
|
- // seek to where the mouse is
|
|
|
- if (mouseIsDown && newTime !== media.currentTime) {
|
|
|
- media.setCurrentTime(newTime);
|
|
|
- }
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ events = _mejs2.default.html5media.events.concat(['click', 'mouseover', 'mouseout']),
|
|
|
+ attachNativeEvents = function attachNativeEvents(e) {
|
|
|
+ if (e.type !== 'error') {
|
|
|
+ var _event = (0, _general.createEvent)(e.type, mediaElement);
|
|
|
+ mediaElement.dispatchEvent(_event);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- // position floating time box
|
|
|
- if (!mejs.MediaFeatures.hasTouch) {
|
|
|
- t.timefloat.css('left', pos);
|
|
|
- t.timefloatcurrent.html( mejs.Utility.secondsToTimeCode(newTime, player.options) );
|
|
|
- t.timefloat.show();
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- // Accessibility for slider
|
|
|
- updateSlider = function (e) {
|
|
|
-
|
|
|
- var seconds = media.currentTime,
|
|
|
- timeSliderText = mejs.i18n.t('mejs.time-slider'),
|
|
|
- time = mejs.Utility.secondsToTimeCode(seconds, player.options),
|
|
|
- duration = media.duration;
|
|
|
-
|
|
|
- t.slider.attr({
|
|
|
- 'aria-label': timeSliderText,
|
|
|
- 'aria-valuemin': 0,
|
|
|
- 'aria-valuemax': duration,
|
|
|
- 'aria-valuenow': seconds,
|
|
|
- 'aria-valuetext': time,
|
|
|
- 'role': 'slider',
|
|
|
- 'tabindex': 0
|
|
|
- });
|
|
|
+ node['get' + capName] = function () {
|
|
|
+ return hlsPlayer !== null ? node[propName] : null;
|
|
|
+ };
|
|
|
|
|
|
- },
|
|
|
- restartPlayer = function () {
|
|
|
- var now = new Date();
|
|
|
- if (now - lastKeyPressTime >= 1000) {
|
|
|
- media.play();
|
|
|
+ node['set' + capName] = function (value) {
|
|
|
+ if (_mejs2.default.html5media.readOnlyProperties.indexOf(propName) === -1) {
|
|
|
+ if (propName === 'src') {
|
|
|
+ node[propName] = (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && value.src ? value.src : value;
|
|
|
+ if (hlsPlayer !== null) {
|
|
|
+ hlsPlayer.destroy();
|
|
|
+ for (var i = 0, total = events.length; i < total; i++) {
|
|
|
+ node.removeEventListener(events[i], attachNativeEvents);
|
|
|
+ }
|
|
|
+ hlsPlayer = NativeHls._createPlayer({
|
|
|
+ options: options.hls,
|
|
|
+ id: id
|
|
|
+ });
|
|
|
+ hlsPlayer.loadSource(value);
|
|
|
+ hlsPlayer.attachMedia(node);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ node[propName] = value;
|
|
|
}
|
|
|
- };
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- t.slider.bind('focus', function (e) {
|
|
|
- player.options.autoRewind = false;
|
|
|
- });
|
|
|
+ for (var i = 0, total = props.length; i < total; i++) {
|
|
|
+ assignGettersSetters(props[i]);
|
|
|
+ }
|
|
|
|
|
|
- t.slider.bind('blur', function (e) {
|
|
|
- player.options.autoRewind = autoRewindInitial;
|
|
|
- });
|
|
|
+ _window2.default['__ready__' + id] = function (_hlsPlayer) {
|
|
|
+ mediaElement.hlsPlayer = hlsPlayer = _hlsPlayer;
|
|
|
+ var hlsEvents = Hls.Events,
|
|
|
+ assignEvents = function assignEvents(eventName) {
|
|
|
+ if (eventName === 'loadedmetadata') {
|
|
|
+ var url = mediaElement.originalNode.src;
|
|
|
+ hlsPlayer.detachMedia();
|
|
|
+ hlsPlayer.loadSource(url);
|
|
|
+ hlsPlayer.attachMedia(node);
|
|
|
+ }
|
|
|
|
|
|
- t.slider.bind('keydown', function (e) {
|
|
|
+ node.addEventListener(eventName, attachNativeEvents);
|
|
|
+ };
|
|
|
|
|
|
- if ((new Date() - lastKeyPressTime) >= 1000) {
|
|
|
- startedPaused = media.paused;
|
|
|
+ for (var _i = 0, _total = events.length; _i < _total; _i++) {
|
|
|
+ assignEvents(events[_i]);
|
|
|
+ }
|
|
|
+
|
|
|
+ var recoverDecodingErrorDate = void 0,
|
|
|
+ recoverSwapAudioCodecDate = void 0;
|
|
|
+ var assignHlsEvents = function assignHlsEvents(name, data) {
|
|
|
+ if (name === 'hlsError') {
|
|
|
+ console.warn(name, data);
|
|
|
+
|
|
|
+ if (data.fatal) {
|
|
|
+ switch (data.type) {
|
|
|
+ case 'mediaError':
|
|
|
+ var now = new Date().getTime();
|
|
|
+ if (!recoverDecodingErrorDate || now - recoverDecodingErrorDate > 3000) {
|
|
|
+ recoverDecodingErrorDate = new Date().getTime();
|
|
|
+ hlsPlayer.recoverMediaError();
|
|
|
+ } else if (!recoverSwapAudioCodecDate || now - recoverSwapAudioCodecDate > 3000) {
|
|
|
+ recoverSwapAudioCodecDate = new Date().getTime();
|
|
|
+ console.warn('Attempting to swap Audio Codec and recover from media error');
|
|
|
+ hlsPlayer.swapAudioCodec();
|
|
|
+ hlsPlayer.recoverMediaError();
|
|
|
+ } else {
|
|
|
+ var _message = 'Cannot recover, last media error recovery failed';
|
|
|
+ mediaElement.generateError(_message, node.src);
|
|
|
+ console.error(_message);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 'networkError':
|
|
|
+ var message = 'Network error';
|
|
|
+ mediaElement.generateError(message, node.src);
|
|
|
+ console.error(message);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ hlsPlayer.destroy();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ var _event2 = (0, _general.createEvent)(name, mediaElement);
|
|
|
+ _event2.data = data;
|
|
|
+ mediaElement.dispatchEvent(_event2);
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- var keyCode = e.keyCode,
|
|
|
- duration = media.duration,
|
|
|
- seekTime = media.currentTime,
|
|
|
- seekForward = player.options.defaultSeekForwardInterval(media),
|
|
|
- seekBackward = player.options.defaultSeekBackwardInterval(media);
|
|
|
+ var _loop = function _loop(eventType) {
|
|
|
+ if (hlsEvents.hasOwnProperty(eventType)) {
|
|
|
+ hlsPlayer.on(hlsEvents[eventType], function () {
|
|
|
+ for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
|
|
+ args[_key] = arguments[_key];
|
|
|
+ }
|
|
|
|
|
|
- switch (keyCode) {
|
|
|
- case 37: // left
|
|
|
- case 40: // Down
|
|
|
- seekTime -= seekBackward;
|
|
|
- break;
|
|
|
- case 39: // Right
|
|
|
- case 38: // Up
|
|
|
- seekTime += seekForward;
|
|
|
- break;
|
|
|
- case 36: // Home
|
|
|
- seekTime = 0;
|
|
|
- break;
|
|
|
- case 35: // end
|
|
|
- seekTime = duration;
|
|
|
- break;
|
|
|
- case 32: // space
|
|
|
- case 13: // enter
|
|
|
- media.paused ? media.play() : media.pause();
|
|
|
- return;
|
|
|
- default:
|
|
|
- return;
|
|
|
+ return assignHlsEvents(hlsEvents[eventType], args);
|
|
|
+ });
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- seekTime = seekTime < 0 ? 0 : (seekTime >= duration ? duration : Math.floor(seekTime));
|
|
|
- lastKeyPressTime = new Date();
|
|
|
- if (!startedPaused) {
|
|
|
- media.pause();
|
|
|
- }
|
|
|
+ for (var eventType in hlsEvents) {
|
|
|
+ _loop(eventType);
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- if (seekTime < media.duration && !startedPaused) {
|
|
|
- setTimeout(restartPlayer, 1100);
|
|
|
+ if (mediaFiles && mediaFiles.length > 0) {
|
|
|
+ for (var _i2 = 0, _total2 = mediaFiles.length; _i2 < _total2; _i2++) {
|
|
|
+ if (_renderer.renderer.renderers[options.prefix].canPlayType(mediaFiles[_i2].type)) {
|
|
|
+ node.setAttribute('src', mediaFiles[_i2].src);
|
|
|
+ break;
|
|
|
}
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- media.setCurrentTime(seekTime);
|
|
|
+ if (preload !== 'auto' && !autoplay) {
|
|
|
+ node.addEventListener('play', function () {
|
|
|
+ if (hlsPlayer !== null) {
|
|
|
+ hlsPlayer.startLoad();
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
- e.preventDefault();
|
|
|
- e.stopPropagation();
|
|
|
- return false;
|
|
|
+ node.addEventListener('pause', function () {
|
|
|
+ if (hlsPlayer !== null) {
|
|
|
+ hlsPlayer.stopLoad();
|
|
|
+ }
|
|
|
});
|
|
|
+ }
|
|
|
|
|
|
+ node.setAttribute('id', id);
|
|
|
|
|
|
- // handle clicks
|
|
|
- //controls.find('.mejs-time-rail').delegate('span', 'click', handleMouseMove);
|
|
|
- t.total
|
|
|
- .bind('mousedown touchstart', function (e) {
|
|
|
- // only handle left clicks or touch
|
|
|
- if (e.which === 1 || e.which === 0) {
|
|
|
- mouseIsDown = true;
|
|
|
- handleMouseMove(e);
|
|
|
- t.globalBind('mousemove.dur touchmove.dur', function(e) {
|
|
|
- handleMouseMove(e);
|
|
|
- });
|
|
|
- t.globalBind('mouseup.dur touchend.dur', function (e) {
|
|
|
- mouseIsDown = false;
|
|
|
- if (typeof t.timefloat !== 'undefined') {
|
|
|
- t.timefloat.hide();
|
|
|
- }
|
|
|
- t.globalUnbind('.dur');
|
|
|
- });
|
|
|
- }
|
|
|
- })
|
|
|
- .bind('mouseenter', function(e) {
|
|
|
- mouseIsOver = true;
|
|
|
- t.globalBind('mousemove.dur', function(e) {
|
|
|
- handleMouseMove(e);
|
|
|
- });
|
|
|
- if (typeof t.timefloat !== 'undefined' && !mejs.MediaFeatures.hasTouch) {
|
|
|
- t.timefloat.show();
|
|
|
- }
|
|
|
- })
|
|
|
- .bind('mouseleave',function(e) {
|
|
|
- mouseIsOver = false;
|
|
|
- if (!mouseIsDown) {
|
|
|
- t.globalUnbind('.dur');
|
|
|
- if (typeof t.timefloat !== 'undefined') {
|
|
|
- t.timefloat.hide();
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ originalNode.parentNode.insertBefore(node, originalNode);
|
|
|
+ originalNode.autoplay = false;
|
|
|
+ originalNode.style.display = 'none';
|
|
|
|
|
|
- // loading
|
|
|
- media.addEventListener('progress', function (e) {
|
|
|
- player.setProgressRail(e);
|
|
|
- player.setCurrentRail(e);
|
|
|
- }, false);
|
|
|
+ node.setSize = function (width, height) {
|
|
|
+ node.style.width = width + 'px';
|
|
|
+ node.style.height = height + 'px';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- // current time
|
|
|
- media.addEventListener('timeupdate', function(e) {
|
|
|
- player.setProgressRail(e);
|
|
|
- player.setCurrentRail(e);
|
|
|
- updateSlider(e);
|
|
|
- }, false);
|
|
|
+ node.hide = function () {
|
|
|
+ node.pause();
|
|
|
+ node.style.display = 'none';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- t.container.on('controlsresize', function(e) {
|
|
|
- player.setProgressRail(e);
|
|
|
- player.setCurrentRail(e);
|
|
|
- });
|
|
|
- },
|
|
|
- setProgressRail: function(e) {
|
|
|
-
|
|
|
- var
|
|
|
- t = this,
|
|
|
- target = (e !== undefined) ? e.target : t.media,
|
|
|
- percent = null;
|
|
|
-
|
|
|
- // newest HTML5 spec has buffered array (FF4, Webkit)
|
|
|
- if (target && target.buffered && target.buffered.length > 0 && target.buffered.end && target.duration) {
|
|
|
- // account for a real array with multiple values - always read the end of the last buffer
|
|
|
- percent = target.buffered.end(target.buffered.length - 1) / target.duration;
|
|
|
- }
|
|
|
- // Some browsers (e.g., FF3.6 and Safari 5) cannot calculate target.bufferered.end()
|
|
|
- // to be anything other than 0. If the byte count is available we use this instead.
|
|
|
- // Browsers that support the else if do not seem to have the bufferedBytes value and
|
|
|
- // should skip to there. Tested in Safari 5, Webkit head, FF3.6, Chrome 6, IE 7/8.
|
|
|
- else if (target && target.bytesTotal !== undefined && target.bytesTotal > 0 && target.bufferedBytes !== undefined) {
|
|
|
- percent = target.bufferedBytes / target.bytesTotal;
|
|
|
- }
|
|
|
- // Firefox 3 with an Ogg file seems to go this way
|
|
|
- else if (e && e.lengthComputable && e.total !== 0) {
|
|
|
- percent = e.loaded / e.total;
|
|
|
- }
|
|
|
+ node.show = function () {
|
|
|
+ node.style.display = '';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- // finally update the progress bar
|
|
|
- if (percent !== null) {
|
|
|
- percent = Math.min(1, Math.max(0, percent));
|
|
|
- // update loaded bar
|
|
|
- if (t.loaded && t.total) {
|
|
|
- t.loaded.width(t.total.width() * percent);
|
|
|
- }
|
|
|
+ node.destroy = function () {
|
|
|
+ if (hlsPlayer !== null) {
|
|
|
+ hlsPlayer.stopLoad();
|
|
|
+ hlsPlayer.destroy();
|
|
|
}
|
|
|
- },
|
|
|
- setCurrentRail: function() {
|
|
|
+ };
|
|
|
|
|
|
- var t = this;
|
|
|
-
|
|
|
- if (t.media.currentTime !== undefined && t.media.duration) {
|
|
|
+ var event = (0, _general.createEvent)('rendererready', node);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
|
|
|
- // update bar and handle
|
|
|
- if (t.total && t.handle) {
|
|
|
- var
|
|
|
- newWidth = Math.round(t.total.width() * t.media.currentTime / t.media.duration),
|
|
|
- handlePos = newWidth - Math.round(t.handle.outerWidth(true) / 2);
|
|
|
+ mediaElement.promises.push(NativeHls.load({
|
|
|
+ options: options.hls,
|
|
|
+ id: id
|
|
|
+ }));
|
|
|
|
|
|
- t.current.width(newWidth);
|
|
|
- t.handle.css('left', handlePos);
|
|
|
- }
|
|
|
- }
|
|
|
+ return node;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- }
|
|
|
- });
|
|
|
-})(mejs.$);
|
|
|
-
|
|
|
-(function($) {
|
|
|
-
|
|
|
- // options
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- duration: -1,
|
|
|
- timeAndDurationSeparator: '<span> | </span>'
|
|
|
- });
|
|
|
+_media.typeChecks.push(function (url) {
|
|
|
+ return ~url.toLowerCase().indexOf('.m3u8') ? 'application/x-mpegURL' : null;
|
|
|
+});
|
|
|
|
|
|
+_renderer.renderer.add(HlsNativeRenderer);
|
|
|
|
|
|
- // current and duration 00:00 / 00:00
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildcurrent: function(player, controls, layers, media) {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- $('<div class="mejs-time" role="timer" aria-live="off">' +
|
|
|
- '<span class="mejs-currenttime">' +
|
|
|
- mejs.Utility.secondsToTimeCode(0, player.options) +
|
|
|
- '</span>'+
|
|
|
- '</div>')
|
|
|
- .appendTo(controls);
|
|
|
-
|
|
|
- t.currenttime = t.controls.find('.mejs-currenttime');
|
|
|
-
|
|
|
- media.addEventListener('timeupdate',function() {
|
|
|
- if (t.controlsAreVisible) {
|
|
|
- player.updateCurrent();
|
|
|
- }
|
|
|
-
|
|
|
- }, false);
|
|
|
- },
|
|
|
+},{"25":25,"26":26,"27":27,"28":28,"3":3,"7":7,"8":8}],23:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- buildduration: function(player, controls, layers, media) {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- if (controls.children().last().find('.mejs-currenttime').length > 0) {
|
|
|
- $(t.options.timeAndDurationSeparator +
|
|
|
- '<span class="mejs-duration">' +
|
|
|
- mejs.Utility.secondsToTimeCode(t.options.duration, t.options) +
|
|
|
- '</span>')
|
|
|
- .appendTo(controls.find('.mejs-time'));
|
|
|
- } else {
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- // add class to current time
|
|
|
- controls.find('.mejs-currenttime').parent().addClass('mejs-currenttime-container');
|
|
|
-
|
|
|
- $('<div class="mejs-time mejs-duration-container">'+
|
|
|
- '<span class="mejs-duration">' +
|
|
|
- mejs.Utility.secondsToTimeCode(t.options.duration, t.options) +
|
|
|
- '</span>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls);
|
|
|
- }
|
|
|
-
|
|
|
- t.durationD = t.controls.find('.mejs-duration');
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- media.addEventListener('timeupdate',function() {
|
|
|
- if (t.controlsAreVisible) {
|
|
|
- player.updateDuration();
|
|
|
- }
|
|
|
- }, false);
|
|
|
- },
|
|
|
-
|
|
|
- updateCurrent: function() {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- var currentTime = t.media.currentTime;
|
|
|
-
|
|
|
- if (isNaN(currentTime)) {
|
|
|
- currentTime = 0;
|
|
|
- }
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- if (t.currenttime) {
|
|
|
- t.currenttime.html(mejs.Utility.secondsToTimeCode(currentTime, t.options));
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- updateDuration: function() {
|
|
|
- var t = this;
|
|
|
-
|
|
|
- var duration = t.media.duration;
|
|
|
- if (t.options.duration > 0) {
|
|
|
- duration = t.options.duration;
|
|
|
- }
|
|
|
-
|
|
|
- if (isNaN(duration)) {
|
|
|
- duration = 0;
|
|
|
- }
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- //Toggle the long video class if the video is longer than an hour.
|
|
|
- t.container.toggleClass("mejs-long-video", duration > 3600);
|
|
|
-
|
|
|
- if (t.durationD && duration > 0) {
|
|
|
- t.durationD.html(mejs.Utility.secondsToTimeCode(duration, t.options));
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
-(function ($) {
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- muteText: mejs.i18n.t('mejs.mute-toggle'),
|
|
|
- allyVolumeControlText: mejs.i18n.t('mejs.volume-help-text'),
|
|
|
- hideVolumeOnTouchDevices: true,
|
|
|
+var _constants = _dereq_(25);
|
|
|
|
|
|
- audioVolume: 'horizontal',
|
|
|
- videoVolume: 'vertical'
|
|
|
- });
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildvolume: function (player, controls, layers, media) {
|
|
|
+var HtmlMediaElement = {
|
|
|
+ name: 'html5',
|
|
|
+ options: {
|
|
|
+ prefix: 'html5'
|
|
|
+ },
|
|
|
|
|
|
- // Android and iOS don't support volume controls
|
|
|
- if ((mejs.MediaFeatures.isAndroid || mejs.MediaFeatures.isiOS) && this.options.hideVolumeOnTouchDevices)
|
|
|
- return;
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
|
|
|
- var t = this,
|
|
|
- mode = (t.isVideo) ? t.options.videoVolume : t.options.audioVolume,
|
|
|
- mute = (mode == 'horizontal') ?
|
|
|
-
|
|
|
- // horizontal version
|
|
|
- $('<div class="mejs-button mejs-volume-button mejs-mute">' +
|
|
|
- '<button type="button" aria-controls="' + t.id +
|
|
|
- '" title="' + t.options.muteText +
|
|
|
- '" aria-label="' + t.options.muteText +
|
|
|
- '"></button>' +
|
|
|
- '</div>' +
|
|
|
- '<a href="javascript:void(0);" class="mejs-horizontal-volume-slider">' + // outer background
|
|
|
- '<span class="mejs-offscreen">' + t.options.allyVolumeControlText + '</span>' +
|
|
|
- '<div class="mejs-horizontal-volume-total"></div>' + // line background
|
|
|
- '<div class="mejs-horizontal-volume-current"></div>' + // current volume
|
|
|
- '<div class="mejs-horizontal-volume-handle"></div>' + // handle
|
|
|
- '</a>'
|
|
|
- )
|
|
|
- .appendTo(controls) :
|
|
|
-
|
|
|
- // vertical version
|
|
|
- $('<div class="mejs-button mejs-volume-button mejs-mute">' +
|
|
|
- '<button type="button" aria-controls="' + t.id +
|
|
|
- '" title="' + t.options.muteText +
|
|
|
- '" aria-label="' + t.options.muteText +
|
|
|
- '"></button>' +
|
|
|
- '<a href="javascript:void(0);" class="mejs-volume-slider">' + // outer background
|
|
|
- '<span class="mejs-offscreen">' + t.options.allyVolumeControlText + '</span>' +
|
|
|
- '<div class="mejs-volume-total"></div>' + // line background
|
|
|
- '<div class="mejs-volume-current"></div>' + // current volume
|
|
|
- '<div class="mejs-volume-handle"></div>' + // handle
|
|
|
- '</a>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls),
|
|
|
- volumeSlider = t.container.find('.mejs-volume-slider, .mejs-horizontal-volume-slider'),
|
|
|
- volumeTotal = t.container.find('.mejs-volume-total, .mejs-horizontal-volume-total'),
|
|
|
- volumeCurrent = t.container.find('.mejs-volume-current, .mejs-horizontal-volume-current'),
|
|
|
- volumeHandle = t.container.find('.mejs-volume-handle, .mejs-horizontal-volume-handle'),
|
|
|
-
|
|
|
- positionVolumeHandle = function (volume, secondTry) {
|
|
|
-
|
|
|
- if (!volumeSlider.is(':visible') && typeof secondTry == 'undefined') {
|
|
|
- volumeSlider.show();
|
|
|
- positionVolumeHandle(volume, true);
|
|
|
- volumeSlider.hide();
|
|
|
- return;
|
|
|
- }
|
|
|
+ var mediaElement = _document2.default.createElement('video');
|
|
|
|
|
|
- // correct to 0-1
|
|
|
- volume = Math.max(0, volume);
|
|
|
- volume = Math.min(volume, 1);
|
|
|
+ if (_constants.IS_ANDROID && /\/mp(3|4)$/i.test(type) || ~['application/x-mpegurl', 'vnd.apple.mpegurl', 'audio/mpegurl', 'audio/hls', 'video/hls'].indexOf(type.toLowerCase()) && _constants.SUPPORTS_NATIVE_HLS) {
|
|
|
+ return 'yes';
|
|
|
+ } else if (mediaElement.canPlayType) {
|
|
|
+ return mediaElement.canPlayType(type.toLowerCase()).replace(/no/, '');
|
|
|
+ } else {
|
|
|
+ return '';
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- // adjust mute button style
|
|
|
- if (volume === 0) {
|
|
|
- mute.removeClass('mejs-mute').addClass('mejs-unmute');
|
|
|
- mute.children('button').attr('title', mejs.i18n.t('mejs.unmute')).attr('aria-label', mejs.i18n.t('mejs.unmute'));
|
|
|
- } else {
|
|
|
- mute.removeClass('mejs-unmute').addClass('mejs-mute');
|
|
|
- mute.children('button').attr('title', mejs.i18n.t('mejs.mute')).attr('aria-label', mejs.i18n.t('mejs.mute'));
|
|
|
- }
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
|
|
|
- // top/left of full size volume slider background
|
|
|
- var totalPosition = volumeTotal.position();
|
|
|
- // position slider
|
|
|
- if (mode == 'vertical') {
|
|
|
- var
|
|
|
- // height of the full size volume slider background
|
|
|
- totalHeight = volumeTotal.height(),
|
|
|
+ var id = mediaElement.id + '_' + options.prefix;
|
|
|
|
|
|
- // the new top position based on the current volume
|
|
|
- // 70% volume on 100px height == top:30px
|
|
|
- newTop = totalHeight - (totalHeight * volume);
|
|
|
+ var node = null;
|
|
|
|
|
|
- // handle
|
|
|
- volumeHandle.css('top', Math.round(totalPosition.top + newTop - (volumeHandle.height() / 2)));
|
|
|
+ if (mediaElement.originalNode === undefined || mediaElement.originalNode === null) {
|
|
|
+ node = _document2.default.createElement('audio');
|
|
|
+ mediaElement.appendChild(node);
|
|
|
+ } else {
|
|
|
+ node = mediaElement.originalNode;
|
|
|
+ }
|
|
|
|
|
|
- // show the current visibility
|
|
|
- volumeCurrent.height(totalHeight - newTop);
|
|
|
- volumeCurrent.css('top', totalPosition.top + newTop);
|
|
|
- } else {
|
|
|
- var
|
|
|
- // height of the full size volume slider background
|
|
|
- totalWidth = volumeTotal.width(),
|
|
|
+ node.setAttribute('id', id);
|
|
|
|
|
|
- // the new left position based on the current volume
|
|
|
- newLeft = totalWidth * volume;
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- // handle
|
|
|
- volumeHandle.css('left', Math.round(totalPosition.left + newLeft - (volumeHandle.width() / 2)));
|
|
|
+ node['get' + capName] = function () {
|
|
|
+ return node[propName];
|
|
|
+ };
|
|
|
|
|
|
- // rezize the current part of the volume bar
|
|
|
- volumeCurrent.width(Math.round(newLeft));
|
|
|
- }
|
|
|
- },
|
|
|
- handleVolumeMove = function (e) {
|
|
|
+ node['set' + capName] = function (value) {
|
|
|
+ if (_mejs2.default.html5media.readOnlyProperties.indexOf(propName) === -1) {
|
|
|
+ node[propName] = value;
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- var volume = null,
|
|
|
- totalOffset = volumeTotal.offset();
|
|
|
+ for (var i = 0, total = props.length; i < total; i++) {
|
|
|
+ assignGettersSetters(props[i]);
|
|
|
+ }
|
|
|
|
|
|
- // calculate the new volume based on the moust position
|
|
|
- if (mode === 'vertical') {
|
|
|
+ var events = _mejs2.default.html5media.events.concat(['click', 'mouseover', 'mouseout']),
|
|
|
+ assignEvents = function assignEvents(eventName) {
|
|
|
+ node.addEventListener(eventName, function (e) {
|
|
|
+ var event = (0, _general.createEvent)(e.type, mediaElement);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ });
|
|
|
+ };
|
|
|
|
|
|
- var
|
|
|
- railHeight = volumeTotal.height(),
|
|
|
- newY = e.pageY - totalOffset.top;
|
|
|
+ for (var _i = 0, _total = events.length; _i < _total; _i++) {
|
|
|
+ assignEvents(events[_i]);
|
|
|
+ }
|
|
|
|
|
|
- volume = (railHeight - newY) / railHeight;
|
|
|
+ node.setSize = function (width, height) {
|
|
|
+ node.style.width = width + 'px';
|
|
|
+ node.style.height = height + 'px';
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- // the controls just hide themselves (usually when mouse moves too far up)
|
|
|
- if (totalOffset.top === 0 || totalOffset.left === 0) {
|
|
|
- return;
|
|
|
- }
|
|
|
+ node.hide = function () {
|
|
|
+ node.style.display = 'none';
|
|
|
|
|
|
- } else {
|
|
|
- var
|
|
|
- railWidth = volumeTotal.width(),
|
|
|
- newX = e.pageX - totalOffset.left;
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- volume = newX / railWidth;
|
|
|
- }
|
|
|
+ node.show = function () {
|
|
|
+ node.style.display = '';
|
|
|
|
|
|
- // ensure the volume isn't outside 0-1
|
|
|
- volume = Math.max(0, volume);
|
|
|
- volume = Math.min(volume, 1);
|
|
|
+ return node;
|
|
|
+ };
|
|
|
|
|
|
- // position the slider and handle
|
|
|
- positionVolumeHandle(volume);
|
|
|
+ if (mediaFiles && mediaFiles.length > 0) {
|
|
|
+ for (var _i2 = 0, _total2 = mediaFiles.length; _i2 < _total2; _i2++) {
|
|
|
+ if (_renderer.renderer.renderers[options.prefix].canPlayType(mediaFiles[_i2].type)) {
|
|
|
+ node.setAttribute('src', mediaFiles[_i2].src);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- // set the media object (this will trigger the volumechanged event)
|
|
|
- if (volume === 0) {
|
|
|
- media.setMuted(true);
|
|
|
- } else {
|
|
|
- media.setMuted(false);
|
|
|
- }
|
|
|
- media.setVolume(volume);
|
|
|
- },
|
|
|
- mouseIsDown = false,
|
|
|
- mouseIsOver = false;
|
|
|
+ var event = (0, _general.createEvent)('rendererready', node);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
|
|
|
- // SLIDER
|
|
|
+ return node;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- mute
|
|
|
- .hover(function () {
|
|
|
- volumeSlider.show();
|
|
|
- mouseIsOver = true;
|
|
|
- }, function () {
|
|
|
- mouseIsOver = false;
|
|
|
+_window2.default.HtmlMediaElement = _mejs2.default.HtmlMediaElement = HtmlMediaElement;
|
|
|
|
|
|
- if (!mouseIsDown && mode == 'vertical') {
|
|
|
- volumeSlider.hide();
|
|
|
- }
|
|
|
- });
|
|
|
+_renderer.renderer.add(HtmlMediaElement);
|
|
|
|
|
|
- var updateVolumeSlider = function (e) {
|
|
|
+},{"2":2,"25":25,"27":27,"3":3,"7":7,"8":8}],24:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- var volume = Math.floor(media.volume * 100);
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- volumeSlider.attr({
|
|
|
- 'aria-label': mejs.i18n.t('mejs.volume-slider'),
|
|
|
- 'aria-valuemin': 0,
|
|
|
- 'aria-valuemax': 100,
|
|
|
- 'aria-valuenow': volume,
|
|
|
- 'aria-valuetext': volume + '%',
|
|
|
- 'role': 'slider',
|
|
|
- 'tabindex': 0
|
|
|
- });
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- };
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- volumeSlider
|
|
|
- .bind('mouseover', function () {
|
|
|
- mouseIsOver = true;
|
|
|
- })
|
|
|
- .bind('mousedown', function (e) {
|
|
|
- handleVolumeMove(e);
|
|
|
- t.globalBind('mousemove.vol', function (e) {
|
|
|
- handleVolumeMove(e);
|
|
|
- });
|
|
|
- t.globalBind('mouseup.vol', function () {
|
|
|
- mouseIsDown = false;
|
|
|
- t.globalUnbind('.vol');
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- if (!mouseIsOver && mode == 'vertical') {
|
|
|
- volumeSlider.hide();
|
|
|
- }
|
|
|
- });
|
|
|
- mouseIsDown = true;
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- return false;
|
|
|
- })
|
|
|
- .bind('keydown', function (e) {
|
|
|
- var keyCode = e.keyCode;
|
|
|
- var volume = media.volume;
|
|
|
- switch (keyCode) {
|
|
|
- case 38: // Up
|
|
|
- volume = Math.min(volume + 0.1, 1);
|
|
|
- break;
|
|
|
- case 40: // Down
|
|
|
- volume = Math.max(0, volume - 0.1);
|
|
|
- break;
|
|
|
- default:
|
|
|
- return true;
|
|
|
- }
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- mouseIsDown = false;
|
|
|
- positionVolumeHandle(volume);
|
|
|
- media.setVolume(volume);
|
|
|
- return false;
|
|
|
- });
|
|
|
+var _renderer = _dereq_(8);
|
|
|
|
|
|
- // MUTE button
|
|
|
- mute.find('button').click(function () {
|
|
|
- media.setMuted(!media.muted);
|
|
|
- });
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- //Keyboard input
|
|
|
- mute.find('button').bind('focus', function () {
|
|
|
- volumeSlider.show();
|
|
|
- });
|
|
|
+var _media = _dereq_(28);
|
|
|
|
|
|
- // listen for volume change events from other sources
|
|
|
- media.addEventListener('volumechange', function (e) {
|
|
|
- if (!mouseIsDown) {
|
|
|
- if (media.muted) {
|
|
|
- positionVolumeHandle(0);
|
|
|
- mute.removeClass('mejs-mute').addClass('mejs-unmute');
|
|
|
- } else {
|
|
|
- positionVolumeHandle(media.volume);
|
|
|
- mute.removeClass('mejs-unmute').addClass('mejs-mute');
|
|
|
- }
|
|
|
- }
|
|
|
- updateVolumeSlider(e);
|
|
|
- }, false);
|
|
|
+var _dom = _dereq_(26);
|
|
|
|
|
|
- // mutes the media and sets the volume icon muted if the initial volume is set to 0
|
|
|
- if (player.options.startVolume === 0) {
|
|
|
- media.setMuted(true);
|
|
|
- }
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- // shim gets the startvolume as a parameter, but we have to set it on the native <video> and <audio> elements
|
|
|
- if (media.pluginType === 'native') {
|
|
|
- media.setVolume(player.options.startVolume);
|
|
|
- }
|
|
|
+var YouTubeApi = {
|
|
|
+ isIframeStarted: false,
|
|
|
|
|
|
- t.container.on('controlsresize', function () {
|
|
|
- if (media.muted) {
|
|
|
- positionVolumeHandle(0);
|
|
|
- mute.removeClass('mejs-mute').addClass('mejs-unmute');
|
|
|
- } else {
|
|
|
- positionVolumeHandle(media.volume);
|
|
|
- mute.removeClass('mejs-unmute').addClass('mejs-mute');
|
|
|
- }
|
|
|
- });
|
|
|
+ isIframeLoaded: false,
|
|
|
+
|
|
|
+ iframeQueue: [],
|
|
|
+
|
|
|
+ enqueueIframe: function enqueueIframe(settings) {
|
|
|
+ YouTubeApi.isLoaded = typeof YT !== 'undefined' && YT.loaded;
|
|
|
+
|
|
|
+ if (YouTubeApi.isLoaded) {
|
|
|
+ YouTubeApi.createIframe(settings);
|
|
|
+ } else {
|
|
|
+ YouTubeApi.loadIframeApi();
|
|
|
+ YouTubeApi.iframeQueue.push(settings);
|
|
|
}
|
|
|
- });
|
|
|
+ },
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+ loadIframeApi: function loadIframeApi() {
|
|
|
+ if (!YouTubeApi.isIframeStarted) {
|
|
|
+ (0, _dom.loadScript)('https://www.youtube.com/player_api');
|
|
|
+ YouTubeApi.isIframeStarted = true;
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
-(function($) {
|
|
|
+ iFrameReady: function iFrameReady() {
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- usePluginFullScreen: true,
|
|
|
- newWindowCallback: function() { return '';},
|
|
|
- fullscreenText: ''
|
|
|
- });
|
|
|
+ YouTubeApi.isLoaded = true;
|
|
|
+ YouTubeApi.isIframeLoaded = true;
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
+ while (YouTubeApi.iframeQueue.length > 0) {
|
|
|
+ var settings = YouTubeApi.iframeQueue.pop();
|
|
|
+ YouTubeApi.createIframe(settings);
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- isFullScreen: false,
|
|
|
+ createIframe: function createIframe(settings) {
|
|
|
+ return new YT.Player(settings.containerId, settings);
|
|
|
+ },
|
|
|
|
|
|
- isNativeFullScreen: false,
|
|
|
+ getYouTubeId: function getYouTubeId(url) {
|
|
|
|
|
|
- isInIframe: false,
|
|
|
-
|
|
|
- // Possible modes
|
|
|
- // (1) 'native-native' HTML5 video + browser fullscreen (IE10+, etc.)
|
|
|
- // (2) 'plugin-native' plugin video + browser fullscreen (fails in some versions of Firefox)
|
|
|
- // (3) 'fullwindow' Full window (retains all UI)
|
|
|
- // usePluginFullScreen = true
|
|
|
- // (4) 'plugin-click' Flash 1 - click through with pointer events
|
|
|
- // (5) 'plugin-hover' Flash 2 - hover popup in flash (IE6-8)
|
|
|
- fullscreenMode: '',
|
|
|
-
|
|
|
- buildfullscreen: function(player, controls, layers, media) {
|
|
|
-
|
|
|
- if (!player.isVideo)
|
|
|
- return;
|
|
|
-
|
|
|
- player.isInIframe = (window.location != window.parent.location);
|
|
|
-
|
|
|
- // detect on start
|
|
|
- media.addEventListener('loadstart', function() { player.detectFullscreenMode(); });
|
|
|
-
|
|
|
- // build button
|
|
|
- var t = this,
|
|
|
- hideTimeout = null,
|
|
|
- fullscreenTitle = t.options.fullscreenText ? t.options.fullscreenText : mejs.i18n.t('mejs.fullscreen'),
|
|
|
- fullscreenBtn =
|
|
|
- $('<div class="mejs-button mejs-fullscreen-button">' +
|
|
|
- '<button type="button" aria-controls="' + t.id + '" title="' + fullscreenTitle + '" aria-label="' + fullscreenTitle + '"></button>' +
|
|
|
- '</div>')
|
|
|
- .appendTo(controls)
|
|
|
- .on('click', function() {
|
|
|
-
|
|
|
- // toggle fullscreen
|
|
|
- var isFullScreen = (mejs.MediaFeatures.hasTrueNativeFullScreen && mejs.MediaFeatures.isFullScreen()) || player.isFullScreen;
|
|
|
-
|
|
|
- if (isFullScreen) {
|
|
|
- player.exitFullScreen();
|
|
|
- } else {
|
|
|
- player.enterFullScreen();
|
|
|
- }
|
|
|
- })
|
|
|
- .on('mouseover', function() {
|
|
|
-
|
|
|
- // very old browsers with a plugin
|
|
|
- if (t.fullscreenMode == 'plugin-hover') {
|
|
|
- if (hideTimeout !== null) {
|
|
|
- clearTimeout(hideTimeout);
|
|
|
- delete hideTimeout;
|
|
|
- }
|
|
|
-
|
|
|
- var buttonPos = fullscreenBtn.offset(),
|
|
|
- containerPos = player.container.offset();
|
|
|
-
|
|
|
- media.positionFullscreenButton(buttonPos.left - containerPos.left, buttonPos.top - containerPos.top, true);
|
|
|
- }
|
|
|
+ var youTubeId = '';
|
|
|
|
|
|
- })
|
|
|
- .on('mouseout', function() {
|
|
|
+ if (url.indexOf('?') > 0) {
|
|
|
+ youTubeId = YouTubeApi.getYouTubeIdFromParam(url);
|
|
|
|
|
|
- if (t.fullscreenMode == 'plugin-hover') {
|
|
|
- if (hideTimeout !== null) {
|
|
|
- clearTimeout(hideTimeout);
|
|
|
- delete hideTimeout;
|
|
|
- }
|
|
|
-
|
|
|
- hideTimeout = setTimeout(function() {
|
|
|
- media.hideFullscreenButton();
|
|
|
- }, 1500);
|
|
|
- }
|
|
|
+ if (youTubeId === '') {
|
|
|
+ youTubeId = YouTubeApi.getYouTubeIdFromUrl(url);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ youTubeId = YouTubeApi.getYouTubeIdFromUrl(url);
|
|
|
+ }
|
|
|
|
|
|
- });
|
|
|
+ var id = youTubeId.substring(youTubeId.lastIndexOf('/') + 1);
|
|
|
+ youTubeId = id.split('?');
|
|
|
+ return youTubeId[0];
|
|
|
+ },
|
|
|
|
|
|
-
|
|
|
+ getYouTubeIdFromParam: function getYouTubeIdFromParam(url) {
|
|
|
|
|
|
- player.fullscreenBtn = fullscreenBtn;
|
|
|
+ if (url === undefined || url === null || !url.trim().length) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
- t.globalBind('keydown',function (e) {
|
|
|
- if (e.keyCode == 27 && ((mejs.MediaFeatures.hasTrueNativeFullScreen && mejs.MediaFeatures.isFullScreen()) || t.isFullScreen)) {
|
|
|
- player.exitFullScreen();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- t.normalHeight = 0;
|
|
|
- t.normalWidth = 0;
|
|
|
-
|
|
|
- // setup native fullscreen event
|
|
|
- if (mejs.MediaFeatures.hasTrueNativeFullScreen) {
|
|
|
-
|
|
|
- // chrome doesn't alays fire this in an iframe
|
|
|
- var fullscreenChanged = function(e) {
|
|
|
- if (player.isFullScreen) {
|
|
|
- if (mejs.MediaFeatures.isFullScreen()) {
|
|
|
- player.isNativeFullScreen = true;
|
|
|
- // reset the controls once we are fully in full screen
|
|
|
- player.setControlsSize();
|
|
|
- } else {
|
|
|
- player.isNativeFullScreen = false;
|
|
|
- // when a user presses ESC
|
|
|
- // make sure to put the player back into place
|
|
|
- player.exitFullScreen();
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
+ var parts = url.split('?'),
|
|
|
+ parameters = parts[1].split('&');
|
|
|
|
|
|
- player.globalBind(mejs.MediaFeatures.fullScreenEventName, fullscreenChanged);
|
|
|
- }
|
|
|
+ var youTubeId = '';
|
|
|
|
|
|
- },
|
|
|
-
|
|
|
- detectFullscreenMode: function() {
|
|
|
-
|
|
|
- var t = this,
|
|
|
- mode = '',
|
|
|
- features = mejs.MediaFeatures;
|
|
|
-
|
|
|
- if (features.hasTrueNativeFullScreen && t.media.pluginType === 'native') {
|
|
|
- mode = 'native-native';
|
|
|
- } else if (features.hasTrueNativeFullScreen && t.media.pluginType !== 'native' && !features.hasFirefoxPluginMovingProblem) {
|
|
|
- mode = 'plugin-native';
|
|
|
- } else if (t.usePluginFullScreen) {
|
|
|
- if (mejs.MediaFeatures.supportsPointerEvents) {
|
|
|
- mode = 'plugin-click';
|
|
|
- // this needs some special setup
|
|
|
- t.createPluginClickThrough();
|
|
|
- } else {
|
|
|
- mode = 'plugin-hover';
|
|
|
- }
|
|
|
-
|
|
|
- } else {
|
|
|
- mode = 'fullwindow';
|
|
|
+ for (var i = 0, total = parameters.length; i < total; i++) {
|
|
|
+ var paramParts = parameters[i].split('=');
|
|
|
+ if (paramParts[0] === 'v') {
|
|
|
+ youTubeId = paramParts[1];
|
|
|
+ break;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- t.fullscreenMode = mode;
|
|
|
- return mode;
|
|
|
- },
|
|
|
-
|
|
|
- isPluginClickThroughCreated: false,
|
|
|
-
|
|
|
- createPluginClickThrough: function() {
|
|
|
-
|
|
|
- var t = this;
|
|
|
-
|
|
|
- // don't build twice
|
|
|
- if (t.isPluginClickThroughCreated) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // allows clicking through the fullscreen button and controls down directly to Flash
|
|
|
-
|
|
|
- /*
|
|
|
- When a user puts his mouse over the fullscreen button, we disable the controls so that mouse events can go down to flash (pointer-events)
|
|
|
- We then put a divs over the video and on either side of the fullscreen button
|
|
|
- to capture mouse movement and restore the controls once the mouse moves outside of the fullscreen button
|
|
|
- */
|
|
|
-
|
|
|
- var fullscreenIsDisabled = false,
|
|
|
- restoreControls = function() {
|
|
|
- if (fullscreenIsDisabled) {
|
|
|
- // hide the hovers
|
|
|
- for (var i in hoverDivs) {
|
|
|
- hoverDivs[i].hide();
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- // restore the control bar
|
|
|
- t.fullscreenBtn.css('pointer-events', '');
|
|
|
- t.controls.css('pointer-events', '');
|
|
|
+ return youTubeId;
|
|
|
+ },
|
|
|
|
|
|
- // prevent clicks from pausing video
|
|
|
- t.media.removeEventListener('click', t.clickToPlayPauseCallback);
|
|
|
+ getYouTubeIdFromUrl: function getYouTubeIdFromUrl(url) {
|
|
|
|
|
|
- // store for later
|
|
|
- fullscreenIsDisabled = false;
|
|
|
- }
|
|
|
- },
|
|
|
- hoverDivs = {},
|
|
|
- hoverDivNames = ['top', 'left', 'right', 'bottom'],
|
|
|
- i, len,
|
|
|
- positionHoverDivs = function() {
|
|
|
- var fullScreenBtnOffsetLeft = fullscreenBtn.offset().left - t.container.offset().left,
|
|
|
- fullScreenBtnOffsetTop = fullscreenBtn.offset().top - t.container.offset().top,
|
|
|
- fullScreenBtnWidth = fullscreenBtn.outerWidth(true),
|
|
|
- fullScreenBtnHeight = fullscreenBtn.outerHeight(true),
|
|
|
- containerWidth = t.container.width(),
|
|
|
- containerHeight = t.container.height();
|
|
|
-
|
|
|
- for (i in hoverDivs) {
|
|
|
- hoverDivs[i].css({position: 'absolute', top: 0, left: 0}); //, backgroundColor: '#f00'});
|
|
|
- }
|
|
|
+ if (url === undefined || url === null || !url.trim().length) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
- // over video, but not controls
|
|
|
- hoverDivs['top']
|
|
|
- .width( containerWidth )
|
|
|
- .height( fullScreenBtnOffsetTop );
|
|
|
-
|
|
|
- // over controls, but not the fullscreen button
|
|
|
- hoverDivs['left']
|
|
|
- .width( fullScreenBtnOffsetLeft )
|
|
|
- .height( fullScreenBtnHeight )
|
|
|
- .css({top: fullScreenBtnOffsetTop});
|
|
|
-
|
|
|
- // after the fullscreen button
|
|
|
- hoverDivs['right']
|
|
|
- .width( containerWidth - fullScreenBtnOffsetLeft - fullScreenBtnWidth )
|
|
|
- .height( fullScreenBtnHeight )
|
|
|
- .css({top: fullScreenBtnOffsetTop,
|
|
|
- left: fullScreenBtnOffsetLeft + fullScreenBtnWidth});
|
|
|
-
|
|
|
- // under the fullscreen button
|
|
|
- hoverDivs['bottom']
|
|
|
- .width( containerWidth )
|
|
|
- .height( containerHeight - fullScreenBtnHeight - fullScreenBtnOffsetTop )
|
|
|
- .css({top: fullScreenBtnOffsetTop + fullScreenBtnHeight});
|
|
|
- };
|
|
|
+ var parts = url.split('?');
|
|
|
+ url = parts[0];
|
|
|
+ return url.substring(url.lastIndexOf('/') + 1);
|
|
|
+ },
|
|
|
|
|
|
- t.globalBind('resize', function() {
|
|
|
- positionHoverDivs();
|
|
|
- });
|
|
|
+ getYouTubeNoCookieUrl: function getYouTubeNoCookieUrl(url) {
|
|
|
+ if (url === undefined || url === null || !url.trim().length || url.indexOf('//www.youtube') === -1) {
|
|
|
+ return url;
|
|
|
+ }
|
|
|
|
|
|
- for (i = 0, len = hoverDivNames.length; i < len; i++) {
|
|
|
- hoverDivs[hoverDivNames[i]] = $('<div class="mejs-fullscreen-hover" />').appendTo(t.container).mouseover(restoreControls).hide();
|
|
|
- }
|
|
|
+ var parts = url.split('/');
|
|
|
+ parts[2] = parts[2].replace('.com', '-nocookie.com');
|
|
|
+ return parts.join('/');
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- // on hover, kill the fullscreen button's HTML handling, allowing clicks down to Flash
|
|
|
- fullscreenBtn.on('mouseover',function() {
|
|
|
+var YouTubeIframeRenderer = {
|
|
|
+ name: 'youtube_iframe',
|
|
|
|
|
|
- if (!t.isFullScreen) {
|
|
|
+ options: {
|
|
|
+ prefix: 'youtube_iframe',
|
|
|
|
|
|
- var buttonPos = fullscreenBtn.offset(),
|
|
|
- containerPos = player.container.offset();
|
|
|
+ youtube: {
|
|
|
+ autoplay: 0,
|
|
|
+ controls: 0,
|
|
|
+ disablekb: 1,
|
|
|
+ end: 0,
|
|
|
+ loop: 0,
|
|
|
+ modestbranding: 0,
|
|
|
+ playsinline: 0,
|
|
|
+ rel: 0,
|
|
|
+ showinfo: 0,
|
|
|
+ start: 0,
|
|
|
+ iv_load_policy: 3,
|
|
|
|
|
|
- // move the button in Flash into place
|
|
|
- media.positionFullscreenButton(buttonPos.left - containerPos.left, buttonPos.top - containerPos.top, false);
|
|
|
+ nocookie: false,
|
|
|
|
|
|
- // allows click through
|
|
|
- t.fullscreenBtn.css('pointer-events', 'none');
|
|
|
- t.controls.css('pointer-events', 'none');
|
|
|
+ imageQuality: null
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- // restore click-to-play
|
|
|
- t.media.addEventListener('click', t.clickToPlayPauseCallback);
|
|
|
+ canPlayType: function canPlayType(type) {
|
|
|
+ return ~['video/youtube', 'video/x-youtube'].indexOf(type.toLowerCase());
|
|
|
+ },
|
|
|
|
|
|
- // show the divs that will restore things
|
|
|
- for (i in hoverDivs) {
|
|
|
- hoverDivs[i].show();
|
|
|
+ create: function create(mediaElement, options, mediaFiles) {
|
|
|
+
|
|
|
+ var youtube = {},
|
|
|
+ apiStack = [],
|
|
|
+ readyState = 4;
|
|
|
+
|
|
|
+ var youTubeApi = null,
|
|
|
+ paused = true,
|
|
|
+ ended = false,
|
|
|
+ youTubeIframe = null,
|
|
|
+ volume = 1;
|
|
|
+
|
|
|
+ youtube.options = options;
|
|
|
+ youtube.id = mediaElement.id + '_' + options.prefix;
|
|
|
+ youtube.mediaElement = mediaElement;
|
|
|
+
|
|
|
+ var props = _mejs2.default.html5media.properties,
|
|
|
+ assignGettersSetters = function assignGettersSetters(propName) {
|
|
|
+
|
|
|
+ var capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
+
|
|
|
+ youtube['get' + capName] = function () {
|
|
|
+ if (youTubeApi !== null) {
|
|
|
+ var value = null;
|
|
|
+
|
|
|
+ switch (propName) {
|
|
|
+ case 'currentTime':
|
|
|
+ return youTubeApi.getCurrentTime();
|
|
|
+ case 'duration':
|
|
|
+ return youTubeApi.getDuration();
|
|
|
+ case 'volume':
|
|
|
+ volume = youTubeApi.getVolume() / 100;
|
|
|
+ return volume;
|
|
|
+ case 'paused':
|
|
|
+ return paused;
|
|
|
+ case 'ended':
|
|
|
+ return ended;
|
|
|
+ case 'muted':
|
|
|
+ return youTubeApi.isMuted();
|
|
|
+ case 'buffered':
|
|
|
+ var percentLoaded = youTubeApi.getVideoLoadedFraction(),
|
|
|
+ duration = youTubeApi.getDuration();
|
|
|
+ return {
|
|
|
+ start: function start() {
|
|
|
+ return 0;
|
|
|
+ },
|
|
|
+ end: function end() {
|
|
|
+ return percentLoaded * duration;
|
|
|
+ },
|
|
|
+ length: 1
|
|
|
+ };
|
|
|
+ case 'src':
|
|
|
+ return youTubeApi.getVideoUrl();
|
|
|
+ case 'readyState':
|
|
|
+ return readyState;
|
|
|
}
|
|
|
|
|
|
- positionHoverDivs();
|
|
|
-
|
|
|
- fullscreenIsDisabled = true;
|
|
|
+ return value;
|
|
|
+ } else {
|
|
|
+ return null;
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- });
|
|
|
+ youtube['set' + capName] = function (value) {
|
|
|
+ if (youTubeApi !== null) {
|
|
|
+ switch (propName) {
|
|
|
+ case 'src':
|
|
|
+ var url = typeof value === 'string' ? value : value[0].src,
|
|
|
+ _videoId = YouTubeApi.getYouTubeId(url);
|
|
|
|
|
|
- // restore controls anytime the user enters or leaves fullscreen
|
|
|
- media.addEventListener('fullscreenchange', function(e) {
|
|
|
- t.isFullScreen = !t.isFullScreen;
|
|
|
- // don't allow plugin click to pause video - messes with
|
|
|
- // plugin's controls
|
|
|
- if (t.isFullScreen) {
|
|
|
- t.media.removeEventListener('click', t.clickToPlayPauseCallback);
|
|
|
+ if (mediaElement.originalNode.autoplay) {
|
|
|
+ youTubeApi.loadVideoById(_videoId);
|
|
|
+ } else {
|
|
|
+ youTubeApi.cueVideoById(_videoId);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 'currentTime':
|
|
|
+ youTubeApi.seekTo(value);
|
|
|
+ break;
|
|
|
+ case 'muted':
|
|
|
+ if (value) {
|
|
|
+ youTubeApi.mute();
|
|
|
+ } else {
|
|
|
+ youTubeApi.unMute();
|
|
|
+ }
|
|
|
+ setTimeout(function () {
|
|
|
+ var event = (0, _general.createEvent)('volumechange', youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }, 50);
|
|
|
+ break;
|
|
|
+ case 'volume':
|
|
|
+ volume = value;
|
|
|
+ youTubeApi.setVolume(value * 100);
|
|
|
+ setTimeout(function () {
|
|
|
+ var event = (0, _general.createEvent)('volumechange', youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }, 50);
|
|
|
+ break;
|
|
|
+ case 'readyState':
|
|
|
+ var event = (0, _general.createEvent)('canplay', youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+
|
|
|
+ break;
|
|
|
+ }
|
|
|
} else {
|
|
|
- t.media.addEventListener('click', t.clickToPlayPauseCallback);
|
|
|
+ apiStack.push({ type: 'set', propName: propName, value: value });
|
|
|
}
|
|
|
- restoreControls();
|
|
|
- });
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
+ for (var i = 0, total = props.length; i < total; i++) {
|
|
|
+ assignGettersSetters(props[i]);
|
|
|
+ }
|
|
|
+
|
|
|
+ var methods = _mejs2.default.html5media.methods,
|
|
|
+ assignMethods = function assignMethods(methodName) {
|
|
|
+ youtube[methodName] = function () {
|
|
|
+ if (youTubeApi !== null) {
|
|
|
+ switch (methodName) {
|
|
|
+ case 'play':
|
|
|
+ paused = false;
|
|
|
+ return youTubeApi.playVideo();
|
|
|
+ case 'pause':
|
|
|
+ paused = true;
|
|
|
+ return youTubeApi.pauseVideo();
|
|
|
+ case 'load':
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ apiStack.push({ type: 'call', methodName: methodName });
|
|
|
+ }
|
|
|
+ };
|
|
|
+ };
|
|
|
|
|
|
- // the mouseout event doesn't work on the fullscren button, because we already killed the pointer-events
|
|
|
- // so we use the document.mousemove event to restore controls when the mouse moves outside the fullscreen button
|
|
|
+ for (var _i = 0, _total = methods.length; _i < _total; _i++) {
|
|
|
+ assignMethods(methods[_i]);
|
|
|
+ }
|
|
|
|
|
|
- t.globalBind('mousemove', function(e) {
|
|
|
+ var youtubeContainer = _document2.default.createElement('div');
|
|
|
+ youtubeContainer.id = youtube.id;
|
|
|
|
|
|
- // if the mouse is anywhere but the fullsceen button, then restore it all
|
|
|
- if (fullscreenIsDisabled) {
|
|
|
+ if (youtube.options.youtube.nocookie) {
|
|
|
+ mediaElement.originalNode.src = YouTubeApi.getYouTubeNoCookieUrl(mediaFiles[0].src);
|
|
|
+ }
|
|
|
|
|
|
- var fullscreenBtnPos = fullscreenBtn.offset();
|
|
|
+ mediaElement.originalNode.parentNode.insertBefore(youtubeContainer, mediaElement.originalNode);
|
|
|
+ mediaElement.originalNode.style.display = 'none';
|
|
|
+
|
|
|
+ var isAudio = mediaElement.originalNode.tagName.toLowerCase() === 'audio',
|
|
|
+ height = isAudio ? '1' : mediaElement.originalNode.height,
|
|
|
+ width = isAudio ? '1' : mediaElement.originalNode.width,
|
|
|
+ videoId = YouTubeApi.getYouTubeId(mediaFiles[0].src),
|
|
|
+ youtubeSettings = {
|
|
|
+ id: youtube.id,
|
|
|
+ containerId: youtubeContainer.id,
|
|
|
+ videoId: videoId,
|
|
|
+ height: height,
|
|
|
+ width: width,
|
|
|
+ playerVars: Object.assign({
|
|
|
+ controls: 0,
|
|
|
+ rel: 0,
|
|
|
+ disablekb: 1,
|
|
|
+ showinfo: 0,
|
|
|
+ modestbranding: 0,
|
|
|
+ html5: 1,
|
|
|
+ playsinline: 0,
|
|
|
+ start: 0,
|
|
|
+ end: 0,
|
|
|
+ iv_load_policy: 3
|
|
|
+ }, youtube.options.youtube),
|
|
|
+ origin: _window2.default.location.host,
|
|
|
+ events: {
|
|
|
+ onReady: function onReady(e) {
|
|
|
+ mediaElement.youTubeApi = youTubeApi = e.target;
|
|
|
+ mediaElement.youTubeState = {
|
|
|
+ paused: true,
|
|
|
+ ended: false
|
|
|
+ };
|
|
|
|
|
|
+ if (apiStack.length) {
|
|
|
+ for (var _i2 = 0, _total2 = apiStack.length; _i2 < _total2; _i2++) {
|
|
|
|
|
|
- if (e.pageY < fullscreenBtnPos.top || e.pageY > fullscreenBtnPos.top + fullscreenBtn.outerHeight(true) ||
|
|
|
- e.pageX < fullscreenBtnPos.left || e.pageX > fullscreenBtnPos.left + fullscreenBtn.outerWidth(true)
|
|
|
- ) {
|
|
|
+ var stackItem = apiStack[_i2];
|
|
|
|
|
|
- fullscreenBtn.css('pointer-events', '');
|
|
|
- t.controls.css('pointer-events', '');
|
|
|
+ if (stackItem.type === 'set') {
|
|
|
+ var propName = stackItem.propName,
|
|
|
+ capName = '' + propName.substring(0, 1).toUpperCase() + propName.substring(1);
|
|
|
|
|
|
- fullscreenIsDisabled = false;
|
|
|
+ youtube['set' + capName](stackItem.value);
|
|
|
+ } else if (stackItem.type === 'call') {
|
|
|
+ youtube[stackItem.methodName]();
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- });
|
|
|
|
|
|
+ youTubeIframe = youTubeApi.getIframe();
|
|
|
|
|
|
- t.isPluginClickThroughCreated = true;
|
|
|
- },
|
|
|
+ if (mediaElement.originalNode.getAttribute('muted')) {
|
|
|
+ youTubeApi.mute();
|
|
|
+ }
|
|
|
|
|
|
- cleanfullscreen: function(player) {
|
|
|
- player.exitFullScreen();
|
|
|
- },
|
|
|
+ var events = ['mouseover', 'mouseout'],
|
|
|
+ assignEvents = function assignEvents(e) {
|
|
|
+ var newEvent = (0, _general.createEvent)(e.type, youtube);
|
|
|
+ mediaElement.dispatchEvent(newEvent);
|
|
|
+ };
|
|
|
|
|
|
- containerSizeTimeout: null,
|
|
|
+ for (var _i3 = 0, _total3 = events.length; _i3 < _total3; _i3++) {
|
|
|
+ youTubeIframe.addEventListener(events[_i3], assignEvents, false);
|
|
|
+ }
|
|
|
|
|
|
- enterFullScreen: function() {
|
|
|
+ var initEvents = ['rendererready', 'loadedmetadata', 'loadeddata', 'canplay'];
|
|
|
|
|
|
- var t = this;
|
|
|
+ for (var _i4 = 0, _total4 = initEvents.length; _i4 < _total4; _i4++) {
|
|
|
+ var event = (0, _general.createEvent)(initEvents[_i4], youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onStateChange: function onStateChange(e) {
|
|
|
+ var events = [];
|
|
|
+
|
|
|
+ switch (e.data) {
|
|
|
+ case -1:
|
|
|
+ events = ['loadedmetadata'];
|
|
|
+ paused = true;
|
|
|
+ ended = false;
|
|
|
+ break;
|
|
|
+ case 0:
|
|
|
+ events = ['ended'];
|
|
|
+ paused = false;
|
|
|
+ ended = !youtube.options.youtube.loop;
|
|
|
+ if (!youtube.options.youtube.loop) {
|
|
|
+ youtube.stopInterval();
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ events = ['play', 'playing'];
|
|
|
+ paused = false;
|
|
|
+ ended = false;
|
|
|
+ youtube.startInterval();
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ events = ['pause'];
|
|
|
+ paused = true;
|
|
|
+ ended = false;
|
|
|
+ youtube.stopInterval();
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ events = ['progress'];
|
|
|
+ ended = false;
|
|
|
+ break;
|
|
|
+ case 5:
|
|
|
+ events = ['loadeddata', 'loadedmetadata', 'canplay'];
|
|
|
+ paused = true;
|
|
|
+ ended = false;
|
|
|
+ break;
|
|
|
+ }
|
|
|
|
|
|
- if (mejs.MediaFeatures.isiOS && mejs.MediaFeatures.hasiOSFullScreen && typeof t.media.webkitEnterFullscreen === 'function') {
|
|
|
- t.media.webkitEnterFullscreen();
|
|
|
- return;
|
|
|
+ for (var _i5 = 0, _total5 = events.length; _i5 < _total5; _i5++) {
|
|
|
+ var event = (0, _general.createEvent)(events[_i5], youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onError: function onError(e) {
|
|
|
+ var event = (0, _general.createEvent)('error', youtube);
|
|
|
+ event.data = e.data;
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- // set it to not show scroll bars so 100% will work
|
|
|
- $(document.documentElement).addClass('mejs-fullscreen');
|
|
|
+ if (isAudio) {
|
|
|
+ youtubeSettings.playerVars.playsinline = 1;
|
|
|
+ }
|
|
|
|
|
|
- // store sizing
|
|
|
- t.normalHeight = t.container.height();
|
|
|
- t.normalWidth = t.container.width();
|
|
|
+ if (mediaElement.originalNode.autoplay) {
|
|
|
+ youtubeSettings.playerVars.autoplay = 1;
|
|
|
+ }
|
|
|
|
|
|
+ if (mediaElement.originalNode.loop) {
|
|
|
+ youtubeSettings.playerVars.loop = 1;
|
|
|
+ }
|
|
|
|
|
|
+ YouTubeApi.enqueueIframe(youtubeSettings);
|
|
|
|
|
|
- // attempt to do true fullscreen
|
|
|
- if (t.fullscreenMode === 'native-native' || t.fullscreenMode === 'plugin-native') {
|
|
|
+ youtube.onEvent = function (eventName, player, _youTubeState) {
|
|
|
+ if (_youTubeState !== null && _youTubeState !== undefined) {
|
|
|
+ mediaElement.youTubeState = _youTubeState;
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- mejs.MediaFeatures.requestFullScreen(t.container[0]);
|
|
|
- //return;
|
|
|
+ youtube.setSize = function (width, height) {
|
|
|
+ if (youTubeApi !== null) {
|
|
|
+ youTubeApi.setSize(width, height);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ youtube.hide = function () {
|
|
|
+ youtube.stopInterval();
|
|
|
+ youtube.pause();
|
|
|
+ if (youTubeIframe) {
|
|
|
+ youTubeIframe.style.display = 'none';
|
|
|
+ }
|
|
|
+ };
|
|
|
+ youtube.show = function () {
|
|
|
+ if (youTubeIframe) {
|
|
|
+ youTubeIframe.style.display = '';
|
|
|
+ }
|
|
|
+ };
|
|
|
+ youtube.destroy = function () {
|
|
|
+ youTubeApi.destroy();
|
|
|
+ };
|
|
|
+ youtube.interval = null;
|
|
|
|
|
|
- if (t.isInIframe) {
|
|
|
- // sometimes exiting from fullscreen doesn't work
|
|
|
- // notably in Chrome <iframe>. Fixed in version 17
|
|
|
- setTimeout(function checkFullscreen() {
|
|
|
+ youtube.startInterval = function () {
|
|
|
+ youtube.interval = setInterval(function () {
|
|
|
+ var event = (0, _general.createEvent)('timeupdate', youtube);
|
|
|
+ mediaElement.dispatchEvent(event);
|
|
|
+ }, 250);
|
|
|
+ };
|
|
|
+ youtube.stopInterval = function () {
|
|
|
+ if (youtube.interval) {
|
|
|
+ clearInterval(youtube.interval);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ youtube.getPosterUrl = function () {
|
|
|
+ var quality = options.youtube.imageQuality,
|
|
|
+ resolutions = ['default', 'hqdefault', 'mqdefault', 'sddefault', 'maxresdefault'],
|
|
|
+ id = YouTubeApi.getYouTubeId(mediaElement.originalNode.src);
|
|
|
+ return quality && resolutions.indexOf(quality) > -1 && id ? 'https://img.youtube.com/vi/' + id + '/' + quality + '.jpg' : '';
|
|
|
+ };
|
|
|
|
|
|
- if (t.isNativeFullScreen) {
|
|
|
- var percentErrorMargin = 0.002, // 0.2%
|
|
|
- windowWidth = $(window).width(),
|
|
|
- screenWidth = screen.width,
|
|
|
- absDiff = Math.abs(screenWidth - windowWidth),
|
|
|
- marginError = screenWidth * percentErrorMargin;
|
|
|
+ return youtube;
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
- // check if the video is suddenly not really fullscreen
|
|
|
- if (absDiff > marginError) {
|
|
|
- // manually exit
|
|
|
- t.exitFullScreen();
|
|
|
- } else {
|
|
|
- // test again
|
|
|
- setTimeout(checkFullscreen, 500);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }, 1000);
|
|
|
- }
|
|
|
-
|
|
|
- } else if (t.fullscreeMode == 'fullwindow') {
|
|
|
- // move into position
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- // make full size
|
|
|
- t.container
|
|
|
- .addClass('mejs-container-fullscreen')
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
- //.css({position: 'fixed', left: 0, top: 0, right: 0, bottom: 0, overflow: 'hidden', width: '100%', height: '100%', 'z-index': 1000});
|
|
|
-
|
|
|
- // Only needed for safari 5.1 native full screen, can cause display issues elsewhere
|
|
|
- // Actually, it seems to be needed for IE8, too
|
|
|
- //if (mejs.MediaFeatures.hasTrueNativeFullScreen) {
|
|
|
- t.containerSizeTimeout = setTimeout(function() {
|
|
|
- t.container.css({width: '100%', height: '100%'});
|
|
|
- t.setControlsSize();
|
|
|
- }, 500);
|
|
|
- //}
|
|
|
+_window2.default.onYouTubePlayerAPIReady = function () {
|
|
|
+ YouTubeApi.iFrameReady();
|
|
|
+};
|
|
|
|
|
|
- if (t.media.pluginType === 'native') {
|
|
|
- t.$media
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
- } else {
|
|
|
- t.container.find('.mejs-shim')
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
-
|
|
|
- setTimeout(function() {
|
|
|
- var win = $(window),
|
|
|
- winW = win.width(),
|
|
|
- winH = win.height();
|
|
|
-
|
|
|
- t.media.setVideoSize(winW,winH);
|
|
|
- }, 500);
|
|
|
- }
|
|
|
+_media.typeChecks.push(function (url) {
|
|
|
+ return (/\/\/(www\.youtube|youtu\.?be)/i.test(url) ? 'video/x-youtube' : null
|
|
|
+ );
|
|
|
+});
|
|
|
|
|
|
- t.layers.children('div')
|
|
|
- .width('100%')
|
|
|
- .height('100%');
|
|
|
+_renderer.renderer.add(YouTubeIframeRenderer);
|
|
|
|
|
|
- if (t.fullscreenBtn) {
|
|
|
- t.fullscreenBtn
|
|
|
- .removeClass('mejs-fullscreen')
|
|
|
- .addClass('mejs-unfullscreen');
|
|
|
- }
|
|
|
+},{"2":2,"26":26,"27":27,"28":28,"3":3,"7":7,"8":8}],25:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- t.setControlsSize();
|
|
|
- t.isFullScreen = true;
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.cancelFullScreen = exports.requestFullScreen = exports.isFullScreen = exports.FULLSCREEN_EVENT_NAME = exports.HAS_NATIVE_FULLSCREEN_ENABLED = exports.HAS_TRUE_NATIVE_FULLSCREEN = exports.HAS_IOS_FULLSCREEN = exports.HAS_MS_NATIVE_FULLSCREEN = exports.HAS_MOZ_NATIVE_FULLSCREEN = exports.HAS_WEBKIT_NATIVE_FULLSCREEN = exports.HAS_NATIVE_FULLSCREEN = exports.SUPPORTS_NATIVE_HLS = exports.SUPPORT_POINTER_EVENTS = exports.HAS_MSE = exports.IS_STOCK_ANDROID = exports.IS_SAFARI = exports.IS_FIREFOX = exports.IS_CHROME = exports.IS_EDGE = exports.IS_IE = exports.IS_ANDROID = exports.IS_IOS = exports.IS_IPOD = exports.IS_IPHONE = exports.IS_IPAD = exports.UA = exports.NAV = undefined;
|
|
|
|
|
|
- var zoomFactor = Math.min(screen.width / t.width, screen.height / t.height);
|
|
|
- t.container.find('.mejs-captions-text').css('font-size', zoomFactor * 100 + '%');
|
|
|
- t.container.find('.mejs-captions-text').css('line-height', 'normal');
|
|
|
- t.container.find('.mejs-captions-position').css('bottom', '45px');
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- t.container.trigger('enteredfullscreen');
|
|
|
- },
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- exitFullScreen: function() {
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- var t = this;
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- // Prevent container from attempting to stretch a second time
|
|
|
- clearTimeout(t.containerSizeTimeout);
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- // firefox can't adjust plugins
|
|
|
- /*
|
|
|
- if (t.media.pluginType !== 'native' && mejs.MediaFeatures.isFirefox) {
|
|
|
- t.media.setFullscreen(false);
|
|
|
- //player.isFullScreen = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- */
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- // come out of native fullscreen
|
|
|
- if (mejs.MediaFeatures.hasTrueNativeFullScreen && (mejs.MediaFeatures.isFullScreen() || t.isFullScreen)) {
|
|
|
- mejs.MediaFeatures.cancelFullScreen();
|
|
|
- }
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- // restore scroll bars to document
|
|
|
- $(document.documentElement).removeClass('mejs-fullscreen');
|
|
|
+var NAV = exports.NAV = _window2.default.navigator;
|
|
|
+var UA = exports.UA = NAV.userAgent.toLowerCase();
|
|
|
+var IS_IPAD = exports.IS_IPAD = /ipad/i.test(UA) && !_window2.default.MSStream;
|
|
|
+var IS_IPHONE = exports.IS_IPHONE = /iphone/i.test(UA) && !_window2.default.MSStream;
|
|
|
+var IS_IPOD = exports.IS_IPOD = /ipod/i.test(UA) && !_window2.default.MSStream;
|
|
|
+var IS_IOS = exports.IS_IOS = /ipad|iphone|ipod/i.test(UA) && !_window2.default.MSStream;
|
|
|
+var IS_ANDROID = exports.IS_ANDROID = /android/i.test(UA);
|
|
|
+var IS_IE = exports.IS_IE = /(trident|microsoft)/i.test(NAV.appName);
|
|
|
+var IS_EDGE = exports.IS_EDGE = 'msLaunchUri' in NAV && !('documentMode' in _document2.default);
|
|
|
+var IS_CHROME = exports.IS_CHROME = /chrome/i.test(UA);
|
|
|
+var IS_FIREFOX = exports.IS_FIREFOX = /firefox/i.test(UA);
|
|
|
+var IS_SAFARI = exports.IS_SAFARI = /safari/i.test(UA) && !IS_CHROME;
|
|
|
+var IS_STOCK_ANDROID = exports.IS_STOCK_ANDROID = /^mozilla\/\d+\.\d+\s\(linux;\su;/i.test(UA);
|
|
|
+var HAS_MSE = exports.HAS_MSE = 'MediaSource' in _window2.default;
|
|
|
+var SUPPORT_POINTER_EVENTS = exports.SUPPORT_POINTER_EVENTS = function () {
|
|
|
+ var element = _document2.default.createElement('x'),
|
|
|
+ documentElement = _document2.default.documentElement,
|
|
|
+ getComputedStyle = _window2.default.getComputedStyle;
|
|
|
|
|
|
- t.container
|
|
|
- .removeClass('mejs-container-fullscreen')
|
|
|
- .width(t.normalWidth)
|
|
|
- .height(t.normalHeight);
|
|
|
+ if (!('pointerEvents' in element.style)) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
|
|
|
- if (t.media.pluginType === 'native') {
|
|
|
- t.$media
|
|
|
- .width(t.normalWidth)
|
|
|
- .height(t.normalHeight);
|
|
|
- } else {
|
|
|
- t.container.find('.mejs-shim')
|
|
|
- .width(t.normalWidth)
|
|
|
- .height(t.normalHeight);
|
|
|
+ element.style.pointerEvents = 'auto';
|
|
|
+ element.style.pointerEvents = 'x';
|
|
|
+ documentElement.appendChild(element);
|
|
|
+ var supports = getComputedStyle && getComputedStyle(element, '').pointerEvents === 'auto';
|
|
|
+ element.remove();
|
|
|
+ return !!supports;
|
|
|
+}();
|
|
|
|
|
|
- t.media.setVideoSize(t.normalWidth, t.normalHeight);
|
|
|
- }
|
|
|
+var html5Elements = ['source', 'track', 'audio', 'video'];
|
|
|
+var video = void 0;
|
|
|
|
|
|
- t.layers.children('div')
|
|
|
- .width(t.normalWidth)
|
|
|
- .height(t.normalHeight);
|
|
|
+for (var i = 0, total = html5Elements.length; i < total; i++) {
|
|
|
+ video = _document2.default.createElement(html5Elements[i]);
|
|
|
+}
|
|
|
|
|
|
- t.fullscreenBtn
|
|
|
- .removeClass('mejs-unfullscreen')
|
|
|
- .addClass('mejs-fullscreen');
|
|
|
+var SUPPORTS_NATIVE_HLS = exports.SUPPORTS_NATIVE_HLS = IS_SAFARI || IS_ANDROID && (IS_CHROME || IS_STOCK_ANDROID) || IS_IE && /edge/i.test(UA);
|
|
|
|
|
|
- t.setControlsSize();
|
|
|
- t.isFullScreen = false;
|
|
|
+var hasiOSFullScreen = video.webkitEnterFullscreen !== undefined;
|
|
|
|
|
|
- t.container.find('.mejs-captions-text').css('font-size','');
|
|
|
- t.container.find('.mejs-captions-text').css('line-height', '');
|
|
|
- t.container.find('.mejs-captions-position').css('bottom', '');
|
|
|
+var hasNativeFullscreen = video.requestFullscreen !== undefined;
|
|
|
|
|
|
- t.container.trigger('exitedfullscreen');
|
|
|
- }
|
|
|
- });
|
|
|
+if (hasiOSFullScreen && /mac os x 10_5/i.test(UA)) {
|
|
|
+ hasNativeFullscreen = false;
|
|
|
+ hasiOSFullScreen = false;
|
|
|
+}
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+var hasWebkitNativeFullScreen = video.webkitRequestFullScreen !== undefined;
|
|
|
+var hasMozNativeFullScreen = video.mozRequestFullScreen !== undefined;
|
|
|
+var hasMsNativeFullScreen = video.msRequestFullscreen !== undefined;
|
|
|
+var hasTrueNativeFullScreen = hasWebkitNativeFullScreen || hasMozNativeFullScreen || hasMsNativeFullScreen;
|
|
|
+var nativeFullScreenEnabled = hasTrueNativeFullScreen;
|
|
|
+var fullScreenEventName = '';
|
|
|
+var isFullScreen = void 0,
|
|
|
+ requestFullScreen = void 0,
|
|
|
+ cancelFullScreen = void 0;
|
|
|
+
|
|
|
+if (hasMozNativeFullScreen) {
|
|
|
+ nativeFullScreenEnabled = _document2.default.mozFullScreenEnabled;
|
|
|
+} else if (hasMsNativeFullScreen) {
|
|
|
+ nativeFullScreenEnabled = _document2.default.msFullscreenEnabled;
|
|
|
+}
|
|
|
|
|
|
-(function($) {
|
|
|
+if (IS_CHROME) {
|
|
|
+ hasiOSFullScreen = false;
|
|
|
+}
|
|
|
|
|
|
- // Speed
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
+if (hasTrueNativeFullScreen) {
|
|
|
+ if (hasWebkitNativeFullScreen) {
|
|
|
+ fullScreenEventName = 'webkitfullscreenchange';
|
|
|
+ } else if (hasMozNativeFullScreen) {
|
|
|
+ fullScreenEventName = 'mozfullscreenchange';
|
|
|
+ } else if (hasMsNativeFullScreen) {
|
|
|
+ fullScreenEventName = 'MSFullscreenChange';
|
|
|
+ }
|
|
|
|
|
|
- // We also support to pass object like this:
|
|
|
- // [{name: 'Slow', value: '0.75'}, {name: 'Normal', value: '1.00'}, ...]
|
|
|
- speeds: ['2.00', '1.50', '1.25', '1.00', '0.75'],
|
|
|
+ exports.isFullScreen = isFullScreen = function isFullScreen() {
|
|
|
+ if (hasMozNativeFullScreen) {
|
|
|
+ return _document2.default.mozFullScreen;
|
|
|
+ } else if (hasWebkitNativeFullScreen) {
|
|
|
+ return _document2.default.webkitIsFullScreen;
|
|
|
+ } else if (hasMsNativeFullScreen) {
|
|
|
+ return _document2.default.msFullscreenElement !== null;
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- defaultSpeed: '1.00',
|
|
|
-
|
|
|
- speedChar: 'x'
|
|
|
+ exports.requestFullScreen = requestFullScreen = function requestFullScreen(el) {
|
|
|
+ if (hasWebkitNativeFullScreen) {
|
|
|
+ el.webkitRequestFullScreen();
|
|
|
+ } else if (hasMozNativeFullScreen) {
|
|
|
+ el.mozRequestFullScreen();
|
|
|
+ } else if (hasMsNativeFullScreen) {
|
|
|
+ el.msRequestFullscreen();
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
- });
|
|
|
+ exports.cancelFullScreen = cancelFullScreen = function cancelFullScreen() {
|
|
|
+ if (hasWebkitNativeFullScreen) {
|
|
|
+ _document2.default.webkitCancelFullScreen();
|
|
|
+ } else if (hasMozNativeFullScreen) {
|
|
|
+ _document2.default.mozCancelFullScreen();
|
|
|
+ } else if (hasMsNativeFullScreen) {
|
|
|
+ _document2.default.msExitFullscreen();
|
|
|
+ }
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
+var HAS_NATIVE_FULLSCREEN = exports.HAS_NATIVE_FULLSCREEN = hasNativeFullscreen;
|
|
|
+var HAS_WEBKIT_NATIVE_FULLSCREEN = exports.HAS_WEBKIT_NATIVE_FULLSCREEN = hasWebkitNativeFullScreen;
|
|
|
+var HAS_MOZ_NATIVE_FULLSCREEN = exports.HAS_MOZ_NATIVE_FULLSCREEN = hasMozNativeFullScreen;
|
|
|
+var HAS_MS_NATIVE_FULLSCREEN = exports.HAS_MS_NATIVE_FULLSCREEN = hasMsNativeFullScreen;
|
|
|
+var HAS_IOS_FULLSCREEN = exports.HAS_IOS_FULLSCREEN = hasiOSFullScreen;
|
|
|
+var HAS_TRUE_NATIVE_FULLSCREEN = exports.HAS_TRUE_NATIVE_FULLSCREEN = hasTrueNativeFullScreen;
|
|
|
+var HAS_NATIVE_FULLSCREEN_ENABLED = exports.HAS_NATIVE_FULLSCREEN_ENABLED = nativeFullScreenEnabled;
|
|
|
+var FULLSCREEN_EVENT_NAME = exports.FULLSCREEN_EVENT_NAME = fullScreenEventName;
|
|
|
+exports.isFullScreen = isFullScreen;
|
|
|
+exports.requestFullScreen = requestFullScreen;
|
|
|
+exports.cancelFullScreen = cancelFullScreen;
|
|
|
+
|
|
|
+
|
|
|
+_mejs2.default.Features = _mejs2.default.Features || {};
|
|
|
+_mejs2.default.Features.isiPad = IS_IPAD;
|
|
|
+_mejs2.default.Features.isiPod = IS_IPOD;
|
|
|
+_mejs2.default.Features.isiPhone = IS_IPHONE;
|
|
|
+_mejs2.default.Features.isiOS = _mejs2.default.Features.isiPhone || _mejs2.default.Features.isiPad;
|
|
|
+_mejs2.default.Features.isAndroid = IS_ANDROID;
|
|
|
+_mejs2.default.Features.isIE = IS_IE;
|
|
|
+_mejs2.default.Features.isEdge = IS_EDGE;
|
|
|
+_mejs2.default.Features.isChrome = IS_CHROME;
|
|
|
+_mejs2.default.Features.isFirefox = IS_FIREFOX;
|
|
|
+_mejs2.default.Features.isSafari = IS_SAFARI;
|
|
|
+_mejs2.default.Features.isStockAndroid = IS_STOCK_ANDROID;
|
|
|
+_mejs2.default.Features.hasMSE = HAS_MSE;
|
|
|
+_mejs2.default.Features.supportsNativeHLS = SUPPORTS_NATIVE_HLS;
|
|
|
+_mejs2.default.Features.supportsPointerEvents = SUPPORT_POINTER_EVENTS;
|
|
|
+_mejs2.default.Features.hasiOSFullScreen = HAS_IOS_FULLSCREEN;
|
|
|
+_mejs2.default.Features.hasNativeFullscreen = HAS_NATIVE_FULLSCREEN;
|
|
|
+_mejs2.default.Features.hasWebkitNativeFullScreen = HAS_WEBKIT_NATIVE_FULLSCREEN;
|
|
|
+_mejs2.default.Features.hasMozNativeFullScreen = HAS_MOZ_NATIVE_FULLSCREEN;
|
|
|
+_mejs2.default.Features.hasMsNativeFullScreen = HAS_MS_NATIVE_FULLSCREEN;
|
|
|
+_mejs2.default.Features.hasTrueNativeFullScreen = HAS_TRUE_NATIVE_FULLSCREEN;
|
|
|
+_mejs2.default.Features.nativeFullScreenEnabled = HAS_NATIVE_FULLSCREEN_ENABLED;
|
|
|
+_mejs2.default.Features.fullScreenEventName = FULLSCREEN_EVENT_NAME;
|
|
|
+_mejs2.default.Features.isFullScreen = isFullScreen;
|
|
|
+_mejs2.default.Features.requestFullScreen = requestFullScreen;
|
|
|
+_mejs2.default.Features.cancelFullScreen = cancelFullScreen;
|
|
|
+
|
|
|
+},{"2":2,"3":3,"7":7}],26:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.removeClass = exports.addClass = exports.hasClass = undefined;
|
|
|
+exports.loadScript = loadScript;
|
|
|
+exports.offset = offset;
|
|
|
+exports.toggleClass = toggleClass;
|
|
|
+exports.fadeOut = fadeOut;
|
|
|
+exports.fadeIn = fadeIn;
|
|
|
+exports.siblings = siblings;
|
|
|
+exports.visible = visible;
|
|
|
+exports.ajax = ajax;
|
|
|
|
|
|
- buildspeed: function(player, controls, layers, media) {
|
|
|
- var t = this;
|
|
|
+var _window = _dereq_(3);
|
|
|
|
|
|
- if (t.media.pluginType == 'native') {
|
|
|
- var
|
|
|
- speedButton = null,
|
|
|
- speedSelector = null,
|
|
|
- playbackSpeed = null,
|
|
|
- inputId = null;
|
|
|
-
|
|
|
- var speeds = [];
|
|
|
- var defaultInArray = false;
|
|
|
- for (var i=0, len=t.options.speeds.length; i < len; i++) {
|
|
|
- var s = t.options.speeds[i];
|
|
|
- if (typeof(s) === 'string'){
|
|
|
- speeds.push({
|
|
|
- name: s + t.options.speedChar,
|
|
|
- value: s
|
|
|
- });
|
|
|
- if(s === t.options.defaultSpeed) {
|
|
|
- defaultInArray = true;
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- speeds.push(s);
|
|
|
- if(s.value === t.options.defaultSpeed) {
|
|
|
- defaultInArray = true;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+var _window2 = _interopRequireDefault(_window);
|
|
|
|
|
|
- if (!defaultInArray) {
|
|
|
- speeds.push({
|
|
|
- name: t.options.defaultSpeed + t.options.speedChar,
|
|
|
- value: t.options.defaultSpeed
|
|
|
- });
|
|
|
- }
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- speeds.sort(function(a, b) {
|
|
|
- return parseFloat(b.value) - parseFloat(a.value);
|
|
|
- });
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- var getSpeedNameFromValue = function(value) {
|
|
|
- for(i=0,len=speeds.length; i <len; i++) {
|
|
|
- if (speeds[i].value === value) {
|
|
|
- return speeds[i].name;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- var html = '<div class="mejs-button mejs-speed-button">' +
|
|
|
- '<button type="button">' + getSpeedNameFromValue(t.options.defaultSpeed) + '</button>' +
|
|
|
- '<div class="mejs-speed-selector">' +
|
|
|
- '<ul>';
|
|
|
-
|
|
|
- for (i = 0, il = speeds.length; i<il; i++) {
|
|
|
- inputId = t.id + '-speed-' + speeds[i].value;
|
|
|
- html += '<li>' +
|
|
|
- '<input type="radio" name="speed" ' +
|
|
|
- 'value="' + speeds[i].value + '" ' +
|
|
|
- 'id="' + inputId + '" ' +
|
|
|
- (speeds[i].value === t.options.defaultSpeed ? ' checked' : '') +
|
|
|
- ' />' +
|
|
|
- '<label for="' + inputId + '" ' +
|
|
|
- (speeds[i].value === t.options.defaultSpeed ? ' class="mejs-speed-selected"' : '') +
|
|
|
- '>' + speeds[i].name + '</label>' +
|
|
|
- '</li>';
|
|
|
- }
|
|
|
- html += '</ul></div></div>';
|
|
|
-
|
|
|
- speedButton = $(html).appendTo(controls);
|
|
|
- speedSelector = speedButton.find('.mejs-speed-selector');
|
|
|
-
|
|
|
- playbackSpeed = t.options.defaultSpeed;
|
|
|
-
|
|
|
- media.addEventListener('loadedmetadata', function(e) {
|
|
|
- if (playbackSpeed) {
|
|
|
- media.playbackRate = parseFloat(playbackSpeed);
|
|
|
- }
|
|
|
- }, true);
|
|
|
-
|
|
|
- speedSelector
|
|
|
- .on('click', 'input[type="radio"]', function() {
|
|
|
- var newSpeed = $(this).attr('value');
|
|
|
- playbackSpeed = newSpeed;
|
|
|
- media.playbackRate = parseFloat(newSpeed);
|
|
|
- speedButton.find('button').html(getSpeedNameFromValue(newSpeed));
|
|
|
- speedButton.find('.mejs-speed-selected').removeClass('mejs-speed-selected');
|
|
|
- speedButton.find('input[type="radio"]:checked').next().addClass('mejs-speed-selected');
|
|
|
- });
|
|
|
- speedButton
|
|
|
- .one( 'mouseenter focusin', function() {
|
|
|
- speedSelector
|
|
|
- .height(
|
|
|
- speedButton.find('.mejs-speed-selector ul').outerHeight(true) +
|
|
|
- speedButton.find('.mejs-speed-translations').outerHeight(true))
|
|
|
- .css('top', (-1 * speedSelector.height()) + 'px');
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
+
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
+
|
|
|
+function loadScript(url) {
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
+ var script = _document2.default.createElement('script');
|
|
|
+ script.src = url;
|
|
|
+ script.async = true;
|
|
|
+ script.onload = function () {
|
|
|
+ script.remove();
|
|
|
+ resolve();
|
|
|
+ };
|
|
|
+ script.onerror = function () {
|
|
|
+ script.remove();
|
|
|
+ reject();
|
|
|
+ };
|
|
|
+ _document2.default.head.appendChild(script);
|
|
|
});
|
|
|
+}
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+function offset(el) {
|
|
|
+ var rect = el.getBoundingClientRect(),
|
|
|
+ scrollLeft = _window2.default.pageXOffset || _document2.default.documentElement.scrollLeft,
|
|
|
+ scrollTop = _window2.default.pageYOffset || _document2.default.documentElement.scrollTop;
|
|
|
+ return { top: rect.top + scrollTop, left: rect.left + scrollLeft };
|
|
|
+}
|
|
|
|
|
|
-(function($) {
|
|
|
+var hasClassMethod = void 0,
|
|
|
+ addClassMethod = void 0,
|
|
|
+ removeClassMethod = void 0;
|
|
|
|
|
|
- // add extra default options
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- // this will automatically turn on a <track>
|
|
|
- startLanguage: '',
|
|
|
+if ('classList' in _document2.default.documentElement) {
|
|
|
+ hasClassMethod = function hasClassMethod(el, className) {
|
|
|
+ return el.classList !== undefined && el.classList.contains(className);
|
|
|
+ };
|
|
|
+ addClassMethod = function addClassMethod(el, className) {
|
|
|
+ return el.classList.add(className);
|
|
|
+ };
|
|
|
+ removeClassMethod = function removeClassMethod(el, className) {
|
|
|
+ return el.classList.remove(className);
|
|
|
+ };
|
|
|
+} else {
|
|
|
+ hasClassMethod = function hasClassMethod(el, className) {
|
|
|
+ return new RegExp('\\b' + className + '\\b').test(el.className);
|
|
|
+ };
|
|
|
+ addClassMethod = function addClassMethod(el, className) {
|
|
|
+ if (!hasClass(el, className)) {
|
|
|
+ el.className += ' ' + className;
|
|
|
+ }
|
|
|
+ };
|
|
|
+ removeClassMethod = function removeClassMethod(el, className) {
|
|
|
+ el.className = el.className.replace(new RegExp('\\b' + className + '\\b', 'g'), '');
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
- tracksText: '',
|
|
|
+var hasClass = exports.hasClass = hasClassMethod;
|
|
|
+var addClass = exports.addClass = addClassMethod;
|
|
|
+var removeClass = exports.removeClass = removeClassMethod;
|
|
|
|
|
|
- // By default, no WAI-ARIA live region - don't make a
|
|
|
- // screen reader speak captions over an audio track.
|
|
|
- tracksAriaLive: false,
|
|
|
+function toggleClass(el, className) {
|
|
|
+ hasClass(el, className) ? removeClass(el, className) : addClass(el, className);
|
|
|
+}
|
|
|
|
|
|
- // option to remove the [cc] button when no <track kind="subtitles"> are present
|
|
|
- hideCaptionsButtonWhenEmpty: true,
|
|
|
+function fadeOut(el) {
|
|
|
+ var duration = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 400;
|
|
|
+ var callback = arguments[2];
|
|
|
|
|
|
- // If true and we only have one track, change captions to popup
|
|
|
- toggleCaptionsButtonWhenOnlyOne: false,
|
|
|
+ if (!el.style.opacity) {
|
|
|
+ el.style.opacity = 1;
|
|
|
+ }
|
|
|
|
|
|
- // #id or .class
|
|
|
- slidesSelector: ''
|
|
|
+ var start = null;
|
|
|
+ _window2.default.requestAnimationFrame(function animate(timestamp) {
|
|
|
+ start = start || timestamp;
|
|
|
+ var progress = timestamp - start;
|
|
|
+ var opacity = parseFloat(1 - progress / duration, 2);
|
|
|
+ el.style.opacity = opacity < 0 ? 0 : opacity;
|
|
|
+ if (progress > duration) {
|
|
|
+ if (callback && typeof callback === 'function') {
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ _window2.default.requestAnimationFrame(animate);
|
|
|
+ }
|
|
|
});
|
|
|
+}
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
-
|
|
|
- hasChapters: false,
|
|
|
+function fadeIn(el) {
|
|
|
+ var duration = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 400;
|
|
|
+ var callback = arguments[2];
|
|
|
|
|
|
- cleartracks: function(player, controls, layers, media){
|
|
|
- if(player) {
|
|
|
- if(player.captions) player.captions.remove();
|
|
|
- if(player.chapters) player.chapters.remove();
|
|
|
- if(player.captionsText) player.captionsText.remove();
|
|
|
- if(player.captionsButton) player.captionsButton.remove();
|
|
|
- }
|
|
|
- },
|
|
|
- buildtracks: function(player, controls, layers, media) {
|
|
|
- if (player.tracks.length === 0)
|
|
|
- return;
|
|
|
+ if (!el.style.opacity) {
|
|
|
+ el.style.opacity = 0;
|
|
|
+ }
|
|
|
|
|
|
- var t = this,
|
|
|
- attr = t.options.tracksAriaLive ?
|
|
|
- 'role="log" aria-live="assertive" aria-atomic="false"' : '',
|
|
|
- tracksTitle = t.options.tracksText ? t.options.tracksText : mejs.i18n.t('mejs.captions-subtitles'),
|
|
|
- i,
|
|
|
- kind;
|
|
|
-
|
|
|
- if (t.domNode.textTracks) { // if browser will do native captions, prefer mejs captions, loop through tracks and hide
|
|
|
- for (i = t.domNode.textTracks.length - 1; i >= 0; i--) {
|
|
|
- t.domNode.textTracks[i].mode = "hidden";
|
|
|
- }
|
|
|
- }
|
|
|
- t.cleartracks(player, controls, layers, media);
|
|
|
- player.chapters =
|
|
|
- $('<div class="mejs-chapters mejs-layer"></div>')
|
|
|
- .prependTo(layers).hide();
|
|
|
- player.captions =
|
|
|
- $('<div class="mejs-captions-layer mejs-layer"><div class="mejs-captions-position mejs-captions-position-hover" ' +
|
|
|
- attr + '><span class="mejs-captions-text"></span></div></div>')
|
|
|
- .prependTo(layers).hide();
|
|
|
- player.captionsText = player.captions.find('.mejs-captions-text');
|
|
|
- player.captionsButton =
|
|
|
- $('<div class="mejs-button mejs-captions-button">'+
|
|
|
- '<button type="button" aria-controls="' + t.id + '" title="' + tracksTitle + '" aria-label="' + tracksTitle + '"></button>'+
|
|
|
- '<div class="mejs-captions-selector">'+
|
|
|
- '<ul>'+
|
|
|
- '<li>'+
|
|
|
- '<input type="radio" name="' + player.id + '_captions" id="' + player.id + '_captions_none" value="none" checked="checked" />' +
|
|
|
- '<label for="' + player.id + '_captions_none">' + mejs.i18n.t('mejs.none') +'</label>'+
|
|
|
- '</li>' +
|
|
|
- '</ul>'+
|
|
|
- '</div>'+
|
|
|
- '</div>')
|
|
|
- .appendTo(controls);
|
|
|
-
|
|
|
-
|
|
|
- var subtitleCount = 0;
|
|
|
- for (i=0; i<player.tracks.length; i++) {
|
|
|
- kind = player.tracks[i].kind;
|
|
|
- if (kind === 'subtitles' || kind === 'captions') {
|
|
|
- subtitleCount++;
|
|
|
- }
|
|
|
+ var start = null;
|
|
|
+ _window2.default.requestAnimationFrame(function animate(timestamp) {
|
|
|
+ start = start || timestamp;
|
|
|
+ var progress = timestamp - start;
|
|
|
+ var opacity = parseFloat(progress / duration, 2);
|
|
|
+ el.style.opacity = opacity > 1 ? 1 : opacity;
|
|
|
+ if (progress > duration) {
|
|
|
+ if (callback && typeof callback === 'function') {
|
|
|
+ callback();
|
|
|
}
|
|
|
+ } else {
|
|
|
+ _window2.default.requestAnimationFrame(animate);
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
|
|
|
- // if only one language then just make the button a toggle
|
|
|
- if (t.options.toggleCaptionsButtonWhenOnlyOne && subtitleCount == 1){
|
|
|
- // click
|
|
|
- player.captionsButton.on('click',function() {
|
|
|
- if (player.selectedTrack === null) {
|
|
|
- lang = player.tracks[0].srclang;
|
|
|
- } else {
|
|
|
- lang = 'none';
|
|
|
- }
|
|
|
- player.setTrack(lang);
|
|
|
- });
|
|
|
- } else {
|
|
|
- // hover or keyboard focus
|
|
|
- player.captionsButton.on( 'mouseenter focusin', function() {
|
|
|
- $(this).find('.mejs-captions-selector').removeClass('mejs-offscreen');
|
|
|
- })
|
|
|
-
|
|
|
- // handle clicks to the language radio buttons
|
|
|
- .on('click','input[type=radio]',function() {
|
|
|
- lang = this.value;
|
|
|
- player.setTrack(lang);
|
|
|
- });
|
|
|
+function siblings(el, filter) {
|
|
|
+ var siblings = [];
|
|
|
+ el = el.parentNode.firstChild;
|
|
|
+ do {
|
|
|
+ if (!filter || filter(el)) {
|
|
|
+ siblings.push(el);
|
|
|
+ }
|
|
|
+ } while (el = el.nextSibling);
|
|
|
+ return siblings;
|
|
|
+}
|
|
|
|
|
|
- player.captionsButton.on( 'mouseleave focusout', function() {
|
|
|
- $(this).find(".mejs-captions-selector").addClass("mejs-offscreen");
|
|
|
- });
|
|
|
+function visible(elem) {
|
|
|
+ return !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length);
|
|
|
+}
|
|
|
|
|
|
- }
|
|
|
+function ajax(url, dataType, success, error) {
|
|
|
+ var xhr = _window2.default.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
|
|
|
+
|
|
|
+ var type = 'application/x-www-form-urlencoded; charset=UTF-8',
|
|
|
+ completed = false,
|
|
|
+ accept = '*/'.concat('*');
|
|
|
+
|
|
|
+ switch (dataType) {
|
|
|
+ case 'text':
|
|
|
+ type = 'text/plain';
|
|
|
+ break;
|
|
|
+ case 'json':
|
|
|
+ type = 'application/json, text/javascript';
|
|
|
+ break;
|
|
|
+ case 'html':
|
|
|
+ type = 'text/html';
|
|
|
+ break;
|
|
|
+ case 'xml':
|
|
|
+ type = 'application/xml, text/xml';
|
|
|
+ break;
|
|
|
+ }
|
|
|
|
|
|
- if (!player.options.alwaysShowControls) {
|
|
|
- // move with controls
|
|
|
- player.container
|
|
|
- .bind('controlsshown', function () {
|
|
|
- // push captions above controls
|
|
|
- player.container.find('.mejs-captions-position').addClass('mejs-captions-position-hover');
|
|
|
+ if (type !== 'application/x-www-form-urlencoded') {
|
|
|
+ accept = type + ', */*; q=0.01';
|
|
|
+ }
|
|
|
|
|
|
- })
|
|
|
- .bind('controlshidden', function () {
|
|
|
- if (!media.paused) {
|
|
|
- // move back to normal place
|
|
|
- player.container.find('.mejs-captions-position').removeClass('mejs-captions-position-hover');
|
|
|
- }
|
|
|
- });
|
|
|
- } else {
|
|
|
- player.container.find('.mejs-captions-position').addClass('mejs-captions-position-hover');
|
|
|
+ if (xhr) {
|
|
|
+ xhr.open('GET', url, true);
|
|
|
+ xhr.setRequestHeader('Accept', accept);
|
|
|
+ xhr.onreadystatechange = function () {
|
|
|
+ if (completed) {
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
- player.trackToLoad = -1;
|
|
|
- player.selectedTrack = null;
|
|
|
- player.isLoadingTrack = false;
|
|
|
-
|
|
|
- // add to list
|
|
|
- for (i=0; i<player.tracks.length; i++) {
|
|
|
- kind = player.tracks[i].kind;
|
|
|
- if (kind === 'subtitles' || kind === 'captions') {
|
|
|
- player.addTrackButton(player.tracks[i].srclang, player.tracks[i].label);
|
|
|
+ if (xhr.readyState === 4) {
|
|
|
+ if (xhr.status === 200) {
|
|
|
+ completed = true;
|
|
|
+ var data = void 0;
|
|
|
+ switch (dataType) {
|
|
|
+ case 'json':
|
|
|
+ data = JSON.parse(xhr.responseText);
|
|
|
+ break;
|
|
|
+ case 'xml':
|
|
|
+ data = xhr.responseXML;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ data = xhr.responseText;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ success(data);
|
|
|
+ } else if (typeof error === 'function') {
|
|
|
+ error(xhr.status);
|
|
|
}
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- // start loading tracks
|
|
|
- player.loadNextTrack();
|
|
|
+ xhr.send();
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- media.addEventListener('timeupdate',function() {
|
|
|
- player.displayCaptions();
|
|
|
- }, false);
|
|
|
+_mejs2.default.Utils = _mejs2.default.Utils || {};
|
|
|
+_mejs2.default.Utils.offset = offset;
|
|
|
+_mejs2.default.Utils.hasClass = hasClass;
|
|
|
+_mejs2.default.Utils.addClass = addClass;
|
|
|
+_mejs2.default.Utils.removeClass = removeClass;
|
|
|
+_mejs2.default.Utils.toggleClass = toggleClass;
|
|
|
+_mejs2.default.Utils.fadeIn = fadeIn;
|
|
|
+_mejs2.default.Utils.fadeOut = fadeOut;
|
|
|
+_mejs2.default.Utils.siblings = siblings;
|
|
|
+_mejs2.default.Utils.visible = visible;
|
|
|
+_mejs2.default.Utils.ajax = ajax;
|
|
|
+_mejs2.default.Utils.loadScript = loadScript;
|
|
|
+
|
|
|
+},{"2":2,"3":3,"7":7}],27:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.escapeHTML = escapeHTML;
|
|
|
+exports.debounce = debounce;
|
|
|
+exports.isObjectEmpty = isObjectEmpty;
|
|
|
+exports.splitEvents = splitEvents;
|
|
|
+exports.createEvent = createEvent;
|
|
|
+exports.isNodeAfter = isNodeAfter;
|
|
|
+exports.isString = isString;
|
|
|
|
|
|
- if (player.options.slidesSelector !== '') {
|
|
|
- player.slidesContainer = $(player.options.slidesSelector);
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- media.addEventListener('timeupdate',function() {
|
|
|
- player.displaySlides();
|
|
|
- }, false);
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- }
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- media.addEventListener('loadedmetadata', function() {
|
|
|
- player.displayChapters();
|
|
|
- }, false);
|
|
|
+function escapeHTML(input) {
|
|
|
|
|
|
- player.container.hover(
|
|
|
- function () {
|
|
|
- // chapters
|
|
|
- if (player.hasChapters) {
|
|
|
- player.chapters.removeClass('mejs-offscreen');
|
|
|
- player.chapters.fadeIn(200).height(player.chapters.find('.mejs-chapter').outerHeight());
|
|
|
- }
|
|
|
- },
|
|
|
- function () {
|
|
|
- if (player.hasChapters && !media.paused) {
|
|
|
- player.chapters.fadeOut(200, function() {
|
|
|
- $(this).addClass('mejs-offscreen');
|
|
|
- $(this).css('display','block');
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
+ if (typeof input !== 'string') {
|
|
|
+ throw new Error('Argument passed must be a string');
|
|
|
+ }
|
|
|
|
|
|
- t.container.on('controlsresize', function() {
|
|
|
- t.adjustLanguageBox();
|
|
|
- });
|
|
|
+ var map = {
|
|
|
+ '&': '&',
|
|
|
+ '<': '<',
|
|
|
+ '>': '>',
|
|
|
+ '"': '"'
|
|
|
+ };
|
|
|
|
|
|
- // check for autoplay
|
|
|
- if (player.node.getAttribute('autoplay') !== null) {
|
|
|
- player.chapters.addClass('mejs-offscreen');
|
|
|
- }
|
|
|
- },
|
|
|
+ return input.replace(/[&<>"]/g, function (c) {
|
|
|
+ return map[c];
|
|
|
+ });
|
|
|
+}
|
|
|
|
|
|
- setTrack: function(lang){
|
|
|
+function debounce(func, wait) {
|
|
|
+ var _this = this,
|
|
|
+ _arguments = arguments;
|
|
|
|
|
|
- var t = this,
|
|
|
- i;
|
|
|
+ var immediate = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
|
|
|
|
- if (lang == 'none') {
|
|
|
- t.selectedTrack = null;
|
|
|
- t.captionsButton.removeClass('mejs-captions-enabled');
|
|
|
- } else {
|
|
|
- for (i=0; i<t.tracks.length; i++) {
|
|
|
- if (t.tracks[i].srclang == lang) {
|
|
|
- if (t.selectedTrack === null)
|
|
|
- t.captionsButton.addClass('mejs-captions-enabled');
|
|
|
- t.selectedTrack = t.tracks[i];
|
|
|
- t.captions.attr('lang', t.selectedTrack.srclang);
|
|
|
- t.displayCaptions();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
|
|
|
- loadNextTrack: function() {
|
|
|
- var t = this;
|
|
|
+ if (typeof func !== 'function') {
|
|
|
+ throw new Error('First argument must be a function');
|
|
|
+ }
|
|
|
|
|
|
- t.trackToLoad++;
|
|
|
- if (t.trackToLoad < t.tracks.length) {
|
|
|
- t.isLoadingTrack = true;
|
|
|
- t.loadTrack(t.trackToLoad);
|
|
|
- } else {
|
|
|
- // add done?
|
|
|
- t.isLoadingTrack = false;
|
|
|
+ if (typeof wait !== 'number') {
|
|
|
+ throw new Error('Second argument must be a numeric value');
|
|
|
+ }
|
|
|
|
|
|
- t.checkForTracks();
|
|
|
+ var timeout = void 0;
|
|
|
+ return function () {
|
|
|
+ var context = _this,
|
|
|
+ args = _arguments;
|
|
|
+ var later = function later() {
|
|
|
+ timeout = null;
|
|
|
+ if (!immediate) {
|
|
|
+ func.apply(context, args);
|
|
|
}
|
|
|
- },
|
|
|
+ };
|
|
|
+ var callNow = immediate && !timeout;
|
|
|
+ clearTimeout(timeout);
|
|
|
+ timeout = setTimeout(later, wait);
|
|
|
|
|
|
- loadTrack: function(index){
|
|
|
- var
|
|
|
- t = this,
|
|
|
- track = t.tracks[index],
|
|
|
- after = function() {
|
|
|
+ if (callNow) {
|
|
|
+ func.apply(context, args);
|
|
|
+ }
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
- track.isLoaded = true;
|
|
|
+function isObjectEmpty(instance) {
|
|
|
+ return Object.getOwnPropertyNames(instance).length <= 0;
|
|
|
+}
|
|
|
|
|
|
- t.enableTrackButton(track.srclang, track.label);
|
|
|
+function splitEvents(events, id) {
|
|
|
+ var rwindow = /^((after|before)print|(before)?unload|hashchange|message|o(ff|n)line|page(hide|show)|popstate|resize|storage)\b/;
|
|
|
|
|
|
- t.loadNextTrack();
|
|
|
+ var ret = { d: [], w: [] };
|
|
|
+ (events || '').split(' ').forEach(function (v) {
|
|
|
+ var eventName = '' + v + (id ? '.' + id : '');
|
|
|
|
|
|
- };
|
|
|
+ if (eventName.startsWith('.')) {
|
|
|
+ ret.d.push(eventName);
|
|
|
+ ret.w.push(eventName);
|
|
|
+ } else {
|
|
|
+ ret[rwindow.test(v) ? 'w' : 'd'].push(eventName);
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
+ ret.d = ret.d.join(' ');
|
|
|
+ ret.w = ret.w.join(' ');
|
|
|
+ return ret;
|
|
|
+}
|
|
|
|
|
|
- if (track.src !== undefined || track.src !== "") {
|
|
|
- $.ajax({
|
|
|
- url: track.src,
|
|
|
- dataType: "text",
|
|
|
- success: function(d) {
|
|
|
+function createEvent(eventName, target) {
|
|
|
|
|
|
- // parse the loaded file
|
|
|
- if (typeof d == "string" && (/<tt\s+xml/ig).exec(d)) {
|
|
|
- track.entries = mejs.TrackFormatParser.dfxp.parse(d);
|
|
|
- } else {
|
|
|
- track.entries = mejs.TrackFormatParser.webvtt.parse(d);
|
|
|
- }
|
|
|
+ if (typeof eventName !== 'string') {
|
|
|
+ throw new Error('Event name must be a string');
|
|
|
+ }
|
|
|
|
|
|
- after();
|
|
|
+ var eventFrags = eventName.match(/([a-z]+\.([a-z]+))/i),
|
|
|
+ detail = {
|
|
|
+ target: target
|
|
|
+ };
|
|
|
|
|
|
- if (track.kind == 'chapters') {
|
|
|
- t.media.addEventListener('play', function() {
|
|
|
- if (t.media.duration > 0) {
|
|
|
- t.displayChapters(track);
|
|
|
- }
|
|
|
- }, false);
|
|
|
- }
|
|
|
+ if (eventFrags !== null) {
|
|
|
+ eventName = eventFrags[1];
|
|
|
+ detail.namespace = eventFrags[2];
|
|
|
+ }
|
|
|
|
|
|
- if (track.kind == 'slides') {
|
|
|
- t.setupSlides(track);
|
|
|
- }
|
|
|
- },
|
|
|
- error: function() {
|
|
|
- t.removeTrackButton(track.srclang);
|
|
|
- t.loadNextTrack();
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- },
|
|
|
+ return new window.CustomEvent(eventName, {
|
|
|
+ detail: detail
|
|
|
+ });
|
|
|
+}
|
|
|
|
|
|
- enableTrackButton: function(lang, label) {
|
|
|
- var t = this;
|
|
|
+function isNodeAfter(sourceNode, targetNode) {
|
|
|
|
|
|
- if (label === '') {
|
|
|
- label = mejs.language.codes[lang] || lang;
|
|
|
- }
|
|
|
+ return !!(sourceNode && targetNode && sourceNode.compareDocumentPosition(targetNode) & 2);
|
|
|
+}
|
|
|
|
|
|
- t.captionsButton
|
|
|
- .find('input[value=' + lang + ']')
|
|
|
- .prop('disabled',false)
|
|
|
- .siblings('label')
|
|
|
- .html( label );
|
|
|
+function isString(value) {
|
|
|
+ return typeof value === 'string';
|
|
|
+}
|
|
|
|
|
|
- // auto select
|
|
|
- if (t.options.startLanguage == lang) {
|
|
|
- $('#' + t.id + '_captions_' + lang).prop('checked', true).trigger('click');
|
|
|
- }
|
|
|
+_mejs2.default.Utils = _mejs2.default.Utils || {};
|
|
|
+_mejs2.default.Utils.escapeHTML = escapeHTML;
|
|
|
+_mejs2.default.Utils.debounce = debounce;
|
|
|
+_mejs2.default.Utils.isObjectEmpty = isObjectEmpty;
|
|
|
+_mejs2.default.Utils.splitEvents = splitEvents;
|
|
|
+_mejs2.default.Utils.createEvent = createEvent;
|
|
|
+_mejs2.default.Utils.isNodeAfter = isNodeAfter;
|
|
|
+_mejs2.default.Utils.isString = isString;
|
|
|
|
|
|
- t.adjustLanguageBox();
|
|
|
- },
|
|
|
+},{"7":7}],28:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- removeTrackButton: function(lang) {
|
|
|
- var t = this;
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.typeChecks = undefined;
|
|
|
+exports.absolutizeUrl = absolutizeUrl;
|
|
|
+exports.formatType = formatType;
|
|
|
+exports.getMimeFromType = getMimeFromType;
|
|
|
+exports.getTypeFromFile = getTypeFromFile;
|
|
|
+exports.getExtension = getExtension;
|
|
|
+exports.normalizeExtension = normalizeExtension;
|
|
|
|
|
|
- t.captionsButton.find('input[value=' + lang + ']').closest('li').remove();
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- t.adjustLanguageBox();
|
|
|
- },
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- addTrackButton: function(lang, label) {
|
|
|
- var t = this;
|
|
|
- if (label === '') {
|
|
|
- label = mejs.language.codes[lang] || lang;
|
|
|
- }
|
|
|
+var _general = _dereq_(27);
|
|
|
|
|
|
- t.captionsButton.find('ul').append(
|
|
|
- $('<li>'+
|
|
|
- '<input type="radio" name="' + t.id + '_captions" id="' + t.id + '_captions_' + lang + '" value="' + lang + '" disabled="disabled" />' +
|
|
|
- '<label for="' + t.id + '_captions_' + lang + '">' + label + ' (loading)' + '</label>'+
|
|
|
- '</li>')
|
|
|
- );
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- t.adjustLanguageBox();
|
|
|
+var typeChecks = exports.typeChecks = [];
|
|
|
|
|
|
- // remove this from the dropdownlist (if it exists)
|
|
|
- t.container.find('.mejs-captions-translations option[value=' + lang + ']').remove();
|
|
|
- },
|
|
|
+function absolutizeUrl(url) {
|
|
|
|
|
|
- adjustLanguageBox:function() {
|
|
|
- var t = this;
|
|
|
- // adjust the size of the outer box
|
|
|
- t.captionsButton.find('.mejs-captions-selector').height(
|
|
|
- t.captionsButton.find('.mejs-captions-selector ul').outerHeight(true) +
|
|
|
- t.captionsButton.find('.mejs-captions-translations').outerHeight(true)
|
|
|
- );
|
|
|
- },
|
|
|
+ if (typeof url !== 'string') {
|
|
|
+ throw new Error('`url` argument must be a string');
|
|
|
+ }
|
|
|
|
|
|
- checkForTracks: function() {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- hasSubtitles = false;
|
|
|
-
|
|
|
- // check if any subtitles
|
|
|
- if (t.options.hideCaptionsButtonWhenEmpty) {
|
|
|
- for (var i=0; i<t.tracks.length; i++) {
|
|
|
- var kind = t.tracks[i].kind;
|
|
|
- if ((kind === 'subtitles' || kind === 'captions') && t.tracks[i].isLoaded) {
|
|
|
- hasSubtitles = true;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
+ var el = document.createElement('div');
|
|
|
+ el.innerHTML = '<a href="' + (0, _general.escapeHTML)(url) + '">x</a>';
|
|
|
+ return el.firstChild.href;
|
|
|
+}
|
|
|
|
|
|
- if (!hasSubtitles) {
|
|
|
- t.captionsButton.hide();
|
|
|
- t.setControlsSize();
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
+function formatType(url) {
|
|
|
+ var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
|
|
|
|
- displayCaptions: function() {
|
|
|
+ return url && !type ? getTypeFromFile(url) : type;
|
|
|
+}
|
|
|
|
|
|
- if (typeof this.tracks == 'undefined')
|
|
|
- return;
|
|
|
+function getMimeFromType(type) {
|
|
|
|
|
|
- var
|
|
|
- t = this,
|
|
|
- i,
|
|
|
- track = t.selectedTrack;
|
|
|
-
|
|
|
- if (track !== null && track.isLoaded) {
|
|
|
- for (i=0; i<track.entries.times.length; i++) {
|
|
|
- if (t.media.currentTime >= track.entries.times[i].start && t.media.currentTime <= track.entries.times[i].stop) {
|
|
|
- // Set the line before the timecode as a class so the cue can be targeted if needed
|
|
|
- t.captionsText.html(track.entries.text[i]).attr('class', 'mejs-captions-text ' + (track.entries.times[i].identifier || ''));
|
|
|
- t.captions.show().height(0);
|
|
|
- return; // exit out if one is visible;
|
|
|
- }
|
|
|
- }
|
|
|
- t.captions.hide();
|
|
|
- } else {
|
|
|
- t.captions.hide();
|
|
|
- }
|
|
|
- },
|
|
|
+ if (typeof type !== 'string') {
|
|
|
+ throw new Error('`type` argument must be a string');
|
|
|
+ }
|
|
|
|
|
|
- setupSlides: function(track) {
|
|
|
- var t = this;
|
|
|
+ return type && type.indexOf(';') > -1 ? type.substr(0, type.indexOf(';')) : type;
|
|
|
+}
|
|
|
|
|
|
- t.slides = track;
|
|
|
- t.slides.entries.imgs = [t.slides.entries.text.length];
|
|
|
- t.showSlide(0);
|
|
|
+function getTypeFromFile(url) {
|
|
|
|
|
|
- },
|
|
|
+ if (typeof url !== 'string') {
|
|
|
+ throw new Error('`url` argument must be a string');
|
|
|
+ }
|
|
|
|
|
|
- showSlide: function(index) {
|
|
|
- if (typeof this.tracks == 'undefined' || typeof this.slidesContainer == 'undefined') {
|
|
|
- return;
|
|
|
- }
|
|
|
+ for (var i = 0, total = typeChecks.length; i < total; i++) {
|
|
|
+ var type = typeChecks[i](url);
|
|
|
|
|
|
- var t = this,
|
|
|
- url = t.slides.entries.text[index],
|
|
|
- img = t.slides.entries.imgs[index];
|
|
|
+ if (type) {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if (typeof img == 'undefined' || typeof img.fadeIn == 'undefined') {
|
|
|
+ var ext = getExtension(url),
|
|
|
+ normalizedExt = normalizeExtension(ext);
|
|
|
|
|
|
- t.slides.entries.imgs[index] = img = $('<img src="' + url + '">')
|
|
|
- .on('load', function() {
|
|
|
- img.appendTo(t.slidesContainer)
|
|
|
- .hide()
|
|
|
- .fadeIn()
|
|
|
- .siblings(':visible')
|
|
|
- .fadeOut();
|
|
|
+ var mime = 'video/mp4';
|
|
|
|
|
|
- });
|
|
|
+ if (normalizedExt) {
|
|
|
+ if (~['mp4', 'm4v', 'ogg', 'ogv', 'webm', 'flv', 'mpeg', 'mov'].indexOf(normalizedExt)) {
|
|
|
+ mime = 'video/' + normalizedExt;
|
|
|
+ } else if (~['mp3', 'oga', 'wav', 'mid', 'midi'].indexOf(normalizedExt)) {
|
|
|
+ mime = 'audio/' + normalizedExt;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- } else {
|
|
|
+ return mime;
|
|
|
+}
|
|
|
|
|
|
- if (!img.is(':visible') && !img.is(':animated')) {
|
|
|
+function getExtension(url) {
|
|
|
|
|
|
- //
|
|
|
+ if (typeof url !== 'string') {
|
|
|
+ throw new Error('`url` argument must be a string');
|
|
|
+ }
|
|
|
|
|
|
- img.fadeIn()
|
|
|
- .siblings(':visible')
|
|
|
- .fadeOut();
|
|
|
- }
|
|
|
- }
|
|
|
+ var baseUrl = url.split('?')[0],
|
|
|
+ baseName = baseUrl.split('\\').pop().split('/').pop();
|
|
|
+ return ~baseName.indexOf('.') ? baseName.substring(baseName.lastIndexOf('.') + 1) : '';
|
|
|
+}
|
|
|
|
|
|
- },
|
|
|
+function normalizeExtension(extension) {
|
|
|
|
|
|
- displaySlides: function() {
|
|
|
+ if (typeof extension !== 'string') {
|
|
|
+ throw new Error('`extension` argument must be a string');
|
|
|
+ }
|
|
|
|
|
|
- if (typeof this.slides == 'undefined')
|
|
|
- return;
|
|
|
+ switch (extension) {
|
|
|
+ case 'mp4':
|
|
|
+ case 'm4v':
|
|
|
+ return 'mp4';
|
|
|
+ case 'webm':
|
|
|
+ case 'webma':
|
|
|
+ case 'webmv':
|
|
|
+ return 'webm';
|
|
|
+ case 'ogg':
|
|
|
+ case 'oga':
|
|
|
+ case 'ogv':
|
|
|
+ return 'ogg';
|
|
|
+ default:
|
|
|
+ return extension;
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- var
|
|
|
- t = this,
|
|
|
- slides = t.slides,
|
|
|
- i;
|
|
|
+_mejs2.default.Utils = _mejs2.default.Utils || {};
|
|
|
+_mejs2.default.Utils.typeChecks = typeChecks;
|
|
|
+_mejs2.default.Utils.absolutizeUrl = absolutizeUrl;
|
|
|
+_mejs2.default.Utils.formatType = formatType;
|
|
|
+_mejs2.default.Utils.getMimeFromType = getMimeFromType;
|
|
|
+_mejs2.default.Utils.getTypeFromFile = getTypeFromFile;
|
|
|
+_mejs2.default.Utils.getExtension = getExtension;
|
|
|
+_mejs2.default.Utils.normalizeExtension = normalizeExtension;
|
|
|
|
|
|
- for (i=0; i<slides.entries.times.length; i++) {
|
|
|
- if (t.media.currentTime >= slides.entries.times[i].start && t.media.currentTime <= slides.entries.times[i].stop){
|
|
|
+},{"27":27,"7":7}],29:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- t.showSlide(i);
|
|
|
+var _document = _dereq_(2);
|
|
|
|
|
|
- return; // exit out if one is visible;
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
+var _document2 = _interopRequireDefault(_document);
|
|
|
|
|
|
- displayChapters: function() {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- i;
|
|
|
+var _promisePolyfill = _dereq_(4);
|
|
|
|
|
|
- for (i=0; i<t.tracks.length; i++) {
|
|
|
- if (t.tracks[i].kind == 'chapters' && t.tracks[i].isLoaded) {
|
|
|
- t.drawChapters(t.tracks[i]);
|
|
|
- t.hasChapters = true;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
+var _promisePolyfill2 = _interopRequireDefault(_promisePolyfill);
|
|
|
|
|
|
- drawChapters: function(chapters) {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- i,
|
|
|
- dur,
|
|
|
- //width,
|
|
|
- //left,
|
|
|
- percent = 0,
|
|
|
- usedPercent = 0;
|
|
|
-
|
|
|
- t.chapters.empty();
|
|
|
-
|
|
|
- for (i=0; i<chapters.entries.times.length; i++) {
|
|
|
- dur = chapters.entries.times[i].stop - chapters.entries.times[i].start;
|
|
|
- percent = Math.floor(dur / t.media.duration * 100);
|
|
|
- if (percent + usedPercent > 100 || // too large
|
|
|
- i == chapters.entries.times.length-1 && percent + usedPercent < 100) // not going to fill it in
|
|
|
- {
|
|
|
- percent = 100 - usedPercent;
|
|
|
- }
|
|
|
- //width = Math.floor(t.width * dur / t.media.duration);
|
|
|
- //left = Math.floor(t.width * chapters.entries.times[i].start / t.media.duration);
|
|
|
- //if (left + width > t.width) {
|
|
|
- // width = t.width - left;
|
|
|
- //}
|
|
|
-
|
|
|
- t.chapters.append( $(
|
|
|
- '<div class="mejs-chapter" rel="' + chapters.entries.times[i].start + '" style="left: ' + usedPercent.toString() + '%;width: ' + percent.toString() + '%;">' +
|
|
|
- '<div class="mejs-chapter-block' + ((i==chapters.entries.times.length-1) ? ' mejs-chapter-block-last' : '') + '">' +
|
|
|
- '<span class="ch-title">' + chapters.entries.text[i] + '</span>' +
|
|
|
- '<span class="ch-time">' + mejs.Utility.secondsToTimeCode(chapters.entries.times[i].start, t.options) + '–' + mejs.Utility.secondsToTimeCode(chapters.entries.times[i].stop, t.options) + '</span>' +
|
|
|
- '</div>' +
|
|
|
- '</div>'));
|
|
|
- usedPercent += percent;
|
|
|
- }
|
|
|
-
|
|
|
- t.chapters.find('div.mejs-chapter').click(function() {
|
|
|
- t.media.setCurrentTime( parseFloat( $(this).attr('rel') ) );
|
|
|
- if (t.media.paused) {
|
|
|
- t.media.play();
|
|
|
- }
|
|
|
- });
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- t.chapters.show();
|
|
|
+(function (arr) {
|
|
|
+ arr.forEach(function (item) {
|
|
|
+ if (item.hasOwnProperty('remove')) {
|
|
|
+ return;
|
|
|
}
|
|
|
+ Object.defineProperty(item, 'remove', {
|
|
|
+ configurable: true,
|
|
|
+ enumerable: true,
|
|
|
+ writable: true,
|
|
|
+ value: function remove() {
|
|
|
+ this.parentNode.removeChild(this);
|
|
|
+ }
|
|
|
+ });
|
|
|
});
|
|
|
+})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);
|
|
|
+
|
|
|
+(function () {
|
|
|
+
|
|
|
+ if (typeof window.CustomEvent === 'function') {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ function CustomEvent(event, params) {
|
|
|
+ params = params || { bubbles: false, cancelable: false, detail: undefined };
|
|
|
+ var evt = _document2.default.createEvent('CustomEvent');
|
|
|
+ evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
|
|
|
+ return evt;
|
|
|
+ }
|
|
|
|
|
|
+ CustomEvent.prototype = window.Event.prototype;
|
|
|
+ window.CustomEvent = CustomEvent;
|
|
|
+})();
|
|
|
|
|
|
+if (typeof Object.assign !== 'function') {
|
|
|
+ Object.assign = function (target) {
|
|
|
|
|
|
- mejs.language = {
|
|
|
- codes: {
|
|
|
- af:'Afrikaans',
|
|
|
- sq:'Albanian',
|
|
|
- ar:'Arabic',
|
|
|
- be:'Belarusian',
|
|
|
- bg:'Bulgarian',
|
|
|
- ca:'Catalan',
|
|
|
- zh:'Chinese',
|
|
|
- 'zh-cn':'Chinese Simplified',
|
|
|
- 'zh-tw':'Chinese Traditional',
|
|
|
- hr:'Croatian',
|
|
|
- cs:'Czech',
|
|
|
- da:'Danish',
|
|
|
- nl:'Dutch',
|
|
|
- en:'English',
|
|
|
- et:'Estonian',
|
|
|
- fl:'Filipino',
|
|
|
- fi:'Finnish',
|
|
|
- fr:'French',
|
|
|
- gl:'Galician',
|
|
|
- de:'German',
|
|
|
- el:'Greek',
|
|
|
- ht:'Haitian Creole',
|
|
|
- iw:'Hebrew',
|
|
|
- hi:'Hindi',
|
|
|
- hu:'Hungarian',
|
|
|
- is:'Icelandic',
|
|
|
- id:'Indonesian',
|
|
|
- ga:'Irish',
|
|
|
- it:'Italian',
|
|
|
- ja:'Japanese',
|
|
|
- ko:'Korean',
|
|
|
- lv:'Latvian',
|
|
|
- lt:'Lithuanian',
|
|
|
- mk:'Macedonian',
|
|
|
- ms:'Malay',
|
|
|
- mt:'Maltese',
|
|
|
- no:'Norwegian',
|
|
|
- fa:'Persian',
|
|
|
- pl:'Polish',
|
|
|
- pt:'Portuguese',
|
|
|
- // 'pt-pt':'Portuguese (Portugal)',
|
|
|
- ro:'Romanian',
|
|
|
- ru:'Russian',
|
|
|
- sr:'Serbian',
|
|
|
- sk:'Slovak',
|
|
|
- sl:'Slovenian',
|
|
|
- es:'Spanish',
|
|
|
- sw:'Swahili',
|
|
|
- sv:'Swedish',
|
|
|
- tl:'Tagalog',
|
|
|
- th:'Thai',
|
|
|
- tr:'Turkish',
|
|
|
- uk:'Ukrainian',
|
|
|
- vi:'Vietnamese',
|
|
|
- cy:'Welsh',
|
|
|
- yi:'Yiddish'
|
|
|
+ if (target === null || target === undefined) {
|
|
|
+ throw new TypeError('Cannot convert undefined or null to object');
|
|
|
}
|
|
|
- };
|
|
|
|
|
|
- /*
|
|
|
- Parses WebVTT format which should be formatted as
|
|
|
- ================================
|
|
|
- WEBVTT
|
|
|
-
|
|
|
- 1
|
|
|
- 00:00:01,1 --> 00:00:05,000
|
|
|
- A line of text
|
|
|
-
|
|
|
- 2
|
|
|
- 00:01:15,1 --> 00:02:05,000
|
|
|
- A second line of text
|
|
|
-
|
|
|
- ===============================
|
|
|
-
|
|
|
- Adapted from: http://www.delphiki.com/html5/playr
|
|
|
- */
|
|
|
- mejs.TrackFormatParser = {
|
|
|
- webvtt: {
|
|
|
- pattern_timecode: /^((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{1,3})?) --\> ((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,
|
|
|
-
|
|
|
- parse: function(trackText) {
|
|
|
- var
|
|
|
- i = 0,
|
|
|
- lines = mejs.TrackFormatParser.split2(trackText, /\r?\n/),
|
|
|
- entries = {text:[], times:[]},
|
|
|
- timecode,
|
|
|
- text,
|
|
|
- identifier;
|
|
|
- for(; i<lines.length; i++) {
|
|
|
- timecode = this.pattern_timecode.exec(lines[i]);
|
|
|
-
|
|
|
- if (timecode && i<lines.length) {
|
|
|
- if ((i - 1) >= 0 && lines[i - 1] !== '') {
|
|
|
- identifier = lines[i - 1];
|
|
|
- }
|
|
|
- i++;
|
|
|
- // grab all the (possibly multi-line) text that follows
|
|
|
- text = lines[i];
|
|
|
- i++;
|
|
|
- while(lines[i] !== '' && i<lines.length){
|
|
|
- text = text + '\n' + lines[i];
|
|
|
- i++;
|
|
|
- }
|
|
|
- text = $.trim(text).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, "<a href='$1' target='_blank'>$1</a>");
|
|
|
- // Text is in a different array so I can use .join
|
|
|
- entries.text.push(text);
|
|
|
- entries.times.push(
|
|
|
- {
|
|
|
- identifier: identifier,
|
|
|
- start: (mejs.Utility.convertSMPTEtoSeconds(timecode[1]) === 0) ? 0.200 : mejs.Utility.convertSMPTEtoSeconds(timecode[1]),
|
|
|
- stop: mejs.Utility.convertSMPTEtoSeconds(timecode[3]),
|
|
|
- settings: timecode[5]
|
|
|
- });
|
|
|
- }
|
|
|
- identifier = '';
|
|
|
- }
|
|
|
- return entries;
|
|
|
- }
|
|
|
- },
|
|
|
- // Thanks to Justin Capella: https://github.com/johndyer/mediaelement/pull/420
|
|
|
- dfxp: {
|
|
|
- parse: function(trackText) {
|
|
|
- trackText = $(trackText).filter("tt");
|
|
|
- var
|
|
|
- i = 0,
|
|
|
- container = trackText.children("div").eq(0),
|
|
|
- lines = container.find("p"),
|
|
|
- styleNode = trackText.find("#" + container.attr("style")),
|
|
|
- styles,
|
|
|
- text,
|
|
|
- entries = {text:[], times:[]};
|
|
|
-
|
|
|
-
|
|
|
- if (styleNode.length) {
|
|
|
- var attributes = styleNode.removeAttr("id").get(0).attributes;
|
|
|
- if (attributes.length) {
|
|
|
- styles = {};
|
|
|
- for (i = 0; i < attributes.length; i++) {
|
|
|
- styles[attributes[i].name.split(":")[1]] = attributes[i].value;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ var to = Object(target);
|
|
|
|
|
|
- for(i = 0; i<lines.length; i++) {
|
|
|
- var style;
|
|
|
- var _temp_times = {
|
|
|
- start: null,
|
|
|
- stop: null,
|
|
|
- style: null
|
|
|
- };
|
|
|
- if (lines.eq(i).attr("begin")) _temp_times.start = mejs.Utility.convertSMPTEtoSeconds(lines.eq(i).attr("begin"));
|
|
|
- if (!_temp_times.start && lines.eq(i-1).attr("end")) _temp_times.start = mejs.Utility.convertSMPTEtoSeconds(lines.eq(i-1).attr("end"));
|
|
|
- if (lines.eq(i).attr("end")) _temp_times.stop = mejs.Utility.convertSMPTEtoSeconds(lines.eq(i).attr("end"));
|
|
|
- if (!_temp_times.stop && lines.eq(i+1).attr("begin")) _temp_times.stop = mejs.Utility.convertSMPTEtoSeconds(lines.eq(i+1).attr("begin"));
|
|
|
- if (styles) {
|
|
|
- style = "";
|
|
|
- for (var _style in styles) {
|
|
|
- style += _style + ":" + styles[_style] + ";";
|
|
|
- }
|
|
|
+ for (var index = 1, total = arguments.length; index < total; index++) {
|
|
|
+ var nextSource = arguments[index];
|
|
|
+
|
|
|
+ if (nextSource !== null) {
|
|
|
+ for (var nextKey in nextSource) {
|
|
|
+ if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
|
|
|
+ to[nextKey] = nextSource[nextKey];
|
|
|
}
|
|
|
- if (style) _temp_times.style = style;
|
|
|
- if (_temp_times.start === 0) _temp_times.start = 0.200;
|
|
|
- entries.times.push(_temp_times);
|
|
|
- text = $.trim(lines.eq(i).html()).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, "<a href='$1' target='_blank'>$1</a>");
|
|
|
- entries.text.push(text);
|
|
|
}
|
|
|
- return entries;
|
|
|
}
|
|
|
- },
|
|
|
- split2: function (text, regex) {
|
|
|
- // normal version for compliant browsers
|
|
|
- // see below for IE fix
|
|
|
- return text.split(regex);
|
|
|
}
|
|
|
+ return to;
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+if (!String.prototype.startsWith) {
|
|
|
+ String.prototype.startsWith = function (searchString, position) {
|
|
|
+ position = position || 0;
|
|
|
+ return this.substr(position, searchString.length) === searchString;
|
|
|
};
|
|
|
+}
|
|
|
|
|
|
- // test for browsers with bad String.split method.
|
|
|
- if ('x\n\ny'.split(/\n/gi).length != 3) {
|
|
|
- // add super slow IE8 and below version
|
|
|
- mejs.TrackFormatParser.split2 = function(text, regex) {
|
|
|
- var
|
|
|
- parts = [],
|
|
|
- chunk = '',
|
|
|
- i;
|
|
|
+if (!Element.prototype.matches) {
|
|
|
+ Element.prototype.matches = Element.prototype.matchesSelector || Element.prototype.mozMatchesSelector || Element.prototype.msMatchesSelector || Element.prototype.oMatchesSelector || Element.prototype.webkitMatchesSelector || function (s) {
|
|
|
+ var matches = (this.document || this.ownerDocument).querySelectorAll(s),
|
|
|
+ i = matches.length - 1;
|
|
|
+ while (--i >= 0 && matches.item(i) !== this) {}
|
|
|
+ return i > -1;
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
- for (i=0; i<text.length; i++) {
|
|
|
- chunk += text.substring(i,i+1);
|
|
|
- if (regex.test(chunk)) {
|
|
|
- parts.push(chunk.replace(regex, ''));
|
|
|
- chunk = '';
|
|
|
- }
|
|
|
- }
|
|
|
- parts.push(chunk);
|
|
|
- return parts;
|
|
|
- };
|
|
|
- }
|
|
|
+if (window.Element && !Element.prototype.closest) {
|
|
|
+ Element.prototype.closest = function (s) {
|
|
|
+ var matches = (this.document || this.ownerDocument).querySelectorAll(s),
|
|
|
+ i = void 0,
|
|
|
+ el = this;
|
|
|
+ do {
|
|
|
+ i = matches.length;
|
|
|
+ while (--i >= 0 && matches.item(i) !== el) {}
|
|
|
+ } while (i < 0 && (el = el.parentElement));
|
|
|
+ return el;
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+(function () {
|
|
|
+ var lastTime = 0;
|
|
|
+ var vendors = ['ms', 'moz', 'webkit', 'o'];
|
|
|
+ for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
|
|
|
+ window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
|
|
|
+ window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];
|
|
|
+ }
|
|
|
|
|
|
-// Source Chooser Plugin
|
|
|
-(function($) {
|
|
|
+ if (!window.requestAnimationFrame) window.requestAnimationFrame = function (callback) {
|
|
|
+ var currTime = new Date().getTime();
|
|
|
+ var timeToCall = Math.max(0, 16 - (currTime - lastTime));
|
|
|
+ var id = window.setTimeout(function () {
|
|
|
+ callback(currTime + timeToCall);
|
|
|
+ }, timeToCall);
|
|
|
+ lastTime = currTime + timeToCall;
|
|
|
+ return id;
|
|
|
+ };
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- sourcechooserText: ''
|
|
|
- });
|
|
|
+ if (!window.cancelAnimationFrame) window.cancelAnimationFrame = function (id) {
|
|
|
+ clearTimeout(id);
|
|
|
+ };
|
|
|
+})();
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildsourcechooser: function(player, controls, layers, media) {
|
|
|
-
|
|
|
- var
|
|
|
- t = this,
|
|
|
- sourceTitle = t.options.sourcechooserText ? t.options.sourcechooserText : mejs.i18n.t('mejs.source-chooser'),
|
|
|
- hoverTimeout
|
|
|
- ;
|
|
|
-
|
|
|
- player.sourcechooserButton =
|
|
|
- $('<div class="mejs-button mejs-sourcechooser-button">'+
|
|
|
- '<button type="button" role="button" aria-haspopup="true" aria-owns="' + t.id + '" title="' + sourceTitle + '" aria-label="' + sourceTitle + '"></button>'+
|
|
|
- '<div class="mejs-sourcechooser-selector mejs-offscreen" role="menu" aria-expanded="false" aria-hidden="true">'+
|
|
|
- '<ul>'+
|
|
|
- '</ul>'+
|
|
|
- '</div>'+
|
|
|
- '</div>')
|
|
|
- .appendTo(controls)
|
|
|
-
|
|
|
- // hover
|
|
|
- .hover(function() {
|
|
|
- clearTimeout(hoverTimeout);
|
|
|
- player.showSourcechooserSelector();
|
|
|
- }, function() {
|
|
|
- var self = $(this);
|
|
|
- hoverTimeout = setTimeout(function () {
|
|
|
- player.hideSourcechooserSelector();
|
|
|
- }, 500);
|
|
|
- })
|
|
|
-
|
|
|
- // keyboard menu activation
|
|
|
- .on('keydown', function (e) {
|
|
|
- var keyCode = e.keyCode;
|
|
|
-
|
|
|
- switch (keyCode) {
|
|
|
- case 32: // space
|
|
|
- if (!mejs.MediaFeatures.isFirefox) { // space sends the click event in Firefox
|
|
|
- player.showSourcechooserSelector();
|
|
|
- }
|
|
|
- $(this).find('.mejs-sourcechooser-selector')
|
|
|
- .find('input[type=radio]:checked').first().focus();
|
|
|
- break;
|
|
|
- case 13: // enter
|
|
|
- player.showSourcechooserSelector();
|
|
|
- $(this).find('.mejs-sourcechooser-selector')
|
|
|
- .find('input[type=radio]:checked').first().focus();
|
|
|
- break;
|
|
|
- case 27: // esc
|
|
|
- player.hideSourcechooserSelector();
|
|
|
- $(this).find('button').focus();
|
|
|
- break;
|
|
|
- default:
|
|
|
- return true;
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
- // close menu when tabbing away
|
|
|
- .on('focusout', mejs.Utility.debounce(function (e) { // Safari triggers focusout multiple times
|
|
|
- // Firefox does NOT support e.relatedTarget to see which element
|
|
|
- // just lost focus, so wait to find the next focused element
|
|
|
- setTimeout(function () {
|
|
|
- var parent = $(document.activeElement).closest('.mejs-sourcechooser-selector');
|
|
|
- if (!parent.length) {
|
|
|
- // focus is outside the control; close menu
|
|
|
- player.hideSourcechooserSelector();
|
|
|
- }
|
|
|
- }, 0);
|
|
|
- }, 100))
|
|
|
-
|
|
|
- // handle clicks to the source radio buttons
|
|
|
- .delegate('input[type=radio]', 'click', function() {
|
|
|
- // set aria states
|
|
|
- $(this).attr('aria-selected', true).attr('checked', 'checked');
|
|
|
- $(this).closest('.mejs-sourcechooser-selector').find('input[type=radio]').not(this).attr('aria-selected', 'false').removeAttr('checked');
|
|
|
-
|
|
|
- var src = this.value;
|
|
|
-
|
|
|
- if (media.currentSrc != src) {
|
|
|
- var currentTime = media.currentTime;
|
|
|
- var paused = media.paused;
|
|
|
- media.pause();
|
|
|
- media.setSrc(src);
|
|
|
-
|
|
|
- media.addEventListener('loadedmetadata', function(e) {
|
|
|
- media.currentTime = currentTime;
|
|
|
- }, true);
|
|
|
-
|
|
|
- var canPlayAfterSourceSwitchHandler = function(e) {
|
|
|
- if (!paused) {
|
|
|
- media.play();
|
|
|
- }
|
|
|
- media.removeEventListener("canplay", canPlayAfterSourceSwitchHandler, true);
|
|
|
- };
|
|
|
- media.addEventListener('canplay', canPlayAfterSourceSwitchHandler, true);
|
|
|
- media.load();
|
|
|
- }
|
|
|
- })
|
|
|
+if (/firefox/i.test(navigator.userAgent)) {
|
|
|
+ window.mediaElementJsOldGetComputedStyle = window.getComputedStyle;
|
|
|
+ window.getComputedStyle = function (el, pseudoEl) {
|
|
|
+ var t = window.mediaElementJsOldGetComputedStyle(el, pseudoEl);
|
|
|
+ return t === null ? { getPropertyValue: function getPropertyValue() {} } : t;
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
- // Handle click so that screen readers can toggle the menu
|
|
|
- .delegate('button', 'click', function (e) {
|
|
|
- if ($(this).siblings('.mejs-sourcechooser-selector').hasClass('mejs-offscreen')) {
|
|
|
- player.showSourcechooserSelector();
|
|
|
- $(this).siblings('.mejs-sourcechooser-selector').find('input[type=radio]:checked').first().focus();
|
|
|
- } else {
|
|
|
- player.hideSourcechooserSelector();
|
|
|
- }
|
|
|
- });
|
|
|
+if (!window.Promise) {
|
|
|
+ window.Promise = _promisePolyfill2.default;
|
|
|
+}
|
|
|
|
|
|
- // add to list
|
|
|
- for (var i in this.node.children) {
|
|
|
- var src = this.node.children[i];
|
|
|
- if (src.nodeName === 'SOURCE' && (media.canPlayType(src.type) == 'probably' || media.canPlayType(src.type) == 'maybe')) {
|
|
|
- player.addSourceButton(src.src, src.title, src.type, media.src == src.src);
|
|
|
+(function (constructor) {
|
|
|
+ if (constructor && constructor.prototype && constructor.prototype.children === null) {
|
|
|
+ Object.defineProperty(constructor.prototype, 'children', {
|
|
|
+ get: function get() {
|
|
|
+ var i = 0,
|
|
|
+ node = void 0,
|
|
|
+ nodes = this.childNodes,
|
|
|
+ children = [];
|
|
|
+ while (node = nodes[i++]) {
|
|
|
+ if (node.nodeType === 1) {
|
|
|
+ children.push(node);
|
|
|
+ }
|
|
|
}
|
|
|
+ return children;
|
|
|
}
|
|
|
- },
|
|
|
+ });
|
|
|
+ }
|
|
|
+})(window.Node || window.Element);
|
|
|
|
|
|
- addSourceButton: function(src, label, type, isCurrent) {
|
|
|
- var t = this;
|
|
|
- if (label === '' || label == undefined) {
|
|
|
- label = src;
|
|
|
- }
|
|
|
- type = type.split('/')[1];
|
|
|
+},{"2":2,"4":4}],30:[function(_dereq_,module,exports){
|
|
|
+'use strict';
|
|
|
|
|
|
- t.sourcechooserButton.find('ul').append(
|
|
|
- $('<li>'+
|
|
|
- '<input type="radio" name="' + t.id + '_sourcechooser" id="' + t.id + '_sourcechooser_' + label + type + '" role="menuitemradio" value="' + src + '" ' + (isCurrent ? 'checked="checked"' : '') + 'aria-selected="' + isCurrent + '"' + ' />'+
|
|
|
- '<label for="' + t.id + '_sourcechooser_' + label + type + '" aria-hidden="true">' + label + ' (' + type + ')</label>'+
|
|
|
- '</li>')
|
|
|
- );
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.isDropFrame = isDropFrame;
|
|
|
+exports.secondsToTimeCode = secondsToTimeCode;
|
|
|
+exports.timeCodeToSeconds = timeCodeToSeconds;
|
|
|
+exports.calculateTimeFormat = calculateTimeFormat;
|
|
|
+exports.convertSMPTEtoSeconds = convertSMPTEtoSeconds;
|
|
|
|
|
|
- t.adjustSourcechooserBox();
|
|
|
+var _mejs = _dereq_(7);
|
|
|
|
|
|
- },
|
|
|
+var _mejs2 = _interopRequireDefault(_mejs);
|
|
|
|
|
|
- adjustSourcechooserBox: function() {
|
|
|
- var t = this;
|
|
|
- // adjust the size of the outer box
|
|
|
- t.sourcechooserButton.find('.mejs-sourcechooser-selector').height(
|
|
|
- t.sourcechooserButton.find('.mejs-sourcechooser-selector ul').outerHeight(true)
|
|
|
- );
|
|
|
- },
|
|
|
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
- hideSourcechooserSelector: function () {
|
|
|
- this.sourcechooserButton.find('.mejs-sourcechooser-selector')
|
|
|
- .addClass('mejs-offscreen')
|
|
|
- .attr('aria-expanded', 'false')
|
|
|
- .attr('aria-hidden', 'true')
|
|
|
- .find('input[type=radio]') // make radios not fucusable
|
|
|
- .attr('tabindex', '-1');
|
|
|
- },
|
|
|
+function isDropFrame() {
|
|
|
+ var fps = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 25;
|
|
|
|
|
|
- showSourcechooserSelector: function () {
|
|
|
- this.sourcechooserButton.find('.mejs-sourcechooser-selector')
|
|
|
- .removeClass('mejs-offscreen')
|
|
|
- .attr('aria-expanded', 'true')
|
|
|
- .attr('aria-hidden', 'false')
|
|
|
- .find('input[type=radio]')
|
|
|
- .attr('tabindex', '0');
|
|
|
+ return !(fps % 1 === 0);
|
|
|
+}
|
|
|
+function secondsToTimeCode(time) {
|
|
|
+ var forceHours = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
|
+ var showFrameCount = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
|
+ var fps = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 25;
|
|
|
+ var secondsDecimalLength = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
|
|
|
+
|
|
|
+
|
|
|
+ time = !time || typeof time !== 'number' || time < 0 ? 0 : time;
|
|
|
+
|
|
|
+ var dropFrames = Math.round(fps * 0.066666),
|
|
|
+ timeBase = Math.round(fps),
|
|
|
+ framesPer24Hours = Math.round(fps * 3600) * 24,
|
|
|
+ framesPer10Minutes = Math.round(fps * 600),
|
|
|
+ frameSep = isDropFrame(fps) ? ';' : ':',
|
|
|
+ hours = void 0,
|
|
|
+ minutes = void 0,
|
|
|
+ seconds = void 0,
|
|
|
+ frames = void 0,
|
|
|
+ f = Math.round(time * fps);
|
|
|
+
|
|
|
+ if (isDropFrame(fps)) {
|
|
|
+
|
|
|
+ if (f < 0) {
|
|
|
+ f = framesPer24Hours + f;
|
|
|
}
|
|
|
- });
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+ f = f % framesPer24Hours;
|
|
|
|
|
|
-/*
|
|
|
-* ContextMenu Plugin
|
|
|
-*
|
|
|
-*
|
|
|
-*/
|
|
|
+ var d = Math.floor(f / framesPer10Minutes);
|
|
|
+ var m = f % framesPer10Minutes;
|
|
|
+ f = f + dropFrames * 9 * d;
|
|
|
+ if (m > dropFrames) {
|
|
|
+ f = f + dropFrames * Math.floor((m - dropFrames) / Math.round(timeBase * 60 - dropFrames));
|
|
|
+ }
|
|
|
|
|
|
-(function($) {
|
|
|
+ var timeBaseDivision = Math.floor(f / timeBase);
|
|
|
|
|
|
-$.extend(mejs.MepDefaults,
|
|
|
- { 'contextMenuItems': [
|
|
|
- // demo of a fullscreen option
|
|
|
- {
|
|
|
- render: function(player) {
|
|
|
-
|
|
|
- // check for fullscreen plugin
|
|
|
- if (typeof player.enterFullScreen == 'undefined')
|
|
|
- return null;
|
|
|
-
|
|
|
- if (player.isFullScreen) {
|
|
|
- return mejs.i18n.t('mejs.fullscreen-off');
|
|
|
- } else {
|
|
|
- return mejs.i18n.t('mejs.fullscreen-on');
|
|
|
- }
|
|
|
- },
|
|
|
- click: function(player) {
|
|
|
- if (player.isFullScreen) {
|
|
|
- player.exitFullScreen();
|
|
|
- } else {
|
|
|
- player.enterFullScreen();
|
|
|
- }
|
|
|
- }
|
|
|
+ hours = Math.floor(Math.floor(timeBaseDivision / 60) / 60);
|
|
|
+ minutes = Math.floor(timeBaseDivision / 60) % 60;
|
|
|
+
|
|
|
+ if (showFrameCount) {
|
|
|
+ seconds = timeBaseDivision % 60;
|
|
|
+ } else {
|
|
|
+ seconds = (f / timeBase % 60).toFixed(secondsDecimalLength);
|
|
|
}
|
|
|
- ,
|
|
|
- // demo of a mute/unmute button
|
|
|
- {
|
|
|
- render: function(player) {
|
|
|
- if (player.media.muted) {
|
|
|
- return mejs.i18n.t('mejs.unmute');
|
|
|
- } else {
|
|
|
- return mejs.i18n.t('mejs.mute');
|
|
|
- }
|
|
|
- },
|
|
|
- click: function(player) {
|
|
|
- if (player.media.muted) {
|
|
|
- player.setMuted(false);
|
|
|
- } else {
|
|
|
- player.setMuted(true);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- // separator
|
|
|
- {
|
|
|
- isSeparator: true
|
|
|
- }
|
|
|
- ,
|
|
|
- // demo of simple download video
|
|
|
- {
|
|
|
- render: function(player) {
|
|
|
- return mejs.i18n.t('mejs.download-video');
|
|
|
- },
|
|
|
- click: function(player) {
|
|
|
- window.location.href = player.media.currentSrc;
|
|
|
- }
|
|
|
- }
|
|
|
- ]}
|
|
|
-);
|
|
|
-
|
|
|
-
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildcontextmenu: function(player, controls, layers, media) {
|
|
|
-
|
|
|
- // create context menu
|
|
|
- player.contextMenu = $('<div class="mejs-contextmenu"></div>')
|
|
|
- .appendTo($('body'))
|
|
|
- .hide();
|
|
|
-
|
|
|
- // create events for showing context menu
|
|
|
- player.container.bind('contextmenu', function(e) {
|
|
|
- if (player.isContextMenuEnabled) {
|
|
|
- e.preventDefault();
|
|
|
- player.renderContextMenu(e.clientX-1, e.clientY-1);
|
|
|
- return false;
|
|
|
- }
|
|
|
- });
|
|
|
- player.container.bind('click', function() {
|
|
|
- player.contextMenu.hide();
|
|
|
- });
|
|
|
- player.contextMenu.bind('mouseleave', function() {
|
|
|
+ } else {
|
|
|
+ hours = Math.floor(time / 3600) % 24;
|
|
|
+ minutes = Math.floor(time / 60) % 60;
|
|
|
+ if (showFrameCount) {
|
|
|
+ seconds = Math.floor(time % 60);
|
|
|
+ } else {
|
|
|
+ seconds = (time % 60).toFixed(secondsDecimalLength);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ hours = hours <= 0 ? 0 : hours;
|
|
|
+ minutes = minutes <= 0 ? 0 : minutes;
|
|
|
+ seconds = seconds <= 0 ? 0 : seconds;
|
|
|
+
|
|
|
+ var result = forceHours || hours > 0 ? (hours < 10 ? '0' + hours : hours) + ':' : '';
|
|
|
+ result += (minutes < 10 ? '0' + minutes : minutes) + ':';
|
|
|
+ result += '' + (seconds < 10 ? '0' + seconds : seconds);
|
|
|
+
|
|
|
+ if (showFrameCount) {
|
|
|
+ frames = (f % timeBase).toFixed(0);
|
|
|
+ frames = frames <= 0 ? 0 : frames;
|
|
|
+ result += frames < 10 ? frameSep + '0' + frames : '' + frameSep + frames;
|
|
|
+ }
|
|
|
|
|
|
- //
|
|
|
- player.startContextMenuTimer();
|
|
|
-
|
|
|
- });
|
|
|
- },
|
|
|
+ return result;
|
|
|
+}
|
|
|
|
|
|
- cleancontextmenu: function(player) {
|
|
|
- player.contextMenu.remove();
|
|
|
- },
|
|
|
-
|
|
|
- isContextMenuEnabled: true,
|
|
|
- enableContextMenu: function() {
|
|
|
- this.isContextMenuEnabled = true;
|
|
|
- },
|
|
|
- disableContextMenu: function() {
|
|
|
- this.isContextMenuEnabled = false;
|
|
|
- },
|
|
|
-
|
|
|
- contextMenuTimeout: null,
|
|
|
- startContextMenuTimer: function() {
|
|
|
- //
|
|
|
-
|
|
|
- var t = this;
|
|
|
-
|
|
|
- t.killContextMenuTimer();
|
|
|
-
|
|
|
- t.contextMenuTimer = setTimeout(function() {
|
|
|
- t.hideContextMenu();
|
|
|
- t.killContextMenuTimer();
|
|
|
- }, 750);
|
|
|
- },
|
|
|
- killContextMenuTimer: function() {
|
|
|
- var timer = this.contextMenuTimer;
|
|
|
-
|
|
|
- //
|
|
|
-
|
|
|
- if (timer != null) {
|
|
|
- clearTimeout(timer);
|
|
|
- delete timer;
|
|
|
- timer = null;
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- hideContextMenu: function() {
|
|
|
- this.contextMenu.hide();
|
|
|
- },
|
|
|
-
|
|
|
- renderContextMenu: function(x,y) {
|
|
|
-
|
|
|
- // alway re-render the items so that things like "turn fullscreen on" and "turn fullscreen off" are always written correctly
|
|
|
- var t = this,
|
|
|
- html = '',
|
|
|
- items = t.options.contextMenuItems;
|
|
|
-
|
|
|
- for (var i=0, il=items.length; i<il; i++) {
|
|
|
-
|
|
|
- if (items[i].isSeparator) {
|
|
|
- html += '<div class="mejs-contextmenu-separator"></div>';
|
|
|
- } else {
|
|
|
-
|
|
|
- var rendered = items[i].render(t);
|
|
|
-
|
|
|
- // render can return null if the item doesn't need to be used at the moment
|
|
|
- if (rendered != null) {
|
|
|
- html += '<div class="mejs-contextmenu-item" data-itemindex="' + i + '" id="element-' + (Math.random()*1000000) + '">' + rendered + '</div>';
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // position and show the context menu
|
|
|
- t.contextMenu
|
|
|
- .empty()
|
|
|
- .append($(html))
|
|
|
- .css({top:y, left:x})
|
|
|
- .show();
|
|
|
-
|
|
|
- // bind events
|
|
|
- t.contextMenu.find('.mejs-contextmenu-item').each(function() {
|
|
|
-
|
|
|
- // which one is this?
|
|
|
- var $dom = $(this),
|
|
|
- itemIndex = parseInt( $dom.data('itemindex'), 10 ),
|
|
|
- item = t.options.contextMenuItems[itemIndex];
|
|
|
-
|
|
|
- // bind extra functionality?
|
|
|
- if (typeof item.show != 'undefined')
|
|
|
- item.show( $dom , t);
|
|
|
-
|
|
|
- // bind click action
|
|
|
- $dom.click(function() {
|
|
|
- // perform click action
|
|
|
- if (typeof item.click != 'undefined')
|
|
|
- item.click(t);
|
|
|
-
|
|
|
- // close
|
|
|
- t.contextMenu.hide();
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- // stop the controls from hiding
|
|
|
- setTimeout(function() {
|
|
|
- t.killControlsTimer('rev3');
|
|
|
- }, 100);
|
|
|
-
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
-})(mejs.$);
|
|
|
-(function($) {
|
|
|
- // skip back button
|
|
|
-
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- skipBackInterval: 30,
|
|
|
- // %1 will be replaced with skipBackInterval in this string
|
|
|
- skipBackText: ''
|
|
|
- });
|
|
|
+function timeCodeToSeconds(time) {
|
|
|
+ var fps = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 25;
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildskipback: function(player, controls, layers, media) {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- defaultTitle = mejs.i18n.t('mejs.time-skip-back', t.options.skipBackInterval),
|
|
|
- skipTitle = t.options.skipBackText ? t.options.skipBackText : defaultTitle,
|
|
|
- // create the loop button
|
|
|
- loop =
|
|
|
- $('<div class="mejs-button mejs-skip-back-button">' +
|
|
|
- '<button type="button" aria-controls="' + t.id + '" title="' + skipTitle + '" aria-label="' + skipTitle + '">' + t.options.skipBackInterval + '</button>' +
|
|
|
- '</div>')
|
|
|
- // append it to the toolbar
|
|
|
- .appendTo(controls)
|
|
|
- // add a click toggle event
|
|
|
- .click(function() {
|
|
|
- media.setCurrentTime(Math.max(media.currentTime - t.options.skipBackInterval, 0));
|
|
|
- $(this).find('button').blur();
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
|
|
|
-})(mejs.$);
|
|
|
+ if (typeof time !== 'string') {
|
|
|
+ throw new TypeError('Time must be a string');
|
|
|
+ }
|
|
|
|
|
|
-/**
|
|
|
- * Postroll plugin
|
|
|
- */
|
|
|
-(function($) {
|
|
|
+ if (time.indexOf(';') > 0) {
|
|
|
+ time = time.replace(';', ':');
|
|
|
+ }
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- postrollCloseText: ''
|
|
|
- });
|
|
|
+ if (!/\d{2}(\:\d{2}){0,3}/i.test(time)) {
|
|
|
+ throw new TypeError('Time code must have the format `00:00:00`');
|
|
|
+ }
|
|
|
|
|
|
- // Postroll
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildpostroll: function(player, controls, layers, media) {
|
|
|
- var
|
|
|
- t = this,
|
|
|
- postrollTitle = t.options.postrollCloseText ? t.options.postrollCloseText : mejs.i18n.t('mejs.close'),
|
|
|
- postrollLink = t.container.find('link[rel="postroll"]').attr('href');
|
|
|
-
|
|
|
- if (typeof postrollLink !== 'undefined') {
|
|
|
- player.postroll =
|
|
|
- $('<div class="mejs-postroll-layer mejs-layer"><a class="mejs-postroll-close" onclick="$(this).parent().hide();return false;">' + postrollTitle + '</a><div class="mejs-postroll-layer-content"></div></div>').prependTo(layers).hide();
|
|
|
-
|
|
|
- t.media.addEventListener('ended', function (e) {
|
|
|
- $.ajax({
|
|
|
- dataType: 'html',
|
|
|
- url: postrollLink,
|
|
|
- success: function (data, textStatus) {
|
|
|
- layers.find('.mejs-postroll-layer-content').html(data);
|
|
|
- }
|
|
|
- });
|
|
|
- player.postroll.show();
|
|
|
- }, false);
|
|
|
+ var parts = time.split(':');
|
|
|
+
|
|
|
+ var output = void 0,
|
|
|
+ hours = 0,
|
|
|
+ minutes = 0,
|
|
|
+ seconds = 0,
|
|
|
+ frames = 0,
|
|
|
+ totalMinutes = 0,
|
|
|
+ dropFrames = Math.round(fps * 0.066666),
|
|
|
+ timeBase = Math.round(fps),
|
|
|
+ hFrames = timeBase * 3600,
|
|
|
+ mFrames = timeBase * 60;
|
|
|
+
|
|
|
+ switch (parts.length) {
|
|
|
+ default:
|
|
|
+ case 1:
|
|
|
+ seconds = parseInt(parts[0], 10);
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ minutes = parseInt(parts[0], 10);
|
|
|
+ seconds = parseInt(parts[1], 10);
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ hours = parseInt(parts[0], 10);
|
|
|
+ minutes = parseInt(parts[1], 10);
|
|
|
+ seconds = parseInt(parts[2], 10);
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ hours = parseInt(parts[0], 10);
|
|
|
+ minutes = parseInt(parts[1], 10);
|
|
|
+ seconds = parseInt(parts[2], 10);
|
|
|
+ frames = parseInt(parts[3], 10);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isDropFrame(fps)) {
|
|
|
+ totalMinutes = 60 * hours + minutes;
|
|
|
+ output = hFrames * hours + mFrames * minutes + timeBase * seconds + frames - dropFrames * (totalMinutes - Math.floor(totalMinutes / 10));
|
|
|
+ } else {
|
|
|
+ output = (hFrames * hours + mFrames * minutes + fps * seconds + frames) / fps;
|
|
|
+ }
|
|
|
+
|
|
|
+ return parseFloat(output.toFixed(3));
|
|
|
+}
|
|
|
+
|
|
|
+function calculateTimeFormat(time, options) {
|
|
|
+ var fps = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 25;
|
|
|
+
|
|
|
+
|
|
|
+ time = !time || typeof time !== 'number' || time < 0 ? 0 : time;
|
|
|
+
|
|
|
+ var hours = Math.floor(time / 3600) % 24,
|
|
|
+ minutes = Math.floor(time / 60) % 60,
|
|
|
+ seconds = Math.floor(time % 60),
|
|
|
+ frames = Math.floor((time % 1 * fps).toFixed(3)),
|
|
|
+ lis = [[frames, 'f'], [seconds, 's'], [minutes, 'm'], [hours, 'h']];
|
|
|
+
|
|
|
+ var format = options.timeFormat,
|
|
|
+ firstTwoPlaces = format[1] === format[0],
|
|
|
+ separatorIndex = firstTwoPlaces ? 2 : 1,
|
|
|
+ separator = format.length < separatorIndex ? format[separatorIndex] : ':',
|
|
|
+ firstChar = format[0],
|
|
|
+ required = false;
|
|
|
+
|
|
|
+ for (var i = 0, len = lis.length; i < len; i++) {
|
|
|
+ if (~format.indexOf(lis[i][1])) {
|
|
|
+ required = true;
|
|
|
+ } else if (required) {
|
|
|
+ var hasNextValue = false;
|
|
|
+ for (var j = i; j < len; j++) {
|
|
|
+ if (lis[j][0] > 0) {
|
|
|
+ hasNextValue = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!hasNextValue) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!firstTwoPlaces) {
|
|
|
+ format = firstChar + format;
|
|
|
+ }
|
|
|
+ format = lis[i][1] + separator + format;
|
|
|
+ if (firstTwoPlaces) {
|
|
|
+ format = lis[i][1] + format;
|
|
|
}
|
|
|
+ firstChar = lis[i][1];
|
|
|
}
|
|
|
- });
|
|
|
+ }
|
|
|
|
|
|
-})(mejs.$);
|
|
|
-/*
|
|
|
-MediaElement-Markers is a MediaElement.js plugin that lets you add Visual Cues in the progress time rail.
|
|
|
-This plugin also lets you register a custom callback function that will be called everytime the play position reaches a marker.
|
|
|
-Marker position and a reference to the MediaElement Player object is passed to the registered callback function for any post processing. Marker color is configurable.
|
|
|
+ options.currentTimeFormat = format;
|
|
|
+}
|
|
|
|
|
|
-*/
|
|
|
+function convertSMPTEtoSeconds(SMPTE) {
|
|
|
|
|
|
-(function ($) {
|
|
|
- // markers
|
|
|
+ if (typeof SMPTE !== 'string') {
|
|
|
+ throw new TypeError('Argument must be a string value');
|
|
|
+ }
|
|
|
|
|
|
- $.extend(mejs.MepDefaults, {
|
|
|
- markerColor: '#E9BC3D', //default marker color
|
|
|
- markers: [],
|
|
|
- markerCallback: function () {
|
|
|
+ SMPTE = SMPTE.replace(',', '.');
|
|
|
|
|
|
- }
|
|
|
- });
|
|
|
+ var decimalLen = ~SMPTE.indexOf('.') ? SMPTE.split('.')[1].length : 0;
|
|
|
|
|
|
- $.extend(MediaElementPlayer.prototype, {
|
|
|
- buildmarkers: function (player, controls, layers, media) {
|
|
|
- var t = this,
|
|
|
- i = 0,
|
|
|
- currentPos = -1,
|
|
|
- currentMarker = -1,
|
|
|
- lastPlayPos = -1, //Track backward seek
|
|
|
- lastMarkerCallBack = -1; //Prevents successive firing of callbacks
|
|
|
-
|
|
|
- for (i = 0; i < player.options.markers.length; ++i) {
|
|
|
- controls.find('.mejs-time-total').append('<span class="mejs-time-marker"></span>');
|
|
|
- }
|
|
|
+ var secs = 0,
|
|
|
+ multiplier = 1;
|
|
|
|
|
|
- media.addEventListener('durationchange', function (e) {
|
|
|
- player.setmarkers(controls);
|
|
|
- });
|
|
|
- media.addEventListener('timeupdate', function (e) {
|
|
|
- currentPos = Math.floor(media.currentTime);
|
|
|
- if (lastPlayPos > currentPos) {
|
|
|
- if (lastMarkerCallBack > currentPos) {
|
|
|
- lastMarkerCallBack = -1;
|
|
|
- }
|
|
|
- } else {
|
|
|
- lastPlayPos = currentPos;
|
|
|
- }
|
|
|
-
|
|
|
- for (i = 0; i < player.options.markers.length; ++i) {
|
|
|
- currentMarker = Math.floor(player.options.markers[i]);
|
|
|
- if (currentPos === currentMarker && currentMarker !== lastMarkerCallBack) {
|
|
|
- player.options.markerCallback(media, media.currentTime); //Fires the callback function
|
|
|
- lastMarkerCallBack = currentMarker;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }, false);
|
|
|
-
|
|
|
- },
|
|
|
- setmarkers: function (controls) {
|
|
|
- var t = this,
|
|
|
- i = 0,
|
|
|
- left;
|
|
|
-
|
|
|
- for (i = 0; i < t.options.markers.length; ++i) {
|
|
|
- if (Math.floor(t.options.markers[i]) <= t.media.duration && Math.floor(t.options.markers[i]) >= 0) {
|
|
|
- left = 100 * Math.floor(t.options.markers[i]) / t.media.duration;
|
|
|
- $(controls.find('.mejs-time-marker')[i]).css({
|
|
|
- "width": "1px",
|
|
|
- "left": left+"%",
|
|
|
- "background": t.options.markerColor
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
+ SMPTE = SMPTE.split(':').reverse();
|
|
|
|
|
|
- }
|
|
|
- });
|
|
|
-})(mejs.$);
|
|
|
+ for (var i = 0, total = SMPTE.length; i < total; i++) {
|
|
|
+ multiplier = 1;
|
|
|
+ if (i > 0) {
|
|
|
+ multiplier = Math.pow(60, i);
|
|
|
+ }
|
|
|
+ secs += Number(SMPTE[i]) * multiplier;
|
|
|
+ }
|
|
|
+ return Number(secs.toFixed(decimalLen));
|
|
|
+}
|
|
|
+
|
|
|
+_mejs2.default.Utils = _mejs2.default.Utils || {};
|
|
|
+_mejs2.default.Utils.secondsToTimeCode = secondsToTimeCode;
|
|
|
+_mejs2.default.Utils.timeCodeToSeconds = timeCodeToSeconds;
|
|
|
+_mejs2.default.Utils.calculateTimeFormat = calculateTimeFormat;
|
|
|
+_mejs2.default.Utils.convertSMPTEtoSeconds = convertSMPTEtoSeconds;
|
|
|
+
|
|
|
+},{"7":7}]},{},[29,6,5,15,23,20,19,21,22,24,16,18,17,9,10,11,12,13,14]);
|