Last active
July 7, 2024 14:13
-
-
Save ramazansancar/6c4f57c8a1285a5a98ef89164665cbd4 to your computer and use it in GitHub Desktop.
http://oxax.tv/ JS Cripted Algoritm Decode (JS Wise) (Encryted here: http://oxax.tv/p_n_old.js) UnPacker: https://matthewfl.com/unPacker.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var o = { | |
y = "xx???x=xx?xx?=" | |
} | |
var abc = String.fromCharCode(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122); | |
var dechar = function (x) { | |
return String.fromCharCode(x) | |
}; | |
var salt = { | |
_keyStr: abc + "0123456789+/=", | |
e: function (e) { | |
var t = ""; | |
var n, r, i, s, o, u, a; | |
var f = 0; | |
e = salt._ue(e); | |
while (f < e.length) { | |
n = e.charCodeAt(f++); | |
r = e.charCodeAt(f++); | |
i = e.charCodeAt(f++); | |
s = n >> 2; | |
o = (n & 3) << 4 | r >> 4; | |
u = (r & 15) << 2 | i >> 6; | |
a = i & 63; | |
if (isNaN(r)) { | |
u = a = 64 | |
} else if (isNaN(i)) { | |
a = 64 | |
} | |
t = t + this._keyStr.charAt(s) + this._keyStr.charAt(o) + this._keyStr.charAt(u) + this._keyStr.charAt(a) | |
} | |
return t | |
}, | |
d: function (e) { | |
var t = ""; | |
var n, r, i; | |
var s, o, u, a; | |
var f = 0; | |
e = e.replace(/[^A-Za-z0-9\+\/\=]/g, ""); | |
while (f < e.length) { | |
s = this._keyStr.indexOf(e.charAt(f++)); | |
o = this._keyStr.indexOf(e.charAt(f++)); | |
u = this._keyStr.indexOf(e.charAt(f++)); | |
a = this._keyStr.indexOf(e.charAt(f++)); | |
n = s << 2 | o >> 4; | |
r = (o & 15) << 4 | u >> 2; | |
i = (u & 3) << 6 | a; | |
t = t + dechar(n); | |
if (u != 64) { | |
t = t + dechar(r) | |
} | |
if (a != 64) { | |
t = t + dechar(i) | |
} | |
} | |
t = salt._ud(t); | |
return t | |
}, | |
_ue: function (e) { | |
e = e.replace(/\r\n/g, "\n"); | |
var t = ""; | |
for (var n = 0; n < e.length; n++) { | |
var r = e.charCodeAt(n); | |
if (r < 128) { | |
t += dechar(r) | |
} else if (r > 127 && r < 2048) { | |
t += dechar(r >> 6 | 192); | |
t += dechar(r & 63 | 128) | |
} else { | |
t += dechar(r >> 12 | 224); | |
t += dechar(r >> 6 & 63 | 128); | |
t += dechar(r & 63 | 128) | |
} | |
} | |
return t | |
}, | |
_ud: function (e) { | |
var t = ""; | |
var n = 0; | |
var r = 0; | |
var c1 = 0; | |
var c2 = 0; | |
while (n < e.length) { | |
r = e.charCodeAt(n); | |
if (r < 128) { | |
t += dechar(r); | |
n++ | |
} else if (r > 191 && r < 224) { | |
c2 = e.charCodeAt(n + 1); | |
t += dechar((r & 31) << 6 | c2 & 63); | |
n += 2 | |
} else { | |
c2 = e.charCodeAt(n + 1); | |
c3 = e.charCodeAt(n + 2); | |
t += dechar((r & 15) << 12 | (c2 & 63) << 6 | c3 & 63); | |
n += 3 | |
} | |
} | |
return t | |
} | |
}; | |
var sugar = function (x) { | |
x = x.split(dechar(61)); | |
var result = ''; | |
var c1 = dechar(120); | |
var chr; | |
for (var i in x) { | |
if (x.hasOwnProperty(i)) { | |
var encoded = ''; | |
for (var j in x[i]) { | |
if (x[i].hasOwnProperty(j)) { | |
encoded += (x[i][j] == c1) ? dechar(49) : dechar(48) | |
} | |
} | |
chr = parseInt(encoded, 2); | |
result += dechar(chr.toString(10)) | |
} | |
} | |
return result.substr(0, result.length - 1) | |
}; | |
var pepper = function (s, n) { | |
s = s.replace(/\+/g, "#"); | |
s = s.replace(/#/g, "+"); | |
var a = sugar(o.y) * n; | |
if (n < 0) a += abc.length / 2; | |
var r = abc.substr(a * 2) + abc.substr(0, a * 2); | |
return s.replace(/[A-Za-z]/g, function (c) { | |
return r.charAt(abc.indexOf(c)) | |
}) | |
}; | |
var decode = function (x) { | |
if (x.substr(0, 2) == "#1") { | |
return salt.d(pepper(x.substr(2), -1)) | |
} else if (x.substr(0, 2) == "#0") { | |
return salt.d(x.substr(2)) | |
} else { | |
return x | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var w = '8302f3x3b3q1v3s241d391g2734133x29162u2y251b3x293u0x3u1f1g1g1e1o293u1q25292u1q251g1d3q292u2y2514293t133o282e2q1b393u331f3q0f152e3z1s391b3x3q182y14163q0w2q3u3b30372o3b372s1v3s241t3y1t232d25241t1d1r1g27292b3r371e1o2729133x291t1b2922163q0t3q2c1q251w3d3u1o253f293h1t0q1g1t3a391d2b3t38141829141o212g3w1u3y2t1o14353u1i142q3s3y3b383q2o251y2u2v1b16163b1y2u2v2b3r37191y2u2v1b161a1t3b141i252b3t3814161h2q112q2434133u0b2y3514192419393b1h3b3t38142u2r2z161d1g193u3u371i1o1y2u2v15341q1w372n1o1w251o251q163u373o251q341g1q3y382q37391o29331y1d232d252t161d3b3x37142v3b3t38141616361d3a391d232d25241o1d3a391d3b3t3814161i1d3a391g1y1y3y3f3b163b29331f392d163u373b3x3q2815381t2425151o373q01233b3y181x38393539111g253y353k2b263y1d18211y1g3k2b3u311w253k2b3u3118363q37182d393b3m1s341s25183k2k251m141e1o18211527212q3a1i3i2v0w1u28143y383m1g3w1f2d142y3x373x142804363b221f3b281d3b29331y392q3e25142s243b2817371o212g353q3o3q19282e26242h251o3o'; | |
var i = '77e9a728222o313w351c343o013q2a1o231u3d3s1m253r133v27121d1d1b143r163x3s3r1u3v3u161m273r1w3b3s1m1r1d3p3a3o3b3u3m2616222q193v122o2739301m253f393z33121b3v1t361234173s3d221q23313w331g231w2s2t1o123d14143q0r1r38371a143o0r1o2c1o23342s2y23193v313u0v3s192722142t271r3h393w142o1826331r212d23221r1b163s3s3212353s142o2b27223m1r22293122313s2v293r3612141b32293r381r38371b2b3r3612141r1q122l1m2v1r212b23141b3r123q2x3711113v2w3326121w1b2612243b232b231d2b19321o142o3a15383m343b3r3612371q1q173s123q2f342t3o1435383g2t3q11143927331d372b143u353m231w2u2t1w121o1g2534121w1d212b23221d363o1626351w2s2t1i163o1626331d212b23221o3o1626331o232b371236322q2239282s3315383i25392a2927232q2s391622193v0w081e23392633322533142v2b37392k2t1e231o3i2b24393k35342o2f392k373236351b15321s2616212230241q34393k1q32141612163i2b3s3z1u352o3g3w1w113y3337312c1622121a0v3q361535161t1v1c193r3q193o3o122s2239333d393z1m1o3w382o3w32143u3s26193724223o3b3s152r3z343g'; | |
var s = '8f3ef2w132t2a2731371f3b3v3a3s0x3u192720163q0b3o2a1q251b1818141d3927271d3b272714163t1b39272216393o27341b37331c3q3b2q3r3m273q3z3s2624143o0d1d3529171m252q212m193o3a1f1t3w2v2a2931242t2b3t36121629141b393v3q1826331b1b3x3d3s0v3u291u3b3s1o2727113v29162s2w231y1t1p3132201e3r293p37191w2s2t1o143d141g3831232b25241t1s3w2r3i3b1z2o221x39201w1r232d23151p1g1t212b231828331r212d2512141c2q1t123w131y2u2t191p3h1q322z3616152a2s1b1t1112143s351t3f1w2s2v1p1a1n261q163u352m29333g1b212d2535141b2q3a121b1v1d1y1b121e29331w1b1234342q2239282u3315383i2v393r36142n1o143o083q1m231w2u2v1i1p1e373b3p35393t3812141b3b3r35171w2u2v1i143b3b3r35142t0u2813131e1q3y362o35391o27313o0813253o3s2u3t12341t35273v3v342v3b2o2a253u3e343w1s28182z1w142v3q393k2r382113253z1x182z132531361m1237153y333i2i251m1230162124302l143824393k35343o173s3g3i25212b3735243i243z252u2v30210y34023912181o1d313m1b391m1o3w38123c2625163b27311d3937331g363z14262z2r1b39331m3o221d1g1'; | |
var e = 'b926bf356482879c82b1372fdb23bed8'; | |
var first = 0; | |
var second = 0; | |
var third = 0; | |
var forth = []; | |
var fiveth = []; | |
while (true) { | |
if (first < 5) fiveth.push(w.charAt(first)); | |
else if (first < w.length) forth.push(w.charAt(first)); | |
first++; | |
if (second < 5) fiveth.push(i.charAt(second)); | |
else if (second < i.length) forth.push(i.charAt(second)); | |
second++; | |
if (third < 5) fiveth.push(s.charAt(third)); | |
else if (third < s.length) forth.push(s.charAt(third)); | |
third++; | |
if (w.length + i.length + s.length + e.length == forth.length + fiveth.length + e.length) break | |
} | |
var lI1l = forth.join(''); | |
var eighth = fiveth.join(''); | |
second = 0; | |
var sixth = []; | |
for (first = 0; first < forth.length; first += 2) { | |
var seventh = -1; | |
if (eighth.charCodeAt(second) % 2) seventh = 1; | |
sixth.push(String.fromCharCode(parseInt(lI1l.substr(first, 2), 36) - seventh)); | |
second++; | |
if (second >= fiveth.length) second = 0 | |
} | |
console.log(sixth.join('')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var oldXHROpen = window.XMLHttpRequest.prototype.open; | |
window.XMLHttpRequest.prototype.open = function (method, url, async, user, password) { | |
const args = arguments; | |
args[1] = url.includes('plrjs.org') ? '' : url; | |
return oldXHROpen.apply(this, args); | |
}; | |
// p_n_old.js | |
if (!window.pljssglobal) { | |
var pljssglobal = []; | |
var pljssglobalid | |
} | |
if (window['PlayerjsAsync']) { | |
setTimeout(PlayerjsAsync, 1) | |
}; | |
function Playerjs(options) { | |
var o = { | |
play: false, | |
audiosrc: [], | |
audioctx: [], | |
playerid: 'r2cxzl7wj2lb', | |
default_w: 640, | |
default_h: 360, | |
version: '18.44', | |
compilation: ['HLS', 'VASTP'], | |
compilations: '', | |
fullscreen: false, | |
realfullscreen: false, | |
nativecontrols: false, | |
fullwheel: false, | |
fullscreen_start: false, | |
airplay: false, | |
pipwebkit: false, | |
ispipkit: false, | |
u: { | |
"screencolor": "000000", | |
"toolbar": { | |
"color": "000000", | |
"hide": 1, | |
"margin": "-20 0 0 0", | |
"gradient": 1, | |
"animation": "alpha", | |
"a": "0", | |
"h": 40, | |
"clickarea": 0 | |
}, | |
"control_title": { | |
"order": 1, | |
"on": 1, | |
"action": "title", | |
"type": "text", | |
"position": "top-left", | |
"click": 0, | |
"hand": 0, | |
"text": "", | |
"var": "title", | |
"hide": 1, | |
"hideonplay": 1, | |
"animation": "position", | |
"bg": 1, | |
"bga": 0.4, | |
"bgpadding": "6 6 6 6" | |
}, | |
"control_line": { | |
"order": 3, | |
"on": 0, | |
"type": "shape", | |
"action": "line", | |
"h": 4, | |
"rounding": 0, | |
"w": 100, | |
"a": 1, | |
"abg": "0.3", | |
"aload": "0.4", | |
"aover": "0", | |
"color": "ffffff", | |
"colorbg": "ffffff", | |
"colorload": "ffffff", | |
"colorover": "ffffff", | |
"buffer": { | |
"on": 0, | |
"color": "ffffff", | |
"a": 0.5 | |
}, | |
"position": "bottom", | |
"margin": "0 10 34 10", | |
"handle": 0, | |
"bgpadding": "5 0 5 0", | |
"tip": 1, | |
"hide": 1, | |
"hideonlive": 1 | |
}, | |
"control_play": { | |
"order": 2, | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g transform='translate(5, 3)'><polyline points='0.59375 0.48438 0.5625 13.51563 11.4375 7 0.59375 0.48438' fill='#ffffff'\/><\/g><\/svg>", | |
"icon2": "<svg width='20' height='20'><g fill-rule='nonzero' transform='translate(5, 4)'><rect x='0' y='0' width='3.5' height='12' fill='#ffffff'\/><rect x='6.5' y='0' width='3.5' height='12' fill='#ffffff'\/><\/g><\/svg>", | |
"icon3": "<svg width='20' height='20'><g transform='translate(2, 3)'><path d='M16,7.13661132 L16,7.10916945 L15.2081785,7.10916945 L14.275093,7.10916945 C14.275093,3.19912625 11.063197,0 7.13754645,0 C3.21189591,0 0,3.19912625 0,7.10916945 C0,11.0192126 3.21189591,14.2183389 7.13754645,14.2183389 L7.13754645,12.4410465 C4.19330855,12.4410465 1.78438662,10.0417018 1.78438662,7.10916945 C1.78438662,4.17663705 4.19330855,1.77729236 7.13754645,1.77729236 C10.0817844,1.77729236 12.4907063,4.17663705 12.4907063,7.10916945 L10.6445167,7.10916945 L13.3828996,11.5524004 L16,7.13661132 Z' fill='#ffffff'><\/path><\/g><\/svg>", | |
"action": "play", | |
"action2": "pause", | |
"type": "svg", | |
"scale": "1.7", | |
"scaleover": 1.5, | |
"margin": "0 15 0 20", | |
"hide": 0, | |
"hideab": 1 | |
}, | |
"control_mute": { | |
"order": 4, | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g transform='translate(3, 2)'><polygon fill-rule='nonzero' points='8.8817842e-16 4.3746 8.8817842e-16 10.62539 3.10029 10.62539 7.74143 15 7.74419 0 3.10237 4.37461 1.77635684e-15 4.37461 1.77635684e-15 4.3746' fill='#ffffff'\/><path d='M10.44167,3.62185 C10.17405,3.31419 9.74434,3.31419 9.47808,3.62343 C9.21251,3.93268 9.21251,4.43332 9.47944,4.74335 L9.47944,4.74178 C10.06713,5.42512 10.42941,6.36234 10.42941,7.40396 C10.42941,8.44479 10.06781,9.37885 9.4808,10.06219 C9.2125,10.36985 9.2125,10.87049 9.47944,11.18131 C9.61223,11.33554 9.78657,11.41304 9.9609,11.41304 C10.13591,11.41304 10.31024,11.33554 10.44303,11.18131 C11.27519,10.21641 11.79138,8.87583 11.7907,7.40396 C11.79138,5.92892 11.27315,4.58676 10.44167,3.62186 L10.44167,3.62185 Z' id='pjs_volume_element1' fill='#ffffff'\/><path d='M11.99413,1.86278 C11.72289,2.17257 11.72289,2.67489 11.99413,2.98309 C12.99747,4.13271 13.61608,5.71413 13.61608,7.46829 C13.61608,9.22085 12.99747,10.80149 11.99552,11.9519 C11.72427,12.26089 11.72427,12.76243 11.99552,13.07221 C12.13045,13.22671 12.3076,13.30435 12.48543,13.30435 C12.66256,13.30435 12.83971,13.22671 12.97464,13.07221 C14.22569,11.63894 15.00138,9.65345 15,7.46829 C15.00069,5.28154 14.225,3.29446 12.97187,1.86278 C12.69993,1.55299 12.2633,1.55299 11.99413,1.86278 L11.99413,1.86278 Z' id='pjs_volume_element2' fill='#ffffff'\/><\/g><\/svg>", | |
"icon2": "<svg width='20' height='20'><g fill-rule='nonzero' transform='translate(3, 2)'><polygon points='8.8817842e-16 4.3746 8.8817842e-16 10.62539 3.10029 10.62539 7.74143 15 7.74419 0 3.10237 4.37461 1.77635684e-15 4.37461 1.77635684e-15 4.3746' fill='#ffffff'\/><path d='M11.9267767,6.64744791 L9.87932726,4.59999847 L9,5.47932573 L11.0474494,7.52677517 L9,9.57422461 L9.87932726,10.4535519 L11.9267767,8.40610243 L13.9742261,10.4535519 L14.8535534,9.57422461 L12.806104,7.52677517 L14.8535534,5.47932573 L13.9742261,4.59999847 L11.9267767,6.64744791 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "mute", | |
"action2": "unmute", | |
"type": "svg", | |
"scale": "1.5", | |
"hide": 0, | |
"hideab": 1 | |
}, | |
"control_volume": { | |
"order": 5, | |
"on": 1, | |
"type": "shape", | |
"action": "volume", | |
"h": 4, | |
"rounding": 0, | |
"customwidth": 1, | |
"w": 100, | |
"a": 1, | |
"abg": "0.3", | |
"aover": "0", | |
"color": "ffffff", | |
"colorbg": "ffffff", | |
"colorover": "ffffff", | |
"hide": 0, | |
"hideoutmute": 0, | |
"rotation": 0, | |
"bgpadding": "5 0 5 0", | |
"bg": 0, | |
"handle": 1, | |
"hideab": 1, | |
"animation": "none" | |
}, | |
"control_time": { | |
"order": 6, | |
"on": 0, | |
"action": "time", | |
"type": "text", | |
"text": "0:00", | |
"fontsize": 10, | |
"margin": "0 0 0 15", | |
"click": 0, | |
"separator": "\/" | |
}, | |
"control_duration": { | |
"order": 7, | |
"on": 0, | |
"action": "duration", | |
"type": "text", | |
"text": "\/ 0:00", | |
"fontsize": 10, | |
"margin": "0 0 0 0", | |
"click": 0 | |
}, | |
"control_buffer": { | |
"order": 8, | |
"on": 1, | |
"icon": "<div class='loader(rand)'><svg class='circular(rand)' viewBox='25 25 50 50'><circle class='path(rand)' stroke='(color)' cx='50' cy='50' r='20' fill='none' stroke-width='2' stroke-miterlimit='10'\/><\/svg><\/div>|||.loader(rand) {position: relative;margin: -25px 0 0 -25px;width: 50px;}.loader(rand):before {content: '';display: block;padding-top: 100%;}.circular(rand) {animation: rotate(rand) 2s linear infinite;height: 100%;transform-origin: center center;width: 100%;position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;}.path(rand) {stroke-dasharray: 1, 200;stroke-dashoffset: 0;animation: dash(rand) 1.5s ease-in-out infinite;}@keyframes rotate(rand) {100% {transform: rotate(360deg);}}@keyframes dash(rand) {0% {stroke-dasharray: 1, 200;stroke-dashoffset: 0;}50% {stroke-dasharray: 89, 200;stroke-dashoffset: -35px;}100% {stroke-dasharray: 89, 200;stroke-dashoffset: -124px;}}", | |
"action": "buffer", | |
"type": "css", | |
"position": "center", | |
"scale": 1, | |
"click": 0, | |
"hide": 1 | |
}, | |
"control_settings": { | |
"order": 9, | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g transform='translate(2, 2)'><path d='M12.5176036,14.5995982 L11.8913249,12.408042 C12.0748622,12.2470857 12.2471403,12.0748421 12.4097532,11.8905347 L14.6001245,12.5166878 C14.8311603,12.1802803 15.0299924,11.8229223 15.2079001,11.4519067 L13.5777858,9.87443978 C13.6558739,9.64265338 13.7234998,9.40684231 13.7717953,9.16377877 L15.9686033,8.61327723 C15.9847153,8.41046035 16,8.20683651 16,7.99919809 C16,7.79155968 15.9839082,7.58872262 15.9686033,7.38591582 L13.7717953,6.83541428 C13.7226826,6.59235074 13.6550567,6.35652958 13.5777858,6.12474318 L15.2087072,4.54728635 C15.0299924,4.17705752 14.8311603,3.81891277 14.6001245,3.48248508 L12.4097532,4.10784135 C12.2479474,3.92434084 12.0748622,3.75210737 11.8913249,3.590334 L12.5176036,1.3995848 C12.1811286,1.16941229 11.8228918,0.969803035 11.4518018,0.791941088 L9.87401862,2.4225356 C9.64298276,2.34446315 9.40631729,2.27765775 9.16321511,2.22856491 L8.61340021,0.0313802823 C8.40973554,0.0160885729 8.20687798,0 7.99919793,0 C7.79151788,0 7.58864015,0.0160885729 7.38579268,0.0313802823 L6.83518076,2.22856491 C6.59206848,2.27765775 6.35620004,2.34446315 6.12436716,2.4225356 L4.54659402,0.791941088 C4.17629095,0.972233973 3.81888151,1.17101611 3.48238635,1.40200565 L4.10866504,3.59274476 C3.92512773,3.75371118 3.75206271,3.92676169 3.59105392,4.10944516 L1.39986544,3.48329203 C1.16882958,3.81971972 0.969997497,4.17786447 0.792099885,4.54889016 L2.42302136,6.12635708 C2.34573028,6.35814348 2.27811446,6.59395455 2.22901177,6.83701809 L0.0313865746,7.38751963 C0.0160917989,7.59033652 0,7.79396035 0,8.00080191 C0,8.20764346 0.0160917989,8.41125721 0.0313865746,8.61488105 L2.22901177,9.16538259 C2.27811446,9.40844612 2.34573028,9.64424711 2.42302136,9.8760436 L0.792099885,11.4535105 C0.969997497,11.8237393 1.16882958,12.1818841 1.39986544,12.5183118 L3.59105392,11.8921586 C3.75205262,12.0764661 3.92512773,12.2478926 4.10866504,12.409666 L3.48238635,14.6012222 C3.81888151,14.8313947 4.17709807,15.030197 4.54740113,15.2088659 L6.12517427,13.5782713 C6.35700715,13.6563438 6.5928756,13.7239561 6.83598787,13.772242 L7.38659979,15.9686096 C7.58945735,15.9847184 7.79311193,16 8.00080207,16 C8.20849221,16 8.41133967,15.9839114 8.61500434,15.9686096 L9.16481924,13.772242 C9.40793152,13.7231492 9.64458689,13.6555469 9.87562275,13.5782713 L11.453406,15.2088659 C11.8228918,15.028573 12.1811185,14.8297908 12.5176036,14.5995982 L12.5176036,14.5995982 Z M7.99999496,10.7356172 C6.48902044,10.7356172 5.26382416,9.51066656 5.26382416,7.99999496 C5.26382416,6.48932335 6.48902044,5.26517965 7.99999496,5.26517965 C9.51096947,5.26517965 10.7353586,6.48933344 10.7353586,7.99999496 C10.7353586,9.51065647 9.51095939,10.7356172 7.99999496,10.7356172 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "settings", | |
"position": "controls-right", | |
"margin": "0 0 0 15", | |
"type": "svg" | |
}, | |
"control_playlist": { | |
"order": 10, | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g transform='translate(2, 3)'><path d='M0,0 L16,0 L16,2 L0,2 L0,0 Z M0,6 L16,6 L16,8 L0,8 L0,6 Z M0,12 L16,12 L16,14 L0,14 L0,12 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "playlist", | |
"position": "left", | |
"margin": "0 0 0 6", | |
"bg": 1, | |
"scale": 1.5, | |
"type": "svg", | |
"animation": "position", | |
"bgpadding": "3 3 3 3", | |
"bga": 0.4, | |
"bgaover": 0.8, | |
"tip": 0 | |
}, | |
"control_full": { | |
"order": 11, | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g fill-rule='nonzero' transform='translate(1, 1)'><path d='M6.67440511,0 L6.67440511,1.74193548 L1.74114916,1.74193548 L1.74114916,6.67741935 L0,6.67741935 L0,0 L6.67440511,0 Z M18,0 L18,6.67741935 L16.2588508,6.67741935 L16.2588508,1.74193548 L11.3255949,1.74193548 L11.3255949,0 L18,0 Z M1.74114916,11.3225806 L1.74114916,16.2580645 L6.67440511,16.2580645 L6.67440511,18 L0,18 L0,11.3225806 L1.74114916,11.3225806 Z M18,11.3225806 L18,18 L11.3255949,18 L11.3255949,16.2580645 L16.2588508,16.2580645 L16.2588508,11.3225806 L18,11.3225806 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"icon2": "<svg width='20' height='20'><g fill-rule='nonzero' fill='#000000' transform='translate(1, 1)'><path d='M0,6.67741935 L0,4.93548387 L4.93325595,4.93548387 L4.93325595,-8.8817842e-16 L6.67440511,-8.8817842e-16 L6.67440511,6.67741935 L0,6.67741935 Z M11.3255949,6.67741935 L11.3255949,0 L13.0667441,0 L13.0667441,4.93548387 L18,4.93548387 L18,6.67741935 L11.3255949,6.67741935 Z M4.93325595,18 L4.93325595,13.0645161 L-8.8817842e-16,13.0645161 L-8.8817842e-16,11.3225806 L6.67440511,11.3225806 L6.67440511,18 L4.93325595,18 Z M11.3255949,18 L11.3255949,11.3225806 L18,11.3225806 L18,13.0645161 L13.0667441,13.0645161 L13.0667441,18 L11.3255949,18 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "fullscreen", | |
"action2": "normalscreen", | |
"type": "svg", | |
"position": "controls-right", | |
"margin": "0 10 0 15", | |
"scale": "1.5", | |
"hide": 0, | |
"hideab": 1 | |
}, | |
"control_start": { | |
"order": 12, | |
"position": "center", | |
"scale": "4.5", | |
"on": 1, | |
"icon": "<svg width='20' height='20'><g fill-rule='nonzero' transform='translate(0, 0)'><path d='M17.0702782,2.91910582 C15.1810247,1.03655052 12.6691451,-8.8817842e-16 9.99729941,-8.8817842e-16 C7.32568364,-8.8817842e-16 4.81380396,1.03655052 2.92478036,2.91910582 C-0.97508001,6.80536869 -0.974850172,13.1284185 2.9250102,17.0144523 C4.81426364,18.8970077 7.32614328,19.9337872 9.99775911,19.9337872 C12.6693749,19.9337872 15.1812545,18.8972367 17.0702782,17.0146814 C18.9593018,15.1321261 20,12.629381 20,9.96700814 C20,7.30463522 18.9595316,4.80166112 17.0702782,2.91910582 L17.0702782,2.91910582 Z M16.7452898,16.6908452 C14.9429144,18.4868305 12.5464126,19.4757445 9.99775911,19.4757445 C7.44910566,19.4757445 5.05237393,18.4866015 3.24999857,16.6906162 C-0.470589586,12.983219 -0.470589586,6.95056821 3.24976873,3.24294198 C5.05214409,1.44695674 7.44864596,0.458042652 9.99729941,0.458042652 C12.5464126,0.458042652 14.9429144,1.44695674 16.7452898,3.24294198 C18.5476652,5.03915624 19.5403276,7.42693258 19.5403276,9.96677907 C19.5403276,12.5066256 18.5476652,14.894631 16.7452898,16.6908452 L16.7452898,16.6908452 Z M8.7,13.0902656 L12.6604806,10 L8.7,6.90973438 L8.7,13.0902656 Z M8.3,6.5 C8.3,6.33342635 8.49170719,6.23985002 8.62303336,6.3423206 L13.1086291,9.8423206 C13.2112513,9.92239417 13.2112513,10.0776058 13.1086291,10.1576794 L8.62303336,13.6576794 C8.49170719,13.76015 8.3,13.6665737 8.3,13.5 L8.3,6.5 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"icon3": "<svg width='20' height='20'><g transform='translate(2, 3)'><path d='M16,7.13661132 L16,7.10916945 L15.2081785,7.10916945 L14.275093,7.10916945 C14.275093,3.19912625 11.063197,0 7.13754645,0 C3.21189591,0 0,3.19912625 0,7.10916945 C0,11.0192126 3.21189591,14.2183389 7.13754645,14.2183389 L7.13754645,12.4410465 C4.19330855,12.4410465 1.78438662,10.0417018 1.78438662,7.10916945 C1.78438662,4.17663705 4.19330855,1.77729236 7.13754645,1.77729236 C10.0817844,1.77729236 12.4907063,4.17663705 12.4907063,7.10916945 L10.6445167,7.10916945 L13.3828996,11.5524004 L16,7.13661132 Z' fill='#ffffff'><\/path><\/g><\/svg>", | |
"action": "play", | |
"type": "svg", | |
"bg": 1, | |
"bgcolor": "000000", | |
"bgo": 1, | |
"bgpadding": "7 7 7 7", | |
"iconmargin": "0 0 0 4", | |
"bga": 0.3, | |
"bgaover": 0.6, | |
"scaleover": "5", | |
"hide": 1, | |
"hideonplay": 1, | |
"hideonyoutube": 1, | |
"iconsreplay": 0, | |
"hideab": 0 | |
}, | |
"control_live": { | |
"order": 13, | |
"on": 0, | |
"text": "live", | |
"letterspacing": 2, | |
"action": "live", | |
"type": "text", | |
"hand": 0, | |
"click": 0, | |
"fontsize": 10, | |
"margin": "0 0 0 15", | |
"a": 0.5, | |
"hide": 1, | |
"hideonvod": 1 | |
}, | |
"control_stop": { | |
"order": 14, | |
"on": 0, | |
"icon": "<svg width='20' height='20'><g transform='translate(4, 4)'><rect x='0' y='0' width='12' height='12' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "stop", | |
"type": "svg", | |
"bg": 0 | |
}, | |
"control_prev": { | |
"order": 15, | |
"on": 0, | |
"icon": "<svg width='20' height='20'><g transform='translate(5.5, 5)'><path d='M8.99999,10.43749 L8.99999,10.4375 L2,5.21875 L8.99999,0 L8.99999,10.43749 Z M0,0 L2,0 L2,10.24983 L0,10.24983 L0,0 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "prev", | |
"type": "svg", | |
"scale": 1.2, | |
"position": "controls", | |
"margin": "0 0 0 15" | |
}, | |
"control_next": { | |
"order": 16, | |
"on": 0, | |
"icon": "<svg width='20' height='20'><g transform='translate(5, 5)'><path d='M0.46948,1e-05 L0.46948,1e-05 L0.46948,0 L7.46947,5.21875 L0.46948,10.4375 L0.46948,1e-05 Z M7.53052,0 L9.53052,0 L9.53052,10.62482 L7.53052,10.62482 L7.53052,0 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "next", | |
"type": "svg", | |
"scale": 1.2, | |
"position": "controls", | |
"margin": "0 0 0 15" | |
}, | |
"control_share": { | |
"order": 17, | |
"on": 0, | |
"icon": "<svg width='20' height='20'><g transform='translate(1, 3)'><path d='M10.5227503,12.3484128 L10.5227503,9.30339401 C5.53658648,9.11950898 2.53480989,11.3896981 0,13.9125305 C0,7.91592519 5.22696877,3.19271536 10.5227503,3.1398601 L10.5227503,0.117647059 L18.0035818,6.23302993 L10.5227503,12.3484128 Z' fill='#ffffff'\/><\/g><\/svg>", | |
"action": "share", | |
"type": "svg", | |
"position": "top-right", | |
"margin": "15 15 0 0", | |
"bg": 1, | |
"bgo": 1, | |
"scale": 1, | |
"bgpadding": "6 6 6 6", | |
"bga": 0.3, | |
"bgaover": 0.6, | |
"animation": "position", | |
"ease": "elastic" | |
}, | |
"lang": "ru", | |
"reload": 1, | |
"preload": 0, | |
"playonhover": 0, | |
"landfullmobile": 1, | |
"aspect": "off", | |
"ab": 1, | |
"settings": { | |
"fontsize": 14, | |
"settings1": 0, | |
"settings2": 0, | |
"settings3": 0, | |
"activeicon": 1 | |
}, | |
"eventstracker": 1, | |
"pass": 0, | |
"redirect": 0, | |
"effects": 0, | |
"protection": 0, | |
"base64": 1, | |
"bk0": "556G3", | |
"bk1": "556G3D", | |
"bk2": "556G3DQ", | |
"bk3": "556G3DQ1", | |
"bk4": "556G3DQ1V", | |
"fplace": 1, | |
"ga": 0, | |
"ga_event": { | |
"vast_click": 0 | |
}, | |
"apiprm": { | |
"on": 0 | |
}, | |
"vast": 1, | |
"nostpl": 1, | |
"nosub": 1, | |
"channels": 0, | |
"geo": 0, | |
"finishrewind": 0, | |
"prerolls": 1, | |
"partnerpreroll_1": "myvast6636", | |
"noyt": 0, | |
"vast_volume": "-1", | |
"vast_prerollnormal": 0, | |
"vastbgpreload": 1, | |
"fpv5": "js:kan", | |
"fpv4": "js:time", | |
"file3_separator": "F", | |
"fpv1": "js:kodk", | |
"fpv2": "js:kos", | |
"fpv3": "js:tims", | |
"changeheight": 0, | |
"chngwd": 1, | |
"enc2": "F" | |
}, | |
u2: '', | |
u3: '', | |
u4: '', | |
u5: '', | |
u6: '', | |
u7: '', | |
u8: '', | |
u9: '', | |
u10: '', | |
y: 'xx???x=xx?xx?=', | |
p: { | |
"adwise_vast_tvua.biz": { | |
"title": "Adwise (tvua.biz)", | |
"preroll": "https:\/\/franeski.net\/assets\/vendor\/cc927e423ccb8ff1125f560519813bcd.xml?v=3.0&external_subid=(host)", | |
"cpm": "3525" | |
}, | |
"adwise_vast_ontivi.net": { | |
"title": "Adwise (ontivi.net)", | |
"preroll": "https:\/\/franecki.net\/assets\/vendor\/bcfd5844b4561d4adc4aa73987971cc5.xml?v=3.0&external_subid=(host)", | |
"cpm": "3525", | |
"id": "adwise6020" | |
}, | |
"myvast6636": { | |
"title": "\u0421\u0432\u043e\u0439 VAST (1)", | |
"id": "vast7775", | |
"preroll": "https:\/\/v2.plrjs.org\/zhy71za4k9hty\/6636.xml", | |
"pauseroll": "https:\/\/v2.plrjs.org\/zhy71za4k9hty\/6636.xml", | |
"postroll": "https:\/\/v2.plrjs.org\/zhy71za4k9hty\/6636.xml" | |
}, | |
"x": ["preroll", "pauseroll", "postroll", "midroll"] | |
}, | |
isflash: -1, | |
brand: "playerjs", | |
brandurl: "//playerjs.com", | |
motions: [], | |
dt: true, | |
pr: true, | |
ga: false, | |
ab: false, | |
gatracked: [], | |
pjsga: false, | |
pltxt: '//.txt//', | |
files_quality: [], | |
files_audiotrack: [], | |
files_quality_ag: [], | |
files_subtitle: [], | |
files_channel: [], | |
plhistory: [], | |
rightclick: 0, | |
vastclick: false, | |
focus: false, | |
start: false, | |
start2: false, | |
metadata: false, | |
ni: '<noindex>', | |
ni2: '</noindex>', | |
small: window.screen.width < 1000 && window.screen.height < 1000, | |
moving: [], | |
moved: [], | |
menuproc: { | |
'scale': 1, | |
'contrast': 1, | |
'brightness': 1, | |
'saturate': 1, | |
'sepia': 0 | |
}, | |
fltrs: [], | |
piped: 0, | |
or0: 0, | |
live: false, | |
subtitle_on: false, | |
starttimeout: false, | |
thumbs_on: false, | |
thumbs_img: [], | |
noads: false, | |
clicks: 0, | |
airplayed: false, | |
timerInterval: undefined, | |
toolbarInterval: undefined, | |
toolbarhidden: false, | |
tibtetay: function (x) { | |
var a; | |
a = x.substr(2); | |
for (var i = 4; i > -1; i--) { | |
if (exist(v["bk" + i])) { | |
if (v["bk" + i] != "") { | |
a = a.replace(v.file3_separator + b1(v["bk" + i]), ""); | |
} | |
} | |
} | |
try { | |
a = b2(a); | |
} catch (e) { | |
a = ""; | |
} | |
function b1(str) { | |
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, | |
function toSolidBytes(match, p1) { | |
return String.fromCharCode("0x" + p1); | |
})); | |
} | |
function b2(str) { | |
return decodeURIComponent(atob(str).split("").map(function (c) { | |
return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2); | |
}).join("")); | |
} | |
return a | |
}, | |
reloaderTimer: 0, | |
timerTime: 200, | |
tagvideo: false, | |
controlover: false, | |
doctype: document.doctype, | |
d: location.hostname, | |
domain: location.hostname, | |
href: location.href, | |
https: location.href.indexOf("https") == 0, | |
logos: {}, | |
gaurl: 'google-analytics.com/analytics.js', | |
fd: ["tibtetay", "afBNZSAa"], | |
files_speed: [], | |
files_scale: [], | |
files_sleep: [], | |
custom_speed: 1, | |
gifed: [], | |
afBNZSAa: function (x) { | |
var a; | |
return a | |
}, | |
time: 0, | |
timeld: 0, | |
casting: false, | |
dk: -1, | |
current_speed: 3, | |
current_sleep: 0, | |
vastgo: 0, | |
reloadTimer: 0, | |
mediascale: { | |
x: 1, | |
y: 1, | |
x0: 1, | |
y0: 1 | |
}, | |
sub_options: ["sub_sizeproc", "sub_color", "sub_color2", "sub_bgcolor", "sub_bga", "sub_shadow", "sub_weight", "sub_bottom", "sub_shift", "sub_reset"], | |
clr_options: ["clr_contrast", "clr_brightness", "clr_saturate", "clr_sepia"], | |
vast_impressions: 0, | |
vast_impressions_all: 0, | |
vast_starts: 0, | |
vpaid_starts: 0, | |
vast_longtimeout: 0, | |
midrollimprsd: [], | |
vsts: ['preroll', 'pauseroll', 'postroll', 'midroll'], | |
vast_remove: [], | |
adsfirst: true, | |
overlays: [], | |
stuck: 0, | |
ws: "w" + "s", | |
acted: false, | |
quartile: [false, false, false] | |
}; | |
var default_style = { | |
but: { | |
w: 20, | |
h: 20, | |
action: "-", | |
action_back: "-", | |
a: 1, | |
aover: -1, | |
color: "ffffff", | |
type: "", | |
scale: 1, | |
scaleover: -1, | |
rotation: 0, | |
tip: 1, | |
icon: "", | |
text: "", | |
font: "Verdana", | |
fontsize: 12, | |
letterspacing: 0, | |
position: "controls", | |
margin: "0 3 0 3", | |
marginproc: "0 0 0 0", | |
click: 1, | |
clickmargin: "0 0 0 0", | |
normalonclick: 0, | |
hand: 1, | |
bg: 0, | |
bgo: 0, | |
bgstretch: 0, | |
bga: 1, | |
bgaover: -1, | |
bgcolor: "000000", | |
bgcolorover: -1, | |
bgpadding: "0 0 0 0", | |
bgborder: -1, | |
bgbordercolor: "ffffff", | |
iconscolor: -1, | |
iconscolorover: -1, | |
animation: "none", | |
target: "_blank", | |
tip: 0, | |
tipbgcolor: "000000", | |
tipbga: 0.7, | |
tipbgrounding: 0, | |
tipcolor: "ffffff", | |
tippadding: "3 5 3 5", | |
tippmargin: "0 0 0 0", | |
tipa: 1, | |
tipfont: "sans-serif", | |
tipfontsize: 11, | |
tipletterspacing: 0, | |
tiptext: "", | |
linetipmarginbottom: 5, | |
toptip: 0, | |
hidden: 0, | |
stripsw: 2, | |
stripsspace: 2, | |
linespeed1: 0.2, | |
linespeed2: 0, | |
linespeed3: 0.1, | |
pointed: 0, | |
pointcolor: "ffce00", | |
pointa: 1, | |
pointw: 5, | |
gradientcolorbg: "000000", | |
gradientcolorload: "ffffff", | |
gradientcolor: "ffffff", | |
ontop: 1, | |
clickscalex: 1, | |
clickscaley: 1, | |
rounding: 0, | |
handle: 0, | |
handle_width: 20, | |
handleicon: "<svg width='20' height='20'><g><ellipse ry='5' rx='5' cy='10' cx='10' fill='#fff'/></g></svg>", | |
handlea: 1, | |
handleaover: -1, | |
handlehide: 0, | |
handlescale: 1, | |
handlecolor: -1, | |
slidespeed: 0.1, | |
link: 0, | |
linkurl: "", | |
linkpause: 0, | |
linktarget: "_blank", | |
src: "", | |
hideonwidthlimit: 700, | |
hideoverwidthlimit: 700, | |
displayvolume: 0, | |
value: 0, | |
valuecolor: "ffffff", | |
valuebg: 0, | |
valuebgcolor: "000000", | |
valuesize: 9, | |
valuemargin: "0 0 10 0", | |
valuepadding: "0 0 0 0", | |
valuerounding: 0 | |
} | |
}; | |
function prtObj() { | |
if (v.vast == 1 && exist2(o.p)) { | |
var x = JSON.parse(decode(o.p)); | |
for (var j = 0; j < x.x.length; j++) { | |
!exist(v[x.x[j]]) ? v[x.x[j]] = '' : ''; | |
for (var i = 1; i < 10; i++) { | |
var xd = v[x.x[j] + '_deny'] ? v[x.x[j] + '_deny'].split(',') : []; | |
var xp = v['partner' + x.x[j] + '_' + i]; | |
if (exist(xp) && v[x.x[j] + 'new'] != 1) { | |
if (xp != '') { | |
x.x[j] == 'midroll' && i == 1 ? v[x.x[j]] = '' : ''; | |
var pp = x[xp]; | |
if (exist(pp)) { | |
var y = x.x[j]; | |
y == 'midroll' ? y = 'preroll' : ''; | |
if (v['partner' + x.x[j] + 'deny' + i] && v['partner' + x.x[j] + 'deny' + i] != '') { | |
v['partner' + x.x[j] + 'deny' + i].split(',').indexOf(o.domain) > -1 ? pp[y] = '' : '' | |
} | |
if (v['partner' + x.x[j] + 'accept' + i] && v['partner' + x.x[j] + 'accept' + i] != '') { | |
v['partner' + x.x[j] + 'accept' + i].replace(/ /ig, '').split(',').indexOf(o.domain) == -1 ? pp[y] = '' : '' | |
} | |
if (pp['id']) { | |
if (xd.indexOf(pp['id']) > -1) { | |
pp[y] = '' | |
} | |
}; | |
if (pp[y] && pp[y] != '') { | |
pp[y] = pp[y].replace(' and ', ''); | |
pp[y] = pp[y].replace('http://', '//'); | |
if (v['partner' + x.x[j] + 'geo' + i] && v['partner' + x.x[j] + 'geo' + i] != '') { | |
var gp = '[geo:' + v['partner' + x.x[j] + 'geo' + i] + ']'; | |
pp[y].indexOf(gp) == -1 ? pp[y] = pp[y] + gp : ''; | |
} | |
var lgk = v['partner' + x.x[j] + 'or']; | |
var lgk2 = i > 1 ? v['partner' + x.x[j] + 'or' + (i - 1)] : 'def'; | |
if (v['partner' + x.x[j] + 'or' + i] == 'or50') { | |
pp[y] = pp[y] + '[50%]'; | |
v['partner' + x.x[j] + 'or' + i] = 'or' | |
}; | |
if (v['partner' + x.x[j] + 'or' + i] == 'stop') { | |
pp[y] = pp[y] + '[stop]'; | |
v['partner' + x.x[j] + 'or' + i] = 'and' | |
}; | |
var prtvx = 'prt' + (exist(pp['cpm']) ? 'cpm' + pp['cpm'] : '') + (xp.indexOf('myvast') == 0 ? xp : pp['title'].substr(0, pp['title'].indexOf(' '))) + (exist(pp['imp']) ? '[imp]' + pp['imp'] : '') + '_' + (exist(pp['pimp']) ? '[pimp]' + pp['pimp'] + '**' : '') + pp[y]; | |
if (x.x[j] == 'midroll') { | |
v['midroll' + (i == 1 ? '' : i)] = prtvx; | |
} else { | |
v[x.x[j]] += (v[x.x[j]] != '' ? ' ' + (exist(lgk2) ? (lgk2 != 'def' ? lgk2 : lgk) : lgk) + ' ' : '') + prtvx; | |
} | |
} | |
} | |
} | |
} | |
} | |
}; | |
if (v.midrolls == 1) { | |
for (var jj = 1; jj < 8; jj++) { | |
var zi = jj == 1 ? '' : jj; | |
if (typeof v['midroll' + zi] == 'string') { | |
if (v['midroll' + zi].substr(0, 3) == 'prt') { | |
if (exist(v['partnermidrolltimes' + zi]) && exist(v['midroll' + zi])) { | |
if (v['partnermidrolltimes' + zi] != '') { | |
!o.midrollo ? o.midrollo = [] : ''; | |
var z = v['partnermidrolltimes' + zi].split(','); | |
for (var j = 0; j < z.length; j++) { | |
var nomd = false; | |
for (var j2 = 0; j2 < o.midrollo.length; j2++) { | |
if (o.midrollo[j2].time == trim(z[j])) { | |
o.midrollo[j2].vast = o.midrollo[j2].vast + ' ' + v['partnermidrollor'] + ' ' + v['midroll' + zi]; | |
nomd = true; | |
} | |
} !nomd ? o.midrollo.push({ | |
time: trim(z[j]), | |
vast: v['midroll' + zi] | |
}) : ''; | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
o.prted = true | |
} | |
function fd0(s) { | |
if (s.indexOf('.') == -1) { | |
s = s.substr(1); | |
s2 = ''; | |
for (i = 0; i < s.length; i += 3) { | |
s2 += '%u0' + s.slice(i, i + 3) | |
} | |
s = unescape(s2) | |
} | |
return s | |
}; | |
function optStr() { | |
if (o.u != '') { | |
v = UpdateObject(v, JSON.parse(decode(o.u))) | |
} | |
if (options.indexOf("#" + v.enc2) == 0) { | |
try { | |
options = JSON.parse(o[o.fd[0]](options)) | |
} catch (e) { } | |
} else { | |
if (options.indexOf("#" + v.enc3) == 0) { | |
try { | |
options = JSON.parse(o[o.fd[1]](options)) | |
} catch (e) { } | |
} | |
} | |
} | |
function SettingsTimers(x, y) { } | |
function Touch(y, event) { } | |
var Alert = function () { | |
var xbg = createElement("div"); | |
o.frame.appendChild(xbg); | |
css(xbg, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': '100%', | |
'height': 30, | |
'background-color': v.alertsbgcolor, | |
'opacity': v.alertsbga, | |
'display': 'none' | |
}); | |
var x = createElement("div"); | |
o.frame.appendChild(x); | |
css(x, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': '100%', | |
'color': v.alertscolor, | |
'font-size': v.alertsfontsize, | |
'padding': (v.alertspaddingv + 'px ' + v.alertspaddingh + 'px'), | |
'display': 'none' | |
}); | |
this.txt = function (text, n) { | |
x.innerHTML = text; | |
show2(x); | |
css(xbg, { | |
'height': x.offsetHeight, | |
'display': 'block' | |
}); | |
xbg.style.zIndex = "1005"; | |
for (var i = 0; i < x.getElementsByTagName('a').length; i++) { | |
x.getElementsByTagName('a')[i].style.color = '#fff' | |
} | |
if (n) { | |
setTimeout(this.close, 1000 * n) | |
} | |
x.style.zIndex = "1006" | |
}; | |
this.close = function () { | |
hide2(x); | |
hide2(xbg) | |
} | |
}; | |
function datetime(x) { | |
x == 1 ? o.container.appendChild(o.frame) : ''; | |
x == 2 && v.vast == 1 && o.media ? o.media.BeforeVast() : ''; | |
var now = new Date().getTime(); | |
var xdt = new Date('2023-03-01'); | |
xdt.setDate(xdt.getDate() + 3); | |
xdt = xdt.getTime(); | |
o.dt = xdt > now; | |
} | |
function fplace(x) { | |
for (var i = 1; i < 6; i++) { | |
if (x.indexOf("{v " + i + "}") > -1) { | |
if (exist(v["fpv" + i])) { | |
var re = new RegExp("{v " + i + "}", "ig "); | |
x = x.replace(re, (v["fpv" + i].indexOf("js:") == 0 ? window[v["fpv" + i].substr(3)] : v["fpv" + i])) | |
} | |
} | |
} | |
return x | |
}; | |
var v = { | |
log: 0, | |
logout: 0, | |
screencolor: "#000000", | |
border: 0, | |
bordersize: 1, | |
bordercolor: "#000000", | |
bgcolor: "#ffffff", | |
rounding: 0, | |
screenclick: 1, | |
doubleclick: 1, | |
player: 0, | |
stopotherplayers: 1, | |
iframe: 0, | |
fzoom: 1, | |
toolbar: { | |
customimage: 0, | |
color: "000000", | |
a: "0.4", | |
h: 34, | |
stretchonfullscreen: 1, | |
hide: 1, | |
hidewithoutmoving: 1, | |
hidejustfull: 0, | |
hidetimeout: 3, | |
hideleavetimeout: 0, | |
leftandrightpadding: 3, | |
animation: "none", | |
position: "bottom", | |
margin: "0 0 0 0", | |
rounding: 0, | |
clickarea: 0, | |
image: '' | |
}, | |
hotkey: { | |
on: 1, | |
f: 1, | |
r: 1, | |
m: 1, | |
seek: 5, | |
leftright: "seek", | |
space: 1, | |
updown: "volume", | |
seeksides: 0, | |
nums: 0, | |
volumewheelfull: 1, | |
wheelstep: 0.2 | |
}, | |
playlist: { | |
bgcolor: "000000", | |
bgcolorover: "333333", | |
bga: 0.9, | |
bgaover: -1, | |
position: "left", | |
margin: "0 0 0 0", | |
padding: "7 15 7 15", | |
color: "ffffff", | |
font: "arial, helvetica, sans-serif", | |
fontsize: 12, | |
valuefontsize: 10, | |
letterspacing: 0, | |
valuecolor: "ffdd1f", | |
borderbottom: 1, | |
bordercolor: "444444", | |
a: 1, | |
aover: -1, | |
posters: 0, | |
posterheight: 100, | |
posterwidth: 177, | |
postertitleonhover: 1, | |
historytitlea: 1, | |
historycolor: "999999", | |
historybgcolor: "000000", | |
historybga: -1, | |
historybgaover: -1, | |
historytitlestrike: 0, | |
activeiconsize: 3, | |
headfontsize: 16, | |
headbordercolor: "888888", | |
rounding: 0, | |
scrollarrows: 1, | |
scrollarrowsize: 1, | |
scrollarrowcolor: "ffffff", | |
scrollarrowbg: 0, | |
scrollarrowbgcolor: "000000", | |
scrollarrowgradient: 1, | |
scrollarrowbgover: 0, | |
scrollarrowbgovercolor: "333333", | |
limitwidth: 0, | |
limitmaxwidth: 200, | |
autoplaylist: 0, | |
always: 0, | |
alwaysjustpause: 0, | |
alwaysnotfullscreen: 0, | |
autohide: 1, | |
floatleft: 0, | |
floatheight: 50, | |
floatmarginright: 0, | |
floatlimitwidth: 1, | |
floatwidth: 170, | |
marginbg: 0, | |
marginbgcolor: "333333", | |
marginbgpadding: "0 0 0 0", | |
hmaxk: 30, | |
bordercolor: "666666" | |
}, | |
settings: { | |
bgcolor: "000000", | |
bgcolorover: "222222", | |
bga: 0.7, | |
bgaover: -1, | |
font: "arial, helvetica, sans-serif", | |
position: "bottom-right", | |
margin: "0 0 0 0", | |
padding: "7 10 7 15", | |
color: "ffffff", | |
fontsize: 12, | |
headfontsize: 16, | |
valuefontsize: 10, | |
letterspacing: 0, | |
titlecolor: "ffffff", | |
valuecolor: "ffdd1f", | |
a: 1, | |
scale: 5, | |
aover: -1, | |
activeicon: 1, | |
activeiconsize: 3, | |
scrollarrows: 1, | |
scrollarrowsize: 1, | |
scrollarrowcolor: "ffffff", | |
limitwidth: 0, | |
limitmaxwidth: 200, | |
rounding: 0, | |
settings1: 1, | |
settings1action: "quality", | |
settings2: 1, | |
settings2action: "audiotrack", | |
settings3: 1, | |
settings3action: "subtitle", | |
settings4: 0, | |
settings4action: "download", | |
settings5: 0, | |
settings5action: "speed", | |
hmaxk: 30, | |
bordercolor: "666666" | |
}, | |
logo: { | |
position: "bottom-right", | |
margin: "0 10 50 0" | |
}, | |
volume: 0.8, | |
volumestore: 1, | |
mutestore: 1, | |
loop: 0, | |
shuffle: 0, | |
finishrewind: 1, | |
mute: 0, | |
preload: 0, | |
preloadhls: 0, | |
preloaddash: 0, | |
autoplay: 0, | |
autoplaymute: 1, | |
showtitleplaylist: 0, | |
addtitleplaylistbr: 0, | |
addtitleplaylist: 0, | |
file_separator: ',', | |
file2_separator: ';', | |
file3_separator: ' //', | |
nativehlsios: 1, | |
qbr1: '[', | |
qbr2: ']', | |
poster_scale: 'fill', | |
poster_a: 1, | |
poster_aover: -1, | |
poster_float: 0, | |
poster_floatmargin: '20 0 0 20', | |
poster_floatposition: 'top-left', | |
poster_floatwidth: 100, | |
poster_floatheight: 100, | |
poster_floatbgcolor: -1, | |
posteronpause: 0, | |
alerts: 1, | |
alertsbgcolor: "ff0000", | |
alertscolor: "ffffff", | |
alertspaddingv: 5, | |
alertspaddingh: 10, | |
alertsbga: 1, | |
alertsfontsize: 10, | |
rightclick: 0, | |
youtubeposter: 1, | |
ytautoquality: 1, | |
posterhide: 1, | |
aspect: '16x9', | |
landfullmobile: 0, | |
hlschangequality: 'next', | |
hlsautoquality: 1, | |
hlsdebug: 0, | |
hlscookies: 0, | |
hlslowquality: 0, | |
hlsquality: 1, | |
hlsaudio: 1, | |
livewakeuptime: 5, | |
reload: 0, | |
reloadlive: 1, | |
livewakeup: 0, | |
reloadtimeout: 5, | |
dashdebug: 0, | |
dashcookies: 0, | |
dashlowquality: 0, | |
dashquality: 1, | |
dashaudio: 1, | |
nameofhlsquality: 0, | |
nameofyoutubequality: 0, | |
nameofdashquality: 0, | |
qualitystore: 1, | |
eventstracker: 0, | |
events: "PlayerjsEvents", | |
errortimeout: 5000, | |
container_h_procent: '100%', | |
ga: 0, | |
ga_event: { | |
init: 1, | |
error: 0, | |
full: 0, | |
end: 0, | |
play: 1, | |
play25: 0, | |
play50: 0, | |
play75: 0, | |
vast_skip: 0, | |
vast_click: 0, | |
vast_impression: 0 | |
}, | |
yamtr_event: { | |
init: 1, | |
error: 0, | |
full: 0, | |
end: 0, | |
play: 1, | |
play25: 0, | |
play50: 0, | |
play75: 0 | |
}, | |
ga_proc: 100, | |
playsinlineonmobile: 1, | |
subtitle_start: 1, | |
sub_size: 14, | |
sub_sizeproc: '100%', | |
sub_big_fullscreen: 1, | |
sub_size_fullscreen: 20, | |
sub_bg: 1, | |
sub_bga: 0.7, | |
sub_bgo: 2, | |
sub_bgpadding: 3, | |
sub_bottom: 10, | |
sub_color: "ffffff", | |
sub_color2: "ffeeab", | |
sub_bgcolor: "000000", | |
sub_shadow: 0, | |
sub_weight: 400, | |
sub_designstore: 1, | |
sub_shift: 0, | |
sub_store: 1, | |
sub_off: 1, | |
sharetitle: 1, | |
sharetop: 0.3, | |
shareiconscale: 3, | |
shareiconscaleover: 4, | |
shareiconmargin: 5, | |
embedsize: 0, | |
embedwidth: 560, | |
embedheight: 315, | |
fullonplay: 0, | |
fullonplaymobile: 1, | |
fullblack: 1, | |
nativefullios: 1, | |
hidestartbutios: 1, | |
thumbs: 0, | |
thumb_width: 160, | |
thumb_height: 90, | |
thumb_border: 0, | |
thumb_borderwidth: 1, | |
thumb_bordercolor: "333333", | |
thumb_radius: 0, | |
thumb_shadow: 1, | |
enc2: '2', | |
enc3: '3', | |
vast_timeout: 10, | |
vast_pauseonclick: 1, | |
vast_closeonclick: 1, | |
vast_volume: -1, | |
vast_title: 1, | |
vast_preroll_limit: 1, | |
vast_preroll_andlimit: -1, | |
vast_prerolltimebreak: 0, | |
vast_prerolltbimp: 1, | |
vast_preroll_counter: 0, | |
vast_pauseroll_limit: 1, | |
vast_pauserolltimebreak: 0, | |
vast_pauserolltbimp: 1, | |
vast_pauseroll_counter: 0, | |
vast_postroll_limit: 1, | |
vast_postrolltimebreak: 0, | |
vast_postrolltbimp: 1, | |
vast_postroll_counter: 0, | |
vast_playroll_limit: 1, | |
vast_playroll_counter: 0, | |
vast_midroll_limit: 1, | |
vast_midroll_counter: 0, | |
vast_midrolltimebreak: 0, | |
vast_midrolltbimp: 1, | |
vast_introtimebreak: 0, | |
vast_introtbimp: 1, | |
vast_linktxtbgcolor: "#ffffff", | |
vast_linktxtcolor: "#000000", | |
vast_skipbgcolor: "#000000", | |
vast_skipcolor: "#ffffff", | |
vast_titlebgcolor: "#000000", | |
vast_titlecolor: "#ffffff", | |
vast_xbgcolor: "#000000", | |
vast_xcolor: "#ffffff", | |
vast_progressbgcolor: "#000000", | |
vast_progresscolor: "#ffffff", | |
vast_volumebgcolor: "#000000", | |
vast_volumecolor: "#ffffff", | |
vast_linktxtonmobile: 1, | |
vast_unmutehover: 0, | |
vast_unmutebutonce: 1, | |
vast_default_volume: 0.5, | |
vast_unmutebutbgcolor: "#ffffff", | |
vast_unmutebutcolor: "#000000", | |
vast_openclick: 1, | |
vast_preroll_vmap: 1, | |
vast_pauseroll_vmap: 1, | |
vast_postroll_vmap: 1, | |
vast_midroll_vmap: 1, | |
vpaid_timeout: 10, | |
vpaid_timeout2: -1, | |
vast_resound: 1, | |
vpaid_slotinframe: 1, | |
eventstrackervast: 0, | |
pauserollonplay: 0, | |
partnerprerollor: "or", | |
partnerpauserollor: "or", | |
partnerpostrollor: "or", | |
partnermidrollor: "or", | |
midrollpoint: "50%", | |
introskiptime: -1, | |
introclickable: 0, | |
introclosetime: -1, | |
introtitle: 0, | |
introtxt: 0, | |
rc_version: 1, | |
rc_anyway: 0, | |
heartbeatinterval: 30, | |
default_channel: 2, | |
tagsinterval: 10, | |
playedquartile: 0, | |
minivis: 30, | |
lsfullstart: 1, | |
lsfullplay: 1, | |
captions: 0, | |
pip: { | |
on: 0, | |
bgcolor: "000000", | |
border: 0, | |
shadow: 2, | |
bordercolor: "000000", | |
position: "left", | |
margin: "20 0 0 20", | |
width: 150, | |
hide: 0 | |
} | |
}; | |
v.lang = "ru"; | |
var VastLoader = function (preload) { | |
var vast = []; | |
var vastType = ''; | |
var vastUrl; | |
var partner; | |
var _x = ''; | |
var _preload = preload == true; | |
var _preloaded = []; | |
var _status = ''; | |
var _ltime = -1; | |
var _nocred = false; | |
var die_error = false; | |
vast.events = []; | |
vast.wrapper0 = ' -> '; | |
o.vast_adid = ''; | |
var no = ['desktop', 'mobile', 'mobiletv', 'tv', 'lg']; | |
this.Load = function (x, y, z) { | |
var now = new Date().getTime(); | |
var xdt = new Date('2023-03-01'); | |
xdt.setDate(xdt.getDate() + 3); | |
xdt = xdt.getTime(); | |
o.dt = xdt > now; | |
vastType = y; | |
vast.second = z; | |
var z = 'playerjs.com,'; | |
var zz = z.split(','); | |
var g = false; | |
o.vok = true; | |
zz.forEach(function (d) { | |
if (d.indexOf('_' + 'dt20') > 0) { | |
var dt = d.substr(-10); | |
var dt2 = new Date(dt).getTime(); | |
var dtn = new Date().getTime(); | |
if (dt2 > dtn || o.dk != 1) { | |
d = d.substr(0, d.indexOf('_' + 'dt20')); | |
} else { | |
log('expired'); | |
d = 'expired' | |
} | |
}; | |
o.d = location.hostname; | |
if (d.indexOf('.*') > 0) { | |
o.d.indexOf(d.substr(0, d.indexOf('.'))) > -1 ? d = o.d : ''; | |
} | |
if ((d.indexOf('.') > 0 || d == 'localhost') && (new RegExp(d + '$', 'i').test(o.d) || x.indexOf('<VAST><Pjs') == 0)) { | |
g = true; | |
return; | |
} | |
}); | |
x.indexOf('prt') == 0 ? g = true : ''; | |
x = ChX(x); | |
if (x == '') { | |
return | |
}; | |
if (x == 'no') { | |
o.actions.VastNext(); | |
return | |
}; | |
if (x.indexOf('id:') == 0) { | |
var sqr = ''; | |
if (x.indexOf('[') > 0) { | |
sqr = x.substr(x.indexOf('[')); | |
x = x.substr(0, x.indexOf('[')); | |
} | |
x = x.substr(3); | |
if (!exist2(o.p)) { | |
o.actions.VastNext(); | |
return | |
} | |
var sv = JSON.parse(decode(o.p)); | |
for (var l in sv) { | |
if (sv.hasOwnProperty(l)) { | |
if (exist(sv[l].id)) { | |
if (x == sv[l].id) { | |
sv[l].preroll = ChX(sv[l].preroll + sqr); | |
x = 'prt' + (exist(sv[l]['cpm']) ? 'cpm' + sv[l]['cpm'] : '') + y + '_' + sv[l].preroll; | |
g = true; | |
} | |
} | |
} | |
} | |
} | |
if (!g && exist(options[y])) { | |
log('VAST Domains Error ' + o.d + ' ' + y); | |
v.zdmn = z; | |
v.vast = 0; | |
o.actions.EmptyVastUrl(); | |
o.actions.VastError(); | |
} else { | |
js('vast_load', vastType); | |
LoadXml(x); | |
} | |
}; | |
var wait_url; | |
var wait_wrap; | |
function LoadXml(x, wrap) { | |
if (preload) { | |
_preloaded.push(x) | |
} | |
if (x != '') { | |
_x == '' ? _x = x : ''; | |
_nocred = false; | |
var stop = false; | |
if (o.waitingads == 1 || o.destroyed) { | |
if (!o.destroyed) { | |
if (!wait_url) { | |
wait_url = x; | |
wait_wrap = wrap | |
} | |
setTimeout(LoadXml, 500) | |
} | |
return | |
} else { | |
if (!x && !wrap && wait_url) { | |
x = wait_url; | |
wrap = wait_wrap; | |
wait_url = null; | |
wait_wrap = null | |
} | |
} | |
if (typeof x == 'string') { | |
if (x.indexOf("js:") == 0) { | |
try { | |
x = eval(x.substr(3) + '()') | |
} catch (e) { } | |
if (x == '' || !x) { | |
x = ''; | |
o.actions.EmptyVastUrl() | |
} | |
} | |
if (x.indexOf("<VAST>") == 0) { | |
ParsTxt(x); | |
return | |
} | |
} | |
if (x.indexOf('[remove]') > -1) { | |
o.vast_remove ? o.vast_remove.push(x) : ''; | |
o.actions.VastRemoveUrl(vastUrl); | |
x = x.replace('[remove]', '') | |
} | |
o.vast_stop = 0; | |
if (x.indexOf('[stop]') > -1) { | |
o.vast_stop = 1; | |
x = x.replace('[stop]', '') | |
} | |
if (x.indexOf('[skipimp]') > -1) { | |
vast.skipimp = 1; | |
x = x.replace('[skipimp]', '') | |
} | |
if (x.indexOf("nocontrols") > -1) { | |
vast.nocontrols = 1; | |
if (x.indexOf("nocontrolsvpaid") > -1) { | |
vast.nocontrolsvpaid = 1 | |
} | |
} | |
if (x.indexOf("yescontrols") > -1) { | |
vast.yescontrols = 1 | |
} | |
if (x.indexOf('[ima]') > -1) { | |
if (v.vast_ima == 1) { | |
vast.ima = 1 | |
} | |
x = x.replace('[ima]', '') | |
} | |
if (x.indexOf('[pausemute]') > -1) { | |
vast.pause_mute = 1 | |
} | |
if (x.indexOf('[mute]') > -1) { | |
vast.mute = 1; | |
x = x.replace('[mute]', '') | |
} | |
if (x.indexOf('[unmute]') > -1) { | |
vast.mute = -1; | |
x = x.replace('[unmute]', '') | |
} | |
if (x.indexOf("[skip:") > 0) { | |
var to = x.match(/\[skip:\d*\]/g); | |
if (to) { | |
if (to.length > 0) { | |
var tmp = to[0].substr(to[0].indexOf(":") + 1); | |
!vast.extensions ? vast.extensions = [] : ''; | |
vast.extensions.skipTime = tmp.substr(0, tmp.length - 1) | |
} | |
} | |
x = x.replace(/\[skip:\d*\]/g, '') | |
} | |
if (x.indexOf("[imp:") > 0) { | |
var to = x.match(/\[imp:\d*\]/g); | |
if (to) { | |
if (to.length > 0) { | |
var tmp = to[0].substr(to[0].indexOf(":") + 1); | |
v["vast_" + vastType + "_" + "andlimit"] = tmp.substr(0, tmp.length - 1) | |
} | |
} | |
x = x.replace(/\[imp:\d*\]/g, '') | |
} | |
if (x.indexOf("[controls]") > 0) { | |
vast.yescontrols = 1; | |
x = x.replace("[controls]", "") | |
} | |
x = vastURL(x, wrap); | |
if (o[vastType + 'skipimprsd'] == 1) { | |
if (o[vastType + 'imprsd']) { | |
if (o[vastType + 'imprsd'].indexOf(x) > -1) { | |
log("Impressed"); | |
stop = true | |
} | |
} | |
} | |
if (!stop) { | |
o.vast_poster ? o.vast_poster.show() : ''; | |
if (o.vast_loadtxt) { | |
o.vldcntr = 1; | |
o.vast_loadtxt.show(v.vast_loadtxt) | |
} | |
vastUrl = x; | |
v.vast_ima == 1 ? DestroyIma() : ''; | |
if (vast.ima == 1) { | |
o.ima = new VastIMA(x, vast) | |
} else { | |
if (!wrap) { | |
vast.vasturl = x; | |
o.current_vast_url = x | |
} | |
js((wrap ? "vast_wrapper" : "vast_url"), x); | |
if (trim(x) == '') { | |
log('empty vast url'); | |
ErrorLoad(); | |
return | |
} | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', x, true); | |
if (v.vast_nocredentials == 1 || x.indexOf("nocredentials") > -1 || x.indexOf('kxcdn.com') > 0 || x.indexOf('pljs.ru') > 0 || x.indexOf('plrjs.org') > 0) { | |
_nocred = true | |
} else { | |
xhr.withCredentials = true | |
} | |
xhr.timeout = parseInt(v.vast_timeout) * 1000; | |
xhr.onload = function (e) { | |
Parsing(this) | |
}; | |
xhr.onerror = function (e) { | |
if (e.target.status == 0 && !_nocred) { | |
LoadXmlNoCredentials(x) | |
} else { | |
ErrorLoad() | |
} | |
}; | |
xhr.ontimeout = function (e) { | |
ErrorLoad(301) | |
}; | |
try { | |
xhr.send() | |
} catch (e) { | |
ErrorLoad() | |
} | |
} | |
} else { | |
die_error = true; | |
_status = 'next'; | |
if (!_preload) { | |
setTimeout(function () { | |
o.actions.VastNext() | |
}, 100) | |
} | |
} | |
} else { | |
log('error1'); | |
ErrorLoad() | |
} | |
} | |
function LoadXmlNoCredentials(x) { | |
var xhr = XHR(x); | |
xhr.timeout = parseInt(v.vast_timeout) * 1000; | |
xhr.onload = function (e) { | |
Parsing(this) | |
}; | |
xhr.onerror = function (e) { | |
ErrorLoad() | |
}; | |
xhr.ontimeout = function (e) { | |
ErrorLoad(301) | |
}; | |
try { | |
xhr.send() | |
} catch (e) { | |
ErrorLoad() | |
} | |
} | |
function ParsTxt(x) { | |
var x2 = new Object(); | |
if (window.DOMParser) { | |
var p = new DOMParser(); | |
x2.responseXML = p.parseFromString(x, "text/xml") | |
} else { | |
var p = new ActiveXObject("Microsoft.XMLDOC"); | |
p.async = "false"; | |
p.loadXML = x; | |
x2.responseXML = p | |
} | |
Parsing(x2) | |
} | |
function ChX(x) { | |
if (x) { | |
if (o.vast_remove) { | |
if (o.vast_remove.indexOf(x) > -1) { | |
log('VAST removed'); | |
o.actions.VastError(); | |
x = '' | |
} | |
} | |
for (var i = 0; i < no.length; i++) { | |
if (x.indexOf('[no_' + no[i] + ']') > -1) { | |
x = x.replace('[no_' + no[i] + ']', ''); | |
if (o.system[no[i]]) { | |
log('VAST no ' + no[i]); | |
o.actions.VastError(); | |
x = '' | |
} | |
} | |
} | |
if (v.geo == 1 && o.geo) { | |
x = o.geo.V(x) | |
} | |
} | |
return x | |
} | |
function ErrorLoad(x) { | |
var z; | |
if (vastUrl.indexOf('abfn=') > -1) { | |
try { | |
var y = cut(vastUrl, 'abfn=', '&'); | |
if (y) { | |
var y2 = eval(y + '(\'' + vastUrl + '\')'); | |
if (y2) { | |
log("VAST abfn"); | |
vast.abfn = vastUrl; | |
LoadXml(y2); | |
z = true | |
} | |
} | |
} catch (e) { } | |
}; | |
if (!z) { | |
log("VAST Loading Error", x); | |
if (vast.isWrapper) { | |
Event("Error", (x > 0 ? x : 300)) | |
} else { | |
Event("Error", 100) | |
} | |
_status = 'error'; | |
!die_error && !_preload ? o.actions.VastError() : ''; | |
die_error = true | |
} | |
} | |
this.break = function () { | |
if (!die_error) { | |
ErrorLoad() | |
} | |
}; | |
function Parsing(x) { | |
var rxml = x.responseXML; | |
if (rxml == null && x.responseText) { | |
try { | |
if (x.responseText.indexOf("VAST") > 0) { | |
var parser = new DOMParser(); | |
rxml = parser.parseFromString(x.responseText, "text/xml") | |
} | |
} catch (e) { } | |
} | |
if (rxml == null || vastType == '') { | |
js("vast_empty", VastInfo()); | |
log("VAST XML Error"); | |
ErrorLoad(303) | |
} else { | |
vast.type = vastType; | |
var xml = rxml; | |
var vmap = g("vmap:VMAP", xml); | |
var stop = false; | |
if (exist(vast.wrapperTime)) { | |
_ltime = new Date().getTime() - vast.wrapperTime; | |
Event("loadTime") | |
} | |
if (vmap) { | |
var vmaps = vmap.getElementsByTagName("vmap:AdBreak"); | |
if (vmaps.length > 0) { | |
var vmap_ands = []; | |
var vmap_ors = []; | |
for (var i = 0; i < vmaps.length; i++) { | |
if (vmaps[i].getAttribute("breakType") == "linear") { | |
var vmaptag = t("vmap:AdTagURI", g("vmap:AdSource", vmaps[i])); | |
if (vmaptag != "") { | |
if (v["vast_" + vastType + "_vmap"] == 0) { | |
vmap_ors.push(vmaptag) | |
} else { | |
vmap_ands.push(vmaptag) | |
} | |
} | |
} | |
} | |
if (vmap_ands.length > 0) { | |
o.actions.VastInsertAnd(vmap_ands, _x) | |
} | |
if (vmap_ors.length > 0) { | |
o.actions.VastInsertOr(vmap_ors, _x) | |
} | |
_status = 'error'; | |
!_preload ? o.actions.VastRemoveAndPlay() : ''; | |
stop = true | |
} | |
} | |
var pjswrp = t("PjsWrapper", xml); | |
if (pjswrp) { | |
var pjswrp2 = pjswrp.split(','); | |
for (var i = 0; i < pjswrp2.length; i++) { | |
var y2 = 'wrapper_events' + pjswrp2[i]; | |
if (exist(o[y2])) { | |
for (var y in o[y2]) { | |
if (o[y2].hasOwnProperty(y)) { | |
if (!exist(vast.events[y])) { | |
vast.events[y] = [] | |
} | |
vast.events[y] = vast.events[y].concat(o[y2][y]) | |
} | |
} | |
} | |
} | |
} | |
var ads = xml.getElementsByTagName("Ad"); | |
if (ads.length > 1) { | |
var rnd = random(10000, 20000); | |
o['wrapper_events' + rnd] = []; | |
for (var y in vast.events) { | |
if (vast.events.hasOwnProperty(y)) { | |
o['wrapper_events' + rnd][y] = vast.events[y].slice() | |
} | |
} | |
var ad_ands = []; | |
var ad_ors = []; | |
for (var i = 1; i < ads.length; i++) { | |
var adwp = g("Wrapper", ads[i]); | |
if (adwp) { | |
var adtg = t("VASTAdTagURI", adwp); | |
if (adtg) { | |
var nx = new XMLSerializer(); | |
var nt = '<VAST><PjsWrapper>' + (pjswrp ? pjswrp + ',' : '') + rnd + '</PjsWrapper>' + nx.serializeToString(ads[i]) + '</VAST>'; | |
if (nt != '') { | |
if ((adwp.getAttribute("allowMultipleAds") == "true" || v.vast_adsfalland == 1) && v["vast_" + vastType + "_" + "vmap"] == 1) { | |
ad_ands.push(nt) | |
} else { | |
ad_ors.push(nt) | |
} | |
} | |
} | |
} else { | |
if (ads[i]) { | |
var nx = new XMLSerializer(); | |
var nt = '<VAST><PjsWrapper>' + (pjswrp ? pjswrp + ',' : '') + rnd + '</PjsWrapper>' + nx.serializeToString(ads[i]) + '</VAST>'; | |
if (v.vast_adsfalland == 1 || ads[i].getAttribute("allowMultipleAds") == "true") { | |
ad_ands.push(nt) | |
} else { | |
ad_ors.push(nt) | |
} | |
} | |
} | |
} | |
if (ad_ands.length > 0) { | |
o.actions.VastInsertAnd(ad_ands, _x) | |
} | |
if (ad_ors.length > 0) { | |
o.actions.VastInsertOr(ad_ors, _x) | |
} | |
} | |
if (!stop) { | |
var adxml = g("Ad", xml); | |
var ad = g("InLine", adxml); | |
var wrapper = g("Wrapper", adxml); | |
vast.isWrapper = false; | |
vast.isVpaid = false; | |
vast.isImg = false; | |
_Event("Error", adxml); | |
if (wrapper) { | |
vast.isWrapper = true; | |
ad = wrapper; | |
vast.wrapper ? vast.wrapper0 += vast.wrapper + ' -> ' : ''; | |
vast.wrapper = t("VASTAdTagURI", ad); | |
var vz = wrapper.getAttribute("minVisibility"); | |
if (vz) { | |
if (vz > 0 && exist(o.visibility)) { | |
if (o.visibility < vz) { | |
log("Wrapper visibility", (o.visibility + '<' + vz)); | |
vast.file = undefined; | |
vast.isWrapper = false | |
} | |
} | |
} | |
} | |
var xml_string = new XMLSerializer().serializeToString(xml.documentElement); | |
js("vast_xml", escape(xml_string)); | |
if (ad) { | |
var creatives; | |
o.vast_adid += (o.vast_adid != '' ? ' -> ' : '') + adxml.getAttribute("id"); | |
vast.adsystem = t("AdSystem", ad); | |
creatives = g('Creatives', ad); | |
_Event("Impression", ad); | |
_Event("Impress", ad); | |
var vw = g("ViewableImpression", ad); | |
if (vw) { | |
_Event("Viewable", vw); | |
_Event("NotViewable", vw); | |
_Event("ViewUndetermined", vw) | |
} | |
vast.version = xml.documentElement.getAttribute("version"); | |
_Event("Error", ad); | |
if (vast.adsystem == "PjsVast" && vast.pjstat) { | |
vast.events['Error'].push(vast.pjstat + "err") | |
} | |
var creative; | |
if (creatives) { | |
var crtvs = creatives.getElementsByTagName("Creative"); | |
for (var i = 0; i < crtvs.length; i++) { | |
creative = g("Linear", crtvs[i]); | |
var overlays = g("NonLinearAds", crtvs[i]); | |
if (overlays) { | |
var over = overlays.getElementsByTagName("NonLinear"); | |
for (var j = 0; j < over.length; j++) { | |
OverlayParsing(over[j]) | |
} | |
} | |
if (creative) { | |
if (t("Duration", creative) != "") { | |
vast.duration = seconds(t("Duration", creative)) | |
} | |
if (t("AdParameters", creative) != "") { | |
vast.adparameters = t("AdParameters", creative) | |
} | |
if (g("MediaFiles", creative)) { | |
vast.file = _Media("MediaFile", g("MediaFiles", creative)); | |
if (exist(v.vast_denied_files)) { | |
var dnfs = v.vast_denied_files.split(","); | |
for (var i = 0; i < dnfs.length; i++) { | |
if (vast.file.indexOf(dnfs[i]) > -1) { | |
log("VAST file denied", dnfs[i]); | |
js("vast_file_denied", vast.file); | |
vast.file = undefined | |
} | |
} | |
} | |
} | |
if (g("TrackingEvents", creative)) { | |
_Tracking("Tracking", "event", g("TrackingEvents", creative)) | |
} | |
var clicks = g("VideoClicks", creative); | |
if (clicks) { | |
vast.click = t("ClickThrough", clicks); | |
_Tracking("ClickTracking", "id", clicks) | |
} | |
var skipoffset = creative.getAttribute("skipoffset"); | |
if (skipoffset) { | |
!exist(vast.extensions) ? vast.extensions = [] : ''; | |
vast.extensions.skipTime = seconds(skipoffset) | |
} | |
} | |
var companions = g("CompanionAds", crtvs[i]); | |
if (companions) { | |
var cmpns = companions.getElementsByTagName("Companion"); | |
var aspct = 100; | |
var ppl = 0; | |
for (var j = 0; j < cmpns.length; j++) { | |
var sr = g("StaticResource", cmpns[j]); | |
if (sr) { | |
var srct = sr.getAttribute("creativeType"); | |
if (srct) { | |
if (srct.indexOf("image") > -1) { | |
var tmp = Math.abs(cmpns[j].getAttribute("width") / cmpns[j].getAttribute("height") - o.aspect); | |
var tmp2 = cmpns[j].getAttribute("width") * cmpns[j].getAttribute("height"); | |
if (tmp < aspct && tmp2 >= ppl) { | |
aspct = tmp; | |
ppl = tmp2; | |
vast.companionImg = textContent(sr); | |
_Event("CompanionClickThrough", cmpns[j]) | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} !exist(vast.extensions) ? vast.extensions = [] : ''; | |
var extensions = g("Extensions", ad); | |
if (extensions) { | |
_Extensions(extensions) | |
} | |
} | |
if (vast.isWrapper) { | |
vast.wrapperTime = new Date().getTime(); | |
if (vast.wrapper.indexOf('data://text/xml,') == 0) { | |
log("Wrapper", "XML"); | |
ParsTxt(unescape(vast.wrapper.substr(16))) | |
} else { | |
log("Wrapper", vast.wrapper); | |
LoadXml(vast.wrapper, true) | |
} | |
} else { | |
Done() | |
} | |
} | |
} | |
} | |
function Done() { | |
Event("onVastLoad"); | |
if (exist(vast.file) && o.vok) { | |
_status = 'ready'; | |
!_preload ? o.actions.VastReady(vast) : '' | |
} else { | |
js("vast_empty", VastInfo()); | |
Event("Error", 401); | |
_status = 'error'; | |
!die_error && !_preload ? o.actions.VastError() : ''; | |
die_error = true | |
} | |
} | |
function g(x, xml) { | |
if (exist(xml)) { | |
return xml.getElementsByTagName(x)[0] | |
} else { | |
return null | |
} | |
} | |
function t(x, xml, i) { | |
if (!exist(i)) { | |
i = 0 | |
} | |
var y = xml.getElementsByTagName(x)[i]; | |
var z = ''; | |
if (exist(y)) { | |
if (exist(y.childNodes[0])) { | |
if (y.childNodes[0].wholeText) { | |
z = y.childNodes[0].wholeText.trim() | |
} | |
} | |
} | |
return z | |
} | |
function _Event(x, xml) { | |
if (!exist(vast.events[x])) { | |
vast.events[x] = [] | |
} | |
if (exist(xml)) { | |
if (exist(xml.getElementsByTagName(x)[0])) { | |
for (var i = 0; i < xml.getElementsByTagName(x).length; i++) { | |
var y = xml.getElementsByTagName(x)[i].childNodes; | |
for (var j = 0; j < y.length; j++) { | |
if (y[j].wholeText) { | |
var y2 = y[j].wholeText; | |
if (exist(y[j].nextSibling)) { | |
if (y[j].nextSibling.localName == "URL") { | |
y2 = textContent(y[j].nextSibling) | |
} | |
} | |
var z; | |
if (y2) { | |
z = y2.replace(/\s+/g, ' ').trim() | |
} | |
if (z && z != '') { | |
if (x == "CompanionClickThrough") { | |
vast.click = z | |
} else { | |
if (vast.events[x].indexOf(z) == -1) { | |
vast.events[x].push(z) | |
} | |
} | |
if (z.indexOf("pjstat") && x == "Impression") { | |
vast.pjstat = z | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
function _Tracking(x, x2, xml, vpd) { | |
if (exist(xml.getElementsByTagName(x)[0])) { | |
for (var i = 0; i < xml.getElementsByTagName(x).length; i++) { | |
var y = xml.getElementsByTagName(x)[i].getAttribute(x2); | |
if (x == "ClickTracking" && y != "skipAd") { | |
y = "click" | |
} | |
if (y) { | |
var n = xml.getElementsByTagName(x)[i].childNodes; | |
if (vpd == 1) { | |
!vast.vpdevnts ? vast.vpdevnts = [] : ''; | |
vast.vpdevnts.push(y) | |
} | |
if (n.length > 0) { | |
var z = n[0].wholeText.replace(/\s+/g, ' ').trim(); | |
if (y == "impression") { | |
y = "Impression" | |
} | |
if (y == "progress") { | |
var prgtime = xml.getElementsByTagName(x)[i].getAttribute("offset"); | |
if (prgtime) { | |
if (!exist(vast.progresstimes)) { | |
vast.progresstimes = [] | |
} | |
vast.progresstimes.push(seconds(prgtime)); | |
y = y + '_' + seconds(prgtime) | |
} | |
} | |
if (!exist(vast.events[y])) { | |
vast.events[y] = [] | |
} | |
vast.events[y].push(z) | |
} | |
} | |
} | |
} | |
} | |
function _Extensions(xml) { | |
if (exist(xml.getElementsByTagName("Extension")[0])) { | |
var ct = "CustomTracking"; | |
for (var i = 0; i < xml.getElementsByTagName("Extension").length; i++) { | |
var xi = xml.getElementsByTagName("Extension")[i]; | |
var y = xi.getAttribute("type"); | |
if (y) { | |
var z = ''; | |
if (exist(xi.childNodes[0])) { | |
if (exist(xi.childNodes[0].wholeText)) { | |
z = xi.childNodes[0].wholeText.replace(/\s+/g, ' ').trim() | |
} | |
} | |
var ctx = xi.getElementsByTagName(ct); | |
var vpd; | |
if (ctx.length > 0) { | |
xi = ctx[0]; | |
y == 'subscribeVpaid' ? vpd = 1 : ''; | |
y = ct | |
} | |
if (y == ct) { | |
_Tracking("Tracking", "event", xi, vpd) | |
} | |
if (y == "or") { | |
o.actions.VastInsertOr(t("Extension", xml, i)) | |
} | |
if (y == "and") { | |
o.actions.VastInsertAnd(t("Extension", xml, i)) | |
} | |
var dur = exist(o.media) ? o.media.duration() : 0; | |
if (y == "Allowblock" && (dur > 120 || dur == 0)) { | |
if (z == '1') { | |
if (vastType == "preroll") { | |
vastUrl.indexOf("vr=1") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=1", "vr=5")) : ''; | |
vastUrl.indexOf("vr=5") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=5", "vr=9")) : '' | |
} | |
if (vastType == "midroll") { | |
vastUrl.indexOf("vr=2") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=2", "vr=6")) : ''; | |
vastUrl.indexOf("vr=6") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=6", "vr=10")) : '' | |
} | |
if (vastType == "pauseroll") { | |
vastUrl.indexOf("vr=3") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=3", "vr=7")) : ''; | |
vastUrl.indexOf("vr=7") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=7", "vr=11")) : '' | |
} | |
if (vastType == "postroll") { | |
vastUrl.indexOf("vr=4") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=4", "vr=8")) : ''; | |
vastUrl.indexOf("vr=8") > 0 ? o.actions.VastInsertAnd(vastUrl.replace("vr=8", "vr=12")) : '' | |
} | |
} | |
} else { | |
if (y == "loadTime" || y == "skipAd" || y == "addClick" || y == "viewable" || y.indexOf("second") == 0) { | |
if (y.indexOf("second") == 0) { | |
if (!exist(vast.events.sec)) { | |
vast.events.sec = [] | |
} | |
vast.events.sec.push(parseInt(y.substr(6))) | |
} | |
if (!exist(vast.events[y])) { | |
vast.events[y] = [] | |
} | |
vast.events[y].push(z) | |
} else { | |
if (y.indexOf("Time") > -1 && z != -1) { | |
z = seconds(z) | |
} | |
if (y.indexOf("Txt") > -1) { | |
z = decodeHtml(z) | |
} | |
if (y == "controls") { | |
var x_control = xml.getElementsByTagName("Extension")[i].getElementsByTagName("control"); | |
if (x_control.length > 0) { | |
for (var i2 = 0; i2 < x_control.length; i2++) { | |
if (x_control[i2].getAttribute("id")) { | |
vast["control_" + x_control[i2].getAttribute("id")] = x_control[i2].getAttribute("layout") | |
} | |
} | |
} | |
} | |
if (y == "minVisibility") { | |
if (z > 0 && v.vast_visibility != 0 && exist(o.visibility)) { | |
if (o.visibility < z) { | |
log("VAST visibility", (o.visibility + "<" + z)); | |
js("vast_visibility", (o.visibility + "<" + z)); | |
vast.file = undefined; | |
vast.isWrapper = false | |
} | |
} | |
} | |
if (y == "callPjsEvent") { | |
if (z) { | |
js(z, VastInfo()) | |
} | |
} | |
if (y == "hideAfterComplete") { | |
vast.hidevpaid = 1 | |
} | |
if (vast.extensions.extensionsPriority == 1 && z.toString().indexOf('//') == -1) { | |
if (!exist(vast.extensions[y])) { | |
vast.extensions[y] = z | |
} | |
} else { | |
vast.extensions[y] = z | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
function _Media(x, xml) { | |
var r = ""; | |
var mp4 = []; | |
if (exist(xml.getElementsByTagName(x)[0])) { | |
for (var i = 0; i < xml.getElementsByTagName(x).length; i++) { | |
var y = xml.getElementsByTagName(x)[i]; | |
var type = y.getAttribute("type"); | |
var api = y.getAttribute("apiFramework"); | |
r = textContent(y); | |
if (type) { | |
vast.filetype = type; | |
if (type.indexOf("javascript") > -1 && api == "VPAID") { | |
vast.isVpaid = true; | |
break | |
} | |
if (type.indexOf("mp4") > -1) { | |
var m = {}; | |
m.x = r; | |
if (y.getAttribute("width")) { | |
m.w = y.getAttribute("width") | |
} | |
mp4.push(m) | |
} | |
if (type.indexOf("image") > -1) { | |
if (mp4.length == 0) { | |
vast.isImg = true; | |
break | |
} | |
} | |
if (type.indexOf("iframe") > -1) { | |
if (mp4.length == 0) { | |
vast.isImg = true; | |
vast.isFrm = true; | |
break | |
} | |
} | |
} | |
} | |
} | |
if (mp4.length > 0) { | |
r = mp4[0].x; | |
var w = 0; | |
for (var i = 0; i < mp4.length; i++) { | |
if (mp4[i].w) { | |
if (mp4[i].w > w) { | |
r = mp4[i].x; | |
w = mp4[i].w | |
} | |
if (mp4[i].w >= o.screen_w) { | |
return mp4[i].x | |
} | |
} | |
} | |
} | |
return r | |
} | |
function textContent(x) { | |
if (x) { | |
var y = x.textContent; | |
if (y) { | |
return y.replace(/\s+/g, ' ').trim() | |
} | |
} | |
} | |
function vastURL(x, wrap) { | |
if (x.indexOf("prt") == 0) { | |
partner = true; | |
x = Prt(x); | |
log("VASTP " + vast.prt) | |
} | |
if (x.indexOf('random') == -1 && v.vast_addrandom == 1 && x.indexOf('//') > -1) { | |
x = x + (x.indexOf('?') == -1 ? '?' : '&') + 'rand=(random)' | |
} | |
x = x.replace(/\{/g, "("); | |
x = x.replace(/\}/g, ") "); | |
x = x.replace(/\(ref\)/g, Href()); | |
x = x.replace(/\(referer\)/g, Href()); | |
x = x.replace(/\(rand_id\)/g, o.sessid); | |
x = x.replace(/\(userid\)/g, o.userid); | |
x = x.replace(/\(host\)/g, encodeURIComponent(o.domain)); | |
x = x.replace(/\(referrer\)/g, encodeURIComponent(exist(v.parent_domain) ? v.parent_domain : document.referrer)); | |
x = x.replace(/\(rereferer\)/g, encodeURIComponent(exist(v.parent_domain) ? v.parent_domain : document.referrer)); | |
x = x.replace(/\(random\)/g, Math.random()); | |
x = x.replace(/\(vast_id1\)/g, v.vast_id1); | |
x = x.replace(/\[random\]/g, Math.random()); | |
x = x.replace(/\(adblock\)/g, (o.ab ? 1 : 0)); | |
x = x.replace(/\[CACHEBUSTING\]/g, Math.random()); | |
x = x.replace(/\(width\)/g, o.screen_w); | |
x = x.replace(/\(bitrate\)/g, existv(o.bitrate, 0)); | |
x = x.replace(/\(videowidth\)/g, (o.media ? o.media.size().width : '')); | |
x = x.replace(/\(videoheight\)/g, (o.media ? o.media.size().height : '')); | |
x = x.replace(/\(quality\)/g, apiProcessor("quality")); | |
x = x.replace(/\(height\)/g, o.screen_h); | |
x = x.replace(/\(duration\)/g, o.media ? o.media.duration() : 0); | |
x = x.replace(/\(visibility\)/g, (exist(o.visibility) ? o.visibility : -1)); | |
if (x.indexOf("(platform)") > 0) { | |
o.system.tv ? x = x.replace(/\(platform\)/g, "smarttv") : ''; | |
if (o.system.mobile) { | |
x = x.replace(/\(platform\)/g, "mobile") | |
} else { | |
x = x.replace(/\(platform\)/g, "web-html5") | |
} | |
} | |
for (var i = 1; i < 6; i++) { | |
var y = ''; | |
i > 1 ? y = i : ''; | |
if (x.indexOf("(timeout" + y + ":") > 0) { | |
var re = new RegExp('\\(timeout' + y + ':\\d*\\)', 'g'); | |
var to = x.match(re); | |
if (to.length > 0) { | |
var tmp = to[0].substr(to[0].indexOf(":") + 1); | |
tmp = tmp.substr(0, tmp.indexOf(")")); | |
if (y == '') { | |
v.vast_timeout = tmp * 1; | |
v.vpaid_timeout = tmp * 1 | |
} else { | |
v['vpaid_timeout' + y] = tmp * 1 | |
} | |
} | |
x = x.replace(re, '') | |
} | |
} | |
if (x.indexOf("(connection)") > 0) { | |
var cn = navigator.connection || navigator.mozConnection || navigator.webkitConnection; | |
x = x.replace(/\(connection\)/g, ((typeof (cn) != "undefined" && typeof (cn.type) != "undefined") ? cn.type : "undefined")) | |
} | |
x = VastReplace(x); | |
if (wrap != true) { | |
v.vpaidimpression == 1 || x.indexOf("vpaidimpression") > 0 ? vast.vpaidImOnVdSrt = 1 : '' | |
} | |
if (x.indexOf("http://") == 0) { | |
x = '//' + x.substr(7) | |
} | |
return x | |
} | |
function seconds(x) { | |
var y = x.split(":"); | |
var z = 0; | |
if (y.length == 3) { | |
z = parseInt(y[0]) * 3600 + parseInt(y[1]) * 60 + parseInt(y[2]) | |
} | |
if (y.length == 2) { | |
z = parseInt(y[0]) * 60 + parseInt(y[1]) | |
} | |
return z | |
} | |
function decodeHtml(x) { | |
var div; | |
if (x) { | |
div = createElement('div'); | |
div.innerHTML = x; | |
return decodeURIComponent(div.textContent) | |
} else { | |
return void 0 | |
} | |
} | |
function Event(x, code) { | |
if (exist(vast)) { | |
if ((exist(vast.prt) && v.eventstrackervast == 0) || vast.adsystem == "intro" || vast.adsystem == "outro") { } else { | |
code > 0 ? js(("vast_" + x), code) : js("vast_" + x) | |
} | |
if (exist(vast.events[x])) { | |
for (var i = 0; i < vast.events[x].length; i++) { | |
log("VAST " + x); | |
var stop = false; | |
var z = vast.events[x][i]; | |
if (code > 0) { | |
if (z.indexOf("[ERRORCODE]") > 0) { | |
z = z.replace("[ERRORCODE]", code) | |
} | |
} | |
if (z.indexOf("(time)") > 0) { | |
z = z.replace("(time)", _ltime) | |
} | |
if (z.indexOf("(url)") > 0) { | |
z = z.replace("(url)", encodeURIComponent(vastUrl)) | |
} | |
z = VastReplace(z); | |
z = z.replace("(adblock)", (o.ab ? 1 : 0)); | |
if (z.indexOf(".pjstat") > 0) { | |
z = z + "&h=" + (exist(v.parent_domain) ? v.parent_domain : o.d) + (v.ab == 1 ? "&a=" + (o.ab ? 1 : 0) : '') + (o.vasttype == 'overlay' ? '&r=1' : '') + '&s=' + o.sessid | |
} | |
if (!stop) { | |
gif(z) | |
} | |
} | |
} | |
} | |
} | |
function AddEvnt(x, y) { | |
if (!exist(vast.events[y])) { | |
vast.events[y] = [] | |
} | |
if (x) { | |
var z = x.split(","); | |
for (var i = 0; i < z.length; i++) { | |
z[i] = z[i].replace(/\(random\)/g, random(1000, 2000)); | |
if (vast.events.indexOf(y) == -1) { | |
vast.events[y].push(z[i]) | |
} | |
} | |
} | |
} | |
function VastReplace(x) { | |
x = x.replace(/\(visibility\)/g, (exist(o.visibility) ? o.visibility : -1)); | |
if (typeof v.vast_replace == "string") { | |
try { | |
v.vast_replace = v.vast_replace.replace(/'/ig, '"'); | |
v.vast_replace = JSON.parse(v.vast_replace) | |
} catch (e) { | |
log(e) | |
} | |
} | |
if (typeof v.vast_replace == "object") { | |
for (var y in v.vast_replace) { | |
if (v.vast_replace.hasOwnProperty(y)) { | |
for (var i = 0; i < 5; i++) { | |
x = x.replace(y, v.vast_replace[y]) | |
} | |
} | |
} | |
} | |
return x | |
} | |
this.Ready = function () { | |
o.actions.VastReady(vast) | |
}; this.disablePreload = function () { | |
_preload = false | |
}; this.Status = function () { | |
return _status | |
}; this.info = function (x) { | |
return vast ? vast[x] : false | |
}; this.getVolume = function () { | |
return undefined | |
}; this.preloaded = function (x) { | |
return _preloaded.indexOf(x) > -1 | |
}; | |
function Prt(x) { | |
if (x.indexOf('[imp]') > 0) { | |
var tmp = x.indexOf('[imp]'); | |
var tmp2 = x.substr(tmp + 5, x.indexOf('_') - (tmp + 5)); | |
AddEvnt(tmp2, 'Impression'); | |
AddEvnt(tmp2 + 'err', 'Error'); | |
x = x.substr(0, tmp) + x.substr(x.indexOf('_')) | |
} | |
if (x.indexOf('[pimp]') > 0) { | |
var tmp = x.indexOf('[pimp]'); | |
var tmp2 = x.substr(tmp + 6, x.indexOf('**') - (tmp + 6)); | |
AddEvnt(tmp2, 'Impression'); | |
x = x.substr(0, tmp) + x.substr(x.indexOf('**') + 2) | |
} | |
if (x.indexOf('prtcpm') == 0) { | |
vast.cpm = x.substr(6, 4); | |
vast.prt = x.substr(10, x.indexOf('_') - 10) | |
} else { | |
vast.prt = x.substr(3, x.indexOf('_') - 3) | |
} | |
if (vast.cpm) { | |
var xx = 'https://' + vast.cpm + '-c73e.kxcdn.com/' + vast.cpm; | |
o.vast ? o.vast.imp(xx) : ''; | |
AddEvnt(xx, 'Impression') | |
} | |
x = x.substr(x.indexOf('_') + 1); | |
return x | |
} | |
function OverlayParsing(x) { | |
if (x) { | |
vast.overlay = []; | |
vast.overlay.width = x.getAttribute("width"); | |
vast.overlay.height = x.getAttribute("height"); | |
var dur = x.getAttribute("minSuggestedDuration"); | |
if (dur) { | |
vast.duration = seconds(dur) | |
} | |
vast.overlay.scalable = x.getAttribute("scalable"); | |
vast.file = textContent(g("StaticResource", x)); | |
_Event("NonLinearClickTracking", x); | |
var so = x.getAttribute("skipoffset"); | |
if (so) { | |
!vast.extensions ? vast.extensions = [] : ''; | |
vast.extensions.skipTime = seconds(so) | |
} | |
vast.click = textContent(g("NonLinearClickThrough", x)) | |
} | |
} | |
function DestroyIma() { | |
if (o.ima) { | |
try { | |
o.ima.Destroy() | |
} catch (e) { | |
log(o.ima, e) | |
} | |
o.ima = undefined | |
} | |
} | |
}; | |
var VastVideo = function () { | |
var vast; | |
var over = o.mousehere; | |
var no = ['desktop', 'mobile', 'mobiletv', 'tv', 'lg', 'winmob']; | |
o.vastcontainer = createElement("div"); | |
css(o.vastcontainer, { | |
"position": "absolute", | |
"left": 0, | |
"top": 0, | |
"width": "100%", | |
"height": "100%", | |
"background-color": (exist(v.vast_bgcolor) ? v.vast_bgcolor : "#000000") | |
}); | |
if (exist(v.vast_bga)) { } else { | |
v.hidevideo == 1 ? v.vast_bga = 0.5 : '' | |
} | |
css(o.vastcontainer, { | |
"opacity": v.vast_bga | |
}); | |
o.frame.appendChild(o.vastcontainer); | |
if (!o.system.mobile) { | |
o.vastcontainer.addEventListener("mouseover", onOver, false); | |
o.vastcontainer.addEventListener("mouseleave", onOut, false) | |
} | |
var tag = createElement("video"); | |
o.vastcontainer.appendChild(tag); | |
o.vastcontainer.style.zIndex = 1001; | |
hide(o.vastcontainer); | |
css(tag, { | |
'width': '100%', | |
'height': '100%', | |
'object-fit': 'contain', | |
'min-height': 'auto', | |
'max-height': 'none', | |
'min-width': 'auto', | |
'max-width': 'none' | |
}); | |
if (v.vpaid_waitstart !== 1) { | |
css(tag, { | |
'autoplay': 1 | |
}) | |
} | |
attr(tag, { | |
'preload': 'auto', | |
'x-webkit-airplay': 'deny', | |
'webkit-playsinline': true, | |
'cursor': 'pointer', | |
'playsinline': '1', | |
'pip': 'false' | |
}); | |
if (v.vast_unmutehover == 1 || v.vast_unmutebut == 1) { | |
tag.muted = true; | |
attr(tag, { | |
'muted': 'true' | |
}) | |
} | |
var duration; | |
var paused; | |
var controls; | |
var uiplay, uiplay2; | |
var uibuffer; | |
var uiposter; | |
var uit; | |
var uitxt; | |
var uimute; | |
var uifull; | |
var uinorm; | |
var uiunmutebut; | |
var uiprogress; | |
var uix; | |
var uiskip; | |
var vpaidframe; | |
var vpaidslot; | |
var vpaidslot2; | |
var vpaid; | |
var vpaid_int; | |
var vpaidframe_int; | |
var vpaid_t; | |
var vpaid_stop_t; | |
var vpaid_complete_t; | |
var push_wait_int; | |
var video_t; | |
var vpaidvolume = 1; | |
var vpaidvolume2; | |
var vpaidstopped = false; | |
var vpaidstarted = false; | |
var vaststarted = false; | |
var vpaidskipped = false; | |
var vpaidcompleted = false; | |
var vpaidvideostarted = false; | |
var vpaidquartile = false; | |
var vpaid_int2; | |
var removed = false; | |
var last_skiptime = 0; | |
var last_time = 0; | |
var imgtime = 0; | |
var img_int; | |
var _move = false; | |
var _go = false; | |
var _muted = false; | |
var muteicon = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'><g><path fill='" + v.vast_volumecolor + "' stroke-width='0' d='m2.49931,6.8746l0,6.25079l3.10029,0l4.64114,4.37461l0.00276,-15l-4.64182,4.37461l-3.10237,0l0,-0.00001zm10.44167,-0.75275c-0.26762,-0.30766 -0.69733,-0.30766 -0.96359,0.00158c-0.26557,0.30925 -0.26557,0.80989 0.00136,1.11992l0,-0.00157c0.58769,0.68334 0.94997,1.62056 0.94997,2.66218c0,1.04083 -0.3616,1.97489 -0.94861,2.65823c-0.2683,0.30766 -0.2683,0.8083 -0.00136,1.11912c0.13279,0.15423 0.30713,0.23173 0.48146,0.23173c0.17501,0 0.34934,-0.0775 0.48213,-0.23173c0.83216,-0.9649 1.34835,-2.30548 1.34767,-3.77735c0.00068,-1.47504 -0.51755,-2.8172 -1.34903,-3.7821l0,-0.00001zm1.55246,-1.75907c-0.27124,0.30979 -0.27124,0.81211 0,1.12031c1.00334,1.14962 1.62195,2.73104 1.62195,4.4852c0,1.75256 -0.61861,3.3332 -1.62056,4.48361c-0.27125,0.30899 -0.27125,0.81053 0,1.12031c0.13493,0.1545 0.31208,0.23214 0.48991,0.23214c0.17713,0 0.35428,-0.07764 0.48921,-0.23214c1.25105,-1.43327 2.02674,-3.41876 2.02536,-5.60392c0.00069,-2.18675 -0.775,-4.17383 -2.02813,-5.60551c-0.27194,-0.30979 -0.70857,-0.30979 -0.97774,0z'/></g></svg>"; | |
var unmuteicon = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'><g><path fill='" + v.vast_volumecolor + "' stroke-width='0' d='m2.49931,6.8746l0,6.25079l3.10029,0l4.64114,4.37461l0.00276,-15l-4.64182,4.37461l-3.10237,0l0,-0.00001z'/><path d='m18.125,12.20836l-2.20816,-2.20816l2.20776,-2.20816l-1.13498,-1.13579l-2.20816,2.20816l-2.20816,-2.20816l-1.13498,1.13579l2.20776,2.20816l-2.20816,2.20816l1.13579,1.13539l2.20776,-2.20816l2.20776,2.20816' fill-opacity='null' stroke-opacity='null' stroke-width='0' fill='" + v.vast_volumecolor + "'/></g></svg>"; | |
var impression = false; | |
var remainigs = 0; | |
var unmute_volume = 0; | |
var slow_unmute; | |
var js_events; | |
var remove_t; | |
var complete_t; | |
var ytag; | |
var youtube = false; | |
var vimeo = false; | |
var mp3 = false; | |
var ytinterval; | |
var imps = []; | |
var qrts = []; | |
var start_timeout = true; | |
if (v.vpaid_waitstart !== 1) { | |
var pp = tag.play(); | |
if (pp !== undefined) { | |
pp.then(function () { }).catch(function (error) { | |
if (error.message.indexOf("interact") > 0) { | |
log("play mute"); | |
tag.muted = true; | |
attr(tag, { | |
'muted': 'true' | |
}) | |
} | |
}) | |
} | |
} | |
this.break = function () { | |
if (exist(uiplay)) { | |
log("VAST break"); | |
onError() | |
} | |
}; | |
this.Go = function (x) { | |
removed ? show(tag) : ''; | |
tag.volume = 0.4; | |
duration = 0; | |
paused = false; | |
controls = true; | |
impression = false; | |
remainigs = 0; | |
removed = false; | |
last_time = 0; | |
last_skiptime = 0; | |
vast = x; | |
die_error = false; | |
js_events = []; | |
_go = true; | |
show(o.vastcontainer); | |
if (exist(vast.extensions.controls)) { | |
if (vast.extensions.controls === 0 || vast.extensions.controls === "0") { | |
controls = false | |
} | |
} | |
if (vast.nocontrols == 1 || v.vast_nocontrols == 1) { | |
if (vast.nocontrolsvpaid == 1) { | |
vast.isVpaid ? controls = false : '' | |
} else { | |
controls = false | |
} | |
} | |
if (vast.yescontrols == 1) { | |
controls = true | |
} | |
if (o.controls) { | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings() | |
} | |
} | |
if (exist(vast.prt)) { | |
vast.prtg = 1 | |
} | |
if (vast.isVpaid && v.vast_novpaid == 1) { | |
onError('NO VPAID'); | |
return | |
} | |
var stop = false; | |
if (exist(vast.file)) { | |
if (vast.file.indexOf('youtube.com/') > -1 || vast.file.indexOf('youtu.be/') > -1) { | |
youtube = true | |
} | |
if (v.vimeo == 1 && vast.file.indexOf('vimeo.com/') > -1) { | |
vimeo = true | |
} | |
if (vast.file.indexOf('.mp3') > -1) { | |
mp3 = true | |
} | |
if (vast.adsystem == "intro") { | |
for (var i = 0; i < no.length; i++) { | |
if (vast.file.indexOf('[no_' + no[i] + ']') > -1) { | |
vast.file = vast.file.replace('[no_' + no[i] + ']', ''); | |
if (o.system[no[i]]) { | |
onError("no " + no[i]); | |
stop = true; | |
break | |
} | |
} | |
} | |
} | |
} | |
if (!stop) { | |
if (vast.isImg || vast.isVpaid || youtube || vimeo) { | |
vpaidslot = createElement("div"); | |
o.vastcontainer.appendChild(vpaidslot); | |
css(vpaidslot, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%" | |
}) | |
} | |
if (youtube) { | |
ytag = new MediaYoutube('intro' + vast.file, vpaidslot) | |
} | |
if (vimeo) { | |
ytag = new MediaVimeo('intro' + vast.file, vpaidslot) | |
} | |
if (!youtube && !vimeo) { | |
var elm = vast.isImg ? vpaidslot : tag; | |
if (o.system.mobile) { | |
elm.removeEventListener("touchstart", onTouchStart); | |
elm.removeEventListener("touchmove", onTouchMove); | |
elm.removeEventListener("touchend", onScreenClick) | |
} else { | |
elm.removeEventListener("click", onScreenClick) | |
} | |
var _clck = true; | |
if (exist(vast.extensions.isClickable)) { | |
_clck = vast.extensions.isClickable == 1 | |
} | |
if (_clck) { | |
if (o.system.mobile) { | |
elm.addEventListener("touchend", onScreenClick); | |
elm.addEventListener("touchstart", onTouchStart); | |
elm.addEventListener("touchmove", onTouchMove) | |
} else { | |
elm.addEventListener("click", onScreenClick); | |
css(elm, { | |
"cursor": "pointer" | |
}) | |
} | |
} | |
} | |
RemoveInterface(); | |
uiplay = createElement("div"); | |
css(uiplay, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%", | |
"display": "none", | |
"cursor": "pointer", | |
"z-index": 1 | |
}); | |
o.vastcontainer.appendChild(uiplay); | |
uiplay2 = createElement("div"); | |
css(uiplay2, { | |
"position": "absolute", | |
"top": "50%", | |
"left": "50%", | |
"margin-left": -10, | |
"margin-top": -10, | |
"cursor": "pointer", | |
"background": "rgba(0,0,0,0.5)", | |
"border-radius": 20, | |
"width": 20, | |
"height": 20, | |
"padding": "3px 2px 3px 4px", | |
"zIndex": 1 | |
}); | |
if (o.system.safari && o.system.desktop) { | |
css(uiplay2, { | |
"zoom": "3" | |
}) | |
} else { | |
css(uiplay2, { | |
"transform": "scale(3)" | |
}) | |
} | |
uiplay2.innerHTML = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'><g><path d='m4.59375,3.48438l-0.03125,13.03125l10.875,-6.51563l-10.84375,-6.51562z' fill='#ffffff'/></g></svg>"; | |
uiplay.appendChild(uiplay2); | |
if (o.system.mobile) { | |
uiplay.addEventListener("touchend", onScreenClick) | |
} else { | |
uiplay.addEventListener("click", onScreenClick) | |
} | |
if (vast.companionImg && mp3) { | |
uiposter = createElement("div"); | |
css(uiposter, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%", | |
"pointerEvents": "none", | |
"background": "url(" + vast.companionImg + ") 50% 50% no-repeat", | |
"background-size": "contain" | |
}); | |
o.vastcontainer.appendChild(uiposter) | |
} | |
if (uibuffer) { | |
RemoveControl('uibuffer') | |
} | |
uibuffer = createElement("div"); | |
css(uibuffer, { | |
"position": "absolute", | |
"top": "50%", | |
"left": "50%", | |
"pointerEvents": "none", | |
"zIndex": 1 | |
}); | |
if (v.control_buffer.icon && v.vast_buffering != 0) { | |
controlCSS(v.control_buffer.icon, v.control_buffer.color, uibuffer); | |
o.vastcontainer.appendChild(uibuffer); | |
v.control_buffer.scale ? css(uibuffer, { | |
"transform": "scale(" + v.control_buffer.scale + ")" | |
}) : ''; | |
vast.buffering = true | |
} | |
if (controls || v.vast_title_important == 1) { | |
if (vast.introtitle == 0) { } else { | |
if (v.vast_title == 1) { | |
uit = createElement("div"); | |
css(uit, { | |
"font-size": existv(v.vast_title_size, 14) * existv(v.globalfs, 1), | |
"color": v.vast_titlecolor, | |
"position": "absolute", | |
"top": existv(v.vast_title_top, 0), | |
"left": existv(v.vast_title_left, 0), | |
"background-color": hex2rgb(v.vast_titlebgcolor, existv(v.vast_titlebga, 0)), | |
"opacity": existv(v.vast_titlea, 1), | |
"padding": "5px 8px 5px 8px", | |
"box-sizing": "border-box", | |
"zIndex": 1 | |
}); | |
o.vastcontainer.appendChild(uit); | |
vast.uititle = Lang("ads"); | |
if (exist(v.vast_title_text)) { | |
if (v.vast_title_text != '') { | |
vast.uititle = v.vast_title_text | |
} | |
} | |
uit.innerHTML = vast.uititle + (v["vast_" + o.vasttype + "_" + "counter"] == 1 ? (o.adscounter <= o.adsinchain ? (o.adsinchain > 1 ? ' ' + o.adscounter + '/' + o.adsinchain : '') : '') : '') | |
} | |
} | |
} | |
if (controls) { | |
if (exist(vast.control_adlabel)) { | |
if (vast.control_adlabel === "0" || vast.control_adlabel === "-1") { | |
css(uit, { | |
"top": -1000 | |
}) | |
} else { | |
if (vast.control_adlabel !== "1") { | |
if (vast.control_adlabel == "TR" || vast.control_adlabel == "BR") { | |
css(uit, { | |
"right": 0, | |
"left": "auto" | |
}) | |
} | |
if (vast.control_adlabel == "BR" || vast.control_adlabel == "BL") { | |
css(uit, { | |
"bottom": 0, | |
"top": "auto" | |
}) | |
} | |
} | |
} | |
} | |
if (exist(vast.extensions.linkTxt)) { | |
if ((o.system.mobile && v.vast_linktxtonmobile == 0) || vast.extensions.linkTxt == '') { } else { | |
if (!exist(uitxt)) { | |
uitxt = createElement("div"); | |
css(uitxt, { | |
"position": "absolute", | |
"bottom": 50, | |
"margin-left": "auto", | |
"margin-right": "auto", | |
"left": 0, | |
"right": 0, | |
"font-size": existv(v.vast_linktxt_size, (o.system.mobile ? 12 : 14)) * existv(v.globalfs, 1), | |
"color": v.vast_linktxtcolor, | |
"display": "table", | |
"width": "50%", | |
"text-align": "center", | |
"zIndex": 1 | |
}); | |
uitxt.innerHTML = "<pjspan style='background:" + hex2rgb(v.vast_linktxtbgcolor, 1) + ";padding: 7 px 15 px;border-radius: 20 px;display: inline-block;cursor: pointer '>" + vast.extensions.linkTxt + "</pjspan>"; | |
o.vastcontainer.appendChild(uitxt); | |
if (vast.click == '' && vast.isVpaid) { | |
PtrNn(uitxt); | |
css(uitxt, { | |
"pointer-events": "none" | |
}) | |
} else { | |
uitxt.firstElementChild.addEventListener('click', onInvite) | |
} | |
hide2(uitxt); | |
if (!o.mouseHere && !o.system.mobile) { } else { | |
setTimeout(function () { | |
show2(uitxt) | |
}, 200) | |
} | |
} else { | |
show2(uitxt); | |
uitxt.innerHTML = vast.extensions.linkTxt | |
} | |
} | |
} else { | |
if (exist(uitxt)) { | |
hide2(uitxt) | |
} | |
} | |
uimute = createElement("div"); | |
CreateUiBut(uimute, 10, 10, muteicon, onToggleMute); | |
if (exist(vast.control_soundbtn)) { | |
var tmp = vast.control_soundbtn; | |
if (tmp === "0") { | |
hide(uimute); | |
css(uimute, { | |
"top": -1000 | |
}) | |
} else { | |
if (tmp !== "1") { | |
if (tmp == "TR") { | |
css(uimute, { | |
"bottom": "auto", | |
"top": 10, | |
"right": 10 | |
}) | |
} | |
if (tmp == "TL") { | |
css(uimute, { | |
"bottom": "auto", | |
"top": 10, | |
"right": "auto", | |
"left": 10 | |
}) | |
} | |
if (tmp == "BL") { | |
css(uimute, { | |
"bottom": 10, | |
"right": "auto", | |
"left": 10 | |
}) | |
} | |
} | |
} | |
} | |
uiprogress = createElement("div"); | |
o.vastcontainer.appendChild(uiprogress); | |
uiprogress.innerHTML = '<svg id="pljsvastprogress_' + v.id + '" width="20" height="20" viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg" style="transform:rotate(-90deg);float: left "><circle r="9 " cx="10 " cy="10 " fill=" transparent " stroke-dasharray="56.48 " stroke-dashoffset="0 " stroke-width="2 " style="stroke: ' + v.vast_progresscolor + ';opacity: 0.3 "></circle><circle id="pljsvastprogressbar_ ' + v.id + '" r="9 " cx="10 " cy="10 " fill=" transparent " stroke-dasharray="56.48 " stroke-dashoffset="0 " stroke-width="2 " style="stroke: ' + v.vast_progresscolor + ';opacity: 0; -webkit-transform-origin: center center;transform-origin: center center;"></circle></svg>'; | |
css(uiprogress, { | |
"border-radius": 30, | |
"padding": 5, | |
"overflow": "hidden", | |
"height": "auto", | |
"height": 20, | |
"position": "absolute", | |
"bottom": 10, | |
"left": 10, | |
"transform-origin": "center center", | |
"transition": "background-color 0.2s linear", | |
"zIndex": 1, | |
"background-color": hex2rgb(v.vast_progressbgcolor, existv(v.vast_progressbga, 0.5)) | |
}); | |
uiskip = createElement("div"); | |
css(uiskip, { | |
"padding": "3px 10px 0 12px", | |
"float": "left", | |
"display": "inline-block", | |
"font-size": existv(v.vast_skip_size, 16) * existv(v.globalfs, 1), | |
"color": v.vast_skipcolor, | |
"visibilty": "hidden", | |
"transition": "background-color 0.2s linear,opacity 0.2s linear", | |
"display": "none", | |
"zIndex": 1 | |
}); | |
uiskip.innerHTML = Lang("skip"); | |
if (v.vast_skip2right == 1) { | |
o.vastcontainer.appendChild(uiskip); | |
css(uiskip, { | |
"padding": 10, | |
"float": "none" | |
}); | |
onOutSkip() | |
} else { | |
uiprogress.appendChild(uiskip) | |
} | |
uix = createElement("div"); | |
css(uix, { | |
"position": "absolute", | |
"top": -100, | |
"right": 0, | |
"width": 40, | |
"height": 40, | |
"padding": 10, | |
"opacity": 0, | |
"visibilty": "hidden", | |
"transition": "background-color 0.2s linear,opacity 0.2s linear", | |
"cursor": "pointer", | |
"box-sizing": "border-box", | |
"zIndex": 1 | |
}); | |
uix.innerHTML = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'><g><path d='M19.25,0.75 L0.75,19.25 L19.25,0.75 Z' stroke='#FFFFFF' stroke-width='3' stroke-linecap='square' style='pointer-events:none'></path><path d='M0.75,0.75 L19.25,19.25 L0.75,0.75 Z' stroke='" + v.vast_xcolor + "' stroke-width='3' stroke-linecap='square'></path></g></svg>"; | |
onOutX(); | |
o.vastcontainer.appendChild(uix); | |
uix.onclick = onClose; | |
uix.addEventListener('mouseover', function () { | |
css(uix, { | |
"background-color": hex2rgb(v.vast_xbgcolor, existv(v.vast_xbga, 0.5) + 0.3) | |
}) | |
}); | |
uix.addEventListener('mouseout', onOutX); | |
function onOutX(e) { | |
css(uix, { | |
"background-color": hex2rgb(v.vast_xbgcolor, existv(v.vast_xbga, 0.5)) | |
}) | |
} | |
if (exist(vast.extensions)) { | |
if (exist(vast.extensions.skipTime)) { | |
if (vast.extensions.skipTime > 0 && vast.extensions.skipTime < 100) { | |
uiskip.innerHTML = Lang("skip_after_") + vast.extensions.skipTime; | |
css(uiskip, { | |
"cursor": "default", | |
"font-size": existv(v.vast_skip2_size, 12) * existv(v.globalfs, 1), | |
"display": "block" | |
}) | |
} | |
} | |
} | |
if (exist(vast.control_countdown) && v.vast_skip2right != 1) { | |
var tmp = vast.control_countdown; | |
if (tmp === "0" || tmp === "-1") { | |
css(uiskip, { | |
"bottom": -100 | |
}) | |
} else { | |
if (tmp !== "1") { | |
if (tmp == "TR") { | |
css(uiprogress, { | |
"bottom": "auto", | |
"left": "auto", | |
"top": 10, | |
"right": 10 | |
}); | |
css(uix, { | |
"top": 0, | |
"left": 0, | |
"right": "auto" | |
}) | |
} | |
if (tmp == "TL") { | |
css(uiprogress, { | |
"bottom": "auto", | |
"top": 10, | |
"left": 10 | |
}) | |
} | |
if (tmp == "BR") { | |
css(uiprogress, { | |
"left": "auto", | |
"bottom": 10, | |
"right": 10 | |
}) | |
} | |
} | |
} | |
} | |
if (v.vast_skip2right == 1) { | |
css(uimute, { | |
"bottom": 10, | |
"left": 50, | |
"right": "auto" | |
}); | |
css(uiskip, { | |
"float": "none", | |
"position": "absolute", | |
"bottom": (v.vast_skip_bottom ? v.vast_skip_bottom : 10), | |
"right": 0 | |
}) | |
} | |
} | |
if (v.vast_unmutebut == 1) { | |
uiunmutebut = createElement("div"); | |
css(uiunmutebut, { | |
"background": v.vast_unmutebutbgcolor, | |
"padding": "11px 10px 6px 20px", | |
"position": "absolute", | |
"top": "50%", | |
"left": -200, | |
"font-size": 16 * existv(v.globalfs, 1), | |
"margin": "-20px 0 0 -5px", | |
"color": v.vast_unmutebutcolor, | |
"cursor": "pointer" | |
}); | |
uiunmutebut.style.zIndex = 9999; | |
o.vastcontainer.appendChild(uiunmutebut); | |
var unmutebuticon = muteicon; | |
var rg = RegExp(v.vast_volumecolor, 'g'); | |
unmutebuticon = unmutebuticon.replace(rg, v.vast_unmutebutcolor); | |
uiunmutebut.innerHTML = Lang("unmute_video") + ' < span style = "float:right; margin-top: -2 px ">' + unmutebuticon + '</span>'; | |
uiunmutebut.onclick = onUnmute | |
} | |
if (v.vast_fullbut == 1 && v.control_full) { | |
uifull = createElement("div"); | |
CreateUiBut(uifull, 50, 10, (o.fullscreen ? v.control_full.icon2 : v.control_full.icon), onToggleFull) | |
} | |
js3("vast_system", vast.adsystem); | |
js3("vast_url", vast.vasturl); | |
js3("vast_info", VastInfo()); | |
if (vast.isImg) { | |
hide2(uimute); | |
if (vast.isFrm) { | |
var frm = document.createElement('iframe'); | |
frm.scrolling = "no"; | |
frm.onload = ImgLoaded; | |
frm.src = vast.file; | |
css(frm, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%", | |
"border": 0 | |
}); | |
o.vastcontainer.appendChild(frm) | |
} else { | |
var image = new Image(); | |
image.onload = function () { | |
vpaidslot.style.backgroundImage = "url('" + vast.file + "')"; | |
vpaidslot.style.backgroundSize = "cover"; | |
ImgLoaded() | |
}; | |
image.onerror = function () { | |
onError(405) | |
}; | |
image.src = vast.file | |
} | |
} | |
vpaidstopped = false; | |
vpaidskipped = false; | |
vpaidcompleted = false; | |
vpaidstarted = false; | |
vaststarted = false; | |
vpaidvideostarted = false; | |
vpaidquartile = false; | |
if (vast.isVpaid) { | |
if (vast.customVpaid) { | |
vpaid = eval("new " + vast.customVpaid + "()"); | |
v.vpaid_slotinframe = 0; | |
Vpaid() | |
} else { | |
vpaidframe = document.createElement('iframe'); | |
vpaidframe.id = "pljsvpaid"; | |
vpaidframe.allow = "autoplay"; | |
vpaidframe.scrolling = "no"; | |
vpaidframe.setAttribute('allowFullScreen', ''); | |
if (v.vpaid_slotinframe == 1) { | |
css(vpaidframe, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%", | |
"border": 0 | |
}); | |
hide2(vpaidslot) | |
} else { | |
css(vpaidframe, { | |
"width": 0, | |
"height": 0 | |
}) | |
} | |
o.vastcontainer.appendChild(vpaidframe); | |
var base = document.createElement('base'); | |
base.href = o.href; | |
if (vpaidframe.contentWindow) { | |
vpaidframe.contentWindow.document.getElementsByTagName('head')[0].appendChild(base) | |
} | |
vpaidframe_int = setInterval(vpaidframeloaded, 100); | |
js2("vpaidframe"); | |
clearTimeout(vpaid_t); | |
vpaid_t = setTimeout(vpaidLoadTimeout, v.vast_timeout * 1000) | |
} | |
} | |
if (!vast.isVpaid && !vast.isImg) { | |
if (youtube || vimeo) { | |
CheckMuteStart() | |
} else { | |
tag.addEventListener('loadstart', onLoadStart); | |
tag.addEventListener('error', onTagError); | |
tag.addEventListener('ended', onEnded); | |
tag.addEventListener('playing', onPlay); | |
tag.addEventListener('timeupdate', onTimeupdate); | |
tag.addEventListener('seeking', onSeeking); | |
tag.addEventListener('seeked', onSeeked); | |
tag.addEventListener('loadedmetadata', onMeta); | |
tag.addEventListener('volumechange', onVolume); | |
tag.addEventListener('waiting', onWaiting); | |
tag.addEventListener('durationchange', onDuration); | |
tag.addEventListener('progress', onProgress); | |
attr(tag, { | |
'src': x.file | |
}); | |
if (v.vast_volume != -1) { | |
tag.volume = v.vast_volume | |
} else { | |
tag.volume = v.volume | |
} | |
CheckMuteStart(); | |
if (v.vpaid_waitstart != 1) { | |
PlayStart() | |
} else { | |
js('vast_readystart') | |
} | |
} | |
} | |
setTimeout(startTimeout, 500) | |
} | |
}; | |
function CreateUiBut(x, b, r, i, f) { | |
css(x, { | |
"position": "absolute", | |
"bottom": b, | |
"right": r, | |
"text-align": "center", | |
"cursor": "pointer", | |
"transform": "scale(1)", | |
"border-radius": 30, | |
"height": 30, | |
"width": 30, | |
"padding-top": 5, | |
"box-sizing": "border-box", | |
"zIndex": 1, | |
"transition": "background-color 0.2s linear" | |
}); | |
x.innerHTML = i; | |
o.vastcontainer.appendChild(x); | |
PtrNn(x); | |
SvgColor(x, '#fff'); | |
x.onclick = f; | |
x.addEventListener('mouseover', onOverMute); | |
x.addEventListener('mouseout', onOutMute); | |
onOutMute(null, x) | |
} | |
function onOutMute(x, y) { | |
var z = x ? x.target : y; | |
css(z, { | |
"background": hex2rgb(v.vast_volumebgcolor, existv(v.vast_volumebga, 0.5)) | |
}) | |
} | |
function onOverMute(x, y) { | |
var z = x ? x.target : y; | |
css(z, { | |
"background": hex2rgb(v.vast_volumebgcolor, existv(v.vast_volumebga, 0.5) + 0.3) | |
}) | |
} | |
function onOutSkip() { | |
css((v.vast_skip2right == 1 ? uiskip : uiprogress), { | |
"background-color": hex2rgb(v.vast_skipbgcolor, existv(v.vast_skipbga, 0.5)) | |
}) | |
} | |
function ImgLoaded() { | |
imgtime = 0; | |
exist(vast.duration) ? duration = vast.duration : duration = 10; | |
img_int = setInterval(onTimeupdate, 100); | |
onTimeupdate(); | |
Event("start", true) | |
} | |
function PlayStart() { | |
var pp = tag.play(); | |
if (pp !== undefined) { | |
pp.then(function () { }).catch(function (e) { | |
log("playError VAST", e.message); | |
if (vast.pause_mute == 1) { | |
Pause(true); | |
o.actions.VastShow() | |
} else { | |
if (!die_error && !removed) { | |
onMute(); | |
var pp2 = tag.play(); | |
pp2.then(function () { }).catch(function (e) { | |
log("playError2 VAST", e.message); | |
Pause(true); | |
o.actions.VastShow() | |
}) | |
} | |
} | |
}) | |
} | |
video_t = setTimeout(tagTimeout, v.vast_timeout * 1000); | |
vaststarted = true | |
} | |
function vpaidframeloaded() { | |
try { | |
if (vpaidframe.contentWindow) { | |
clearInterval(vpaidframe_int); | |
js2("vpaidframeloaded"); | |
var defaultTemplate = '<!DOCTYPE html><html><head><meta charset="UTF-8"></head><body style="margin:0; padding: 0 "><script type="text / javascript" src="' + vast.file + '"></script><script type="text/javascript ">window.parent.postMessage("PJS_VPAID_LOADED "," * "); </script > < /body > < /html >'; | |
window.addEventListener("message", waitVpaid); | |
vpaidframe.contentWindow.document.open(); | |
vpaidframe.contentWindow.document.write(defaultTemplate); | |
vpaidframe.contentWindow.document.close() | |
} | |
} catch (e) { | |
log("VPAID frame error"); | |
onError(901) | |
} | |
} | |
function waitVpaid(e) { | |
if (e.data == 'PJS_VPAID_LOADED') { | |
window.removeEventListener("message", waitVpaid); | |
initVpaid() | |
} | |
} | |
function initVpaid() { | |
if (vpaidframe.contentWindow) { | |
var fn = vpaidframe.contentWindow['getVPAIDAd']; | |
if (fn && typeof fn == 'function') { | |
vpaid = fn(); | |
if (vpaid) { | |
Vpaid() | |
} else { | |
onError(900) | |
} | |
} else { | |
onError(900) | |
} | |
} | |
} | |
function CheckMuteStart() { | |
if (v.vast_volume == 0 || (o.muted && v.vast_resound != 1) || vast.mute == 1 || (v.vast_unmutehover == 1 && !o.mouseHere && !o.system.mobile) || tag.muted || tag.volume == 0) { | |
vast.mute != -1 ? onMute() : '' | |
} | |
} | |
function startTimeout() { | |
start_timeout = false | |
} | |
function onLoadStart() { } | |
this.ytReady = function () { | |
duration = ytag.duration(); | |
js3("vast_duration", duration); | |
StopBuffering(); | |
ytinterval = setInterval(this.timeUpdate, 500); | |
if (v.vast_volume == 0 || o.muted || (v.vast_unmutehover == 1 && !o.system.mobile)) { | |
onMute() | |
} | |
}; | |
this.ytError = function () { | |
onError() | |
}; | |
this.ytWaiting = function () { | |
onWaiting() | |
}; | |
this.ytWaited = function () { | |
StopBuffering() | |
}; | |
this.ytEnded = function () { | |
onEnded() | |
}; | |
var die_error = false; | |
function onOver() { | |
if (!over) { | |
if (uitxt) { | |
show2(uitxt) | |
} | |
if (v.vast_unmutehover == 1 && !o.system.mobile) { | |
onUnmute(); | |
if (v.vast_unmuteonce == 1) { | |
v.vast_unmutehover = 0 | |
} | |
} | |
} | |
over = true | |
} | |
function onMeta() { | |
if (tag.videoHeight > 0 && v.changeheight == 1 && v.changevastheight == 1) { | |
o.actions.changeAspect(tag.videoWidth / tag.videoHeight, true) | |
} | |
} | |
function onOut() { | |
if (over) { | |
if (uitxt) { | |
hide2(uitxt) | |
} | |
if (v.vast_unmutehover == 1 && !o.system.mobile) { | |
clearInterval(slow_unmute); | |
onMute() | |
} | |
} | |
over = false | |
} | |
function onTagError() { | |
var errorCode = tag.error.code; | |
if (errorCode == 4) { | |
onError(403) | |
} else { | |
onError(405) | |
} | |
} | |
function onError(x) { | |
if (!die_error && !removed) { | |
die_error = true; | |
log("VAST video playing error " + x); | |
if (vpaid) { | |
for (var eventName in vpaidCallbacks) { | |
if (vpaidCallbacks.hasOwnProperty(eventName)) { | |
vpaid.unsubscribe(vpaidCallbacks[eventName], eventName) | |
} | |
} | |
} | |
Event("Error", false, x > 0 ? x : 400); | |
clearInterval(vpaid_int); | |
clearInterval(vpaidframe_int); | |
clearInterval(push_wait_int); | |
RemoveTimeouts(); | |
o.actions.VastError() | |
} | |
} | |
function RemoveAndPlay() { | |
Event("remove"); | |
RemoveTimeouts(); | |
if (!removed) { | |
removed = true; | |
o.actions.VastRemoveAndPlay() | |
} | |
} | |
function RemoveTimeouts() { | |
clearTimeout(vpaid_t); | |
clearTimeout(vpaid_stop_t); | |
clearTimeout(vpaid_complete_t); | |
clearTimeout(video_t) | |
} | |
function onEnded() { | |
if (!vpaidcompleted) { | |
Event("complete", true) | |
} | |
RemoveAndPlay() | |
} | |
function onClose() { | |
Event("close", true); | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
o.vastclick = true; | |
gTr("vast_skip", "VAST Skip"); | |
v["vast_" + o.vasttype + "skipor"] == 1 ? o.actions.VastNext() : RemoveAndPlay() | |
} | |
function onSkip() { | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
o.vastclick = true; | |
log("VAST Skip"); | |
gTr("vast_skip", "VAST Skip"); | |
if (!vpaidskipped && vpaid && vast.isVpaid) { | |
log("VPAID Skip request"); | |
vpaid.skipAd() | |
} else { | |
Event("skipAd", true); | |
Event("skip", true); | |
v["vast_" + o.vasttype + "skipor"] == 1 ? o.actions.VastNext() : RemoveAndPlay() | |
} | |
} | |
function onInvite() { | |
Event("addClick"); | |
Event("acceptInvitation", false); | |
onClick() | |
} | |
function onToggleMute() { | |
_muted ? onUnmute() : onMute() | |
} | |
function onToggleFull() { | |
var x; | |
if (o.fullscreen) { | |
o.actions.Normalscreen(); | |
x = v.control_full.icon | |
} else { | |
o.actions.Fullscreen(); | |
x = v.control_full.icon2 | |
} | |
if (x) { | |
uifull.innerHTML = x; | |
PtrNn(uifull) | |
} | |
setTimeout(VpaidResize, 500) | |
} | |
function PtrNn(x) { | |
x ? css(x.firstElementChild, { | |
"pointer-events": "none" | |
}) : '' | |
} | |
function onMute() { | |
var stop = false; | |
log((vast.isVpaid ? "VPAID" : "VAST") + " Mute"); | |
if (youtube || vimeo) { | |
ytag.Mute() | |
} else { | |
clearInterval(slow_unmute); | |
if (!vast.isVpaid) { | |
Event("mute"); | |
tag.muted = true | |
} else { | |
if (vpaid) { | |
vpaid.getAdVolume() > 0 ? vpaidvolume = vpaid.getAdVolume() : vpaidvolume = v.vast_volume; | |
vpaid.setAdVolume(0) | |
} else { | |
stop = true | |
} | |
} | |
} | |
if (!stop) { | |
Unmutebut(1); | |
MuteIcon(true) | |
} | |
} | |
function MuteIcon(x) { | |
_muted = x; | |
if (exist(uimute)) { | |
uimute.innerHTML = x ? unmuteicon : muteicon | |
} | |
} | |
function onUnmute() { | |
var stop = false; | |
if (youtube || vimeo) { | |
ytag.Unmute(); | |
Event("unmute") | |
} else { | |
if (!vast.isVpaid) { | |
tag.muted = false; | |
if (unmute_volume == 0) { | |
unmute_volume = tag.volume; | |
unmute_volume < 0.3 ? unmute_volume = v.vast_default_volume : '' | |
} | |
tag.volume = 0; | |
clearInterval(slow_unmute); | |
slow_unmute = setInterval(SlowUnMute, 200) | |
} else { | |
if (vpaid) { | |
v.vpaid_mute_impression = 0; | |
if (unmute_volume == 0) { | |
unmute_volume = vpaidvolume; | |
unmute_volume < 0.3 ? unmute_volume = v.vast_default_volume : '' | |
} | |
vpaid.setAdVolume(0); | |
tag.muted = false; | |
clearInterval(slow_unmute); | |
slow_unmute = setInterval(SlowUnMute, 200) | |
} else { | |
stop = true | |
} | |
} | |
} | |
if (!stop) { | |
Unmutebut(0); | |
MuteIcon(false) | |
} | |
} | |
function Unmutebut(x) { | |
var z = uiunmutebut; | |
if (v.vast_unmutebut == 1 && z) { | |
var y = { | |
"mc": z, | |
"me": "uiunmutebut", | |
"type": "left" | |
}; | |
if (x == 1) { | |
show(z); | |
y['to'] = 0 | |
} else { | |
y['to'] = -200; | |
y['hide'] = true | |
} | |
var m = new Motion(y) | |
} | |
} | |
function SlowUnMute() { | |
v.vast_volume = unmute_volume; | |
if (!vast.isVpaid) { | |
if (tag.volume < unmute_volume && tag.volume < 0.95) { | |
tag.volume += 0.1 | |
} else { | |
unmute_volume = 0; | |
clearInterval(slow_unmute); | |
Event("unmute") | |
} | |
} else { | |
var x = vpaid.getAdVolume(); | |
if (x < unmute_volume && x < 0.99) { | |
vpaid.setAdVolume(parseFloat(x) + 0.1) | |
} else { | |
unmute_volume = 0; | |
clearInterval(slow_unmute); | |
Event("unmute") | |
} | |
} | |
} | |
function onTouchStart() { | |
_move = false | |
} | |
function onTouchMove() { | |
_move = true | |
} | |
function onScreenClick() { | |
var stop = false; | |
if (o.system.mobile) { | |
if (_move) { | |
stop = true | |
} | |
} | |
removed ? stop = true : ''; | |
if (!stop) { | |
if (paused) { | |
Resume() | |
} else { | |
onClick() | |
} | |
} | |
v.vast_unmuteonclick == 1 ? onUnmute() : '' | |
} | |
function onClick(z) { | |
if (!start_timeout) { | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
Event("click"); | |
if (v.vast_addclick == 1 || z) { | |
Event("addClick") | |
} | |
gTr("vast_click", "VAST Click"); | |
var x = false; | |
if (exist(vast.click)) { | |
if (vast.click != '') { | |
var tmp = ['ref', 'referer', 'host']; | |
for (var i = 0; i < tmp.length; i++) { | |
vast.click = vast.click.replace(new RegExp('\\(' + tmp[i] + '\\)', "gi"), (tmp[i] == "host" ? encodeURIComponent(o.domain) : Href())) | |
} | |
js2("vast_clickurl", vast.click); | |
v.vast_openclick == 1 ? window.open(vast.click, '_blank') : ''; | |
x = true | |
} | |
} | |
if (v.vast_pauseonclick == 1) { | |
Pause(x) | |
} else { | |
if (v.vast_closeonclick == 1) { | |
x ? o.actions.VastRemoveAndPlay(v.vast_playonclick == 1 ? '' : 'dontplay') : '' | |
} | |
} | |
} | |
} | |
function onPlay() { | |
onTimeupdate(); | |
Event("start", true) | |
} | |
function onPause() { | |
Pause(true) | |
} | |
function Pause(x) { | |
if (vast.isVpaid) { | |
if (vpaid) { | |
vpaid.pauseAd(); | |
if (controls) { | |
show2(uiplay) | |
} | |
paused = true | |
} | |
} | |
if (vast.isImg) { | |
clearInterval(img_int); | |
if (controls) { | |
show2(uiplay) | |
} | |
paused = true | |
} | |
if (!vast.isVpaid && !vast.isImg) { | |
if (x) { | |
if (youtube || vimeo) { | |
ytag.Pause() | |
} else { | |
tag.pause() | |
} | |
Event("pause"); | |
show2(uiplay); | |
paused = true | |
} | |
} | |
if (uitxt) { | |
hide2(uitxt) | |
} | |
StopBuffering(); | |
log("VAST pause") | |
} | |
function Resume() { | |
if (paused) { | |
if (vast.isVpaid) { | |
if (vpaid) { | |
vpaid.resumeAd(); | |
hide2(uiplay); | |
paused = false | |
} | |
} | |
if (vast.isImg) { | |
img_int = setInterval(onTimeupdate, 100); | |
onTimeupdate(); | |
hide2(uiplay); | |
paused = false | |
} | |
if (!vast.isVpaid && !vast.isImg) { | |
if (youtube || vimeo) { | |
ytag.Play() | |
} else { | |
tag.play() | |
} | |
Event("resume"); | |
hide2(uiplay); | |
paused = false | |
} | |
if (uitxt) { | |
show2(uitxt) | |
} | |
log("VAST resume") | |
} | |
} | |
this.timeUpdate = function () { | |
onTimeupdate() | |
}; | |
function CurrentTime() { | |
var t = 0; | |
if (youtube || vimeo) { | |
t = ytag.time() | |
} else { | |
if (vast.isImg) { | |
t = imgtime; | |
imgtime += 0.1 | |
} else { | |
t = tag.currentTime | |
} | |
} | |
return t | |
} | |
function CurrentVolume() { | |
if (vast) { | |
if (!vast.isVpaid) { | |
return tag.muted ? 0 : tag.volume | |
} else { | |
if (vpaid) { | |
var x = -1; | |
try { | |
x = vpaid.getAdVolume() | |
} catch (e) { | |
log(e) | |
} | |
return x | |
} | |
} | |
} | |
} | |
function onTimeupdate(e) { | |
if (tag && !removed) { | |
var t = CurrentTime(); | |
if (!impression) { | |
onImpression(); | |
impression = true | |
} | |
if (!qrts[0]) { | |
if (t > duration / 4) { | |
Event("firstQuartile", true); | |
qrts[0] = true | |
} | |
} | |
if (!qrts[1]) { | |
if (t > duration / 2) { | |
Event("midpoint", true); | |
qrts[1] = true | |
} | |
} | |
if (!qrts[2]) { | |
if (t > (duration / 4) * 3) { | |
Event("thirdQuartile", true); | |
qrts[2] = true | |
} | |
} | |
if (exist(vast.progresstimes)) { | |
for (var i = 0; i < vast.progresstimes.length; i++) { | |
if (t >= vast.progresstimes[i]) { | |
Event("progress_" + vast.progresstimes[i], true) | |
} | |
} | |
} | |
onTimeupdateExtensions(t); | |
if (t > 0 && t > last_time) { | |
StopBuffering() | |
} | |
if (o.vasttype == undefined) { | |
if (vast.adsystem == "intro") { | |
o.vasttype = "preroll" | |
} | |
if (vast.adsystem == "outro") { | |
o.vasttype = "postroll" | |
} | |
} | |
if (vast.isImg) { | |
if (t > duration) { | |
onEnded() | |
} | |
} | |
last_time = t | |
} | |
} | |
var tu0 = true; | |
function onTimeupdateExtensions(x) { | |
js3("vast_time", x); | |
if (vast.isVpaid && tu0) { | |
tu0 = false; | |
if (x < duration - 2 && duration > 0) { | |
return | |
} | |
} | |
if (exist(vast.extensions)) { | |
if (exist(vast.events.sec) && !vpaidcompleted) { | |
for (var i = 0; i < vast.events.sec.length; i++) { | |
if (x >= vast.events.sec[i] && vast.events.sec[i] > -1) { | |
Event("second" + vast.events.sec[i], true); | |
vast.events.sec[i] -= 1000 | |
} | |
} | |
} | |
UpdateSkipTimes(x) | |
} | |
if (controls && duration > 0) { | |
var val = parseInt(x / duration * 100); | |
var circle = document.getElementById("pljsvastprogressbar_" + v.id); | |
if (circle) { | |
if (isNaN(val)) { | |
val = 100 | |
} else { | |
var r = circle.getAttribute('r'); | |
var c = Math.PI * (r * 2); | |
if (val < 0) { | |
val = 0 | |
} | |
if (val > 100) { | |
val = 100 | |
} | |
var pct = ((100 - val) / 100) * c; | |
css(circle, { | |
"opacity": 1, | |
"strokeDashoffset": pct | |
}) | |
} | |
} | |
} | |
} | |
function UpdateSkipTimes(x) { | |
if (exist(vast.extensions) && controls && x >= last_skiptime) { | |
var chkskp; | |
if (exist(vast.extensions.skipTime)) { | |
if (vast.extensions.skipTime > -1 && vast.extensions.skipTime < 100 && uiskip) { | |
chkskp = true; | |
if (x > vast.extensions.skipTime) { | |
js3("vast_skipTime", vast.extensions.skipTime); | |
ShowSkip(); | |
vast.extensions.skipTime = null | |
} else { | |
uiskip.innerHTML = Lang("skip_after_") + (Math.round(vast.extensions.skipTime - x)) | |
} | |
} | |
} | |
if (exist(vast.extensions.skipTime2)) { | |
if (vast.extensions.skipTime2 > -1) { | |
if (chkskp) { | |
if (vast.extensions.skipTime2 < vast.extensions.skipTime) { | |
vast.extensions.skipTime2 = vast.extensions.skipTime | |
} | |
} | |
if (x > vast.extensions.skipTime2) { | |
js3("vast_skipTime2", vast.extensions.skipTime2); | |
Event("skipTime2"); | |
uix ? css(uix, { | |
"top": 0, | |
"opacity": 1, | |
"display": "block" | |
}) : ''; | |
vast.extensions.skipTime2 = null | |
} | |
} | |
} | |
last_skiptime = x | |
} | |
} | |
function ShowSkip() { | |
if (uiskip && !removed) { | |
uiskip.innerHTML = Lang("skip"); | |
css(uiskip, { | |
"cursor": "pointer", | |
"font-size": (v.vast_skip_size ? v.vast_skip_size : 16) * existv(v.globalfs, 1), | |
"display": "block" | |
}); | |
if (v.vast_skip2right == 1) { | |
uiskip.onclick = onSkip; | |
uiskip.addEventListener('mouseover', function () { | |
css(uiskip, { | |
"background-color": hex2rgb(v.vast_skipbgcolor, existv(v.vast_skipbga, 0.5) + 0.3) | |
}) | |
}); | |
uiskip.addEventListener('mouseout', onOutSkip) | |
} else { | |
if (uiprogress) { | |
css(uiprogress, { | |
"cursor": "pointer" | |
}); | |
uiprogress.onclick = onSkip; | |
uiprogress.addEventListener('mouseover', function () { | |
css(uiprogress, { | |
"background-color": hex2rgb(v.vast_skipbgcolor, existv(v.vast_skipbga, 0.5) + 0.3) | |
}) | |
}); | |
onOutSkip(); | |
uiprogress.addEventListener('mouseout', onOutSkip) | |
} | |
} | |
} | |
} | |
function onSeeking() { } | |
function onSeeked() { } | |
function onImpression() { | |
if (!die_error && !removed) { | |
Event("Impression", true); | |
Event("Impress", true); | |
Event("creativeView", true); | |
gTr("vast_impression", "VAST Impression"); | |
ImpressionActions() | |
} | |
} | |
function ImpressionActions() { | |
var y = (vast.adsystem == "intro" || vast.adsystem == "outro" ? "intro" : o.vasttype); | |
o.actions.VastImpression(vast.skipimp == 1); | |
if (v["vast_" + y + "timebreak"] > 0) { | |
StoreImpression(y) | |
} | |
if (exist(o.visibility)) { | |
if (o.visibility > 70) { | |
Event("Viewable") | |
} else { | |
Event("NotViewable") | |
} | |
} else { | |
Event("NotViewable") | |
} | |
o.vast_impressions++; | |
o.vast_impressions_all++; | |
o.vast_longtomsg ? o.vast_longtomsg.remove() : ''; | |
_muted ? Unmutebut(1) : ''; | |
impression = true; | |
o.vast_stop == 1 ? o.vast_stop = 2 : ''; | |
o.vast_poster ? o.vast_poster.hide() : ''; | |
o.vast_loadtxt ? o.vast_loadtxt.hide() : ''; | |
StopBuffering() | |
} | |
function onDuration() { | |
Event("AdLoaded", true); | |
duration = tag.duration; | |
js3("vast_duration", duration) | |
} | |
function onVolume() { | |
js3("vast_volume", VastInfo()) | |
} | |
function onProgress(event) { } | |
var vpaidCallbacks = { | |
AdStarted: vpaidStartAd, | |
AdStopped: vpaidStopAd, | |
AdSkipped: vpaidSkipAd, | |
AdLoaded: vpaidAdLoaded, | |
AdLinearChange: vpaidAdLinearChange, | |
AdSizeChange: vpaidAdSizeChange, | |
AdExpandedChange: vpaidAdExpandedChange, | |
AdSkippableStateChange: vpaidAdSkippableStateChange, | |
AdDurationChange: vpaidAdDurationChange, | |
AdRemainingTimeChange: vpaidAdRemainingTimeChange, | |
AdVolumeChange: vpaidAdVolumeChange, | |
AdImpression: vpaidAdImpression, | |
AdClickThru: vpaidAdClickThru, | |
AdInteraction: vpaidAdInteraction, | |
AdVideoStart: vpaidAdVideoStart, | |
AdVideoFirstQuartile: vpaidAdVideoFirstQuartile, | |
AdVideoMidpoint: vpaidAdVideoMidpoint, | |
AdVideoThirdQuartile: vpaidAdVideoThirdQuartile, | |
AdVideoComplete: vpaidAdVideoComplete, | |
AdUserAcceptInvitation: vpaidAdUserAcceptInvitation, | |
AdUserMinimize: vpaidAdUserMinimize, | |
AdUserClose: vpaidAdUserClose, | |
AdPaused: vpaidAdPaused, | |
AdPlaying: vpaidAdPlaying, | |
AdError: vpaidAdError, | |
AdErrorVpaid: vpaidAdErrorVpaid, | |
AdLog: vpaidAdLog, | |
AdViewable: vpaidAdViewable | |
}; | |
function Vpaid() { | |
if (typeof vpaid.handshakeVersion == "function") { | |
for (var e in vpaidCallbacks) { | |
if (vpaidCallbacks.hasOwnProperty(e)) { | |
vpaid.subscribe(vpaidCallbacks[e], e, this) | |
} | |
} | |
if (vast.vpdevnts) { | |
for (var i = 0; i < vast.vpdevnts.length; i++) { | |
if (vast.vpdevnts[i] != '') { | |
eval("function pjsvpd_" + vast.vpdevnts[i] + "() { Event('" + vast.vpdevnts[i] + "'); } "); | |
vpaid.subscribe(eval('pjsvpd_' + vast.vpdevnts[i]), vast.vpdevnts[i], this) | |
} | |
} | |
} | |
if (v.vpaid_slotinframe == 1 && vpaidframe) { | |
vpaidslot2 = document.createElement("div"); | |
vpaidframe.contentDocument.body.appendChild(vpaidslot2); | |
css(vpaidslot2, { | |
"position": "absolute", | |
"top": "0", | |
"left": "0", | |
"width": "100%", | |
"height": "100%", | |
"cursor": "pointer" | |
}) | |
} | |
vpaid.initAd(o.screen_w, o.screen_h, (o.fullscreen ? 'fullscreen' : 'normal'), 720, (exist(vast.adparameters) ? { | |
"AdParameters": vast.adparameters | |
} : | |
''), { | |
"slot": (v.vpaid_slotinframe == 1 ? vpaidslot2 : vpaidslot), | |
"videoSlot": tag, | |
'videoSlotCanAutoPlay': true | |
}); | |
css(vpaidslot, { | |
"cursor": "pointer" | |
}); | |
vpaidslot.style.zIndex = 0 | |
} else { | |
log("VPAID incorrect"); | |
onError(901) | |
} | |
}; | |
function vpaidAdLog(x) { | |
log("VPAID Log: " + x) | |
} | |
function vpaidAdViewable() { | |
Event("viewable", true) | |
} | |
function vpaidAdError(x) { | |
if (!vpaidcompleted) { | |
log("VPAID Error", x); | |
if (typeof x == "object" && v.log == 1) { | |
console.log(x) | |
} | |
onError(901) | |
} else { | |
log("VPAID Error but completed", x); | |
vpaidStopAd() | |
} | |
} | |
function vpaidAdErrorVpaid(x) { | |
if (!vpaidcompleted) { | |
log("VPAID Error", x); | |
Event("Error", false, x > 0 ? x : 400) | |
} | |
} | |
function vpaidAdLoaded() { | |
if (v["vast_" + o.vasttype + "normal"] == 1 && o.fullscreen) { | |
o.actions.Normalscreen() | |
} | |
log("VPAID Loaded, ad " + vpaid.getAdLinear()); | |
Event("AdLoaded", true); | |
if (vpaid.getAdLinear() != 'nonlinear') { | |
if (v.vpaid_waitstart != 1) { | |
StartVpaidVolume(); | |
clearTimeout(vpaid_t); | |
vpaid_t = setTimeout(vpaidVideoTimeout, v.vpaid_timeout * 1000); | |
vpaid.startAd() | |
} else { | |
js('vast_readystart') | |
} | |
clearInterval(vpaid_int2); | |
vpaid_int2 = setInterval(vpaidAdRemainingTimeChange, 1000); | |
vpaidAdRemainingTimeChange() | |
} else { | |
vpaidAdError("Nonlinear") | |
} | |
} | |
function StartVpaidVolume() { | |
if (vpaid) { | |
if (v.vast_volume == 0 || vast.mute == 1 || (v.vast_unmutehover == 1 && !o.system.mobile && o.mouseHere != 1)) { | |
if (vpaid.getAdVolume() > 0 && vast.mute != -1) { | |
onMute() | |
} | |
} else { | |
if (v.vast_volume != -1) { | |
vpaid.setAdVolume(parseFloat(v.vast_volume)) | |
} else { | |
vpaid.setAdVolume(parseFloat(v.volume)) | |
} | |
} | |
} | |
} | |
function StopBuffering() { | |
if (vast.buffering) { | |
uibuffer ? hide2(uibuffer) : ''; | |
vast.buffering = false; | |
clearInterval(push_wait_int) | |
} | |
} | |
function onWaiting() { | |
uibuffer ? show2(uibuffer) : ''; | |
vast.buffering = true; | |
if (v.vast_push_waiting == 1) { | |
clearInterval(push_wait_int); | |
push_wait_int = setInterval(PushWaiting, 1500) | |
} | |
} | |
function PushWaiting() { | |
last_skiptime = last_skiptime + 1; | |
UpdateSkipTimes(last_skiptime) | |
} | |
function vpaidStartAd() { | |
vpaidstarted = true; | |
v.vpaidvideotimeout != 1 ? vpaidvideostarted = true : ''; | |
duration = vpaid.getAdDuration(); | |
var rt = vpaid.getAdRemainingTime(); | |
if (duration > 0) { } else { | |
if (exist(vast.duration)) { | |
if (vast.duration >= rt) { | |
duration = vast.duration | |
} | |
} | |
} | |
if (duration >= 5000) { | |
duration = duration / 1000 | |
} | |
js3("vast_duration", duration); | |
o.vast_poster ? o.vast_poster.hide() : ''; | |
o.vast_loadtxt ? o.vast_loadtxt.hide() : ''; | |
js_events = []; | |
imps = []; | |
qrts = []; | |
log("VPAID Started"); | |
var x; | |
if (indOf([vast.wrapper, vast.vasturl], 'pjsvvs=1')) { | |
x = true | |
} | |
v.vast_visibleonstart == 1 && !vast.skipimp && !x ? o.actions.VpaidStarted() : ''; | |
Event("creativeView", true); | |
StopBuffering() | |
} | |
function vpaidVideoTimeout() { | |
if (!vpaidvideostarted && !die_error) { | |
log("VPAID timeout"); | |
js3("vpaid_video_timeout", VastInfo()); | |
onError(901) | |
} | |
} | |
function vpaidQuartileTimeout() { | |
if (!vpaidquartile && !die_error) { | |
if (v.vpaid_mute_impression == 0 && paused) { } else { | |
log("VPAID quartile timeout"); | |
js3("vpaid_quartile_timeout", VastInfo()); | |
onError(901) | |
} | |
} | |
} | |
function vpaidStoppedTimeout() { | |
if (!vpaidstopped && !die_error) { | |
log("VPAID stopped timeout"); | |
js3("vpaid_stopped_timeout", VastInfo()); | |
if (!removed) { | |
impression ? vpaidStopAd() : onError(901) | |
} | |
} | |
} | |
function tagTimeout() { | |
if (tag) { | |
if (!die_error && tag.currentTime == 0 && duration == 0) { | |
log("VAST video loading timeout"); | |
js3("vast_video_timeout", VastInfo()); | |
onError(402) | |
} | |
} | |
} | |
function vpaidLoadTimeout() { | |
if (!vpaidvideostarted && !die_error && v.vpaid_waitstart != 1) { | |
log("VPAID loading timeout"); | |
js3("vpaid_loading_timeout", VastInfo()); | |
onError(901) | |
} | |
} | |
function vpaidStopAd() { | |
if (!removed) { | |
if (!vpaidstopped) { | |
log("VPAID Stopped"); | |
vpaidstopped = true; | |
if (!removed && !impression) { | |
if (vpaidstarted && duration > 0 && remainigs > 75 && exist(vast.prt)) { | |
vpaidImpression() | |
} | |
log("VPAID No impression --> Error (" + remainigs + ")"); | |
onError(901) | |
} else { | |
if (vpaidcompleted || vpaidskipped) { | |
RemoveAndPlay() | |
} else { | |
remove_t = setTimeout(RemoveAndPlay, 200) | |
} | |
} | |
} | |
} | |
} | |
function vpaidSkipAd() { | |
log("VPAID Skipped"); | |
vpaidskipped = true; | |
onSkip() | |
} | |
function vpaidAdSizeChange() { | |
log("VPAID SizeChanged: " + vpaid.getAdWidth() + " x " + vpaid.getAdHeight()); | |
if (vpaid.getAdHeight() > 0 && vpaid.getAdWidth() > 0 && v.changeheight == 1 && v.changevastheight == 1) { | |
o.actions.changeAspect(vpaid.getAdWidth() / vpaid.getAdHeight(), true) | |
} | |
} | |
function vpaidAdExpandedChange() { | |
log("VPAID ExpandedChange: " + vpaid.getAdExpanded()) | |
} | |
function vpaidAdSkippableStateChange() { | |
if (controls) { | |
log("VPAID AdSkippableStateChange: " + vpaid.getAdSkippableState()); | |
if (vpaid.getAdSkippableState()) { | |
ShowSkip() | |
} else { | |
hide2(uiskip) | |
} | |
} | |
} | |
function vpaidAdDurationChange() { | |
log("VPAID DurationChanged: " + vpaid.getAdDuration()); | |
if (vpaid.getAdDuration() > 0) { | |
duration = vpaid.getAdDuration(); | |
js3("vast_duration", duration) | |
} | |
} | |
function vpaidAdRemainingTimeChange(event) { | |
var dr = vpaid.getAdDuration(); | |
if (event) { | |
clearInterval(vpaid_int2) | |
} | |
var rt = vpaid.getAdRemainingTime(); | |
if (dr > 0 && dr != duration) { | |
vpaidAdDurationChange() | |
} | |
remainigs++; | |
if (duration == 0 || rt > duration) { | |
if (rt > 0) { | |
duration = rt; | |
js3("vast_duration", duration) | |
} | |
} | |
if (rt > 0) { | |
if (duration > 0) { | |
onTimeupdateExtensions(duration - rt) | |
} | |
} else { | |
if (v.vpaid_noremainingtime == 1) { | |
log("VPAID time", remainigs - 1, rt, duration); | |
onTimeupdateExtensions(remainigs - 1) | |
} | |
} | |
} | |
function vpaidAdVolumeChange() { | |
if (vpaid.getAdVolume() != undefined) { | |
if (vpaid.getAdVolume() == 0) { | |
Event("mute"); | |
vpaidvolume2 = 0; | |
MuteIcon(true) | |
} else { | |
if (vpaidvolume2 == 0) { | |
Event("unmute"); | |
MuteIcon(false) | |
} | |
vpaidvolume2 = vpaid.getAdVolume() | |
} | |
} | |
log("VPAID VolumeChanged: " + vpaid.getAdVolume()); | |
if (vpaidvolume2 > 0 && v.vpaid_mute_impression == 1 && !impression) { | |
onMute() | |
} | |
} | |
function vpaidAdImpression() { | |
if (vast.vpaidImOnVdSrt != 1) { | |
vpaidImpression() | |
} | |
} | |
function vpaidImpression() { | |
vpaidcompleted = false; | |
log("VPAID Impression", duration); | |
Event("Impression"); | |
Event("Impress"); | |
ImpressionActions(); | |
gTr("vast_impression", "VAST Impression"); | |
if (v.vpaid_timeout2 > -1) { | |
clearTimeout(vpaid_t); | |
vpaid_t = setTimeout(vpaidVideoTimeout, v.vpaid_timeout2 * 1000) | |
} | |
if (v.vpaid_mute_impression == 1) { | |
onMute() | |
} | |
} | |
function vpaidAdClickThru(x, y, z) { | |
log("VPAID ClickThru"); | |
if (exist(x)) { | |
if (typeof x == "string") { | |
if (x.indexOf('//') > -1 && z == true) { | |
vast.click = x | |
} | |
} | |
} | |
if (exist(vast.extensions.isClickable)) { | |
if (vast.extensions.isClickable == 1) { | |
onClick(true) | |
} else { | |
Event("click"); | |
Event("addClick") | |
} | |
} else { | |
onClick(true) | |
} | |
} | |
function vpaidAdInteraction() { } | |
function vpaidAdVideoStart() { | |
if (vast.vpaidImOnVdSrt == 1) { | |
vpaidImpression() | |
} | |
log("VPAID AdVideoStart"); | |
o.actions.VpaidStarted(); | |
vpaidvideostarted = true; | |
clearTimeout(vpaid_t); | |
if (v.vpaid_timeout3 > -1) { | |
vpaid_t = setTimeout(vpaidQuartileTimeout, v.vpaid_timeout3 * 1000) | |
} | |
clearTimeout(vpaid_stop_t); | |
if (v.vpaid_timeout4 > -1) { | |
vpaid_stop_t = setTimeout(vpaidStoppedTimeout, v.vpaid_timeout4 * 1000) | |
} | |
if (v.vpaid_mute_impression == 1) { | |
onMute() | |
} | |
Event("start", false); | |
o.vpaid_starts++; | |
if (v.vpaid_startlimit > 0) { | |
if (o.vpaid_starts > v.vpaid_startlimit) { | |
log("VPAID start limit"); | |
onError() | |
} | |
} | |
} | |
function vpaidAdVideoFirstQuartile() { | |
vpaidquartile = true; | |
log("VPAID firstQuartile"); | |
Event("firstQuartile", false) | |
} | |
function vpaidAdVideoMidpoint() { | |
log("VPAID midpoint"); | |
Event("midpoint", false) | |
} | |
function vpaidAdVideoThirdQuartile() { | |
log("VPAID thirdQuartile"); | |
Event("thirdQuartile", false) | |
} | |
function vpaidAdVideoComplete() { | |
if (!vpaidcompleted) { | |
Event("complete", false); | |
vpaidcompleted = true; | |
for (var y in vast.events) { | |
if (vast.events.hasOwnProperty(y)) { | |
if (y.indexOf("old_") == 0) { | |
vast.events[y.substr(4)] = vast.events[y] | |
} | |
} | |
} | |
if (exist(vast.events.sec)) { | |
for (var i = 0; i < vast.events.sec.length; i++) { | |
vast.events.sec[i] += 1000 | |
} | |
} | |
if (v.vpaid_timeout5 > -1) { | |
clearTimeout(vpaid_complete_t); | |
vpaid_complete_t = setTimeout(vpaidStoppedTimeout, v.vpaid_timeout5 * 1000) | |
} | |
} | |
log("VPAID complete") | |
} | |
function vpaidAdLinearChange() { | |
log("VPAID linear has changed: " + vpaid.getAdLinear()) | |
} | |
function vpaidAdUserAcceptInvitation() { | |
Event("acceptInvitation", false) | |
} | |
function vpaidAdUserMinimize() { } | |
function vpaidAdUserClose() { | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
Event("close", true); | |
o.vastclick = true; | |
gTr("vast_skip", "VAST Skip") | |
} | |
function vpaidAdPaused() { | |
if (vast.isVpaid && vpaidcompleted) { } else { | |
Event("pause"); | |
if (v.vpaid_nopause == 1) { | |
vpaid.resumeAd() | |
} else { | |
if (controls && v.vast_pauseonclick == 1) { | |
show2(uiplay) | |
} | |
paused = true | |
} | |
} | |
} | |
function vpaidAdPlaying() { | |
Event("resume"); | |
if (controls && exist(uiplay)) { | |
hide2(uiplay) | |
} | |
paused = false | |
} | |
function StoreImpression(y) { | |
if (v["vast_" + y + "timebreak"] > 0 && o.storage) { | |
var tbi = localStorage.getItem("pljs" + y + "i_" + o.d) * 1; | |
var z = false; | |
if (tbi) { | |
tbi + 1 >= v["vast_" + y + "tbimp"] ? z = true : '' | |
} else { | |
tbi = 0 | |
} | |
if (z || o.vast_impressions_all + 1 >= v["vast_" + y + "tbimp"]) { | |
var x = new Date(); | |
localStorage.setItem("pljs" + y + "_" + o.d, x.getTime()); | |
localStorage.setItem("pljs" + y + "i_" + o.d, 0); | |
o.actions.EmptyVastUrl() | |
} else { | |
localStorage.setItem("pljs" + y + "i_" + o.d, tbi + 1) | |
} | |
} | |
} | |
function Event(x, del, code, justcode) { | |
if (x == "start") { | |
o.vast_started = true; | |
v.miniwithvast == 1 && o.minify ? o.minify.Check() : '' | |
} | |
if (exist(vast.prt) && v.eventstrackervast == 0 && v.vpaid != 1) { } else { | |
if (del) { | |
if (!exist(js_events[x])) { | |
js3("vast_" + x, VastInfo()) | |
} | |
js_events[x] = true | |
} else { | |
code > 0 ? js3(("vast_" + x), code) : js3("vast_" + x, VastInfo()) | |
} | |
} | |
if (exist(vast.events)) { | |
if (exist(vast.events[x])) { | |
log("VAST Event " + x); | |
for (var i = 0; i < vast.events[x].length; i++) { | |
var z = vast.events[x][i]; | |
var stop = false; | |
if (exist(z)) { | |
if (imps.indexOf(z) > -1) { | |
stop = true | |
} | |
if (x == "Impression") { | |
imps.push(z) | |
} | |
if (code > 0) { | |
if (z.indexOf("[ERRORCODE]") > 0) { | |
z = z.replace("[ERRORCODE]", code) | |
} else { | |
justcode == 1 ? stop = true : '' | |
} | |
} | |
if (z.indexOf("(visibility)") > 0) { | |
if (exist(o.visibility)) { | |
z = z.replace("(visibility)", o.visibility) | |
} | |
} | |
if (z.indexOf("(volume)") > 0) { | |
z = z.replace("(volume)", CurrentVolume()) | |
} | |
z = z.replace("(adblock)", (o.ab ? 1 : 0)); | |
z = z.replace(/\(random\)/g, Math.random()); | |
if (z.indexOf(".pjstat") > 0) { | |
var m = 0; | |
z = z + "&m=" + (o.system.tv ? 2 : (o.system.mobile ? 1 : 0)) + ("&h=" + (exist(v.parent_domain) ? v.parent_domain : o.domain)) + (o.vasttype == 'overlay' || vast.isFrm ? '&r=1' : '') + '&s=' + o.sessid | |
} | |
if (typeof v.vast_replace == "object") { | |
for (var y in v.vast_replace) { | |
if (v.vast_replace.hasOwnProperty(y)) { | |
for (var j = 0; j < 5; j++) { | |
z = z.replace(y, v.vast_replace[y]) | |
} | |
} | |
} | |
} | |
} else { | |
stop = true | |
} | |
if (!stop) { | |
gif(z) | |
} | |
} | |
if (del) { | |
vast.events["old_" + x] = vast.events[x]; | |
vast.events[x] = undefined | |
} | |
} | |
} | |
if (x == "click" && v.vast_addclick == 1) { | |
Event("addClick") | |
} | |
}; | |
function js2(x) { | |
if (vast.adsystem != "intro" && vast.adsystem != "outro") { | |
js(x) | |
} | |
} | |
function js3(x, y) { | |
if ((exist(vast.prt) && v.eventstrackervast == 0 && v.vpaid != 1) || vast.adsystem == "intro" || vast.adsystem == "outro") { } else { | |
js(x, y) | |
} | |
} | |
function gTr(x, y) { | |
if (vast.adsystem == "intro" || vast.adsystem == "outro") { } else { | |
gaTracker(x, y) | |
} | |
} | |
this.config = function (x) { | |
return vast ? vast[x] : false | |
}; | |
this.tagLive = function () { | |
var x = false; | |
if (tag) { | |
if (tag.parentElement) { | |
try { | |
if (tag.parentElement.nodeName == "PJSDIV") { | |
x = true | |
} | |
} catch (e) { | |
x = false | |
} | |
} | |
} | |
if (vast) { | |
if (vast.isVpaid) { | |
return false | |
} | |
} | |
return x | |
}; | |
this.info = function (x) { | |
return vast ? vast[x] : false | |
}; | |
this.active = function () { | |
return !removed | |
}; | |
this.Resize = function () { | |
VpaidResize() | |
}; | |
function VpaidResize() { | |
if (vast) { | |
if (vast.isVpaid) { | |
if (vpaid) { | |
vpaid.resizeAd(o.screen_w, o.screen_h, (o.fullscreen ? 'fullscreen' : 'normal')) | |
} | |
} | |
} | |
} | |
function RemoveInterface() { | |
RemoveControl('uiplay'); | |
if (tag) { | |
if (tag.played.length > 0) { | |
tag.pause() | |
} | |
} | |
if (controls && o.vastcontainer.contains(uix)) { | |
if (v.vast_title == 1) { | |
RemoveControl('uit') | |
} | |
var cntrls = ['uiprogress', 'uiskip', 'uix', 'uitxt', 'uitxt', 'uimute', 'uifull', 'uiposter', 'uiunmutebut']; | |
for (var i = 0; i < cntrls.length; i++) { | |
RemoveControl(cntrls[i]) | |
} | |
} | |
}; | |
function RemoveControl(x) { | |
if (exist(eval(x))) { | |
if (o.vastcontainer.contains(eval(x))) { | |
if (x == 'uitxt') { | |
uitxt.removeEventListener('click', onInvite) | |
} | |
o.vastcontainer.removeChild(eval(x)); | |
eval(x + ' = null; ') | |
} | |
} | |
} | |
this.getVolume = function () { | |
return CurrentVolume() | |
}; | |
this.pause = function () { | |
if (!removed && !paused && vast) { | |
Pause(true); | |
return true | |
} else { | |
return false | |
} | |
}; | |
this.resume = function () { | |
if (!removed && paused && vast) { | |
Resume(); | |
return true | |
} else { | |
return false | |
} | |
}; | |
this.VpaidSet = function (x, y) { | |
if (vast) { | |
if (x == "setAdVolume") { | |
if (y == 0) { | |
onMute() | |
} else { | |
onUnmute() | |
} | |
} | |
if (x == "stopAd") { | |
RemoveAndPlay() | |
} | |
if (x == "startAd") { | |
VpaidSetStartAd() | |
} | |
if (x == "skipAd") { | |
onSkip() | |
} | |
if (x == "pauseAd") { | |
onPause() | |
} | |
if (x == "resumeAd") { | |
onPlay() | |
} | |
} | |
}; | |
function VpaidSetStartAd() { | |
if (!vast.isVpaid) { | |
!vaststarted ? PlayStart() : '' | |
} else { | |
!vpaidstarted && vpaid ? vpaid.startAd() : '' | |
} | |
} | |
this.startAd = function () { | |
if (v.vpaid_waitstart == 1 && !vpaidstarted) { | |
vast.isVpaid && vpaid ? StartVpaidVolume() : ''; | |
VpaidSetStartAd() | |
} | |
}; | |
this.mute = function () { | |
onMute() | |
}; | |
this.imp = function (x) { | |
if (impression && !removed) { | |
var y = x.split(','); | |
for (var i = 0; i < y.length; i++) { | |
gif(y[i]) | |
} | |
} | |
}; | |
this.RemoveForNextAd = function () { | |
if (youtube || vimeo) { | |
clearInterval(ytinterval); | |
ytag.Remove() | |
} | |
if (vast) { | |
RemoveInterface(); | |
if (vast.isVpaid) { | |
if (exist(vpaidslot)) { | |
if (!vpaidstopped && vpaid && vpaidstarted) { | |
try { | |
vpaid.stopAd() | |
} catch (e) { | |
log(e) | |
} | |
} | |
if (vpaid) { | |
for (var eventName in vpaidCallbacks) { | |
if (vpaidCallbacks.hasOwnProperty(eventName)) { | |
vpaid.unsubscribe(vpaidCallbacks[eventName], eventName) | |
} | |
} | |
} | |
if (o.vastcontainer.contains(vpaidslot) && vast.hidevpaid != 1) { | |
o.vastcontainer.removeChild(vpaidslot) | |
} | |
} | |
clearInterval(vpaid_int); | |
clearInterval(vpaid_int2); | |
clearInterval(vpaidframe_int); | |
clearInterval(push_wait_int); | |
RemoveTimeouts(); | |
if (vast.hidevpaid != 1 && vpaidframe) { | |
try { | |
o.vastcontainer.removeChild(vpaidframe) | |
} catch (e) { } | |
} | |
} else { | |
hide(tag) | |
} | |
onWaiting() | |
} | |
if (exist(vpaidslot)) { | |
clearInterval(img_int); | |
if (o.vastcontainer.contains(vpaidslot) && vast.hidevpaid != 1) { | |
o.vastcontainer.removeChild(vpaidslot) | |
} | |
} | |
if (vast) { | |
vast.events = [] | |
} | |
removed = true; | |
impression = false; | |
remainigs = 0; | |
mp3 = false; | |
imps = []; | |
qrts = [] | |
}; | |
this.waitGo = function (x) { | |
vast = x | |
}; | |
this.Remove = function () { | |
try { | |
if (o.vastcontainer.contains(tag)) { | |
o.vastcontainer.removeChild(tag) | |
} | |
} catch (e) { } | |
this.RemoveForNextAd(); | |
removed = true; | |
try { | |
if (o.frame.contains(o.vastcontainer) && vast.hidevpaid != 1) { | |
o.frame.removeChild(o.vastcontainer) | |
} | |
if (vast.hidevpaid == 1) { | |
hide2(o.vastcontainer) | |
} | |
} catch (e) { } | |
} | |
}; | |
var MediaYoutube = function (url, parentcontainer) { | |
var intro = false; | |
if (url.indexOf('intro') == 0) { | |
intro = true; | |
url = url.substr(5) | |
} | |
var youtube_id = YoutubeID(url); | |
var error; | |
var player; | |
var created = false; | |
var ready = false; | |
var started = false; | |
var vastonmobile = false; | |
var auto = true; | |
var _set_quality = []; | |
var _speed = 1; | |
var _wait = false; | |
var startwait_t; | |
var _start = 0; | |
var _readyonplay = 0; | |
var quality_received = false; | |
var container_id = 'pljs_yt_' + v.id + (intro ? 'intro' : ''); | |
pushCSS("#pljs_yt_" + v.id + " {width: 100 % !important; height: 100 % !important; max-width: none!important; max-height: none!important}"); | |
var container = createElement('div'); | |
var drtn = 0; | |
container.setAttribute('id', container_id); | |
parentcontainer.appendChild(container); | |
o.airplay = false; | |
!intro ? o.actions.AirplayChanged() : ''; | |
if (o.system.mobile) { | |
v.preload = 1 | |
} | |
if (v.youtubecontrols != 1) { | |
var layer = createElement('div'); | |
parentcontainer.appendChild(layer); | |
css(layer, { | |
position: "absolute", | |
top: 0, | |
left: 0, | |
"background-color": "#ff0000", | |
height: "100%", | |
width: "100%", | |
"opacity": 0 | |
}); | |
layer.addEventListener("dblclick", function (event) { | |
event.cancelBubble = true | |
}); | |
if (o.system.mobile) { | |
layer.addEventListener("touchstart", function (event) { | |
event.cancelBubble = true | |
}); | |
layer.addEventListener("click", function (event) { | |
event.cancelBubble = true | |
}); | |
layer.addEventListener("touchend", function (event) { | |
event.cancelBubble = true; | |
ScreenClick(event); | |
if (v.screenclick == 1) { | |
setTimeout(HideLayer, 100); | |
setTimeout(ShowLayer, 1000) | |
} | |
}) | |
} else { | |
layer.addEventListener("mousemove", function (event) { | |
var x = true; | |
if (v.vast == 1) { | |
if (exist(v.preroll) && !started) { | |
x = false | |
} | |
if (exist(v.playroll) && Status() == "paused" && time() > 0) { | |
x = false | |
} | |
} | |
if (x && v.screenclick == 1 && v.ytcl != 1) { | |
hide2(this); | |
setTimeout(ShowLayer, 2000) | |
} | |
}) | |
} | |
v.screenclick == 1 && v.ytcl1 != 1 ? hide2(layer) : '' | |
} | |
function ShowLayer() { | |
show2(layer) | |
} | |
function HideLayer() { | |
if (v.ytcl != 1) { | |
hide2(layer) | |
} | |
} | |
if (v.preload == 1 && v.autoplay == 0) { | |
onWaiting() | |
} | |
if (!window['YT']) { | |
window.onYouTubeIframeAPIReady = function () { | |
YouTubeIframeAPIReady(); | |
for (var i = 0; i < pljssglobal.length; i++) { | |
if (pljssglobal[i]) { | |
if (pljssglobal[i].api("id") != v.id) { | |
if (pljssglobal[i].api('isyoutube')) { | |
pljssglobal[i].api('youtubeready') | |
} | |
} | |
} | |
} | |
}; | |
var scrpt = Script("youtube.com/iframe_api", "youtube.com/iframe_api", "youtube_iframe_api"); | |
if (scrpt) { | |
scrpt.onerror = function (e) { | |
o.actions.MediaReady(); | |
if (v.yterrors != 1) { | |
error = 'YouTube API Error'; | |
o.media.onError() | |
} | |
} | |
} | |
} else { | |
YouTubeIframeAPIReady() | |
} | |
function YouTubeIframeAPIReady() { | |
if (v.preload == 1 || intro) { | |
!created ? YtInit() : '' | |
} else { | |
o.actions.MediaReady() | |
} | |
} | |
function YtInit() { | |
if ("YT" in window) { | |
if (exist(YT.Player) && !created) { | |
log("Youtube Init"); | |
var cntrls = 0; | |
if (v.youtubecontrols == 1) { | |
cntrls = 1 | |
} | |
o.seekto > 0 ? _start = parseInt(o.seekto) : ''; | |
player = new YT.Player(container_id, { | |
height: o.container_h, | |
width: o.container_w, | |
videoId: youtube_id, | |
playerVars: { | |
enablejsapi: 1, | |
playerapiid: container_id, | |
html5: 1, | |
disablekb: 1, | |
autohide: 1, | |
playsinline: ((v.playsinlineonmobile == 0 || (v.playsinlineonmobileiphone != 1 && o.system.iphone)) && o.system.mobile ? 0 : 1), | |
iv_load_policy: 3, | |
controls: cntrls, | |
showinfo: 0, | |
modestbranding: 1, | |
rel: 0, | |
autoplay: intro || v.autoplay == 1 ? 1 : 0, | |
loop: 0 | |
}, | |
events: { | |
'onReady': onYtPlayerReady, | |
'onStateChange': onYtPlayerStateChange, | |
'onError': onError, | |
'onPlaybackQualityChange': onQualityChanged | |
} | |
}); | |
if (o.seekto > 0) { | |
o.seekto = undefined | |
} | |
Resize(); | |
created = true | |
} else { | |
setTimeout(YtInit, 500) | |
} | |
} else { | |
setTimeout(YtInit, 500) | |
} | |
} | |
var _play_i; | |
function onYtPlayerReady() { | |
if (o.media) { | |
log("Youtube Ready"); | |
ready = true; | |
clearTimeout(startwait_t); | |
o.actions.StopWaiting(); | |
if (intro) { | |
if (o.system.mutedautoplay) { | |
o.actions.Mute() | |
} | |
player.playVideo(); | |
o.vast.ytReady() | |
} else { | |
if (v.autoplay == 1 && o.system.mutedautoplay && !o.acted) { | |
o.actions.Mute(); | |
if (o.system.mobile) { | |
clearInterval(_play_i); | |
_play_i = setInterval(PlayingChecker, 300) | |
} | |
} | |
if (v.preload == 0) { | |
player.playVideo() | |
} else { | |
o.actions.MediaReady() | |
} | |
drtn = player.getDuration(); | |
o.media.onDuration(); | |
if (_speed != 1) { | |
SetSpeed(_speed) | |
} | |
onMeta(); | |
Resize(); | |
if (v.yttitle == 1) { | |
try { | |
if (player.getVideoData()) { | |
if (exist(player.getVideoData().title)) { | |
v.title = player.getVideoData().title; | |
o.actions.Title('title') | |
} | |
} | |
} catch (e) { } | |
} | |
} | |
} | |
} | |
function PlayingChecker() { | |
var x = player.getPlayerState(); | |
if (x == 2 || x == -1) { | |
o.controls.Pause(); | |
o.controls.StopWaiting(); | |
clearInterval(_play_i) | |
} | |
if (x == 1) { | |
clearInterval(_play_i) | |
} | |
} | |
function onYtPlayerStateChange(event) { | |
if (v.ytlog == 1) { | |
log('YT', event.data) | |
} | |
if (intro) { | |
if (event.data == YT.PlayerState.ENDED) { | |
o.vast.ytEnded() | |
} | |
if (event.data == YT.PlayerState.PLAYING) { } | |
} else { | |
if (event.data == YT.PlayerState.PLAYING) { | |
if (_readyonplay == 1) { | |
_readyonplay = 0; | |
onYtPlayerReady() | |
} | |
if (!o.play) { | |
o.actions.Play() | |
} | |
if (_start > 0) { | |
player.seekTo(_start, true); | |
_start = 0; | |
o.seekto = undefined | |
} | |
ShowLayer(); | |
started = true; | |
ready = true; | |
if (vastonmobile) { | |
player.pauseVideo() | |
} else { | |
o.media.onPlay(); | |
o.media.onTimeupdate() | |
} | |
Qualities(); | |
if (exist(v.default_quality)) { | |
for (var i = 0; i < o.files_quality.length; i++) { | |
if (v.default_quality == o.files_quality[i]) { | |
SetQuality(i) | |
} | |
} | |
v.default_quality = null | |
} else { | |
if (exist(o.default_quality)) { | |
for (var i = 0; i < o.files_quality.length; i++) { | |
if (o.default_quality == o.files_quality[i]) { | |
SetQuality(i) | |
} | |
} | |
o.default_quality = null | |
} | |
} | |
_wait = false | |
} | |
if (event.data == -1 && _wait && o.play) { | |
o.actions.StopWaiting(); | |
_wait = false; | |
onPause() | |
} | |
if (event.data == YT.PlayerState.PAUSED) { } | |
if (event.data == YT.PlayerState.ENDED) { | |
onEnded() | |
} | |
if (event.data == YT.PlayerState.BUFFERING) { | |
if (!o.play) { } | |
if (o.play) { | |
_wait = true; | |
onWaiting() | |
} | |
} | |
if (event.data == YT.PlayerState.CUED) { } | |
} | |
} | |
function onError(event) { | |
if (intro) { | |
o.vast.ytError() | |
} else { | |
if (event.data == 2) { | |
error = "wrong youtube id" | |
} | |
if (event.data == 5) { | |
error = "network empty" | |
} | |
if (event.data == 101 || event.data == 150 || event.data == 100) { | |
error = "this video is unavailable" | |
} | |
if (v.customyterrors == 1) { | |
exist(v.customyterror) ? error = v.customyterror : '' | |
} | |
if (v.yterrors != 1) { | |
o.media.onError() | |
} else { | |
hide(o.poster) | |
} | |
} | |
} | |
function onEnded() { | |
v.start > 0 ? _start = v.start : ''; | |
o.media.onEnded(); | |
o.media.onDuration() | |
} | |
function onPause() { | |
if (!o.nopause && o.play) { | |
o.actions.Pause() | |
} | |
} | |
function onTimeupdate() { | |
o.media.onTimeupdate() | |
} | |
function onMeta() { | |
o.media.onMeta(); | |
o.actions.LoadedData() | |
} | |
function onDuration() { | |
o.media.onDuration() | |
} | |
function onVolume() { | |
o.media.onVolume() | |
} | |
function onWaiting() { | |
if (o.media) { | |
o.media.onWaiting() | |
} else { | |
startwait_t = setTimeout(onWaiting, 100) | |
} | |
} | |
function onQualityChanged(event) { | |
SetCurrentQuality(event.data) | |
} | |
function Qualities() { | |
if (!quality_received) { | |
var x = player.getAvailableQualityLevels() + ''; | |
if (x != '' && x != undefined) { | |
o.files_quality = x.split(','); | |
o.files_quality = o.files_quality.reverse(); | |
if (v.ytautoquality == 0) { | |
var y = o.files_quality.indexOf('auto'); | |
if (y > -1) { | |
o.files_quality.splice(y, 1) | |
} | |
} | |
for (var i = 0; i < o.files_quality.length; i++) { | |
o.files_quality[i] = RenameQualities(o.files_quality[i]) | |
} | |
quality_received = true; | |
SetCurrentQuality(player.getPlaybackQuality()) | |
} | |
} | |
} | |
function SetCurrentQuality(x) { | |
o.current_quality = o.files_quality.indexOf(RenameQualities(x + '')); | |
o.controls.QualityChanged(o.current_quality) | |
} | |
this.size = function () { | |
return { | |
"width": 0, | |
"height": 0 | |
} | |
}; | |
this.src = function (x) { | |
youtube_id = YoutubeID(x); | |
if (o.seekto > 0) { | |
_start = parseInt(o.seekto) | |
} | |
playById(youtube_id) | |
}; | |
function Status() { | |
var state = -1; | |
if (ready) { | |
state = player.getPlayerState() | |
} | |
var x = ''; | |
if (state == -1) { | |
x = "paused" | |
} | |
if (state == 1 || state == 3) { | |
x = "playing" | |
} | |
if (state == 2) { | |
x = "paused"; | |
if (o.play) { | |
o.actions.Pause() | |
} | |
} | |
if (state == 5) { | |
x = "paused" | |
} | |
if (state == 0) { | |
x = "ended" | |
} | |
return x | |
} | |
function Resize() { | |
try { | |
if (exist(player)) { | |
player.setSize(o.screen_w, o.screen_h) | |
} | |
} catch (e) { | |
log(e) | |
} | |
} | |
function RenameQualities(x) { | |
var y = x; | |
if (x == "tiny") { | |
y = "160p" | |
} | |
if (x == "small") { | |
y = "240p" | |
} | |
if (x == "medium") { | |
y = "360p" | |
} | |
if (x == "large") { | |
y = "480p" | |
} | |
if (x == "hd720") { | |
y = "720p" | |
} | |
if (x == "hd1080") { | |
y = "1080p" | |
} | |
if (v.nameofyoutubequality == 1) { | |
y = Lang(y) | |
} | |
if (x == "auto") { | |
y = Lang("auto") | |
} | |
_set_quality[y] = x; | |
return y | |
} | |
function time() { | |
var x = ready ? player.getCurrentTime() : 0; | |
if (x > 0 && v.seekwindow > 0) { | |
v.delete = x - v.seekwindow; | |
v.seekwindow = -1 | |
} | |
return x | |
}; | |
function SetSpeed(x) { | |
player ? player.setPlaybackRate(x) : ''; | |
_speed = x | |
}; | |
this.YoutubeReady = function () { | |
YouTubeIframeAPIReady() | |
}; | |
this.Play = function () { | |
if (ready) { | |
player.playVideo() | |
} else { | |
if (!created) { | |
YtInit() | |
} else { } | |
} | |
}; | |
this.Pause = function () { | |
if (ready) { | |
player.pauseVideo() | |
} | |
}; | |
this.Toggle = function () { | |
if (ready) { | |
Status() == 'playing' ? player.pauseVideo() : player.playVideo() | |
} | |
}; | |
this.Seek = function (x) { | |
ready ? player.seekTo(x, true) : '' | |
}; | |
this.tag = function () { | |
return false | |
}; | |
this.Mute = function () { | |
ready ? player.mute() : '' | |
}; | |
this.Unmute = function () { | |
ready ? player.unMute() : '' | |
}; | |
this.Volume = function (x) { | |
ready ? player.setVolume(x * 100) : '' | |
}; | |
this.isPlaying = function () { | |
return Status() == 'playing' | |
}; | |
this.isLive = function () { | |
return false | |
}; | |
this.setQuality = function (x) { | |
SetQuality(x) | |
}; | |
function SetQuality(x) { | |
if (ready) { | |
if (exist(o.files_quality[x])) { | |
var y = _set_quality[o.files_quality[x]]; | |
auto = y == 'auto'; | |
var z = time(); | |
player.setPlaybackQuality(y) | |
} | |
} | |
} | |
this.setSpeed = function (x) { | |
SetSpeed(x) | |
}; | |
this.ready = function () { | |
return ready | |
}; | |
this.status = function () { | |
return Status() | |
}; | |
this.time = function () { | |
return time() | |
}; | |
this.duration = function () { | |
var x = ready ? player.getDuration() : 0; | |
if (x != drtn) { | |
drtn = x; | |
o.media.onDuration() | |
} | |
if (exist(v.end)) { | |
if (indOf([v.end], '-')) { | |
x = x + v.end * 1 | |
} else { | |
x = v.end | |
} | |
} | |
return x | |
}; | |
this.loaded = function () { | |
var x = 0; | |
if (ready) { | |
x = player.getVideoLoadedFraction() * player.getDuration() | |
} | |
return x | |
}; | |
this.resize = function () { | |
Resize() | |
}; | |
this.errorMessage = function () { | |
return error | |
}; | |
this.auto = function () { | |
return v.ytautoquality == 1 ? auto : false | |
}; | |
this.playId = function (x) { | |
playById(x) | |
}; | |
function playById(x) { | |
url = x; | |
if (player) { | |
_readyonplay = 1; | |
player.loadVideoById(x, 0) | |
} | |
} | |
this.BeforeVast = function () { | |
if (o.system.mobile && o.system.android) { | |
this.Play(); | |
vastonmobile = true | |
} else { | |
if (Status() == "playing") { | |
this.Pause() | |
} | |
} | |
}; | |
this.AfterVast = function () { | |
vastonmobile = false | |
}; | |
this.nativeControls = function () { | |
return true | |
}; | |
this.Remove = function () { | |
ready ? player.destroy() : ''; | |
ready = false; | |
quality_received = false; | |
try { | |
if (container) { | |
parentcontainer.removeChild(container) | |
} | |
parentcontainer.removeChild(layer) | |
} catch (e) { } | |
} | |
}; | |
var PluginBlock = function () { | |
var ll = 'https://imasdk.googleapis.com/' + Math.random().toString(36).substring(7); | |
var ll2 = ll + ''; | |
var mm = { | |
method: 'HEAD', | |
mode: 'no-cors' | |
}; | |
if (v.preroll && v.default_adb != 1) { | |
if (v.preroll.indexOf("//") > -1) { | |
ll = v.preroll.substr(v.preroll.lastIndexOf("//")) | |
} | |
if (ll.indexOf("[") > 0) { | |
ll = ll.substr(0, ll.indexOf("[")) | |
} | |
if (ll != ll2) { | |
mm = { | |
method: 'GET' | |
} | |
} | |
} | |
if (exist(window['fetch']) && exist(window['Request'])) { | |
var x = new Request(ll, mm); | |
fetch(x).then(function (y) { | |
if (typeof (y) != 'undefined') { } else { | |
o.ab = true; | |
o.controls ? o.controls.refresh() : '' | |
} | |
}).catch(function (e) { | |
o.ab = true; | |
o.controls ? o.controls.refresh() : '' | |
}) | |
} | |
}; | |
o.lang_ru = { | |
"auto": "Ğвто", | |
"play": "ПуÑк", | |
"pause": "Пауза", | |
"stop": "Стоп", | |
"fullscreen": "Во веÑÑŒ Ñкран", | |
"normalscreen": "Выйти из полноÑкранного режима", | |
"settings": "ĞĞ°Ñтройки", | |
"options": "Параметры", | |
"volume": "ГромкоÑÑ‚ÑŒ", | |
"mute": "ВыклÑчить звук", | |
"unmute": "ВклÑчить звук", | |
"live": "Ğ’ ĞФИРЕ", | |
"playlist": "ПлейлиÑÑ‚", | |
"quality": "КачеÑтво", | |
"download": "Скачать", | |
"subtitle": "Субтитры", | |
"speed": "СкороÑÑ‚ÑŒ", | |
"normal": "ĞбычнаÑ", | |
"error": "ошибка", | |
"unmute_video": "ВклÑчите звук", | |
"audiotrack": "Ğудио", | |
"loading_error": "ошибка загрузки", | |
"160p": "Ğчень низкое", | |
"240p": "Ğизкое", | |
"360p": "Среднее", | |
"480p": "Ğ’Ñ‹Ñокое", | |
"540p": "Ğ’Ñ‹Ñокое", | |
"next": "СледуÑщий", | |
"prev": "Предыдущий", | |
"share": "ПоделитьÑÑ", | |
"copied": "Скопировано в буфер обмена", | |
"ads": "Реклама", | |
"skip": "ПропуÑтить", | |
"skip_after_": "ПропуÑтить через ", | |
"adsinvitation": "Перейти на Ñайт рекламодателÑ", | |
"sub_sizeproc": "Размер текÑÑ‚Ğ°", | |
"sub_shift": "Сдвиг по времени", | |
"sub_color": "Цвет текÑÑ‚Ğ°", | |
"sub_color2": "Цвет текÑÑ‚Ğ° 2", | |
"sub_bgcolor": "Цвет фона", | |
"sub_bga": "ПрозрачноÑÑ‚ÑŒ фона", | |
"sub_shadow": "Тень", | |
"sub_weight": "Толщина текÑÑ‚Ğ°", | |
"sub_bottom": "ĞÑ‚Ñтуп Ñнизу", | |
"sub_reset": "СброÑить", | |
"upload": "Загрузить", | |
"sleeptimer": "Сон", | |
"offsettimer": "ПропуÑк", | |
"hour": "ЧаÑ", | |
"minute": "Минута", | |
"second": "Секунда", | |
"1val": "Да", | |
"0val": "Ğет", | |
"of": "из", | |
"pass": "Пароль", | |
"casterror": "Ğшибка воÑĞ¿Ñ€Ğ¾Ğ¸Ğ·Ğ²ĞµĞ´ĞµĞ½Ğ¸Ñ Ğ½Ğ° уÑтройÑтве", | |
"castdevice": "Играет на уÑтройÑтве", | |
"channel": "Канал", | |
"scale": "МаÑштаб", | |
"on": "Вкл.", | |
"off": "Выкл.", | |
"together": "Ğ’Ñе Ñразу", | |
"kbps": "кбит/Ñ", | |
"embed": "Код", | |
"url": "Ğ¡Ñылка", | |
"color": "Цвет", | |
"contrast": "КонтраÑÑ‚", | |
"brightness": "ЯркоÑÑ‚ÑŒ", | |
"saturate": "ĞĞ°ÑыщенноÑÑ‚ÑŒ", | |
"sepia": "СепиÑ" | |
}; | |
var Motion = function (x) { | |
var _ease; | |
var _timer; | |
var _type; | |
var _from; | |
var _to; | |
var _steps; | |
var _step = 0; | |
var _speed; | |
var _stop = false; | |
var _timeout; | |
if (x.me != undefined && x.mc != undefined && x.type != undefined && x.to != undefined) { | |
if (x.time == null) { | |
if (x.type.indexOf("alpha") > -1) { | |
x.to == 0 ? x.time = 0.5 : x.time = 0.2 | |
} else { | |
x.time = 0.20 | |
} | |
} | |
_ease = Ease(x.ease); | |
if (x.type.indexOf("scale") == -1) { | |
if (exist(o.motions[x.me])) { | |
o.motions[x.me].TheEnd() | |
} | |
o.motions[x.me] = this | |
} | |
if (x.show == 1) { | |
x.mc.set("display", true) | |
} | |
_type = x.type.split('|'); | |
_to = String(x.to).split('|'); | |
_from = new Array(); | |
for (var i = 0; i < _type.length; i++) { | |
if (!_to[i]) { | |
_to[i] = _to[0] | |
} | |
if (_type[i] == "alpha") { | |
_from[i] = x.mc.g("opacity") | |
} | |
if (_type[i] == "alpha_div") { | |
_from[i] = x.mc.style.opacity | |
} | |
if (_type[i] == "y") { | |
_from[i] = x.mc.g("y") | |
} | |
if (_type[i] == "x") { | |
_from[i] = x.mc.g("x") | |
} | |
if (_type[i] == "left") { | |
_from[i] = parseInt(x.mc.style.left) | |
} | |
if (_type[i] == "top") { | |
_from[i] = parseInt(x.mc.style.top) | |
} | |
if (_type[i] == "scale") { | |
_from[i] = x.mc.g("scaleX") | |
} | |
if (_type[i] == "scroll") { | |
_from[i] = x.mc.scrollTop | |
} | |
if (_type[i] == "scrollleft") { | |
_from[i] = x.mc.scrollLeft | |
} | |
if (_type[i] == "scaleY") { | |
_from[i] = x.mc.g("scaleY") | |
} | |
if (_type[i] == "scaleX") { | |
_from[i] = x.mc.g("scaleX") | |
} | |
if (_type[i] == "width") { | |
_from[i] = x.mc.g("width") | |
} | |
if (_type[i] == "width_div") { | |
_from[i] = x.mc.offsetWidth; | |
_to[i] = Math.floor(_to[i]); | |
x.me == "line_play" ? log("width", x.me, _from[i], _to[i], x.mc.offsetWidth) : '' | |
} | |
if (_type[i] == "height") { | |
_from[i] = x.mc.g("height") | |
} | |
if (_type[i] == "height_div") { | |
_from[i] = x.mc.offsetHeight | |
} | |
_to[i] = Number(_to[i]); | |
_from[i] = Number(_from[i]) | |
} | |
_speed = x.time * 1000 / _ease.length; | |
_steps = _ease.length; | |
if (_type.length == 1 && _from[0] == _to[0]) { | |
End() | |
} else { | |
setTimeout(onStep, Math.round(_speed)) | |
} | |
} | |
function onStep() { | |
for (var i = 0; i < _type.length; i++) { | |
var tmp = _from[i] + (_to[i] - _from[i]) * (_ease[_step] ? _ease[_step] : 0); | |
Alpha(_type[i], tmp); | |
if (_type[i] == "y") { | |
x.mc.set("top", tmp) | |
} | |
if (_type[i] == "x") { | |
x.mc.set("left", tmp) | |
} | |
if (_type[i] == "left") { | |
x.mc.style.left = tmp + "px" | |
} | |
if (_type[i] == "top") { | |
x.mc.style.top = tmp + "px" | |
} | |
if (_type[i] == "scale") { | |
x.mc.set("scale", tmp) | |
} | |
if (_type[i] == "scaleY") { | |
x.mc.set("scaleY", tmp) | |
} | |
if (_type[i] == "scaleX") { | |
x.mc.set("scaleX", tmp) | |
} | |
if (_type[i] == "scroll") { | |
x.mc.scrollTop = tmp | |
} | |
if (_type[i] == "scrollleft") { | |
x.mc.scrollLeft = tmp | |
} | |
if (_type[i] == "width") { | |
x.mc.set("width", tmp) | |
} | |
if (_type[i] == "width_div") { | |
css(x.mc, { | |
"width": tmp | |
}) | |
} | |
if (_type[i] == "height") { | |
x.mc.set("height", tmp) | |
} | |
if (_type[i] == "height_div") { | |
css(x.mc, { | |
"height": tmp | |
}) | |
} | |
} | |
_step++; | |
if (!_stop) { | |
if (_step == _steps) { | |
End() | |
} else { | |
_timeout = setTimeout(onStep, Math.round(_speed)) | |
} | |
} | |
} | |
function End() { | |
_stop = true; | |
if (x.hide) { | |
if (_type[0] == "alpha_div" || _type[0] == "left") { | |
hide(x.mc) | |
} else { | |
x.mc.set("display", false) | |
} | |
} | |
if (x.type.indexOf("scale") == -1) { | |
o.motions[x.me] = null; | |
delete o.motions[x.me] | |
} | |
for (var i = 0; i < _type.length; i++) { | |
Alpha(_type[i], _to[i]) | |
} | |
clearTimeout(_timeout) | |
}; | |
function Alpha(y, z) { | |
if (y == "alpha") { | |
x.mc.set("opacity", z) | |
} | |
if (y == "alpha_div") { | |
x.mc.style.opacity = z | |
} | |
} | |
this.TheEnd = function () { | |
End() | |
}; | |
this.TheEnd2 = function () { | |
_step = _steps - 1; | |
onStep(); | |
End() | |
}; | |
this.XY = function (x0, x1, y0, y1) { | |
var e = false; | |
for (var i = 0; i < _type.length; i++) { | |
if (_type[i] == 'x' && x0 != x1) { | |
e = true | |
} | |
if (_type[i] == 'y' && y0 != y1) { | |
e = true | |
} | |
} | |
e ? End() : '' | |
}; | |
function Ease(str) { | |
switch (str) { | |
case "elastic": | |
return [0, 0.432, 0.857, 1.275, 1.372, 1.296, 1.102, 0.957, 0.883, 0.87, 0.914, 0.992, 1.029, 1.041, 1.036, 1.019, 0.996, 0.984, 0.981, 0.988, 1.001, 1.006, 1.007, 1.006, 1.003, 0.999, 0.998, 0.998, 0.998, 0.998, 1]; | |
break; | |
case "cubic": | |
return [0, 0.096, 0.185, 0.267, 0.344, 0.416, 0.483, 0.547, 0.606, 0.659, 0.705, 0.747, 0.785, 0.818, 0.848, 0.874, 0.897, 0.918, 0.935, 0.95, 0.962, 0.971, 0.979, 0.985, 0.99, 0.994, 0.997, 0.999, 1]; | |
break; | |
default: | |
return [0, 0.175, 0.32, 0.44, 0.52, 0.6, 0.67, 0.73, 0.775, 0.82, 0.85, 0.885, 0.915, 0.935, 0.95, 0.97, 0.983, 0.993, 1]; | |
break | |
} | |
} | |
}; | |
var System = function () { | |
var N = navigator.appName, | |
ua = navigator.userAgent, | |
tem; | |
var M = ua.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i); | |
var M = ua.match(/(opera|chrome|safari|firefox|msie|trident|edge)\/?\s*(\.?\d+(\.\d+)*)/i); | |
if (M && (tem = ua.match(/version\/([\.\d]+)/i)) != null) M[2] = tem[1]; | |
var mtp = navigator.maxTouchPoints; | |
this.browser = M ? M[1] : N; | |
this.version = M ? M[2] : navigator.appVersion; | |
this.touch = navigator.maxTouchPoints > 1; | |
this.opera = this.browser == "Opera"; | |
this.ie9 = this.browser == "MSIE 9.0"; | |
this.ie = this.browser == "MSIE" || this.browser == "Trident" || this.browser == "Edge"; | |
this.edge = ua.search(/(edge)\/?\s*/i) > -1; | |
this.firefox = this.browser == "Firefox"; | |
this.safari = this.browser == "Safari"; | |
this.chrome = window.chrome; | |
this.win = ua.search("Windows NT") > -1; | |
this.ios = (ua.search(/(iphone|ipad|ipod)\/?\s*/i) > -1) || (navigator.platform === 'MacIntel' && mtp > 1); | |
this.tv = v.notv != 1 && ua.search(/(TV|tvOS|webOS|armv|BRAVIA|Roku|Tizen|Philips)\/?\s*/i) > -1; | |
this.lg = v.notv != 1 && ua.search(/(LG)\/?\s*/i) > -1; | |
this.iphone = ua.search(/(iphone)\/?\s*/i) > -1; | |
this.ipad = this.ios && !this.iphone; | |
this.webkit = 'WebkitAppearance' in document.documentElement.style; | |
if (ua.search(/(android)\/?\s*/i) > -1) { | |
mtp > 0 ? this.android = true : this.tv = true; | |
if (matchMedia('(pointer:fine)').matches) { | |
this.tv = true | |
} | |
} | |
this.mobile = (this.ios || this.android || (ua.search(/(blackberry|iemobile|opera mini)\/?\s*/i) > -1)) && !this.tv; | |
this.mutedautoplay = this.safari || this.chrome; | |
this.fullscreen = false; | |
if (this.ios) { | |
this.iosv = parseFloat(ua.substr(ua.indexOf('OS ') + 3, 4).replace('_', '.')); | |
if (this.ipad && (!'ontouchstart' in window || mtp < 2)) { | |
this.mobile = this.ios = false; | |
this.tv = true | |
} | |
} | |
this.desktop = !this.mobile; | |
this.mobiletv = this.mobile || this.tv; | |
this.wkdt = this.webkit && this.desktop; | |
if (o.frame.requestFullScreen || o.frame.requestFullscreen || o.frame.mozRequestFullScreen || o.frame.webkitRequestFullScreen || o.frame.msRequestFullscreen) { | |
this.fullscreen = true | |
} | |
}; | |
function UpdateObject(obj, obj2) { | |
for (var s in obj2) { | |
if (typeof (obj2[s]) == 'object') { | |
if (s == "events" || s == "file") { | |
obj[s] = obj2[s] | |
} else { | |
for (var s2 in obj2[s]) { | |
if (typeof (obj[s]) != 'object') { | |
obj[s] = {} | |
} | |
if (typeof (obj2[s][s2]) == 'object') { | |
for (var s3 in obj2[s][s2]) { | |
if (typeof (obj[s][s2]) != 'object') { | |
obj[s][s2] = {} | |
} | |
if (typeof (obj2[s][s2][s3]) == 'object') { | |
for (var s4 in obj2[s][s2][s3]) { | |
if (typeof (obj[s][s2][s3]) != 'object') { | |
obj[s][s2][s3] = {} | |
} | |
obj[s][s2][s3][s4] = obj2[s][s2][s3][s4]; | |
if (s3 == 'padding' || s3 == 'margin') { | |
obj[s][s2][s3][s4] = parseInt(obj[s][s2][s3][s4]) | |
} | |
} | |
} else { | |
obj[s][s2][s3] = obj2[s][s2][s3]; | |
if (s2 == 'padding' || s2 == 'margin') { | |
obj[s][s2][s3] = parseInt(obj[s][s2][s3]) | |
} | |
} | |
} | |
} else { | |
obj[s][s2] = obj2[s][s2]; | |
if (s == 'padding' || s == 'margin') { | |
obj[s][s2] = parseInt(obj[s][s2]) | |
} | |
} | |
} | |
} | |
} else { | |
if (s.indexOf("roll") > 0 && trim(obj2[s]) === "") { } else { | |
obj[s] = SettingsParser(s, obj2[s]) | |
} | |
} | |
} | |
return obj | |
}; | |
var SettingsParser = function (key, value) { | |
if (typeof (value) == 'string') { | |
value = trim(value); | |
if (key.indexOf("color") > -1 && value != -1) { | |
value = CheckColor(value) | |
} | |
} | |
return value | |
}; | |
function StorageSupport() { | |
try { | |
var storage = window['localStorage'], | |
x = '__storage_test__'; | |
storage.setItem(x, x); | |
storage.removeItem(x); | |
return true | |
} catch (e) { | |
return false | |
} | |
}; | |
function killMotion(motion_id) { | |
if (motion_id) { | |
if (exist(o.motions[motion_id])) { | |
o.motions[motion_id].TheEnd() | |
} | |
} | |
}; | |
var Lang = function (x) { | |
var y = x; | |
if (y) { | |
y = x.charAt(0).toUpperCase() + x.slice(1); | |
if (y.indexOf("_") > -1) { | |
y = y.replace(/_/ig, " ") | |
} | |
} | |
var en = { | |
"of": "of", | |
"kbps": "kbps", | |
"castdevice": "Playback on device", | |
"casterror": "Playback error on device", | |
"together": "All at once", | |
"pass": "Password", | |
"0val": "No", | |
"sleeptimer": "Sleep", | |
"offsettimer": "Skip", | |
"1val": "Yes", | |
"sub_bottom": "Bottom margin", | |
"sub_weight": "Font weight", | |
"sub_shadow": "Shadow", | |
"sub_bga": "Background opacity", | |
"sub_bgcolor": "Background color", | |
"sub_sizeproc": "Text size", | |
"sub_color": "Text color", | |
"sub_color2": "Text color 2", | |
"sub_shift": "Time shift", | |
"sub_reset": "Reset", | |
"prev": "Previous", | |
"copied": "Copied to clipboard", | |
"160p": "Tiny", | |
"240p": "Small", | |
"360p": "Medium", | |
"480p": "High", | |
"540p": "High", | |
"720p": "HD", | |
"1080p": "Full HD", | |
"1296p": "Super HD", | |
"1440p": "Quad HD", | |
"2160p": "Ultra HD 4K", | |
"ads": "Ad", | |
"adsinvitation": "Go to the advertiser's website", | |
"audiotrack": "Audio", | |
"live": "LIVE", | |
"fullscreen": "Enter fullscreen", | |
"normalscreen": "Exit fullscreen" | |
}; | |
if (exist(en[x])) { | |
y = en[x] | |
} | |
if (exist(o['lang_' + v.lang])) { | |
if (exist(o['lang_' + v.lang][x])) { | |
y = o['lang_' + v.lang][x] | |
} | |
} | |
if (v.rename) { | |
if (v.rename[x]) { | |
y = v.rename[x] | |
} | |
} | |
return y | |
}; | |
var gaTracker = function (x, y, z) { | |
if (!exist(o.gatracked[y]) && v.playerjscom != 1) { | |
var t = o.titlestore ? o.titlestore : (v.title ? v.title : ''); | |
exist(v.label) ? t = v.label : ''; | |
if (v.yamtr_event[x] == 1 && v.yamtr == 1 && exist(v.yamtrid)) { | |
if (x == "init") { | |
setInterval(yaHit, 300000) | |
} | |
if (exist(window["yaCounter" + v.yamtrid])) { | |
window["yaCounter" + v.yamtrid].reachGoal('playerjs_' + x, { | |
title: t | |
}); | |
log("Yandex", 'playerjs_' + x) | |
} else { | |
log("Yandex Metric error") | |
} | |
} | |
if (v.ga_event[x] == 1) { | |
if (v.ga == 1) { | |
var gao; | |
if (v.ga4 == 1) { | |
if (window.gtag) { | |
gao = { | |
'label': t | |
}; | |
if (v.galabels) { | |
if (typeof (v.galabels) == "object") { | |
for (var g in v.galabels) { | |
if (v.galabels.hasOwnProperty(g)) { | |
gao[g] = v.galabels[g] | |
} | |
} | |
} | |
} | |
gtag('event', 'playerjs_' + x, gao) | |
} | |
} else { | |
if (window.ga) { | |
gao = { | |
eventCategory: 'Player', | |
eventAction: y | |
}; | |
if (t != '') { | |
gao.eventLabel = t | |
} | |
if (v.gainact == 1 && !o.clicktime) { | |
gao.nonInteraction = 1 | |
} | |
ga('user.send', 'event', gao) | |
} | |
} | |
} | |
} | |
} | |
z ? o.gatracked[y] = true : '' | |
}; | |
function yaHit() { | |
if (exist(window["yaCounter" + v.yamtrid])) { | |
window["yaCounter" + v.yamtrid].reachGoal('playerjs_hit') | |
} | |
}; | |
var YoutubeID = function (url) { | |
var x = ''; | |
url = url.replace("v=", " { = "); | |
if (url.indexOf('youtu.be/') > -1) { | |
x = url.substr(url.indexOf(".be/") + 4); | |
x.replace("/", "") | |
} else { | |
x = url.split(/(youtu.be\/|v\/|embed\/|watch\?|youtube.capiom\/user\/[^#]*#([^\/]*?\/)*)\?? { ? = ? ([ ^ #\ & \ ? ] * ) /)[3] | |
} | |
if (x != '') { | |
if (x.indexOf("?t=") > 0) { | |
v.start = x.substr(x.indexOf("?t=") + 3); | |
var h = 0; | |
var m = 0; | |
var s = 0; | |
if (v.start.indexOf("h") > 0) { | |
h = v.start.substr(0, v.start.indexOf("h")); | |
v.start = v.start.substr(v.start.indexOf("h") + 1) | |
} | |
if (v.start.indexOf("m") > 0) { | |
m = v.start.substr(0, v.start.indexOf("m")); | |
v.start = v.start.substr(v.start.indexOf("m") + 1) | |
} | |
if (v.start.indexOf("s") > 0) { | |
s = v.start.substr(0, v.start.indexOf("s")); | |
v.start = v.start.substr(v.start.indexOf("s") + 1) | |
} | |
if (h > 0 || m > 0 || s > 0) { | |
v.start = h * 3600 + m * 60 + s * 1 | |
} | |
x = x.substr(0, x.indexOf("?t=")) | |
} | |
} | |
return x | |
}; | |
var js = function (x, y, li, ev) { | |
if (x == "init") { | |
o.init = true | |
} | |
if (ev == 1) { | |
for (var yi in y) { | |
if (y.hasOwnProperty(yi)) { | |
if (typeof (y[yi]) == "object") { | |
y[yi] = '' | |
} | |
} | |
} | |
} | |
if (v.eventstracker == 1 && o.init) { | |
if (v.eventlisteners == 1 || li == 1) { | |
JsEvent(x, y) | |
} else { | |
if (y != undefined) { | |
if (typeof (y) == 'object') { | |
try { | |
y = JSON.stringify(y) | |
} catch (e) { } | |
} else { | |
if (typeof (y) == 'string') { | |
y = y.replace(/'/ig, '′') | |
} | |
} | |
} | |
if (typeof (v.events) == 'string') { | |
if (v.events.indexOf("{") == 0) { | |
try { | |
v.events = v.events.replace(/\'/ig, '"'); | |
v.events = JSON.parse(v.events) | |
} catch (e) { | |
console.log(e) | |
} | |
} | |
} | |
if (typeof (v.events) == 'object') { | |
if (exist(v.events[x]) || exist(v.events['other'])) { | |
var z = x; | |
if (!exist(v.events[x]) && exist(v.events['other'])) { | |
z = 'other' | |
} | |
if (x.indexOf("vast_") == 0) { | |
if (exist(v.events['vast'])) { | |
z = 'vast' | |
} | |
} | |
try { | |
if (y !== undefined) { | |
eval(v.events[z] + "('" + x + "','" + v.id + "','" + y + "')") | |
} else { | |
eval(v.events[z] + "('" + x + "','" + v.id + "')") | |
} | |
} catch (e) { | |
log("events", e, x) | |
} | |
} | |
} else { | |
if (v.events == '') { | |
v.events = "PlayerjsEvents" | |
} | |
try { | |
if (y !== undefined) { | |
eval(v.events + "('" + x + "','" + v.id + "','" + y + "')") | |
} else { | |
eval(v.events + "('" + x + "','" + v.id + "')") | |
} | |
} catch (e) { | |
log("events", e, x, y) | |
} | |
} | |
} | |
} | |
if (o.init && v.pjsframe == 1) { | |
if (o.pjsfrm) { | |
try { | |
o.pjsfrm.contentWindow.postMessage({ | |
event: x, | |
info: y | |
}, "*") | |
} catch (e) { } | |
} | |
} | |
if (v.postmessage == 1 && li !== 1) { | |
var zv = { | |
event: x, | |
time: o.media ? (x == "seek" ? o.seeked_time : o.media.time()) : 0 | |
}; | |
if (y != undefined) { | |
zv["data"] = y | |
} | |
if (x == "duration" || x == "time") { | |
zv["duration"] = o.media.duration() | |
} | |
if (x == "volume" || x == "unmute") { | |
zv["volume"] = v.volume | |
} | |
if (x == "new") { | |
zv["id"] = apiProcessor("playlist_id") | |
} | |
window.parent.postMessage(zv, '*'); | |
var z = x; | |
x == "init" || x == "start" || x == "end" ? z = x + "ed" : ''; | |
x == "play" ? z = "resumed" : ''; | |
x == "pause" ? z = "paused" : ''; | |
x == "mute" ? z = "muted" : ''; | |
x == "unmute" ? z = "unmuted" : ''; | |
x == "seek" ? z = "rewound" : ''; | |
x == "vast_Impression" ? z = "adShown" : ''; | |
zv["event"] = z; | |
if (z != '' && z != x) { | |
zv = JSON.parse(JSON.stringify(zv)); | |
window.parent.postMessage(zv, '*') | |
} | |
} | |
}; | |
var JsEvent = function (x, y) { | |
var ev = document.createEvent('Events'); | |
if (y !== undefined) { | |
ev.info = y | |
} | |
ev.initEvent(x, true, true); | |
o.container.dispatchEvent(ev) | |
}; | |
this.event = function (x, y) { | |
o.events[x] = y | |
}; | |
this.api = function (x, y, but) { | |
return apiProcessor(x, y, but) | |
}; | |
function apiProcessor(x, y, but) { | |
if (exist(o.actions) && typeof (x) == 'string') { | |
if (o.destroyed == 1) { | |
return | |
} | |
if (but) { | |
if (typeof (but) == 'string') { | |
if (but.indexOf("id:") == 0) { | |
but = o.controls.butByS(but.substr(3), "dom"); | |
if (but) { | |
if (x == "button" && y == "toogle") { | |
but.Click() | |
} | |
} | |
} | |
} | |
} | |
if (x == "play" || x == "file") { | |
if (exist(y)) { | |
var noads = false; | |
if (typeof (y) == 'string') { | |
y = y.replace(/(\r\n|\n|\r)/gm, ""); | |
var seekto = -1; | |
if (y.indexOf("[seek:") > -1 && y.lastIndexOf("]") == y.length - 1) { | |
seekto = y.substr(y.indexOf("[seek:") + 6, y.length - 1); | |
seekto = parseInt(seekto.substr(0, seekto.length - 1)); | |
y = y.substr(0, y.indexOf("[seek:")); | |
if (y == '') { | |
o.actions.Seek(seekto); | |
o.actions.Play(); | |
return | |
} else { | |
o.seekto = seekto | |
} | |
} | |
if (y.indexOf("[skipads]") > -1) { | |
noads = true; | |
y = y.replace('[skipads]', '') | |
} | |
if (y.indexOf("#" + v.enc2) == 0) { | |
y = o[o.fd[0]](y) | |
} | |
if (y.indexOf("#" + v.enc3) == 0 && y.indexOf(v.file3_separator) > 0) { | |
y = o[o.fd[1]](y) | |
} | |
if (y.indexOf("#0") == 0) { | |
y = fd0(y) | |
} | |
if (v.fplace == 1) { | |
y = fplace(y) | |
} | |
if (y.indexOf(".txt") == y.length - 4) { | |
var xhr = XHR(y); | |
xhr.onload = function () { | |
if (this.readyState == 4 && this.status == 200) { | |
try { | |
apiProcessor('play', JSON.parse(this.responseText)) | |
} catch (e) { } | |
} | |
}; | |
xhr.send(); | |
return | |
} | |
if (y.indexOf("id:") == 0 && exist(o.playlist_dic)) { | |
var z = FindIdPl(y); | |
if (exist(o.playlist_dic[z])) { | |
o.controls.PlaylistPlayId(z); | |
seekto > -1 ? o.seekto = seekto : ''; | |
return true | |
} else { | |
return false | |
} | |
} | |
if (y.indexOf("youtubeid:") == 0) { | |
var z = y.substr(10); | |
if (o.file_type == "youtube") { | |
o.media.playByYoutubeId(z); | |
return true | |
} else { | |
y = '//youtu.be/' + z | |
} | |
} | |
} | |
if (x == "play") { | |
o.controls.PreNewPl(); | |
o.actions.NewFile(y, undefined, undefined, (noads ? 1 : 0)) | |
} | |
if (x == "file") { | |
o.newfile = true; | |
v.autoplay = 0; | |
o.actions.NewFile(y, 1, undefined, (noads ? 1 : 0)); | |
o.controls.Duration(0, 0); | |
o.start = false | |
} | |
} else { | |
if (x == "play") { | |
o.actions.Play() | |
} | |
if (x == "file") { | |
typeof Papi41 == 'function' ? Papi41() : '' | |
} | |
} | |
} | |
if (x == "preload") { | |
if (exist(y)) { | |
o.newfile = true; | |
o.actions.NewFile(y, 1, 1) | |
} else { | |
o.media.Preload() | |
} | |
} | |
if (x == "pause") { | |
if (o.play) { | |
o.actions.Pause(); | |
o.actions.RenewSubtitle() | |
} | |
} | |
if (x == "channel" && exist(y)) { | |
o.start && o.channels ? o.channels.SetChannel(y) : '' | |
} | |
if (x.indexOf("vpaid_") == 0) { | |
if (o.vast) { | |
o.vast.VpaidSet(x.substr(6), y) | |
} | |
} | |
if (x == "alert") { | |
o.alert.close(); | |
o.alert = new Alert(); | |
if (v.alert404 == 1) { | |
o.alert.txt(v.alert404text) | |
} else { | |
o.alert.txt("Test message") | |
} | |
if (v.alert404v == 1 && exist(v.alert404video)) { | |
o.err404v = new PluginErrorVideo() | |
} | |
} | |
if (x == "waiting") { | |
!o.start ? o.controls.startcss() : ''; | |
o.controls.Waiting(); | |
o.controls.HideElement("control_start") | |
} | |
if (x == "toggle") { | |
o.play ? o.actions.Pause() : o.actions.Play() | |
} | |
if (x == "stop") { | |
v.preload = 0; | |
v.autoplay = 0; | |
o.media.Recover(); | |
o.actions.Stop() | |
} | |
if (x == "reload") { | |
o.time = o.media.time(); | |
o.actions.Reload() | |
} | |
if (x == "download") { | |
if (v.apiprm) { | |
if (v.apiprm.on == 1 && v.apiprm.dwn == 1) { | |
o.actions.Download() | |
} | |
} | |
} | |
if (x == "effect" && exist(y)) { | |
if (o.effects) { | |
o.effects.api(y) | |
} | |
} | |
if (x == "share") { | |
o.controls.showShare() | |
} | |
if (x == "startvast" && exist(y)) { | |
if (v.vast == 1) { | |
if (y.indexOf('js:') == 0) { | |
v.midroll = y; | |
v.midrolls = true; | |
o.actions.advertising("midroll") | |
} else { | |
if (o.p != '') { | |
var sv = JSON.parse(decode(o.p)); | |
for (var l in sv) { | |
if (sv.hasOwnProperty(l)) { | |
if (exist(sv[l].id)) { | |
if (y == sv[l].id) { | |
v.midroll = 'prt' + (exist(sv[l]['cpm']) ? 'cpm' + sv[l]['cpm'] : '') + y + '_' + sv[l].preroll; | |
v.midrolls = true; | |
o.actions.advertising("midroll") | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
if (x == "vastbreak") { | |
typeof VastBreak == "function" ? VastBreak() : '' | |
} | |
if (x == "cuid" && y) { | |
v.cuid = y; | |
o.continue ? o.continue.updateCuid() : '' | |
} | |
if (x == "mute") { | |
o.actions.Mute() | |
} | |
if (x == "speed") { | |
if (exist(y)) { | |
o.actions.SetSpeed(y) | |
} else { | |
return o.files_speed[o.current_speed] | |
} | |
} | |
if (x == "played") { | |
if (v.apiprm && o.pld) { | |
if (v.apiprm.pld == 1) { | |
return Math.round((o.pld.filter(Boolean).length - 1) / Math.round(o.media.duration()) * 100) | |
} | |
} | |
} | |
if (x == "speeds") { | |
return o.files_speed | |
} | |
if (x == "unmute") { | |
o.actions.Unmute() | |
} | |
if (x == "thumbnails") { | |
if (exist(y)) { | |
v[x] = y; | |
o.actions.Thumbs() | |
} | |
} | |
if (x == "qualities") { | |
return o.files_quality | |
} | |
if (x == "adblock") { | |
return o.ab ? true : false | |
} | |
if (x == "live") { | |
return o.media ? o.media.isLive() : false | |
} | |
if (x == "subtitles") { | |
return v.sub_off == 1 ? o.files_subtitle.slice(0, -1) : o.files_subtitle | |
} | |
if (x == "audiotracks") { | |
return o.files_audiotrack | |
} | |
if (x == "volume" || x == "setVolume") { | |
if (exist(y)) { | |
if (y >= 0 && y <= 1) { | |
o.actions.Volume(y) | |
} | |
} | |
return o.muted ? 0 : v.volume | |
} | |
if (x == "muted") { | |
return exist(o.muted) ? o.muted : false | |
} | |
if (x == "moveplaylist") { | |
o.controls ? o.controls.PlaylistMove(y) : '' | |
} | |
if (x == "design") { | |
y < 2 ? y = '' : ''; | |
if (exist2(o['u' + y])) { | |
var x2 = JSON.parse(decode(o['u' + y])); | |
var v2 = []; | |
for (var l in v) { | |
if (v.hasOwnProperty(l)) { | |
if (l.indexOf("control_") == 0) { | |
v[l] = null | |
} | |
} | |
} | |
if (typeof x2 == "object") { | |
for (var k in x2) { | |
if (x2.hasOwnProperty(k)) { | |
if (k.indexOf("control_") == 0) { | |
v[k] = x2[k] | |
} | |
if (k == "toolbar") { | |
v2[k] = x2[k] | |
} | |
} | |
} | |
} | |
v = UpdateObject(v, v2); | |
var show_settings = false; | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings(); | |
show_settings = true | |
} | |
var show_playlist = false; | |
if (o.controls.PlaylistVisible()) { | |
o.controls.Playlist(); | |
show_playlist = true | |
} | |
o.controls.Remove(); | |
o.controls = null; | |
o.controls = new Controls(); | |
if (o.media.status() == "playing") { | |
o.controls.Play() | |
} | |
o.controls.Volume(v.volume); | |
if (exist(v.title)) { | |
Title(v.title) | |
} | |
if (show_settings) { | |
o.controls.Settings() | |
} | |
if (show_playlist) { | |
o.controls.Playlist() | |
} | |
if (o.fullscreen) { | |
o.controls.Fullscreen() | |
} | |
if (key != 'control_duration') { | |
o.controls.Duration(o.media.time(), o.media.duration()) | |
} | |
MainResize() | |
} | |
} | |
if (x == "vars") { | |
return v.vars | |
} | |
if (x == "resize") { | |
o.controls.resize(true) | |
} | |
if (x == "resize2") { | |
MainResize() | |
} | |
if (x == "seek") { | |
if (exist(y)) { | |
if (typeof y == "string") { | |
if (y.indexOf("%") > -1) { | |
y = parseInt(y.substr(0, y.indexOf("%"))); | |
y = o.media.duration() * y / 100 | |
} else { | |
var omt = o.media.time(); | |
if (o.continue && !o.start) { | |
if (!o.continue.seeked) { | |
var f = o.continue.flag(); | |
if (f.t && f.d) { | |
omt = f.t; | |
o.continue.seeked = true | |
} | |
} | |
} | |
if (y.indexOf("+") == 0) { | |
y = omt + parseFloat(y.substr(1)) | |
} else { | |
if (y.indexOf("-") == 0) { | |
y = omt - parseFloat(y.substr(1)) | |
} | |
} | |
} | |
} | |
y = y * 1; | |
y < 0 ? y = 0 : ''; | |
if (o.media.duration() > 0) { | |
y > o.media.duration() ? y = 0 : '' | |
} | |
if (!exist(o.vast) && !exist(o.vastloader) && o.media.duration() > 0) { | |
o.seekto = undefined; | |
o.actions.Seek(y, true); | |
o.actions.Playing() | |
} else { | |
o.seekto = y | |
} | |
} | |
} | |
if (x == "fullscreen") { | |
!o.fullscreen ? o.actions.Fullscreen() : '' | |
} | |
if (x == "exitfullscreen") { | |
o.fullscreen ? o.actions.Normalscreen() : '' | |
} | |
if (x == "isfullscreen") { | |
return o.fullscreen | |
} | |
if (x == "size") { | |
return o.screen_w + '/' + o.screen_h | |
} | |
if (x == "fix") { | |
if (exist(o.minify)) { | |
o.minify.Do() | |
} | |
} | |
if (x == "unfixing" || x == "unfix") { | |
if (exist(o.minify)) { | |
o.minify.Un() | |
} | |
} | |
if (x == "time" || x == "time2") { | |
var _t = o.media ? o.media.time() : 0; | |
if (o.continue && v.timestore == 1 && !o.start && _t == 0) { | |
var f = o.continue.flag(); | |
if (f.t) { | |
_t = f.t | |
} | |
} | |
return x == "time2" ? timeFormat(_t) : _t | |
} | |
if (x == "timeplay") { | |
if (o.butplstart) { | |
apiProcessor("play", "id:" + o.butplstart) | |
} | |
if (o.butseekto) { | |
apiProcessor("seek", o.butseekto); | |
apiProcessor("play") | |
} | |
} | |
if (x == "duration") { | |
return o.media ? o.media.duration() : 0 | |
} | |
if (x == "buffered") { | |
return o.media ? o.media.loaded() : 0 | |
} | |
if (x == "points") { | |
if (y) { | |
v.points = y; | |
o.controls.RenewPoints() | |
} | |
} | |
if (x == "quality") { | |
if (exist(y)) { | |
if (but) { | |
v.hd = Switcher(v.hd, y, but); | |
if (o.files_quality.length == 2) { | |
o.actions.SetQuality(v.hd) | |
} | |
} else { | |
o.actions.SetQuality(y) | |
} | |
} else { | |
return o.media ? NoSpan(o.media.getQuality()) : 0 | |
} | |
} | |
if (x == "audiotrack") { | |
if (exist(y)) { | |
if (but) { | |
v.ahd = Switcher(v.ahd, y, but); | |
if (o.files_audiotrack.length == 2) { | |
o.actions.SetAudioTrack(v.ahd) | |
} | |
} else { | |
o.actions.SetAudioTrack(y) | |
} | |
} else { | |
return o.media ? o.media.getAudioTrack() : 0 | |
} | |
} | |
if (x == "isyoutube") { | |
return o.file_type == "youtube" | |
} | |
if (x == "restart") { | |
if (o.current_audiotrack > 0) { | |
o.restart_audio = o.current_audiotrack | |
} | |
o.actions.NewFile(o.files[o.current_file]) | |
} | |
if (x == "playing") { | |
return o.play | |
} | |
if (x == "started") { | |
return o.start | |
} | |
if (x == "system") { | |
return o.system[y] | |
} | |
if (x == "youtubeready") { | |
o.destroyed != 1 ? o.media.onYoutubeReady() : '' | |
} | |
if (x == "id") { | |
return v.id | |
} | |
if (x == "log") { | |
v.log = y | |
} | |
if (x == "eventstracker") { | |
v.eventstracker = y | |
} | |
if (x == "pip") { | |
o.media.PipToggle() | |
} | |
if (x == "switchpip") { | |
o.media.PipSwitch(); | |
if (but) { | |
o.piped = Switcher(o.piped, y, but) | |
} | |
} | |
if (x == "airplay") { | |
o.media.Airplay() | |
} | |
if (x == "pipwebkit") { | |
o.media.PipWebkit() | |
} | |
if (x == "options" && v.playerjscom != 1) { | |
console.log(options) | |
} | |
if (x == "castinit" && o.chromecast) { | |
o.chromecast.init() | |
} | |
if (x == "subtitle") { | |
if (exist(y)) { | |
if (y == '0/1') { | |
if (o.subtitle_on) { | |
o.submm = o.current_subtitle; | |
y = -1 | |
} else { | |
y = o.submm ? o.submm : 0 | |
} | |
} | |
v.subtitle = y; | |
if (y.toString().length < 3 && o.sbt) { | |
o.sbt.SetSubtitle(y * 1) | |
} else { | |
o.actions.Subtitle(y) | |
} | |
} else { | |
return o.files_subtitle ? o.files_subtitle[o.current_subtitle] : '' | |
} | |
} | |
if (x == "quiz") { | |
if (exist(o.quiz)) { | |
if (exist(y)) { | |
o.quiz.api(y) | |
} else { | |
return o.quiz.Active() | |
} | |
} | |
} | |
if (x == "geo") { | |
if (o.geobj) { | |
return o.geobj | |
} else { | |
return false | |
} | |
} | |
if (x == "ratio") { | |
return o.media.ratio() | |
} | |
if (x == "box") { | |
var box = createElement("div"); | |
box.id = y; | |
box.style.zIndex = 10000; | |
o.frame.appendChild(box) | |
} | |
if (x == "screenshot") { | |
if (o.tagvideo) { | |
var canvas = createElement("canvas"); | |
var size = o.media.size(); | |
canvas.width = size.width > 0 ? size.width : o.normal_w; | |
canvas.height = size.height > 0 ? size.height : o.normal_h; | |
css(canvas, { | |
"position": "absolute", | |
"top": -canvas.height, | |
"left": -canvas.width, | |
"display": "none" | |
}); | |
document.body.appendChild(canvas); | |
var ctx = canvas.getContext('2d'); | |
ctx.drawImage(o.media.tag(), 0, 0, canvas.width, canvas.height); | |
var quality = 2; | |
var canvas2 = document.createElement("canvas"); | |
canvas2.width = canvas.width * quality; | |
canvas2.height = canvas.height * quality; | |
var ctx2 = canvas2.getContext("2d"); | |
ctx2.drawImage(o.media.tag(), 0, 0, canvas.width * quality, canvas.height * quality); | |
if (v.sscopyright == 1 && exist(v.sstext)) { | |
!exist(v.ssfontsize) ? v.ssfontsize = 20 : ''; | |
!exist(v.ssfontcolor) ? v.ssfontcolor = "ffffff" : ''; | |
ctx2.font = v.ssfontsize + "px Courier, Arial"; | |
ctx2.fillStyle = CheckColor(v.ssfontcolor); | |
ctx2.fillText((v.sstext == "domain" ? o.domain : v.sstext), v.ssfontsize, canvas.height * quality - v.ssfontsize - 5) | |
} | |
ctx.drawImage(canvas2, 0, 0, canvas.width, canvas.height); | |
var img; | |
try { | |
img = canvas.toDataURL("image/jpeg") | |
} catch (e) { | |
console.log(e.message); | |
return false | |
} | |
return img | |
} else { | |
return false | |
} | |
} | |
if (x == "dash") { | |
return o.file_type == x ? o.media.getDASH() : undefined | |
} | |
if (x == "hls") { | |
return o.file_type == x ? o.media.getHLS() : undefined | |
} | |
if (x == "poster") { | |
if (!o.play || v.posterhide === 0) { | |
o.media.Poster(y); | |
return true | |
} else { | |
return false | |
} | |
} | |
if (x == "stretch") { | |
if (exist(y)) { | |
y == '1/0' ? y = 1 - existv(v.covervideo, 0) : ''; | |
v.covervideo = y; | |
o.media.normalscale() | |
} else { | |
return existv(v.covervideo, 0) | |
} | |
} | |
if (x == "scale") { | |
if (exist(y)) { | |
if (y == 0) { | |
o.media.normalscale() | |
} else { | |
o.media.scale(y) | |
} | |
} else { | |
return [o.mediascale.x, o.mediascale.y, o.mediacontainer.style.left, o.mediacontainer.style.top] | |
} | |
} | |
if (x == "title") { | |
if (exist(y)) { | |
exist(y) ? v.title = y : ''; | |
o.actions.Title('title'); | |
return true | |
} else { | |
return v.title | |
} | |
} | |
if (x == "invert") { | |
o.actions.InvertPlaylist() | |
} | |
if (x == "push") { | |
if (y) { | |
!o.playlist_source ? o.playlist_source = [] : ''; | |
if (typeof (y) == 'object') { | |
y = o.playlist_source.concat(y); | |
x = "playlist" | |
} | |
} | |
} | |
if (x == "playlist") { | |
if (y) { | |
if (typeof (y) == 'object') { | |
try { | |
o.actions.UpdatePlaylist(y); | |
return true | |
} catch (e) { | |
return false | |
} | |
} else { | |
if (y.indexOf(".txt") == y.length - 4 || y.indexOf(".txt?") > 0) { | |
var xhr = XHR(y); | |
xhr.onload = function () { | |
if (this.readyState == 4 && this.status == 200) { | |
try { | |
apiProcessor('playlist', JSON.parse(this.responseText)) | |
} catch (e) { } | |
} | |
}; | |
xhr.send(); | |
return true | |
} else { | |
if (y == '') { | |
o.actions.UpdatePlaylist([]) | |
} | |
} | |
} | |
} | |
} | |
if (x == "next") { | |
o.controls ? o.controls.PlaylistNext() : '' | |
} | |
if (x == "prev") { | |
o.controls ? o.controls.PlaylistPrev() : '' | |
} | |
if (x == "cut") { | |
o.controls ? o.controls.Cut(y) : '' | |
} | |
if (x == "cut?") { | |
return o.cutted ? [o.cut1, o.cut2] : 0 | |
} | |
if (x == "flip") { | |
o.media ? o.media.flip() : '' | |
} | |
if (x == "find") { | |
if (exist(y) && exist(o.playlist_dic)) { | |
!o.play ? v.autoplay = 0 : ''; | |
for (var j in o.playlist_dic) { | |
if (o.playlist_dic.hasOwnProperty(j)) { | |
if (o.playlist_dic[j].pjs_id == y) { | |
y = j | |
} | |
} | |
} | |
if (exist(o.playlist_dic[y])) { | |
o.controls.PlaylistOpenId(y); | |
return true | |
} else { | |
return false | |
} | |
} | |
} | |
if (x == "playlist_folders") { | |
var tmp = []; | |
if (exist(o.playlist_dic)) { | |
for (var j in o.playlist_dic) { | |
if (o.playlist_dic[j].folder && o.playlist_dic[j].pjs_parent_i == -1) { | |
tmp.push({ | |
title: o.playlist_dic[j].title, | |
id: o.playlist_dic[j].id | |
}) | |
} | |
} | |
} | |
return tmp | |
} | |
if (x == "playlist_id") { | |
if (o.plid) { | |
return o.playlist_dic[o.plid].pjs_id ? o.playlist_dic[o.plid].pjs_id : o.plid | |
} | |
} | |
if (x == "playlist_length") { | |
if (o.playlist_dic) { | |
return Object.keys(o.playlist_dic).length | |
} else { | |
return -1 | |
} | |
} | |
if (x == "playlist_title") { | |
if (exist(o.playlist_title)) { | |
return o.playlist_title | |
} | |
} | |
if (x == "showplaylist") { | |
o.controls.PlaylistShow(y) | |
} | |
if (x == "showvlt") { | |
o.media.VstLdTxt() | |
} | |
if (x == "toolbar") { | |
o.controls.ShowForce() | |
} | |
if (x == "vastnow") { | |
if (o.vast) { | |
return true | |
} else { | |
return false | |
} | |
} | |
if (x == "vastinfo") { | |
if (o.vast) { | |
return VastInfo() | |
} else { | |
return false | |
} | |
} | |
if (x == "vastpause") { | |
if (o.vast) { | |
return o.vast.pause() | |
} else { | |
return false | |
} | |
} | |
if (x == "vastresume") { | |
if (o.vast) { | |
return o.vast.resume() | |
} else { | |
return false | |
} | |
} | |
if (x == "vaststart") { | |
if (o.vast) { | |
o.vast.startAd() | |
} else { | |
return false | |
} | |
} | |
if (x == "vastmute") { | |
if (o.vast) { | |
o.vast.mute() | |
} else { | |
return false | |
} | |
} | |
if (x == "captions") { | |
v.captions = Switcher(v.captions, y, but); | |
o.media.captions() | |
} | |
if (x == "loop") { | |
if (exist(but)) { | |
v.loop = Switcher(v.loop, y, but) | |
} else { | |
if (exist(y)) { | |
y == '0/1' ? y = 1 - v.loop : ''; | |
v.loop = y | |
} else { | |
return v.loop | |
} | |
} | |
} | |
if (x == "shuffle") { | |
if (exist(but)) { | |
v.shuffle = Switcher(v.shuffle, y, but) | |
} else { | |
if (exist(y)) { | |
v.shuffle = y | |
} else { | |
return v.shuffle | |
} | |
} | |
} | |
if (x == "autonext" || x == "playlistloop") { | |
var z = "autoplaylist"; | |
x == "playlistloop" ? z = "playlistrewind" : ""; | |
if (exist(but)) { | |
v.playlist[z] = Switcher(v.playlist[z], y, but) | |
} else { | |
if (exist(y)) { | |
y == '0/1' ? y = 1 - v.playlist[z] : ''; | |
v.playlist[z] = y | |
} | |
} | |
return v.playlist[z] | |
} | |
if (x == "hd") { | |
if (o.files_quality.length == 2) { | |
v.hd = o.files_quality[o.current_quality]; | |
v.hd = Switcher(v.hd, y, but); | |
if (o.files_quality[0] == v.hd) { | |
o.actions.SetQuality(0) | |
} else { | |
o.actions.SetQuality(1) | |
} | |
} | |
} | |
if (x == "v" && y) { | |
if (y.indexOf('file') == 0 || y.indexOf('bk') == 0) { | |
return | |
} | |
return v[y] | |
} | |
if (x.indexOf("update:") == 0) { | |
var xx = x.substr(7); | |
if (typeof (y) == 'object' && typeof (v[xx]) == 'object') { | |
for (var yy in y) { | |
if (y.hasOwnProperty(yy)) { | |
v[xx][yy] = y[yy] | |
} | |
} | |
} else { | |
if (x.indexOf('rc_') == -1) { | |
v[xx] = y | |
} | |
} | |
return true | |
} | |
if (x.indexOf("text:") == 0) { | |
o.controls.customText(x.substr(5), y) | |
} | |
if (v.clrs == 1 && x.indexOf("color") == 0 && y) { | |
pushCSS('pjsdiv, pjsdiv > * { --pjs ' + x + ': ' + CheckColor(y) + ' }') | |
} | |
if (x == "currentfile") { | |
return o.media ? o.media.currentFile() : '' | |
} | |
if (x == "vrsn") { | |
return o.version + ' ' + o.playerid | |
} | |
if (x == "playerid") { | |
return o.playerid | |
} | |
if (x == "hlserror") { | |
return o.hlserror | |
} | |
if (x == "dasherror") { | |
return o.dasherror | |
} | |
if (x == "visibility") { | |
return o.visibility | |
} | |
if (x == "vastids") { | |
return o.vast ? o.vast_adid : undefined | |
} | |
if (x == "destroy") { | |
o.actions.StopMedia(); | |
v.hotkey.on = 0; | |
if (v.stopotherplayers == 1) { | |
for (var i = 0; i < pljssglobal.length; i++) { | |
if (pljssglobal[i]) { | |
if (pljssglobal[i].api("id") == v.id) { | |
pljssglobal[i] = null | |
} | |
} | |
} | |
} | |
for (var w in window) { | |
if (window[w] == o.this) { | |
window[w] = null | |
} | |
} | |
if (pljssglobalid == v.id) { | |
pljssglobalid = '' | |
} | |
o.destroyed = 1; | |
o.container.innerHTML = ''; | |
o.this = null | |
} | |
} else { | |
return false | |
} | |
}; | |
function Switcher(x, y, but) { | |
var z = trim(y) + ''; | |
if (y.indexOf("/") > 0) { | |
var y2 = y.split("/"); | |
if (y2.length == 2) { | |
if (x == trim(y2[0])) { | |
z = trim(y2[1]); | |
if (but) { | |
but.CustomSwitch(1) | |
} | |
} else { | |
z = trim(y2[0]); | |
if (but) { | |
but.CustomSwitch(0) | |
} | |
} | |
} | |
} | |
return z | |
} | |
function XHR(x) { | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', x, true); | |
return xhr | |
} | |
function FindIdPl(y) { | |
var z = y.substr(3); | |
if (o.playlist_dic) { | |
for (var j in o.playlist_dic) { | |
if (o.playlist_dic.hasOwnProperty(j)) { | |
if (o.playlist_dic[j].pjs_id == z) { | |
z = j | |
} | |
} | |
} | |
} | |
return z | |
} | |
function VastInfo() { | |
var x; | |
if (o.vast) { | |
if (o.vast.active()) { | |
x = o.vast | |
} | |
} | |
if (!x && o.vastloader) { | |
x = o.vastloader | |
} | |
if (x) { | |
var y = { | |
is: o.vasttype, | |
system: x.info("adsystem"), | |
version: x.info("version"), | |
vpaid: x.info("isVpaid"), | |
url: o.current_vast_url + (x.info("wrapper") ? x.info("wrapper0") + x.info("wrapper") : ''), | |
type: x.info("filetype"), | |
file: x.info("file"), | |
time: (o.media ? o.media.time() : ''), | |
volume: x.getVolume(), | |
id: o.vast_adid | |
}; | |
if (o.vasttype == "midroll") { | |
y.midroll_time = o.midrollcrtm | |
} | |
return y | |
} | |
} | |
function MediaSess() { | |
if ('mediaSession' in navigator) { | |
navigator.mediaSession.metadata = new MediaMetadata({ | |
title: o.titlestore, | |
artwork: [{ | |
src: (v.poster ? v.poster : ''), | |
sizes: '192x192', | |
type: 'image/jpg' | |
}] | |
}); | |
if (!o.mss) { | |
navigator.mediaSession.setActionHandler('play', function () { | |
apiProcessor("play") | |
}); | |
navigator.mediaSession.setActionHandler('pause', function () { | |
apiProcessor("pause") | |
}); | |
navigator.mediaSession.setActionHandler('seekto', function (e) { | |
apiProcessor("seek", e.seekTime) | |
}); | |
if (o.controls.PlaylistExist()) { | |
navigator.mediaSession.setActionHandler('previoustrack', function () { | |
apiProcessor("prev") | |
}); | |
navigator.mediaSession.setActionHandler('nexttrack', function () { | |
apiProcessor("next") | |
}) | |
} | |
o.mss = true | |
} | |
} | |
} | |
var createElement = function (x) { | |
var y = x; | |
x == 'div' || x == 'div2' ? y = 'pjsdiv' : ''; | |
var z = document.createElement(y); | |
if (x == 'div2') { | |
css(z, { | |
"cursor": "pointer", | |
"display": "block" | |
}) | |
} | |
return z | |
}; | |
var log = function (a, b, c, d, e, f, g) { | |
if (v.log == 1 || v.logout == 1) { | |
var x = a + (b != undefined ? " " + b : "") + (c != undefined ? " " + c : "") + (d != undefined ? " " + d : "") + (e != undefined ? " " + e : "") + (f != undefined ? " " + f : "") + (g != undefined ? " " + g : ""); | |
console.log("Playerjs" + (v.pjsframed == 1 ? "2" : "") + ": " + x); | |
if (v.logout == 1 && exist(document.getElementById("pjslog"))) { | |
document.getElementById("pjslog").innerHTML += x + '<br/>' | |
} | |
} | |
}; | |
var CustomFonts = function () { | |
if (v.fonts == 1 && exist(v.fontnames) && v.fontnames != '') { | |
var x = document.createElement('link'); | |
x.rel = 'stylesheet'; | |
x.href = 'https://fonts.googleapis.com/css?family=' + v.fontnames.replace(/,/ig, "|").replace(/ /ig, "+"); | |
document.head.appendChild(x) | |
} | |
}; | |
var SvgColor = function (div, clr) { | |
var x = ["path", "polygon", "polyline", "rect", "ellipse", "circle"]; | |
for (var y = 0; y < x.length; y++) { | |
var z = div.querySelectorAll("svg " + x[y]); | |
if (z.length > 0) { | |
for (var y2 = 0; y2 < z.length; y2++) { | |
z[y2].style.fill = clr | |
} | |
} | |
} | |
}; | |
var Time = function (time) { | |
time < 0 ? time = 0 : ''; | |
var full_minutes = o.media.duration >= 600 ? true : false; | |
var full_hours = o.media.duration >= 3600 ? true : false; | |
var minutes = Math.floor(time / 60); | |
var seconds = Math.floor(time - minutes * 60); | |
var hours = Math.floor(minutes / 60); | |
var days = Math.floor(hours / 24); | |
minutes = minutes - hours * 60; | |
if (days > 0) { | |
hours = hours - days * 24 | |
} | |
if (v.dvrtime == 1 && o.media.isLive()) { | |
var d = new Date(); | |
return String(new Date(d.getTime() + time * 1000).toLocaleTimeString()) | |
} else { | |
return String((days > 0 ? days + ':' : '') + (hours > 0 || full_hours ? hours + ':' : '') + ((hours > 0 || full_minutes) && minutes < 10 ? '0' : '') + minutes + ':' + (seconds < 10 ? '0' : '') + seconds) | |
} | |
}; | |
var timeFormat = function (x) { | |
var seconds = Math.floor(x); | |
var minutes = Math.floor(seconds / 60); | |
var hours = Math.floor(minutes / 60); | |
minutes = Math.floor(minutes % 60); | |
seconds = Math.floor(seconds % 60); | |
hours > 0 && minutes < 10 ? minutes = "0" + minutes : ""; | |
seconds = seconds >= 0 ? ((seconds >= 10) ? seconds : "0" + seconds) : "00"; | |
var out = (hours > 0 ? hours + ":" : "") + (minutes >= 0 ? minutes : "0") + ":" + seconds; | |
if (v.dvrtime == 1 && o.media.isLive()) { | |
var d = new Date(); | |
return String(new Date(d.getTime() + x * 1000).toLocaleTimeString()) | |
} else { | |
return out | |
} | |
}; | |
var Href = function () { | |
return encodeURIComponent((window.location != window.parent.location) ? document.referrer : document.location.href) | |
}; | |
var NoSpan = function (x) { | |
if (x) { | |
x = x.toString(); | |
var spn = x.indexOf(" <span style='opacity"); | |
if (spn > -1) { | |
x = x.substr(0, spn) | |
} | |
} | |
return x | |
}; | |
var Script = function (x, y, z) { | |
var t; | |
if (!Scripted(x) && y) { | |
t = document.createElement('script'); | |
y == "same" ? y = x : ''; | |
t.src = y.indexOf('//') == -1 ? '//' + y : y; | |
t.async = 1; | |
if (z) { | |
t.name = z | |
} | |
var s = document.getElementsByTagName('script')[0]; | |
s.parentNode.insertBefore(t, s) | |
} | |
return t | |
}; | |
var Scripted = function (y) { | |
var x = false; | |
var scripts = document.getElementsByTagName('script'); | |
for (var i = 0; i < scripts.length; i++) { | |
if (scripts[i].src.indexOf(y) > -1) { | |
x = true | |
} | |
} | |
return x | |
}; | |
var hex2rgb = function (x, y) { | |
if (x) { | |
if (x.indexOf('color') > -1 || x.indexOf('var') > -1) { | |
return CheckColor(x) | |
} else { | |
x = x.replace('#', ''); | |
var r = parseInt(x.length == 3 ? x.slice(0, 1).repeat(2) : x.slice(0, 2), 16); | |
var g = parseInt(x.length == 3 ? x.slice(1, 2).repeat(2) : x.slice(2, 4), 16); | |
var b = parseInt(x.length == 3 ? x.slice(2, 3).repeat(2) : x.slice(4, 6), 16); | |
if (exist(y)) { | |
return 'rgba(' + r + ', ' + g + ', ' + b + ', ' + y + ')' | |
} else { | |
return 'rgb(' + r + ', ' + g + ', ' + b + ')' | |
} | |
} | |
} | |
}; | |
var css = function (e, o) { | |
if (exist(e)) { | |
for (var key in o) { | |
if (o.hasOwnProperty(key)) { | |
if (o[key] != 'NaNpx' && o[key] != undefined) { | |
if (typeof o[key] == 'number' && key != 'opacity' && key != 'zIndex') { | |
o[key] += 'px' | |
} | |
if (key.indexOf("color") > -1 || key.indexOf("Color") > -1) { | |
o[key] = CheckColor(o[key]) | |
} | |
if (key == "transform") { | |
e.style['-ms-' + key] = o[key]; | |
e.style['-moz-' + key] = o[key]; | |
e.style['-webkit-' + key] = o[key]; | |
e.style['-o-' + key] = o[key] | |
} | |
if (key == "fontFamily") { | |
if (o[key].indexOf(" ") > -1) { | |
o[key] = '"' + o[key] + '"' | |
} | |
} | |
if (key == "box-sizing") { | |
e.style.setProperty(key, o[key], 'important') | |
} else { | |
e.style[key] = o[key] | |
} | |
} | |
} | |
} | |
} | |
}; | |
var Bglines = function (x, clr, b1, b2) { | |
clr = CheckColor(clr); | |
var y = existv(b1, 1) * 1; | |
var z = existv(b2, 1) * 1; | |
css(x, { | |
"background": "repeating-linear-gradient(-45deg," + clr + "," + clr + " " + y + "px,rgba(0,0,0,0)," + y + "px,rgba(0,0,0,0) " + (y + z) + "px)" | |
}) | |
}; | |
var CheckColor = function (c) { | |
if (c) { | |
c.indexOf("color") == 0 ? c = 'var(--pjs' + c + ')' : ''; | |
return c.substr(0, 1) != '#' && c.indexOf("var") == -1 && c.indexOf("rgb") == -1 ? c = "#" + c : c | |
} | |
}; | |
var controlCSS = function (x, color, y) { | |
!color ? color = '#fff' : ''; | |
color = CheckColor(color); | |
var r = random(100000, 1000000); | |
x = x.replace(/\(rand\)/g, r); | |
x = x.replace(/\(color\)/g, color); | |
x = x.replace(/\(scl\)/g, 1 + (v.control_buffer.scale - 1) / 2); | |
var _html = x.substr(0, x.indexOf('|||')); | |
var _css = x.substr(x.indexOf('|||') + 3); | |
var _css2 = ''; | |
if (o.system.webkit) { | |
_css2 = _css.replace(/animation:/g, "-webkit-animation:"); | |
_css2 = _css2.replace(/animation-/g, "-webkit-animation-"); | |
_css2 = _css2.replace(/@keyframes/g, "@-webkit-keyframes"); | |
_css2 = _css2.replace(/transform/g, "-webkit-transform") | |
} | |
y ? y.innerHTML = _html : ''; | |
pushCSS(_css2 + _css) | |
}; | |
var indOf = function (x, y) { | |
var z; | |
if (x) { | |
for (var i = 0; i < x.length; i++) { | |
if (x[i]) { | |
if (String(x[i]).indexOf(y) > -1) { | |
z = true | |
} | |
} | |
} | |
} | |
return z | |
}; | |
var pushCSS = function (x) { | |
if (o.css) { | |
if (o.css.styleSheet) { | |
o.css.styleSheet.cssText = x | |
} else { | |
o.css.appendChild(document.createTextNode(x)) | |
} | |
} | |
}; | |
var Pos0 = function (x) { | |
css(x, { | |
"position": "absolute", | |
"top": 0, | |
"left": 0, | |
"width": "100%", | |
"height": "100%" | |
}) | |
}; | |
var Pnt0 = function (x) { | |
css(x, { | |
"pointerEvents": "none" | |
}) | |
}; | |
var xhr = function (y, z) { | |
var x = new XMLHttpRequest(); | |
x.open('GET', y, true); | |
x.onload = z; | |
x.send() | |
}; | |
var FindPjsDiv = function (x) { | |
if (x) { | |
for (var i = 0; i < 5; i++) { | |
if (x.nodeName == "PJSDIV") { | |
break | |
} else { | |
if (x.parentElement) { | |
x = x.parentElement | |
} | |
} | |
} | |
} | |
return x | |
}; | |
var gif = function (z) { | |
var gif = document.createElement("img"); | |
if (o.gifed.indexOf(z) > -1) { | |
o.gifed.push(z); | |
if (z.indexOf("?") > 0) { | |
z = z + '&' + Math.random() | |
} else { | |
z = z + '?' + Math.random() | |
} | |
} else { | |
o.gifed.push(z) | |
} | |
gif.setAttribute('src', z); | |
gif.setAttribute('height', '1px'); | |
gif.setAttribute('width', '1px') | |
}; | |
var attr = function (e, o) { | |
for (var key in o) { | |
if (o.hasOwnProperty(key)) { | |
e.setAttribute(key, o[key]) | |
} | |
} | |
}; | |
var destroy = function (e) { | |
if (e) { | |
try { | |
e.parentNode.removeChild(e); | |
e = null | |
} catch (e) { } | |
} | |
}; | |
var random = function (min, max) { | |
return Math.floor(arguments.length > 1 ? (max - min + 1) * Math.random() + min : (min + 1) * Math.random()) | |
}; | |
var randomstr = function () { | |
return Math.random().toString(36).substring(2, 12) | |
}; | |
var removebykey = function (x, y) { | |
x = Object.keys(x).reduce(function (obj, key) { | |
if (key != y) { | |
obj[key] = x[key] | |
} | |
return obj | |
}, {}); | |
return x | |
}; | |
var trim = function (x) { | |
if (typeof x == "string") { | |
return x.replace(/^\s+|\s+$/gm, '') | |
} else { | |
return x | |
} | |
}; | |
var cut = function (x, y, z) { | |
var r = false; | |
if (x) { | |
if (x.indexOf(y) > -1) { | |
var r = x.substr(x.indexOf(y) + y.length); | |
if (z) { | |
if (r.indexOf(z) > -1) { | |
r = r.substr(0, r.indexOf(z)) | |
} | |
} | |
} | |
} | |
return r | |
}; | |
var encode = function (x, n) { | |
if (n == 0) { | |
return "#0" + salt.e(x) | |
} | |
if (n == -1) { | |
return salt.e(x) | |
} | |
if (n == 1) { | |
return "#1" + pepper(salt.e(x), 1) | |
} | |
}; | |
var str2obj = function (x) { | |
if (v[x] != "") { | |
if (typeof v[x] != "string") { | |
o[x + 'o'] = v[x] | |
} else { | |
if (v[x].indexOf("[{") == 0) { | |
try { | |
v[x] = v[x].replace(/pjs'qt/ig, '"'); | |
o[x + 'o'] = eval(v[x]) | |
} catch (e) { } | |
} | |
} | |
} | |
}; | |
var dechar = function (x) { | |
return String.fromCharCode(x) | |
}; | |
var decode = function (x) { | |
if (x.substr(0, 2) == "#1") { | |
return salt.d(pepper(x.substr(2), -1)) | |
} else if (x.substr(0, 2) == "#0") { | |
return salt.d(x.substr(2)) | |
} else { | |
return x | |
} | |
}; | |
var checkBase64 = function (x) { | |
if (x) { | |
if (x.indexOf('http') == -1 && x.indexOf('.') == -1 && x.length > 100 && x.indexOf('data:') == -1) { | |
x = 'data:image/png;base64, ' + x | |
} | |
} | |
return x | |
}; | |
var hide = function (x) { | |
x ? x.style.visibility = "hidden" : '' | |
}; | |
var show = function (x) { | |
x ? x.style.visibility = "visible" : '' | |
}; | |
var hide2 = function (x) { | |
x ? x.style.display = "none" : '' | |
}; | |
var show2 = function (x) { | |
x ? x.style.display = "block" : '' | |
}; | |
var isVisible = function (x) { | |
return x ? x.style.visibility != "hidden" && x.style.display != "none" : false | |
}; | |
var int = function (s) { | |
if (typeof s == "string") { | |
if (s.indexOf("px") > 0) { | |
s = s.substr(0, s.indexOf("px")) | |
} | |
} | |
return parseInt(s) | |
}; | |
var hidden = function (x) { | |
return x.style.display == "none" | |
}; | |
var MarginPadding = function (o, x, y) { | |
o[x + 'top'] = 0; | |
o[x + 'right'] = 0; | |
o[x + 'bottom'] = 0; | |
o[x + 'left'] = 0; | |
if (exist(o[y])) { | |
var z = o[y].split(" "); | |
if (z.length == 4) { | |
o[x + 'top'] = z[0] ? parseFloat(z[0]) : 0; | |
o[x + 'right'] = z[1] ? parseFloat(z[1]) : 0; | |
o[x + 'bottom'] = z[2] ? parseFloat(z[2]) : 0; | |
o[x + 'left'] = z[3] ? parseFloat(z[3]) : 0 | |
} | |
} | |
return o | |
}; | |
var MarPad = function (x) { | |
if (x) { | |
x = x.replace(/ /ig, 'px ') | |
} | |
return x + 'px' | |
}; | |
var StringVar = function (x, y) { | |
return v[x] && v[x] != '' ? v[x] : y | |
}; | |
var abc = String.fromCharCode(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122); | |
var salt = { | |
_keyStr: abc + "0123456789+/=", | |
e: function (e) { | |
var t = ""; | |
var n, r, i, s, o, u, a; | |
var f = 0; | |
e = salt._ue(e); | |
while (f < e.length) { | |
n = e.charCodeAt(f++); | |
r = e.charCodeAt(f++); | |
i = e.charCodeAt(f++); | |
s = n >> 2; | |
o = (n & 3) << 4 | r >> 4; | |
u = (r & 15) << 2 | i >> 6; | |
a = i & 63; | |
if (isNaN(r)) { | |
u = a = 64 | |
} else if (isNaN(i)) { | |
a = 64 | |
} | |
t = t + this._keyStr.charAt(s) + this._keyStr.charAt(o) + this._keyStr.charAt(u) + this._keyStr.charAt(a) | |
} | |
return t | |
}, | |
d: function (e) { | |
var t = ""; | |
var n, r, i; | |
var s, o, u, a; | |
var f = 0; | |
e = e.replace(/[^A-Za-z0-9\+\/\=]/g, ""); | |
while (f < e.length) { | |
s = this._keyStr.indexOf(e.charAt(f++)); | |
o = this._keyStr.indexOf(e.charAt(f++)); | |
u = this._keyStr.indexOf(e.charAt(f++)); | |
a = this._keyStr.indexOf(e.charAt(f++)); | |
n = s << 2 | o >> 4; | |
r = (o & 15) << 4 | u >> 2; | |
i = (u & 3) << 6 | a; | |
t = t + dechar(n); | |
if (u != 64) { | |
t = t + dechar(r) | |
} | |
if (a != 64) { | |
t = t + dechar(i) | |
} | |
} | |
t = salt._ud(t); | |
return t | |
}, | |
_ue: function (e) { | |
e = e.replace(/\r\n/g, "\n"); | |
var t = ""; | |
for (var n = 0; n < e.length; n++) { | |
var r = e.charCodeAt(n); | |
if (r < 128) { | |
t += dechar(r) | |
} else if (r > 127 && r < 2048) { | |
t += dechar(r >> 6 | 192); | |
t += dechar(r & 63 | 128) | |
} else { | |
t += dechar(r >> 12 | 224); | |
t += dechar(r >> 6 & 63 | 128); | |
t += dechar(r & 63 | 128) | |
} | |
} | |
return t | |
}, | |
_ud: function (e) { | |
var t = ""; | |
var n = 0; | |
var r = 0; | |
var c1 = 0; | |
var c2 = 0; | |
while (n < e.length) { | |
r = e.charCodeAt(n); | |
if (r < 128) { | |
t += dechar(r); | |
n++ | |
} else if (r > 191 && r < 224) { | |
c2 = e.charCodeAt(n + 1); | |
t += dechar((r & 31) << 6 | c2 & 63); | |
n += 2 | |
} else { | |
c2 = e.charCodeAt(n + 1); | |
c3 = e.charCodeAt(n + 2); | |
t += dechar((r & 15) << 12 | (c2 & 63) << 6 | c3 & 63); | |
n += 3 | |
} | |
} | |
return t | |
} | |
}; | |
var pepper = function (s, n) { | |
s = s.replace(/\+/g, "#"); | |
s = s.replace(/#/g, "+"); | |
var a = sugar(o.y) * n; | |
if (n < 0) a += abc.length / 2; | |
var r = abc.substr(a * 2) + abc.substr(0, a * 2); | |
return s.replace(/[A-Za-z]/g, function (c) { | |
return r.charAt(abc.indexOf(c)) | |
}) | |
}; | |
var sugar = function (x) { | |
x = x.split(dechar(61)); | |
var result = ''; | |
var c1 = dechar(120); | |
var chr; | |
for (var i in x) { | |
if (x.hasOwnProperty(i)) { | |
var encoded = ''; | |
for (var j in x[i]) { | |
if (x[i].hasOwnProperty(j)) { | |
encoded += (x[i][j] == c1) ? dechar(49) : dechar(48) | |
} | |
} | |
chr = parseInt(encoded, 2); | |
result += dechar(chr.toString(10)) | |
} | |
} | |
return result.substr(0, result.length - 1) | |
}; | |
var exist = function (x) { | |
return x != null && typeof (x) != 'undefined' && x != 'undefined' | |
}; | |
var existv = function (x, y) { | |
return exist(x) ? x : y | |
}; | |
var exist2 = function (x) { | |
return exist(x) && x != -1 && x != '' | |
}; | |
var copyObject = function (x) { | |
if (typeof x == "object") { | |
x = JSON.parse(JSON.stringify(x)) | |
} | |
return x | |
}; | |
var findLeft = function (el) { | |
var x = el.getBoundingClientRect().left + (window.scrollX ? window.scrollX : window.pageXOffset); | |
return x | |
}; | |
var checkFont = function (x) { | |
v.globalfont == 1 && exist2(v.globalfontname) ? x = v.globalfontname : ''; | |
return x | |
}; | |
var findTop = function (el) { | |
const rect = el.getBoundingClientRect(); | |
return rect.top + window.scrollY | |
}; | |
var redirect = function (x, y) { | |
if (x != '') { | |
if (v.redirectblank == 1) { | |
window.open(x) | |
} else { | |
if (v.redirectparent == 1) { | |
window.parent.location.href = x | |
} else { | |
window.location.href = x | |
} | |
} | |
x = '' | |
} | |
}; | |
var reRightMenu = function () { | |
if (v.rightmenu == 1) { | |
o.rightmenu ? o.frame.removeChild(o.rightmenu) : ''; | |
o.rightmenu = null | |
} | |
}; | |
var Actions = function () { | |
var _fullscreen_end = false; | |
if (o.system.tv) { | |
log("tv") | |
} | |
this.Title = function (x) { | |
o.controls ? o.controls.title(x) : '' | |
}; | |
this.File = function (x) { | |
if (x) { | |
if (typeof (x) == 'string') { | |
x = x.replace(/(\r\n|\n|\r)/gm, ""); | |
if (x.indexOf("[{") == 0) { | |
try { | |
x = x.replace(/pjs'qt/ig, '"'); | |
x = JSON.parse(x) | |
} catch (e) { | |
x = "incorrect JSON" | |
} | |
} | |
} | |
if (typeof (x) == 'object') { | |
o.playlist_dic = []; | |
o.playlist_source = copyObject(x); | |
o.playlist = IndexPlaylist(x); | |
if (o.playlist.length > 0) { | |
if (v.playlist.openlast == 1 && !v.plstart) { | |
var keys = Object.keys(o.playlist_dic); | |
var last = keys.slice(-1)[0]; | |
last ? v.plstart = last : '' | |
} | |
var y = FindFileInPlaylist(); | |
if (y) { | |
x = y.file; | |
o.titlestore = y.title; | |
o.controls ? o.controls.titlepl(y.title) : ''; | |
if (exist(y.poster)) { | |
if (o.media) { | |
o.media.Poster(y.poster) | |
} else { | |
v.poster = y.poster | |
} | |
} | |
if (exist(y.sub)) { | |
y.subtitle = y.sub | |
} | |
if (exist(y.start)) { | |
v.start = o.seekto = y.start | |
} | |
SettingsTimers("offset"); | |
if (exist(y.id)) { | |
o.plid = y.id | |
} | |
var sx = ["subtitle", "vars", "embed", "url", "url2", "url3", "heartbeat", "thumbnails", "label", "download", "points", "remove", "end", "delete", "title2", "skip", "customtext", "volume"]; | |
if (exist(v.control_title)) { | |
if (v.control_title.showfrom1file == 1 && v.control_title.showtitleplaylist == 1) { | |
sx.push("title"); | |
sx.push("t1"); | |
sx.push("t2"); | |
sx.push("t3"); | |
sx.push("t4"); | |
sx.push("t5") | |
} | |
} | |
for (var i = 0; i < sx.length; i++) { | |
if (exist(y[sx[i]])) { | |
v[sx[i]] = y[sx[i]] | |
} | |
} | |
Ctxt(y); | |
if (sx.indexOf('title') > 0) { | |
if (v.control_title.templated == 1) { | |
o.title_template = v.control_title.template; | |
o.actions.TitleTemplate(y) | |
} | |
o.actions.Title('title') | |
} | |
if (exist(y.volume)) { | |
setTimeout(function () { | |
o.actions.Volume(y.volume) | |
}, 200) | |
} | |
if (o.controls) { | |
o.controls.UpdatePlaylist(o.playlist); | |
if (v.customtext) { | |
o.controls.customTextPl() | |
} | |
} | |
if (o.droplist) { | |
o.droplist.Update() | |
} | |
} else { } | |
} | |
} | |
if (typeof (x) == 'string') { | |
x = fjs(x); | |
if (x.indexOf("#" + v.enc2) == 0) { | |
x = o[o.fd[0]](x) | |
} | |
if (x) { | |
if (x.indexOf("#" + v.enc3) == 0 && x.indexOf(v.file3_separator) > 0) { | |
x = o[o.fd[1]](x) | |
} | |
if (x.indexOf("#0") == 0) { | |
x = fd0(x) | |
} | |
x = fjs(x) | |
} | |
if (v.fplace == 1) { | |
x = fplace(x) | |
} | |
if (x == '') { | |
log("empty file"); | |
o.media_error = true; | |
js("error", "empty") | |
} | |
o.files_quality = []; | |
o.files_quality_ag = []; | |
o.files_audiotrack = []; | |
o.current_file = 0; | |
o.current_quality = 0; | |
o.current_audiotrack = 0; | |
v.file_separator == '' ? v.file_separator = ',' : ''; | |
if ((x.indexOf(v.qbr1) > -1 && x.indexOf(v.qbr2) > -1) || exist(v.qualities)) { | |
o.files = x.split(v.file_separator) | |
} else { | |
o.files = [x] | |
} | |
o.audiotracks = []; | |
if (exist(v.qualities)) { | |
var qualities = v.qualities.split(v.file_separator) | |
} | |
if (o.files.length > 0) { | |
var q = -1; | |
for (var i = 0; i < o.files.length; i++) { | |
o.files[i] = trim(o.files[i]); | |
if (o.files[i] != '') { | |
if (o.files[i].indexOf(v.qbr1) == 0 && o.files[i].indexOf(v.qbr2) > 1) { | |
o.files_quality[i] = o.files[i].substr(o.files[i].indexOf(v.qbr1) + v.qbr1.length, o.files[i].indexOf(v.qbr2) - v.qbr2.length); | |
o.files[i] = o.files[i].substr(o.files[i].indexOf(v.qbr2) + v.qbr2.length) | |
} else { | |
if (exist(v.qualities)) { | |
o.files_quality[i] = exist(qualities[i]) ? qualities[i] : '' | |
} else { | |
o.files_quality[i] = i + 1 | |
} | |
} | |
var is = 0; | |
if (exist(v.default_quality) && q == -1) { | |
if (String(v.default_quality).indexOf("num:") == 0) { | |
if (v.default_quality.substr(4) * 1 == i) { | |
is = 1 | |
} | |
} | |
if (v.default_quality == o.files_quality[i]) { | |
is = 1 | |
} | |
if (v.default_quality == "max" && i == o.files.length - 1) { | |
is = 1 | |
} | |
} | |
if (exist(o.default_quality)) { | |
if (o.default_quality == o.files_quality[i]) { | |
is = 1; | |
q = i | |
} | |
} | |
if (is == 1) { | |
o.current_file = i; | |
o.current_quality = i | |
} | |
o.files[i] = Prefile(o.files[i]) | |
} | |
} | |
} else { | |
o.files[0] = Prefile(o.files[0]) | |
} | |
return o.files[o.current_file] | |
} | |
} else { | |
return x | |
} | |
}; | |
function Prefile(x) { | |
if (exist(v.prefile) && x.indexOf("//") == -1) { | |
x = v.prefile + x | |
} | |
return x | |
}; | |
this.InvertPlaylist = function () { | |
if (o.playlist) { | |
var x = o.playlist.reverse(); | |
for (var i = 0; i < x.length; i++) { | |
x[i].pjs_i = i | |
} | |
o.playlist = x; | |
o.controls.UpdatePlaylist(o.playlist) | |
} | |
}; | |
function Ctxt(y) { | |
var utx; | |
for (var i = 1; i < 6; i++) { | |
var t = "text" + i; | |
if (exist(y[t])) { | |
v[t] = y[t]; | |
utx = true | |
} | |
} | |
if (utx && o.controls) { | |
o.controls.upTexts() | |
} | |
} | |
this.Ctxt = function (x) { | |
Ctxt(x) | |
}; | |
this.UpdatePlaylist = function (x) { | |
if (typeof (x) == 'object') { | |
o.playlist_dic = []; | |
o.playlist_source = copyObject(x); | |
o.playlist = IndexPlaylist(x); | |
if (o.controls) { | |
o.controls.UpdatePlaylist(o.playlist) | |
} | |
} | |
}; | |
this.NewFile = function (x, y, z, no) { | |
!exist(y) ? o.autoplay = true : ''; | |
!exist(z) ? v.preload = 0 : ''; | |
v.duration = undefined; | |
v.end = undefined; | |
v.delete = undefined; | |
o.media_error != 2 ? o.media_error = false : ''; | |
o.metadata = false; | |
o.pipwebkit = false; | |
o.reloadTimer = 0; | |
o.gatracked = []; | |
o.checknative = false; | |
o.gained = false; | |
o.dvr = false; | |
o.bitrate = undefined; | |
o.quartile = [false, false, false]; | |
o.sess = randomstr(); | |
o.sesstime = 0; | |
o.or0 = 0; | |
o.pld ? o.pld = [] : ''; | |
o.file_type != 'pjs' && o.sbt ? o.sbt.remove() : ''; | |
o.trcka ? o.trcka = [] : ''; | |
if (o.err404v) { | |
o.err404v.remove() | |
} | |
if (o.media.status() == "playing") { | |
this.Stop() | |
} | |
if (o.cut && o.cutted) { | |
o.controls.Cut() | |
} | |
if (exist(o.share)) { | |
o.share.Remove() | |
} | |
if (exist(o.reloadto)) { | |
clearTimeout(o.reloadto) | |
} | |
js("new"); | |
if (v.vast == 1 && no != 1) { | |
o.actions.VastRecover(); | |
o.actions.VastRecover('midroll') | |
} | |
x = this.File(x); | |
if (y == 1) { | |
o.file_type = '' | |
} | |
o.media.File(x); | |
if ((o.system.mobile || o.system.safari) && !exist(y)) { | |
o.actions.Play() | |
} | |
if (exist(o.custom_aspect)) { | |
o.mediascale = { | |
x: 1, | |
y: 1, | |
x0: 1, | |
y0: 1 | |
}; | |
o.media.normalscale() | |
} | |
gaTracker("play", "Play"); | |
o.media.NativeControls(); | |
o.controls.QualityChangedNoHand(); | |
o.controls.AudioTrackChangedNoHand(); | |
o.controls.refresh(); | |
o.mediatags ? o.mediatags.read() : '' | |
}; | |
this.TitleTemplate = function (x) { | |
var y = false; | |
if (x && o.title_template) { | |
v.title = o.title_template; | |
for (var i = 1; i < 6; i++) { | |
if (exist(x['t' + i])) { | |
v.title = v.title.replace("{" + i + "}", x['t' + i]); | |
y = true | |
} | |
} | |
} | |
return y | |
}; | |
this.MediaReady = function () { | |
if (v.autoplay == 1 && !v.autoplayed || o.autoplay) { | |
if (v.observer == 1) { | |
setTimeout(function () { | |
o.actions.Play() | |
}, 500) | |
} else { | |
this.Play() | |
} | |
v.autoplayed = 1; | |
o.autoplay = false | |
} | |
Thumbs() | |
}; | |
this.Thumbs = function () { | |
Thumbs() | |
}; | |
function Thumbs() { | |
if (v.thumbs == 1) { | |
if (typeof PluginThumbs !== "undefined") { | |
o.th = new PluginThumbs() | |
} | |
} | |
} | |
this.NativeControls = function () { | |
var x = false; | |
if (o.system.mobile) { | |
x = true; | |
if (v.nativenotiphone == 1 && o.system.iphone) { | |
x = false | |
} | |
if (v.nativenotipad == 1 && o.system.ipad) { | |
x = false | |
} | |
if (v.nativenotios == 1 && o.system.ios) { | |
x = false | |
} | |
if (v.nativenotandroid == 1 && o.system.android) { | |
x = false | |
} | |
} | |
if (v.nativeontv == 1 && o.system.tv) { | |
x = true | |
} | |
return x | |
}; | |
this.Metadata = function () { | |
o.media.Volume(v.volume); | |
if (o.muted) { | |
o.media.Mute() | |
} | |
o.metadata = true; | |
o.controls ? o.controls.refresh() : ''; | |
if (!o.play && !o.start) { | |
v.effects == 1 ? o.effects.api("pause") : '' | |
} | |
if (o.casting && o.tagvideo) { | |
o.chromecast.Exit(); | |
o.chromecast.Go() | |
} | |
if (v.vast == 1) { | |
if (v.nomidroll != 1 && v.midrolls == 1) { | |
!exist(o.vast) ? MidrollOverlay("midroll", "metadata") : '' | |
} | |
} | |
}; | |
this.onPlayTag = function () { | |
!o.onplay ? onPlay(true) : '' | |
}; | |
function onPlay(x) { | |
o.onplay = true; | |
if (o.controls) { | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings() | |
} | |
} | |
if (o.droplist) { | |
o.droplist.Close() | |
} !x ? o.media.Play() : ''; | |
if (!o.checknative) { | |
setTimeout(function () { | |
o.media.NativeControls() | |
}, 500) | |
} !o.play ? o.controls.Play() : ''; | |
v.effects == 1 ? o.effects.api("play") : ''; | |
v.vast == 1 ? o.actions.VastRecover('pauseroll') : ''; | |
if (o.system.mobile) { | |
o.controls.HideInterval() | |
} | |
if (exist(o.share)) { | |
o.share.isOpen() ? o.share.Hide() : '' | |
} | |
if (v.heartbeats == 1 && exist(v.heartbeat) && o.dt) { | |
if (v.heartbeat != '' && !exist(o.heartbeatInterval)) { | |
o.heartbeatInterval = setInterval(Heartbeat, v.heartbeatinterval * 1000); | |
Heartbeat() | |
} | |
} | |
} | |
this.Play = function (noads) { | |
if (!o.play && o.media) { | |
o.actplay = true; | |
o.ended = false; | |
var stop = false; | |
if (o.file_type == "youtube") { | |
if (!o.media.YoutubeReady() && v.autoplay != 1 && v.preload == 1) { | |
stop = true; | |
if (window['YT']) { | |
v.autoplay = 1; | |
o.autoplay = true; | |
o.media.onYoutubeReady() | |
} | |
} | |
} | |
if (v.pass == 1 && v.passontime == 0) { | |
o.actions.Password(); | |
stop = true | |
} | |
if (o.media_error || stop) { | |
if (o.media_error) { | |
Advertising("preroll") ? datetime(2) : '' | |
} | |
} else { | |
o.newfile = false; | |
StopOtherPlayer(!o.start); | |
o.alert.close(); | |
if (!o.start) { | |
js("start"); | |
o.start = true; | |
if (v.toolbar.hideuntilstarted == 1) { | |
setTimeout(function () { | |
o.controls.resizetext() | |
}, 100) | |
} | |
if (v.toolbar.hideleavetimeout > 0 && v.autoplay == 1) { | |
o.starttimeout = true; | |
setTimeout(StartTimeout, v.toolbar.hideleavetimeout * 1000) | |
} | |
if (v.water == 1 && v.wid) { | |
PluginWater() | |
} | |
for (var i = 0; i < o.vsts.length; i++) { | |
if (v['vast_nofirst' + o.vsts[i]] == 1) { | |
localStorage.setItem("pljsfirst" + o.vsts[i], Date.now()) | |
} | |
} | |
if (v.pjsstat == 1 && v.pjsstatid) { | |
PluginStat("start") | |
} | |
js("new"); | |
o.ctxtnk ? o.controls.upText(o.ctxtnk) : ''; | |
o.controls.startcss(); | |
o.controls.refresh(); | |
gaTracker("play", "Play"); | |
MediaSess(); | |
o.ab ? gaTracker("adblock", "AdBlock", 1) : '' | |
} else { | |
gaTracker("resume", "Resume") | |
} | |
if (v.fullonplay == 1 && !o.fullscreen) { | |
var dd = new Date(); | |
var tt = dd.getTime(); | |
if (tt - o.clicktime < 300) { | |
if (v.fullonplaymobile != 1 || o.system.mobile) { | |
this.Fullscreen() | |
} | |
} | |
} | |
if (o.subtitle_on) { | |
if (v.subpausehide == 1) { | |
show2(o.subtitle) | |
} | |
} | |
if (o.err404v) { | |
o.err404v.remove() | |
} | |
if (noads != 1 && Advertising("preroll") || Advertising("intro")) { | |
datetime(2) | |
} else { | |
if (v.redirect == 1 && exist(v.redirectonplay) && !exist(options.redirect)) { | |
redirect(v.redirectonplay); | |
stop = true | |
} | |
if (!stop) { | |
log("Play"); | |
o.media.duration() > 0 ? o.controls.Duration(o.media.time(), o.media.duration()) : ''; | |
if (!o.start2) { | |
o.start2 = true; | |
if (v.toolbar.hideleavetimeout > 0 && v.autoplay == 1) { | |
o.starttimeout = true; | |
setTimeout(StartTimeout, v.toolbar.hideleavetimeout * 1000) | |
} | |
} | |
var playroll = false; | |
if (o.media.time() > 1 && v.pauserollonplay == 1 && noads != 1 && !isVastBgLoad() && !exist(o.vast) && !exist(o.vastloader)) { | |
playroll = Advertising("pauseroll") | |
} | |
if (playroll) { | |
isVastBgLoad() ? onPlay(false) : '' | |
} else { | |
onPlay(false) | |
} | |
} | |
} | |
} | |
} else { | |
o.media ? o.media.Play() : '' | |
} | |
}; | |
function StartTimeout() { | |
o.starttimeout = false; | |
o.controls.refresh() | |
} | |
this.Pause = function () { | |
if (o.play) { | |
o.actplay = false; | |
log("Pause"); | |
o.media.Pause(); | |
o.controls.Pause(); | |
js("pause"); | |
v.posteronpause == 1 ? ShowPoster() : ''; | |
v.posterhidepause == 1 ? HidePoster2() : ''; | |
v.effects == 1 ? o.effects.api("pause") : ''; | |
if (o.subtitle_on) { | |
if (v.subpausehide == 1) { | |
hide2(o.subtitle) | |
} | |
} | |
if (!exist(o.vast) && !exist(o.vastloader) && v.pauserollonplay == 0) { | |
Advertising("pauseroll") | |
} | |
o.onplay = false | |
} | |
}; | |
this.Mute = function () { | |
o.media.Mute(); | |
o.controls.Mute(); | |
o.muted = true; | |
js("mute") | |
}; | |
this.Unmute = function () { | |
o.media.Unmute(); | |
o.muted = false; | |
o.controls.Unmute(); | |
o.media.Volume(v.volume); | |
js("unmute") | |
}; | |
this.Volume = function (x, y) { | |
if (o.controls) { | |
x < 0.01 ? x = 0 : ''; | |
x > 1 ? x = 1 : ''; | |
if (x <= 0) { | |
this.Mute(); | |
v.volume = 0; | |
x = 0 | |
} else { | |
if (o.muted) { | |
this.Unmute() | |
} | |
v.volume = x | |
} | |
js("volume", x); | |
o.controls.Volume(x, y); | |
o.media.Volume(x) | |
} | |
}; | |
this.Waiting = function () { | |
o.controls.Waiting() | |
}; | |
this.StopWaiting = function () { | |
o.controls ? o.controls.StopWaiting() : '' | |
}; | |
this.Progress = function () { | |
this.StopWaiting() | |
}; | |
this.Seeked = function () { | |
o.actions.UpdatePlay(); | |
this.StopWaiting() | |
}; | |
this.Duration = function (time, duration) { | |
if (o.continue && !o.start) { | |
var f = o.continue.flag(); | |
if (f.t && f.d) { | |
time = f.t | |
} | |
} | |
o.controls ? o.controls.Duration(time, duration) : '' | |
}; | |
this.LoadedData = function (time, duration) { | |
if (exist(o.seekto) && o.file_type != "youtube" && !o.media.isLive()) { | |
o.actions.Seek(o.seekto, false); | |
o.seekto = undefined | |
} | |
}; | |
this.ScreenClick = function () { | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
var x = false; | |
if (o.controls.SettingsVisible() && v.settings.always != 1) { | |
o.controls.SettingsClose(); | |
x = true | |
} | |
if (o.droplist) { | |
if (o.droplist.Visible()) { | |
o.droplist.Close(); | |
x = true | |
} | |
} | |
if (v.playlist.always == 0) { | |
if (o.controls.PlaylistVisible() && v.playlist.autohide == 1) { | |
o.controls.Playlist(); | |
x = true | |
} | |
} | |
if (v.redirect == 1 && exist(v.redirectonclick) && !exist(options.redirect)) { | |
redirect(v.redirectonclick); | |
x = true | |
} | |
if (o.muted && v.unmuteonclick == 1) { | |
o.actions.Unmute(); | |
v.unmuteonclick = 0; | |
x = true | |
} | |
if (!x) { | |
if (v.hotkey.on == 1 && v.hotkey.icons == 1 && v.hotkey.playiconbut == 1) { | |
PluginHotIcon('play', (o.play ? 0 : 1)) | |
} | |
this.Toggle() | |
} | |
}; | |
this.ControlsBgClick = function () { | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings() | |
} | |
}; | |
this.Toggle = function () { | |
if (o.media.status() == "playing") { | |
v.scrnstp == 1 ? this.StopMedia() : this.Pause() | |
} else { | |
this.Play() | |
} | |
Sub() | |
}; | |
this.Seek = function (sec, hand) { | |
if (sec < o.media.duration()) { | |
if (v.control_line.dontseekforward == 1) { | |
if (sec > o.media.time()) { | |
return | |
} | |
} | |
if (v.delete > 0) { | |
sec < v.delete ? sec = v.delete : '' | |
} | |
o.seeked_time = sec; | |
o.media.Seek(sec); | |
if (hand) { | |
o.controls.Seek(sec, o.media.duration()) | |
} | |
o.seeking = true; | |
o.seeking_time = o.media.time(); | |
Sub(o.seeking_time) | |
} | |
}; | |
this.Open = function (url, target, endfull) { | |
if (o.media.status() == "playing" && o.mode != 'audio') { | |
Pause(); | |
if (o.fullscreen && endfull) { | |
o.actions.Normalscreen() | |
} | |
} | |
window.open(url, target) | |
}; | |
this.Download = function () { | |
if (v.vast == 1 && !o.start) { | |
if (Advertising("preroll")) { | |
o.vstdwn = true; | |
return | |
} | |
} | |
var x = o.media.currentFile(); | |
if (exist(v.download)) { | |
x = v.download | |
} | |
if (x != '') { | |
js("download"); | |
var win = window.open(x, (v.downself == 1 ? '_self' : '_blank')); | |
win.focus() | |
} | |
}; | |
this.UpdatePlay = function (x) { | |
var time = o.media.time(); | |
var duration = o.media.duration(); | |
o.controls.Played(time, duration, x) | |
}; | |
this.Playing = function () { | |
var time = o.media.time(); | |
var duration = o.media.duration(); | |
var delta = duration > 0 ? time / duration : 0; | |
if (!o.seeking) { | |
o.controls ? o.controls.Played((o.seekto > 0 ? o.seekto : time), duration) : '' | |
} else { | |
time != o.seeking_time && o.seeking_time != -9 ? o.seeking = false : '' | |
} | |
if ((v.ga == 1 || v.yamtr == 1) && duration > 0) { | |
gaTrackPlay("play25", "Play 25%", delta, 0.25); | |
gaTrackPlay("play50", "Play 50%", delta, 0.50); | |
gaTrackPlay("play75", "Play 75%", delta, 0.75) | |
} | |
for (var i = 0; i < 3; i++) { | |
if (!o.quartile[i]) { | |
if (delta >= i * 0.25 + 0.25) { | |
Quartile(i) | |
} | |
} | |
} | |
v.reloadlog == 1 ? log(1, time, duration) : ''; | |
if (v.reload == 1 || v.fileorto > 0) { | |
if (o.play) { | |
var z = false; | |
var rld = false; | |
if (v.reloadlive == 1 && v.reload == 1) { | |
if (!o.media.isLive()) { | |
z = true | |
} | |
} | |
if (time > 0) { | |
if (time == o.time && !z) { | |
rld = true | |
} else { | |
o.reloadTimer = 0 | |
} | |
o.time = time | |
} else { | |
if (v.reloadstart == 1) { | |
var ld = o.media.loaded(); | |
v.reloadlog == 1 ? log(2, ld, o.timeld) : ''; | |
if (!z) { | |
if (ld == o.timeld) { | |
rld = true | |
} else { | |
o.reloadTimer = 0 | |
} | |
} | |
o.timeld = ld | |
} | |
} | |
if (rld) { | |
o.reloadTimer++; | |
if (v.reload == 1) { | |
v.reloadlog == 1 ? log(3, o.reloadTimer) : ''; | |
if (o.reloadTimer == v.reloadtimeout * (1000 / o.timerTime)) { | |
o.actions.Reload() | |
} | |
} else if (v.fileorto > 0 && o.media.urlsl() > 1) { | |
if (o.reloadTimer == v.fileorto * (1000 / o.timerTime)) { | |
o.media.onError('OR timeout') | |
} | |
} | |
} | |
} | |
} | |
if (v.apiprm) { | |
if (v.apiprm.pld == 1 && duration > 0) { | |
!o.pld ? o.pld = [] : ''; | |
o.pld[Math.round(time)] = 1 | |
} | |
} | |
if (v.vast == 1) { | |
if (v.nomidroll != 1 && v.midrolls == 1) { | |
!exist(o.vast) ? MidrollOverlay("midroll", time, duration) : '' | |
} | |
if (v.nooverlay != 1 && v.overlays == 1) { | |
!exist(o.vast) ? MidrollOverlay("overlay", time, duration) : '' | |
} | |
} | |
if (v.intros == 1 && v.introstart > 0) { | |
if (time >= v.introstart) { | |
if (!exist(o.vast)) { | |
if (Advertising("intro")) { | |
o.media.Pause(); | |
o.controls.Pause() | |
} | |
v.introstart = 0 | |
} | |
} | |
} | |
SettingsTimers("play"); | |
if (v.pass == 1 && v.passontime > -1) { | |
PasswordTime(time, duration) | |
} | |
if (o.subtitle_on) { | |
Sub(time) | |
} | |
if (o.storage && v.timestore == 1) { | |
if (o.continue) { | |
!o.seekto ? o.continue.write(time, duration) : '' | |
} | |
} | |
if (o.cutted) { | |
o.cut ? o.cut.play(time) : '' | |
} | |
if (exist(v.end)) { | |
var ed = v.end; | |
if (indOf([v.end], '-')) { | |
ed = duration | |
} | |
if (ed > 0 && time > ed) { | |
if (o.file_type == "youtube") { | |
o.media.Pause(); | |
o.media.Seek(v.start > 0 ? v.start : 0) | |
} else { | |
o.media.Recover(); | |
o.actions.Stop() | |
} | |
v.start > 0 ? o.seekto = v.start : ''; | |
o.actions.Ended() | |
} | |
} | |
if (exist(v.remove)) { | |
var r1 = v.remove.split(","); | |
for (var i = 0; i < r1.length; i++) { | |
var r2 = r1[i].split("-"); | |
if (r2.length == 2) { | |
if (time > r2[0] && time < r2[1]) { | |
o.media.Seek(r2[1] * 1 + (o.system.safari ? 1 : 0)) | |
} | |
} | |
} | |
} | |
if (v.tracking == 1) { | |
if (typeof PluginTrack !== "undefined") { | |
PluginTrack(time, delta) | |
} | |
} | |
}; | |
function Quartile(x) { | |
o.quartile[x] = true; | |
if (v.timestore == 1 && v.playedstore == 1 && v.playedquartile == x) { | |
if (o.storage && o.plid) { | |
o.continue ? o.continue.writePl(o.plid) : '' | |
} | |
} | |
} | |
function gaTrackPlay(x, y, t, p) { | |
if (!exist(o.gatracked[y])) { | |
if (t > p) { | |
gaTracker(x, y, 1) | |
} | |
} | |
}; | |
this.Reload = function () { | |
o.reloadTimer = 0; | |
exist(o.reloadto) ? clearTimeout(o.reloadto) : ''; | |
if (v.reloadjustevent == 1) { | |
js("reload") | |
} else { | |
o.seekto > 0 || o.media.isLive() ? '' : o.seekto = o.media.time() + (v.reloadplus > 0 ? 1 : 0); | |
var openpl = o.controls.PlaylistVisible(); | |
js("reload"); | |
o.media.reload(); | |
openpl && v.playlist.autohide == 1 ? o.controls.PlaylistShow() : '' | |
} | |
}; | |
this.Stopped = function () { | |
o.controls.Played(0, 0); | |
o.controls.Loaded(0, 0); | |
o.actions.Duration(0, 0); | |
o.controls.StopWaiting() | |
}; | |
this.Loading = function () { | |
if (o.media) { | |
var time = o.media.loaded(); | |
if (v.pjsiframed == 1) { | |
js("loaded", time) | |
} | |
var duration = o.media.duration(); | |
o.controls ? o.controls.Loaded(time, duration) : '' | |
} | |
}; | |
this.Ended = function () { | |
js("fileend"); | |
o.ended = true; | |
if (v.loop == 1) { | |
if (o.file_type == "youtube") { | |
this.Stop() | |
} | |
v.vast == 1 ? o.actions.VastRecover('preroll') : ''; | |
if (v.start > 0) { | |
o.actions.Seek(v.start) | |
} | |
this.Play() | |
} else { | |
if (o.media.isLive() || o.file_type == "youtube") { | |
this.Stop() | |
} else { | |
if (v.finishrewind == 1) { | |
o.actions.Seek((v.start > 0 ? v.start : 0), true); | |
if (o.system.ie) { | |
o.media.Pause() | |
} | |
} | |
} | |
o.controls.onEnded(); | |
v.intros == 1 ? v.outros = 1 : ''; | |
if (Advertising("postroll") || Advertising("outro")) { } else { | |
End() | |
} | |
} | |
}; | |
this.Fullscreen = function () { | |
var stop = false; | |
var error = false; | |
o.fs_error = false; | |
o.fullscreen_process = true; | |
setTimeout(function () { | |
o.fullscreen_process = false | |
}, 3000); | |
for (var x in o.motions) { | |
if (o.motions.hasOwnProperty(x)) { | |
if (exist(o.motions[x])) { | |
try { | |
o.motions[x].TheEnd2() | |
} catch (e) { } | |
} | |
} | |
} | |
try { | |
o.fullscreen_start = true; | |
if (((o.system.ios && v.nativefullios == 1) || (o.system.android && v.nativefulldroid == 1)) && o.tagvideo && !o.nativecontrols) { | |
var x = o.media.tag(); | |
if (x) { | |
if (x.webkitSupportsFullscreen) { | |
NativeEnterFs(); | |
stop = true | |
} | |
} | |
} | |
if (!stop) { | |
var fspr; | |
var y = o.frame; | |
if ((o.file_type == "dm" || o.file_type == "vimeo") && o.system.iphone && v.nativefullios == 1) { | |
o.media.iosfull(); | |
return | |
} | |
if (y.requestFullscreen) { | |
o.realfullscreen = true; | |
fspr = y.requestFullscreen({ | |
navigationUI: "hide" | |
}); | |
if (fspr !== undefined) { | |
fspr.then(function () { }).catch(function (error) { }) | |
} | |
} else if (y.requestFullScreen) { | |
y.requestFullScreen({ | |
navigationUI: "hide" | |
}); | |
o.realfullscreen = true | |
} else if (o.frame.mozRequestFullScreen) { | |
y.mozRequestFullScreen({ | |
navigationUI: "hide" | |
}); | |
o.realfullscreen = true | |
} else if (y.webkitRequestFullScreen) { | |
y.webkitRequestFullScreen({ | |
navigationUI: "hide" | |
}); | |
o.realfullscreen = true | |
} else if (y.msRequestFullscreen) { | |
y.msRequestFullscreen(); | |
o.realfullscreen = true | |
} | |
} | |
} catch (e) { | |
error = true; | |
log(e) | |
} | |
if (!o.realfullscreen && !stop) { | |
if (o.system.webkit && o.iniframe) { | |
NativeEnterFs() | |
} else { | |
this.FullscreenUI() | |
} | |
} | |
if (!error) { | |
setTimeout(PostFullscreen, 200) | |
} | |
}; | |
function NativeEnterFs() { | |
var x = o.media.tag(); | |
if (x) { | |
o.nativefull = true; | |
o.media.nativeSubtitle(); | |
x.webkitEnterFullScreen(); | |
x.addEventListener("webkitendfullscreen", iosExitFullscreen) | |
} | |
} | |
function NativeExitFs() { | |
var x = o.media.tag(); | |
if (x) { | |
x.webkitExitFullscreen() | |
} | |
}; | |
this.NativeExitFs = function () { | |
NativeExitFs() | |
}; | |
function PostFullscreen() { | |
if (o.fs_error != true) { | |
if (o.ispipkit) { | |
o.media.PipWebkit() | |
} | |
if (v.hotkey.volumewheelfull == 1) { | |
VolumeWheelX(true); | |
o.volumewheel = true | |
} | |
v.effects == 1 ? o.effects.api("full") : ''; | |
js("fullscreen"); | |
gaTracker("full", "Fullscreen", 1) | |
} | |
}; | |
var volumewheelin; | |
var lastwheel = { | |
x: 0, | |
y: 0 | |
}; | |
function VolumeWheel(e) { | |
if (o.droplist) { | |
if (o.droplist.OpenScroll()) { | |
return | |
} | |
} | |
if (e.wheelDelta != 0) { | |
e.deltaX != 0 ? lastwheel.x++ : lastwheel.x--; | |
e.deltaY != 0 ? lastwheel.y++ : lastwheel.y--; | |
if ((v.hotkey.whlskfll == 1 || v.hotkey.scrollwheelfull == 1) && o.fullscreen && lastwheel.y > lastwheel.x) { | |
clearInterval(volumewheelin); | |
volumewheelin = setInterval(function () { | |
lastwheel = { | |
x: 0, | |
y: 0 | |
}; | |
clearInterval(volumewheelin) | |
}, 1000) | |
} else { | |
o.hidden_volume_over = true; | |
clearInterval(volumewheelin); | |
volumewheelin = setInterval(function () { | |
o.hidden_volume_over = false; | |
o.controls.resize(); | |
lastwheel = { | |
x: 0, | |
y: 0 | |
}; | |
clearInterval(volumewheelin) | |
}, 2000); | |
o.controls.resize() | |
} | |
if (lastwheel.x > lastwheel.y) { | |
if (e.deltaX > 0) { | |
o.actions.Volume(parseFloat(v.volume) - v.hotkey.wheelstep / 10, "no") | |
} else { | |
o.actions.Volume(parseFloat(v.volume) + v.hotkey.wheelstep / 10, "no") | |
} | |
} else { | |
var st = (o.system.win ? -v.hotkey.wheelstep / 10 : v.hotkey.wheelstep / 10); | |
if (v.hotkey.scrollwheelfull == 1 && o.fullscreen) { | |
o.media.scale((e.deltaY > 0 ? st : -st)) | |
} else if (v.hotkey.whlskfll == 1 && o.fullscreen) { | |
apiProcessor("seek", (e.deltaY > 0 ? "+" + st * 10 : "-" + st * 10)) | |
} else { | |
o.actions.Volume(parseFloat(v.volume) + (e.deltaY > 0 ? st : -st), "no"); | |
o.controls.volumescroll() | |
} | |
} | |
} | |
} | |
function iosExitFullscreen() { | |
if (o.system.ios) { | |
o.media.removeNativeSubtitle(); | |
js("exitfullscreen") | |
} | |
o.nativefull = false | |
} | |
this.FullscreenUI = function () { | |
if (o.fullscreen_start) { | |
o.fullscreen = true; | |
o.controls.Fullscreen(); | |
if (!o.realfullscreen) { | |
if (exist(o.parentIframe)) { | |
try { | |
css(o.parentIframe, { | |
'width': '100%', | |
'height': '100%', | |
'position': 'fixed', | |
'left': 0, | |
'top': 0, | |
'zIndex': "100000" | |
}) | |
} catch (err) { } | |
} | |
css(o.frame, { | |
'width': '100%', | |
'height': '100%', | |
'position': 'fixed', | |
'left': 0, | |
'top': 0, | |
'zIndex': "100000" | |
}); | |
o.screen_w = o.frame.offsetWidth; | |
o.screen_h = o.frame.offsetHeight; | |
try { | |
document.body.style.overflow = 'hidden'; | |
if (!exist(o.playlist)) { | |
document.ontouchmove = function (e) { | |
e.preventDefault() | |
} | |
} | |
} catch (err) { } | |
} | |
if (v.fullblack == 1) { | |
css(o.frame, { | |
'backgroundColor': '#000000' | |
}) | |
} | |
if (v.fzoom == 1 && o.system.webkit == 1) { | |
var sw = window.screen.width; | |
var fz = 1; | |
for (var i = 1; i < 6; i++) { | |
if (sw > 1000 * i) { | |
fz = existv(v['fzoom' + (1000 * i)], i) | |
} | |
} | |
if (fz > 1) { | |
o.frame.style.zoom = fz; | |
o.fzoom = fz | |
} | |
} | |
if (o.droplist) { | |
o.droplist.Close() | |
} | |
Sub(); | |
o.fullscreen_start = false | |
} | |
}; | |
this.Normalscreen = function () { | |
_fullscreen_end = true; | |
if (document.cancelFullScreen) { | |
document.cancelFullScreen() | |
} else if (document.exitFullscreen) { | |
document.exitFullscreen() | |
} else if (document.cancelFullscreen) { | |
document.cancelFullscreen() | |
} else if (document.mozCancelFullScreen) { | |
document.mozCancelFullScreen() | |
} else if (document.webkitCancelFullScreen) { | |
document.webkitCancelFullScreen() | |
} else if (document.msExitFullscreen) { | |
document.msExitFullscreen() | |
} | |
if (!o.realfullscreen) { | |
this.NormalscreenUI(false) | |
} | |
}; | |
this.changeAspect = function (x, y) { | |
NewAspect(x, y) | |
}; | |
function NewAspect(x, frmvst) { | |
if (exist(o.vast) && !frmvst) { | |
o.resizeonplay = x | |
} else { | |
var stop = false; | |
var coh = o.container_w / x; | |
var cow = 0; | |
var nhs = { | |
'height': coh | |
}; | |
if (v.chngwd == 1) { | |
if (coh > o.container_h) { | |
coh = o.container_h; | |
cow = o.container_w / x; | |
o.container_w = nhs['width'] = cow | |
} | |
} | |
if (exist(o.parentIframe) && v.notframe != 1) { | |
try { | |
css(o.parentIframe, nhs) | |
} catch (err) { | |
stop = true; | |
log("iframe crossdomain issue") | |
} | |
} | |
if (!stop) { | |
o.aspect = x; | |
o.container_h = coh; | |
if (o.aspect > 0) { | |
css(o.container, nhs) | |
} | |
if (cow > 0) { | |
js("width", cow) | |
} | |
js("height", coh) | |
} | |
if (o.vast && !o.fullscreen) { | |
o.screen_h = coh; | |
if (cow > 0) { | |
o.screen_w = cow | |
} | |
o.vast.Resize() | |
} | |
} | |
}; | |
this.NormalscreenUI = function (x) { | |
if (_fullscreen_end || x) { | |
o.fullscreen = false; | |
o.nativefull = false; | |
if (!o.realfullscreen) { | |
if (exist(o.parentIframe)) { | |
try { | |
css(o.parentIframe, { | |
'position': 'static', | |
'left': 0, | |
'top': 0, | |
'zIndex': 'unset' | |
}); | |
css(o.parentIframe, o.parentIframe_style); | |
css(o.parentIframe, { | |
'width': o.normal_w, | |
'height': o.normal_h | |
}) | |
} catch (err) { } | |
} | |
css(o.frame, { | |
'width': o.normal_w, | |
'height': o.normal_h, | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'zIndex': 'unset' | |
}); | |
try { | |
document.body.style.overflow = 'auto'; | |
document.ontouchmove = function (e) { | |
return true | |
} | |
} catch (err) { } | |
} | |
o.controls.Normalscreen(); | |
if (v.fullblack == 1) { | |
css(o.frame, { | |
'backgroundColor': v.screencolor | |
}); | |
if (v.transparent == 1) { | |
o.frame.style.backgroundColor = 'transparent' | |
} else { | |
css(o.frame, { | |
'backgroundColor': v.screencolor | |
}) | |
} | |
} | |
if (o.fzoom > 1) { | |
o.frame.style.zoom = 1; | |
o.fzoom = 1 | |
} | |
if (v.hotkey.volumewheelfull == 1) { | |
VolumeWheelX(false); | |
o.volumewheel = false | |
} | |
if (o.droplist) { | |
o.droplist.Close() | |
} | |
Sub(); | |
o.subdrag ? o.subdrag = false : ''; | |
o.controls.PlaylistHere(); | |
_fullscreen_end = false; | |
js("exitfullscreen"); | |
o.realfullscreen = false; | |
o.fullscreen_process = false | |
} | |
}; | |
this.volumewheel = function (x) { | |
VolumeWheelX(x) | |
}; | |
function VolumeWheelX(x) { | |
lastwheel = { | |
x: 0, | |
y: 0 | |
}; | |
if (x) { | |
window.addEventListener("wheel", VolumeWheel) | |
} else { | |
clearInterval(volumewheelin); | |
window.removeEventListener("wheel", VolumeWheel) | |
} | |
} | |
this.Stop = function () { | |
v.preload = 0; | |
o.controls.Pause(); | |
o.actions.Stopped(); | |
o.media.Volume(v.volume); | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings() | |
} | |
if (o.muted) { | |
this.Mute() | |
} | |
if (exist(o.heartbeatInterval)) { | |
clearInterval(o.heartbeatInterval); | |
o.heartbeatInterval = null | |
} | |
Sub(0); | |
log("stop"); | |
js("stop") | |
}; | |
this.StopMedia = function () { | |
v.preload = 0; | |
v.autoplay = 0; | |
o.media.Recover(); | |
o.actions.Stop() | |
}; | |
this.SetQuality = function (x) { | |
if (exist(o.current_quality)) { | |
if (o.current_quality != x) { | |
o.current_quality = x; | |
if (v.qualitystore == 1) { | |
o.default_quality = o.files_quality[x]; | |
if (o.storage) { | |
localStorage.setItem("pljsquality", o.default_quality) | |
} | |
} | |
o.media.SetQuality(x); | |
js("quality", o.files_quality[x]); | |
o.controls.QualityChanged(x) | |
} | |
} | |
}; | |
this.AirplayChanged = function () { | |
o.controls ? o.controls.AirplayChanged() : '' | |
}; | |
this.SetAudioTrack = function (x) { | |
if (exist(o.current_audiotrack)) { | |
if (o.current_audiotrack != x) { | |
o.current_audiotrack = x; | |
if (v.trackstore == 1) { | |
o.default_audio = v.default_audio = o.files_audiotrack[x]; | |
if (o.storage) { | |
localStorage.setItem("pljstrack", o.default_audio) | |
} | |
} | |
o.media.SetAudioTrack(x); | |
js("audiotrack", x); | |
o.controls.SettingChanged("audiotrack") | |
} | |
} | |
}; | |
this.SetSpeed = function (x, z) { | |
x == '0.0' ? x = 0.1 : ''; | |
var y = x; | |
String(y).indexOf('.') > 0 ? z = 1 : ''; | |
y = y * 1; | |
if (!z) { | |
y = x == o.speed1 ? 1 : o.files_speed[x]; | |
o.current_speed = x | |
} | |
if (o.line_speed || z) { | |
o.custom_speed = y; | |
for (var i = 0; i < o.files_speed.length; i++) { | |
if (y <= o.files_speed[i] * 1) { | |
o.current_speed = i; | |
break | |
} | |
} | |
} | |
if (o.storage && v.speedstore == 1) { | |
localStorage.setItem("pljsspeed", y) | |
} | |
js("speed", y); | |
o.media.SetSpeed(y); | |
o.controls.SettingChanged("speed") | |
}; | |
function Sub(x) { | |
o.sbt ? o.sbt.show(exist(x) ? x : o.media.time()) : '' | |
}; | |
this.RenewSubtitle = function () { | |
if (o.sbt) { | |
Sub(); | |
o.sbt.style() | |
} | |
}; | |
this.Subtitle = function (x) { | |
if (typeof (PluginSub) == 'function') { | |
!o.sbt ? o.sbt = new PluginSub() : ''; | |
o.sbt.start(x) | |
} | |
}; | |
var vast_and; | |
var vast_or; | |
var vast_type; | |
var vasturl; | |
function Advertising(x) { | |
if (v["vast_" + x + "timebreak"] > 0 && o.storage) { | |
var tb = localStorage.getItem("pljs" + x + "_" + o.d); | |
if (tb) { | |
var ct = new Date(); | |
o.clicktime = ct.getTime(); | |
var ct2 = (ct.getTime() - tb) / 3600000; | |
if (ct2 < v["vast_" + x + "timebreak"]) { | |
return false | |
} | |
} | |
} | |
if (v["vast_" + x + "timelimit"] > 0) { | |
if (o.media.duration() > 0) { | |
if (o.media.duration() < v["vast_" + x + "timelimit"] * 60) { | |
if (v["vast_" + x + "timelimited"] > 0) { | |
v["vast_" + x + "_" + "andlimit"] = v["vast_" + x + "timelimited"] | |
} else { | |
return false | |
} | |
} | |
} | |
} | |
if (o.compilations.indexOf("VAST") != -1 && v.vast == 1 && !o.noads && v[x + 's'] == 1) { | |
if (typeof VastVideo == "undefined") { | |
return false | |
} | |
if (x == "intro" || x == "outro") { | |
if (typeof PluginIntro !== "undefined") { | |
vasturl = []; | |
return PluginIntro(x) | |
} | |
} | |
if (exist(o.vast) || exist(o.vastloader)) { | |
if (!isVisible(o.vastcontainer) || isVastBgLoad(o.vasttype)) { | |
log('ad bg'); | |
return false | |
} else { | |
log('ad now'); | |
return true | |
} | |
} else { | |
if (exist(v[x])) { | |
if (v[x].toString().indexOf(".") > -1 || v[x].toString().indexOf(":") > -1 || v[x].toString().indexOf("[yandex]") > -1) { | |
js("vast_init", x); | |
if (!isVastBgLoad(x) && x != "overlay") { | |
setTimeout(function () { | |
o.play || (o.vastloader == null && o.vast == null) ? '' : o.actions.Waiting() | |
}, 10); | |
Curtain() | |
} | |
vast_and = 0; | |
vast_or = 0; | |
vast_type = x; | |
vasturl = v[x].split(" and "); | |
o.vast_loaders = []; | |
o.adsinchain = vasturl.length; | |
VastAndLimit(); | |
o.adscounter = 1; | |
o.adsfirst = true; | |
for (var i = 0; i < vasturl.length; i++) { | |
vasturl[i] = vasturl[i].split(" or ") | |
} | |
v[x.concat("_", "recover")] = v[x]; | |
v[x] = null; | |
o.vasttype = x; | |
if (x != 'overlay') { | |
o.vast = new VastVideo() | |
} | |
o.vastloader = new VastLoader(); | |
for (var i = 0; i < vasturl.length; i++) { | |
for (var j = 0; j < vasturl[i].length; j++) { | |
var _url = trim(vasturl[i][j]); | |
if (_url.indexOf("[50%]") > 0) { | |
var tmp = random(1, 2); | |
vasturl[i][j] = vasturl[i][j].replace("[50%]", ""); | |
if (tmp == 2) { | |
vasturl[i][j] = '' | |
} | |
} | |
} | |
} | |
if (v.vast_preload == 1) { | |
for (var i = 0; i < vasturl.length; i++) { | |
var n = i == 0 ? 1 : 0; | |
if (vasturl[i].length > n) { | |
for (var j = n; j < vasturl[i].length; j++) { | |
var _url = trim(vasturl[i][j]); | |
if (o.system.ie9) { | |
VastAddPreload(_url) | |
} else { | |
setTimeout(VastAddPreload, i * 100, _url) | |
} | |
} | |
} | |
} | |
} | |
if (vasturl[0][0] == '') { | |
VastNext() | |
} else { | |
o.vastloader.Load(trim(vasturl[0][0]), x) | |
} | |
return true | |
} else { | |
return false | |
} | |
} else { | |
return false | |
} | |
} | |
} else { | |
return false | |
} | |
}; | |
this.advertising = function (x) { | |
Advertising(x) | |
}; | |
function MidrollOverlay(w, x, d) { | |
if (exist(o[w + 'o']) && v[w + 's'] == 1) { | |
var y; | |
for (var i in o[w + 'o']) { | |
if (o[w + 'o'].hasOwnProperty(i)) { | |
if (!exist(o[w + 'o'][i].worked) && exist(o[w + 'o'][i].time) && exist(o[w + 'o'][i].vast)) { | |
var z = o[w + 'o'][i].time.toString(); | |
var ok = false; | |
if (z) { | |
if (x == "metadata") { | |
if (z == x) { | |
ok = true | |
} | |
} else { | |
if (z.indexOf("%") > 0) { | |
if (d > 0) { | |
z = parseInt(z.substr(0, z.indexOf("%"))) * d / 100 | |
} else { | |
z = -1 | |
} | |
} else { | |
z = parseInt(z) | |
} | |
if (x >= z) { | |
if (v['vast_' + w + 'rest'] > 0 && z > -1) { | |
if (x - z >= v['vast_' + w + 'rest']) { | |
z = -1 | |
} | |
} | |
if (z > -1) { | |
ok = true | |
} | |
} | |
} | |
if (o[w + 'o'][i].minduration && o.media.duration() > 0) { | |
if (o.media.duration() < o[w + 'o'][i].minduration * 1) { | |
o[w + 'o'][i].worked = true; | |
ok = false | |
} | |
} | |
if (ok) { | |
y = o[w + 'o'][i].vast; | |
v[w] = o[w + 'o'][i].vast; | |
o[w + 'crtm'] = o[w + 'o'][i].time; | |
o[w + 'skipimprsd'] = o[w + 'o'][i].skipimpessed; | |
if (Advertising(w)) { | |
o[w + 'o'][i].worked = true; | |
break | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
}; | |
function VastBgLoad() { | |
if (isVastBgLoad()) { | |
if (o.vast_impressions == 0 || v['vast_' + o.vasttype + 'bgload2'] == 1) { | |
css(o.vastcontainer, { | |
"opacity": 0, | |
"visibility": "hidden", | |
"top": 2000 | |
}); | |
log(o.vasttype + " hide"); | |
o.vasttype == 'midroll' ? o.media.Play() : '' | |
} | |
} | |
} | |
function isVastBgLoad(z) { | |
var y = false; | |
var x = ['midroll', 'pauseroll']; | |
for (var i = 0; i < x.length; i++) { | |
if (o.vasttype == x[i] || z == x[i]) { | |
if (v['vast_' + x[i] + 'bgload'] == 1) { | |
y = true | |
} | |
} | |
} | |
return y | |
}; | |
this.isVastBgLoad = function (x) { | |
return isVastBgLoad(x) | |
}; | |
this.VastImpression = function (x) { | |
x ? '' : VastVisible(); | |
o.vasttype == "midroll" ? o.midrollimprsd.push(o.current_vast_url) : '' | |
}; | |
this.VpaidStarted = function () { | |
VastVisible() | |
}; | |
this.VastShow = function () { | |
VastVisible() | |
}; | |
function VastVisible() { | |
if (isVastBgLoad()) { | |
if (o.play) { | |
o.media.Pause(); | |
o.controls.Pause() | |
} | |
log(o.vasttype + " show"); | |
css(o.vastcontainer, { | |
"opacity": 1, | |
"visibility": "visible", | |
"top": 0 | |
}); | |
o.vastfrombg = 1 | |
} | |
if (o.nativefull && !o.realfullscreen) { | |
NativeExitFs() | |
} else { | |
if (v["vast_" + o.vasttype + "normal"] == 1 && o.fullscreen) { | |
o.actions.Normalscreen() | |
} | |
} | |
}; | |
this.VastReady = function (x) { | |
o.vastloader = null; | |
o.vastfrombg = 0; | |
log("VAST ready", o.vasttype); | |
js("vast_ready", o.vasttype); | |
if (x.type == "overlay") { | |
var ovr = new VastOverlay(x); | |
o.overlays.push(ovr) | |
} else { | |
if (exist(o.vast)) { | |
if (v.preload == 0 && v.vastbgpreload == 1 && o.media.time() == 0 && o.media.duration() == 0) { | |
v.preload = 1; | |
o.media.Preload() | |
} | |
if ((!o.vast.tagLive() || x.isVpaid) && o.vastgo > 0) { | |
log("VAST renew"); | |
o.vast.Remove(); | |
o.vast = null; | |
o.vast = new VastVideo() | |
} | |
if (isVastBgLoad()) { | |
VastBgLoad() | |
} else { | |
if (o.play) { | |
o.media.Pause(); | |
o.controls.Pause() | |
} | |
} | |
o.vastgo++; | |
if (o.adsfirst && v.vast_longtimeout > 0) { | |
clearTimeout(o.vast_longtimeout); | |
o.vast_longtimeout = setTimeout(VastLongTimeout, v.vast_longtimeout * 1000 * 60); | |
if (exist(v.vast_longtimemsg)) { | |
if (v.vast_longtimemsg != '') { | |
o.vast_longtomsg ? o.vast_longtomsg.remove() : ''; | |
o.vast_longtomsg = new PluginVastTimeMsg() | |
} | |
} | |
} | |
o.adsfirst = false; | |
if (v.vast_prestarttimeout > 0) { | |
log("VAST startdelay"); | |
js("vast_startdelay"); | |
setTimeout(VastGo, v.vast_prestarttimeout * 1000, x) | |
} else { | |
VastGo(x) | |
} | |
} else { | |
log("VAST alarm") | |
} | |
} | |
}; | |
function VastGo(x) { | |
o.vast.Go(x) | |
} | |
function VastLongTimeout() { | |
if (exist(o.vast)) { | |
if (o.vast.active() && o.vast_impressions == 0) { | |
o.vast.RemoveForNextAd(); | |
log("VAST timeout " + v.vast_longtimeout); | |
vasturl = []; | |
VastRemoveAndPlay() | |
} | |
} | |
} | |
this.VastError = function () { | |
js('vast_error', o.vasttype); | |
log("VAST error"); | |
VastCheckNext() | |
}; | |
this.VastNext = function () { | |
VastCheckNext() | |
}; | |
function VastCheckNext() { | |
var n = VastAndLimit(); | |
log("VAST next " + !n); | |
!n ? VastNext() : VastRemoveAndPlay() | |
}; | |
this.VastRemoveUrl = function (x) { | |
if (v[o.vasttype + "_recover"]) { | |
for (var i = 0; i < 3; i++) { | |
v[o.vasttype + "_recover"] = v[o.vasttype + "_recover"].replace(x + (i == 0 ? ' and ' : (i == 1 ? ' or ' : '')), '') | |
} | |
} | |
}; | |
function VastAndLimit() { | |
var x = false; | |
if (o.vasttype) { | |
var val = v['vast_' + o.vasttype + '_' + 'andlimit']; | |
var va2l = v['vast_' + o.vasttype + '_' + 'and2limit']; | |
if (va2l || val) { | |
if (va2l > 0 && o.vast_starts > 0) { | |
o.adsinchain = va2l; | |
if (o.vast_impressions >= va2l) { | |
x = true | |
} | |
} else { | |
if (val > 0) { | |
o.adsinchain = val; | |
if (o.vast_impressions >= val) { | |
x = true | |
} | |
} | |
} | |
} | |
} | |
return x | |
} | |
function VastNext() { | |
if (vasturl.length > 0 && vasturl[vast_and]) { | |
if (vast_or < vasturl[vast_and].length - 1) { | |
log("VAST Next"); | |
o.vast ? o.vast.RemoveForNextAd() : ''; | |
VastBgLoad(); | |
vast_or++; | |
var _url = trim(vasturl[vast_and][vast_or]); | |
var _preloaded = VastPreloaded(_url); | |
if (_preloaded == 'skip') { | |
o.vastloader = new VastLoader(); | |
o.vastloader.Load(_url, o.vasttype) | |
} | |
if (_preloaded == 'error') { | |
VastNext() | |
} | |
} else { | |
VastRemoveAndPlay() | |
} | |
} else { | |
VastRemoveAndPlay() | |
} | |
} | |
function VastPreloaded(_url) { | |
var x = 'skip'; | |
if (v.vast_preload == 1 && o.vast_loaders) { | |
var find = false; | |
var n = 0; | |
for (var i = 0; i < o.vast_loaders.length; i++) { | |
if (o.vast_loaders[i].done == 0) { | |
if (o.vast_loaders[i].ldr.preloaded(_url)) { | |
o.vast_loaders[i].done = 1; | |
var y = o.vast_loaders[i].ldr.Status(); | |
if (y == 'ready') { | |
o.vastloader = o.vast_loaders[i].ldr; | |
log("VAST preloaded"); | |
o.vast_loaders[i].ldr.Ready(); | |
x = y | |
} else { | |
if (y == '') { | |
x = 'ok'; | |
log("VAST preloading"); | |
o.vastloader = o.vast_loaders[i].ldr; | |
o.vast_loaders[i].ldr.disablePreload() | |
} | |
if (y == 'error') { | |
x = 'error' | |
} | |
} | |
find = true | |
} | |
if (find && o.vast_loaders[i].load == 0) { | |
n++; | |
if (n < 6) { | |
VastPreloadLoad(o.vast_loaders[i]) | |
} else { | |
break | |
} | |
} | |
} | |
} | |
} | |
return x | |
} | |
this.VastInsertAnd = function (x, y) { | |
if (x != '') { | |
var z = vast_and; | |
var moveOr2end = false; | |
if (y) { | |
for (var j = 0; j < vasturl.length; j++) { | |
vasturl[j] == y ? z = j : '' | |
} | |
} | |
if (vasturl.length == 1) { | |
if (vasturl[0].length > 1 && vast_or < vasturl[0].length - 1 && vasturl[vast_or]) { | |
var last_ors = vasturl[vast_or].slice(1, 99); | |
vasturl[0].splice(vast_or + 1, 99); | |
moveOr2end = true | |
} | |
} | |
if (typeof (x) == "object") { | |
for (var i = 0; i < x.length; i++) { | |
vasturl.splice(z + i + 1, 0, [x[i]]); | |
if (o.system.ie9) { | |
VastAddPreload(x[i]) | |
} else { | |
setTimeout(VastAddPreload, i * 100, x[i]) | |
} | |
} | |
} else { | |
if (typeof (x) == "string") { | |
vasturl.push([x]); | |
VastAddPreload(x) | |
} | |
} | |
if (moveOr2end) { | |
vasturl[vasturl.length - 1] = vasturl[vasturl.length - 1].concat(last_ors) | |
} | |
} | |
}; | |
this.VastInsertOr = function (x, y) { | |
if (x != '') { | |
var z = vast_and; | |
if (y) { | |
for (var j = 0; j < vasturl.length; j++) { | |
vasturl[j] == y ? z = j : '' | |
} | |
} | |
if (vasturl[z]) { | |
if (typeof (x) == "object") { | |
for (var i = 0; i < x.length; i++) { | |
vasturl[z].push(x[i]) | |
} | |
} else { | |
if (typeof (x) == "string") { | |
vasturl[z].push(x) | |
} | |
} | |
} | |
} | |
}; | |
this.VastRemoveAndPlay = function (x) { | |
VastRemoveAndPlay(x) | |
}; | |
function VastAddPreload(x) { | |
if (v.vast_preload == 1 && o.vast_loaders) { | |
var i = 0; | |
for (var i = 0; i < vasturl.length; i++) { | |
if (vasturl[i] == x) { | |
if (vast_and >= i) { | |
return | |
} else { } | |
} | |
} | |
if (vasturl.length == 1 && vasturl[0].length > 1) { } else { | |
var n = 0; | |
for (i = 0; i < o.vast_loaders.length; i++) { | |
o.vast_loaders[i].done == 0 ? n++ : '' | |
} | |
o.vast_loaders.push({ | |
load: 0, | |
done: 0, | |
x: trim(x), | |
t: o.vasttype, | |
ldr: new VastLoader(true) | |
}); | |
n < 5 ? VastPreloadLoad(o.vast_loaders[o.vast_loaders.length - 1]) : '' | |
} | |
} | |
} | |
function VastPreloadLoad(x) { | |
if (x) { | |
x.load = 1; | |
x.ldr.Load(x.x, x.t) | |
} | |
} | |
function VastRemoveAndPlay(dontplay) { | |
var stop = VastAndLimit(); | |
log("VAST remove (" + o.vast_impressions + ")"); | |
if (vasturl.length > 0 && vast_and == vasturl.length - 1) { | |
if (vasturl[0][0].indexOf("js:") == 0) { | |
vast_and = -1; | |
vasturl = [ | |
[vasturl[0][0]] | |
] | |
} | |
} | |
if (o.vast_stop == 2) { | |
stop = true | |
} | |
if (vasturl.length > vast_and + 1 && !stop) { | |
o.vast.RemoveForNextAd(); | |
VastBgLoad(); | |
vast_and++; | |
o.adscounter++; | |
vast_or = 0; | |
var _url = trim(vasturl[vast_and][0]); | |
var _preloaded = VastPreloaded(_url); | |
if (_preloaded == 'skip') { | |
o.vastloader = new VastLoader(); | |
o.vastloader.Load(_url, vast_type) | |
} | |
if (_preloaded == 'error') { | |
VastRemoveAndPlay(dontplay) | |
} | |
} else { | |
RemoveCurtain(); | |
o.controls.StopWaiting(); | |
if (exist(o.vast)) { | |
o.vast.Remove(); | |
o.vast = null | |
} | |
o.vastloader = null; | |
vasturl = []; | |
vast_or = 0; | |
vast_and = 0; | |
o.vastfrombg = 0; | |
o.shwvstfnsh != 1 ? js("vast_finish", o.vasttype) : ''; | |
o.shwvstfnsh = 0; | |
if (v.vast_ima == 1) { | |
if (o.ima) { | |
try { | |
o.ima.Destroy() | |
} catch (e) { | |
log(o.ima, e) | |
} | |
o.ima = undefined | |
} | |
} | |
vast_type = ''; | |
o.vast_impressions = 0; | |
o.vpaid_starts = 0; | |
clearTimeout(o.vast_longtimeout); | |
clearInterval(o.vldcntrInterval); | |
o.vast_longtomsg ? o.vast_longtomsg.remove() : ''; | |
o.vast_loadtxt ? o.vast_loadtxt.hide() : ''; | |
o.vast_starts++; | |
if (o.vasttype == "preroll" || (o.vasttype == "pauseroll" && v.pauserollonplay == 1 && o.actplay) || o.vasttype == "midroll") { | |
if (v.file != '?') { | |
o.media.AfterVast(); | |
var re; | |
if (o.vstdwn) { | |
o.actions.Download(); | |
o.vstdwn = false; | |
re = true | |
} | |
if (o.file_type == "youtube" && !o.vastclick && o.system.ios) { | |
re = true; | |
o.vasttype == "preroll" ? o.media.reYT() : '' | |
} | |
if (re || dontplay == 'dontplay' || v.vast_dontplay == 1) { } else { | |
o.actions.Play(1) | |
} | |
} | |
} | |
if (o.resizeonplay > 0) { | |
NewAspect(o.resizeonplay); | |
o.resizeonplay = 0 | |
} | |
if (o.vasttype == "postroll") { | |
End() | |
} | |
o.vastclick = false; | |
o.vasttype = null | |
} | |
}; | |
this.EmptyVastUrl = function () { | |
vasturl = [ | |
[''] | |
] | |
}; | |
this.VastRecover = function (y) { | |
var x = ['preroll', 'pauseroll', 'postroll', 'intro', 'outro']; | |
var z; | |
for (var i = 0; i < x.length; i++) { | |
z = false; | |
if (y) { | |
y != x[i] ? z = true : '' | |
} | |
if (!z && exist(v[x[i].concat("_", "recover")])) { | |
v['vast_' + x[i].concat("_", "limit")]--; | |
if (v['vast_' + x[i].concat("_", "limit")] > 0) { | |
v[x[i]] = v[x[i].concat("_", "recover")]; | |
v[x[i].concat("_", "recover")] = null | |
} | |
} | |
} | |
if (y == "preroll" || y == "midroll") { | |
if (v.vast_midroll_limit > 1) { | |
if (exist(o.midrollo) && v.midrolls == 1) { | |
for (var i in o.midrollo) { | |
o.midrollo[i].worked = undefined | |
} | |
v.vast_midroll_limit-- | |
} | |
} | |
} | |
}; | |
this.Password = function () { | |
Curtain(); | |
if (exist(o.pass)) { | |
o.pass.Remove(); | |
o.pass = null | |
} | |
o.pass = new Pass() | |
}; | |
this.RemovePassword = function () { | |
RemoveCurtain(); | |
o.pass.Remove(); | |
o.pass = null | |
}; | |
this.Curtain = function () { | |
Curtain() | |
}; | |
this.RemoveCurtain = function () { | |
RemoveCurtain() | |
}; | |
function Curtain() { | |
if (o.curtain) { } else { | |
o.curtain = createElement("div"); | |
o.frame.appendChild(o.curtain); | |
Pos0(o.curtain); | |
css(o.curtain, { | |
"background": "#000000", | |
"opacity": 0.1 | |
}); | |
o.curtain.style.zIndex = 1001 | |
} | |
}; | |
function RemoveCurtain() { | |
if (o.curtain) { | |
o.frame.removeChild(o.curtain); | |
o.curtain = null | |
} | |
}; | |
function ShowPoster() { | |
if (exist(o.poster)) { | |
if (v.poster != o.currentposter) { | |
Poster(v.poster, o.poster, v.poster_scale) | |
} | |
show(o.poster); | |
css(o.poster, { | |
"opacity": v.poster_a | |
}); | |
o.controls.refresh(); | |
o.pstrv ? o.pstrv.play() : '' | |
} | |
}; | |
this.HidePoster = function () { | |
if (exist(o.poster)) { | |
if (isVisible(o.poster)) { | |
clearInterval(o.pstrsin); | |
var t = o.media.time(); | |
if (t == 0 && v.posterhidestart == 1) { } else { | |
if (v.posterhidetime > 0) { | |
clearTimeout(o.pstr_to); | |
o.pstr_to = setTimeout(HidePoster2, v.posterhidetime * 1000) | |
} else { | |
HidePoster2() | |
} | |
} | |
} | |
} | |
}; | |
function HidePoster2() { | |
clearTimeout(o.pstr_to); | |
if (v.posteronpause == 1 && !o.play) { } else { | |
css(o.poster, { | |
"opacity": 0 | |
}); | |
setTimeout(HidePoster3, 500) | |
} | |
} | |
function HidePoster3() { | |
if (!o.play && v.posterhide == 1) { } else { | |
hide(o.poster); | |
o.pstrv ? o.pstrv.pause() : '' | |
} | |
} | |
this.ShowPoster = function () { | |
ShowPoster() | |
}; | |
function StopOtherPlayer(x) { | |
if (v.stopotherplayers == 1) { | |
for (var i = 0; i < pljssglobal.length; i++) { | |
if (pljssglobal[i]) { | |
if (pljssglobal[i].api("id") != v.id) { | |
pljssglobal[i].api('pause') | |
} | |
} | |
} | |
} | |
pljssglobalid = v.id | |
} | |
function IndexPlaylist(x) { | |
var y = Object.keys(x).length; | |
if (y > 0) { | |
x = IndexPlaylistProcessor(x, y, '', -1) | |
} | |
return x | |
} | |
function IndexPlaylistProcessor(x, y, p, j) { | |
var x2 = []; | |
var stop; | |
if (exist(x['playlist'])) { | |
x = x['playlist']; | |
y = x.length | |
} | |
var ii = 0; | |
for (var i = 0; i < y; i++) { | |
stop = false; | |
if (exist(x[i]['id'])) { | |
x[i]['pjs_id'] = x[i]['id'] | |
} | |
x[i]['id'] = "x" + p + '-' + i + (exist(x[i]['id']) ? '-' + x[i]['id'] : ''); | |
j == -1 && i == 0 && !exist(x[i]['folder']) ? o.pl_first_id = x[i]['id'] : ''; | |
if (!exist(o.pl_first_id)) { | |
j == 0 && !exist(x[i]['folder']) ? o.pl_first_id = x[i]['id'] : '' | |
} | |
x[i]['pjs_parent'] = p; | |
x[i]['pjs_parent_i'] = j; | |
x[i]['pjs_i'] = ii; | |
if (exist(x[i]['comment'])) { | |
x[i]['title'] = x[i]['comment']; | |
var q1 = x[i]['file'] ? x[i]['file'].indexOf('[') : 0; | |
var q2 = x[i]['file'] ? x[i]['file'].indexOf(']') : 0; | |
if (q1 > 0 && q2 > 0) { | |
var s1 = x[i]['file'].substr(q1 + 1, q2 - q1 - 1); | |
var s2 = s1.split(","); | |
var s3 = ''; | |
for (var k = 0; k < s2.length; k++) { | |
s3 += "[" + s2[k] + "]" + x[i]['file'].replace("[" + s1 + "]", s2[k]) + (k < s2.length - 1 ? "," : '') | |
} | |
x[i]['file'] = s3 | |
} | |
} | |
if (exist(x[i]['playlist'])) { | |
x[i]['folder'] = x[i]['playlist'] | |
} | |
if (!exist(x[i]['folder'])) { | |
if (exist(x[i]['file'])) { | |
if (x[i]['file'] == '' && !exist(x[i]['redirect'])) { | |
stop = true | |
} | |
} else { | |
stop = true | |
} | |
} | |
if (!stop) { | |
o.playlist_dic[x[i]['id']] = x[i]; | |
ii += 1 | |
} | |
if (exist(x[i]['folder'])) { | |
var z = Object.keys(x[i]['folder']).length; | |
if (z > 0) { | |
x[i]['folder'] = IndexPlaylistProcessor(x[i]['folder'], z, x[i]['id'], i) | |
} | |
} | |
if (!stop) { | |
x2.push(x[i]) | |
} | |
} | |
return x2 | |
} | |
function FindFileInPlaylist() { | |
var x = []; | |
if (exist(v.plstart)) { | |
if (v.plstart.indexOf("x-") != 0) { | |
for (var y in o.playlist_dic) { | |
if (o.playlist_dic.hasOwnProperty(y)) { | |
if (o.playlist_dic[y].pjs_id == v.plstart) { | |
v.plstart = y | |
} | |
} | |
} | |
} | |
if (exist(o.playlist_dic[v.plstart])) { | |
v.playlist.norootplstart == 1 ? v.playlist.openplaylistroot = 0 : ''; | |
x = o.playlist_dic[v.plstart] | |
} else { | |
x = o.playlist[0]; | |
if (v.plstart == o.plcontinue) { | |
o.seekto = undefined | |
} | |
} | |
} else { | |
x = o.playlist[0] | |
} | |
if (x) { | |
for (var i = 0; i < 10; i++) { | |
if (exist(x['folder'])) { | |
x = x['folder'][0] | |
} else { | |
break | |
} | |
} | |
v.plstart = x.id; | |
if (v.plstart == o.plcontinue) { | |
x.start = undefined | |
} | |
} | |
return x | |
} | |
function End() { | |
gaTracker("end", "End", 1); | |
o.actions.VastRecover(); | |
if (o.storage && v.timestore == 1) { | |
o.continue.write(0, o.media.duration()) | |
} | |
if (o.controls.PlaylistExist()) { | |
if (v.playlist.autoplaylist == 1 && o.controls.PlaylistNextExist()) { | |
o.controls.PlaylistNext() | |
} else { | |
End2() | |
} | |
} else { | |
if (v.finishnormal == 1 && o.fullscreen) { | |
o.actions.Normalscreen() | |
} | |
End3() | |
} | |
} | |
this.ShuffleEnd = function () { | |
End2() | |
}; | |
function End2() { | |
if (v.playlist.playlistrewind == 1 && !o.controls.PlaylistNextExist()) { | |
o.controls.PlaylistRewind(); | |
return | |
} | |
if (v.playlist.openplaylistafter == 1) { | |
!o.controls.PlaylistVisible() ? o.controls.Playlist() : '' | |
} | |
End3() | |
} | |
function End3() { | |
ShowPoster(); | |
js("finish"); | |
if (v.redirect == 1 && v.redirectafter == 1 && exist2(v.after)) { | |
redirect(v.after) | |
} | |
} | |
function fjs(x) { | |
if (x.indexOf('js:') == 0) { | |
try { | |
x = eval(x.substr(3)) | |
} catch (e) { | |
console.log(e.message) | |
} | |
} | |
return x ? x : '' | |
} | |
function Heartbeat() { | |
var vts = Math.floor(Date.now() / 1000); | |
var fts = (exist(v.livets) ? v.livets : 0) + parseInt(o.media.time()); | |
var type = 0; | |
o.system.desktop ? type = 1 : ''; | |
o.system.ios ? type = 2 : ''; | |
o.system.android ? type = 3 : ''; | |
o.system.winmob ? type = 4 : ''; | |
o.system.tv ? type = 5 : ''; | |
var url = v.heartbeat.replace("[vts]", vts); | |
url = url.replace("[fts]", fts); | |
url = url.replace("[dvtp]", type); | |
var gif = document.createElement("img"); | |
gif.setAttribute('src', url); | |
gif.setAttribute('height', '1px'); | |
gif.setAttribute('width', '1px'); | |
o.frame.appendChild(gif) | |
} | |
}; | |
var Media = function (url) { | |
var url; | |
var urls; | |
var urls_and; | |
var current_url; | |
var _status = ""; | |
var _lastime = 0; | |
var _ended = false; | |
var _stopped = false; | |
var _tags; | |
var media; | |
var media2; | |
o.mediascale = { | |
x: 1, | |
y: 1, | |
x0: 1, | |
y0: 1 | |
}; | |
var wait; | |
var plurls; | |
var current_plurl = 0; | |
var rldcnt = 0; | |
var hlsend_to; | |
if (typeof (url) == 'string') { | |
url = trim(url); | |
if (url.indexOf("[{") == 0) { | |
try { | |
url = url.replace(/pjs'qt/ig, '"'); | |
url = JSON.parse(url); | |
wait ? url = o.actions.File(url) : '' | |
} catch (e) { | |
console.log(e); | |
url = "incorrect JSON" | |
} | |
} | |
if (url.indexOf("#" + v.enc2) == 0) { | |
url = o[o.fd[0]](url) | |
} | |
if (url) { | |
if (url.indexOf("#" + v.enc3) == 0 && url.indexOf(v.file3_separator) > 0) { | |
url = o[o.fd[1]](url) | |
} | |
} | |
if (url) { | |
if (url.indexOf("#0") == 0) { | |
if (url.indexOf(o.pltxt) > 0) { | |
url = fd0(url.replace(o.pltxt, '')) + o.pltxt | |
} else { | |
url = fd0(url) | |
} | |
} | |
} | |
if (v.fplace == 1) { | |
url = fplace(url) | |
} | |
if (typeof (url) == 'string') { | |
if (url.indexOf(".m3u") == url.length - 4 || url.indexOf(".txt") > 0) { | |
plurls = url.split(" or "); | |
PlaylistLoad() | |
} | |
} | |
} | |
o.mediacontainer = createElement("div"); | |
Pos0(o.mediacontainer); | |
css(o.mediacontainer, { | |
"transition": "transform 0.2s linear", | |
"text-align": "center" | |
}); | |
o.frame.appendChild(o.mediacontainer); | |
if (v.hotkey.swiping == 1) { | |
if (!o.mdswp) { | |
PluginMovable(o.mediacontainer, 'o.swiping', v.hotkey.swipev != 1, v.hotkey.swipev == 1, Swiping); | |
o.mdswp = true | |
} | |
} | |
if (!wait) { | |
Start() | |
} | |
function Swiping() { | |
var p = o.mediacontainer.offsetLeft; | |
var p2 = o.screen_w; | |
if (v.hotkey.swipev == 1) { | |
p = o.mediacontainer.offsetTop; | |
p2 = o.screen_h | |
} | |
var x; | |
if (p > p2 * existv(v.hotkey.swipep, 0.5)) { | |
if (o.controls.PlaylistPrevExist()) { | |
x = true; | |
o.controls.PlaylistPrev() | |
} | |
} else { | |
if (p < -p2 * existv(v.hotkey.swipep, 0.5)) { | |
if (o.controls.PlaylistNextExist()) { | |
x = true; | |
o.controls.PlaylistNext() | |
} | |
} | |
} | |
if (x) { | |
if (v.hotkey.swipev == 1) { | |
css(o.mediacontainer, { | |
"top": 0 | |
}) | |
} else { | |
css(o.mediacontainer, { | |
"left": 0 | |
}) | |
} | |
} else { | |
new Motion({ | |
mc: o.mediacontainer, | |
type: (v.hotkey.swipev == 1 ? "top" : "left"), | |
to: 0, | |
time: 0.1, | |
ease: "back", | |
me: "mdswp" | |
}) | |
} | |
} | |
function PlaylistLoad() { | |
url = plurls[current_plurl]; | |
if (url.indexOf(o.pltxt) > 0) { | |
url = url.replace(o.pltxt, ''); | |
v.file = url | |
} | |
var xhr = XHR(url); | |
xhr.onload = function () { | |
if (this.readyState == 4 && this.status == 200) { | |
Playlist(this); | |
o.controls.NewPl() | |
} else { | |
PlaylistError(1) | |
} | |
}; | |
xhr.onerror = function (e) { | |
PlaylistError(1) | |
}; | |
xhr.send(); | |
wait = true | |
} | |
function PlaylistError(x) { | |
if (current_plurl + 1 < plurls.length) { | |
current_plurl++; | |
PlaylistLoad(); | |
x = 0 | |
} | |
if (x == 1) { | |
onError("playlist not found or access denied") | |
} | |
if (x == 2) { | |
onError("playlists JSON") | |
} | |
} | |
function Playlist(x) { | |
if (x.responseText) { | |
var y = x.responseText; | |
if (y.indexOf("#" + v.enc2) == 0) { | |
y = o[o.fd[0]](y) | |
} | |
if (y.indexOf("#" + v.enc3) == 0 && y.indexOf(v.file3_separator) > 0) { | |
y = o[o.fd[1]](y) | |
} | |
if (url.indexOf(".m3u") == url.length - 4) { | |
var m3u = y.split(/(\r\n\t|\n|\r\t)/gm); | |
url = []; | |
var m3ui = 1; | |
var m3ut = ''; | |
for (var i = 0; i < m3u.length; i++) { | |
if (m3u[i].indexOf("#EXTINF") > -1) { | |
if (m3u[i].indexOf("-") > -1) { | |
var tmp = m3u[i].split("-"); | |
m3ut = tmp[tmp.length - 1] | |
} | |
} | |
if (m3u[i].indexOf("http") > -1) { | |
url.push({ | |
title: "" + (m3ut != '' ? m3ut : m3ui), | |
file: m3u[i] | |
}); | |
m3ui++; | |
m3ut = '' | |
} | |
} | |
} else { | |
y = y.replace(/(\r\n\t|\n|\r\t)/gm, ""); | |
try { | |
url = JSON.parse(y) | |
} catch (e) { | |
PlaylistError(2) | |
} | |
} | |
if (o.controls) { | |
if (v.playlist.openplaylistbefore == 1) { | |
o.controls.PlaylistShow(2) | |
} | |
} | |
Start(); | |
MainResize(); | |
setTimeout(function () { | |
js("playlist") | |
}, 1) | |
} | |
} | |
function Start() { | |
url = o.actions.File(url); | |
url && url != '?' ? File(url) : '' | |
} | |
function onError(x, norld) { | |
log("Error: " + x); | |
var y = true; | |
var yy = true; | |
js("loaderror", x); | |
if (norld != 1 && v.reload == 1 && v.reloadfirst == 1) { | |
ErrorReload(); | |
return | |
} | |
if (urls) { | |
if (urls.length > 0) { | |
current_url++; | |
y = current_url > urls.length - 1; | |
if (y && urls.length > 1 && v.or0 > 0) { | |
if (o.or0 < v.or0) { | |
current_url = 0; | |
y = false | |
} | |
o.or0++ | |
} | |
if (y && v.tryotherquality == 1) { | |
if (o.files.length > 1) { | |
if (o.files_quality[o.current_quality].indexOf(Lang("loading_error")) == -1) { | |
o.files_quality[o.current_quality] = o.files_quality[o.current_quality] + ' (' + Lang("loading_error") + ')' | |
} | |
if (o.current_quality > 0) { | |
yy = false; | |
o.actions.SetQuality(o.current_quality - 1); | |
FileTo() | |
} else { | |
if (o.files_quality[o.current_quality + 1].indexOf(Lang("loading_error")) == -1) { | |
yy = false; | |
o.actions.SetQuality(o.current_quality + 1); | |
FileTo() | |
} | |
} | |
} | |
} | |
if (!y) { | |
var z = false; | |
o.seekto > 0 || !o.start || media.isLive() ? '' : o.seekto = Time(); | |
if (o.file_type != FileType(urls[current_url]) || o.file_type != 'native') { | |
if (o.play) { | |
o.actions.Stop(); | |
z = true | |
} | |
} | |
if (v.filerorto > 0) { | |
clearTimeout(o.errorto); | |
o.errorto = setTimeout(ErrorOr, v.filerorto * 1000) | |
} else { | |
ErrorOr() | |
} | |
} else { | |
if (v.reload == 1 && yy && v.reloadfirst != 1) { | |
y = false; | |
ErrorReload() | |
} | |
} | |
} | |
} | |
if (y && yy && x) { | |
ErrorMsg(x, true) | |
} | |
}; | |
function ErrorOr() { | |
log("Alternative source", o.seekto); | |
File('or'); | |
o.start && !o.vast ? media.Play() : ''; | |
FileTo() | |
} | |
function ErrorMsg(x, mr) { | |
gaTracker("error", "Error", true); | |
if (v.alerts == 1 && !o.media_error) { | |
if (v.alert404 == 1) { | |
o.alert.txt(v.alert404text) | |
} else { | |
o.alert.txt(x) | |
} | |
if (v.alert404v == 1 && exist(v.alert404video)) { | |
o.err404v = new PluginErrorVideo(); | |
o.actions.HidePoster() | |
} | |
} | |
mr ? o.media_error = true : ''; | |
if (o.play) { | |
o.actions.StopWaiting(); | |
o.controls.Pause() | |
} | |
exist(o.poster) && !exist(o.err404v) ? o.actions.ShowPoster() : ''; | |
js("error", x) | |
} | |
function ErrorReload() { | |
rldcnt++; | |
log("Error Reload Timeout " + rldcnt); | |
o.play ? o.rldplay = 1 : ''; | |
exist(o.reloadto) ? clearTimeout(o.reloadto) : ''; | |
o.reloadto = setTimeout(ReloadTimeout, v.reloadtimeout * 1000) | |
} | |
function ReloadTimeout() { | |
var x = existv(v.reloadtimes, 10); | |
if (o.play || o.rldplay == 1) { | |
o.rldplay = 0; | |
if (rldcnt < x) { | |
o.actions.Reload() | |
} else { | |
if (v.reloadfirst == 1) { | |
onError(media.errorMessage(), 1) | |
} else { | |
ErrorMsg('Reload Error ' + media.errorMessage()) | |
} | |
} | |
} | |
} | |
this.onError = function (x) { | |
onError(x ? x : media.errorMessage()) | |
}; | |
this.onEnded = function (y) { | |
log("Ended"); | |
_ended = true; | |
clearTimeout(hlsend_to); | |
var x = false; | |
if (Duration() > 0 && !o.casting && !y) { | |
var time = o.current_time; | |
if (time + 10 < Duration()) { | |
log('Break (recovery)'); | |
js("recovery"); | |
media.Play(); | |
media.Seek(time); | |
x = true | |
} | |
} | |
if (!x) { | |
o.actions.Ended(); | |
js("end") | |
} | |
}; | |
this.onPlay = function () { | |
if (v.posterhidepause == 1) { | |
exist(o.poster) ? o.actions.ShowPoster() : '' | |
} | |
v.posterhide == 1 ? o.actions.HidePoster() : ''; | |
o.controls.Play(); | |
o.actions.onPlayTag(); | |
if (v.tags == 1 && exist(v.tagsurl)) { | |
if (v.tagsurl.length > 5) { | |
RadioTags(); | |
clearInterval(_tags); | |
_tags = setInterval(RadioTags, v.tagsinterval * 1000) | |
} | |
} | |
js("play") | |
}; | |
this.NativeControls = function () { | |
if (v.nativecontrolsmobile == 1 && o.tagvideo) { | |
if (o.actions.NativeControls()) { | |
o.nativecontrols = media.nativeControls(); | |
o.controls.refresh() | |
} | |
} | |
o.checknative = true | |
}; | |
this.onPause = function () { | |
o.actions.Pause() | |
}; | |
this.onSeeking = function () { | |
log("Seeking") | |
}; | |
this.onSeeked = function () { | |
log("Seeked"); | |
o.actions.Seeked(); | |
exist(o.seeking_time) ? js("seek", o.seeking_time) : '' | |
}; | |
this.onMeta = function () { | |
log("Metadata"); | |
rldcnt = 0; | |
o.actions.Metadata() | |
}; | |
this.onDuration = function () { | |
if (media) { | |
log("Duration", Duration()); | |
o.actions.Duration(Time(), Duration()); | |
js("duration", Duration()); | |
rldcnt = 0; | |
clearTimeout(o.reloadto); | |
if (exist(o.restart_audio)) { | |
o.actions.SetAudioTrack(o.restart_audio); | |
o.restart_audio = null | |
} | |
} | |
}; | |
function Time() { | |
var x = media.time(); | |
return x | |
} | |
function Duration() { | |
var x = media.duration(); | |
return x | |
} | |
this.onVolume = function () { }; | |
this.onWaiting = function () { | |
log("Waiting"); | |
o.actions.Waiting(); | |
js("waiting") | |
}; | |
this.onTimeupdate = function () { | |
if (_lastime != Time()) { | |
if (!o.curtain) { | |
o.actions.StopWaiting(); | |
if (_lastime == 0) { | |
if (v.posterhide == 1 && v.posterhidestart == 1) { | |
o.actions.HidePoster() | |
} | |
} | |
} | |
} | |
_lastime = Time(); | |
var dur = Duration(); | |
js("time", _lastime); | |
if (v.pip.on == 1) { | |
if (typeof (PluginPip) == 'function') { | |
if (!media2 && v.pip.custom != 1 && v.file2 && v.file2 != '' && _lastime > 0) { | |
o.mediapip = new PluginPip(); | |
media2 = o.mediapip.create() | |
} | |
} | |
} | |
if (o.file_type == "hls" && o.system.safari && dur > 0) { | |
if (o.play && _lastime > dur - 1) { | |
clearTimeout(hlsend_to); | |
hlsend_to = setTimeout(ChkHlsEnd, 2000) | |
} | |
} | |
}; | |
function ChkHlsEnd() { | |
if (!_ended) { | |
o.actions.Pause(); | |
o.media.onEnded() | |
} | |
} | |
this.onYoutubeReady = function () { | |
if (o.file_type == "youtube") { | |
media ? media.YoutubeReady() : '' | |
} | |
}; | |
this.playByYoutubeId = function (x) { | |
o.actions.Stop(); | |
media.playId(x) | |
}; | |
this.YoutubeReady = function () { | |
if (o.file_type == "youtube" && media) { | |
return media.ready() | |
} else { | |
return true | |
} | |
}; | |
this.getHLS = function () { | |
return media.getHLS() | |
}; | |
this.getDASH = function () { | |
return media.getDASH() | |
}; | |
this.SetQuality = function (x) { | |
log("Quality", x); | |
if ((o.file_type == "native" || o.file_type == o.ws || (o.file_type == "hls" && (v.hlsquality == 0 || HlsLevelsLength() < 2)) || (o.file_type == "dash" && (v.dashquality == 0 || DashLevelsLength() < 2))) && exist(o.files[x])) { | |
var time = this.time(); | |
o.seekto > 0 ? '' : o.seekto = time; | |
o.actions.Seek(time, false); | |
File(o.files[x], true); | |
var y = true; | |
if (v.settings) { | |
if ((v.settings.qualitypause == 1 && !o.play) || !o.start) { | |
y = false | |
} | |
} | |
if (y) { | |
o.actions.Play() | |
} | |
} | |
if (o.file_type == "hls" && v.hlsquality == 1 && HlsLevelsLength() > 1) { | |
media.setHlsQuality(x) | |
} else if (o.file_type == "dash" && v.dashquality == 1 && DashLevelsLength() > 1) { | |
media.setDashQuality(x) | |
} else if (o.file_type == "youtube" || o.file_type == "dm") { | |
media.setQuality(x) | |
} | |
}; | |
this.renameQualities = function (x, y) { | |
return RenameQualities(x, y) | |
}; | |
this.renameTracks = function (x, y) { | |
return RenameTracks(x, y) | |
}; | |
function RenameQualities(x, y) { | |
var r = x.height + 'p'; | |
if (x.height < 200) { | |
r = '160p' | |
} else if (x.height >= 200 && x.height <= 300) { | |
r = '240p' | |
} else if (x.height > 300 && x.height <= 400) { | |
r = '360p' | |
} else if (x.height > 400 && x.height <= 500) { | |
r = '480p' | |
} else if (x.height > 500 && x.height <= 600) { | |
r = '540p' | |
} else if (x.height > 600 && x.height <= 900) { | |
r = '720p' | |
} else if (x.height > 900 && x.height <= 1200) { | |
r = '1080p' | |
} else if (x.height > 1200 && x.height <= 1800) { | |
r = '1440p' | |
} else if (x.height > 1800) { | |
r = '2160p' | |
} | |
if (x.width == 426 && x.height <= 240) { | |
r = '240p' | |
} else if (x.width == 640 && x.height <= 360) { | |
r = '360p' | |
} else if (x.width == 854 && x.height <= 480) { | |
r = '480p' | |
} else if (x.width == 1280 && x.height <= 720) { | |
r = '720p' | |
} else if (x.width == 1920 && x.height <= 1080) { | |
r = '1080p' | |
} else if (x.width == 2560 && x.height <= 1440) { | |
r = '1440p' | |
} else if (x.width == 3840 && x.height <= 2160) { | |
r = '2160p' | |
} | |
if (v.settings.customqualities == 1 && exist(v.settings['name' + r])) { | |
r = v.settings['name' + r] | |
} else { | |
if (y == 1) { | |
r = Lang(r) | |
} | |
if (y == 2 && exist(x.bitrate)) { | |
r = parseInt(x.bitrate / 1000) + ' ' + Lang('kbps') | |
} | |
} | |
return r | |
}; | |
function RenameTracks(x, y) { | |
var r = x.toLowerCase(); | |
if (r == "eng" || r == "en") { | |
x = "English" | |
} else if (r == "rus" || r == "ru") { | |
x = "РуÑÑкий" | |
} | |
if (typeof (v.rename_audio) == "object") { | |
if (exist(v.rename_audio[x])) { | |
x = v.rename_audio[x] | |
} else { | |
x = existv(v.rename_audio[y.toString()], x) | |
} | |
} | |
return x | |
}; | |
function NativeSubtitle() { | |
if (o.tagvideo && o.subs) { | |
media.removeTracks(); | |
for (var i = 0; i < o.subs.length; i++) { | |
media.addTrack(o.subs[i], o.files_subtitle[i], (i == o.current_subtitle)) | |
} | |
} | |
} | |
this.SetSpeed = function (x) { | |
log("Speed", x); | |
media ? media.setSpeed(x) : ''; | |
if (v.pip.on == 1) { | |
if (media2) { | |
media2.setSpeed(x) | |
} | |
} | |
}; | |
this.nativeSubtitle = function () { | |
NativeSubtitle() | |
}; | |
this.removeNativeSubtitle = function () { | |
media.removeTracks() | |
}; | |
this.SetAudioTrack = function (x) { | |
log("Audiotrack", x); | |
if (o.audiotracks.length > 0) { | |
if (o.audiotracks[x]) { | |
var time = this.time(); | |
o.seekto > 0 ? '' : o.seekto = time; | |
o.actions.Seek(time, false); | |
File(o.audiotracks[x], true); | |
o.actions.Play() | |
} | |
} else { | |
if (o.file_type == "hls" && v.hlsaudio == 1) { | |
media.setHlsAudioTrack(x) | |
} else if (o.file_type == "dash" && v.dashaudio == 1) { | |
media.setDashAudioTrack(x) | |
} | |
} | |
}; | |
this.getQuality = function () { | |
var x = o.files_quality[o.current_quality]; | |
x == undefined ? x = '' : ''; | |
var y = autoQuality() && v.hlsautoquality == 1 && v.hlsquality == 1 && x != Lang("auto"); | |
return (y ? '' + Lang("auto") + ' ' : '') + x | |
}; | |
this.getAudioTrack = function () { | |
var x = o.files_audiotrack[o.current_audiotrack]; | |
x == undefined ? x = '' : ''; | |
return x | |
}; | |
this.autoQuality = function () { | |
return autoQuality() | |
}; | |
function autoQuality() { | |
var x = false; | |
if (media) { | |
if (o.file_type == "youtube") { | |
x = media.auto() | |
} | |
if (o.file_type == "hls" && v.hlsquality == 1 && HlsLevelsLength() > 1 && v.hlsautoquality == 1) { | |
x = media.auto() | |
} | |
if (o.file_type == "dash" && v.dashquality == 1 && DashLevelsLength() > 1) { | |
x = media.auto() | |
} | |
} | |
return x | |
} | |
function HlsLevelsLength() { | |
if (o.file_type == "hls") { | |
return media.HlsLevelsLength() | |
} else { | |
return 0 | |
} | |
} | |
function DashLevelsLength() { | |
if (o.file_type == "dash") { | |
return media.DashLevelsLength() | |
} else { | |
return 0 | |
} | |
}; | |
this.ratio = function () { | |
return o.tagvideo ? media.ratio() : o.aspect | |
}; | |
this.resize = function (x) { | |
if (media && (o.file_type == "youtube" || o.file_type == "vimeo" || exist(v.ratio))) { | |
media.resize() | |
} | |
if (v.screenmarginbottom > 0) { | |
css(o.mediacontainer, { | |
"height": (o.fullscreen ? "100%" : o.normal_h - v.screenmarginbottom) | |
}) | |
} | |
if (o.media2 && v.pip.movable == 1) { | |
o.mediapip.resize() | |
} | |
if (v.poster_float == 1) { | |
FloatPosterScale() | |
} | |
if (o.v360) { | |
o.v360.resize() | |
} | |
}; | |
this.size = function () { | |
return media ? media.size() : {} | |
}; | |
this.iosfull = function () { | |
media.iosfull() | |
}; | |
this.reload = function () { | |
log('reload'); | |
o.reloadTimer = 0; | |
o.start ? v.autoplay = 1 : ''; | |
o.actions.Waiting(); | |
if (url && v.rldnornd != 1) { | |
if (url.indexOf('(random)') == -1) { | |
url = url + (url.indexOf('?') == -1 ? '?' : '&') + 'rand=(random)' | |
} | |
} | |
if (url) { | |
if (o.tagvideo) { | |
media.src(url); | |
this.Play() | |
} else { | |
File(url) | |
} | |
} | |
}; | |
if (!exist(o.poster)) { | |
CreatePoster() | |
} | |
if (exist(v.poster)) { | |
if (v.poster != '') { | |
Poster(v.poster, o.poster, v.poster_scale); | |
if (v.posterhidepause == 1 && !o.start) { | |
hide(o.poster) | |
} | |
} else { | |
v.poster = null | |
} | |
} | |
function Status() { | |
_status = media ? media.status() : '' | |
} | |
function ParseUrl(url) { | |
urls = url.split(" or "); | |
for (var i = 0; i < urls.length; i++) { | |
if (urls[i].indexOf(" and ") > -1) { | |
urls_and = urls[i].split(" and "); | |
urls[i] = urls_and[random(0, urls_and.length - 1)] | |
} | |
if (exist(v.prefile) && urls[i].indexOf("//") == -1) { | |
urls[i] = v.prefile + urls[i] | |
} | |
} | |
current_url = 0 | |
} | |
function Timer() { | |
Status(); | |
if (_status == "playing" || o.casting) { | |
o.actions.Playing() | |
} | |
if (_status != "") { | |
o.actions.Loading() | |
} | |
} | |
function CreatePoster() { | |
if (o.poster) { | |
o.frame.removeChild(o.poster) | |
} | |
o.poster = createElement("div"); | |
css(o.poster, { | |
"pointer-events": "none", | |
"opacity": v.poster_a, | |
transition: "opacity 0.5s" | |
}); | |
if (v.poster_float == 1) { | |
PluginFloatPoster() | |
} else { | |
css(o.poster, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': '100%', | |
'height': '100%' | |
}) | |
} | |
o.frame.appendChild(o.poster) | |
} | |
function File(x, y, crt) { | |
clearTimeout(hlsend_to); | |
v.file2_separator == '' ? v.file2_separator = ';' : ''; | |
if (x.indexOf('{') > -1 && x.indexOf('}') > -1 && x.indexOf(v.file2_separator) > -1) { | |
var z = x.split(v.file2_separator); o.audiotracks = []; | |
for (var i = 0; i < z.length; i++) { | |
o.files_audiotrack[i] = z[i].substr(z[i].indexOf("{") + 1, z[i].indexOf("}") - 1); | |
o.audiotracks[i] = z[i].substr(z[i].indexOf("}") + 1); | |
if (exist(v.default_audio)) { | |
if (v.default_audio == o.files_audiotrack[i]) { | |
o.current_audiotrack = i | |
} | |
} | |
} | |
x = o.audiotracks[o.current_audiotrack] | |
} !exist(urls) ? urls = [] : ''; | |
o.fileTimeout ? clearTimeout(o.fileTimeout) : ''; | |
x && x != 'or' && x != 'x' ? ParseUrl(x) : ''; | |
var ft = o.file_type; | |
if (urls.length > 0) { | |
o.file_type = FileType(urls[current_url]); | |
var create = false; | |
if (crt) { | |
create = true | |
} | |
url = urls[current_url]; | |
if (url) { | |
url = url.replace(/\(random\)/g, Math.random()) | |
} else { | |
url = urls[0] | |
} | |
if (!create && x != 'x' && media && o.file_type == ft && (ft == "native" || (ft == "vimeo" && !o.system.mobile) || (ft == "youtube" && o.start && !_stopped) || ft == "dm" || ft == "hls" || ft == "dash")) { | |
media.src(url); | |
log("src") | |
} else { | |
log("New"); | |
RemoveMedia(); | |
CreateMedia(url) | |
} | |
if (o.speed1) { | |
if (o.line_speed) { | |
media.setSpeed(o.custom_speed) | |
} else { | |
if (o.current_speed != o.speed1) { | |
media.setSpeed(o.files_speed[o.current_speed]) | |
} | |
} | |
} | |
} | |
if (!y) { | |
clearInterval(o.timerInterval); | |
o.timerInterval = setInterval(Timer, o.timerTime); | |
if (!exist(v.subtitle) && v.sub_upload == 1 && v.sub_upload0 == 1) { | |
v.subtitle = '' | |
} | |
if (exist(v.subtitle)) { | |
o.actions.Subtitle(v.subtitle) | |
} | |
if (v.hidevideo == 1) { | |
if (v.nativecontrolsmobile == 1 && o.system.mobile) { } else { | |
if (o.file_type == "youtube") { | |
css(o.mediacontainer, { | |
"top": -3000, | |
"left": -3000 | |
}) | |
} else { | |
hide2(o.mediacontainer) | |
} | |
v.toolbar.hide = 0 | |
} | |
} | |
} | |
} | |
function FileType(x) { | |
var type = "native"; | |
if (x) { | |
if (x.indexOf(".m3u8") > 0) { | |
type = "hls" | |
} else if (x.indexOf(".mpd") > 0) { | |
type = "dash" | |
} else if (x.indexOf("w") == 0 && x.indexOf("s") == 1) { | |
type = o.ws | |
} else if (x.indexOf('youtube.com/') > -1 || x.indexOf('youtu.be/') > -1) { | |
if (typeof (MediaYoutube) == 'function') { | |
type = "youtube"; | |
if (v.youtubeposter == 1) { | |
var y = 'https://img.youtube.com/vi/' + YoutubeID(x) + '/'; | |
imageExists(y + 'maxresdefault.jpg', function (z) { | |
z > 100 ? v.poster = y + 'maxresdefault.jpg' : v.poster = y + 'hqdefault.jpg'; | |
if (o.playlist_dic) { | |
o.playlist_dic[o.plid]['poster'] = v.poster | |
} | |
v.autoplay == 1 || o.start ? '' : Poster(v.poster, o.poster, v.poster_scale) | |
}) | |
} | |
} else { | |
log("No YouTube") | |
} | |
} else if (v.vimeo == 1 && x.indexOf('vimeo.com/') > -1) { | |
type = "vimeo" | |
} else if (v.dm == 1 && x.indexOf('dailymotion.com') > -1) { | |
type = "dm" | |
} else if (v.pjsframe == 1) { | |
if (typeof (PjsFramed) == 'function') { | |
PjsFramed(x) ? type = "pjs" : '' | |
} | |
} | |
} | |
o.tagvideo = type == "native" || type == "hls" || type == "dash" || type == o.ws; | |
return type | |
} | |
function imageExists(url, callback) { | |
var img = new Image(); | |
img.onload = function () { | |
callback(this.height) | |
}; | |
img.src = url | |
} | |
function CreateMedia(x) { | |
o.file_type = FileType(x); | |
if (o.tagvideo) { | |
media = new MediaVideo(x, o.mediacontainer, false) | |
} | |
if (o.file_type == "youtube") { | |
media = new MediaYoutube(x, o.mediacontainer) | |
} | |
if (v.vimeo == 1 && o.file_type == "vimeo") { | |
media = new MediaVimeo(x, o.mediacontainer) | |
} | |
if (o.file_type == "pjs") { | |
media = new MediaPjs(x) | |
} | |
if (o.file_type == "dm") { | |
media = new MediaDaily(x, o.mediacontainer) | |
} | |
o.controls ? o.controls.UpdateSettings() : ''; | |
var t = 0; | |
if (exist(v.duration)) { | |
if (o.continue && v.timestore == 1 && !o.start) { | |
t = o.continue.flag().t | |
} | |
setTimeout(function () { | |
o.actions.Duration(t, v.duration) | |
}, 100) | |
} | |
} | |
function RemoveMedia() { | |
if (media) { | |
media.Remove(); | |
media = null; | |
_status = "ended" | |
} | |
if (media2) { | |
media2.Remove(); | |
media2 = null; | |
media2 = undefined; | |
o.mediapip.remove(); | |
o.media2 = null; | |
o.mediapip = null | |
} | |
}; this.Remove = function () { | |
RemoveMedia() | |
}; this.RemoveAll = function () { | |
urls = []; | |
RemoveMedia() | |
}; this.File = function (x, y, z) { | |
File(x, y, z) | |
}; this.Poster = function (x) { | |
Poster(x, o.poster, v.poster_scale) | |
}; this.Play = function () { | |
if (media) { | |
_ended = false; | |
_stopped = false; | |
if (o.casting) { | |
o.chromecast.Play() | |
} else { | |
media.Play(); | |
v.posterhide == 1 ? o.actions.HidePoster() : '' | |
} | |
if (exist(media2)) { | |
media2.Play() | |
} | |
if (o.channels) { | |
if (o.tagvideo) { | |
if (o.clicktime > 0 && !o.channels.Created()) { | |
o.channels.Update() | |
} | |
} else { | |
o.files_channel = []; | |
o.controls.SettingChanged("channel") | |
} | |
} | |
if (o.tagvideo && v.volumegain > -1 && !o.gained && !o.system.ios) { | |
if (o.clicktime > 0) { | |
media.Gain() | |
} | |
} | |
FileTo() | |
} else { | |
setTimeout(this.Play, 500) | |
} | |
}; | |
function FileTo() { | |
if (v.fileto > 0 && urls.length > 1) { | |
if (Duration() == 0 || v.filetod == 1) { | |
clearTimeout(o.fileTimeout); | |
o.fileTimeout = setTimeout(FileTimeout, v.fileto * 1000) | |
} | |
} | |
} | |
function FileTimeout() { | |
if (o.play && (Duration() == 0 || v.filetod == 1) && Time() == 0) { | |
if (media) { | |
if (media.loaded() == 0 && current_url != urls.length - 1) { | |
onError('File Timeout') | |
} | |
} | |
} | |
} | |
this.PipSwitch = function (event) { | |
if (o.media2) { | |
if (v.pip.movable == 1) { | |
if (o.moving[o.media2] > 2) { | |
return | |
} | |
} | |
if (event) { | |
event.stopPropagation(); | |
window.event ? window.event.cancelBubble = true : '' | |
} | |
var tmp = media; | |
media.ChangePip(true, o.media2); | |
media2.ChangePip(false, o.mediacontainer); | |
media = media2; | |
media2 = tmp; | |
media.Play(); | |
media2.Play(); | |
js("pip") | |
} | |
}; this.reYT = function () { | |
media.src(url) | |
}; this.ToolbarHide = function () { | |
v.effects == 1 ? o.effects.api("hide") : ''; | |
o.toolbarhidden = true | |
}; this.ToolbarShow = function () { | |
if (v.toolbar.resizeme) { | |
v.toolbar.resizeme = false; | |
if (o.controls) { | |
o.controls.resizeFromText(1); | |
o.controls.resizetext() | |
} | |
} | |
o.toolbarhidden = false | |
}; this.PipToggle = function () { | |
if (o.media2 && o.mediapip) { | |
o.mediapip.toggle() | |
} | |
}; this.Airplay = function () { | |
if (o.tagvideo && o.airplay) { | |
o.airplayed = true; | |
media.airplay() | |
} | |
}; this.PipWebkit = function () { | |
if (o.tagvideo && o.pipwebkit) { | |
media.pipwebkit() | |
} | |
}; this.BeforeVast = function () { | |
if (v.vast_poster == 1 && exist(v.vast_posterurl)) { | |
if (exist(o.vast_poster)) { | |
o.vast_poster.show() | |
} else { | |
if (typeof (PlgnVstPstr) == 'function') { | |
o.vast_poster = new PlgnVstPstr() | |
} | |
} | |
} | |
VstLdTxt(); | |
if (media) { | |
datetime(0); | |
media.BeforeVast() | |
} | |
}; this.AfterVast = function () { | |
o.vast_poster ? o.vast_poster.hide() : ''; | |
media ? media.AfterVast() : '' | |
}; this.VstLdTxt = function (x) { | |
VstLdTxt(x) | |
}; | |
function VstLdTxt(x) { | |
if (v.vast_loadtxtd == 1 && exist2(v.vast_loadtxt)) { | |
if (exist(o.vast_loadtxt)) { | |
o.vast_loadtxt.show(x) | |
} else { | |
if (typeof (PlgnVstLdtx) == 'function') { | |
o.vast_loadtxt = new PlgnVstLdtx() | |
} | |
} | |
} | |
} | |
this.Pause = function () { | |
if (o.casting) { | |
o.chromecast.Pause() | |
} else { | |
media ? media.Pause() : log("nomedia") | |
} | |
if (exist(o.media2)) { | |
media2.Pause() | |
} | |
}; this.Recover = function () { | |
_stopped = true; | |
o.actions.Seek(0, false); | |
exist(o.poster) ? o.actions.ShowPoster() : ''; | |
File('x') | |
}; this.Toggle = function () { | |
media ? media.Toggle() : '' | |
}; this.Seek = function (x) { | |
if (media) { | |
if (o.casting) { | |
o.chromecast.Seek(x) | |
} else { | |
media.Seek(x); | |
if (v.pip.on == 1) { | |
if (media2) { | |
media2.Seek(x) | |
} | |
} | |
} | |
} | |
}; this.Mute = function () { | |
if (media) { | |
media.Mute(); | |
o.casting ? o.chromecast.Mute() : ''; | |
log("mute") | |
} | |
if (v.pip.on == 1 && v.pip.nomute == 1) { | |
if (media2) { | |
media2.Mute() | |
} | |
} | |
}; this.Unmute = function () { | |
if (media) { | |
media.Unmute(); | |
o.casting ? o.chromecast.Unmute() : ''; | |
log("unmute") | |
} | |
if (v.pip.on == 1 && v.pip.nomute == 1) { | |
if (media2) { | |
media2.Unmute() | |
} | |
} | |
}; this.Volume = function (x) { | |
media ? media.Volume(x) : ''; | |
if (v.pip.on == 1) { | |
if (v.pip.nomute == 1 && media2) { | |
media2.Volume(x) | |
} | |
} | |
if (o.casting) { | |
o.chromecast.Volume(x) | |
} | |
}; this.isPlaying = function () { | |
return media ? media.isPlaying() : false | |
}; this.isLive = function () { | |
return media ? media.isLive() : false | |
}; this.status = function () { | |
return _status | |
}; this.ended = function () { | |
return _ended | |
}; this.time = function () { | |
var x = 0; | |
if (media) { | |
x = Time(); | |
if (o.casting) { | |
var y = o.chromecast.Time(); | |
y ? x = y : '' | |
} else { | |
if (Duration() > 0 && x != Duration()) { | |
o.current_time = x + 0.0001 | |
} | |
} | |
return x | |
} else { | |
return 0 | |
} | |
}; this.duration = function () { | |
var x = 0; | |
if (media) { | |
x = Duration(); | |
x == 0 && exist(v.duration) ? x = v.duration * 1 : ''; | |
if (o.casting) { | |
var y = o.chromecast.Duration(); | |
y ? x = y : '' | |
} | |
} | |
return x | |
}; this.loaded = function () { | |
return media ? media.loaded() : 0 | |
}; this.flip = function () { | |
o.mediascale.flip = o.mediascale.flip ? false : true; | |
css(o.mediacontainer, { | |
"transform": (o.mediascale.flip ? "scaleX(-1)" : "scaleX(1)") | |
}) | |
}; this.createposter = function () { | |
CreatePoster() | |
}; this.Preload = function () { | |
if (o.tagvideo) { | |
media.preload() | |
} | |
}; this.menufltr = function (x, y) { | |
if (x == 'scale') { | |
if (y == 1) { | |
Scale(v.settings.scale / 100) | |
} | |
if (y == 2) { | |
Scale(-v.settings.scale / 100) | |
} | |
if (y == 3) { | |
o.media.normalscale() | |
} | |
} else { | |
if (o.tagvideo) { | |
if (!o.fltrs[x]) { | |
if (x == 'sepia') { | |
o.fltrs[x] = 0 | |
} else { | |
o.fltrs[x] = 1 | |
} | |
} | |
if (y == 1) { | |
o.fltrs[x] += v.settings[x] / 100 | |
} | |
if (y == 2) { | |
o.fltrs[x] -= v.settings[x] / 100 | |
} | |
if (y == 3) { | |
if (x == 'sepia') { | |
o.fltrs[x] = 0 | |
} else { | |
o.fltrs[x] = 1 | |
} | |
} !o.cftlr ? o.cftlr = [] : ''; | |
o.cftlr[x] = x + '(' + parseInt(o.fltrs[x] * 100) + '%) '; | |
var cf = ''; | |
for (var i in o.cftlr) { | |
cf += o.cftlr[i] | |
} | |
css(media.tag(), { | |
'filter': cf | |
}); | |
o.controls.MenuProc(x) | |
} | |
} | |
}; this.scale = function (x) { | |
Scale(x) | |
}; | |
function Scale(x) { | |
if (String(x).indexOf(":") > 0) { | |
var y = x.split(":"); | |
var z0 = o.screen_w / o.screen_h; | |
var z1 = o.media.size(); | |
if (z1.width > 0) { | |
z0 = z1.width / z1.height | |
} | |
var z = y[0] / y[1]; | |
if (z0 != z) { | |
if (o.tagvideo) { | |
media.ObjectFit() | |
} | |
var w2 = o.screen_h * z; | |
var x2 = w2 / o.screen_w; | |
var h2 = o.screen_w / z; | |
var y2 = h2 / o.screen_h; | |
if (x2 < 1) { | |
o.mediascale.x0 = o.mediascale.x = parseFloat(x2); | |
o.mediascale.y = 1 | |
} else { | |
o.mediascale.x = 1; | |
o.mediascale.y0 = o.mediascale.y = parseFloat(y2) | |
} | |
css(o.mediacontainer, { | |
"transform": "scaleX(" + o.mediascale.x + ") scaleY(" + o.mediascale.y + ")" | |
}); | |
o.custom_aspect = x | |
} | |
} else { | |
o.mediascale.x += parseFloat(x); | |
o.mediascale.y += parseFloat(x); | |
css(o.mediacontainer, { | |
"transform": "scaleX(" + o.mediascale.x + ") scaleY(" + o.mediascale.y + ")" | |
}) | |
} | |
if (v.hotkey.scaledrag == 1) { | |
if (!o.mediadrag) { | |
if (o.mediascale.x > 0 || o.mediascale.y > 1) { | |
PluginMovable(o.mediacontainer, 'o.dragging'); | |
o.mediadrag = true | |
} | |
} | |
xy00() | |
} | |
o.controls.MenuProc('scale') | |
}; this.normalscale = function () { | |
if (o.tagvideo) { | |
media.ObjectFit() | |
} | |
o.mediascale.x = o.mediascale.x0; | |
o.mediascale.y = o.mediascale.y0; | |
css(o.mediacontainer, { | |
"transform": "scaleX(" + o.mediascale.x + ") scaleY(" + o.mediascale.y + ")" | |
}); | |
o.controls.MenuProc('scale'); | |
o.custom_aspect = null; | |
xy00() | |
}; | |
function xy00() { | |
if (o.mediadrag && v.hotkey.scaledrag0 != 1) { | |
if (o.mediascale.x == 1 && o.mediascale.y == 1) { | |
css(o.mediacontainer, { | |
"top": 0, | |
"left": 0 | |
}) | |
} | |
} | |
}; this.hlsDashSub = function (x, y) { | |
media.hlsDashSub(x, y) | |
}; this.currentFile = function () { | |
return currentFile() | |
}; | |
function currentFile() { | |
return urls ? (urls.length > 0 ? (urls[current_url] ? urls[current_url] : '') : '') : '' | |
}; this.urlsl = function () { | |
return urls.length | |
}; this.tag = function () { | |
return media ? media.tag() : false | |
}; this.captions = function () { | |
if (o.tagvideo) { | |
media.captions() | |
} | |
}; this.onDash = function () { | |
media.onDash() | |
}; | |
function RadioTags() { | |
var xhr = XHR(v.tagsurl + '?url=' + urls[current_url]); | |
xhr.onload = function () { | |
if (this.readyState == 4 && this.status == 200) { | |
if (this.responseText) { | |
v.title = this.responseText; | |
o.actions.Title('title') | |
} | |
} | |
}; | |
xhr.send() | |
} | |
}; | |
var MediaVideo = function (url, container, pip) { | |
var pjstg = createElement(v.hidevideo == 1 ? "audio" : "video"); | |
var hls_config; | |
var pipto = 0; | |
var hls; | |
var is_hls = false; | |
var is_hls2 = false; | |
var hls_started = false; | |
var hls_created = false; | |
var hls_force = -1; | |
var dash; | |
var dash_created = false; | |
var ws; | |
var ws_created = false; | |
var is_dash = false; | |
o.live = false; | |
var is_sleep = 0; | |
var is_ws = false; | |
var error; | |
var error_time; | |
var unmuteplease = false; | |
var pip_quality = -1; | |
var pause_before_vast = -1; | |
var sleep_timeout; | |
var _hlssubtracks; | |
var _seekaftervast; | |
var urlmse; | |
var mimeCodec = 'video/mp4;codecs = "avc1.42E01E, mp4a.40.2"'; | |
var nops = false; | |
css(pjstg, { | |
'position': 'static', | |
'width': '100%', | |
'height': '100%', | |
'object-fit': 'contain', | |
'transition': "filter 0.2s linear", | |
'min-height': 'auto', | |
'max-height': 'none', | |
'min-width': 'auto', | |
'max-width': 'none' | |
}); | |
ObjectFit(); | |
if (o.system.iphone && v.autoplay == 1 && v.autoplaymute == 1) { | |
if (!o.start && v.preroll) { | |
attr(pjstg, { | |
'playsinline': 1 | |
}) | |
} else { | |
o.muted = true; | |
o.controls ? o.controls.Mute() : ''; | |
attr(pjstg, { | |
'muted': 1, | |
'playsinline': 1, | |
'autoplay': 1 | |
}) | |
} | |
} else { | |
if (v.playsinlineonmobile == 1 && o.system.mobile) { | |
attr(pjstg, { | |
'playsinline': 1 | |
}) | |
} | |
if (!o.system.tv) { | |
attr(pjstg, { | |
'preload': (v.preload == 1 && v.autoplay == 0 ? 'metadata' : 'none') | |
}) | |
} | |
} | |
if (v.tagcors == 1) { | |
attr(pjstg, { | |
"crossorigin": "anonymous", | |
"crossOrigin": "anonymous" | |
}) | |
} | |
attr(pjstg, { | |
'src': url, | |
'x-webkit-airplay': 'allow', | |
'disableRemotePlayback': 'true' | |
}); | |
if (v.drunchr != 1) { | |
attr(pjstg, { | |
'disableRemotePlayback': 'true' | |
}) | |
} | |
if (v.ynxnopip == 1) { | |
attr(pjstg, { | |
'pip': 'false' | |
}) | |
} | |
if (pip) { | |
pjstg.autoplay = true; | |
if (v.pip.nomute != 1 || v.autoplay == 1) { | |
pjstg.muted = true | |
} | |
} | |
if (v.nativenodownload == 1) { | |
attr(pjstg, { | |
'controlsList': 'nodownload' | |
}) | |
} | |
tagSrc(); | |
if (v.taginframe == 1) { | |
var tagframe = createElement("iframe"); | |
attr(tagframe, { | |
"scrolling": "no", | |
"allowfullscreen": "true", | |
"allowtransparency": "true", | |
"src": "" | |
}); | |
css(tagframe, { | |
"position": "absolute", | |
"width": "100%", | |
"height": "100%", | |
"border": 0 | |
}); | |
container.appendChild(tagframe); | |
var framei = window.setInterval(function () { | |
if (tagframe.contentWindow.document.readyState === "complete") { | |
window.clearInterval(framei); | |
css(tagframe.contentDocument.body, { | |
"padding": 0, | |
"margin": 0 | |
}); | |
tagframe.contentDocument.body.appendChild(pjstg) | |
} | |
}, 100) | |
} else { | |
container.appendChild(pjstg) | |
} | |
if (!exist(url)) { | |
url = '' | |
} | |
if (url.indexOf(".mpd") > 0) { | |
is_dash = true; | |
if (!o.dash) { | |
if (typeof PluginDash !== "undefined") { | |
o.dash = new PluginDash() | |
} | |
} | |
if (exist(o.dash)) { | |
if (!exist(window.dashjs)) { | |
o.dash.script() | |
} else { | |
CheckDash() | |
} | |
} | |
} else if (((options.hls == 1 && v.playerjscom != 1) || url.indexOf(".m3u8") > 0) && (o.compilation.indexOf("HLS") != -1 || exist(window.Hls))) { | |
is_hls = true; | |
is_hls2 = true; | |
try { | |
if (exist(Hls)) { | |
if (!Hls.isSupported() || (o.system.safari && v.nativehlsinsafari == 1 && !o.system.ios) || (o.system.safari && o.system.ios && v.nativehlsios == 1) || (o.system.edge && v.nativehlsinedge == 1)) { | |
log('HLS support ', Hls.isSupported()); | |
is_hls = false | |
} else { | |
if (v.preload == 1 || v.autoplay == 1 || v.preloadhls == 1 || pip) { | |
CreateHLS(false) | |
} | |
} | |
} else { | |
is_hls = false | |
} | |
} catch (error) { | |
is_hls = false | |
} | |
} else if (url.indexOf("w") == 0 && url.indexOf("s") == 1 && v.flussonic == 1) { | |
is_ws = true; | |
CreateWS() | |
} | |
if (o.system.tv && v.autoplay == 1 && !is_hls && !is_dash && !is_ws) { | |
setTimeout(function () { | |
o.actions.MediaReady() | |
}, 100) | |
} | |
if (v.channels == 1) { | |
exist(o.channels) ? o.channels.Close() : ''; | |
o.channels = new PlugMediaChannels() | |
}; | |
this.onDash = function () { | |
CheckDash() | |
}; | |
function CheckDash() { | |
is_dash = true; | |
if (MseIsSupported()) { | |
if (v.preload == 1 || v.autoplay == 1 || v.preloaddash == 1) { | |
CreateDASH(false) | |
} | |
} else { | |
is_dash = false; | |
log("DASH not supported") | |
} | |
} | |
function CreateDASH(x) { | |
if (o.dash && !dash_created) { | |
o.dash.create(x, pjstg, url, pip); | |
exist(window.dashjs) ? dash_created = true : '' | |
} | |
} | |
function CreateHLS(x) { | |
log("HLS"); | |
if (o.files.length > 1) { | |
v.hlsquality = 0; | |
v.hlsquality_off = true | |
} else { | |
v.hlsquality_off ? v.hlsquality = 1 : '' | |
} | |
if (o.audiotracks.length > 1) { | |
v.hlsaudio = 0; | |
v.hlsaudio_off = true | |
} else { | |
v.hlsaudio_off ? v.hlsaudio = 1 : '' | |
} | |
o.hls_subs = false; | |
hls_force = -1; | |
var dontload = false; | |
if (v.preroll && v.hlsvastwait == 1) { | |
dontload = true; | |
v.hlsvastwait = 0 | |
} | |
hls_config = { | |
debug: (v.hlsdebug == 1 && !pip), | |
autoStartLoad: (v.preload == 1 || v.autoplay == 1 || pip || x) && !dontload, | |
maxBufferLength: 60, | |
maxMaxBufferLength: 60, | |
manifestLoadingTimeOut: (v.hlsmto > 0 ? v.hlsmto * 1000 : 40000), | |
fragLoadingTimeOut: (v.hlsfto > 0 ? v.hlsfto * 1000 : 40000), | |
enableWorker: false | |
}; | |
if (v.hlscltps == 1) { | |
hls_config.capLevelToPlayerSize = true | |
} | |
if (v.hlscookies == 1) { | |
hls_config['xhrSetup'] = function (xhr, url) { | |
xhr.withCredentials = true | |
} | |
} | |
if (exist(v.hlsconfig)) { | |
if (exist(v.hlsconfig.maxBufferLength)) { | |
if (v.hlsconfig.maxBufferLength > 600) { | |
v.hlsconfig.maxBufferLength = 600 | |
} | |
v.hlsconfig.maxMaxBufferLength = v.hlsconfig.maxBufferLength | |
} | |
if (exist(v.hlsconfig.customBuffer)) { | |
v.hlsconfig.maxMaxBufferLength = v.hlsconfig.maxBufferLength = v.hlsconfig.customBuffer | |
} | |
if (typeof v.hlsconfig == "object") { | |
for (var key in v.hlsconfig) { | |
hls_config[key] = v.hlsconfig[key] | |
} | |
} | |
} | |
hls = new Hls(hls_config); | |
js("hls", hls, 1); | |
hls.loadSource(url); | |
hls.attachMedia(pjstg); | |
hls.on(Hls.Events.MEDIA_ATTACHED, function () { | |
log("HLS attached") | |
}); | |
hls.on(Hls.Events.MANIFEST_LOADED, function (event, data) { | |
!pip ? o.actions.MediaReady() : '' | |
}); | |
hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) { | |
if (!pip && v.hlsquality == 1 && HlsLevelsLength() > 1) { | |
HlsQualityLevels(); | |
HlsLevel(); | |
o.controls ? o.controls.QualityChangedNoHand(o.current_quality) : '' | |
} | |
}); | |
hls.on(Hls.Events.LEVEL_SWITCH, function (event, data) { | |
HlsLevel() | |
}); | |
hls.on(Hls.Events.LEVEL_SWITCHED, function (event, data) { | |
HlsLevel() | |
}); | |
hls.on(Hls.Events.LEVEL_LOADED, function (event, data) { | |
if (!pip) { | |
if (data.details.live != o.live) { | |
o.live = data.details.live; | |
o.controls.refresh() | |
} | |
o.live = data.details.live; | |
if (o.live) { | |
log("Live"); | |
o.dvr = url.indexOf("?DVR") > -1; | |
if (pjstg.duration > 0 && pjstg.currentTime > 0) { | |
if (pjstg.duration - pjstg.currentTime < 10) { | |
if (o.hls_stuck_time > 0) { | |
if (o.hls_stuck_time == pjstg.currentTime && o.hls_stuck_duration == pjstg.duration) { | |
o.stuck++; | |
if (o.stuck > 2) { | |
o.stuck = 0; | |
o.hls_stuck_time = -1; | |
hls.destroy(); | |
CreateHLS(true); | |
onEnded() | |
} | |
} else { | |
o.hls_stuck_time = -1 | |
} | |
} else { | |
o.hls_stuck_time = pjstg.currentTime; | |
o.hls_stuck_duration = pjstg.duration | |
} | |
} | |
} | |
} | |
} | |
if (v.hlsquality == 1) { | |
o.current_quality = hls.loadLevel; | |
o.controls ? o.controls.QualityChangedNoHand(o.current_quality) : '' | |
} | |
HlsUpdateAudio() | |
}); | |
hls.on(Hls.Events.FRAG_CHANGED, function (event, data) { | |
if (exist(data.frag) && !pip) { | |
js("fragment", data.frag.relurl) | |
} | |
if (hls_force > -1) { | |
hls.nextAutoLevel = hls_force; | |
hls_force = -1 | |
} | |
hls_started = true; | |
hlsTextTracks() | |
}); | |
hls.on(Hls.Events.FRAG_PARSING_METADATA, function (event, data) { | |
js("fragdata", data, 1) | |
}); | |
hls.on(Hls.Events.AUDIO_TRACKS_UPDATED, function (event, data) { | |
!pip && v.hlsaudio == 1 ? HlsAudioTracks() : '' | |
}); | |
hls.on(Hls.Events.AUDIO_TRACK_SWITCHING, function (event, data) { | |
if (!pip && v.hlsaudio == 1) { | |
HlsAudioTrack() | |
} | |
}); | |
if (v.hlssubtracks == 1) { | |
_hlssubtracks = new PluginHlsSubtitles(hls, pip) | |
} else { | |
hls.subtitleDisplay = false | |
} | |
hls.on(Hls.Events.ERROR, function (event, data) { | |
v.log == 1 ? console.log(data) : ''; | |
js(data.type + 'Hls', data, 0, true); | |
o.hlserror = data; | |
if (data.fatal) { | |
switch (data.type) { | |
case Hls.ErrorTypes.NETWORK_ERROR: | |
log("HLS fatal network error"); | |
if (v.livewakeup == 1) { | |
HlsSleep0() | |
} else { | |
error = data.details + ' (' + data.type + ')'; | |
o.seekto > 0 || pip || v.live == 1 || is_ws ? '' : o.seekto = Time(); | |
hls.destroy(); | |
if (!pip) { | |
o.media.onError() | |
} | |
} | |
break; | |
case Hls.ErrorTypes.MEDIA_ERROR: | |
log("HLS fatal media error, recover"); | |
hls.recoverMediaError(); | |
break; | |
default: | |
error = "HLS fatal error, destroy"; | |
hls.destroy(); | |
!pip ? o.media.onError() : ''; | |
break | |
} | |
} else { | |
log("HLS ", data.type, data.details, (data.response ? data.response.code : '')); | |
js("hls_error", (data.response ? data.response.code : '')); | |
if (is_sleep > 0) { | |
is_sleep = 2; | |
HlsSleep() | |
} | |
} | |
}); | |
hls_created = true | |
} | |
function HlsLevel() { | |
if (!pip && v.hlsquality == 1 && HlsLevelsLength() > 1) { | |
if (o.current_quality != hls.loadLevel) { | |
o.current_quality = hls.loadLevel; | |
o.controls ? o.controls.QualityChangedNoHand(o.current_quality) : ''; | |
log("HLS Level " + o.current_quality) | |
} | |
if (exist2(v.forbidden_quality) && o.current_quality > 0) { | |
var fq = v.forbidden_quality.split(","); | |
for (var k = 0; k < fq.length; k++) { | |
if (o.files_quality[o.current_quality].indexOf(fq[k]) > -1) { | |
log('regress quality'); | |
hls.currentLevel = o.current_quality - 1; | |
o.current_quality--; | |
break | |
} | |
} | |
} | |
} | |
} | |
function CreateWS() { | |
if (exist(window.FlussonicMsePlayer)) { | |
if (MseIsSupported()) { | |
if (!exist(o.ws)) { | |
o.ws = new PluginWS() | |
} | |
ws = new FlussonicMsePlayer(pjstg, url, existv(v.wsconfig, { | |
debug: true | |
})); | |
ws_created = true | |
} else { | |
is_ws = false; | |
log("not supported") | |
} | |
} | |
} | |
function hlsTextTracks() { | |
Captions() | |
}; | |
this.captions = function () { | |
Captions() | |
}; | |
function Captions() { | |
if (v.hlscaptions) { | |
if (pjstg.textTracks.length > 0) { | |
if (v.captions == 1) { | |
pjstg.textTracks[pjstg.textTracks.length - 1].mode = "showing" | |
} else { | |
pjstg.textTracks[pjstg.textTracks.length - 1].mode = "hidden" | |
} | |
if (!o.captions) { | |
o.captions = true; | |
o.controls.refresh() | |
} | |
} else { | |
if (o.captions) { | |
o.captions = false; | |
o.controls.refresh() | |
} | |
} | |
} | |
} | |
function HlsSleep0() { | |
log("sleep"); | |
!pip && o.play ? o.actions.Pause() : ''; | |
o.actions.ShowPoster(); | |
is_sleep = 1; | |
HlsSleep(o.play) | |
} | |
function HlsSleep(x) { | |
if (is_sleep > 0) { | |
clearTimeout(sleep_timeout); | |
sleep_timeout = setTimeout(HlsLiveWaiting, v.livewakeuptime * 1000) | |
} | |
} | |
function HlsLiveWaiting() { | |
if (is_sleep > 0) { | |
log("watching"); | |
if (is_hls) { | |
if (is_sleep == 1) { | |
hls.loadSource(url) | |
} | |
if (is_sleep == 2) { | |
hls.destroy(); | |
CreateHLS(true); | |
pjstg.play() | |
} | |
} else { | |
attr(pjstg, { | |
'src': url | |
}) | |
} | |
} | |
} | |
pjstg.addEventListener('loadstart', onLoadStart); | |
pjstg.addEventListener('error', onTagError); | |
pjstg.addEventListener('ended', onEnded); | |
pjstg.addEventListener('play', onPlay); | |
pjstg.addEventListener('pause', onPause); | |
pjstg.addEventListener('timeupdate', onTimeupdate); | |
pjstg.addEventListener('seeking', onSeeking); | |
pjstg.addEventListener('seeked', onSeeked); | |
pjstg.addEventListener('loadedmetadata', onMeta); | |
pjstg.addEventListener('volumechange', onVolume); | |
pjstg.addEventListener('waiting', onWaiting); | |
pjstg.addEventListener('durationchange', onDuration); | |
pjstg.addEventListener('loadeddata', onLoadedData); | |
pjstg.addEventListener('enterpictureinpicture', onPipEnter); | |
pjstg.addEventListener('leavepictureinpicture', onPipLeave); | |
function onLoadStart() { | |
if (!is_hls && !is_dash) { | |
!pip ? o.actions.MediaReady() : '' | |
} | |
} | |
function onTagError() { | |
if (!is_hls && !is_dash) { | |
if (pjstg.error) { | |
log(pjstg.error, pjstg.error.code, pjstg.error.message); | |
var x = pjstg.error.code; | |
error = pjstg.error.message; | |
if (error == '') { | |
if (x == 1) { | |
error = "aborted" | |
} | |
if (x == 2) { | |
error = "network" | |
} | |
if (x == 3) { | |
error = "decode" | |
} | |
if (x == 4) { | |
error = "not found" | |
} | |
} | |
log("Video Error: ", error) | |
} | |
if (is_hls2 && v.livewakeup == 1) { | |
error = undefined; | |
HlsSleep0() | |
} | |
if (error != undefined || o.system.ios) { | |
onError() | |
} | |
} | |
} | |
function onError() { | |
!pip ? o.media.onError() : '' | |
} | |
function onEnded() { | |
!pip ? o.media.onEnded() : '' | |
} | |
function onPlay() { | |
if (!o.start && v.preroll) { | |
log('wrong play'); | |
pause(); | |
o.actions.Play(); | |
return | |
} | |
if (is_hls && is_sleep > 0) { } else { | |
if (!pip) { | |
var bgl = o.actions.isVastBgLoad() && o.vastfrombg != 1; | |
if (bgl || pause_before_vast == -1) { | |
var x = false; | |
if (is_hls) { | |
if (exist(o.vast) || exist(o.vastloader)) { | |
if (bgl) { } else { | |
log('pause onplay'); | |
pause(); | |
x = true | |
} | |
} | |
} | |
if (!x) { | |
o.media.onPlay() | |
} | |
} | |
} | |
} | |
} | |
function onPause() { | |
if (!nops) { | |
log("onpause"); | |
if (o.play && o.actplay && !pjstg.ended && v.unpause == 1 && !o.nativecontrols) { | |
log("unpause"); | |
TagPlay() | |
} else { | |
!pip && !o.nopause && pjstg.paused ? o.media.onPause() : '' | |
} | |
} | |
} | |
function onTimeupdate() { | |
!pip ? o.media.onTimeupdate() : ''; | |
if (pause_before_vast > -1) { | |
if (Time() > pause_before_vast) { | |
pause(); | |
pause_before_vast = -1 | |
} | |
} | |
} | |
function onSeeking() { | |
!pip ? o.media.onSeeking() : '' | |
} | |
function onSeeked() { | |
!pip ? o.media.onSeeked() : '' | |
} | |
function onMeta() { | |
if (pip) { | |
PipSize() | |
} else { | |
o.media.onMeta(); | |
PlayerSize(); | |
if (is_hls && is_sleep > 0) { | |
is_sleep = 0; | |
log("wake up"); | |
hls.startLoad(); | |
TagPlay(); | |
o.controls.Play() | |
} | |
if (exist(v.ratio)) { | |
Resize() | |
} | |
} | |
} | |
this.ratio = function () { | |
return (pjstg.videoWidth / pjstg.videoHeight) | |
}; | |
function PipSize() { | |
if (pjstg.videoHeight > 0) { | |
css(container, { | |
"height": container.offsetWidth / (pjstg.videoWidth / pjstg.videoHeight) - parseInt(v.pip.border) | |
}) | |
} else { | |
if (pipto < 20) { | |
setTimeout(PipSize, 100); | |
pipto++ | |
} | |
} | |
} | |
function PlayerSize() { | |
if (v.changeheight == 1) { | |
clearInterval(o.heightInterval); | |
o.heightInterval = setInterval(WaitSize, 100); | |
WaitSize() | |
} | |
} | |
function WaitSize() { | |
if (pjstg) { | |
if (pjstg.videoHeight > 0) { | |
o.actions.changeAspect(pjstg.videoWidth / pjstg.videoHeight); | |
clearInterval(o.heightInterval) | |
} | |
} | |
} | |
function onDuration() { | |
!pip && !is_ws ? o.media.onDuration() : '' | |
} | |
function onVolume() { | |
!pip ? o.media.onVolume() : '' | |
} | |
function onWaiting() { | |
if (is_hls && is_sleep > 0) { } else { | |
!pip ? o.media.onWaiting() : '' | |
} | |
} | |
function onLoadedData() { | |
o.actions.LoadedData() | |
} | |
function MseIsSupported() { | |
var mediaSource = window.MediaSource = window.MediaSource || window.WebKitMediaSource; | |
var sourceBuffer = window.SourceBuffer = window.SourceBuffer || window.WebKitSourceBuffer; | |
var isTypeSupported = mediaSource && typeof mediaSource.isTypeSupported === 'function' && mediaSource.isTypeSupported(mimeCodec); | |
var sourceBufferValidAPI = !sourceBuffer || sourceBuffer.prototype && typeof sourceBuffer.prototype.appendBuffer === 'function' && typeof sourceBuffer.prototype.remove === 'function'; | |
return isTypeSupported && sourceBufferValidAPI | |
} | |
var span05 = "<span style='opacity:0.5'>"; | |
function HlsQualityLevels() { | |
if (!pip && v.hlsquality == 1) { | |
var x = hls.levels; | |
var q = -1; | |
o.files_quality = []; | |
if (x.length > 1) { | |
for (var i = 0; i < x.length; i++) { | |
if (exist(x[i].height)) { | |
var y = o.media.renameQualities(x[i], v.nameofhlsquality); | |
if (o.files_quality.indexOf(y) > -1 || v.hlsaddbitrate == 1) { | |
if (exist(x[i].bitrate)) { | |
var yi = o.files_quality.indexOf(y); | |
yi > -1 ? o.files_quality[yi] += " " + span05 + " " + parseInt(x[yi].bitrate / 1000) + ' ' + Lang('kbps') + '</span>' : ''; | |
o.files_quality[i] = y + " " + span05 + " " + parseInt(x[i].bitrate / 1000) + ' ' + Lang('kbps') + '</span>' | |
} | |
} else { | |
o.files_quality[i] = y | |
} | |
if (exist(x[i].audioGroupIds)) { | |
o.files_quality_ag[i] = x[i].audioGroupIds[0] | |
} | |
} else if (exist(x[i].name)) { | |
o.files_quality[i] = x[i].name | |
} else { | |
o.files_quality[i] = i | |
} | |
if (exist(v.default_quality) && q == -1) { | |
if (v.default_quality == o.files_quality[i]) { | |
q = i | |
} | |
} | |
if (exist(o.default_quality)) { | |
if (o.default_quality == o.files_quality[i]) { | |
q = i | |
} | |
} | |
} | |
if (v.hlsautoquality == 1) { | |
o.files_quality[x.length] = Lang("auto") | |
} else { | |
hls.autoLevelEnabled = 0; | |
hls.autoLevelCapping = 0 | |
} | |
if (v.hlslowquality == 1 || q > -1) { | |
hls.autoLevelCapping = 0; | |
if (v.hlschangequality == "next" || (!o.start && v.preload == 0)) { | |
hls.nextLevel = q | |
} else { | |
if (v.hlschangequality == "current") { | |
hls.currentLevel = q | |
} | |
} | |
o.current_quality = q | |
} else { | |
if (v.hlsautoquality == 1) { | |
o.current_quality = hls.levels.length - 1 | |
} else { | |
o.current_quality = hls.firstLevel | |
} | |
} | |
HlsUpdateAudio() | |
} | |
o.bitrate = existv(hls.levels[o.current_quality].bitrate, 0); | |
o.controls ? o.controls.refresh() : '' | |
} | |
} | |
function HlsUpdateAudio() { | |
if (o.files_quality_ag.length > 0 && v.hlsaudio == 1) { | |
HlsAudioTracks(); | |
HlsAudioTrack() | |
} | |
} | |
function HlsAudioTracks() { | |
if (!pip && v.hlsaudio == 1) { | |
var x = hls.audioTracks; | |
o.files_audiotrack = []; | |
var stop; | |
if (x.length > 1) { | |
for (var i = 0; i < x.length; i++) { | |
stop = false; | |
if (exist(x[i].groupId) && o.files_quality_ag.length > 0) { | |
if (x[i].groupId != o.files_quality_ag[o.current_quality]) { | |
for (var j = 0; j < o.files_quality_ag.length; j++) { | |
if (o.files_quality_ag[j] == x[i].groupId) { | |
stop = true | |
} | |
} | |
} | |
} | |
if (!stop) { | |
o.files_audiotrack[i] = exist(x[i].name) ? o.media.renameTracks(x[i].name, i) : i; | |
if (exist(v.default_audio)) { | |
if (v.default_audio == o.files_audiotrack[i]) { | |
o.current_audiotrack = i; | |
hls.audioTrack = i | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
function HlsAudioTrack() { | |
if (!pip) { | |
var x = hls.audioTracks; | |
var y = hls.audioTrack; | |
if (y > -1) { | |
if (exist(x[y].groupId)) { | |
if (o.files_quality_ag.length > 0) { | |
if (o.files_quality_ag[o.current_quality] != x[y].groupId) { | |
for (var i = 0; i < x.length; i++) { | |
if (x[i].name == x[y].name && x[i].groupId == o.files_quality_ag[o.current_quality]) { | |
hls.audioTrack = i; | |
y = i; | |
break | |
} | |
} | |
} | |
} | |
} | |
o.current_audiotrack = y; | |
log("HLS AudioTrack", o.current_audiotrack); | |
o.controls.AudioTrackChangedNoHand(o.current_audiotrack) | |
} | |
} | |
}; | |
function Time() { | |
if (is_dash) { | |
return dash_created ? o.dash.time() : 0 | |
} else { | |
return pjstg.currentTime | |
} | |
}; | |
function Duration() { | |
var x = pjstg.duration; | |
if (is_dash && dash_created) { | |
x = o.dash.duration() | |
} | |
if (exist(v.end)) { | |
if (indOf([v.end], '-')) { | |
x = x + v.end * 1 | |
} else { | |
x = v.end | |
} | |
} | |
return x != Infinity && !isNaN(x) ? x : 0 | |
} | |
this.Play = function () { | |
var p = true; | |
if (is_hls && !hls_started) { | |
if (!hls_created) { | |
CreateHLS(true) | |
} | |
hls.startLoad() | |
} | |
if (is_dash && !dash_created) { | |
CreateDASH(true); | |
p = false | |
} | |
if (is_ws) { | |
if (!ws_created) { | |
CreateWS() | |
} | |
ws.play(); | |
p = false | |
} | |
if (pjstg.style.top == "-2000px") { | |
this.AfterVast() | |
} | |
p ? TagPlay() : '' | |
}; | |
var playtry; | |
function TagPlay() { | |
if (url != "none") { | |
var pp = pjstg.play(); | |
if (pp !== undefined) { | |
pp.then(function () { }).catch(function (error) { | |
log("playError", error.message); | |
if (error.message.indexOf('source') == -1 && error.message.indexOf('interrupted by') == -1) { | |
if (v.autoplaymute == 1) { | |
log('automute'); | |
o.actions.Mute(); | |
pjstg.volume = 0; | |
var pp2 = pjstg.play(); | |
if (pp2) { | |
pp2.then(function () { }).catch(function (e) { | |
log("playError2", e.message); | |
if (o.system.tv && (is_hls || is_dash)) { } else { | |
o.controls.Pause(); | |
o.actions.ShowPoster(); | |
js("autoplay_denied") | |
} | |
}) | |
} | |
} else { | |
o.controls.Pause(); | |
o.actions.ShowPoster() | |
} | |
} | |
}) | |
} | |
} | |
} | |
this.BeforeVast = function () { | |
if (o.vastloader || o.vast) { | |
if (o.ispipkit) { | |
PipWebkit() | |
} | |
if (!o.airplayed && o.system.mobile && o.system.webkit) { | |
if (!pjstg.muted) { | |
pjstg.muted = true; | |
unmuteplease = true | |
} | |
css(pjstg, { | |
"position": "absolute", | |
"left": -2000, | |
"top": -2000 | |
}); | |
pause_before_vast = Time(); | |
if (!is_ws) { | |
pjstg.play() | |
} | |
if (pause_before_vast == 0 && o.seekto > 0) { | |
_seekaftervast = o.seekto | |
} | |
} | |
} | |
}; | |
this.AfterVast = function () { | |
if (!o.airplayed && (o.system.mobile || o.system.webkit)) { | |
css(pjstg, { | |
"position": "static", | |
"left": 0, | |
"top": 0 | |
}); | |
if (exist(v.ratio)) { | |
Resize() | |
} | |
if (unmuteplease) { | |
!o.muted ? pjstg.muted = false : ''; | |
unmuteplease = false | |
} | |
if (_seekaftervast > 0) { | |
o.seekto = _seekaftervast; | |
_seekaftervast = 0 | |
} | |
pause_before_vast = -1 | |
} | |
}; | |
this.Pause = function () { | |
log('paused'); | |
pause() | |
}; | |
function pause() { | |
if (is_ws) { | |
ws.pause() | |
} else { | |
pjstg.pause() | |
} | |
}; | |
this.Toggle = function () { | |
!pjstg.paused ? Pause() : TagPlay() | |
}; | |
this.Seek = function (x) { | |
if (is_dash && dash_created) { | |
o.dash.seek(x) | |
} else { | |
if (is_hls) { | |
if (v.hlsforce == 1 && x > 0 && isAuto()) { | |
hls_force = hls.currentLevel; | |
hls.nextAutoLevel = 0 | |
} | |
} | |
pjstg.currentTime = x | |
} | |
}; | |
this.Mute = function () { | |
pjstg.muted = true | |
}; | |
this.Unmute = function () { | |
pjstg.muted = false; | |
if (o.file_type == "hls" && o.system.ios && v.vast == 1) { | |
if (!exist(o.um1)) { | |
nops = true; | |
pjstg.pause(); | |
setTimeout(function () { | |
pjstg.play(); | |
nops = false | |
}, 10); | |
o.um1 = true | |
} | |
} | |
}; | |
this.Volume = function (x) { | |
pjstg.volume = x | |
}; | |
this.Gain = function () { | |
if (o.gainedsource != pjstg) { | |
var source; | |
var ctx; | |
if (o.audiosrc[pjstg]) { | |
source = o.audiosrc[pjstg]; | |
ctx = o.audioctx[pjstg] | |
} else { | |
window.AudioContext = window.AudioContext || window.webkitAudioContext; | |
if (exist(window.AudioContext)) { | |
try { | |
ctx = new AudioContext(); | |
source = ctx.createMediaElementSource(pjstg); | |
o.audiosrc[pjstg] = source; | |
o.audioctx[pjstg] = ctx | |
} catch (e) { | |
log(e) | |
} | |
} | |
} | |
if (ctx) { | |
var gain = ctx.createGain(); | |
gain.gain.value = v.volumegain; | |
source.connect(gain); | |
gain.connect(ctx.destination); | |
o.gained = true; | |
o.gainedsource = pjstg | |
} | |
} | |
}; | |
this.isPlaying = function () { | |
return !pjstg.paused | |
}; | |
this.isLive = function () { | |
return v.live == 1 || is_ws ? true : o.live | |
}; | |
this.tag = function () { | |
return pjstg | |
}; | |
this.nativeControls = function () { | |
attr(pjstg, { | |
'controls': '1' | |
}); | |
return true | |
}; | |
this.preload = function () { | |
attr(pjstg, { | |
'preload': 'metadata' | |
}); | |
if (is_hls && !hls_created) { | |
CreateHLS(false) | |
} | |
if (is_dash && !dash_created) { | |
CreateDASH(false) | |
} | |
}; | |
this.status = function () { | |
var state = "playing"; | |
if (pjstg.paused) { | |
state = "paused" | |
} | |
if (pjstg.ended) { | |
state = "ended" | |
} | |
return state | |
}; | |
this.ChangePip = function (x, y) { | |
pip = x; | |
y.appendChild(pjstg); | |
container = y; | |
if (x) { | |
if (v.pip.nomute != 1) { | |
pjstg.muted = true | |
} else { | |
if (!o.muted) { | |
pjstg.muted = false | |
} | |
} | |
PipSize(); | |
if (o.files_quality.length > 0) { | |
if (is_hls) { | |
pip_quality = o.current_quality; | |
hls.autoLevelCapping = 0; | |
hls.currentLevel = 0 | |
} | |
} | |
} else { | |
if (!o.muted && v.pip.nomute != 1) { | |
pjstg.muted = false | |
} | |
pjstg.volume = v.volume; | |
PlayerSize(); | |
if (o.files_quality.length > 0) { | |
if (is_hls) { | |
hls.autoLevelCapping = -1; | |
if (pip_quality > -1) { | |
pip_quality < hls.levels.length ? hls.nextLevel = pip_quality : '' | |
} | |
} | |
} | |
} | |
}; | |
this.time = function () { | |
return Time() | |
}; | |
this.duration = function () { | |
return Duration() | |
}; | |
this.loaded = function () { | |
var x = 0; | |
if (pjstg.buffered) { | |
if (pjstg.buffered.length > 0) { | |
var y = Time(); | |
for (var i = 0; i < pjstg.buffered.length; i++) { | |
if ((y >= pjstg.buffered.start(i) || y >= pjstg.buffered.start(i) - 100) && y <= pjstg.buffered.end(i)) { | |
x = pjstg.buffered.end(i) | |
} | |
} | |
x == 0 ? x = pjstg.buffered.end(pjstg.buffered.length - 1) : '' | |
} | |
} | |
if (exist(v.end)) { | |
var ed = v.end; | |
if (indOf([ed], '-')) { | |
ed = Duration() | |
} | |
x > ed ? x = ed : '' | |
} | |
return x | |
}; | |
this.auto = function () { | |
return isAuto() | |
}; | |
function isAuto() { | |
var x = false; | |
if (is_hls) { | |
if (hls_created) { | |
x = hls.autoLevelEnabled | |
} | |
} else if (is_dash) { | |
if (dash_created) { | |
x = o.dash.auto() | |
} | |
} | |
return x | |
} | |
this.size = function () { | |
return { | |
"width": pjstg.videoWidth, | |
"height": pjstg.videoHeight | |
} | |
}; | |
this.src = function (x) { | |
if (x) { | |
x = x.replace(/\(random\)/g, Math.random()); | |
url = x; | |
o.media_error != 2 ? o.media_error = false : ''; | |
if (is_dash) { | |
if (dash_created) { | |
o.dash.source(x) | |
} | |
} else if (is_hls) { | |
is_hls && hls ? hls.destroy() : ''; | |
CreateHLS(true); | |
CheckPip() | |
} else { | |
attr(pjstg, { | |
'src': x, | |
'autoplay': 0 | |
}); | |
tagSrc(); | |
pause() | |
} | |
} | |
}; | |
function tagSrc() { | |
if (o.system.safari) { | |
var y = pjstg.textTracks; | |
if (y) { | |
for (var i = 0; i < y.length; i++) { | |
y[i].mode = "disabled" | |
} | |
} | |
y = pjstg.audioTracks; | |
if (y) { | |
for (i = 0; i < y.length; i++) { | |
y[i].enabled = (i == 0 ? 1 : 0) | |
} | |
} | |
if (window.WebKitPlaybackTargetAvailabilityEvent) { | |
pjstg.addEventListener('webkitplaybacktargetavailabilitychanged', function (event) { | |
o.airplay = event.availability == "available"; | |
!pip ? o.actions.AirplayChanged() : '' | |
}); | |
pjstg.addEventListener('webkitcurrentplaybacktargetiswirelesschanged', function (event) { }) | |
} | |
} | |
CheckPip(); | |
if (v.v360 == 1) { | |
typeof PjsCheck360 !== "undefined" ? PjsCheck360(url, pjstg, container) : '' | |
} | |
} | |
this.airplay = function () { | |
pjstg.webkitShowPlaybackTargetPicker() | |
}; | |
this.pipwebkit = function () { | |
PipWebkit() | |
}; | |
function CheckPip() { | |
if (o.system.webkit) { | |
if (exist(pjstg.webkitSupportsPresentationMode) && !o.system.iphone) { | |
o.pipwebkit = true | |
} | |
if (document.pictureInPictureEnabled && !pjstg.disablePictureInPicture) { | |
o.pipwebkit = true | |
} | |
} | |
} | |
function PipWebkit() { | |
if (o.system.safari) { | |
if (pjstg.webkitPresentationMode === "picture-in-picture") { | |
pjstg.webkitSetPresentationMode("inline"); | |
o.ispipkit = false | |
} else { | |
pjstg.webkitSetPresentationMode("picture-in-picture"); | |
o.ispipkit = true | |
} | |
} else { | |
if (!document.pictureInPictureElement) { | |
pjstg.requestPictureInPicture().then(p => { | |
o.ispipkit = true; | |
}).catch(error => { | |
o.ispipkit = false; | |
}); | |
} else { | |
document.exitPictureInPicture().then(ok => { | |
o.ispipkit = false; | |
}).catch(error => { }); | |
} | |
} | |
}; | |
function onPipEnter() { | |
o.ispipkit = true | |
}; | |
function onPipLeave() { | |
o.ispipkit = false | |
}; | |
this.setDashQuality = function (x) { | |
if (dash_created) { | |
o.dash.setQuality(x) | |
} | |
}; | |
this.setDashAudioTrack = function (x) { | |
if (dash_created) { | |
if (pjstg.buffered.length > 0) { | |
o.dash.setAudio(x) | |
} | |
} | |
}; | |
this.setWsQuality = function (x) { | |
if (o.ws) { | |
o.ws.setTracks(ws, x, -1) | |
} | |
}; | |
this.setWsAudioTrack = function (x) { | |
if (o.ws) { | |
o.ws.setTracks(ws, -1, x) | |
} | |
}; | |
this.setHlsQuality = function (x) { | |
if (hls_created) { | |
var y = parseInt(x); | |
if (x == hls.levels.length) { | |
y = -1; | |
hls.autoLevelCapping = -1 | |
} | |
if (v.hlschangequality == "current") { | |
setTimeout(onWaiting, 500); | |
hls.currentLevel = y | |
} | |
if (v.hlschangequality == "next") { | |
log("HLS next level " + y); | |
hls.nextLevel = y | |
} | |
if (y == -1) { | |
o.current_quality = hls.loadLevel | |
} | |
HlsUpdateAudio() | |
} | |
}; | |
this.getHLS = function () { | |
return hls | |
}; | |
this.getDASH = function () { | |
return dash_created ? o.dash.getDash() : false | |
}; | |
this.HlsLevelsLength = function () { | |
return HlsLevelsLength() | |
}; | |
function HlsLevelsLength() { | |
var x = 0; | |
if (hls_created) { | |
if (hls.levels) { | |
x = hls.levels.length | |
} | |
} | |
return x | |
} | |
this.DashLevelsLength = function () { | |
return DashLevelsLength() | |
}; | |
this.ObjectFit = function () { | |
ObjectFit() | |
}; | |
function ObjectFit() { | |
if (pjstg) { | |
if (v.covervideo == 1 || v.fill == 1) { | |
if (v.fillvideo == 1 || v.fill == 1) { | |
css(pjstg, { | |
'object-fit': 'fill' | |
}) | |
} else { | |
css(pjstg, { | |
'object-fit': 'cover' | |
}) | |
} | |
} else { | |
css(pjstg, { | |
'object-fit': 'contain' | |
}) | |
} | |
} | |
} | |
this.resize = function () { | |
Resize() | |
}; | |
function Resize() { | |
if (v.ratio) { | |
apiProcessor('scale', String(v.ratio).replace('/', ':')) | |
} | |
} | |
function DashLevelsLength() { | |
var x = 0; | |
if (dash_created) { | |
x = o.dash.levels() | |
} | |
return x | |
} | |
this.setHlsAudioTrack = function (x) { | |
if (hls_created) { | |
hls.audioTrack = parseInt(x) | |
} | |
}; | |
this.hlsDashSub = function (x, y) { | |
if (y == "hls" && hls_created && _hlssubtracks) { | |
_hlssubtracks.HlsSubTrack(x) | |
} | |
if (y == "dash" && dash_created) { | |
o.dash.subtrack(x) | |
} | |
}; | |
this.setSpeed = function (x) { | |
if (x) { | |
pjstg.playbackRate = x | |
} | |
}; | |
this.removeTracks = function () { | |
var x = pjstg.childNodes; | |
var y = []; | |
for (var i = 0; i < x.length; i++) { | |
if (x[i].tagName.toLowerCase() == 'track') { | |
x[i].removeEventListener("load", iOSTrackLoaded); | |
y.push(x[i]) | |
} | |
} | |
for (var i = 0; i < y.length; i++) { | |
pjstg.removeChild(y[i]) | |
} | |
}; | |
this.addTrack = function (x, y, z) { | |
if (x != '') { | |
if (x.indexOf(' or ') > 0) { | |
var xx = x.split(' or '); | |
x = xx[0] | |
} | |
var track = document.createElement('track'); | |
track.setAttribute('src', x); | |
track.setAttribute('label', y); | |
track.setAttribute('kind', 'subtitles'); | |
track.setAttribute('mode', 'showing'); | |
if (z) { | |
track.setAttribute('default', '') | |
} | |
pjstg.appendChild(track); | |
track.addEventListener("load", iOSTrackLoaded) | |
} | |
}; | |
function iOSTrackLoaded(e) { | |
if (e.target.label && o.sbt) { | |
for (var i = 0; i < o.files_subtitle.length; i++) { | |
if (o.files_subtitle[i] == e.target.label) { | |
o.sbt.SetSubtitle(i) | |
} | |
} | |
} | |
}; | |
this.errorMessage = function () { | |
return error ? error : '' | |
}; | |
this.Remove = function () { | |
clearInterval(o.dashInterval); | |
is_hls && hls ? hls.destroy() : ''; | |
is_dash && dash_created ? o.dash.reset() : ''; | |
is_ws && ws ? ws.stop() : ''; | |
pjstg.removeEventListener('error', onTagError); | |
pjstg.removeEventListener('ended', onEnded); | |
pjstg.removeEventListener('play', onPlay); | |
pjstg.removeEventListener('pause', onPause); | |
pjstg.removeEventListener('timeupdate', onTimeupdate); | |
pjstg.removeEventListener('seeking', onSeeking); | |
pjstg.removeEventListener('seeked', onSeeked); | |
pjstg.removeEventListener('loadedmetadata', onMeta); | |
pjstg.removeEventListener('volumechange', onVolume); | |
pjstg.removeEventListener('waiting', onWaiting); | |
pjstg.removeEventListener('durationchange', onDuration); | |
pjstg.removeEventListener('enterpictureinpicture', onPipEnter); | |
pjstg.removeEventListener('leavepictureinpicture', onPipLeave); | |
pjstg.src = ''; | |
if (container.tagName == "IFRAME") { | |
container.contentDocument.body.removeChild(pjstg) | |
} else { | |
container.removeChild(pjstg) | |
} | |
pjstg = null | |
} | |
}; | |
var Controls = function () { | |
var b = []; | |
var butNames = []; | |
var butPosition = []; | |
var waiting = false; | |
var wait_to; | |
var toolbarHidden = false; | |
var settings; | |
var playlist; | |
if (o.settings2) { | |
o.settings2.hide(); | |
o.settings2 = null | |
} | |
var _lastactbut; | |
o.files_speed = [0.25, 0.5, 0.75, 1, 1.25, 1.5, 2]; | |
if (v.settings.customspeeds == 1 && exist(v.settings.speeds)) { | |
v.settings.speeds = v.settings.speeds.replace(/\n/ig, ''); | |
o.files_speed = v.settings.speeds.split(",") | |
} | |
o.speed1 = o.files_speed.indexOf('1') > -1 ? o.files_speed.indexOf('1') : o.files_speed.indexOf(1); | |
o.current_speed == 3 ? o.current_speed = o.speed1 : ''; | |
for (var i in o.menuproc) { | |
if (o.menuproc.hasOwnProperty(i)) { | |
!exist(v.settings[i]) ? v.settings[i] = 5 : ''; | |
o['files_' + i] = ['+ ' + v.settings[i] + '%', '–' + v.settings[i] + ' % ', (o.menuproc[i] * 100 + ' % ')] | |
} | |
} | |
if (v.toolbar.hidejustfull == 1 && o.system.ios && v.nativefullios == 1) { | |
v.toolbar.hide = 0 | |
} | |
var resizeonwidth = false; | |
var stretch_width = 0; | |
var stretch_width_last = 0; | |
var stretch_with_volume = false; | |
var firstly = true; | |
var uijs; | |
var bg = new ControlsBg(); | |
var settings; | |
var order = []; | |
var _rights = false; | |
var _move_rights = false; | |
var _max_order = 0; | |
var _rb = []; | |
if (v.control_line.position == "controls-right") { | |
v.control_line.position = "controls" | |
} | |
for (var y in v) { | |
if (v.hasOwnProperty(y)) { | |
if (y.indexOf("control_") == 0 && v[y]) { | |
!exist(v[y].order0) ? v[y].order0 = v[y].order : v[y].order = v[y].order0; | |
order[v[y].order] = y; | |
if (v.control_line.position != "controls") { | |
if (v[y].position == "controls-right") { | |
_rb.push([y, v[y].order]); | |
_rights = true | |
} else { | |
if (v[y].position == "controls" || v[y].position == undefined) { | |
_rights ? _move_rights = true : '' | |
} | |
} | |
} | |
_max_order < v[y].order ? _max_order = v[y].order : '' | |
} | |
} | |
} | |
if (_move_rights) { | |
_rb.sort(function (a, b) { | |
return a[1] - b[1] | |
}); | |
for (var i = 0; i < _rb.length; i++) { | |
order[v[_rb[i][0]].order] = null; | |
v[_rb[i][0]].order = _max_order + 1; | |
_max_order++; | |
order[v[_rb[i][0]].order] = _rb[i][0] | |
} | |
} | |
if (v.toolbar.hide == 1 && v.toolbar.hidedown == 1) { | |
o.toolbar = createElement("div"); | |
o.frame.appendChild(o.toolbar); | |
css(o.toolbar, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': '100%', | |
'height': '100%', | |
'transition': 'top 0.3s ease-out', | |
'pointer-events': 'none' | |
}) | |
} | |
var bg2 = createElement("div"); | |
if (v.toolbar.hide == 1 && v.toolbar.hidedown == 1) { | |
o.toolbar.appendChild(bg2) | |
} else { | |
o.frame.appendChild(bg2) | |
} | |
css(bg2, { | |
'position': 'absolute', | |
'left': 0, | |
'bottom': 0, | |
'width': '100%', | |
'height': v.toolbar.h | |
}); | |
bg2.onclick = function () { | |
!o.system.mobile ? o.actions.ControlsBgClick() : '' | |
}; | |
if (v.nocontrols == 1) { | |
hide2(bg.c()); | |
hide2(bg2) | |
} | |
for (var i = 1; i < order.length; i++) { | |
if (order[i]) { | |
var y = order[i]; | |
if (y) { | |
var action = v[y].action; | |
var hdn = v[y].hide; | |
if (o.system.mobile) { | |
if (action == "volume" && v[y].customline == "speed") { } else { | |
if (action == "volume" && v.showvolmobile == 1 && o.system.mobile) { | |
v[y].hideoutmute = 0 | |
} else { | |
if (action == "volume" || (action == "fullscreen" && v.nativemobile)) { | |
v[y].on = 0 | |
} | |
} | |
} | |
} | |
if (v[y].hide == 1) { | |
if (v[y].hideonvar == 1 && exist(v[y].hidevar)) { | |
options[v[y].hidevar] ? v[y].on = 0 : '' | |
} | |
if (v[y].hidewovar == 1 && exist(v[y].hidevar2)) { | |
!options[v[y].hidevar2] ? v[y].on = 0 : '' | |
} | |
} | |
if (v.nocontrols == 1) { | |
v[y].on = 0 | |
} | |
if (v[y].on == 1) { | |
if (action == "line" || action == "volume") { | |
b[y] = new ControlLine(y, action); | |
b[y].Resize(b[y].s("w")) | |
} else { | |
b[y] = new Control(y) | |
} | |
butNames.push(y); | |
if (b[y].g("action") == "title") { | |
if (b[y].s("text") == '') { | |
if (b[y].s("var") != '') { | |
if (!exist(v[b[y].s("var")])) { | |
b[y].set("display", false) | |
} | |
} else { | |
b[y].set("display", false) | |
} | |
} | |
} | |
if (b[y].g("action") == "custom") { | |
var lu = b[y].s("linkurl"); | |
if (lu) { | |
if (lu.indexOf("api:") == 0 && lu.indexOf(",0/1") > 0) { | |
var z = lu.split(","); | |
apiProcessor(z[0].substr(4)) == 0 ? b[y].CustomSwitch(0) : '' | |
} | |
if (indOf([lu], "share")) { | |
o.shareme = true | |
} | |
} | |
} | |
b[y].set("scale", b[y].s("scale")) | |
} | |
} | |
} | |
} | |
if (exist(v.settings)) { | |
if (typeof (Settings) == 'function') { | |
settings = new Settings("settings"); | |
v.settings.always == 1 ? settings.show() : settings.hide() | |
} else { | |
o.noset = true | |
} | |
} | |
if (exist(v.playlist)) { | |
if (typeof (Settings) == 'function') { | |
playlist = new Settings("playlist"); | |
if (exist(o.playlist)) { | |
playlist.updatePlaylist(o.playlist); | |
if (v.playlist.openplaylistbefore == 0 || !exist(v.playlist.openplaylistbefore)) { | |
v.playlist.always == 0 ? playlist.hide() : '' | |
} else { | |
playlist.show() | |
} | |
if (v.playlist.always2 == 1) { | |
playlist.show() | |
} | |
} else { | |
playlist.hide(1) | |
} | |
PlaylistControls() | |
} | |
} | |
CreateShare(); | |
CustomTextButs(); | |
Resize(true); | |
ShowOrHide(); | |
SpeedChanged(); | |
firstly = false; | |
function ControlX(but) { | |
var x = 0; | |
var to_right = false; | |
if (but) { | |
if (but.g("action") == 'line') { | |
x = butPosition.left + but.s("marginleft") + but.g("width") / 2; | |
if (butPosition.rightbs != null) { } else { | |
butPosition.rightbs = [] | |
} | |
} else { | |
if (butPosition.rightbs != null) { | |
var but_space = but.g("width") + but.s("marginright") + but.s("marginleft"); | |
if (HideProof(but)) { | |
but_space = 0 | |
} | |
if (but.s("hidden") == 1 && !but.g("show")) { | |
but_space = 0 | |
} | |
if (but.s("vertical") > 0) { | |
but_space = 0 | |
} | |
x = bg.g("w") - v.toolbar.leftandrightpadding * 1 - but_space + but.g("width") / 2 + but.s("marginleft"); | |
var i = 0; | |
butPosition.right -= but_space; | |
for (i = 0; i < butPosition.rightbs.length; i++) { | |
var but2 = b[butPosition.rightbs[i]]; | |
if (but2.s("vertical") > 0) { | |
css(but2.c(), { | |
"left": (but2.g("x0") - but_space) | |
}) | |
} else { | |
css(but2.c(), { | |
"left": (but2.g("x") - but_space) | |
}) | |
} | |
but2.set("x0", but2.g("x")) | |
} | |
butPosition.rightbs.push(but.g("key")); | |
but.set('rightside', 1) | |
} else { | |
if (but.s("hidden") == 1 && !but.g("show")) { | |
if (but.g("action") == "volume") { | |
if (but.s("hide") == 1 && but.s("hideoutmute") == 1 && stretch_with_volume) { | |
stretch_width += but.g("width") + but.s("marginleft") + but.s("marginright"); | |
stretch_with_volume = false | |
} | |
} | |
} else { | |
if (but.s("vertical") > 0) { | |
x = butPosition.left + but.s("marginleft") + but.s("marginright") | |
} else { | |
var stop = false; | |
if (but.g("action") == "volume") { | |
if (but.s("hide") == 1 && but.s("hideoutmute") == 1) { | |
if (!o.hidden_volume_over_process && !o.hidden_volume_over) { | |
stop = true; | |
stretch_with_volume = false | |
} else { | |
if (!stretch_with_volume) { | |
stretch_width -= but.g("width") + but.s("marginleft") + but.s("marginright"); | |
stretch_with_volume = true | |
} | |
} | |
} | |
} | |
if (HideProof(but)) { | |
stop = true | |
} | |
if (!stop) { | |
butPosition.left += but.g("width") / 2 + but.s("marginleft"); | |
x = butPosition.left; | |
butPosition.left += but.g("width") / 2 + but.s("marginright") | |
} else { | |
x = butPosition.left | |
} | |
} | |
} | |
} | |
} | |
} | |
return x | |
}; | |
this.NewPl = function () { | |
CreateShare() | |
}; | |
this.CrShr = function () { | |
CreateShare() | |
}; | |
function CreateShare() { | |
if (o.shareme) { | |
typeof PluginShare == 'function' ? o.share = new PluginShare() : '' | |
} | |
} | |
function ControlCoordinate(but) { | |
var width = o.fullscreen && v.toolbar.stretchonfullscreen == 0 ? o.normal_w : o.screen_w; | |
var height = o.screen_h; | |
var but_x = 0; | |
if (but != bg) { | |
but_x = width / 2 + but.s("marginleft") - but.s("marginright") | |
} | |
var but_y = height / 2; | |
var but_w = but.g("width"); | |
var but_h = but.g("height"); | |
var p = but.s("position"); | |
if (p.indexOf("center") > -1) { | |
but_x = o.screen_w / 2 + but.s("marginleft") - but.s("marginright") | |
} | |
if (p.indexOf("top") == 0) { | |
but_y = but_h / 2 + (but.s("marginproctop") * o.screen_h / 100) | |
} | |
if (p.indexOf("bottom") == 0) { | |
but_y = o.screen_h - (but == bg ? but_h : but_h / 2) - (but.s("marginprocbottom") * o.screen_h / 100) | |
} | |
if (p.indexOf("right") > -1) { | |
but_x = o.screen_w - but_w / 2 + but.s("marginleft") - but.s("marginright") - (but.s("marginprocright") * o.screen_w / 100) | |
} | |
if (p.indexOf("left") > -1) { | |
but_x = but_w / 2 + but.s("marginleft") - but.s("marginright") + (but.s("marginprocleft") * o.screen_w / 100) | |
} | |
if (p == "timeline") { | |
but_x = -o.timeline_w / 2 + (but.s("marginprocleft") * o.timeline_w / 100) + but.s("marginleft") - but.s("marginright"); | |
but_y = -o.timeline_h / 2 - (but.s("marginprocbottom") * o.timeline_h / 100) + (but.s("marginproctop") * o.timeline_h / 100) | |
} | |
if (p.indexOf("controls") > -1) { | |
var cx = ControlX(but); | |
but_x = (bg ? (bg.c() ? int(bg.c().offsetLeft) : 0) : 0) + cx; | |
if (p == "controls-right") { | |
but_x += stretch_width | |
} | |
if (v.toolbar.position == "top") { | |
but_y = v.toolbar.h / 2 - (v.toolbar_margintop < 0 ? v.toolbar_margintop : 0) | |
} else { | |
but_y = height - v.toolbar.h / 2 | |
} | |
} | |
return { | |
x: but_x, | |
y: but_y + but.s("margintop") - but.s("marginbottom") | |
} | |
} | |
function Resize(all) { | |
var w = o.fullscreen && v.toolbar.stretchonfullscreen == 0 ? o.normal_w : o.screen_w; | |
var h = o.screen_h; | |
if (v.toolbar.lrpp == 1) { | |
if (!v.toolbar.lrppp) { | |
v.toolbar.lrppp = exist2(v.toolbar.lrpps) && o.small ? v.toolbar.lrpps : v.toolbar.leftandrightpadding | |
} | |
v.toolbar.leftandrightpadding = o.screen_w * v.toolbar.lrppp / 100 | |
} | |
css(bg.c(), { | |
'top': (v.toolbar.position == "top" ? 0 : o.screen_h - v.toolbar.h) - v.toolbar_margintop | |
}); | |
bg.set("y0", (o.screen_h - v.toolbar.h - v.toolbar_margintop)); | |
if (v.toolbar.stretchonfullscreen == 0 && bg) { | |
css(bg.c(), { | |
'width': w, | |
'left': 0, | |
'margin-left': 0 | |
}); | |
bg.set("w", w); | |
if (o.fullscreen) { | |
css(bg.c(), { | |
'left': '50%', | |
'margin-left': -w / 2 | |
}) | |
} | |
} | |
butPosition = { | |
"left": v.toolbar.leftandrightpadding * 1, | |
"right": (bg.g("w") - v.toolbar.leftandrightpadding * 1) | |
}; | |
var bg_hide = false; | |
if (!bg.g("show")) { | |
bg.set("display", true); | |
bg_hide = true | |
} | |
var key; | |
for (var i = 0; i < butNames.length; i++) { | |
key = butNames[i]; | |
if (b[key]) { | |
var cc = ControlCoordinate(b[key]); | |
if (cc) { | |
if (b[key].s("animation") == "position") { | |
if (exist(o.motions[key])) { | |
if (b[key].g("x0") == cc.x && b[key].g("y0") == cc.y) { | |
continue | |
} else { | |
o.motions[key].XY(b[key].g("x0"), cc.x, b[key].g("y0"), cc.y) | |
} | |
} | |
} | |
b[key].set("x0", cc.x); | |
b[key].set("y0", cc.y); | |
if (b[key].s("hidden") == 1 && !b[key].g("show") && !all) { | |
HidePositionControl(b[key]) | |
} else { | |
css(b[key].c(), { | |
"position": "absolute", | |
"left": b[key].g("x0"), | |
"top": b[key].g("y0") | |
}) | |
} | |
} | |
} | |
} | |
if (bg_hide) { | |
bg.set("display", false) | |
} | |
stretch_width = 0; | |
for (key in b) { | |
if (b.hasOwnProperty(key)) { | |
if (b[key].s("position") == "controls-right" && b[key].g("action") != "line" && stretch_width > -1) { | |
stretch_width = butPosition.right - butPosition.left | |
} | |
if (b[key].g("action") == "line" && bg) { | |
var line_width; | |
if (b[key].s("customwidth") == 1) { | |
if (b[key].s("wproc") == 1) { | |
line_width = (o.screen_w * b[key].s("w") / 100) - b[key].s("marginleft") - b[key].s("marginright") | |
} else { | |
line_width = b[key].s("w") | |
} | |
} else { | |
if (b[key].s("position").indexOf("controls") > -1) { | |
line_width = butPosition.right - butPosition.left - b[key].s("marginleft") - b[key].s("marginright"); | |
css(b[key].c(), { | |
"left": (int(bg.c().offsetLeft) + butPosition.left + b[key].s("marginleft") + line_width / 2) | |
}); | |
stretch_width = -1 | |
} else { | |
line_width = bg.g("w") - b[key].s("marginleft") - b[key].s("marginright"); | |
css(b[key].c(), { | |
"left": (int(bg.c().offsetLeft) + b[key].s("marginleft") + line_width / 2) | |
}) | |
} | |
} | |
b[key].set("x0", b[key].g("x")); | |
b[key].Resize(line_width) | |
} | |
} | |
} | |
if (settings) { | |
ResizeSettings(settings) | |
} | |
if (playlist) { | |
ResizeSettings(playlist) | |
} | |
if (resizeonwidth || o.fullscreen || stretch_width_last != stretch_width) { | |
ShowOrHide() | |
} | |
} | |
function HidePositionControl(b) { | |
var left = 0; | |
var top = 0; | |
if (b.s("position").indexOf("right") > -1 && b.s("position").indexOf("controls") == -1) { | |
left = o.screen_w + b.g("width") + 10 | |
} | |
if (b.s("position").indexOf("left") > -1) { | |
left = -b.g("width") - 10 | |
} | |
if (b.s("position").indexOf("top") > -1) { | |
top = -b.g("height") * 2 | |
} | |
if (b.s("position").indexOf("bottom") > -1 || b.s("position").indexOf("controls") > -1) { | |
top = o.screen_h + b.g("height") + b.g("width") + 10 | |
} | |
if (left > 0) { | |
css(b.c(), { | |
"left": left | |
}) | |
} | |
if (top > 0) { | |
css(b.c(), { | |
"top": top | |
}) | |
} | |
} | |
function ResizeSettings(x) { | |
var top = -2000; | |
x.resizePlaylist(); | |
var y = o.screen_h - v.toolbar.h * (x.s("position").indexOf("top") > -1 ? 1 : 2); | |
if (x == playlist && v.change2playlist == 1) { | |
y = o.screen_h | |
} | |
var ymax = y - (o.fullscreen && !o.system.mobile ? (100 + x.s("hmaxk") * 1) : x.s("hmaxk")) - (x == playlist && x.s("hmaxk") * 1 == 0 ? x.s("margintop") : 0); | |
ymax < 100 ? ymax = 100 : ''; | |
css(x.c(), { | |
'max-height': ymax | |
}); | |
x.co() ? css(x.co(), { | |
'max-height': ymax | |
}) : ''; | |
if (x.g("show")) { | |
top = o.screen_h / 2 - x.g("height") / 2 + x.s("margintop") - x.s("marginbottom"); | |
if (x.s("position").indexOf("top") > -1) { | |
top = x.s("margintop") - x.s("marginbottom") | |
} | |
if (x.s("position").indexOf("bottom") > -1) { | |
top = o.screen_h - (v.toolbar.position != 'top' ? v.toolbar.h : 0) - x.g("height") + x.s("margintop") - x.s("marginbottom") | |
} | |
top < 0 ? top = 0 : '' | |
} | |
if (x.g("key") == "settings" && o.sttx) { | |
var sttr = o.screen_w - x.g("width") - x.s("marginright"); | |
if (o.sttx > sttr) { | |
css(x.c(), { | |
"position": "absolute", | |
"right": x.s("marginright"), | |
"left": "auto", | |
"top": top | |
}) | |
} else { | |
css(x.c(), { | |
"position": "absolute", | |
"left": o.sttx, | |
"right": "auto", | |
"top": (o.stty < top ? o.stty : top) | |
}) | |
} | |
} else { | |
if (x.s("position").indexOf("right") > -1) { | |
css(x.c(), { | |
"position": "absolute", | |
"right": x.s("marginright") - x.s("scrollwidth"), | |
"left": "auto", | |
"top": top | |
}) | |
} else if (x.s("position").indexOf("left") > -1) { | |
css(x.c(), { | |
"position": "absolute", | |
"left": x.s("marginleft"), | |
"right": "auto", | |
"top": top | |
}) | |
} else { | |
if (x.g("key") == "playlist" && x.s("floatleft") == 1) { | |
css(x.c(), { | |
"position": "absolute", | |
"left": o.screen_w / 2 - x.g("width") / 2 + x.s("marginleft") / 2 - x.s("marginright") / 2, | |
"top": top | |
}) | |
} else { | |
var l = o.screen_w / 2 - x.g("width") / 2 + x.s("marginleft") - x.s("marginright"); | |
css(x.c(), { | |
"position": "absolute", | |
"left": (l > 0 ? l : 0), | |
"top": top | |
}) | |
} | |
} | |
} | |
x.Arrows() | |
}; | |
this.ControlClick = function (key) { | |
var but = b[key]; | |
var a = but.g("action"); | |
if (a) { | |
var d = new Date(); | |
o.clicktime = d.getTime(); | |
if (a && a != "") { | |
Action(but); | |
a == "pause" ? o.actpause = 1 : ''; | |
a == "play" ? o.actpause = 0 : '' | |
} | |
} | |
}; | |
this.toggleControl = function (z, x, y) { | |
for (var key in b) { | |
if (b.hasOwnProperty(key)) { | |
if (b[key].s(z) == x) { | |
b[key].set(y ? "show2" : "hide2") | |
} | |
} | |
} | |
}; | |
this.butByS = function (x, s) { | |
var y = FindBut(s, x); | |
return y | |
}; | |
function Action(but, type) { | |
o.acted = true; | |
_lastactbut = but; | |
var a = but.g("action"); | |
if (a == "play") { | |
o.actions.Play(); | |
if (o.muted && v.unmuteonplay == 1) { | |
o.actions.Unmute(); | |
v.unmuteonplay = 0 | |
} | |
if (v.hotkey.on == 1 && v.hotkey.icons == 1 && v.hotkey.playiconbut == 1) { | |
PluginHotIcon('play', 1) | |
} | |
} else { | |
if (a == "pause") { | |
o.rldplay = 0; | |
o.actions.Pause(); | |
if (v.hotkey.on == 1 && v.hotkey.icons == 1 && v.hotkey.playiconbut == 1) { | |
PluginHotIcon('play', 0) | |
} | |
} | |
if (a == "stop") { | |
o.actions.StopMedia() | |
} | |
} | |
if (a == "back") { | |
o.actions.Seek(0, false) | |
} | |
if (a == "fullscreen") { | |
!o.casting ? o.actions.Fullscreen() : '' | |
} else { | |
if (a == "normalscreen") { | |
o.actions.Normalscreen() | |
} | |
} | |
if (a == "line") { | |
var ld = o.media.duration(); | |
var lt = but.g("click") * ld; | |
if (v.delete > 0) { | |
ld -= v.delete; | |
lt = but.g("click") * ld + v.delete | |
} | |
if (v.seekwindow > 0) { | |
if (v.seekwindow / ld <= 1 - but.g("click")) { | |
return | |
} | |
} | |
o.actions.Seek(lt, true); | |
if (o.continue) { | |
o.continue.write(lt, ld); | |
o.seekto > 0 ? o.seekto = undefined : '' | |
} | |
} | |
if (a == "volume") { | |
var x = but.g("click"); | |
x < 0.02 ? x = 0 : ''; | |
x > 1 ? x = 1 : ''; | |
if (but.s("customline") == "speed") { | |
x = parseFloat(x * o.files_speed.slice(-1)[0]).toFixed(1); | |
o.actions.SetSpeed(x, 1) | |
} else { | |
if (o.storage && v.volumestore == 1) { | |
localStorage.setItem("pljsvolume", x); | |
if (but.g("click") > 0 || o.system.iphone || v.mutestore == 0) { | |
localStorage.removeItem("pljsmute") | |
} else { | |
localStorage.setItem("pljsmute", 1) | |
} | |
} | |
o.actions.Volume(x) | |
} | |
} | |
if (a == "mute") { | |
if (o.storage && !o.system.iphone && v.mutestore == 1) { | |
localStorage.setItem("pljsmute", 1) | |
} | |
o.actions.Mute(); | |
if (v.hotkey.icons == 1 && v.hotkey.muteiconbut == 1) { | |
PluginHotIcon('mute', 0) | |
} | |
} else { | |
if (a == "unmute") { | |
if (o.storage) { | |
localStorage.removeItem("pljsmute") | |
} | |
o.actions.Unmute(); | |
if (v.hotkey.icons == 1 && v.hotkey.muteiconbut == 1) { | |
PluginHotIcon('mute', 1) | |
} | |
} | |
} | |
if (a.indexOf("time") == 0) { | |
but.isOn() ? but.Off() : but.On() | |
} | |
if (a == "rotate") { | |
o.media.Rotate() | |
} | |
if (a == "scale+") { | |
o.media.Scale(0.1) | |
} | |
if (a == "scale-") { | |
o.media.Scale(-0.1) | |
} | |
if (a == "scale") { | |
o.media.Scale(0) | |
} | |
if (a == "live") { | |
apiProcessor("restart"); | |
but.set("iconopacity", 1); | |
but.set("saturate", 1) | |
} | |
if (a == "share") { | |
js("share"); | |
ShowShare() | |
} | |
if (a == "settings") { | |
o.sttx = undefined; | |
if (settings) { | |
if (!settings.g("show")) { | |
settings.show() | |
} else { | |
settings.hide() | |
} | |
} | |
} | |
if (a == "playlist") { | |
if (o.overopentimeout == a) { | |
return | |
} | |
o.controls.PlaylistShow() | |
} | |
if (a == "next") { | |
o.controls.PlaylistNext() | |
} | |
if (a == "prev") { | |
o.controls.PlaylistPrev() | |
} | |
if (a == "custom") { | |
if (but.s("link") == 1 && but.s("linkurl") != "") { | |
var x = trim(but.s("linkurl")); | |
if (o.overopentimeout == a + x) { | |
return | |
} | |
if (x.indexOf('{time}') > -1) { | |
x = x.replace('{time}', (exist(o.continue) ? o.continue.flag().t : o.media.time())) | |
} | |
if (x.indexOf('{file}') > -1) { | |
x = x.replace('{file}', o.media.currentFile()) | |
} | |
if (x.indexOf('{title}') > -1) { | |
x = x.replace('{title}', v.title.replace(/,/ig, " ")) | |
} | |
if (x == "airplay") { | |
o.media.Airplay() | |
} | |
if (x.indexOf('skip') == 0) { | |
if (but.s("skip") > 0) { | |
o.actions.Seek(but.s("skip")) | |
} | |
} | |
if (x.indexOf('cancelskip') == 0) { | |
if (o.skpbt) { | |
o.skpbt.cancel() | |
} | |
} | |
if (x == "seektome") { | |
o.actions.Seek(but.s("marginprocleft") * o.media.duration() / 100); | |
!o.play ? o.actions.Play() : '' | |
} | |
but.s("linkpause") == 1 ? o.actions.Pause() : ''; | |
var y = x.split(","); | |
if (x.indexOf("api:") == 0) { | |
var z = x.substr(4).split(";"); | |
for (var i = 0; i < z.length; i++) { | |
y = z[i].split(","); | |
if (y.length > 1) { | |
if (y[0] == 'seek') { | |
if (v.hotkey.icons == 1 && v.hotkey.seekiconbut == 1) { | |
PluginHotIcon('seek', y[1] > 0 ? 1 : 0) | |
} | |
} | |
apiProcessor(y[0], y[1], but); | |
y[1] == '0/1' || y[1] == '1/0' ? reRightMenu() : '' | |
} else { | |
if (y[0] == "screenshot") { | |
var ss = apiProcessor(y[0]); | |
if (ss) { | |
if (ss.indexOf("data") > -1) { | |
if (v.ssfly == 1) { | |
var img = document.createElement('img'); | |
img.setAttribute('src', ss); | |
css(img, { | |
position: "fixed", | |
right: (exist(v.ssflyp) ? v.ssflyp : 20), | |
bottom: (exist(v.ssflyp) ? v.ssflyp : 20), | |
width: 0, | |
transition: "width 0.5s cubic-bezier(.75,-0.5,0,1.75)" | |
}); | |
img.style.zIndex = 1001; | |
document.body.appendChild(img); | |
setTimeout(function () { | |
css(img, { | |
width: (exist(v.ssflyw) ? v.ssflyw : 200) | |
}) | |
}, 1); | |
img.onclick = function () { | |
this.parentNode.removeChild(this) | |
} | |
} | |
if (v.ssdown == 1) { | |
var a = createElement("a"); | |
a.href = ss; | |
a.download = y[0] + ".jpg"; | |
a.click() | |
} | |
} | |
} else { | |
log(y[0] + " error") | |
} | |
} else { | |
apiProcessor(y[0]) | |
} | |
} | |
} | |
} else { | |
if (x.indexOf("js:") == 0) { | |
if (x.indexOf("(") > 0 && x.indexOf(")") > 0) { | |
eval(x.substr(3)) | |
} else { | |
eval(y[0].substr(3) + '(' + (exist(y[1]) ? '"' + y[1] + '"' : '') + (exist(y[2]) ? ',"' + y[2] + '"' : '') + ')') | |
} | |
} | |
if (x.indexOf("event:") == 0) { | |
JsEvent(x.substr(6), o.media.time()) | |
} | |
if (x.indexOf("share:") == 0 && o.share) { | |
o.share.api(x.substr(6)) | |
} | |
if (x.indexOf("effect:") == 0 && o.effects) { | |
apiProcessor("effect", x.substr(7)) | |
} | |
if (x.indexOf("http") == 0 || x.indexOf("/") == 0 || x.indexOf("?") == 0 || x.indexOf("url:") == 0) { | |
x.indexOf("url:") == 0 ? x = x.substr(4) : ''; | |
window.open(x, but.s("linktarget")) | |
} | |
if (x.indexOf("download") == 0) { | |
o.actions.Download() | |
} | |
if (x == "api:pipwebkit") { | |
o.media.PipWebkit() | |
} | |
} | |
if (x.indexOf("settings#") > -1) { | |
if (settings) { | |
var si = x.substr(9).split(","); | |
if (settings.g("show") && settings.g("open") == si[0]) { | |
o.sttx = undefined; | |
o.stty = undefined; | |
settings.hide() | |
} else { | |
o.sttx = but.g("x") - but.g("width") / 2; | |
o.stty = but.g("y") + but.g("h"); | |
for (var i = 0; i < si.length; i++) { | |
i == 0 ? settings.show() : ''; | |
settings.open(si[i]) | |
} | |
playlist ? playlist.plclose() : '' | |
} | |
} | |
} | |
if (x.indexOf("settings:") > -1 && v.settings.combined == 1) { | |
if (!o.settings2) { | |
o.settings2 = new PluginSettings2() | |
} | |
if (v.settings.showovercontrol == 1) { | |
if (type == "over") { | |
o.settings2.show(x) | |
} else { | |
o.settings2.toggle(x) | |
} | |
} else { | |
if (!type) { | |
o.settings2.toggle(x) | |
} | |
} | |
} | |
if (x == "unblock") { | |
o.actions.RemoveCurtain(); | |
o.stopkeys = 0; | |
but.set("hide2"); | |
var bl = FindBut("linkurl", "block"); | |
if (bl) { | |
bl.set("hide2") | |
} | |
} | |
if (x == "block") { | |
but.UpdateText("OK"); | |
but.s("linkurl2") ? window.location.href = trim(but.s("linkurl2")) : '' | |
} | |
} | |
} | |
}; | |
this.title = function (t) { | |
var y = false; | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "title") { | |
if (b[x].s("var") == t || t == "title") { | |
if (b[x].s("hide") == 1 && b[x].s("hideonplay") == 1 && o.play) { | |
y = true | |
} | |
if (v[t] == '' || y) { | |
b[x].set("display", false) | |
} else { | |
b[x].set("display", true) | |
} | |
b[x].UpdateText(v[t]) | |
} | |
} | |
} | |
} | |
TitlePl() | |
}; | |
this.titlepl = function () { | |
TitlePl() | |
}; | |
this.resizetext = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "custom") { | |
if (b[x].s("type") == "text") { | |
b[x].ResizeText() | |
} | |
} | |
} | |
} | |
}; | |
function TitlePl() { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "custom") { | |
if (b[x].s("type") == "text") { | |
b[x].RenewFromTitle(true) | |
} | |
} | |
} | |
} | |
} | |
function ShowShare() { | |
if (exist(o.share)) { | |
o.share.Show() | |
} | |
} | |
this.showShare = function () { | |
ShowShare() | |
}; | |
this.updateTitle = function () { | |
if (v.title != '') { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "title") { | |
var y = false; | |
if (!b[x].g("show")) { | |
y = true; | |
b[x].set("display", true) | |
} | |
b[x].UpdateText(v.title); | |
if (y) { | |
b[x].set("display", false) | |
} | |
} | |
} | |
} | |
} | |
}; | |
this.customTextPl = function () { | |
CustomTextButs() | |
}; | |
function CustomTextButs() { | |
if (v.customtext) { | |
if (typeof (v.customtext) == "object") { | |
for (var x in v.customtext) { | |
if (v.customtext.hasOwnProperty(x)) { | |
CustomText(x, v.customtext[x]) | |
} | |
} | |
} | |
} | |
}; | |
this.customText = function (y, z) { | |
CustomText(y, z) | |
}; | |
this.upText = function (x) { | |
if (b[x]) { | |
b[x].UpText() | |
} | |
}; | |
this.upTexts = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("ctxt")) { | |
b[x].UpText() | |
} | |
} | |
} | |
}; | |
function CustomText(y, z) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("ctxt")) { | |
if (b[x].s("dom") == y) { | |
if (!b[x].g("show") || b[x].s("hidden") == 1) { | |
b[x].set("unhidden"); | |
b[x].set("display", true) | |
} | |
b[x].CustomText(z) | |
} | |
} | |
} | |
} | |
}; | |
this.resize = function () { | |
Resize() | |
}; | |
this.resize2 = function () { | |
Resize(true) | |
}; | |
this.resizeSettings = function () { | |
ResizeSettings(settings) | |
}; | |
this.resizePlaylist = function () { | |
ResizeSettings(playlist) | |
}; | |
this.Play = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "play") { | |
b[x].On() | |
} | |
} | |
} | |
o.vast_loadtxt ? o.vast_loadtxt.hide() : ''; | |
if (this.PlaylistVisible() && v.playlist.autohide == 1) { | |
this.Playlist() | |
} | |
o.play = true; | |
ShowOrHide() | |
}; | |
this.Pause = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "pause" || b[x].g("action") == "stop") { | |
b[x].Off() | |
} | |
} | |
} | |
if (playlist) { | |
if (v.playlist.openplaylistpause == 1 && !playlist.empty()) { | |
playlist.show() | |
} | |
} | |
o.play = false; | |
this.StopWaiting(); | |
ShowOrHide(); | |
if (v.toolbar.hide == 1 && v.toolbar.hideonpause == 1) { | |
HideForce(true) | |
} | |
}; | |
this.Mute = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "mute") { | |
b[x].On() | |
} | |
this.Volume(0) | |
} | |
} | |
ShowOrHide() | |
}; | |
this.Unmute = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "unmute") { | |
b[x].Off() | |
} | |
} | |
} | |
if (v.volume < 0.1) { | |
v.volume = 0.5; | |
o.actions.Volume(v.volume) | |
} else { | |
this.Volume(v.volume) | |
} | |
ShowOrHide() | |
}; | |
this.Volume = function (volume, y) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "volume") { | |
if (b[x].s("customline") != "speed") { | |
b[x].UpdatePlay(volume, 1, (y == "no" ? y : true)) | |
} | |
} | |
if (b[x].g("action") == "mute") { | |
b[x].UpdateVolume(volume) | |
} | |
} | |
} | |
ShowOrHide() | |
}; | |
this.Fullscreen = function () { | |
var bl = FindBut("action", "fullscreen"); | |
if (bl) { | |
bl.On(); | |
bl.set("scale", bl.s("scale")) | |
} | |
ShowOrHide(); | |
resizeonwidth ? setTimeout(ShowOrHide, 500) : ''; | |
HideInterval() | |
}; | |
this.Normalscreen = function () { | |
var bl = FindBut("action", "fullscreen"); | |
if (bl) { | |
bl.Off() | |
} | |
Resize(); | |
clearInterval(o.toolbarInterval); | |
ShowOrHide() | |
}; | |
this.onEnded = function () { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "play") { | |
b[x].ReplayIcon() | |
} | |
} | |
} | |
}; | |
this.Review = function () { | |
ShowOrHide() | |
}; | |
function ShowOrHide() { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") != "buffer") { | |
ShowOrHideProcessor(b[x]) | |
} | |
} | |
} | |
ShowOrHideProcessor(bg); | |
if (stretch_width_last != stretch_width) { | |
stretch_width_last = stretch_width; | |
Resize() | |
} | |
if (v.toolbar.hide == 1 && v.toolbar.hidedown == 1) { | |
ToolbarDown(!o.starttimeout && !o.mouseHere && !o.fullscreen && o.play && v.toolbar.hidejustfull != 1 && !o.casting) | |
} | |
}; | |
function ShowForce() { | |
var show = toolbarHidden && v.toolbar.hidewithoutmoving == 1; | |
if (!o.play && v.toolbar.hide == 1 && v.toolbar.hideonpause == 1) { | |
show = false | |
} | |
if (show) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") != "buffer") { | |
ShowOrHideProcessor(b[x], false) | |
} | |
} | |
} | |
css(o.frame, { | |
"cursor": "default" | |
}); | |
o.fcdef = true; | |
ShowOrHideProcessor(bg, false); | |
if (bg.g("show")) { | |
ToolbarShow() | |
} | |
ToolbarDown(false) | |
} | |
} | |
function HideForce() { | |
var hide = o.play && v.toolbar.hidewithoutmoving == 1 && !o.mouseDown; | |
if (o.controlover && v.toolbar.showovr == 1) { | |
hide = false | |
} | |
if (!o.play && v.toolbar.hide == 1 && v.toolbar.hideonpause == 1) { | |
hide = true | |
} | |
if (settings) { | |
if (settings.g("show") && o.setaction) { | |
hide = false | |
} | |
} | |
if (o.casting) { | |
hide = false | |
} | |
if (hide) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") != "buffer") { | |
ShowOrHideProcessor(b[x], true) | |
} | |
} | |
} | |
ShowOrHideProcessor(bg, true); | |
if (!bg.g("show")) { | |
toolbarHidden = true; | |
o.media.ToolbarHide(); | |
if (o.play) { | |
css(o.frame, { | |
"cursor": "none" | |
}); | |
o.fcdef = false | |
} | |
} | |
ToolbarDown(true) | |
} | |
} | |
function HideInterval() { | |
if (v.toolbar.hidewithoutmoving == 1) { | |
if (v.toolbar.hidejustfull == 1 && !o.fullscreen && !o.fullscreen_process) { } else { | |
clearInterval(o.toolbarInterval); | |
o.toolbarInterval = setInterval(HideForce, ((v.toolbar.hideleavetimeout > 0 ? v.toolbar.hideleavetimeout : v.toolbar.hidetimeout) * 1000)) | |
} | |
} | |
} | |
function ShowOrHideProcessor(but, forcehide) { | |
var hide = false; | |
var show = false; | |
var toolbar_hide = false; | |
if (v.toolbar.hide == 1) { | |
if (!o.starttimeout && !o.mouseHere && !o.fullscreen && o.play && v.toolbar.hidejustfull != 1 && !o.casting) { | |
hide = true; | |
show = false; | |
toolbar_hide = true | |
} else { | |
hide = false; | |
show = true | |
} | |
if (exist(forcehide) && !o.casting) { | |
hide = forcehide; | |
show = !hide | |
} | |
if (v.toolbar.hide == 1 && v.toolbar.hidedown == 1 && (but.s("position").indexOf("controls") == 0 || but.s("action") == "line")) { | |
hide = false; | |
show = true | |
} | |
if (v.toolbar.hideonpause == 1 && !o.play) { | |
hide = true; | |
show = false; | |
toolbar_hide = false | |
} | |
if (v.toolbar.showuntilmeta == 1 && !o.metadata && o.play) { | |
hide = false; | |
show = true | |
} | |
} else { | |
if (but.s("hide") != 1) { | |
show = true | |
} | |
} | |
if (show && !o.fcdef) { | |
css(o.frame, { | |
"cursor": "default" | |
}); | |
o.fcdef = true | |
} | |
var a = but.g("action"); | |
if (a == "custom" && but.s("position").indexOf("controls") == -1) { | |
hide = false; | |
show = true | |
} | |
if (o.casting) { | |
if (a == "line") { | |
if (o.media.duration() == -1) { | |
hide = true; | |
show = false | |
} | |
} | |
} | |
var re_y = false; | |
var hp = HideProof(but); | |
if (but.s("hide") == 1) { | |
if (but.s("hideonleaveandplay") == 1) { | |
if (toolbar_hide || forcehide || (o.play && !o.mouseHere)) { | |
!toolbar_hide && !forcehide ? '' : hp = true | |
} | |
} | |
if (but.s("hideonbar") == 1) { | |
if (!toolbar_hide && !forcehide) { | |
hp = true | |
} | |
} | |
if (but.s("hidelap") == 1) { | |
if (o.play && !o.mouseHere) { | |
hp = true | |
} | |
} | |
if (but.s("hideonwidth") == 1 || but.s("hideoverwidth") == 1 || but.s("hideonfullscreen") == 1) { | |
resizeonwidth = true | |
} | |
} | |
if (hp) { | |
hide = true; | |
show = false | |
} else { | |
!hide ? show = true : '' | |
} | |
if (but.s("action") == "volume") { | |
if (but.s("hide") == 1 && but.s("hideoutmute") == 1) { | |
hide = true; | |
show = false; | |
if (!toolbar_hide && (o.hidden_volume_over || o.hidden_volume_over_process) && !forcehide && but.s("hiddenwidth") != 1) { | |
hide = false; | |
show = true | |
} else { | |
re_y = true | |
} | |
} | |
} | |
if (o.nativecontrols || (!o.start && v.toolbar.hide == 1 && v.toolbar.hideuntilstarted == 1) || (!o.metadata && v.toolbar.hide == 1 && v.toolbar.hideuntilmeta == 1)) { | |
if (but.s("position").indexOf("controls") > -1 || but.s("position").indexOf("bottom") > -1) { | |
hide = true; | |
show = false | |
} | |
if (v.toolbar.hidejustfull == 1 && !o.fullscreen) { | |
hide = false; | |
show = true | |
} | |
} | |
if (settings) { | |
if (settings.g("show") && v.settings.always != 1) { | |
toolbar_hide = false; | |
forcehide = false | |
} | |
} | |
if (playlist && o.droplist) { | |
if (v.playlist.dropopen == 1) { | |
if (o.droplist.Visible()) { | |
return | |
} | |
} | |
} | |
if (a == "share") { | |
if (exist(o.share)) { | |
if (o.share.empty()) { | |
hide = true; | |
show = false; | |
but.set("animation", "none") | |
} | |
} | |
} | |
if (a == "playlist" || a == "next" || a == "prev" || but.s("hidewithoutplaylist") == 1) { | |
if (playlist) { | |
if (playlist.empty() && but.s("hidewithoutplaylist") != 0) { | |
hide = true; | |
show = false; | |
but.set("animation", "none") | |
} | |
} else { | |
hide = true; | |
show = false | |
} | |
} | |
if (o.hideall == 1) { | |
hide = true; | |
show = false | |
} | |
if (re_y) { | |
var cc = ControlCoordinate(but); | |
if (cc) { | |
cc.y > 0 ? but.set("y0", cc.y) : ''; | |
css(but.c(), { | |
"position": "absolute", | |
"top": but.g("y0") | |
}) | |
} | |
} | |
if (hide) { | |
HideControl(but, (firstly ? true : false)) | |
} | |
if (show) { | |
ShowControl(but) | |
} | |
if (but == bg) { | |
if (!hide && show) { | |
ToolbarShow(); | |
show2(bg2); | |
toolbarHidden = false; | |
uijs == 0 ? js("ui", 1) : ''; | |
uijs = 1; | |
o.cut && o.cutted ? o.cut.show() : '' | |
} | |
if (hide && !show && !o.casting) { | |
o.media.ToolbarHide(); | |
SettingsClose(); | |
hide2(bg2); | |
toolbarHidden = true; | |
uijs == 1 ? js("ui", 0) : ''; | |
uijs = 0; | |
o.cut && o.cutted ? o.cut.hide() : '' | |
} | |
if (playlist) { | |
if (v.playlist.always == 1 && !playlist.empty()) { | |
if (show || o.nativecontrols) { | |
if (v.playlist.alwaysnotfullscreen == 1 && o.fullscreen) { } else { | |
if (!playlist.g("show")) { | |
if (v.playlist.alwaysjustpause == 1) { | |
!o.play ? playlist.show() : '' | |
} else { | |
playlist.show() | |
} | |
} | |
} | |
} else { | |
if (hide && playlist.g("show")) { | |
playlist.hide() | |
} | |
} | |
} | |
} | |
} | |
}; | |
function HideProof(but) { | |
var x = false; | |
var a = but.g("action"); | |
if (but.s("hide") == 1) { | |
if (but.s("hideonplay") == 1) { | |
o.play ? x = true : '' | |
} | |
if (but.s("hideonpause") == 1) { | |
!o.play ? x = true : '' | |
} | |
if (but.s("hdnn") == 1) { | |
x = true | |
} else { | |
if (but.s("hideondesktop") == 1) { | |
if (o.system.desktop) { | |
but.set("hdnn", 1); | |
x = true | |
} | |
} | |
if (but.s("hideonmobile") == 1) { | |
if (o.system.mobile) { | |
but.set("hdnn", 1); | |
x = true | |
} | |
} | |
} | |
if (but.s("hideoverwidth") == 1) { | |
if (o.screen_w > but.s("hideoverwidthlimit")) { | |
but.set("hiddenwidth", 1); | |
x = true | |
} else { | |
but.set("hiddenwidth", 0) | |
} | |
} | |
if (but.s("hideunwait") == 1 && !waiting) { | |
x = true; | |
o.wtcntrl = 1 | |
} | |
if (but.s("hideonwidth") == 1) { | |
if (o.screen_w <= but.s("hideonwidthlimit")) { | |
but.set("hiddenwidth", 1); | |
x = true | |
} else { | |
but.set("hiddenwidth", 0) | |
} | |
} | |
if (but.s("hideafterstart") == 1) { | |
o.start ? x = true : '' | |
} | |
var t = o.media.time(); | |
var d = o.media.duration(); | |
if (but.s("hideafter") == 1 && but.s("hideaftersec") > 0) { | |
if (t >= but.s("hideaftersec")) { | |
x = true | |
} | |
} | |
if (but.s("hidebefore") == 1 && but.s("hidebeforesec") > 0) { | |
if (t < but.s("hidebeforesec")) { | |
x = true | |
} | |
} | |
if (but.s("hidebefore2") == 1 && but.s("hidebeforesec2") > 0) { | |
if (t < d - but.s("hidebeforesec2") || d == 0) { | |
x = true | |
} | |
} | |
if (but.s("hidelastpl") == 1) { | |
if (playlist) { | |
if (!playlist.PlaylistNextExist()) { | |
x = true | |
} | |
} | |
} | |
if (but.s("hide0timestore") == 1) { | |
if (o.start || !o.continue || o.media.isLive()) { | |
x = true | |
} | |
if (o.continue) { | |
if (o.continue.flag().t == 0) { | |
x = true | |
} | |
} | |
} | |
if (but.s("hideuntilstarted") == 1) { | |
!o.start ? x = true : '' | |
} | |
if (but.s("hideuntilto") > 0) { | |
x = true | |
} | |
if (but.s("hideonvar") == 1) { | |
if (exist(but.s("hidevar"))) { | |
options[but.s("hidevar")] ? x = true : '' | |
} | |
} | |
if (but.s("hideuntiltext") == 1) { | |
if (!exist(but.s("customtext"))) { | |
x = true | |
} | |
} | |
if (but.s("hidewovar") == 1) { | |
if (exist(but.s("hidevar2"))) { | |
!options[but.s("hidevar2")] ? x = true : '' | |
} | |
} | |
if (but.s("hideuntilstartedios") == 1 && o.system.ios) { | |
!o.start || o.newfile ? x = true : '' | |
} | |
if (but.s("hideuntilended") == 1) { | |
!o.media.ended() ? x = true : '' | |
} | |
if (but.s("hideonvod") == 1) { | |
!o.media.isLive() ? x = true : '' | |
} | |
if (but.s("hideonleave") == 1) { | |
!o.mouseHere ? x = true : '' | |
} | |
if (but.s("hidenormscreen") == 1) { | |
!o.fullscreen ? x = true : '' | |
} | |
if (but.s("hideonfullscreen") == 1) { | |
o.fullscreen ? x = true : '' | |
} | |
if (but.s("hideonunmute") == 1) { | |
!o.muted ? x = true : '' | |
} | |
if (but.s("hideonlive") == 1) { | |
o.media.isLive() && o.media.currentFile().indexOf("?DVR") == -1 ? x = true : '' | |
} | |
if (but.s("hidewithposter") == 1) { | |
isVisible(o.poster) ? x = true : '' | |
} | |
if (but.s("hideuntilmeta") == 1) { | |
!o.metadata ? x = true : '' | |
} | |
if (but.s("hideonmeta") == 1) { | |
o.metadata ? x = true : '' | |
} | |
if (but.s("hidemini") == 1) { | |
o.mini ? x = true : '' | |
} | |
if (but.s("hidenomini") == 1) { | |
!o.mini ? x = true : '' | |
} | |
if (but.s("hideafterclick") == 1) { | |
if (but.g("clicked")) { | |
x = true | |
} | |
} | |
if (but.s("hidenoab") == 1) { | |
!o.ab ? x = true : '' | |
} | |
if (but.s("hideab") == 1) { | |
o.ab ? x = true : '' | |
} | |
if (but.s("hideonyoutube") == 1) { | |
if (v.preload == 1 && v.screenclick == 1) { | |
if (o.file_type == "youtube" && !exist(v.poster) && v.youtubeposter == 0) { | |
if (!o.start || o.media.status() == "ended") { | |
if (v.poster == '') { } else { | |
x = true | |
} | |
} | |
} | |
} | |
} | |
} | |
if (a == "custom") { | |
var lu = but.s("linkurl"); | |
if (lu) { | |
if (lu == "api:airplay" || lu == "airplay") { | |
if (!o.airplay && !o.airplayed) { | |
x = true | |
} | |
} | |
if (lu == "api:pipwebkit") { | |
if (!o.pipwebkit || (!o.start && v.preload == 0)) { | |
x = true | |
} | |
} | |
if (lu == "api:unfixing") { | |
if (!o.mini) { | |
x = true | |
} | |
} | |
if (lu.indexOf("captions") > -1) { | |
if (!o.captions) { | |
x = true | |
} | |
} | |
if (indOf([lu], "skip") && !indOf([lu], "js:") && but.s("hdnn") != 1) { | |
var sk = false; | |
if (exist(v.skip)) { | |
if (!o.skpbt) { | |
typeof PluginSkip == 'function' ? o.skpbt = new PluginSkip() : '' | |
} | |
if (o.skpbt) { | |
sk = o.skpbt.check(but) | |
} | |
} !sk ? x = true : '' | |
} | |
} | |
} | |
if (a == "playlist" || a == "next" || a == "prev") { | |
if (playlist) { | |
if (playlist.empty()) { | |
x = true | |
} | |
} else { | |
x = true | |
} | |
} | |
if (a == "settings") { | |
if (settings) { | |
if (settings.empty()) { | |
x = true; | |
o.file_type != 'hls' ? but.set("animation", "none") : '' | |
} | |
} else { | |
x = true | |
} | |
} | |
if (but.g("type") == "text") { | |
if (but.g("length") == 0) { | |
x = true | |
} | |
} | |
if (but.g("settings#")) { | |
if (!but.g("set#visible")) { | |
x = true | |
} | |
} | |
if (but.s("chromecast") == 1) { | |
var cb = document.getElementById("pjs_cast_button_" + v.id); | |
if ((o.media.duration() == 0 && o.media.time() == 0) || !o.tagvideo || !isVisible(cb) || !o.cast_available) { | |
x = true | |
} | |
} | |
if (but.s("hidetime") == 1) { | |
!x ? but.set("hidetime", 1) : '' | |
} | |
if (a == "duration") { | |
if (o.media.isLive()) { | |
x = true | |
} | |
} | |
if (but.g("key") == "control_start" && o.system.mobile) { | |
if (o.nativecontrols && o.system.android) { | |
x = true | |
} | |
} | |
return x | |
} | |
function HideControl(but, quick) { | |
if (but.g("show")) { | |
if (o.fullscreen_process || but.s("animation") == "none" || quick) { | |
but.set("display", false) | |
} else { | |
HideAnimate(but) | |
} | |
but.set("show", false) | |
} | |
}; | |
function ShowControl(but) { | |
if (!but.g("show")) { | |
if (but.s("animation") == "none" || o.fullscreen_process) { | |
but.set("display", true); | |
if (o.fullscreen_process && but.g("key") != 'bg') { | |
but.set("opacity", 1) | |
} | |
if (but.g("action") == "volume") { | |
if (o.hidden_volume) { | |
HidePositionControl(but) | |
} | |
} | |
} else { | |
ShowAnimate(but) | |
} | |
if (but.s("action") == "volume") { | |
o.controls.Volume(o.muted ? 0 : v.volume) | |
} | |
if (but.s("action") == "line") { | |
o.actions.Loading() | |
} | |
but.set("show", true) | |
} | |
}; | |
function HideAnimate(but) { | |
killMotion(but.g("key")); | |
var m_type = "alpha|"; | |
var m_to = "0|"; | |
var hide = 1; | |
var a = but.s("animation"); | |
if (but.s("apdra") == 1) { | |
m_type = ''; | |
m_to = '' | |
} | |
var p = but.s("position"); | |
var scl = but.g("scaleX"); | |
exist2(but.s("apdr")) ? p = but.s("apdr") : ''; | |
if (a == "scale") { | |
m_type += "scale|"; | |
m_to += "0|" | |
} | |
if (a == "position") { | |
if (p.indexOf("right") > -1 && p.indexOf("controls") == -1) { | |
m_type += "x|"; | |
m_to += int(o.screen_w + but.g("width") / 2 * scl) + "|" | |
} | |
if (p.indexOf("left") > -1) { | |
m_type += "x|"; | |
m_to += int(-but.g("width") / 2) * scl + "|" | |
} | |
if (p.indexOf("top") > -1) { | |
m_type += "y|"; | |
m_to += (-but.g("height") / 2) * scl + "|" | |
} | |
if (p.indexOf("bottom") > -1 || p.indexOf("controls") > -1 || p == "timeline") { | |
m_type += "y|"; | |
if (but.g("action") == "line" || but.g("action") == "volume") { | |
m_to += int(o.screen_h + but.s("h") + (but.s("h") < 20 ? 20 - but.s("h") : 0)) + "|" | |
} else { | |
m_to += int(o.screen_h + but.g("height") / 2) + "|" | |
} | |
} | |
if (p == "center") { | |
m_type += "scale|"; | |
m_to += "0|" | |
} | |
} | |
var m = new Motion({ | |
"mc": but, | |
"me": but.g("key"), | |
"type": m_type.substr(0, m_type.length - 1), | |
"to": m_to.substr(0, m_to.length - 1), | |
"hide": hide | |
}) | |
}; | |
function ShowAnimate(but) { | |
killMotion(but.g("key")); | |
var m_type = ""; | |
var m_to = ""; | |
var a = but.s("animation"); | |
var p = but.s("position"); | |
exist2(but.s("apdr")) ? p = but.s("apdr") : ''; | |
if (but.g("opacity") != 1 && but.s("apdra") != 1) { | |
m_type = "alpha|"; | |
m_to = (but.g("key") == 'bg' ? v.toolbar.a : "1") + "|" | |
} | |
if (a == "scale") { | |
if (but.g("scaleX") != but.s("scale")) { | |
m_type += "scale|"; | |
m_to += but.s("scale") + "|" | |
} | |
} | |
if (a == "position") { | |
if (p == "center") { | |
if (but.g("scaleX") != but.s("scale")) { | |
m_type += "scale|"; | |
m_to += but.s("scale") + "|" | |
} | |
} else { | |
if (p.indexOf("controls") > -1) { | |
if (but.g("y") != but.g("y0")) { | |
m_type += "y|"; | |
m_to += but.g("y0") + "|" | |
} | |
} else { | |
m_type += "x|y|"; | |
m_to += but.g("x0") + "|" + but.g("y0") + "|" | |
} | |
} | |
} | |
if (m_type != "" && m_to != "") { | |
var m = new Motion({ | |
mc: but, | |
me: but.g("key"), | |
type: m_type.substr(0, m_type.length - 1), | |
to: m_to.substr(0, m_to.length - 1), | |
show: 1 | |
}) | |
} else { | |
but.set("display", true) | |
} | |
}; | |
this.Mouse = function (key, type, quick) { | |
var resize = false; | |
var stop = false; | |
var but = b[key]; | |
var action = but.g("action"); | |
var linkurl = but.s("linkurl"); | |
if (type == "over") { | |
if (o.hidden_volume) { | |
if (action == "volume" || action == "mute" || action == "unmute") { | |
o.hidden_volume_over = true; | |
o.hidden_volume_over_process = true; | |
resize = true; | |
ShowOrHide(); | |
if (v.control_line.hideonvolume == 1) { | |
var bl = FindBut("action", "line"); | |
if (bl) { | |
hide2(bl.c()) | |
} | |
} | |
} | |
} | |
if (settings && v.settings.showovercontrol == 1 && ((action == "settings" || linkurl.indexOf("setting") == 0) || linkurl.indexOf("settings:") == 0)) { | |
clearTimeout(o.settingsovertimer); | |
if (!settings.g("show") || _lastactbut != but) { | |
Action(but, type); | |
o.overopentimeout = action + linkurl; | |
setTimeout(function () { | |
o.overopentimeout = null | |
}, 500) | |
} | |
} | |
if (playlist && v.playlist.showovercontrol == 1 && action == "playlist") { | |
clearTimeout(o.playlistovertimer); | |
if (!playlist.g("show") || _lastactbut != but) { | |
Action(but, type); | |
o.overopentimeout = action; | |
setTimeout(function () { | |
o.overopentimeout = null | |
}, 500) | |
} | |
} | |
} | |
if (type == "out") { | |
if (o.hidden_volume) { | |
if (action == "volume" || action == "mute" || action == "unmute") { | |
o.hidden_volume_over = false; | |
o.hidden_volume_over_process = true; | |
setTimeout(function () { | |
if (!o.hidden_volume_over) { | |
o.hidden_volume_over_process = false; | |
if (!toolbarHidden) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "volume") { | |
HideControl(b[x]); | |
Resize() | |
} | |
if (b[x].g("action") == "line") { | |
if (v.control_line.hideonvolume == 1) { | |
show2(b[x].c()) | |
} | |
} | |
} | |
} | |
} | |
} | |
}, 500) | |
} | |
} | |
if (action == "line") { | |
o.actions.UpdatePlay(1) | |
} | |
if (v.settings.showovercontrol == 1 && ((action == "settings" || linkurl.indexOf("setting") == 0) || linkurl.indexOf("settings:") == 0)) { | |
clearTimeout(o.settingsovertimer); | |
o.settingsovertimer = setTimeout(function () { | |
if (!o.mouseDown) { | |
SettingsClose(1) | |
} | |
}, (v.settings.showoverto > 0 ? v.settings.showoverto * 1000 : 1000)) | |
} | |
if (playlist && v.playlist.showovercontrol == 1 && action == "playlist") { | |
clearTimeout(o.playlistovertimer); | |
o.playlistovertimer = setTimeout(function () { | |
if (!o.mouseDown) { | |
playlist.g("show") ? playlist.hide(1) : '' | |
} | |
}, (v.playlist.showoverto > 0 ? v.playlist.showoverto * 1000 : 1000)) | |
} | |
} | |
if (resize) { | |
setTimeout(Resize, 10) | |
} | |
}; | |
this.StageLeave = function () { | |
if (o.volumewheel && !o.fullscreen && !o.fullscreen_process) { | |
o.actions.volumewheel(false); | |
o.volumewheel = false | |
} | |
if (o.poster) { | |
if (v.poster_aover > -1 && isVisible(o.poster)) { | |
css(o.poster, { | |
opacity: v.poster_a | |
}) | |
} | |
} | |
if (o.play && v.playonhover == 1 && v.pauseonhover != 0) { | |
o.actions.Pause() | |
} | |
if (v.toolbar.hideleavetimeout > 0) { | |
clearTimeout(o.leavetimeout); | |
o.leavetimeout = setTimeout(ShowOrHide, v.toolbar.hideleavetimeout * 1000) | |
} else { | |
ShowOrHide() | |
} | |
}; | |
this.StageOver = function () { | |
if (o.poster) { | |
if (v.poster_aover > -1 && isVisible(o.poster)) { | |
css(o.poster, { | |
opacity: v.poster_aover | |
}) | |
} | |
} | |
if (!o.play && v.playonhover == 1) { | |
o.actions.Play() | |
} | |
ShowOrHide(); | |
ToolbarDown(false) | |
}; | |
this.StageMove = function (stage_x, stage_y) { | |
var y; | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
y = b[x].g("action"); | |
if (y == "line" || y == "volume") { | |
b[x].StageMove(stage_x, stage_y) | |
} | |
} | |
} | |
}; | |
this.StageMove2 = function () { | |
if (v.toolbar.hide == 1) { | |
if (v.toolbar.hidejustfull == 1 && !o.fullscreen) { | |
return | |
} | |
if ((!o.mouseHere || o.system.mobile) && o.media.status() == "playing") { | |
o.mouseHere = true; | |
ShowOrHide(); | |
o.system.mobile ? setTimeout(function () { | |
o.mouseHere = false | |
}, 500) : '' | |
} | |
if (v.toolbar.hidewithoutmoving == 1) { | |
ShowForce(); | |
HideInterval() | |
} | |
ToolbarDown(false) | |
} | |
}; | |
this.StageMouseUp = function (stage_x, stage_y) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "line" || b[x].g("action") == "volume") { | |
b[x].StageMouseUp(stage_x, stage_y) | |
} | |
} | |
} | |
}; | |
this.Played = function (time, duration, upd) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "line") { | |
b[x].UpdatePlay(time, duration, upd) | |
} | |
if (b[x].g("action") == "time") { | |
UpdateTime(b[x], time, duration) | |
} | |
if (b[x].s("rotateplaying") == 1) { | |
b[x].Rotate() | |
} | |
if (b[x].s("svgtmln") == 1) { | |
b[x].Tmln(time, duration) | |
} | |
if (b[x].s("often") == 1) { | |
if (!b[x].g("show") && toolbarHidden) { } else if (b[x].g("show") == HideProof(b[x])) { | |
ShowOrHide() | |
} | |
} | |
} | |
} | |
}; | |
function ToolbarDown(x) { | |
if (v.toolbar.hide == 1) { | |
x ? SettingsClose() : ''; | |
if (v.toolbar.hidedown == 1) { | |
if (!o.play && v.toolbar.hideonpause == 1) { | |
x = true | |
} | |
if (x && !o.toolbarisdown) { | |
css(o.toolbar, { | |
"top": bg.h() | |
}) | |
} | |
if (!x && o.toolbarisdown) { | |
css(o.toolbar, { | |
"top": 0 | |
}) | |
} | |
o.toolbarisdown = x | |
} | |
} | |
} | |
function ToolbarShow() { | |
toolbarHidden = false; | |
o.media.ToolbarShow(); | |
if (o.resizeonmouse) { | |
o.resizeonmouse = false; | |
Resize(); | |
setTimeout(Resize, 300) | |
} | |
} | |
function UpdateTime(x, time, duration) { | |
if (v.delete > 0) { | |
time -= v.delete; | |
duration -= v.delete | |
} | |
var y = Time(time); | |
if (x.s("inversetime") == "1") { | |
y = Time(duration - time) | |
} | |
if (x.s("showduration") == "1") { | |
if (x.s("showboth") == "1") { | |
y = y + (duration > 0 ? ' ' + Lang(x.s("separator")) + ' ' + Time(duration) : '') | |
} else { | |
time == 0 ? y = Time(duration) : '' | |
} | |
} | |
x.UpdateText(y) | |
} | |
this.Loaded = function (time, duration) { | |
var x = FindBut("action", "line"); | |
if (x) { | |
x.UpdateLoad(time, duration) | |
} | |
}; | |
this.Cut = function (y) { | |
if (o.media.duration() > 0) { | |
var x = FindBut("action", "line"); | |
if (x) { | |
x.Cut(y) | |
} | |
} | |
}; | |
this.Waiting = function () { | |
if (!waiting) { | |
if (v.hidevideo == 1) { | |
clearTimeout(wait_to); | |
wait_to = setTimeout(Waiting, 500) | |
} else { | |
Waiting() | |
} | |
} | |
}; | |
function Waiting() { | |
if (!waiting) { | |
js("buffering"); | |
waiting = true; | |
var x = FindBut("action", "buffer"); | |
if (x) { | |
x.Buffer(); | |
if (v.posteronwait == 1 && o.play) { | |
clearTimeout(o.wtpstr_to); | |
o.wtpstr_to = setTimeout(WaitPoster, 1000) | |
} | |
} | |
o.wtcntrl ? ShowOrHide() : '' | |
} | |
} | |
function WaitPoster() { | |
if (o.play && waiting) { | |
o.actions.ShowPoster() | |
} | |
} | |
this.HideElement = function (y) { | |
for (var x in b) { | |
if (x == y) { | |
b[x].set("hide2") | |
} | |
} | |
}; | |
this.StopWaiting = function (time, duration) { | |
clearTimeout(wait_to); | |
if (waiting) { | |
js("buffered"); | |
var x = FindBut("action", "buffer"); | |
if (x) { | |
x.BufferStop(); | |
if (v.posteronwait == 1 && o.play) { | |
o.actions.HidePoster() | |
} | |
} | |
waiting = false; | |
o.wtcntrl ? ShowOrHide() : '' | |
} | |
}; | |
this.volumescroll = function () { | |
var x = FindBut("linkurl", "volume scroll"); | |
if (x) { | |
x.set("show2"); | |
x.UpdateText(Lang('volume') + ' ' + (o.muted ? 0 : Math.ceil(v.volume * 100)) + '%'); | |
clearTimeout(o.volumescroll); | |
o.volumescroll = setTimeout(Volumescrolled, 1000) | |
} | |
}; | |
function Volumescrolled() { | |
var x = FindBut("linkurl", "volume scroll"); | |
if (x) { | |
x.UpdateText(''); | |
x.set("hide2"); | |
clearTimeout(o.volumescroll) | |
} | |
} | |
this.Seek = function (time, duration) { | |
if (v.delete > 0) { | |
time -= v.delete; | |
duration -= v.delete | |
} | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].s("on") == 1) { | |
if (b[x].g("action") == "line") { | |
duration > 0 ? b[x].set("click", time / duration) : ''; | |
b[x].UpdatePlaySeek() | |
} | |
if (b[x].g("action") == "time") { | |
UpdateTime(b[x], time, duration) | |
} | |
if (b[x].g("action") == "live") { | |
b[x].set("iconopacity", 0.5); | |
b[x].set("saturate", 0) | |
} | |
} | |
} | |
} | |
}; | |
this.Duration = function (time, duration) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "duration") { | |
if (v.delete > 0) { | |
duration -= v.delete | |
} | |
b[x].UpdateText(Time(duration)) | |
} | |
if (b[x].g("action") == "line") { | |
b[x].UpdatePlay(time, duration); | |
b[x].PlacePoints(duration) | |
} | |
if (b[x].g("action") == "time") { | |
UpdateTime(b[x], time, duration) | |
} | |
} | |
} | |
}; | |
this.Settings = function () { | |
if (!o.settings2) { | |
settings.g("show") ? settings.hide() : settings.show() | |
} | |
}; | |
this.SettingsVisible = function () { | |
if (settings) { | |
if (o.settings2) { | |
return o.settings2.isVisible() | |
} else { | |
return settings.g("show") ? true : false | |
} | |
} else { | |
return false | |
} | |
}; | |
this.MenuProc = function (x) { | |
if (settings) { | |
settings.menuproc(x) | |
} | |
}; | |
this.SettingsClose = function () { | |
SettingsClose() | |
}; | |
this.SettingsTimer = function (x) { | |
if (settings) { | |
settings.UpdateTimer(x) | |
} | |
}; | |
this.SettingsSpeed = function () { | |
if (settings) { | |
settings.UpdateSpeed() | |
} | |
}; | |
this.SettingsExist = function (x) { | |
if (settings) { | |
return settings.Exist(x) | |
} | |
}; | |
function SettingsClose(x) { | |
if (settings) { | |
settings.g("show") ? settings.hide(x) : '' | |
} | |
o.settings2 ? o.settings2.hide() : '' | |
}; | |
this.Playlist = function () { | |
if (playlist) { | |
if (playlist.g("show")) { | |
playlist.hide(1) | |
} else { | |
playlist.show() | |
} | |
} | |
}; | |
this.PlaylistShow = function (x) { | |
if (playlist) { | |
if (playlist.g("show") && x != 1) { | |
x != 2 ? playlist.hide() : '' | |
} else { | |
setTimeout(function () { | |
playlist.show() | |
}, 100) | |
} | |
} | |
}; | |
this.PlaylistVisible = function () { | |
if (playlist) { | |
return playlist.g("show") ? true : false | |
} else { | |
return false | |
} | |
}; | |
this.PlaylistG = function (x) { | |
return playlist ? playlist.g(x) : '' | |
}; | |
this.UpdatePlaylist = function (x) { | |
if (playlist) { | |
playlist.updatePlaylist(x) | |
} | |
}; | |
this.PreNewPl = function (x) { | |
if (playlist) { | |
playlist.prenewpl(x) | |
} | |
}; | |
this.PlaylistNext = function () { | |
if (playlist) { | |
playlist.PlaylistNext() | |
} | |
}; | |
this.PlaylistHere = function () { | |
if (playlist) { | |
playlist.PlaylistHere() | |
} | |
}; | |
this.PlaylistControls = function () { | |
PlaylistControls() | |
}; | |
function PlaylistControls() { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "next") { | |
css(b[x].c(), { | |
"opacity": (!playlist.PlaylistNextExist() ? 0.5 : 1) | |
}) | |
} | |
if (b[x].g("action") == "prev") { | |
css(b[x].c(), { | |
"opacity": (!playlist.PlaylistPrevExist() ? 0.5 : 1) | |
}) | |
} | |
} | |
} | |
} | |
this.PlaylistNextExist = function () { | |
if (playlist) { | |
return playlist.PlaylistNextExist() | |
} else { | |
return false | |
} | |
}; | |
this.PlaylistPrevExist = function () { | |
if (playlist) { | |
return playlist.PlaylistPrevExist() | |
} else { | |
return false | |
} | |
}; | |
this.PlaylistExist = function () { | |
if (playlist) { | |
return playlist.PlaylistExist() | |
} else { | |
return false | |
} | |
}; | |
this.PlaylistRewind = function () { | |
if (playlist) { | |
playlist.PlaylistRewind() | |
} | |
}; | |
this.PlaylistPrev = function () { | |
if (playlist) { | |
playlist.PlaylistPrev() | |
} | |
}; | |
this.PlaylistPlayId = function (x) { | |
if (x && playlist) { | |
playlist.playById(x) | |
} | |
}; | |
this.PlaylistOpenId = function (x) { | |
if (x && playlist) { | |
playlist.openById(x) | |
} | |
}; | |
this.PlaylistMove = function (x) { | |
if (x && playlist) { | |
css(playlist.co(), { | |
"maxHeight": "none", | |
"padding-right": playlist.s("bgpaddingright") | |
}); | |
document.getElementById(x).appendChild(playlist.co()); | |
hide2(playlist.c()) | |
} | |
}; | |
this.ShowSettingsBut = function () { }; | |
this.QualityChanged = function (x) { | |
if (settings) { | |
settings.SetQuality(); | |
settings.g("show") ? setTimeout(function () { | |
settings.hide() | |
}, 200) : '' | |
} | |
}; | |
this.QualityChangedNoHand = function () { | |
if (settings) { | |
settings.SetQuality() | |
} | |
if (o.settings2) { | |
o.settings2.update() | |
} | |
}; | |
this.AirplayChanged = function (x) { | |
if (settings) { | |
settings.Airplay() | |
} | |
Resize(); | |
ShowOrHide() | |
}; | |
this.SettingChanged = function (x) { | |
if (settings) { | |
settings.SetSetting(x); | |
settings.g("show") ? settings.hide() : '' | |
} | |
if (o.settings2) { | |
o.settings2.update() | |
} | |
x == "speed" ? SpeedChanged() : '' | |
}; | |
function SpeedChanged() { | |
if (o.line_speed) { | |
var x = parseFloat(o.custom_speed / o.files_speed.slice(-1)[0], 1).toFixed(2); | |
for (var i in b) { | |
if (b.hasOwnProperty(i)) { | |
if (b[i].s("customline") == "speed" && o.custom_speed) { | |
b[i].UpdatePlay(x, 1) | |
} | |
if (b[i].s("linkurl") == "api:speed,1.0") { | |
b[i].UpdateVolume(x) | |
} | |
} | |
} | |
} | |
} | |
this.AudioTrackChangedNoHand = function (x) { | |
if (settings) { | |
settings.SetSetting("audiotrack") | |
} | |
if (o.settings2) { | |
o.settings2.update() | |
} | |
}; | |
this.SubtitleChanged = function () { | |
if (settings) { | |
settings.SetSubtitle(); | |
settings.g("show") ? setTimeout(function () { | |
settings.hide() | |
}, 200) : '' | |
} | |
if (o.settings2) { | |
o.settings2.update() | |
} | |
if (o.casting && o.tagvideo) { | |
o.chromecast.Sub() | |
} | |
}; | |
this.SubOpt = function () { | |
o.settings2 ? o.settings2.hide() : ''; | |
if (settings) { | |
settings.SubOpt() | |
} | |
}; | |
this.SettingsN = function (num, display, val) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].g("action") == "settings") { | |
if (b[x].s("hdicon") == 1) { | |
b[x].HdIcon() | |
} | |
} | |
if (b[x].g("action_settings") == "settings#" + num) { | |
b[x].set("set#visible", display); | |
if (b[x].g("type") == "text") { | |
if (val) { | |
b[x].UpdateText(NoSpan(val)) | |
} | |
} else { | |
if (v.settings['settings' + num + 'action'] == "subtitle") { | |
if (val == Lang("off")) { | |
b[x].CustomSwitch(0) | |
} else { | |
b[x].CustomSwitch(1) | |
} | |
} | |
Resize() | |
} | |
ShowOrHideProcessor(b[x]) | |
} | |
} | |
} | |
}; | |
this.UpdateSettings = function () { | |
if (settings) { | |
settings.SetQuality(); | |
settings.SetSetting("audiotrack"); | |
settings.SetSetting("download") | |
} | |
}; | |
this.RenewPoints = function () { | |
var x = FindBut("action", "line"); | |
if (x) { | |
x.RenewPoints() | |
} | |
}; | |
this.resize = function () { | |
Resize(); | |
if (toolbarHidden) { | |
o.resizeonmouse = true | |
} | |
}; | |
this.resizeFromText = function (x) { | |
if (!toolbarHidden || x == 1) { | |
Resize(); | |
ShowOrHide() | |
} else { | |
v.toolbar.resizeme = true | |
} | |
}; | |
this.startcss = function () { | |
var b = FindBut("type", "css"); | |
if (b) { | |
b.setcss() | |
} | |
}; | |
this.refresh = function () { | |
ShowOrHide(); | |
Resize(); | |
ShowOrHide(); | |
if (o.nativecontrols) { | |
hide2(bg2) | |
} else { | |
!toolbarHidden ? show2(bg2) : '' | |
} | |
}; | |
this.KeyDown = function (event) { | |
if (pljssglobalid == v.id && v.hotkey.on == 1) { | |
var x = event.which; | |
var y = false; | |
if (x == undefined) { | |
x = event.keyCode | |
} | |
if (exist(o.vast) || exist(o.pass) || o.stopkeys == 1) { | |
return false | |
} | |
if (o.play && v.hotkey.onplay == 1) { | |
y = true | |
} | |
if (((v.hotkey.space == 1 && x == 32) || (v.hotkey.enter == 1 && x == 13)) && (o.focus || o.mouseHere || y)) { | |
if (v.hotkey.icons == 1) { | |
PluginHotIcon('play', o.play ? 0 : 1) | |
} | |
o.actions.Toggle(); | |
event.preventDefault(); | |
return false | |
} !v.hotkey.vol ? v.hotkey.vol = 0.2 : ''; | |
!v.hotkey.scale ? v.hotkey.scale = 5 : ''; | |
if (v.hotkey.nums == 1 && (o.focus || y)) { | |
if (o.media.duration() > 0) { | |
for (var i = 48; i < 58; i++) { | |
if (x == i) { | |
o.actions.Seek((o.media.duration() * (x - 48) * 10) / 100, true) | |
} | |
} | |
} | |
} | |
if (x == 39 && (o.focus || y)) { | |
KeyPlusUp(v.hotkey.leftright) | |
} | |
if (x == 37 && (o.focus || y)) { | |
KeyPlusDown(v.hotkey.leftright) | |
} | |
if (x == 38 && (o.focus || y)) { | |
KeyPlusUp(v.hotkey.updown) | |
} | |
if (x == 40 && (o.focus || y)) { | |
KeyPlusDown(v.hotkey.updown) | |
} | |
if (x == 187 && (o.focus || y)) { | |
KeyPlusUp(v.hotkey.plusminus) | |
} | |
if (x == 189 && (o.focus || y)) { | |
KeyPlusDown(v.hotkey.plusminus) | |
} | |
} | |
}; | |
function FindBut(y, z) { | |
for (var x in b) { | |
if (b.hasOwnProperty(x)) { | |
if (b[x].s(y) == z) { | |
return b[x] | |
} | |
} | |
} | |
} | |
function KeyPlusUp(x) { | |
if (x == "next") { | |
if (o.playlist) { | |
o.controls.PlaylistNext() | |
} else { | |
x = "seek" | |
} | |
} | |
if (x == "seek") { | |
if (o.media.duration() > 0) { | |
if (o.media.time() + parseFloat(v.hotkey.seek) < o.media.duration()) { | |
o.actions.Seek(o.media.time() + parseFloat(v.hotkey.seek), true) | |
} | |
} | |
} | |
if (x == "volume") { | |
o.actions.Volume(parseFloat(v.volume) + parseFloat(v.hotkey.vol)); | |
event.preventDefault() | |
} | |
if (x == "scale") { | |
o.media.scale(v.hotkey.scale / 100); | |
event.preventDefault() | |
} | |
if (v.hotkey.icons == 1) { | |
PluginHotIcon(x, 1) | |
} | |
} | |
function KeyPlusDown(x) { | |
if (x == "next") { | |
if (o.playlist) { | |
o.controls.PlaylistPrev() | |
} else { | |
x = "seek" | |
} | |
} | |
if (x == "seek") { | |
if (o.media.duration() > 0 && o.start) { | |
o.actions.Seek((o.media.time() - v.hotkey.seek >= 0 ? o.media.time() - v.hotkey.seek : 0), true) | |
} | |
} | |
if (x == "volume") { | |
o.actions.Volume(parseFloat(v.volume) - parseFloat(v.hotkey.vol)); | |
event.preventDefault() | |
} | |
if (x == "scale") { | |
o.media.scale(-v.hotkey.scale / 100); | |
event.preventDefault() | |
} | |
if (v.hotkey.icons == 1) { | |
PluginHotIcon(x, 0) | |
} | |
}; | |
this.KeyUp = function (event) { | |
if (pljssglobalid == v.id) { | |
var x = event.which; | |
if (x == undefined) { | |
x = event.keyCode | |
} | |
if (x == 57) { | |
if (v.log == 1) { } | |
} | |
if (o.fullscreen && x == 27) { | |
o.actions.Normalscreen() | |
} | |
if (exist(o.vast) || exist(o.pass)) { | |
return false | |
} | |
if (v.hotkey.f == 1 && x == 70 && v.hidevideo != 1 && (o.focus || o.mouseHere)) { | |
if (v.hotkey.icons == 1) { | |
PluginHotIcon('fullscreen', o.fullscreen ? 0 : 1) | |
} | |
o.fullscreen ? o.actions.Normalscreen() : o.actions.Fullscreen() | |
} | |
if (v.hotkey.m == 1 && x == 77 && (o.focus || o.mouseHere)) { | |
if (v.hotkey.icons == 1) { | |
PluginHotIcon('mute', o.muted ? 1 : 0) | |
} | |
o.muted ? o.actions.Unmute() : o.actions.Mute() | |
} | |
} | |
}; | |
this.Remove = function () { | |
clearInterval(o.toolbarInterval); | |
for (var x in o) { | |
if (x.indexOf("control") == 0 && x.indexOf("Interval") > -1) { | |
clearInterval(o[x]) | |
} | |
} | |
for (var i = 0; i < butNames.length; i++) { | |
key = butNames[i]; | |
if (b[key]) { | |
b[key].Remove() | |
} | |
} | |
if (settings) { | |
settings.Remove() | |
} | |
if (playlist) { | |
playlist.Remove() | |
} | |
bg.Remove(); | |
if (bg2.parentNode == o.frame) { | |
o.frame.removeChild(bg2) | |
} else { | |
o.toolbar ? o.toolbar.removeChild(bg2) : '' | |
} | |
}; | |
this.ShowForce = function () { | |
ShowForce() | |
}; | |
this.HideForce = function () { | |
HideForce(); | |
ShowOrHide() | |
}; | |
this.HideInterval = function () { | |
HideInterval() | |
}; | |
this.ToolbarHidden = function () { | |
return toolbarHidden | |
} | |
}; | |
var Control = function (key) { | |
var i; | |
var style = []; | |
var w; | |
var h; | |
var last_text_w = 0; | |
var bg; | |
var bgcontainer; | |
var area; | |
var angle = 0; | |
var visible = true; | |
var selectOpen = false; | |
var scaleX = 1; | |
var scaleY = 1; | |
var tip; | |
var tipbg; | |
var tiptext; | |
var tipcrn; | |
var action; | |
var actionstt = ''; | |
var x0; | |
var y0; | |
var on; | |
var over = false; | |
var touchmove = false; | |
var iconangle = 0; | |
var bufferInterval; | |
var bufferDeg = 0; | |
var rightside = 0; | |
var topside = 0; | |
var bottomside = 0; | |
var noclick = false; | |
var zoomed = false; | |
var clicked = false; | |
var hidden = false; | |
var htto; | |
var hdicon; | |
var imgldd; | |
var settingsNumberVisible = false; | |
style = UpdateObject(style, default_style.but); | |
style = UpdateObject(style, v[key]); | |
var actions = [style.action]; | |
action = actions[0]; | |
exist(style.action2) ? actions[1] = style.action2 : ''; | |
exist(style.opposite) ? actions[1] = style.opposite : ''; | |
exist(style.title) ? style.text = style.title : ''; | |
if (exist2(style.scalesmall)) { | |
o.small ? style.scale = style.scalesmall : '' | |
} | |
if (action == "share") { | |
o.shareme = true | |
} | |
if (exist(style.linkurl)) { | |
if (style.type == "text" && style.linkurl != '') { | |
if (exist(v[style.linkurl + 'text'])) { | |
style.text = v[style.linkurl + 'text'] | |
} | |
} | |
if (style.linkurl.indexOf("settings#") == 0) { | |
actionstt = style.linkurl; | |
if (style.tiptext == '' && actionstt.indexOf(",") == -1) { | |
style.tiptext = Lang(v.settings['settings' + actionstt.substr(9) + 'action']) | |
} | |
} | |
if (style.linkurl.indexOf("captions") > -1) { | |
v.hlscaptions = true | |
} | |
if (style.linkurl.indexOf("share:") > -1) { | |
o.shareme = true | |
} | |
if (style.linkurl == "countdown") { | |
style.counter = new PluginCountdown(style) | |
} | |
} | |
var tips = style.tiptext ? style.tiptext.split("///") : []; | |
if (style.liketext == 1) { | |
style.type = "text"; | |
style.text = TipText(0) + (actions.length > 1 ? '///' + TipText(1) : ''); | |
if (exist2(style.iconscolor)) { | |
style.color = style.iconscolor | |
} | |
} | |
style.it = []; | |
style.il = []; | |
var _currentIcon = 0; | |
var icons = new Array(); | |
var icon = new Array(); | |
var iconsover = new Array(); | |
var iconspress = new Array(); | |
var iconreplay = 0; | |
var replay; | |
if (style.type == "text") { | |
if (style.dom) { | |
if (exist(v[style.dom + 'text'])) { | |
style.text = v[style.dom + 'text'] | |
} | |
} | |
if (exist(style.text)) { | |
icons[0] = trim(style.text); | |
style.lngth = style.text.length; | |
var smbls = ['/', '|', '-']; | |
smbls.indexOf(style.text.substr(-1)) > -1 ? style.postsmbl = style.text.substr(-1) : ''; | |
smbls.indexOf(style.text.substr(0, 1)) > -1 ? style.presmbl = style.text.substr(0, 1) : ''; | |
if (action == "time" || action == "duration") { | |
if (style.text.indexOf('0:') == 0) { | |
style.timeshort = true | |
} | |
if (style.text.split(":").length == 3) { | |
style.with_hours = true | |
} else { | |
if (style.text.indexOf('00:00') > -1) { | |
style.with_min = true | |
} | |
} | |
if (style.dvrtime == 1) { | |
v.dvrtime = 1 | |
} | |
} | |
if (style.inversetime == 1 && style.text.indexOf("-") == 0) { | |
style.minus4back = true | |
} | |
if (style.text.indexOf("///") > 0 && (action == "custom" || style.liketext == 1)) { | |
style.texts = style.text.split("///"); | |
style.text = icons[0] = style.texts[0] | |
} | |
} | |
if (v.fonts == 1) { | |
setTimeout(ResizeText, 100); | |
setTimeout(ResizeText, 500); | |
setTimeout(ResizeText, 1000) | |
} | |
} else { | |
if (exist(style.icon)) { | |
icons[0] = style.icon; | |
if (icons[0].indexOf("///") > 0 && icons[0].indexOf("base64") == -1) { | |
icons = style.icon.split("///") | |
} | |
if (exist(style.icon2)) { | |
icons[1] = style.icon2 | |
} | |
if (style.iconsreplay == 1) { | |
if (exist2(style.icon3)) { | |
icons.push(style.icon3); | |
iconreplay = icons.length - 1 | |
} | |
} | |
} | |
} | |
if (action == "custom") { | |
if (style.link2 == 1 && exist(style.linkurl2)) { | |
style.linkurl0 = style.linkurl | |
} | |
} | |
var control = createElement("div"); | |
if (style.position == 'timeline') { | |
o.timeline ? o.timeline.appendChild(control) : setTimeout(function () { | |
o.timeline.appendChild(control) | |
}, 100) | |
} else { | |
if (style.position.indexOf('controls') > -1 && v.toolbar.hide == 1 && v.toolbar.hidedown == 1) { | |
o.toolbar.appendChild(control) | |
} else { | |
o.frame.appendChild(control) | |
} | |
if (action == "buffer" && style.ontop2 == 1) { | |
control.style.zIndex = 2001 | |
} | |
} | |
if (style.svgtmln == 1) { | |
style.tmln = new PlgnCntrlTmln(style, control) | |
} | |
var bgcontainer = createElement("div"); | |
control.appendChild(bgcontainer); | |
var icns = createElement("div"); | |
css(icns, { | |
"position": "absolute", | |
"left": 0, | |
"top": 0 | |
}); | |
control.appendChild(icns); | |
css(control, { | |
"position": "absolute", | |
"left": 0, | |
"top": 0, | |
"opacity": 1, | |
"fontSize": "14px", | |
"lineHeight": "1em" | |
}); | |
if (exist2(style.dom)) { | |
attr(control, { | |
"id": (v.id + "_" + "control_" + style.dom) | |
}) | |
} | |
if (style.rotateplaying == 1) { | |
css(icns, { | |
"transition": "transform 0.2s linear" | |
}) | |
} | |
if (icons.length > 0) { | |
for (i = 0; i < icons.length; i++) { | |
icon[i] = createElement("div"); | |
css(icon[i], { | |
"position": "absolute", | |
"top": 0, | |
"left": 0, | |
"pointerEvents": "none", | |
"opacity": style.a, | |
"transition": "opacity 0.1s linear,transform 0.1s linear" | |
}); | |
if (style.type == "pic" && style.src != '') { | |
if (exist2(style.dom)) { | |
attr(icon[i], { | |
"id": (v.id + "_control_" + style.dom + "_icon") | |
}); | |
if (v[style.dom + 'src']) { | |
style.src = v[style.dom + 'src'] | |
} | |
} | |
if (style.src.indexOf(".png") > -1 || style.src.indexOf(".jpg") > -1 || style.src.indexOf(".gif") > -1 || style.src.indexOf("base64") > -1) { | |
style.src.indexOf("//") == -1 && style.src.indexOf("base64") == -1 ? style.src = '//' + style.src : ''; | |
var z = createElement("img"); | |
style.loading = 1; | |
z.addEventListener("load", imageLoaded); | |
z.src = style.src; | |
icon[i].appendChild(z); | |
style.w = icon[i].offsetWidth; | |
style.h = icon[i].offsetHeight; | |
if (style.picheight > 0) { | |
css(z, { | |
height: style.picheight | |
}) | |
} | |
} | |
} | |
if (style.type == "text") { | |
css(icon[i], { | |
"color": (style.color), | |
"fontSize": style.fontsize * existv(v.globalfs, 1), | |
"fontFamily": checkFont(style.font), | |
"letter-spacing": style.letterspacing + 'px', | |
"padding": "0 3px 0 3px", | |
"white-space": "nowrap" | |
}); | |
if (o.small) { | |
if (exist2(style.fontsizesmall)) { | |
css(icon[i], { | |
"fontSize": style.fontsizesmall * existv(v.globalfs, 1), | |
}) | |
} | |
} | |
if (style.click == 1) { | |
if (style.text.indexOf("<a ") > -1 || key == "control_title") { | |
css(icon[i], { | |
"pointerEvents": "auto" | |
}) | |
} | |
} | |
if (style.bold == 1) { | |
css(icon[i], { | |
"font-weight": "bold" | |
}) | |
} | |
if (style.lineh) { | |
css(icon[i], { | |
"lineHeight": style.lineh + "em" | |
}) | |
} | |
icons[i] == 'live' ? icons[i] = Lang("live") : ''; | |
icon[i].innerHTML = Places(icons[i]); | |
setTimeout(Marquee, 100); | |
style.w = icon[i].offsetWidth; | |
style.h = icon[i].offsetHeight; | |
if (exist2(style.dom)) { | |
attr(icon[i], { | |
"id": (v.id + "_control_" + style.dom + "_text") | |
}) | |
} | |
} | |
if (style.type == "css") { | |
o.start ? setTimeout(SetCSS, 200) : '' | |
} | |
var icn = icons[i].toString(); | |
if (icn.indexOf('var:') == 0) { | |
icn = existv(window[icn.substr(4)], '') | |
} | |
var isvg = icn.indexOf('<svg') > -1 || icn.indexOf('<SVG') > -1; | |
if (style.type == "svg" && (icn.indexOf('<g>') > -1 || isvg)) { | |
if (action == "mute" || action == "custom") { | |
icn = icn.replace(/pjs_/g, 'pjs_' + v.id + key) | |
} | |
if (icn.indexOf('pointer') > -1) { | |
Clickable(icon[i]) | |
} | |
icon[i].innerHTML = (!isvg ? "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'>" : '') + icn + (!isvg ? "</svg>" : ''); | |
icon[i].offsetWidth > 20 ? style.w = icon[i].offsetWidth : ''; | |
icon[i].offsetHeight > 20 ? style.h = icon[i].offsetHeight : ''; | |
css(icon[i], { | |
"width": style.w, | |
"height": style.h | |
}); | |
if (style.iconscolor != -1) { | |
IconsColor(icon, style.iconscolor) | |
} | |
if (exist2(style.dom)) { | |
attr(icon[i], { | |
"id": (v.id + "_control_" + style.dom + "_icon" + i) | |
}) | |
} | |
} | |
icns.appendChild(icon[i]); | |
i > 0 ? hide(icon[i]) : '' | |
} | |
Background(); | |
imgldd ? imageLoaded() : ''; | |
if (style.linkurl == "chromecast") { | |
style.chromecast = 1; | |
style.hide = 1; | |
o.chromecast ? icon[0].innerHTML = o.chromecast.button(style.iconscolor != -1 ? style.iconscolor : '#ffffff') : ''; | |
if (o.system.mobile) { | |
icon[0].ontouchstart = onMobOver; | |
icon[0].ontouchend = onOut; | |
icon[0].ontouchmove = onMobMove | |
} else { | |
icon[0].onmouseover = onOver; | |
icon[0].onmouseout = onOut; | |
icon[0].onmousemove = onMove | |
} | |
} else { | |
if ((bg.offsetWidth * style.scale < 35 || bg.offsetHeight * style.scale < 35) && style.type != 'text') { | |
ClickArea(); | |
Clickable(area) | |
} else { | |
Clickable(bg) | |
} | |
} | |
if (action == "custom") { | |
var lu = ''; | |
if (style.link == 1 && exist(style.linkurl)) { | |
lu = style.linkurl; | |
if (lu.indexOf("api:") == 0) { | |
var tmp = lu.substr(4).split(","); | |
if (tmp.length == 2) { | |
var tmp2 = tmp[1].split("/"); | |
if (tmp2.length == 2) { | |
tmp[0] == 'hd' ? tmp[0] = "default_quality" : ''; | |
if (v[tmp[0]] == tmp2[1]) { | |
style.a = 1; | |
css(icon[0], { | |
"opacity": style.a | |
}) | |
} | |
} | |
} | |
} | |
if (lu == "unblock" || lu == "block") { | |
o.actions.Curtain(); | |
control.style.zIndex = 2001; | |
o.stopkeys = 1 | |
} | |
} | |
if ((style.hide == 1 && (style.hideafter == 1 || style.hidebefore == 1 || style.hidebefore2 == 1)) || lu.indexOf("skip") == 0) { | |
style.often = 1 | |
} | |
} | |
if (action == "settings" && style.hdicon == 1) { | |
hdicon = new PluginHdIcon(control, bg, style) | |
} | |
if (style.click == 0) { | |
Pnt0(control) | |
} | |
if (style.loading == 1) { | |
hide(bg) | |
} | |
if (style.tip == 1) { | |
CreateTip() | |
} | |
if (style.position.indexOf("right") > -1) { | |
rightside = 1 | |
} | |
if (style.position.indexOf("top") > -1) { | |
topside = 1 | |
} | |
if (style.position.indexOf("bottom") > -1 || style.position.indexOf("control") > -1) { | |
bottomside = 1 | |
} | |
Resize(); | |
var t = ''; | |
if (style.rotation != 0) { | |
t += "rotate(" + style.rotation + "deg)" | |
} | |
if (style.flipx == 1) { | |
t += " scaleX(-1)" | |
} | |
if (style.flipy == 1) { | |
t += " scaleY(-1)" | |
} | |
if (t != '') { | |
css(icns, { | |
"transform": t | |
}) | |
} | |
if (action == "buffer") { | |
BufferStop() | |
} | |
var tmp = []; | |
var i; | |
if (action == "playlist") { | |
tmp = ['autoplaylist', 'openplaylistafter', 'openplaylistbefore', 'openplaylistpause', 'openplaylistroot', 'playlistrewind']; | |
for (i = 0; i < tmp.length; i++) { | |
if (exist(style[tmp[i]]) && !exist(v.playlist[tmp[i]])) { | |
v.playlist[tmp[i]] = style[tmp[i]] | |
} | |
} | |
} | |
if (action == "title") { | |
tmp = ['showtitleplaylist', 'addtitleplaylist', 'addtitleplaylistbr']; | |
for (i = 0; i < tmp.length; i++) { | |
if (exist(style[tmp[i]]) && !exist(options[tmp[i]])) { | |
v[tmp[i]] = style[tmp[i]] | |
} | |
} | |
} | |
style.tipalways == 1 ? Tip() : ''; | |
if (action == "custom" && style.on == 0) { | |
hide2(control) | |
} | |
if (style.hide == 1 && style.hideuntilto > 0) { | |
setTimeout(Hideuntilto, style.hideuntilto * 1000) | |
} | |
} | |
function Hideuntilto() { | |
style.hideuntilto = -1; | |
o.controls.refresh() | |
} | |
function ClickArea() { | |
if (area) { | |
area.parentNode.removeChild(area) | |
} | |
area = createElement("div"); | |
css(area, { | |
"position": "absolute", | |
"top": 0, | |
"left": 0, | |
"width": style.type == "pic" ? bg.offsetWidth : (bg.offsetWidth > 35 ? bg.offsetWidth : 35) * style.clickscalex, | |
"height": style.type == "pic" ? bg.offsetHeight : (bg.offsetHeight > 35 ? bg.offsetHeight : 35) * style.clickscaley | |
}); | |
style = MarginPadding(style, 'clickmargin', 'clickmargin'); | |
control.appendChild(area) | |
} | |
function Clickable(x) { | |
if (action.indexOf("time") == 0 && actions.length == 1) { | |
style.click = 0 | |
} | |
if (action == "custom" && style.link == 0) { | |
style.click = 0 | |
} | |
if (style.click == 1) { | |
if (style.hand == 1) { | |
css(x, { | |
"cursor": "pointer" | |
}) | |
} | |
css(x, { | |
"pointerEvents": "auto" | |
}); | |
if (o.system.mobile) { | |
x.addEventListener("touchmove", function (e) { | |
onMobMove(e) | |
}); | |
x.addEventListener("touchstart", function (e) { | |
onMobOver(e) | |
}); | |
x.addEventListener("touchend", function (e) { | |
onMobOut(e) | |
}) | |
} | |
if (v.desktop == 1 || !o.system.mobile) { | |
x.onclick = onClick | |
} | |
if (v.toolbar.clickarea == 1 || style.clickarea == 1) { | |
css(x, { | |
"background-color": "#ff0000", | |
"opacity": 0.5 | |
}) | |
} | |
} else { | |
css(x, { | |
"cursor": "default" | |
}) | |
} | |
if (!o.system.mobile) { | |
x.onmouseover = onOver; | |
x.onmouseout = onOut | |
} | |
if (style.hidden == 1 || style.tip == 1) { | |
x.onmousemove = onMove | |
} | |
} | |
function onMobMove(e) { | |
js("touch_" + key); | |
e.stopPropagation(); | |
touchmove = true | |
} | |
function onMobOver(e) { | |
style.mobileover == 1 ? onOver() : ''; | |
e.stopPropagation() | |
} | |
function onMobOut(e) { | |
e.stopPropagation(); | |
e.preventDefault(); | |
style.mobileover == 1 ? onOut() : ''; | |
if (!touchmove) { | |
onClick(e) | |
} | |
touchmove = false | |
} | |
function Background() { | |
if (bg) { | |
bg.parentNode.removeChild(bg) | |
} | |
bg = createElement("div"); | |
css(bg, { | |
"position": "absolute", | |
"top": 0, | |
"left": 0 | |
}); | |
if (exist2(style.dom)) { | |
attr(bg, { | |
"id": (v.id + "_control_" + style.dom + "_bg") | |
}) | |
} | |
w = style.w; | |
h = style.h; | |
style.bgt = -1; | |
style.bgl = -1; | |
style = MarginPadding(style, 'margin', 'margin'); | |
style = MarginPadding(style, 'marginproc', 'marginproc'); | |
if (style.mrgnprs && o.small) { | |
if (style.mrgnprs != '0 0 0 0') { | |
style = MarginPadding(style, 'marginproc', 'mrgnprs') | |
} | |
} | |
if (style.type == "text") { | |
w = icon[_currentIcon].offsetWidth; | |
h = icon[_currentIcon].offsetHeight; | |
if (style.minw > 0) { | |
w < style.minw ? w = style.minw : '' | |
} | |
} | |
style = MarginPadding(style, 'bgpadding', 'bgpadding'); | |
style = MarginPadding(style, 'iconmargin', 'iconmargin'); | |
if (exist2(style.dom) && exist(v.custom) && style.action == "custom") { | |
if (typeof (v.custom) == 'object') { | |
for (var i = 0; i < Object.keys(v.custom).length; i++) { | |
if (v.custom[i][style.dom]) { | |
if (v.custom[i][style.dom] == "off") { | |
style.on = 0 | |
} else { | |
var tmp = v.custom[i][style.dom].split(":"); | |
if (tmp[0] == "margin-left") { | |
if (tmp[1].indexOf("%") > 0) { | |
style.marginprocleft = parseInt(tmp[1]) | |
} else { | |
style.marginleft = parseInt(tmp[1]) | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
style.h = h; | |
style.w = w; | |
if (style.bg == 1) { | |
h = h + style.bgpaddingtop + style.bgpaddingbottom; | |
w = w + style.bgpaddingleft + style.bgpaddingright; | |
style.h = h; | |
style.w = w; | |
if (style.type == "text") { | |
style.bgh = icon[0].offsetHeight | |
} | |
} else { | |
style.bga = 0 | |
} | |
css(bg, { | |
"width": (style.bgstretch == 1 ? 5000 : w), | |
"height": h, | |
"borderRadius": (style.bgo * h) / 2, | |
"background": style.bgcolor, | |
"opacity": style.bga, | |
"transition": "opacity .1s linear, background .1s linear, transform .1s linear" + (exist2(style.bgbrovr) ? ', filter .1s linear' : '') | |
}); | |
if (style.type == "pic") { | |
css(bg, { | |
"width": w, | |
"height": h, | |
"borderRadius": (style.bgo * h / style.scale) / 2, | |
}) | |
} | |
if (style.bglines == 1) { | |
Bglines(bg, style.bgcolor, style.bgline1, style.bgline2) | |
} | |
if (style.bgborder == 1) { | |
css(bg, { | |
"border": "1px solid " + style.bgbordercolor | |
}) | |
} | |
bgcontainer.appendChild(bg) | |
} | |
function Resize() { | |
var bgt = (-bg.offsetHeight / 2); | |
var bgl = (-bg.offsetWidth / 2); | |
if (bgt != style.bgt || bgl != style.bgl) { | |
css(bg, { | |
"top": (-bg.offsetHeight / 2), | |
"left": (-bg.offsetWidth / 2) | |
}); | |
style.bgt = bgt; | |
style.bgl = bgl | |
} | |
if (area) { | |
var x = style.type == "pic" ? bg.offsetWidth : (bg.offsetWidth > 35 ? bg.offsetWidth : 35); | |
var y = style.type == "pic" ? bg.offsetHeight : (bg.offsetHeight > 35 ? bg.offsetHeight : 35); | |
css(area, { | |
"top": (-y / 2) + style.clickmargintop - style.clickmarginbottom, | |
"left": (-x / 2) + style.clickmarginleft - style.clickmarginright | |
}) | |
} | |
for (i = 0; i < icons.length; i++) { | |
var it = style.type == "svg" ? Math.round(parseInt(icon[i].style.height)) / 2 : Math.round(icon[i].offsetHeight) / 2; | |
var il = style.type == "svg" ? parseInt(icon[i].style.width) / 2 : icon[i].offsetWidth / 2; | |
if (it != style.it[i] || il != style.il[i]) { | |
css(icon[i], { | |
"top": -it, | |
"left": -il | |
}); | |
if (bg) { | |
css(icon[i], { | |
"top": (int(icon[i].style.top) + style.bgpaddingtop / 2 - style.bgpaddingbottom / 2 + style.iconmargintop / 2 + style.iconmarginbottom / 2), | |
"left": (int(icon[i].style.left) + style.bgpaddingleft / 2 - style.bgpaddingright / 2 + style.iconmarginleft / 2 + style.iconmarginright / 2) | |
}) | |
} | |
style.it[i] = it; | |
style.il[i] = il | |
} | |
} | |
} | |
function onOver() { | |
var i; | |
over = true; | |
if (style.iconsover == 1) { | |
if (on && exist(style.icon2)) { | |
i = 1 | |
} else { | |
i = 0 | |
} | |
if (replay && iconsover.length > 2) { | |
i = 2 | |
} | |
if (iconsover[i]) { | |
hideAllIcons(); | |
show(icon[iconsover[i]]) | |
} | |
} | |
if (style.bg == 1) { | |
if (style.bgaover != -1) { | |
css(bg, { | |
"opacity": style.bgaover | |
}) | |
} | |
if (style.bgcolorover != -1) { | |
css(bg, { | |
"background": style.bgcolorover | |
}) | |
} | |
if (exist2(style.bgbrovr)) { | |
css(bg, { | |
"filter": "brightness(" + style.bgbrovr + ")" | |
}) | |
} | |
} | |
if (style.aover > -1 && !selectOpen) { | |
for (i = 0; i < icons.length; i++) { | |
if (icon[i].style.visibility != "hidden") { | |
css(icon[i], { | |
"opacity": style.aover | |
}) | |
} | |
} | |
} | |
if (style.iconscolorover != -1) { | |
IconsColor(icon, style.iconscolorover) | |
} | |
if (style.rotateonhover == 1) { | |
iconangle = iconangle + 45; | |
Rot(icon[0], iconangle) | |
} | |
if (style.scaleover > style.scale && style.scaleover > -1) { | |
scale(style.scaleover) | |
} | |
if (action == "settings" && o.controls.SettingsVisible()) { } else { | |
if (style.tip == 1 && style.tipalways != 1) { | |
var x = tips.length > 1 && !on ? tips[1] : tips[0]; | |
if (x) { | |
if (x.indexOf('var:') == 0) { | |
tiptext.innerHTML = window[x.substr(4)]; | |
Tip() | |
} | |
} | |
show(tip); | |
css(tip, { | |
"opacity": 1 | |
}) | |
} | |
} | |
if (action == "mute") { | |
o.actions.volumewheel(true); | |
o.volumewheel = true | |
} | |
o.controlover = true; | |
o.controls.Mouse(key, "over") | |
} | |
function onOut() { | |
over = false; | |
var i; | |
if (style.iconsover == 1) { | |
if (on && exist(style.icon2)) { | |
i = 1 | |
} else { | |
i = 0 | |
} | |
if (replay && iconsover.length > 2) { | |
i = 2 | |
} | |
hideAllIcons(); | |
show(icon[i]) | |
} | |
if (style.bg == 1) { | |
if (style.bgaover != -1) { | |
css(bg, { | |
"opacity": style.bga | |
}) | |
} | |
if (style.bgcolorover != -1) { | |
css(bg, { | |
"background": style.bgcolor | |
}) | |
} | |
if (exist2(style.bgbrovr)) { | |
css(bg, { | |
"filter": "brightness(1)" | |
}) | |
} | |
} | |
if (style.aover > -1) { | |
for (i = 0; i < icons.length; i++) { | |
if (icon[i].style.visibility != "hidden") { | |
css(icon[i], { | |
"opacity": style.a | |
}) | |
} | |
} | |
} | |
if (style.scaleover > -1) { | |
scale(style.scale) | |
} | |
if (style.iconscolorover != -1) { | |
IconsColor(icon, (style.iconscolor == -1 ? '#ffffff' : style.iconscolor)) | |
} | |
if (action == "mute" && !o.fullscreen) { | |
o.actions.volumewheel(false); | |
o.volumewheel = false | |
} | |
TipHide(); | |
o.controlover = false; | |
o.controls ? o.controls.Mouse(key, "out") : '' | |
} | |
function TipHide() { | |
if (style.tip == 1 && style.tipalways != 1) { | |
hide(tip); | |
css(tip, { | |
"opacity": 0 | |
}) | |
} | |
} | |
function onClick(e) { | |
e ? e.cancelBubble = true : ''; | |
if (!noclick) { | |
o.controls.ControlClick(key); | |
if (action == "custom") { | |
CustomToogle() | |
} | |
TipHide(); | |
if (style.rotateonclick == 1) { | |
iconangle = iconangle + 45; | |
Rot(icon[0], iconangle) | |
} | |
clicked = true; | |
if (style.hideafterclick == 1 || (key == "control_start" && style.hide == 1 && style.hideonplay == 1)) { | |
o.controls.refresh() | |
} | |
} | |
}; | |
this.Click = function () { | |
onClick() | |
}; | |
function CustomToogle() { | |
if (icons) { | |
if (icons.length > 1) { | |
if (on == true) { | |
show(icon[0]); | |
hide(icon[1]) | |
} else { | |
show(icon[1]); | |
hide(icon[0]) | |
} | |
} | |
if (style.tip == 1 && tips.length > 1) { | |
tiptext.innerHTML = o.ni + (on == true ? tips[0] : tips[1]) + o.ni2; | |
Tip() | |
} | |
} | |
if (exist(style.linkurl0)) { | |
if (on == true) { | |
style.linkurl = style.linkurl0 | |
} else { | |
style.linkurl = style.linkurl2 | |
} | |
} | |
SwitchText(); | |
on = on != true; | |
if (style.linkurl) { | |
if (style.linkurl.indexOf(",0/1") > -1) { | |
js(style.linkurl, on ? 1 : 0) | |
} | |
} | |
if (style.bg == 1 && exist(style.bgcolorlink2)) { | |
if (style.bgcolorlink2 != -1) { | |
if (on) { | |
style.bgcolorlink0 = style.bgcolor; | |
style.bgcolor = style.bgcolorlink2 | |
} else { | |
style.bgcolor = style.bgcolorlink0 | |
} | |
Background(); | |
Clickable(bg); | |
Resize(); | |
if (style.type == "text") { | |
ResizeText() | |
} else { | |
scale(style.scale) | |
} | |
} | |
} | |
} | |
function SwitchText() { | |
if (exist(style.texts)) { | |
if (style.texts.length > 1) { | |
if (on == true) { | |
UpdateText(style.texts[0]) | |
} else { | |
UpdateText(style.texts[1]) | |
} | |
} | |
} | |
} | |
function ReplayIcon(event) { | |
event.cancelBubble = true; | |
o.controls.ControlClick(key) | |
} | |
function hideAllIcons() { | |
for (var i = 0; i < icons.length; i++) { | |
if (icon[i].style.visibility != "hidden") { | |
css(icon[i], { | |
"opacity": style.a | |
}); | |
hide(icon[i]) | |
} | |
} | |
} | |
function Marquee(text) { | |
if (icon[0]) { | |
if (icon[0].offsetWidth > o.screen_w - style.marginleft - style.marginright - style.bgpaddingleft - style.bgpaddingright) { | |
if (style.marquee == 1) { | |
if (!text) { | |
text = icon[0].innerHTML | |
} | |
icon[0].innerHTML = '<marquee>' + text + '</marquee>' | |
} else { | |
css(icon[0], { | |
"white-space": "normal" | |
}) | |
} | |
css(icon[0], { | |
"width": o.screen_w - style.marginleft - style.marginright - style.bgpaddingleft - style.bgpaddingright | |
}) | |
} | |
} | |
} | |
function imageLoaded() { | |
if (bg) { | |
imgldd = false; | |
style.loading = 0; | |
hide(bg); | |
if (icon[0]) { | |
style.w = icon[0].offsetWidth * style.scale; | |
style.h = icon[0].offsetHeight * style.scale; | |
scale(style.scale) | |
} | |
style.loaded = 0; | |
Background(); | |
ClickArea(); | |
Clickable(area); | |
show(bg); | |
Resize(); | |
o.controls.resize(); | |
if (!isVisible(control)) { | |
hide2(control) | |
} | |
} else { | |
imgldd = true | |
} | |
} | |
function CancelBubble(event) { | |
event.cancelBubble = true | |
} | |
function onMove() { | |
if (!o.system.mobile && !o.controlover) { | |
onOver() | |
} | |
Tip() | |
} | |
function scale(x) { | |
if (x > 0) { | |
css(bg, { | |
"transform": "scale(" + x + ")" | |
}); | |
for (i = 0; i < icons.length; i++) { | |
css(icon[i], { | |
"transform": "scale(" + x + ")" | |
}) | |
} | |
if (style.tmln) { | |
style.tmln.scale(x) | |
} | |
scaleX = x; | |
scaleY = x | |
} | |
} | |
function CreateTip() { | |
tip = createElement("div"); | |
css(tip, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'height': 'auto', | |
"opacity": 0, | |
"transition": "opacity 0.1s linear" | |
}); | |
tipbg = createElement("div"); | |
style = MarginPadding(style, 'tippadding', 'tippadding'); | |
style = MarginPadding(style, 'tipmargin', 'tipmargin'); | |
css(tipbg, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': '100%', | |
'height': 30, | |
'background-color': style.tipbgcolor, | |
'opacity': style.tipbga, | |
'border-radius': style.tipbgrounding | |
}); | |
tiptext = createElement("div"); | |
css(tiptext, { | |
'position': 'absolute', | |
'left': style.tippaddingleft, | |
'top': style.tippaddingtop, | |
'color': style.tipcolor, | |
'font-family': checkFont(style.tipfont), | |
'font-size': style.tipfontsize * existv(v.globalfs, 1), | |
"letter-spacing": style.tipletterspacing + 'px', | |
"line-height": "1" | |
}); | |
if (style.tiptext) { | |
if (style.tiptext.indexOf("var:") == 0) { | |
style.tipvar = true | |
} | |
} | |
if (!style.tipvar) { | |
css(tiptext, { | |
'white-space': 'nowrap' | |
}) | |
} | |
if (style.tippointer == 1) { | |
tipcrn = createElement("div"); | |
tipcrn.innerHTML = '<svg width="8px" height="6px" viewBox="0 0 8 6" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><polygon id="Rectangle" stroke="none" fill="#' + style.tipbgcolor.replace("#", "") + '" fill-rule="evenodd" points="0 0 8 0 4 6"></polygon></svg>' | |
} | |
if (style.tipalways == 1) { | |
css(tip, { | |
"opacity": 1 | |
}); | |
Clickable(tip) | |
} else { | |
Pnt0(tip) | |
} | |
control.appendChild(tip); | |
tiptext.innerHTML = o.ni + (style.tiptext == '' ? Lang(action) : tips[0]) + o.ni2; | |
tip.appendChild(tipbg); | |
tip.appendChild(tiptext); | |
if (style.tippointer == 1) { | |
tip.appendChild(tipcrn); | |
var btm = o.doctype ? '-8px' : '-6px'; | |
var ps = style.tippointeralign; | |
if (!exist(ps)) { | |
ps = '' | |
} | |
var tp = ps.indexOf("top") > -1; | |
if (tp) { | |
Rot(tipcrn, '-180') | |
} | |
css(tipcrn, { | |
'position': 'absolute', | |
'right': (ps.indexOf("right") > -1 ? 10 * style.scale : 'auto'), | |
'left': (ps.indexOf("left") > -1 ? 10 * style.scale : (ps == '' || ps == 'top' ? '50%' : 'auto')), | |
'margin-left': (ps == '' || ps == 'top' ? '-4px' : 0), | |
'bottom': (tp ? 'auto' : btm), | |
'top': (tp ? btm : 'auto'), | |
'opacity': style.tipbga | |
}) | |
} | |
Tip() | |
} | |
function Tip() { | |
if (style.tip == 1) { | |
css(tip, { | |
"top": (bottomside == 1 ? -h - tip.offsetHeight + 3 : -tip.offsetHeight / 2) + style.tipmargintop - style.tipmarginbottom, | |
"left": (rightside == 1 ? -tiptext.offsetWidth : (bottomside == 1 ? -w / 2 : +tiptext.offsetWidth)) - (bottomside == 1 ? 0 : tiptext.offsetWidth / 2 + 5) + style.tipmarginleft - style.tipmarginright, | |
"height": style.tippaddingtop + tiptext.offsetHeight + style.tippaddingbottom, | |
"width": style.tippaddingleft + tiptext.offsetWidth + style.tippaddingright | |
}); | |
css(tipbg, { | |
'height': tip.offsetHeight | |
}); | |
tip.style.zIndex = "1000" | |
} | |
} | |
this.c = function () { | |
return control | |
}; | |
this.s = function (x) { | |
return style[x] | |
}; | |
this.ss = function (x, x2) { | |
return exist(style[x]) ? style[x][x2] : false | |
}; | |
this.g = function (x) { | |
switch (x) { | |
case "width": | |
return w; | |
break; | |
case "height": | |
return h; | |
break; | |
case "h": | |
return existv(style.bgh, h); | |
break; | |
case "x": | |
return int(control.style.left); | |
break; | |
case "y": | |
return int(control.style.top); | |
break; | |
case "opacity": | |
return control.style.opacity ? control.style.opacity : 1; | |
break; | |
case "show": | |
return visible; | |
break; | |
case "scaleX": | |
return scaleX; | |
break; | |
case "scaleY": | |
return scaleY; | |
break; | |
case "action": | |
return action; | |
break; | |
case "action_settings": | |
return actionstt; | |
break; | |
case "clicked": | |
return clicked; | |
break; | |
case "type": | |
return style.type; | |
break; | |
case "length": | |
return style.lngth ? style.lngth : 0; | |
break; | |
case "key": | |
return key; | |
break; | |
case "x0": | |
return x0; | |
break; | |
case "y0": | |
return y0; | |
break; | |
case "over": | |
return over; | |
break; | |
case "settings#": | |
return actionstt.indexOf("settings#") == 0; | |
break; | |
case "settings:": | |
return actionstt.indexOf("settings:") == 0; | |
break; | |
case "ctxt": | |
return action == "custom" && style.type == "text"; | |
break; | |
case "set#visible": | |
return settingsNumberVisible; | |
break; | |
default: | |
return false | |
} | |
}; | |
this.set = function (k, x) { | |
switch (k) { | |
case "show": | |
over ? onOut() : ''; | |
visible = x; | |
break; | |
case "display": | |
DisplayControl(x); | |
break; | |
case "show2": | |
show2(control); | |
break; | |
case "hide2": | |
hide2(control); | |
break; | |
case "unhidden": | |
style.hidden = 0; | |
break; | |
case "hidetime": | |
if (style.hidesec > 0 && style.hidden != 1 && !htto) { | |
clearTimeout(htto); | |
htto = setTimeout(function () { | |
hide2(control); | |
style.hidden = 1; | |
htto = undefined | |
}, style.hidesec * 1000) | |
} | |
break; | |
case "scale": | |
scale(x); | |
break; | |
case "scale0": | |
css(control, { | |
"transform": "scale(0)" | |
}); | |
break; | |
case "scaleX": | |
css(control, { | |
"transform": "scaleX(" + x + ")" | |
}); | |
scaleX = x; | |
break; | |
case "scaleY": | |
css(control, { | |
"transform": "scaleY(" + x + ")" | |
}); | |
scaleY = x; | |
break; | |
case "opacity": | |
css(control, { | |
"opacity": x | |
}); | |
break; | |
case "iconopacity": | |
css(icon[0], { | |
"opacity": x | |
}); | |
break; | |
case "saturate": | |
css(icon[0], { | |
"filter": "saturate(" + x + ")" | |
}); | |
break; | |
case "left": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "top": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "width": | |
css(control, { | |
"width": x | |
}); | |
break; | |
case "height": | |
css(control, { | |
"height": x | |
}); | |
break; | |
case "over_final": | |
style.over_final = x; | |
break; | |
case "rightside": | |
rightside = x; | |
break; | |
case "set#visible": | |
settingsNumberVisible = x; | |
break; | |
case "x": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "y": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "animation": | |
style.animation = x; | |
break; | |
case "skip": | |
style.skip = x; | |
break; | |
case "x0": | |
x0 = x; | |
break; | |
case "y0": | |
y0 = x; | |
break; | |
case "hdnn": | |
style.hdnn = x; | |
break; | |
default: | |
return false | |
} | |
}; | |
function DisplayControl(x) { | |
if (x && o.system.mobile) { | |
noclick = true; | |
setTimeout(noClickTimeout, 300) | |
} | |
if (!x) { | |
if (style.iconsreplay == 1 && replay) { | |
hide(icon[iconreplay]); | |
show(icon[0]); | |
replay = false | |
} | |
} | |
if (style.loading == 1) { | |
x ? show(control) : hide(control) | |
} else { | |
if (key == "control_time" || key == "control_duration") { | |
x ? show(control) : hide(control) | |
} else { | |
css(control, { | |
"display": (x ? "block" : "none") | |
}) | |
} | |
visible = x; | |
x ? show(control) : '' | |
} | |
if (x && style.resizetxt) { | |
style.resizetxt = false; | |
setTimeout(ResizeText, 100) | |
} | |
} | |
function noClickTimeout() { | |
noclick = false | |
} | |
this.UpdateText = function (x, y) { | |
if (actionstt != '' && (style.text == 'x' || style.text == '1x')) { | |
x = x + 'x' | |
} | |
if (y) { | |
x = style.text + x | |
} | |
UpdateText(x); | |
!isVisible(control) ? style.resizetxt = true : '' | |
}; | |
this.CustomText = function (x) { | |
style.customtext = x; | |
UpdateText(x); | |
o.controls ? o.controls.resize() : '' | |
}; | |
this.Rotate = function () { | |
Rot(icns, angle); | |
angle += 20 | |
}; | |
function Rot(x, y) { | |
css(x, { | |
"transform": "rotate(" + y + "deg)" + (x == icon[0] && !zoomed && scaleX != 1 ? ' scale(' + scaleX + ')' : '') | |
}) | |
}; | |
this.RenewFromTitle = function (x) { | |
if (style.text.indexOf("{title") > -1) { | |
UpdateText(style.text) | |
} | |
}; | |
this.CustomToogle = function () { | |
CustomToogle() | |
}; | |
function UpdateText(text) { | |
if (style.type == "text") { | |
if (exist(text)) { | |
if (style.with_hours) { | |
if (text.length == 4) { | |
text = (style.timeshort ? '0:0' : '00:0') + text | |
} | |
if (text.length == 5) { | |
text = (style.timeshort ? '0:' : '00:') + text | |
} | |
if (text.length == 7) { | |
text = (style.timeshort ? '' : '0') + text | |
} | |
} | |
if (style.with_min) { | |
if (text.length == 4) { | |
text = '0' + text | |
} | |
} | |
style.lngth = text.length | |
} | |
text = (style.presmbl ? style.presmbl + (style.minus4back ? '' : ' ') : '') + text + (style.postsmbl ? ' ' + style.postsmbl : ''); | |
var prevorius_default_w = icon[0].offsetWidth + (style.bg == 1 ? style.bgpaddingtop + style.bgpaddingbottom : 0); | |
var prevorius_default_h = icon[0].offsetHeight + (style.bg == 1 ? style.bgpaddingtop + style.bgpaddingbottom : 0); | |
icon[0].innerHTML = o.ni + (action == "custom" ? Places(text) : text) + o.ni2; | |
if (style.triangle == 1) { | |
icon[0].innerHTML += '<span style="display:inline-block; width: 10 px "></span><span style=" border-top: 3 px solid ' + CheckColor(style.color) + '; border-left: 3 px solid transparent; border-right: 3 px solid transparent; position: absolute; right: 3 px; top: 50 % ; margin-top: -1 px; "></span>' | |
} | |
if (action == "title") { | |
css(icon[0], { | |
"width": "auto", | |
"white-space": "nowrap" | |
}); | |
Marquee(text) | |
} | |
style.w = icon[0].offsetWidth + (style.bg == 1 ? style.bgpaddingtop + style.bgpaddingbottom : 0); | |
style.h = icon[0].offsetHeight + (style.bg == 1 ? style.bgpaddingtop + style.bgpaddingbottom : 0); | |
if (prevorius_default_w != style.w || prevorius_default_h != style.h || (style.w > 0 && last_text_w == 0)) { | |
ResizeText() | |
} | |
if (icon[0].offsetWidth > 0) { | |
last_text_w = style.w | |
} else { | |
actionstt != '' ? hide(icon[0]) : ''; | |
if (text != '') { | |
setTimeout(ResizeText, 10) | |
} | |
} | |
} | |
} | |
this.ResizeText = function () { | |
ResizeText() | |
}; | |
function ResizeText() { | |
if (style.type == "text") { | |
if (icon[0]) { | |
if (icon[0].offsetWidth > 0) { | |
actionstt != '' ? show(icon[0]) : ''; | |
w = style.w = icon[0].offsetWidth; | |
h = style.h = icon[0].offsetHeight; | |
Background(); | |
Clickable(bg); | |
Resize(); | |
o.controls ? o.controls.resizeFromText() : '' | |
} | |
} | |
} | |
} | |
this.UpdateVolume = function (x) { | |
if (style.displayvolume == 1) { | |
var n = 4; | |
if (key == "control_mute") { | |
if (o.system.mobile) { | |
return | |
} | |
} else { | |
n = 8 | |
} | |
var y = 'pjs_'; | |
var z = []; | |
for (var i = 1; i < n; i++) { | |
z[i] = document.getElementById(y.concat(v.id, key, 'volume_element', i)) | |
} | |
if (z[1]) { | |
for (var i = 1; i < n; i++) { | |
z[i] ? hide(z[i]) : '' | |
} | |
if (n == 4) { | |
for (var i = 1; i < n; i++) { | |
x > (i / n) && z[i] ? show(z[i]) : '' | |
} | |
} else { | |
for (var i = n; i > 0; i--) { | |
if (x * 1 + (1 / n) >= (i / n) && z[i]) { | |
show(z[i]); | |
break | |
} | |
} | |
} | |
} | |
} | |
}; | |
this.On = function () { | |
if (!on) { | |
if (icons) { | |
if (icons.length > 1 && actions.length > 1) { | |
hide(icon[0]); | |
show(icon[1]) | |
} | |
} | |
if (actions.length > 1) { | |
action = actions[1]; | |
if (style.tip == 1) { | |
tiptext.innerHTML = TipText(1); | |
Tip() | |
} | |
} | |
if (style.iconsreplay == 1 && replay) { | |
hide(icon[iconreplay]); | |
replay = false | |
} | |
SwitchText(); | |
on = true | |
} | |
}; | |
function TipText(x) { | |
return o.ni + (style.tiptext == '' ? Lang(actions[x]) : (tips.length > 1 ? tips[x] : tips[0])) + o.ni2 | |
} | |
this.CustomSwitch = function (x) { | |
CustomSwitch(x) | |
}; | |
this.Tmln = function (x, y) { | |
if (style.tmln) { | |
style.tmln.update(x, y) | |
} | |
}; | |
function CustomSwitch(x) { | |
var y = 'pjs_'; | |
var z = document.getElementById(y.concat(v.id, key, 'slider')); | |
if (z) { | |
css(z, { | |
"transition": "transform 0.1s ease-out" | |
}); | |
if (x == 1) { | |
z.style.transform = 'translate(0, 0)' | |
} else { | |
z.style.transform = 'translate(-7px, 0)' | |
} | |
} else { | |
if (x == 1) { | |
style.a = 1 | |
} else { | |
style.a = 0.5 | |
} | |
} | |
on = x == 1; | |
if (style.tip == 1 && tips.length > 1) { | |
tiptext.innerHTML = (on ? tips[0] : tips[1]) | |
} | |
css(icon[0], { | |
"opacity": style.a | |
}) | |
}; | |
this.Off = function () { | |
if (on) { | |
if (icons) { | |
if (icons.length > 1 && actions.length > 1) { | |
show(icon[0]); | |
hide(icon[1]); | |
css(icon[0], { | |
"opacity": style.a | |
}) | |
} | |
} | |
action = actions[0]; | |
if (actions.length > 1) { | |
if (style.tip == 1) { | |
tiptext.innerHTML = TipText(0); | |
Tip() | |
} | |
} | |
SwitchText(); | |
on = false; | |
replay = false | |
} | |
}; | |
this.ReplayIcon = function () { | |
if (style.iconsreplay == 1) { | |
hideAllIcons(); | |
show(icon[iconreplay]); | |
replay = true | |
} | |
}; | |
this.Buffer = function () { | |
var stop = false; | |
if (style.hide == 1 && style.hidewithposter == 1) { | |
if (isVisible(o.poster)) { | |
stop = true | |
} | |
} | |
if (!stop) { | |
show2(control); | |
var items = control.getElementsByTagName("*"); | |
for (var i = items.length; i--;) { | |
css(items[i], { | |
"animation-play-state": "running" | |
}) | |
} | |
visible = true | |
} | |
}; | |
this.BufferStop = function () { | |
BufferStop() | |
}; | |
function BufferStop() { | |
hide2(control); | |
var items = control.getElementsByTagName("*"); | |
for (var i = items.length; i--;) { | |
css(items[i], { | |
"animation-play-state": "paused" | |
}) | |
} | |
visible = false | |
} | |
this.Remove = function () { | |
if (icons.length > 0) { | |
for (i = 0; i < icons.length; i++) { | |
if (icon[i].parentNode == control) { | |
control.removeChild(icon[i]) | |
} | |
icon[i] = null | |
} | |
} | |
if (bg) { | |
bg.removeAttribute("onclick"); | |
bg.removeAttribute("onmouseover"); | |
bg.removeAttribute("onmouseout"); | |
bg.parentNode.removeChild(bg); | |
bg = null | |
} | |
if (style.position == 'timeline') { | |
if (control.parentNode == o.timeline) { | |
o.timeline.removeChild(control) | |
} | |
} else { | |
if (control.parentNode == o.frame) { | |
o.frame.removeChild(control) | |
} else { | |
if (o.toolbar) { | |
if (control.parentNode == o.toolbar) { | |
o.toolbar.removeChild(control) | |
} | |
} | |
} | |
} | |
if (tip) { | |
if (tip.parentNode == control) { | |
control.removeChild(tip) | |
} | |
} | |
control = null | |
}; | |
this.HdIcon = function () { | |
hdicon ? hdicon.toggle() : '' | |
}; | |
this.setcss = function () { | |
SetCSS() | |
}; | |
function SetCSS() { | |
controlCSS(icons[0], style.color, icon[0]) | |
} | |
function Places(x) { | |
var z = x + ''; | |
if (x.indexOf('{') > -1) { | |
if (x.indexOf(' {time}') > -1 && exist(o.continue)) { | |
x = x.replace('{time}', timeFormat(o.continue.flag().t)) | |
} | |
if (x.indexOf('{title ') > -1) { | |
var y = o.titlestore ? o.titlestore : (v.title ? v.title : ''); | |
if (x.indexOf('{title2}') > -1 && o.controls) { | |
x = x.replace('{title2}', o.controls.PlaylistG('title2 ')) | |
} | |
if (o.butplstart && o.controls) { | |
y = o.controls.PlaylistG('butplstart') | |
} | |
x = x.replace('{title}', y); | |
if (o.butplstart && !o.controls) { | |
setTimeout(UpdateText, 100, z) | |
} | |
} | |
if (x.indexOf('{text') > -1) { | |
for (var i = 1; i < 6; i++) { | |
if (x.indexOf('{text' + i + '}') > -1) { | |
if (exist(v['text' + i])) { | |
x = x.replace('{text' + i + '}', v['text ' + i]) | |
} else { | |
x = x.replace('{text' + i + '}', '') | |
} | |
} | |
} | |
} | |
if (x.indexOf('{next}') > -1) { | |
o.ctxtnk = key; | |
if (o.controls) { | |
x = x.replace('{next}', o.controls.PlaylistG('nxtttl')) | |
} | |
} | |
} | |
return x | |
} | |
this.UpText = function () { | |
UpdateText(style.text) | |
}; | |
function IconsColor(icon, clr) { | |
for (var i = 0; i < icon.length; i++) { | |
SvgColor(icon[i], clr) | |
} | |
if (style.linkurl == "chromecast") { | |
if (o.chromecast) { | |
o.chromecast.Color(icon[0], clr) | |
} | |
} | |
} | |
}; | |
var ControlLine = function (key, action) { | |
var i; | |
var style = []; | |
var w; | |
var h; | |
var bg; | |
var visible = true; | |
var x0; | |
var y0; | |
var scaleX = 1; | |
var scaleY = 1; | |
var topBg = 0; | |
var leftBg = 0; | |
var alphas; | |
var mouseDown; | |
var mouseUp; | |
var over; | |
var click; | |
var handle; | |
var _duration_load; | |
var _duration_play; | |
var _time_load; | |
var _time_play; | |
var tip; | |
var tiptext; | |
var tipcrn; | |
o.current_thumb = -1; | |
var lastTouch; | |
var over; | |
var onup_to; | |
for (i in default_style.but) { | |
style[i] = default_style.but[i] | |
} | |
var action = v[key].action; | |
var type = v[key].type; | |
for (i in default_style[action]) { | |
style[i] = default_style[action][i] | |
} | |
for (i in v[key]) { | |
style[i] = v[key][i] | |
} | |
style.w = parseInt(style.w); | |
style.h = parseInt(style.h); | |
style = MarginPadding(style, 'margin', 'margin'); | |
style = MarginPadding(style, 'marginproc', 'marginproc'); | |
if (o.small) { | |
if (style.wps > 0) { | |
style.w = parseInt(style.wps) | |
} | |
if (style.mrgnprs) { | |
if (style.mrgnprs != '0 0 0 0') { | |
style = MarginPadding(style, 'marginproc', 'mrgnprs') | |
} | |
} | |
} | |
var control = createElement("div"); | |
if (v.toolbar.hidedown == 1 && v.toolbar.hide == 1) { | |
o.toolbar.appendChild(control) | |
} else { | |
o.frame.appendChild(control) | |
} | |
action == "line" ? o.timeline = control : ''; | |
var _cul = false; | |
if (style.customline) { | |
if (style.customline != 'volume') { | |
_cul = true | |
} | |
} | |
css(control, { | |
"position": "absolute", | |
"top": 0, | |
"left": 0, | |
"opacity": 1, | |
"fontSize": "14px", | |
"lineHeight": "1em" | |
}); | |
if (style.ontop == 1) { | |
control.style.zIndex = style.order | |
} | |
Background(); | |
var lines = createElement("div"); | |
css(lines, { | |
"position": "absolute", | |
"bottom": Math.round(-style.h / 2), | |
"left": Math.round(-style.w / 2) | |
}); | |
if (style.rounding > 0 && style.roundout == 1) { | |
css(lines, { | |
"border-radius": style.rounding * style.h / 2, | |
"height": style.h, | |
"overflow": "hidden", | |
"pointer-events": "none" | |
}) | |
} | |
if (exist2(style.dom)) { | |
attr(control, { | |
"id": (v.id + "_control_" + style.dom) | |
}) | |
} | |
control.appendChild(lines); | |
if (action == 'line' && v.thumbs == 1) { | |
CreateThumb() | |
} | |
if (style.tip == 1) { | |
CreateTip() | |
} | |
var line0 = createElement("div"); | |
StyleLine(0, line0, 0.3, (style.gradient == 1 ? "linear-gradient(" + CheckColor(style.gradientcolorbg) + ", " + CheckColor(style.colorbg) + ")" : CheckColor(style.colorbg)), style.w, style.abg); | |
if (style.customdesign == 1 && exist(style.customdesignsvg)) { | |
var svg0 = createElement("div"); | |
svg0.innerHTML = style.customdesignsvg.replace(/\#FFFFFF/g, CheckColor(style.colorbg)); | |
line0.appendChild(svg0); | |
css(svg0, { | |
"position": "absolute", | |
"bottom": -Math.round(style.h / 2), | |
"left": 0, | |
"pointer-events": "none" | |
}); | |
css(line0, { | |
"overflow": "hidden", | |
"background": "none" | |
}); | |
var x = ["path", "polygon", "polyline", "rect", "ellipse"]; | |
for (var y = 0; y < x.length; y++) { | |
var z = svg0.querySelectorAll("svg " + x[y]); | |
if (z.length > 0) { | |
for (var y2 = 0; y2 < z.length; y2++) { | |
z[y2].style.fill = CheckColor(style.colorbg) | |
} | |
} | |
} | |
} | |
lines.appendChild(line0); | |
var lines1 = []; | |
var line1 = createElement("div"); | |
StyleLine(1, line1, style.linespeed1, (style.gradient == 1 ? "linear-gradient(#" + style.gradientcolorload + ", #" + style.colorload + ")" : style.colorload), 0, style.aload); | |
lines.appendChild(line1); | |
if (style.aover > 0) { | |
var line2 = createElement("div"); | |
StyleLine(2, line2, style.linespeed2, style.colorover, 0, style.aover); | |
lines.appendChild(line2) | |
} | |
var line3 = createElement("div"); | |
StyleLine(3, line3, style.linespeed3, (style.gradient == 1 ? "linear-gradient(#" + style.gradientcolor + ", #" + style.color + ")" : style.color), 0, style.a); | |
if (style.customdesign == 1 && exist(style.customdesignsvg)) { | |
var svg3 = createElement("div"); | |
svg3.innerHTML = style.customdesignsvg.replace(/\#FFFFFF/g, CheckColor(style.color)); | |
css(svg3, { | |
"position": "absolute", | |
"bottom": -Math.round(style.h / 2), | |
"left": 0, | |
"pointer-events": "none" | |
}); | |
css(line3, { | |
"overflow": "hidden", | |
"background": "none" | |
}); | |
line3.appendChild(svg3) | |
} | |
if (style.value == 1) { | |
var line3value = createElement("div"); | |
style = MarginPadding(style, 'valuepadding', 'valuepadding'); | |
style = MarginPadding(style, 'valuemargin', 'valuemargin'); | |
css(line3value, { | |
"position": "absolute", | |
"bottom": style.h / 2, | |
"left": 0, | |
"pointer-events": "none", | |
"font-size": style.valuesize * existv(v.globalfs, 1), | |
"color": style.valuecolor, | |
"line-height": "100%", | |
"padding-top": style.valuepaddingtop, | |
"padding-bottom": style.valuepaddingbottom, | |
"padding-left": style.valuepaddingleft, | |
"padding-right": style.valuepaddingright, | |
"margin-top": style.valuemargintop, | |
"margin-bottom": style.valuemarginbottom, | |
"margin-left": style.valuemarginleft, | |
"margin-right": style.valuemarginright, | |
"border-radius": (style.valuerounding + "px"), | |
"display": "none" | |
}); | |
if (style.valuebg == 1) { | |
css(line3value, { | |
"background": CheckColor(style.valuebgcolor) | |
}) | |
} | |
line3.appendChild(line3value); | |
var l3v_show = false; | |
var l3v_left = false | |
} | |
o.timeline_h = style.h; | |
lines.appendChild(line3); | |
if (style.pointed == 1) { | |
var points = []; | |
if (typeof PluginPoints !== "undefined") { | |
var pnt = new PluginPoints(control, points, w, style) | |
} | |
} | |
if (style.handle == 1) { | |
if (style.handleicon.toString().indexOf('<svg') == -1) { | |
style.handleicon == '' ? style.handleicon = "<svg width='20' height='20'><g><ellipse ry='5' rx='5' cy='10' cx='10' fill='#fff'/></g></svg>" : '' | |
} | |
handle = createElement("div"); | |
handle.innerHTML = style.handleicon.toString(); | |
style = MarginPadding(style, 'handlemargin', 'handlemargin'); | |
css(handle, { | |
"position": "absolute", | |
"top": -10 + style.handlemargintop - style.handlemarginbottom, | |
"left": -1000, | |
"pointer-events": "none", | |
"height": 20, | |
"width": style.handle_width, | |
"opacity": style.handlea, | |
"transition": "transform 0.1s linear, opacity 0.1s linear" | |
}); | |
if (style.handlehide == 1 || style.handlehideinit == 1) { | |
css(handle, { | |
"transform": "scale(0)" | |
}) | |
} else { | |
if (style.handlescale != 1) { | |
css(handle, { | |
"transform": "scale(" + style.handlescale + ")" | |
}) | |
} | |
} | |
control.appendChild(handle); | |
if (style.handlecolor != -1) { | |
var x = ["path", "rect", "ellipse"]; | |
for (var y = 0; y < x.length; y++) { | |
var z = handle.querySelectorAll("svg " + x[y]); | |
if (z.length > 0) { | |
for (var y2 = 0; y2 < z.length; y2++) { | |
z[y2].style.fill = CheckColor(style.handlecolor) | |
} | |
} | |
} | |
} | |
style.handlewidth = handle.offsetWidth | |
} | |
if (style.rotation != 0) { | |
css(control, { | |
"transform": "rotate(" + style.rotation + "deg)" | |
}) | |
} | |
if (style.hidden == 1) { | |
hide(control); | |
visible = false | |
} | |
if (action == "volume") { | |
if (style.hide == 1 && style.hideoutmute == 1) { | |
o.hidden_volume = true; | |
style.hidden = true | |
} else { | |
o.hidden_volume = false | |
} | |
} | |
style.vertical = 0; | |
if (style.rotation != 0) { | |
style.rotation2 = Math.abs(style.rotation); | |
if (style.rotation2 > 45 && style.rotation2 < 135) { | |
style.vertical = 90 | |
} | |
if (style.rotation2 > 225 && style.rotation2 < 315) { | |
style.vertical = 270 | |
} | |
} | |
if (_cul) { | |
o.line_speed = style.customline == "speed"; | |
w = style.w; | |
UpdatePlay(1, o.files_speed.slice(-1)[0], "no") | |
} | |
function StyleLine(n, x, y, z, _w, _a) { | |
css(x, { | |
"position": "absolute", | |
"bottom": 0, | |
"left": 0, | |
"width": _w, | |
"height": (style['h' + n] > 0 ? style['h' + n] : style.h), | |
"background": z ? (z.indexOf("linear") > -1 ? z : CheckColor(z)) : '', | |
"border-radius": (style.roundout == 1 ? 1 : style.rounding * style.h / 2), | |
"opacity": _a, | |
"pointer-events": "none", | |
"transition": "transform 0.2s ease-in-out" | |
}) | |
} | |
function Background() { | |
bg = createElement("div"); | |
style = MarginPadding(style, 'bgpadding', 'bgpadding'); | |
var bgh = style.h + style.bgpaddingtop + style.bgpaddingbottom; | |
var bgw = style.w + style.bgpaddingleft + style.bgpaddingright; | |
if (style.bg == 1) { } else { | |
style.bga = 0 | |
} | |
style = MarginPadding(style, 'clickmargin', 'clickmargin'); | |
if (v.toolbar.clickarea == 1 || style.clickarea == 1) { | |
style.bgcolor = '#ff0000'; | |
style.bg = 1; | |
style.bga = 0.5 | |
} | |
css(bg, { | |
"position": "absolute", | |
"top": 0, | |
"left": 0, | |
"width": bgw, | |
"height": bgh * style.clickscaley, | |
"borderRadius": (style.bgo * bgh) / 2, | |
"backgroundColor": style.bgcolor, | |
"opacity": style.bga, | |
"pointerEvents": "auto", | |
"transition": "opacity .1s linear, background .1s linear" | |
}); | |
if (style.bgborder == 1) { | |
css(bg, { | |
"border": "1px solid #" + style.bgbordercolor | |
}) | |
} | |
if (style.click == 1) { | |
if (style.hand == 1) { | |
css(bg, { | |
"cursor": "pointer" | |
}) | |
} | |
if (!o.system.mobile || v.desktop == 1) { | |
bg.onclick = onClick; | |
bg.onmouseup = onUp; | |
bg.onmousedown = onDown; | |
bg.onmousemove = onMove | |
} | |
} else { | |
css(bg, { | |
"cursor": "default" | |
}) | |
} | |
if (!o.system.mobile) { | |
bg.onmouseover = onOver; | |
bg.onmousemove = onMove; | |
bg.onmouseout = onOut | |
} | |
if (o.system.mobile) { | |
bg.addEventListener("touchstart", function (event) { | |
event.cancelBubble = true; | |
if (!exist(event.clientX) && event.touches.length > 0) { | |
event.clientX = event.touches[0].pageX; | |
event.clientY = event.touches[0].pageY | |
} | |
lastTouch = event; | |
onOver(event); | |
onDown(event) | |
}); | |
bg.addEventListener("touchend", function (event) { | |
event.cancelBubble = true; | |
o.mouseDown = false; | |
onOut(event); | |
onUp(lastTouch) | |
}); | |
bg.addEventListener("click", function (event) { | |
event.cancelBubble = true | |
}); | |
bg.addEventListener("touchmove", function (event) { | |
if (!exist(event.clientX) && event.touches.length > 0) { | |
event.clientX = event.touches[0].pageX; | |
event.clientY = event.touches[0].pageY | |
} | |
lastTouch = event; | |
o.mouseDown = true; | |
onMove(event) | |
}) | |
} | |
css(bg, { | |
"left": Math.ceil(-style.w / 2 - style.bgpaddingleft) | |
}); | |
css(bg, { | |
"top": Math.ceil(-style.h / 2 - style.bgpaddingtop + style.clickmargintop - style.clickmarginbottom) | |
}); | |
if (style.bglines == 1) { | |
Bglines(bg, style.bgcolor, style.bgline1, style.bgline2) | |
} | |
control.appendChild(bg) | |
} | |
function Resize(width) { | |
if (width != w) { | |
w = width; | |
o.timeline_w = w; | |
var delta = w / line0.offsetWidth; | |
css(bg, { | |
"width": (w + style.bgpaddingleft + style.bgpaddingright), | |
"left": -w / 2 - style.bgpaddingleft, | |
}); | |
css(lines, { | |
"left": -w / 2 | |
}); | |
css(line0, { | |
"width": w | |
}); | |
css(lines, { | |
"width": w | |
}); | |
var xx = line1.offsetWidth * delta; | |
if (xx > line0.offsetWidth) { | |
xx = line0.offsetWidth | |
} | |
css(line1, { | |
"width": xx | |
}); | |
var wp = line3.offsetWidth * delta; | |
css(line3, { | |
"width": wp | |
}); | |
HandleWidth(wp); | |
if (action == "line") { | |
Continue() | |
} | |
if (style.pointed == 1) { | |
pnt ? pnt.place(w) : '' | |
} | |
if (o.cut) { | |
o.cut.Resize() | |
} | |
} | |
} | |
function HandleWidth(x) { | |
if (style.handle == 1) { | |
if (x < style.handlewidth / 2 && style.handle_width != 20) { | |
x = style.handlewidth / 2 | |
} | |
if (x > w - style.handlewidth / 2 && style.handle_width != 20) { | |
x = w - style.handlewidth / 2 | |
} | |
var y = x - w / 2 - style.handlewidth / 2 + style.handlemarginleft - style.handlemarginright; | |
css(handle, { | |
"left": y | |
}) | |
} | |
} | |
function ShowHandle() { | |
css(handle, { | |
"transform": "scale(" + style.handlescale + ")" | |
}) | |
} | |
function onOver(event) { | |
o.controls.Mouse(key, "over"); | |
if (style.bg == 1) { | |
if (style.bgaover != -1) { | |
var m = new Motion({ | |
"mc": bg, | |
"type": "alpha_div", | |
"to": style.bgaover, | |
"time": 0.1, | |
"me": (key + "bg") | |
}) | |
} | |
if (exist2(style.bgcolorover)) { | |
css(bg, { | |
"background-color": style.bgcolorover | |
}) | |
} | |
} | |
if (exist2(style.coloroverplay)) { | |
css(line3, { | |
"background-color": style.coloroverplay | |
}) | |
} | |
if (style.handle == 1) { | |
if (style.handleiconsover == 1 && exist(style.handleiconover)) { | |
if (style.handleiconspress == 1 && mouseDown) { } else { | |
handle.innerHTML = "<svg width='" + style.handle_width + "' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'>" + style.handleiconover.toString() + "</svg>" | |
} | |
} | |
if (style.handlehide == 1) { | |
if (style.handlehideinit == 1 && !o.start) { } else { | |
ShowHandle() | |
} | |
} else { | |
if (style.handleaover != -1) { | |
var m2 = new Motion({ | |
"mc": handle, | |
"type": "alpha_div", | |
"to": style.handleaover, | |
"time": 0.1, | |
"me": (key + "handle") | |
}) | |
} | |
} | |
} | |
if (style.tip == 1 && (o.media.duration() > 0 || action == "volume" || _cul)) { | |
ShowTip() | |
} | |
if (style.expand > 0) { | |
css(bg, { | |
"transform": "scaleY(" + ((style.expand - 1) / 5 + 1) + ")" | |
}); | |
LineScale(style.expand) | |
} | |
if (style.handle == 1 && style.handlemove == 1) { | |
HandleWidth(Zoomed(event.clientX) - leftBg) | |
} | |
if (action == "volume") { | |
o.actions.volumewheel(true); | |
o.volumewheel = true | |
} | |
over = true; | |
o.controlover = true | |
} | |
function LineScale(x) { | |
css(line0, { | |
"transform": "scaleY(" + x + ")" | |
}); | |
css(line1, { | |
"transform": "scaleY(" + x + ")" | |
}); | |
line2 ? css(line2, { | |
"transform": "scaleY(" + x + ")" | |
}) : ''; | |
css(line3, { | |
"transform": "scaleY(" + x + ")" | |
}) | |
} | |
function onOut() { | |
if (!mouseUp) { | |
if (style.aover > 0) { | |
css(line2, { | |
"width": 0 | |
}) | |
} | |
if (exist2(style.coloroverplay)) { | |
css(line3, { | |
"background-color": style.color | |
}) | |
} | |
if (style.bg == 1) { | |
if (style.bgaover != -1) { | |
var m = new Motion({ | |
"mc": bg, | |
"type": "alpha_div", | |
"to": style.bga, | |
"time": 0.1, | |
"me": (key + "bg") | |
}) | |
} | |
if (exist2(style.bgcolorover)) { | |
css(bg, { | |
"background-color": style.bgcolor | |
}) | |
} | |
} | |
if (style.handle == 1) { | |
if (style.handleiconsover == 1 && exist(style.handleiconover)) { | |
if (style.handleiconspress == 1 && mouseDown) { } else { | |
handle.innerHTML = "<svg width='" + style.handle_width + "' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'>" + style.handleicon.toString() + "</svg>" | |
} | |
} | |
if (style.handlehide == 1) { | |
css(handle, { | |
"transform": "scale(0)" | |
}) | |
} else { | |
if (style.handleaover != -1) { | |
var m2 = new Motion({ | |
"mc": handle, | |
"type": "alpha_div", | |
"to": style.handlea, | |
"time": 0.1, | |
"me": (key + "handle") | |
}) | |
} | |
} | |
} | |
if (style.expand > 0) { | |
css(bg, { | |
"transform": "scaleY(1)" | |
}); | |
LineScale(1) | |
} | |
if (action == "volume" && !o.fullscreen) { | |
o.actions.volumewheel(false); | |
o.volumewheel = false | |
} | |
o.controls.Mouse(key, "out") | |
} | |
if (style.pointed == 1 && pnt) { | |
pnt.out() | |
} | |
if (style.tip == 1 && (o.media.duration() > 0 || action == "volume")) { | |
HideTip() | |
} | |
if (o.thumbs_on && action == "line") { | |
o.th.hide(); | |
o.current_thumb = -1 | |
} | |
over = false; | |
o.controlover = false | |
} | |
function onClick(event) { | |
event.cancelBubble = true | |
} | |
function CancelBubble(event) { | |
event.cancelBubble = true | |
} | |
function onUp(event) { | |
if (action == "volume") { | |
if (o.hidden_volume_over) { | |
mouseUp = true; | |
clearTimeout(onup_to); | |
onup_to = setTimeout(function () { | |
mouseUp = false; | |
onOut() | |
}, 1000) | |
} | |
} | |
EndMove(); | |
o.mouseDown = false; | |
if (style.handle == 1) { | |
if (style.handleiconspress == 1 && exist(style.handleiconpress)) { | |
handle.innerHTML = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'>" + style.handleicon.toString() + "</svg>" | |
} | |
} | |
CalculateClick(event.clientX, event.clientY); | |
o.controls.ControlClick(key); | |
o.controls.StageMouseUp(event.clientX, event.clientY); | |
event.cancelBubble = true | |
} | |
function onDown(event) { | |
mouseDown = true; | |
if (style.handle == 1) { | |
if (style.handleiconspress == 1 && exist(style.handleiconpress)) { | |
handle.innerHTML = "<svg width='20' height='20' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'>" + style.handleiconpress.toString() + "</svg>" | |
} | |
} | |
topBg = findTop(bg); | |
leftBg = findLeft(bg); | |
CalculateClick(event.clientX, event.clientY); | |
UpdatePlay(click, 1, "no") | |
} | |
function CalculateClick(event_x, event_y) { | |
var x; | |
event_x = Zoomed(event_x); | |
event_y = Zoomed(event_y); | |
var xOffset = Math.max(document.documentElement.scrollLeft, document.body.scrollLeft); | |
var yOffset = Math.max(document.documentElement.scrollTop, document.body.scrollTop); | |
if (o.system.mobile) { } else { | |
event_y = event_y + yOffset; | |
event_x = event_x + xOffset | |
} | |
if (style.vertical > 0) { | |
x = event_y - topBg - style.bgpaddingright; | |
click = x / w; | |
if (style.vertical == 270) { | |
x = event_y - topBg - style.bgpaddingleft; | |
click = x / w; | |
click = (click - 1) * -1 | |
} | |
} else { | |
x = event_x - leftBg - style.bgpaddingleft; | |
click = x / w; | |
if (style.rotation > 134 && style.rotation < 235) { | |
x = event_x - leftBg - style.bgpaddingright; | |
click = x / w; | |
click = (click - 1) * -1 | |
} | |
} | |
click > 1 ? click = 1 : ''; | |
click < 0 ? click = 0 : '' | |
} | |
function Zoomed(x) { | |
if (o.fzoom > 1) { | |
x = x / o.fzoom | |
} | |
return x | |
} | |
this.PlacePoints = function () { | |
pnt ? pnt.place(w) : '' | |
}; | |
this.RenewPoints = function () { | |
pnt ? pnt.update(w) : '' | |
}; | |
function EndMove() { | |
mouseDown = false | |
} | |
function onMove(event) { | |
leftBg = findLeft(bg); | |
if (style.aover > 0) { | |
if (o.start || action != 'line') { | |
css(line2, { | |
"width": Zoomed(event.clientX) - leftBg | |
}) | |
} | |
} | |
if (style.tip == 1 && (o.media.duration() > 0 || action == "volume" || _cul)) { | |
ShowTip(); | |
topBg = findTop(bg); | |
CalculateClick(event.clientX, event.clientY); | |
if (action == "line") { | |
if (v.hlsdvrtime == 1) { | |
if (o.media.isLive() && o.media.currentFile().indexOf("?DVR") > 0) { | |
tiptext.innerHTML = '- ' + timeFormat((1 - click) * o.media.duration(true)) | |
} else { | |
tiptext.innerHTML = timeFormat(click * o.media.duration()) | |
} | |
} else { | |
var d = o.media.duration(); | |
if (v.delete > 0) { | |
d = d - v.delete | |
} | |
var add = ''; | |
if (style.pointed == 1 && pnt) { | |
add = pnt.tip(click * d); | |
add != '' ? add = add + '<br>' : '' | |
} | |
tiptext.innerHTML = add + timeFormat(click * d) | |
} | |
} | |
if (action == "volume" || _cul) { | |
tiptext.innerHTML = TipVol(click) | |
} | |
Tip(event) | |
} | |
if (o.thumbs_on && action == "line" && o.th) { | |
if (o.media.duration() > 0) { | |
if (style.tip == 0) { | |
topBg = findTop(bg); | |
leftBg = findLeft(bg); | |
CalculateClick(event.clientX, event.clientY) | |
} | |
var left = (-w / 2 + (Zoomed(event.clientX) - leftBg) - v.thumb_width / 2); | |
left > w / 2 - v.thumb_width ? left = w / 2 - v.thumb_width : ''; | |
css(o.thumb, { | |
"top": (-v.thumb_height - (v.thumb_bottom > 0 ? v.thumb_bottom * 1 : 5) - v.thumb_border), | |
"left": (left < -w / 2 ? -w / 2 : left) | |
}); | |
o.th.time(click * o.media.duration(), Zoomed(event.clientX), leftBg, w) | |
} | |
} | |
if (style.handle == 1 && style.handlemove == 1) { | |
HandleWidth(Zoomed(event.clientX) - leftBg) | |
} | |
if (o.system.mobile) { | |
onDown(event) | |
} | |
} | |
function Tip(event, t, l) { | |
var left = (-w / 2 + (Zoomed(event.clientX) + document.documentElement.scrollLeft - leftBg) - tiptext.offsetWidth / 2) + (l ? l : 0); | |
var left0 = 0; | |
if (v.notofh != 1) { | |
if (left + w / 2 + tiptext.offsetWidth + 10 > o.screen_w) { | |
left0 = left; | |
left = o.screen_w - w / 2 - tiptext.offsetWidth - 10 | |
} | |
if (left + o.screen_w / 2 < 0) { | |
left0 = left; | |
left = -o.screen_w / 2 | |
} | |
} | |
var x = { | |
"top": (-tiptext.offsetHeight - style.linetipmarginbottom * 1 - style.tippaddingtop - style.tippaddingbottom) - (style.toptip == 1 ? (style.h / 2) * (style.expand > 0 ? style.expand : 1) : 0) + (t ? t : 0), | |
"left": left | |
}; | |
css(tip, x); | |
if (style.tippointer == 1) { | |
css(tipcrn, { | |
'position': 'absolute', | |
'left': tiptext.offsetWidth / 2 - 4 + (left0 != 0 ? left0 - left : 0), | |
'top': tiptext.offsetHeight - 6 | |
}) | |
} | |
} | |
this.ShowTip = function (e, x, t, l) { | |
ShowTip(); | |
tiptext.innerHTML = x; | |
Tip(e, t, l) | |
}; | |
function ShowTip() { | |
if (!isVisible(tip) || tip.style.opacity == 0) { | |
show(tip); | |
css(tip, { | |
"opacity": 1 | |
}) | |
} | |
} | |
this.HideTip = function () { | |
HideTip() | |
}; | |
function HideTip() { | |
hide(tip); | |
css(tip, { | |
"opacity": 0 | |
}) | |
} | |
this.c = function () { | |
return control | |
}; | |
this.s = function (key) { | |
return style[key] | |
}; | |
this.ss = function (x, x2) { | |
return style[x][x2] | |
}; | |
this.g = function (x) { | |
switch (x) { | |
case "width": | |
return w; | |
break; | |
case "offsetwidth": | |
return line0.offsetWidth; | |
break; | |
case "height": | |
return style.h; | |
break; | |
case "x": | |
return int(control.style.left); | |
break; | |
case "y": | |
return int(control.style.top); | |
break; | |
case "opacity": | |
return control.style.opacity ? control.style.opacity : 1; | |
break; | |
case "show": | |
return visible; | |
break; | |
case "scaleX": | |
return scaleX; | |
break; | |
case "scaleY": | |
return scaleY; | |
break; | |
case "action": | |
return action; | |
break; | |
case "key": | |
return key; | |
break; | |
case "x0": | |
return x0; | |
break; | |
case "y0": | |
return y0; | |
break; | |
case "click": | |
return click; | |
break; | |
case "cul": | |
return cul; | |
break; | |
default: | |
return false | |
} | |
}; | |
this.set = function (key, x) { | |
switch (key) { | |
case "show": | |
visible = x; | |
break; | |
case "mouseDown": | |
mouseDown = x; | |
break; | |
case "display": | |
action == "line" || style.hide == 1 ? css(control, { | |
"visibility": (x ? "visible" : "hidden") | |
}) : css(control, { | |
"display": (x ? "block" : "none") | |
}); | |
visible = x; | |
break; | |
case "scaleX": | |
css(control, { | |
"transform": "scaleX(" + x + ")" | |
}); | |
scaleX = x; | |
break; | |
case "scaleY": | |
css(control, { | |
"transform": "scaleY(" + x + ")" | |
}); | |
scaleY = x; | |
break; | |
case "opacity": | |
css(control, { | |
"opacity": x | |
}); | |
break; | |
case "left": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "top": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "click": | |
click = x; | |
break; | |
case "hiddenwidth": | |
style.hiddenwidth = x; | |
break; | |
case "width": | |
css(control, { | |
"width": x | |
}); | |
break; | |
case "height": | |
css(control, { | |
"height": x | |
}); | |
break; | |
case "over_final": | |
style.roundingver_final = x; | |
break; | |
case "x": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "y": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "x0": | |
x0 = x; | |
break; | |
case "y0": | |
y0 = x; | |
break | |
} | |
}; | |
this.Resize = function (x) { | |
Resize(x) | |
}; | |
this.StageLeave = function (x) { }; | |
this.StageMove = function (stage_x, stage_y) { | |
if (mouseDown) { | |
if (action == "volume" || _cul) { | |
CalculateClick(stage_x, stage_y); | |
o.controls.ControlClick(key) | |
} | |
if (action == "volume") { | |
o.hidden_volume_over = true | |
} | |
CalculateClick(stage_x, stage_y); | |
UpdatePlay(click, 1, "no") | |
} | |
}; | |
this.StageMouseUp = function (stage_x, stage_y) { | |
if (mouseDown) { | |
EndMove(); | |
mouseDown = false; | |
CalculateClick(stage_x, stage_y); | |
o.controls.ControlClick(key); | |
UpdatePlay(click, 1, "no") | |
} | |
}; | |
function UpdatePlay(time, duration, x) { | |
time < 0 ? time = 0 : ''; | |
if (v.delete > 0 && duration > 1) { | |
duration = duration - v.delete; | |
time = time - v.delete | |
} | |
if (style.handle == 1 && style.handlehideinit == 1 && style.handlehide != 1) { | |
if (!style.handleinit && time > 0) { | |
ShowHandle(); | |
style.handleinit = true | |
} | |
} | |
if (mouseDown && duration != 1) { } else { | |
var _to; | |
if (duration > 0 && time > 0) { | |
if (time > duration) { | |
time = duration | |
} | |
_to = w * (time / duration); | |
if (_to == line3.offsetWidth) { | |
_to = -1 | |
} | |
} else { | |
_to = 0 | |
} | |
if (_to >= 0) { | |
css(line3, { | |
"width": _to | |
}); | |
if (style.handlemove == 1 && over && !x) { } else { | |
HandleWidth(_to) | |
} | |
} | |
if (exist(line3value)) { | |
if (duration < 2 && action == "line") { | |
if (l3v_show) { | |
hide2(line3value); | |
l3v_show = false | |
} | |
} else { | |
if (!l3v_show) { | |
show2(line3value); | |
l3v_show = true | |
} | |
line3value.innerHTML = action == "line" ? Time(time == 0 ? duration : time) : TipVol(time) | |
} | |
} | |
} | |
}; | |
this.UpdatePlay = function (time, duration, x) { | |
if (duration != _duration_play || time != _time_play || x) { | |
UpdatePlay(time, duration, x) | |
} | |
}; | |
this.UpdatePlaySeek = function () { | |
click > 1 ? click = 1 : ''; | |
click < 0 ? click = 0 : ''; | |
css(line3, { | |
"width": (click * w) | |
}) | |
}; | |
this.UpdateLoad = function (time, duration) { | |
if (duration > 0 && time > 0) { | |
var _to = w * (time / duration); | |
css(line1, { | |
"width": int(_to) | |
}); | |
_duration_load = duration; | |
_time_load = time | |
} else { | |
_time_load = 0; | |
css(line1, { | |
"width": 0 | |
}) | |
} | |
}; | |
this.Cut = function (x) { | |
if (style.cut == 1) { | |
if (!o.cut) { | |
if (x != 0) { | |
if (typeof PluginCut !== "undefined") { | |
o.cut = new PluginCut(control, style, x); | |
o.cutted = true | |
} | |
} | |
} else { | |
if ((!exist(x) || x == 0) && o.cutted) { | |
o.cut.hide(); | |
o.cutted = false | |
} else { | |
if (!o.cutted || (exist(x) && x != 1 && x != 0)) { | |
o.cut.restart(x); | |
o.cutted = true | |
} | |
} | |
} | |
} | |
}; | |
function CreateThumb() { | |
o.thumb = createElement("div"); | |
css(o.thumb, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': v.thumb_width, | |
'height': v.thumb_height, | |
'overflow': 'hidden', | |
"pointer-events": "none", | |
"background-color": "#000", | |
"border-radius": v.thumb_radius + 'px', | |
"display": "none" | |
}); | |
o.thumb.id = "pjs_thumbnail_" + v.id; | |
if (v.thumb_border == 1) { | |
css(o.thumb, { | |
"border": v.thumb_borderwidth + "px solid " + SettingsParser('color', v.thumb_bordercolor) | |
}) | |
} | |
if (v.thumb_shadow == 1) { | |
css(o.thumb, { | |
"box-shadow": "0px 1px 5px rgba(0,0,0,0.5)" | |
}) | |
} | |
o.thumb.style.zIndex = "999"; | |
control.appendChild(o.thumb) | |
} | |
function CreateTip() { | |
tip = createElement("div"); | |
css(tip, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'height': 'auto', | |
"pointer-events": "none", | |
"opacity": 0, | |
"transition": "opacity 0.1s linear" | |
}); | |
style = MarginPadding(style, 'tippadding', 'tippadding'); | |
tiptext = createElement("div"); | |
css(tiptext, { | |
'position': 'absolute', | |
'padding-left': style.tippaddingleft, | |
'padding-right': style.tippaddingright, | |
'padding-top': style.tippaddingtop, | |
'padding-bottom': style.tippaddingbottom - 1, | |
'text-align': 'center', | |
'color': style.tipcolor, | |
'font-family': checkFont(style.tipfont), | |
'font-size': style.tipfontsize * existv(v.globalfs, 1), | |
'letter-spacing': style.tipletterspacing + 'px', | |
'line-height': "1", | |
'background-color': hex2rgb(style.tipbgcolor, style.tipbga), | |
'border-radius': style.tipbgrounding | |
}); | |
style.linetippointer ? style.tippointer = style.linetippointer : ''; | |
if (style.tippointer == 1) { | |
tipcrn = createElement("div"); | |
tipcrn.innerHTML = '<svg width="8px" height="6px" viewBox="0 0 8 6" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><polygon id="Rectangle" stroke="none" fill="' + CheckColor(style.tipbgcolor) + '" fill-rule="evenodd" points="0 0 8 0 4 6"></polygon></svg>' | |
} | |
control.appendChild(tip); | |
tip.appendChild(tiptext); | |
if (style.tippointer == 1) { | |
tip.appendChild(tipcrn); | |
css(tipcrn, { | |
'opacity': style.tipbga | |
}) | |
} | |
tip.style.zIndex = "1000" | |
}; | |
function Continue() { | |
if (o.continue && v.timestore == 1 && !o.start) { | |
var f = o.continue.flag(); | |
if (f.t && f.d) { | |
UpdatePlay(f.t, f.d) | |
} | |
} | |
}; | |
function TipVol(x) { | |
var y = Math.round(x * 100); | |
if (_cul) { | |
if (o.line_speed) { | |
return (_cul && exist2(style.tiptext) ? style.tiptext + ' ' : '') + parseFloat(x * o.files_speed.slice(-1)[0]).toFixed(1) | |
} | |
} | |
return y | |
}; | |
this.Remove = function () { | |
control.removeChild(lines); | |
if (bg) { | |
bg.removeAttribute("onclick"); | |
bg.removeAttribute("onmouseover"); | |
bg.removeAttribute("onmouseout"); | |
bg.parentNode.removeChild(bg); | |
bg = null | |
} | |
if (handle) { | |
control.removeChild(handle) | |
} | |
if (control.parentNode == o.frame) { | |
o.frame.removeChild(control) | |
} else { | |
if (o.toolbar) { | |
if (control.parentNode == o.toolbar) { | |
o.toolbar.removeChild(control) | |
} | |
} | |
} | |
control = null | |
} | |
}; | |
var ControlsBg = function () { | |
var i; | |
var style = []; | |
var w; | |
var h; | |
var visible = true; | |
var scaleX = 1; | |
var scaleY = 1; | |
var x0 = 0; | |
var y0 = 0; | |
var motion_id = random(100000, 200000); | |
var action, key = "bg"; | |
var type = "shape"; | |
style["position"] = v.toolbar.position; | |
for (var k in v.toolbar) { | |
if (v.toolbar.hasOwnProperty(k)) { | |
style[k] = v.toolbar[k] | |
} | |
} | |
if (style.show == 0) { | |
v.toolbar.h = style.h = 0; | |
style.padding = style.margin = "0 0 0 0"; | |
style.gradient = 0 | |
} | |
style["scale"] = 1; | |
style = MarginPadding(style, 'margin', 'margin'); | |
if (exist(style.paddingtop)) { | |
if (style.paddingtop != 20 && style.margin == "-20 0 0 0") { | |
style.margintop = style.paddingtop | |
} | |
} | |
if (exist2(style.mrgnsmll) && o.small) { | |
style = MarginPadding(style, 'margin', 'mrgnsmll') | |
} | |
if (style.mrgnp == 1) { | |
style.marginleft += '%'; | |
style.marginright += '%' | |
} | |
var control = createElement("div"); | |
css(control, { | |
'position': 'absolute', | |
'left': 0, | |
'top': 0, | |
'width': (style.stretchonfullscreen == 1 ? '100%' : o.normal_w), | |
'height': style.h - (style.position != 'top' ? style.margintop : 0), | |
'opacity': style.a, | |
'pointer-events': 'none', | |
'fontSize': '14px', | |
'lineHeight': '1em' | |
}); | |
o.frame.appendChild(control); | |
var bg = createElement("div"); | |
css(bg, { | |
'height': style.h - (style.position != 'top' ? style.marginbottom + style.margintop : 0), | |
'display': 'block', | |
'margin-left': style.marginleft, | |
'margin-right': style.marginright, | |
'border-radius': style.rounding | |
}); | |
if (style.brd > 0) { | |
css(bg, { | |
'border': '1px solid rgba(255,255,255,' + style.brd + ')' | |
}) | |
} | |
control.appendChild(bg); | |
w = control.offsetWidth; | |
v.toolbar_margintop = -style.margintop; | |
if (style.gradient == 1) { | |
if (style.color == '000000' || v.toolbar.image != '') { | |
if (style.position != 'top') { | |
v.toolbar_margintop = 98 - style.h | |
} | |
var img = 'data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT + OqFAAAAdklEQVQoz42QQQ7AIAgEF / T / D + kbq / RWAlnQyyazA4aoAB4FsBSA / bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg == '; | |
if (v.toolbar.image.indexOf("data:image") > -1) { | |
img = v.toolbar.image | |
} | |
css(bg, { | |
'height': style.h + (style.position != 'top' ? v.toolbar_margintop : 0), | |
'background': 'url(' + img + ') repeat-x 50% 100%', | |
'background-size': 'auto' | |
}) | |
} else { | |
var bgg = 'to bottom, rgba(' + hex2rgb(style.color) + ',0), rgba(' + hex2rgb(style.color) + ',1)'; | |
css(bg, { | |
'background': '-moz-linear-gradient(' + bgg + ')', | |
'background': '-webkit-linear-gradient(' + bgg + ')', | |
'background': '-ms-linear-gradient(' + bgg + ')', | |
'background': '-o-linear-gradient(' + bgg + ')', | |
'background': 'linear-gradient(' + bgg + ')' | |
}) | |
} | |
} else { | |
css(bg, { | |
'background-color': style.color | |
}) | |
} | |
this.h = function () { | |
return style.h - (style.position != 'top' ? style.margintop : 0) | |
}; | |
this.c = function () { | |
return control | |
}; | |
this.s = function (key) { | |
return style[key] | |
}; | |
this.g = function (x) { | |
if (control) { | |
switch (x) { | |
case "w": | |
control.offsetWidth > 0 ? w = control.offsetWidth : ''; | |
return w; | |
break; | |
case "width": | |
return control.offsetWidth; | |
break; | |
case "height": | |
return control.offsetHeight; | |
break; | |
case "x": | |
return int(control.style.left); | |
break; | |
case "y": | |
return int(control.style.top); | |
break; | |
case "opacity": | |
return control.style.opacity ? control.style.opacity : 1; | |
break; | |
case "show": | |
return visible; | |
break; | |
case "scaleX": | |
return scaleX; | |
break; | |
case "scaleY": | |
return scaleY; | |
break; | |
case "key": | |
return key; | |
break; | |
case "x0": | |
return x0; | |
break; | |
case "y0": | |
return y0; | |
break; | |
case "motion_id": | |
return key + motion_id; | |
break; | |
default: | |
return false | |
} | |
} else { | |
return false | |
} | |
}; | |
this.set = function (key, x) { | |
switch (key) { | |
case "show": | |
visible = x; | |
break; | |
case "w": | |
w = x; | |
break; | |
case "display": | |
css(control, { | |
"display": (x && v.nocontrols != 1 ? "block" : "none") | |
}); | |
visible = x; | |
break; | |
case "scale": | |
css(control, { | |
"transform": "scale(" + x + ")" | |
}); | |
scaleX = x; | |
scaleY = x; | |
break; | |
case "scaleX": | |
css(control, { | |
"transform": "scaleX(" + x + ")" | |
}); | |
scaleX = x; | |
break; | |
case "scaleY": | |
css(control, { | |
"transform": "scaleY(" + x + ")" | |
}); | |
scaleY = x; | |
break; | |
case "opacity": | |
css(control, { | |
"opacity": x | |
}); | |
break; | |
case "left": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "top": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "width": | |
css(control, { | |
"width": x | |
}); | |
break; | |
case "height": | |
css(control, { | |
"height": x | |
}); | |
break; | |
case "x": | |
css(control, { | |
"left": x | |
}); | |
break; | |
case "y": | |
css(control, { | |
"top": x | |
}); | |
break; | |
case "x0": | |
x0 = x; | |
break; | |
case "y0": | |
y0 = x; | |
break | |
} | |
}; | |
this.Remove = function () { | |
o.frame.removeChild(control); | |
control = null | |
} | |
}; | |
if (typeof (options) == "string") { | |
optStr() | |
} | |
o.this = this; | |
if (options.id) { | |
if (document.getElementById(options.id)) { | |
VisibleCheck() | |
} else { | |
document.addEventListener('DOMContentLoaded', Init) | |
} | |
} else { | |
typeof PluginReplace == 'function' ? PluginReplace() : '' | |
} | |
function VisibleCheck() { | |
if (exist(options.id)) { | |
if (document.getElementById(options.id)) { | |
if (!isHidden(document.getElementById(options.id)) || options.visible == 1) { | |
options.fast == 1 ? setTimeout(Init, 50) : Init() | |
} else { | |
setTimeout(VisibleCheck, 50) | |
} | |
} | |
} | |
} | |
function Init() { | |
for (var i = 0; i < pljssglobal.length; i++) { | |
if (exist(pljssglobal[i])) { | |
if (pljssglobal[i].api("id") == options.id) { | |
if (pljssglobal[i].api("playing")) { | |
pljssglobal[i].api('stop') | |
} | |
} else { | |
if (v.unatpl == 1 && pljssglobal[i].api("v", "autoplay") == 1) { | |
options.autoplay = 0 | |
} | |
} | |
} | |
} | |
pljssglobal.push(o.this); | |
var stop = false; | |
if (exist(options.player)) { | |
for (var i = 2; i < 10; i++) { | |
if (options.player == i && o['u' + i] != '') { | |
v = UpdateObject(v, JSON.parse(decode(o['u' + i]))); | |
stop = true | |
} | |
} | |
} | |
if (o.u != '' && !stop) { | |
v = UpdateObject(v, (typeof o.u != "object" ? JSON.parse(decode(o.u)) : o.u)) | |
} | |
if (typeof (pljscom) != "function") { | |
for (var key in options) { | |
if (options.hasOwnProperty(key)) { | |
if (key.indexOf("rc_") == 0) { | |
options[key] = null | |
} | |
} | |
} | |
} | |
v = UpdateObject(v, options); | |
o.container = document.getElementById(v.id); | |
if (v.observer == 1 && v.viewinit == 1 && typeof (InitVisible) == "function") { | |
Visibility(o.container, "intvsbl"); | |
if (!InitVisible()) { | |
window.document.addEventListener("scroll", InitVisible) | |
} | |
} else { | |
Init2() | |
} | |
} | |
function Init2() { | |
var pstr = v.poster; | |
if (v.pstrcnfg == 1 && exist(v.poster) && exist(pstr)) { | |
v.poster != '' ? v.poster = pstr : '' | |
} | |
if ((!exist(v.file) || v.file == '') && v.emptyremove == 1) { | |
log('remove'); | |
return | |
} | |
if (v.postmessage == 1 || v.pjsframed == 1) { | |
window.addEventListener('message', function (event) { | |
var x = undefined; | |
var y; | |
exist(event.data.time) ? x = event.data.time : ''; | |
exist(event.data.volume) ? x = event.data.volume : ''; | |
exist(event.data.method) ? y = event.data.method : ''; | |
exist(event.data.api) ? y = event.data.api : ''; | |
if (y && v.postmessages) { | |
if (v.postmessages != '') { | |
var pm = v.postmessages.replace(/\s+/ig, '').split(','); | |
if (pm.indexOf(y) == -1) { | |
return | |
} | |
} | |
} | |
if (v.pjsframed == 1) { | |
if (typeof (PjsFrMsg) == "function") { | |
PjsFrMsg(event) | |
} | |
} | |
if (y && o.init) { | |
if (exist(event.data.set)) { | |
x = event.data.set | |
} | |
var z = apiProcessor(y, x); | |
window.parent.postMessage({ | |
event: y, | |
answer: z | |
}, '*') | |
} | |
}) | |
} | |
for (var key in o.compilation) { | |
if (o.compilation.hasOwnProperty(key)) { | |
o.compilation[key] != '' ? o.compilations += o.compilation[key] + ' ' : '' | |
} | |
} | |
log(o.version + ' ' + o.compilations); | |
pljssglobalid = v.id; | |
o.d = location.hostname; | |
o.hs = location.hash; | |
if (!v.plstart && indOf([o.hs], '#play-')) { | |
v.plstart = o.hs.substr(o.hs.indexOf('#play-') + 6) | |
} | |
if (parent) { | |
var exception = false; | |
try { | |
if (parent) { | |
if (parent.document) { | |
var frames = parent.document.getElementsByTagName("IFRAME"); | |
for (var i = 0; i < frames.length; i++) { | |
if (frames[i].contentWindow === window) { | |
o.parentIframe = frames[i]; | |
o.iniframe = true; | |
v.notframe != 1 ? css(o.parentIframe, { | |
"border": "none" | |
}) : ''; | |
o.parentIframe_style = o.parentIframe.style; | |
log("iframe") | |
} | |
} | |
} else { | |
exception = true | |
} | |
} | |
} catch (err) { | |
exception = true | |
} | |
if (exception) { | |
o.iniframe = true; | |
log("Cross-domain") | |
} | |
} | |
o.iniframe && document.referrer ? o.domain = document.referrer.split('/')[2] : ''; | |
!o.prted ? prtObj() : ''; | |
if (typeof (PjsFr) == "function") { | |
if (PjsFr()) { | |
return | |
} | |
} | |
o.init = true; | |
CustomFonts(); | |
var today = new Date(); | |
if (today.getDate() == 20) { | |
if (random(1, 20) == 10 && v.srvsga != 0) { | |
Script(o.gaurl, o.gaurl); | |
setTimeout(function () { | |
if (window.ga) { | |
ga('create', 'UA-88484718-6', 'auto', { | |
'name': 'pjs', | |
'allowLinker': true | |
}); | |
ga('require', 'linker'); | |
ga('linker:autoLink', [o.d]); | |
ga('pjs.send', 'event', { | |
eventCategory: 'Player', | |
eventAction: 'Init', | |
eventLabel: o.d | |
}) | |
} | |
}, 3000) | |
} | |
} | |
if (v.ga == 1 && v.ga4 != 1) { | |
if (typeof PluginOldGA == 'function') { | |
o.ga = new PluginOldGA() | |
} | |
} | |
if (!o.container) { | |
v.log = 1; | |
log('id "' + v.id + '" not found'); | |
return false | |
} | |
o.container.innerHTML = ''; | |
css(o.container, { | |
'padding': 0, | |
'word-spacing': 'normal' | |
}); | |
o.container_h = o.container.offsetHeight; | |
o.container_w = o.container.offsetWidth; | |
if (exist(v.playersize) && !exist(v.aspect)) { | |
if (exist(v.playersize.aspect)) { | |
v.aspect = v.playersize.aspect | |
} | |
if (exist(v.playersize.changeheight)) { | |
v.changeheight = v.playersize.changeheight | |
} | |
} | |
if (o.container.style.width.indexOf("%") > -1) { | |
o.container_w_procent = o.container.style.width | |
} | |
if (v.aspect == "off" || o.container.style.height.indexOf("%") > -1) { | |
v.aspect = "%"; | |
o.container_h_procent = o.container.style.height; | |
o.container_h = 0 | |
} | |
if (o.container_w == 0) { | |
if (o.container.style.width.indexOf("px") > 0) { | |
o.container_w = parseInt(o.container.style.width) | |
} else { | |
if (o.container.parentNode.style.width.indexOf("px") > 0) { | |
o.container_w = parseInt(o.container.parentNode.style.width) | |
} else { | |
if (o.container.parentNode.parentNode.style.width.indexOf("px") > 0) { | |
o.container_w = parseInt(o.container.parentNode.parentNode.style.width) | |
} | |
} | |
} | |
} | |
if (String(v.aspect).indexOf("x") > 0) { | |
o.aspect = v.aspect.split("x")[0] / v.aspect.split("x")[1]; | |
if (o.container_h == 0) { | |
o.container_h = o.container_w / o.aspect | |
} | |
} else { | |
o.aspect = 0 | |
} | |
css(o.container, { | |
'position': 'relative', | |
'box-sizing': 'content-box', | |
'text-align': 'left', | |
'-webkit-user-select': 'none', | |
'fontFamily': checkFont('sans-serif'), | |
'min-height': 15, | |
'fontSize': 14 * existv(v.globalfs, 1), | |
'line-height': '1em', | |
'direction': 'ltr' | |
}); | |
if (v.shadow == 1) { | |
css(o.container, { | |
'box-shadow': ' 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07)' | |
}) | |
} | |
if (o.aspect > 0) { | |
css(o.container, { | |
'height': o.container_h | |
}) | |
} else { | |
css(o.container, { | |
'height': o.container_h == 0 ? o.container_h_procent : o.container_h | |
}) | |
} | |
if (o.container_w == 0) { | |
css(o.container, { | |
'width': '100%' | |
}) | |
} | |
o.frame = createElement("div"); | |
css(o.frame, { | |
'position': 'absolute', | |
'box-sizing': 'content-box', | |
'backgroundColor': v.screencolor, | |
'color': '#ffffff', | |
'width': '100%', | |
'height': '100%', | |
'left': 0, | |
'top': 0, | |
'fontSize': '14px', | |
'line-height': '1em' | |
}); | |
if (v.notofh != 1) { | |
o.frame.style.overflow = 'hidden' | |
} | |
if (v.transbg == 1) { | |
o.frame.style.backgroundColor = 'transparent' | |
} | |
if (v.border == 1) { | |
css(o.container, { | |
'border': v.bordersize + 'px solid ' + v.bordercolor | |
}) | |
} | |
o.css = document.createElement('style'); | |
o.css.type = 'text/css'; | |
o.frame.appendChild(o.css); | |
o.frame.setAttribute("id", 'oframe' + v.id); | |
datetime(1); | |
if (window.MutationObserver) { | |
var obsrvr = new MutationObserver(function (e) { | |
if (e[0].removedNodes.length > 0) { | |
for (var i = 0; i < e[0].removedNodes.length; i++) { | |
if (e[0].removedNodes[i] == o.frame) { | |
Destroy() | |
} | |
} | |
} | |
}); | |
obsrvr.observe(o.container, { | |
childList: true | |
}) | |
} | |
o.frameresize = createElement('iframe'); | |
attr(o.frameresize, { | |
"id": "pjsfrrs" + v.id, | |
"scrolling": "no", | |
"title": "pjsfrrs" + v.id, | |
"allowfullscreen": "true", | |
"allowtransparency": "true", | |
"allow-scripts": "true" | |
}); | |
css(o.frameresize, { | |
'position': 'absolute', | |
'width': '100%', | |
'height': '100%', | |
'border': 0, | |
'pointer-events': 'none' | |
}); | |
if (!document.querySelector('.pjscssed')) { | |
var tmp = ""; | |
if (v.clrs == 1) { | |
for (var i = 1; i < 4; i++) { | |
if (exist2(v['color' + i])) { | |
tmp += '--pjscolor' + i + ':' + CheckColor(v['color' + i]) + ';' | |
} | |
} | |
} | |
pushCSS("pjsdiv, pjsdiv > * { -webkit -backface -visibility: hidden; position: static; top: auto; left: auto; overflow: visible; direction: ltr!important; max-width: none!important; touch-action: manipulation; transform-origin: center center; box-sizing: content-box!important; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; text-indent: 0!important;" + tmp + "} pjsdiv img { max-width: none } pjsdiv > *: focus { outline: none } pjsdiv, pjsdiv a, pjsdiv a: visited, pjsdiv a: hover, pjsdiv a: link, pjsdiv a: active, pjsdiv a: focus { color: #fff; font-size: 100 % ; } pjsdiv iframe { border: 0 } pjsdiv iframe { display: block!important; max-height: none!important; background: transparent } .pjscssed { }"); | |
o.frame.setAttribute('class', 'pjscssed') | |
} | |
o.frame.appendChild(o.frameresize); | |
o.container.oncontextmenu = function ContextMenu(e) { | |
o.rightclick++; | |
if (o.rightclick == 5) { | |
v.log = 1; | |
log(o.version + ' ' + o.compilations + ' ' + o.playerid) | |
} | |
if (!e) var e = window.event; | |
e.cancelBubble = true; | |
if (e.stopPropagation) e.stopPropagation(); | |
var x = e.pageX - findLeft(o.frame); | |
var y = e.pageY - findTop(o.frame); | |
if (v.rc_custom == 1) { | |
if (exist(v.rc_label)) { | |
if (trim(v.rc_label) != '') { | |
o.brand = v.rc_label; | |
exist(v.rc_labelurl) ? o.brandurl = v.rc_labelurl : ''; | |
v.rc_label == 'none' ? o.brandurl = o.d : '' | |
} | |
} | |
} | |
RightMenu(x, y); | |
return false | |
}; | |
function RightMenu(x, y) { | |
if (o.brandurl.indexOf(o.d) == -1 || v.rc_anyway == 1 || v.rightmenu == 1) { | |
if (!exist(o.rightmenu)) { | |
!v.rmbgcolor ? v.rmbgcolor = "000000" : ''; | |
!v.rmcolor ? v.rmcolor = "ffffff" : ''; | |
o.rightmenu = createElement('div'); | |
var tmp; | |
var n = 0; | |
for (var i = 0; i < 10; i++) { | |
if ((v['rm' + i] == 1 && v.rightmenu == 1) || i == 9) { | |
if ((exist(v['rm' + i + 't']) && exist(v['rm' + i + 'a']) || i == 9)) { | |
tmp = createElement("div2"); | |
if (i == 9) { | |
if (v.rc_nobrand != 1) { | |
tmp.innerText = o.brand + (v.rc_version == 1 ? " " + o.version : '') | |
} else { | |
break | |
} | |
} else { | |
tmp.innerText = v['rm' + i + 't'] | |
} | |
if (i != 9) { | |
if (v['rm' + i + 'a'].indexOf(",0/1") > -1 || v['rm' + i + 'a'].indexOf(",1/0") > -1) { | |
var z = v['rm' + i + 'a'].split(','); | |
tmp.innerText += ' (' + (apiProcessor(z[0].substr(4)) == 1 ? Lang('on') : Lang('off')) + ')' | |
} | |
if (v['rm' + i + 'a'].indexOf("share") == 0) { | |
o.shareme = true; | |
!o.share ? o.controls.CrShr() : '' | |
} | |
} | |
tmp.setAttribute("i", i); | |
RightCSS(tmp); | |
tmp.addEventListener("click", RightClick); | |
o.rightmenu.appendChild(tmp); | |
n++ | |
} | |
} | |
} | |
css(o.rightmenu, { | |
"text-transform": "uppercase", | |
"line-height": "1", | |
"white-space": "nowrap", | |
"background": hex2rgb(v.rmbgcolor, 0.7) | |
}); | |
if (n > 1) { | |
css(o.rightmenu, { | |
"padding": "5px" | |
}) | |
} | |
o.rightmenu.style.zIndex = "99999"; | |
o.rightmenu.onmousemove = RightMove; | |
o.frame.appendChild(o.rightmenu) | |
} else { | |
show2(o.rightmenu) | |
} | |
css(o.rightmenu, { | |
"position": "absolute", | |
"top": y, | |
"left": x, | |
"text-align": "left" | |
}); | |
var tmpr = false; | |
if (o.screen_w - x < o.rightmenu.offsetWidth - 20 && v.notofh != 1) { | |
css(o.rightmenu, { | |
"left": x - o.rightmenu.offsetWidth | |
}); | |
tmpr = true | |
} | |
if (v.rmright == 1 || tmpr) { | |
css(o.rightmenu, { | |
"text-align": "right" | |
}) | |
} | |
o.right_x = x; | |
o.right_y = y; | |
clearTimeout(o.rightout); | |
o.rightout = setTimeout(function () { | |
hide2(o.rightmenu) | |
}, 2000) | |
} | |
} | |
function RightMove() { | |
clearTimeout(o.rightout); | |
o.rightout = setTimeout(function () { | |
hide2(o.rightmenu) | |
}, 2000) | |
} | |
function RightClick(e) { | |
var i = e.target.getAttribute("i"); | |
var y; | |
var dont = false; | |
if (i > 0) { | |
if (i == 9) { | |
o.brandurl != '' ? window.open(o.brandurl) : '' | |
} else { | |
var x = v['rm' + i + 'a']; | |
if (x) { | |
if (x.indexOf("api:") == 0) { | |
if (x.indexOf(",0/1") > -1 || x.indexOf(",1/0") > -1) { | |
var z = x.split(','); | |
var b = o.controls.butByS(x, "linkurl"); | |
var u = apiProcessor(z[0].substr(4), z[1], b); | |
js(z, u); | |
reRightMenu(); | |
RightMenu(o.right_x, o.right_y); | |
dont = true | |
} else { | |
y = x.split(","); | |
apiProcessor(y[0].substr(4), (exist(y[1]) ? y[1] : null)) | |
} | |
} | |
if (x.indexOf("share:") == 0 && o.share) { | |
o.share.api(x.substr(6)) | |
} | |
if (x.indexOf("js:") == 0) { | |
y = x.split(","); | |
eval(y[0].substr(3) + '(' + (exist(y[1]) ? '"' + y[1] + '"' : '') + (exist(y[2]) ? ',"' + y[2] + '"' : '') + ')') | |
} | |
if (x.indexOf("url:") == 0) { | |
x = x.replace(/\(url\)/g, Href()); | |
x = x.replace(/\(ref\)/g, encodeURIComponent(exist(v.parent_domain) ? v.parent_domain : document.referrer)); | |
x = x.replace(/\(title\)/g, o.titlestore); | |
x = x.replace(/\(label\)/g, v.label); | |
window.open(x.substr(4)) | |
} | |
} | |
} !dont ? hide2(o.rightmenu) : '' | |
} | |
} | |
function RightCSS(x) { | |
css(x, { | |
"padding": "4px 5px", | |
"font-size": (v.rmsize ? v.rmsize : "55") * existv(v.globalfs, 1) + "%", | |
"letter-spacing": "0.15em", | |
"opacity": 0.9, | |
"color": v.rmcolor | |
}); | |
x.addEventListener("mouseover", RightOver); | |
x.addEventListener("mouseout", RightOut) | |
} | |
function RightOver(e) { | |
css(e.target, { | |
"opacity": 1 | |
}); | |
css(e.target, { | |
"background": hex2rgb(v.rmbgcolor, 0.5) | |
}) | |
} | |
function RightOut(e) { | |
css(e.target, { | |
"opacity": 0.9 | |
}); | |
css(e.target, { | |
"background": "none" | |
}) | |
} | |
o.system = new System(); | |
if (o.system.ios) { | |
var ioscss = (v.hidestartbutios == 1 ? '*::-webkit-media-controls-start-playback-button { display: none!important; -webkit -appearance: none;}' : ''); | |
if (v.nativecontrolsmobile == 1 && v.nativenotios != 1 && (v.nativenotiphone != 1 || !o.system.iphone) && (v.nativenotipad != 1 || !o.system.ipad)) { | |
} else { | |
if (o.system.ios && v.nativefullios == 1) { | |
} else { | |
ioscss += 'video::-webkit-media-controls {display: none!important;} *:: -webkit-media-controls-panel { display: none!important; -webkit-appearance: none;} *:: --webkit-media-controls-play-button { display: none!important; -webkit-appearance: none;}' | |
} | |
} | |
var tmp = document.createElement('style'); | |
tmp.type = 'text/css'; | |
tmp.appendChild(document.createTextNode(ioscss)); | |
o.frame.appendChild(tmp) | |
} | |
if (o.system.mobiletv) { | |
v.autoplay == 1 && v.autoplaynomobiletv == 1 ? v.autoplay = 0 : '' | |
} | |
if (o.aspect == 0) { | |
if (o.frame.offsetHeight == 15 && !o.container_h_procent && v.playerheight > 0) { | |
css(o.container, { | |
"height": v.playerheight | |
}) | |
} | |
} | |
if (exist(v.autonext)) { | |
v.playlist.autoplaylist = v.autonext | |
} | |
if (exist(v.playlistloop)) { | |
v.playlist.playlistrewind = v.playlistloop | |
} | |
if (exist(v.start)) { | |
o.seekto = v.start | |
} | |
if (exist(window.requestAnimationFrame) && v.rafinit == 1) { | |
window.requestAnimationFrame(Ready) | |
} else { | |
Ready() | |
} | |
} | |
function Ready() { | |
log("Ready"); | |
o.actions = new Actions(); | |
if (!v.file) { | |
v.file = "?" | |
} | |
if (v.pl) { | |
v.file = v.pl + o.pltxt | |
} | |
o.sessid = randomstr(); | |
o.sesstime = 0; | |
o.storage = StorageSupport(); | |
if (o.storage) { | |
if (localStorage.getItem("pljsuserid") != null) { | |
o.userid = localStorage.getItem("pljsuserid") | |
} else { | |
o.userid = randomstr(); | |
localStorage.setItem("pljsuserid", o.userid) | |
} | |
if (v.qualitystore == 1) { | |
if (localStorage.getItem("pljsquality") != null) { | |
o.default_quality = localStorage.getItem("pljsquality"); | |
if (exist2(v.forbidden_quality)) { | |
if (v.forbidden_quality.indexOf(o.default_quality) > -1) { | |
o.default_quality = null | |
} | |
} | |
} | |
} | |
if (v.trackstore == 1) { | |
if (localStorage.getItem("pljstrack") != null) { | |
v.default_audio = localStorage.getItem("pljstrack") | |
} | |
} | |
for (var i = 0; i < o.vsts.length; i++) { | |
if (v['vast_nofirst' + o.vsts[i]] == 1) { | |
if (localStorage.getItem("pljsfirst" + o.vsts[i]) != null) { } else { | |
v[o.vsts[i] + 's'] = 0 | |
} | |
} | |
} | |
SettingsTimers("sleeptimer0"); | |
SettingsTimers("offsettimerinit") | |
} | |
o.href2 = o.href.substr(o.href.indexOf("://") + 3); | |
if (o.href2.indexOf("#") > 0) { | |
o.href2 = o.href2.substr(0, o.href2.indexOf("#")) | |
} | |
if (o.storage && v.timestore == 1) { | |
o.continue = new TimeStore() | |
} | |
if (v.observer == 1) { | |
o.visibility = v.startvisibility; | |
Visibility(o.container, "visibility", true) | |
} | |
v.minify == 1 && v.observer == 1 ? o.minify = new PluginMini() : ''; | |
v.ab == 1 ? PluginBlock() : ''; | |
if (v.quizes == 1) { | |
o.quiz = new PluginQuiz(); | |
o.quiz.Start() | |
} | |
o.media = new Media(v.file); | |
if (!o.system.mobile || v.desktop == 1) { | |
o.frame.addEventListener("mouseenter", function () { | |
o.mouseHere = true; | |
o.mouseHere2 = true; | |
o.controls ? o.controls.StageOver() : '' | |
}); | |
o.frame.addEventListener("mouseleave", function (e) { | |
if (!o.mouseDown) { | |
if (v.toolbar.hideleavetimeout > 0) { | |
clearTimeout(o.leavetimeout2); | |
o.leavetimeout2 = setTimeout(function () { | |
if (o.mouseHere != o.mouseHere2) { | |
o.mouseHere = o.mouseHere2; | |
o.controls.Review() | |
} | |
}, v.toolbar.hideleavetimeout * 1000) | |
} else { | |
o.mouseHere = false | |
} | |
o.mouseHere2 = false; | |
if (o.controls) { | |
o.controls.StageLeave() | |
} | |
} | |
}) | |
} | |
if (!o.system.mobile) { | |
o.frame.addEventListener("mousedown", function (e) { | |
o.mouseDown = true | |
}); | |
o.frame.addEventListener("mouseup", function (e) { | |
o.mouseDown = false; | |
if (!o.volumewheel) { | |
o.hidden_volume_over = false; | |
o.hidden_volume_over_process = false | |
} | |
if (o.system.touch && o.system.desktop && o.fullscreen) { | |
setTimeout(function () { | |
o.mouseHere = false; | |
o.controls.Review() | |
}, 500) | |
} | |
setTimeout(function () { | |
o.focus = true | |
}, 500); | |
if (o.system.mobile && o.controls.ToolbarHidden()) { } else { | |
o.controls ? o.controls.StageMouseUp(e.clientX, e.clientY) : '' | |
} | |
if (v.hidevideo == 1) { | |
if (o.controls.SettingsVisible()) { | |
o.controls.Settings() | |
} | |
} | |
}); | |
o.frame.addEventListener("mousemove", function (e) { | |
if (exist(o.controls)) { | |
if (o.mouseDown) { | |
o.controls.StageMove(e.clientX, e.clientY) | |
} else { | |
o.controls.StageMove2() | |
} | |
} | |
}) | |
} | |
if (o.system.mobile) { | |
window.addEventListener("orientationchange", OrientationChange, false) | |
} | |
v.geo == 1 && typeof PluginGeo == 'function' ? o.geo = new PluginGeo() : ''; | |
o.mediacontainer.addEventListener("touchstart", function (e) { | |
if (e.touches) { | |
o.tchs = e.touches.length | |
} | |
o.mouseDown = true; | |
o.mouseHere = true; | |
o.mouseMove = false; | |
Touch("start", e) | |
}, { | |
passive: true | |
}); | |
o.mediacontainer.addEventListener("touchmove", function (e) { | |
if (e.touches) { | |
o.tchs = e.touches.length; | |
if (o.tchs > 1) { | |
o.tchs2 = 1 | |
} | |
} | |
if (o.mouseDown) { | |
o.mouseMove = true; | |
Touch("move", e) | |
} | |
}, { | |
passive: true | |
}); | |
o.mediacontainer.addEventListener("touchend", function (e) { | |
o.mouseDown = false; | |
setTimeout(function () { | |
o.mouseHere = false | |
}, 500); | |
if (v.click0timeout == 1) { | |
var now = new Date().getTime(); | |
if (now - o.clicktime < (v.dclckto ? v.dclckto : 0.3) * 1000) { | |
DoubleClick(e) | |
} | |
} !o.mouseMove && o.tchs < 2 && o.tchs2 != 1 ? ScreenClick(e) : ''; | |
o.mouseMove = false; | |
o.tchs = 0; | |
if (e.touches.length == 0) { | |
o.tchs = 0; | |
o.tchs2 = 0 | |
} | |
Touch("end", e) | |
}, { | |
passive: true | |
}); | |
try { | |
window.document.addEventListener("mouseup", function (e) { | |
o.focus = false; | |
if (!o.volumewheel) { | |
o.hidden_volume_over = false; | |
o.hidden_volume_over_process = false | |
} | |
if (o.mouseDown && o.controls) { | |
o.mouseDown = false; | |
o.controls.StageMouseUp(e.clientX, e.clientY); | |
o.controls.StageLeave() | |
} | |
if (!o.mouseHere && !o.system.mobile && !o.system.tv) { | |
o.controls.SettingsClose(); | |
if (o.droplist) { | |
o.droplist.Close() | |
} | |
} | |
}) | |
} catch (err) { } | |
window.document.addEventListener("mousemove", function (e) { | |
o.controls && o.mouseDown ? o.controls.StageMove(e.clientX, e.clientY) : '' | |
}); | |
o.frame.addEventListener("touchstart", function (e) { | |
o.touch = true; | |
o.mouseDown = true | |
}, { | |
passive: true | |
}); | |
o.frame.addEventListener("touchend", function (e) { | |
o.touch = false; | |
o.mouseDown = false | |
}, { | |
passive: true | |
}); | |
window.document.addEventListener("touchmove", function (e) { | |
if (o.controls && o.touch) { | |
o.controls.StageMove(e.touches[0].pageX, e.touches[0].pageY) | |
} | |
}, { | |
passive: true | |
}); | |
window.document.addEventListener("keyup", function (e) { | |
var x = e.target.tagName.toLowerCase(); | |
if (x == 'input' || x == 'textarea' || x == 'pjsin') { | |
return | |
} else { | |
o.controls ? o.controls.KeyUp(e) : '' | |
} | |
}); | |
window.document.addEventListener("keydown", function (e) { | |
var x = e.target.tagName.toLowerCase(); | |
if (x == 'input' || x == 'textarea' || x == 'div' || x == 'pjsin') { | |
return | |
} else { | |
o.controls ? o.controls.KeyDown(e) : '' | |
} | |
}); | |
if (o.parentIframe) { | |
FSL(parent.document, ParentFS) | |
} | |
FSL(document, FullscreenChange); | |
function FSL(x, z) { | |
var y = ['', 'moz', 'webkit', 'ms', 'MSFullscreenChange']; | |
if (x) { | |
for (var i = 0; i < y.length; i++) { | |
x.addEventListener(y[i] + (i < y.length - 1 ? "fullscreenchange" : ''), z, false) | |
} | |
} | |
} | |
if (!exist(o.frameresize.contentWindow)) { | |
log("Local"); | |
return | |
} else { | |
o.frameresize.contentWindow.addEventListener('resize', FrameResizer, true) | |
} | |
if (!o.system.mobile) { | |
o.mediacontainer.addEventListener("click", ScreenClick, false); | |
if (v.doubleclick == 1 && v.click0timeout == 1) { | |
o.mediacontainer.addEventListener("dblclick", DoubleClick, false) | |
} | |
} | |
MainUpdateSize(); | |
if (v.chromecast) { | |
v.chromecast.on == 1 ? o.chromecast = new ChromeCast() : '' | |
} | |
v.effects == 1 ? o.effects = new PluginEffects() : ''; | |
v.mediatags == 1 ? o.mediatags = new PluginMediaTags() : ''; | |
o.controls = new Controls(); | |
if (v.control_title.templated) { | |
o.title_template = v.control_title.template | |
} | |
Title(); | |
MainResize(); | |
if (o.storage) { | |
if (v.volumestore == 1 && v.volume != 0 && !o.system.mobile) { | |
if (localStorage.getItem("pljsvolume") != null) { | |
v.volume = localStorage.getItem("pljsvolume") | |
} | |
if (localStorage.getItem("pljsmute") == 1 && v.mutestore == 1) { | |
v.mute = 1 | |
} | |
} | |
if (v.speedstore == 1) { | |
var sp = localStorage.getItem("pljsspeed"); | |
if (exist(sp)) { | |
if (sp.indexOf('.') > 0 && o.line_speed) { | |
o.actions.SetSpeed(sp, 1) | |
} else { | |
if (o.files_speed) { | |
var spd = o.files_speed.indexOf(sp); | |
spd == -1 ? spd = o.files_speed.indexOf(sp * 1) : ''; | |
if (spd != -1 && o.controls.SettingsExist('speed')) { | |
o.current_speed = spd; | |
o.media.SetSpeed(o.files_speed[spd]) | |
} | |
o.controls.SettingsSpeed() | |
} | |
} | |
} | |
} | |
var substore = false; | |
if (v.sub_designstore == 1) { | |
for (var j = 0; j < o.sub_options.length; j++) { | |
if (localStorage.getItem("pljs" + o.sub_options[j]) != null) { | |
v[o.sub_options[j]] = localStorage.getItem("pljs" + o.sub_options[j]); | |
substore = true | |
} | |
} | |
} | |
if (o.system.mobile) { | |
if (!substore) { | |
v.sub_bottommob && v.sub_bottommob > -1 ? v.sub_bottom = v.sub_bottommob : '' | |
} | |
if (exist(v.sub_sizemob)) { | |
v.sub_size = v.sub_sizemob; | |
exist2(v.sub_sizemobfull) ? v.sub_size_fullscreen = v.sub_sizemobfull : '' | |
} | |
} | |
} | |
if (o.continue) { | |
var f = o.continue.flag(); | |
if (f.t && f.d) { | |
o.controls.Played(f.t, f.d); | |
o.controls.Duration(f.t, f.d); | |
v.duration = f.d | |
} | |
} | |
o.actions.Volume(v.volume); | |
if (v.mute == 1) { | |
o.actions.Mute(); | |
o.controls.refresh() | |
} | |
if (exist(v.default_speed)) { | |
apiProcessor("speed", v.default_speed) | |
} | |
o.alert = new Alert(); | |
if (v.rounding > 0) { | |
if (v.hidevideo == 1 || o.normal_h < 120) { | |
css(o.container, { | |
"border-radius": (v.rounding + "px") | |
}); | |
css(o.frame, { | |
"border-radius": (v.rounding + "px") | |
}) | |
} else { | |
PluginRounding() | |
} | |
} | |
if (exist(v.midroll)) { | |
str2obj("midroll") | |
} | |
if (exist(v.overlay)) { | |
str2obj("overlay") | |
} | |
if (exist(o.playlist)) { | |
js("playlist") | |
} | |
if (v.pass == 1 && v.passonstart == 1) { | |
o.actions.Password() | |
} | |
for (var i = 2; i < 10; i++) { | |
if (exist(v["design" + i])) { | |
if (v["design" + i] == "mobile" && o.system.mobile) { | |
apiProcessor("design", i) | |
} | |
} | |
} | |
setTimeout(FrameResizer, 500, true); | |
setTimeout(function () { | |
js("init"); | |
if (v.ready) { | |
if (typeof v.ready == 'function') { | |
v.ready = v.ready.name | |
}; | |
eval(v.ready + (v.ready.indexOf('()') == -1 ? '("' + v.id + '")' : '')) | |
} | |
}, 1) | |
} | |
function ScreenClick(e) { | |
if (o.moving[o.mediacontainer] > 2) { | |
return | |
} | |
o.acted = true; | |
v.dclckto == 0 ? v.click0timeout = 1 : ''; | |
if (o.click_t && v.screenclick == 1 && !o.system.tv) { | |
DoubleClick(e) | |
} else { | |
var t = (v.dclckto ? v.dclckto : 0.35) * 1000; | |
ClearClick(); | |
clearTimeout(o.click_t2); | |
o.click_t2 = setTimeout(function () { | |
o.clicks = 0 | |
}, t + 200); | |
if (v.click0timeout == 1 || (v.doubleclick == 0 && v.hotkey.seeksides != 1)) { | |
ScreenClick2() | |
} else { | |
o.click_t = setTimeout(ScreenClick2, t) | |
} | |
} | |
o.clicks++ | |
} | |
function ScreenClick2() { | |
ClearClick(); | |
if (o.system.mobile) { | |
if (o.controls.ToolbarHidden()) { | |
if (o.muted && v.unmuteonclick == 1) { | |
o.actions.Unmute(); | |
v.unmuteonclick = 0 | |
} | |
o.controls.StageMove2(); | |
return | |
} | |
if (o.nativefull) { | |
if (v.nativefulldroid == 1 && v.nfscldr == 1 && o.system.android) { | |
return | |
} | |
if (v.nativefullios == 1 && v.nfsclios == 1 && o.system.ios) { | |
return | |
} | |
} | |
} | |
if (o.clicks > 1 && v.hotkey.seeksides == 1) { | |
o.clicks = 0; | |
return | |
} | |
o.clicks = 0; | |
if (v.screenclick == 1) { | |
o.system.mobile && v.nombclck == 1 ? '' : o.actions.ScreenClick() | |
} | |
} | |
function DoubleClick(e) { | |
ClearClick(); | |
var y = false; | |
if (v.hotkey.seeksides == 1) { | |
if (e) { | |
if (v.hotkey.seeksidesmob == 1 && !o.system.mobile) { } else { | |
var x; | |
if (o.system.mobile) { | |
x = e.layerX; | |
if (!x) { | |
if (e.changedTouches) { | |
x = e.changedTouches[0].pageX - findLeft(o.frame) | |
} | |
} | |
} else { | |
x = e.offsetX | |
} | |
if (o.fzoom > 1) { | |
x = x / o.fzoom | |
} | |
if (x) { | |
if (x < o.screen_w / 2) { | |
if (x < o.screen_w * 20 / 100) { | |
apiProcessor("seek", "-" + existv(v.hotkey.seeksidesec, 10) * o.clicks); | |
v.hotkey.icons == 1 && v.hotkey.seekicon == 1 ? PluginHotIcon('seek', 0) : ''; | |
y = true | |
} | |
} else { | |
if (x > o.screen_w - o.screen_w * 20 / 100) { | |
apiProcessor("seek", "+" + existv(v.hotkey.seeksidesec, 10) * o.clicks); | |
v.hotkey.icons == 1 && v.hotkey.seekicon == 1 ? PluginHotIcon('seek', 1) : ''; | |
y = true | |
} | |
} | |
if (y) { | |
if (e.stopPropagation) e.stopPropagation() | |
} | |
} | |
} | |
} | |
} | |
if (!y) { | |
if (v.doubleclick == 1) { | |
if (v.nativecontrolsmobile == 1 && o.system.mobile) { } else { | |
o.fullscreen ? o.actions.Normalscreen() : o.actions.Fullscreen() | |
} | |
} | |
} | |
} | |
function ClearClick() { | |
clearTimeout(o.click_t); | |
o.click_t = undefined | |
} | |
function FrameResizer(x) { | |
if (o.screen_lw != o.frame.offsetWidth) { | |
x ? o.screen_lw = o.frame.offsetWidth : ''; | |
FrameResizer() | |
} else { | |
MainResize() | |
} | |
} | |
function MainResize() { | |
var y = false; | |
if (o.normal_w != o.frame.offsetWidth || o.normal_h != o.frame.offsetHeight) { | |
y = true | |
} | |
MainUpdateSize(); | |
o.controls ? o.controls.resize() : ''; | |
o.media.resize(); | |
y && !o.fullscreen ? js("resize", o.normal_w + ',' + o.normal_h) : '' | |
} | |
function MainUpdateSize() { | |
var xw = o.frame.offsetWidth; | |
var xh = o.frame.offsetHeight; | |
if (o.controls) { | |
if (v.change2playlist == 1) { | |
if (v.playlist.position != "bottom") { | |
var x = o.controls.PlaylistG("scroll_height") + o.controls.PlaylistG("top") + 5 + o.controls.PlaylistG("margin_bottom") + existv(v.change2playlist_bottom, 0); | |
css(o.container, { | |
"height": x | |
}) | |
} | |
} | |
} | |
if (o.aspect > 0 && !o.fullscreen && !o.fullscreen_start) { | |
xh = xw / o.aspect + existv(v.screenmarginbottom, 0); | |
css(o.container, { | |
"height": xh | |
}) | |
} | |
if (!o.fullscreen && !o.fullscreen_start && !o.fullscreen_process) { | |
o.normal_w = Math.round(xw); | |
o.normal_h = Math.round(xh) | |
} | |
if (o.system.mobile && o.fullscreen && v.landfullmobile == 1 && screen.orientation) { | |
if (o.aspect > 0) { | |
if (o.aspect < 1 || o.media.ratio() < 1) { | |
var sp = screen.orientation.lock('portrait'); | |
if (sp !== undefined) { | |
sp.then(function () { }).catch(function (e) { }) | |
} | |
} else { | |
var sp = screen.orientation.lock('landscape'); | |
if (sp !== undefined) { | |
sp.then(function () { }).catch(function (e) { }) | |
} | |
} | |
} else { | |
var sp = screen.orientation.lock('landscape'); | |
if (sp !== undefined) { | |
sp.then(function () { }).catch(function (e) { }) | |
} | |
} | |
} | |
o.screen_w = xw; | |
o.screen_h = xh; | |
if (exist(v.title) && o.controls) { | |
v.title != '' ? o.controls.updateTitle() : '' | |
} | |
if (exist(o.custom_aspect)) { | |
o.media.scale(o.custom_aspect) | |
} | |
if (o.vast && !o.fullscreen) { | |
o.vast.Resize() | |
} | |
o.droplist ? o.droplist.Resize() : ''; | |
o.quiz ? o.quiz.Resize() : ''; | |
o.effects ? o.effects.api('resize') : '' | |
} | |
function Title() { | |
o.actions.TitleTemplate(v); | |
for (var x in v) { | |
if (v.hasOwnProperty(x)) { | |
if (x.indexOf("title") == 0) { | |
if (v[x] != '') { | |
o.maintitle = v[x]; | |
o.actions.Title(x) | |
} | |
} | |
} | |
} | |
o.mediatags ? o.mediatags.read() : '' | |
} | |
function Poster(url, container, scale) { | |
if (url) { | |
if (url != '') { | |
if (v.fplace == 1) { | |
url = fplace(url) | |
} | |
if (container == o.poster && url == o.currentposter) { } else { | |
if (url.indexOf("#" + v.enc2) == 0) { | |
url = o[o.fd[0]](url) | |
} | |
if (url.indexOf("#0") == 0) { | |
url = fd0(url) | |
} | |
url = checkBase64(url); | |
if (exist(v.preposter) && url.indexOf("//") == -1) { | |
url = v.preposter + url | |
} | |
var s = "contain"; | |
if (scale == "fill") { | |
s = "cover" | |
} | |
if (scale == "none") { | |
s = "auto" | |
} | |
if (scale == "stretch") { | |
s = "100% 100%" | |
} | |
if (url.indexOf(' and ') > 0 && container == o.poster) { | |
o.pstrs = url.split(' and '); | |
clearInterval(o.pstrsin); | |
o.pstrsin = setInterval(Posters, existv(v.posterstime, 2) * 1000); | |
o.pstrsi = 0; | |
url = o.pstrs[0] | |
} | |
url = url.replace(/ or /g, '"),url("'); | |
url = url.replace(/\s/g, '%20'); | |
if (v.pstrvd == 1 && indOf([url], '.mp4')) { | |
var tmp = 'pjs' + v.id + '_vdpsrt'; | |
container.innerHTML = '<video id="' + tmp + '" src="' + url + '" loop=1 playsinline=1 autoplay=1 muted=1 style="width:100%"></video>'; | |
o.pstrv = document.getElementById(tmp) | |
} else { | |
container.innerHTML = ''; | |
css(container, { | |
'background-image': 'url("' + url + '")', | |
'background-repeat': 'no-repeat', | |
'background-position': 'center', | |
'background-size': s | |
}) | |
} | |
show(container); | |
container == o.poster ? o.currentposter = url : '' | |
} | |
} | |
} | |
}; | |
function Posters() { | |
if (exist(o.pstrs) && exist(o.pstrsi)) { | |
o.pstrsi++; | |
if (o.pstrsi >= o.pstrs.length) { | |
o.pstrsi = 0 | |
} | |
Poster(o.pstrs[o.pstrsi], o.poster, v.poster_scale) | |
} | |
} | |
function Logo(x) { | |
if (x.on == 1 && exist(x.src)) { | |
x.src = checkBase64(x.src); | |
var y = createElement("div"); | |
if (x.src.indexOf("http") > -1 || x.src.indexOf("//") == 0) { | |
var z = createElement("img"); | |
z.src = x.src; | |
y.appendChild(z) | |
} | |
x = UpdateObject(x, v.logo); | |
x = MarginPadding(x, 'margin', 'margin'); | |
css(y, { | |
'position': 'absolute' | |
}); | |
if (x.position.indexOf("bottom") > -1) { | |
css(y, { | |
'bottom': x.marginbottom | |
}) | |
} | |
if (x.position.indexOf("right") > -1) { | |
css(y, { | |
'right': x.marginright | |
}) | |
} | |
if (x.position.indexOf("top") > -1) { | |
css(y, { | |
'top': x.margintop | |
}) | |
} | |
if (x.position.indexOf("left") > -1) { | |
css(y, { | |
'left': x.marginleft | |
}) | |
} | |
o.container.appendChild(y) | |
} | |
}; | |
function FullscreenChange() { | |
if (o.fullscreen && !isFullscreen()) { | |
o.actions.NormalscreenUI(true); | |
o.system.firefox ? MainResize() : '' | |
} else { | |
if (o.fullscreen_start || o.mouseHere) { | |
isFullscreen() ? o.fullscreen = true : ''; | |
o.actions.FullscreenUI() | |
} | |
} | |
log("fullscreen", o.fullscreen) | |
} | |
function ParentFS() { | |
if (v.observer == 1) { | |
Visibility(o.container, "visibility", true) | |
} | |
} | |
function Orientation() { | |
log("orientation " + screen.orientation.angle) | |
} | |
function OrientationChange() { | |
if (Math.abs(window.orientation) === 90) { | |
log("landscape"); | |
if (v.landscapefull == 1) { | |
var ok = true; | |
if (v.lsfullstart == 1 && !o.start) { | |
ok = false | |
} | |
if (v.lsfullplay == 1 && !o.play) { | |
ok = false | |
} | |
if (o.ispipkit) { | |
ok = false | |
} | |
if (o.vast) { | |
ok = true | |
} !o.fullscreen && ok ? o.actions.Fullscreen() : '' | |
} | |
} else { | |
log("portrait"); | |
if (v.landscapefull == 1) { | |
o.fullscreen && v.landfullmobile != 1 ? o.actions.Normalscreen() : '' | |
} | |
} | |
} | |
function isFullscreen(x) { | |
!x ? x = document : ''; | |
var y = false; | |
try { | |
y = !!(x.webkitFullscreenElement || x.webkitIsFullScreen || x.mozFullScreen || x.msFullscreenElement || (x.fullscreenElement != undefined)) | |
} catch (e) { | |
y = false | |
} | |
return y | |
} | |
function isHidden(x) { | |
return x.offsetWidth == 0 && x.offsetHeight == 0 | |
}; | |
function Destroy() { | |
for (var x in o) { | |
if (x.indexOf("Interval") > -1) { | |
clearInterval(o[x]) | |
} | |
if (x.indexOf("timeout") > -1) { | |
clearTimeout(o[x]) | |
} | |
} | |
log("Destroyed") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment