@vkontakte/videoplayer-core 2.0.131-dev.fc0eff4d.0 → 2.0.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es2015.cjs.js +93 -32
- package/es2015.esm.js +89 -28
- package/es2018.cjs.js +94 -33
- package/es2018.esm.js +90 -29
- package/es2024.cjs.js +95 -34
- package/es2024.esm.js +94 -33
- package/esnext.cjs.js +95 -34
- package/esnext.esm.js +94 -33
- package/evergreen.esm.js +89 -28
- package/package.json +2 -2
- package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
- package/types/providers/DashProviderNew/consts.d.ts +3 -0
- package/types/providers/DashProviderNew/index.d.ts +2 -0
- package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
- package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
- package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
- package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
- package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
- package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
- package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
- package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
- package/types/providers/utils/StallsManager.d.ts +18 -4
- package/types/utils/autoSelectTrack.d.ts +6 -3
- package/types/utils/qualityLimits.d.ts +3 -18
- package/types/utils/tuningConfig.d.ts +27 -7
package/es2015.cjs.js
CHANGED
|
@@ -1,73 +1,127 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vkontakte/videoplayer-core v2.0.131
|
|
3
|
-
* Thu,
|
|
2
|
+
* @vkontakte/videoplayer-core v2.0.131
|
|
3
|
+
* Thu, 24 Apr 2025 11:17:07 GMT
|
|
4
4
|
* https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
|
|
5
5
|
*/
|
|
6
|
-
"use strict";var OS=Object.create;var Sr=Object.defineProperty,BS=Object.defineProperties,_S=Object.getOwnPropertyDescriptor,NS=Object.getOwnPropertyDescriptors,FS=Object.getOwnPropertyNames,os=Object.getOwnPropertySymbols,qS=Object.getPrototypeOf,Mn=Object.prototype.hasOwnProperty,hc=Object.prototype.propertyIsEnumerable;var US=(a,e)=>(e=Symbol[a])?e:Symbol.for("Symbol."+a);var bt=Math.pow,pc=(a,e,t)=>e in a?Sr(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t,L=(a,e)=>{for(var t in e||(e={}))Mn.call(e,t)&&pc(a,t,e[t]);if(os)for(var t of os(e))hc.call(e,t)&&pc(a,t,e[t]);return a},U=(a,e)=>BS(a,NS(e));var mc=(a,e)=>{var t={};for(var i in a)Mn.call(a,i)&&e.indexOf(i)<0&&(t[i]=a[i]);if(a!=null&&os)for(var i of os(a))e.indexOf(i)<0&&hc.call(a,i)&&(t[i]=a[i]);return t};var b=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports),HS=(a,e)=>{for(var t in e)Sr(a,t,{get:e[t],enumerable:!0})},fc=(a,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of FS(e))!Mn.call(a,r)&&r!==t&&Sr(a,r,{get:()=>e[r],enumerable:!(i=_S(e,r))||i.enumerable});return a};var W=(a,e,t)=>(t=a!=null?OS(qS(a)):{},fc(e||!a||!a.__esModule?Sr(t,"default",{value:a,enumerable:!0}):t,a)),jS=a=>fc(Sr({},"__esModule",{value:!0}),a);var A=(a,e,t)=>new Promise((i,r)=>{var s=u=>{try{o(t.next(u))}catch(l){r(l)}},n=u=>{try{o(t.throw(u))}catch(l){r(l)}},o=u=>u.done?i(u.value):Promise.resolve(u.value).then(s,n);o((t=t.apply(a,e)).next())}),us=function(a,e){this[0]=a,this[1]=e},Te=(a,e,t)=>{var i=(n,o,u,l)=>{try{var c=t[n](o),d=(o=c.value)instanceof us,m=c.done;Promise.resolve(d?o[0]:o).then(h=>d?i(n==="return"?n:"next",o[1]?{done:h.done,value:h.value}:h,u,l):u({value:h,done:m})).catch(h=>i("throw",h,u,l))}catch(h){l(h)}},r=n=>s[n]=o=>new Promise((u,l)=>i(n,o,u,l)),s={};return t=t.apply(a,e),s[US("asyncIterator")]=()=>s,r("next"),r("throw"),r("return"),s};var ve=b((Dn,bc)=>{"use strict";var Ir=function(a){return a&&a.Math===Math&&a};bc.exports=Ir(typeof globalThis=="object"&&globalThis)||Ir(typeof window=="object"&&window)||Ir(typeof self=="object"&&self)||Ir(typeof global=="object"&&global)||Ir(typeof Dn=="object"&&Dn)||function(){return this}()||Function("return this")()});var ke=b((E$,gc)=>{"use strict";gc.exports=function(a){try{return!!a()}catch(e){return!0}}});var Er=b((x$,vc)=>{"use strict";var QS=ke();vc.exports=!QS(function(){var a=function(){}.bind();return typeof a!="function"||a.hasOwnProperty("prototype")})});var Vn=b((P$,Ic)=>{"use strict";var GS=Er(),Tc=Function.prototype,Sc=Tc.apply,yc=Tc.call;Ic.exports=typeof Reflect=="object"&&Reflect.apply||(GS?yc.bind(Sc):function(){return yc.apply(Sc,arguments)})});var xe=b((w$,Pc)=>{"use strict";var Ec=Er(),xc=Function.prototype,On=xc.call,WS=Ec&&xc.bind.bind(On,On);Pc.exports=Ec?WS:function(a){return function(){return On.apply(a,arguments)}}});var pi=b((A$,Ac)=>{"use strict";var wc=xe(),YS=wc({}.toString),zS=wc("".slice);Ac.exports=function(a){return zS(YS(a),8,-1)}});var Bn=b((k$,kc)=>{"use strict";var KS=pi(),XS=xe();kc.exports=function(a){if(KS(a)==="Function")return XS(a)}});var be=b((R$,Rc)=>{"use strict";var _n=typeof document=="object"&&document.all;Rc.exports=typeof _n=="undefined"&&_n!==void 0?function(a){return typeof a=="function"||a===_n}:function(a){return typeof a=="function"}});var Qe=b(($$,$c)=>{"use strict";var JS=ke();$c.exports=!JS(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Ge=b((L$,Lc)=>{"use strict";var ZS=Er(),ds=Function.prototype.call;Lc.exports=ZS?ds.bind(ds):function(){return ds.apply(ds,arguments)}});var Nn=b(Dc=>{"use strict";var Mc={}.propertyIsEnumerable,Cc=Object.getOwnPropertyDescriptor,ey=Cc&&!Mc.call({1:2},1);Dc.f=ey?function(e){var t=Cc(this,e);return!!t&&t.enumerable}:Mc});var xr=b((C$,Vc)=>{"use strict";Vc.exports=function(a,e){return{enumerable:!(a&1),configurable:!(a&2),writable:!(a&4),value:e}}});var Bc=b((D$,Oc)=>{"use strict";var ty=xe(),iy=ke(),ry=pi(),Fn=Object,ay=ty("".split);Oc.exports=iy(function(){return!Fn("z").propertyIsEnumerable(0)})?function(a){return ry(a)==="String"?ay(a,""):Fn(a)}:Fn});var Oi=b((V$,_c)=>{"use strict";_c.exports=function(a){return a==null}});var Gt=b((O$,Nc)=>{"use strict";var sy=Oi(),ny=TypeError;Nc.exports=function(a){if(sy(a))throw new ny("Can't call method on "+a);return a}});var hi=b((B$,Fc)=>{"use strict";var oy=Bc(),uy=Gt();Fc.exports=function(a){return oy(uy(a))}});var We=b((_$,qc)=>{"use strict";var ly=be();qc.exports=function(a){return typeof a=="object"?a!==null:ly(a)}});var Bi=b((N$,Uc)=>{"use strict";Uc.exports={}});var kt=b((F$,jc)=>{"use strict";var qn=Bi(),Un=ve(),cy=be(),Hc=function(a){return cy(a)?a:void 0};jc.exports=function(a,e){return arguments.length<2?Hc(qn[a])||Hc(Un[a]):qn[a]&&qn[a][e]||Un[a]&&Un[a][e]}});var Pr=b((q$,Qc)=>{"use strict";var dy=xe();Qc.exports=dy({}.isPrototypeOf)});var mi=b((U$,Yc)=>{"use strict";var py=ve(),Gc=py.navigator,Wc=Gc&&Gc.userAgent;Yc.exports=Wc?String(Wc):""});var jn=b((H$,ed)=>{"use strict";var Zc=ve(),Hn=mi(),zc=Zc.process,Kc=Zc.Deno,Xc=zc&&zc.versions||Kc&&Kc.version,Jc=Xc&&Xc.v8,nt,ps;Jc&&(nt=Jc.split("."),ps=nt[0]>0&&nt[0]<4?1:+(nt[0]+nt[1]));!ps&&Hn&&(nt=Hn.match(/Edge\/(\d+)/),(!nt||nt[1]>=74)&&(nt=Hn.match(/Chrome\/(\d+)/),nt&&(ps=+nt[1])));ed.exports=ps});var Qn=b((j$,id)=>{"use strict";var td=jn(),hy=ke(),my=ve(),fy=my.String;id.exports=!!Object.getOwnPropertySymbols&&!hy(function(){var a=Symbol("symbol detection");return!fy(a)||!(Object(a)instanceof Symbol)||!Symbol.sham&&td&&td<41})});var Gn=b((Q$,rd)=>{"use strict";var by=Qn();rd.exports=by&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Wn=b((G$,ad)=>{"use strict";var gy=kt(),vy=be(),Sy=Pr(),yy=Gn(),Ty=Object;ad.exports=yy?function(a){return typeof a=="symbol"}:function(a){var e=gy("Symbol");return vy(e)&&Sy(e.prototype,Ty(a))}});var wr=b((W$,sd)=>{"use strict";var Iy=String;sd.exports=function(a){try{return Iy(a)}catch(e){return"Object"}}});var vt=b((Y$,nd)=>{"use strict";var Ey=be(),xy=wr(),Py=TypeError;nd.exports=function(a){if(Ey(a))return a;throw new Py(xy(a)+" is not a function")}});var Ar=b((z$,od)=>{"use strict";var wy=vt(),Ay=Oi();od.exports=function(a,e){var t=a[e];return Ay(t)?void 0:wy(t)}});var ld=b((K$,ud)=>{"use strict";var Yn=Ge(),zn=be(),Kn=We(),ky=TypeError;ud.exports=function(a,e){var t,i;if(e==="string"&&zn(t=a.toString)&&!Kn(i=Yn(t,a))||zn(t=a.valueOf)&&!Kn(i=Yn(t,a))||e!=="string"&&zn(t=a.toString)&&!Kn(i=Yn(t,a)))return i;throw new ky("Can't convert object to primitive value")}});var ot=b((X$,cd)=>{"use strict";cd.exports=!0});var hd=b((J$,pd)=>{"use strict";var dd=ve(),Ry=Object.defineProperty;pd.exports=function(a,e){try{Ry(dd,a,{value:e,configurable:!0,writable:!0})}catch(t){dd[a]=e}return e}});var kr=b((Z$,bd)=>{"use strict";var $y=ot(),Ly=ve(),My=hd(),md="__core-js_shared__",fd=bd.exports=Ly[md]||My(md,{});(fd.versions||(fd.versions=[])).push({version:"3.38.0",mode:$y?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Xn=b((eL,vd)=>{"use strict";var gd=kr();vd.exports=function(a,e){return gd[a]||(gd[a]=e||{})}});var _i=b((tL,Sd)=>{"use strict";var Cy=Gt(),Dy=Object;Sd.exports=function(a){return Dy(Cy(a))}});var ut=b((iL,yd)=>{"use strict";var Vy=xe(),Oy=_i(),By=Vy({}.hasOwnProperty);yd.exports=Object.hasOwn||function(e,t){return By(Oy(e),t)}});var Jn=b((rL,Td)=>{"use strict";var _y=xe(),Ny=0,Fy=Math.random(),qy=_y(1 .toString);Td.exports=function(a){return"Symbol("+(a===void 0?"":a)+")_"+qy(++Ny+Fy,36)}});var Re=b((aL,Ed)=>{"use strict";var Uy=ve(),Hy=Xn(),Id=ut(),jy=Jn(),Qy=Qn(),Gy=Gn(),Ni=Uy.Symbol,Zn=Hy("wks"),Wy=Gy?Ni.for||Ni:Ni&&Ni.withoutSetter||jy;Ed.exports=function(a){return Id(Zn,a)||(Zn[a]=Qy&&Id(Ni,a)?Ni[a]:Wy("Symbol."+a)),Zn[a]}});var Ad=b((sL,wd)=>{"use strict";var Yy=Ge(),xd=We(),Pd=Wn(),zy=Ar(),Ky=ld(),Xy=Re(),Jy=TypeError,Zy=Xy("toPrimitive");wd.exports=function(a,e){if(!xd(a)||Pd(a))return a;var t=zy(a,Zy),i;if(t){if(e===void 0&&(e="default"),i=Yy(t,a,e),!xd(i)||Pd(i))return i;throw new Jy("Can't convert object to primitive value")}return e===void 0&&(e="number"),Ky(a,e)}});var eo=b((nL,kd)=>{"use strict";var eT=Ad(),tT=Wn();kd.exports=function(a){var e=eT(a,"string");return tT(e)?e:e+""}});var hs=b((oL,$d)=>{"use strict";var iT=ve(),Rd=We(),to=iT.document,rT=Rd(to)&&Rd(to.createElement);$d.exports=function(a){return rT?to.createElement(a):{}}});var io=b((uL,Ld)=>{"use strict";var aT=Qe(),sT=ke(),nT=hs();Ld.exports=!aT&&!sT(function(){return Object.defineProperty(nT("div"),"a",{get:function(){return 7}}).a!==7})});var Dd=b(Cd=>{"use strict";var oT=Qe(),uT=Ge(),lT=Nn(),cT=xr(),dT=hi(),pT=eo(),hT=ut(),mT=io(),Md=Object.getOwnPropertyDescriptor;Cd.f=oT?Md:function(e,t){if(e=dT(e),t=pT(t),mT)try{return Md(e,t)}catch(i){}if(hT(e,t))return cT(!uT(lT.f,e,t),e[t])}});var ro=b((cL,Vd)=>{"use strict";var fT=ke(),bT=be(),gT=/#|\.prototype\./,Rr=function(a,e){var t=ST[vT(a)];return t===TT?!0:t===yT?!1:bT(e)?fT(e):!!e},vT=Rr.normalize=function(a){return String(a).replace(gT,".").toLowerCase()},ST=Rr.data={},yT=Rr.NATIVE="N",TT=Rr.POLYFILL="P";Vd.exports=Rr});var Fi=b((dL,Bd)=>{"use strict";var Od=Bn(),IT=vt(),ET=Er(),xT=Od(Od.bind);Bd.exports=function(a,e){return IT(a),e===void 0?a:ET?xT(a,e):function(){return a.apply(e,arguments)}}});var ao=b((pL,_d)=>{"use strict";var PT=Qe(),wT=ke();_d.exports=PT&&wT(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var St=b((hL,Nd)=>{"use strict";var AT=We(),kT=String,RT=TypeError;Nd.exports=function(a){if(AT(a))return a;throw new RT(kT(a)+" is not an object")}});var fi=b(qd=>{"use strict";var $T=Qe(),LT=io(),MT=ao(),ms=St(),Fd=eo(),CT=TypeError,so=Object.defineProperty,DT=Object.getOwnPropertyDescriptor,no="enumerable",oo="configurable",uo="writable";qd.f=$T?MT?function(e,t,i){if(ms(e),t=Fd(t),ms(i),typeof e=="function"&&t==="prototype"&&"value"in i&&uo in i&&!i[uo]){var r=DT(e,t);r&&r[uo]&&(e[t]=i.value,i={configurable:oo in i?i[oo]:r[oo],enumerable:no in i?i[no]:r[no],writable:!1})}return so(e,t,i)}:so:function(e,t,i){if(ms(e),t=Fd(t),ms(i),LT)try{return so(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new CT("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var qi=b((fL,Ud)=>{"use strict";var VT=Qe(),OT=fi(),BT=xr();Ud.exports=VT?function(a,e,t){return OT.f(a,e,BT(1,t))}:function(a,e,t){return a[e]=t,a}});var Ie=b((bL,jd)=>{"use strict";var $r=ve(),_T=Vn(),NT=Bn(),FT=be(),qT=Dd().f,UT=ro(),Ui=Bi(),HT=Fi(),Hi=qi(),Hd=ut();kr();var jT=function(a){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new a;case 1:return new a(t);case 2:return new a(t,i)}return new a(t,i,r)}return _T(a,this,arguments)};return e.prototype=a.prototype,e};jd.exports=function(a,e){var t=a.target,i=a.global,r=a.stat,s=a.proto,n=i?$r:r?$r[t]:$r[t]&&$r[t].prototype,o=i?Ui:Ui[t]||Hi(Ui,t,{})[t],u=o.prototype,l,c,d,m,h,f,g,S,y;for(m in e)l=UT(i?m:t+(r?".":"#")+m,a.forced),c=!l&&n&&Hd(n,m),f=o[m],c&&(a.dontCallGetSet?(y=qT(n,m),g=y&&y.value):g=n[m]),h=c&&g?g:e[m],!(!l&&!s&&typeof f==typeof h)&&(a.bind&&c?S=HT(h,$r):a.wrap&&c?S=jT(h):s&&FT(h)?S=NT(h):S=h,(a.sham||h&&h.sham||f&&f.sham)&&Hi(S,"sham",!0),Hi(o,m,S),s&&(d=t+"Prototype",Hd(Ui,d)||Hi(Ui,d,{}),Hi(Ui[d],m,h),a.real&&u&&(l||!u[m])&&Hi(u,m,h)))}});var Gd=b((gL,Qd)=>{"use strict";var QT=Math.ceil,GT=Math.floor;Qd.exports=Math.trunc||function(e){var t=+e;return(t>0?GT:QT)(t)}});var Lr=b((vL,Wd)=>{"use strict";var WT=Gd();Wd.exports=function(a){var e=+a;return e!==e||e===0?0:WT(e)}});var zd=b((SL,Yd)=>{"use strict";var YT=Lr(),zT=Math.max,KT=Math.min;Yd.exports=function(a,e){var t=YT(a);return t<0?zT(t+e,0):KT(t,e)}});var lo=b((yL,Kd)=>{"use strict";var XT=Lr(),JT=Math.min;Kd.exports=function(a){var e=XT(a);return e>0?JT(e,9007199254740991):0}});var ji=b((TL,Xd)=>{"use strict";var ZT=lo();Xd.exports=function(a){return ZT(a.length)}});var co=b((IL,Zd)=>{"use strict";var eI=hi(),tI=zd(),iI=ji(),Jd=function(a){return function(e,t,i){var r=eI(e),s=iI(r);if(s===0)return!a&&-1;var n=tI(i,s),o;if(a&&t!==t){for(;s>n;)if(o=r[n++],o!==o)return!0}else for(;s>n;n++)if((a||n in r)&&r[n]===t)return a||n||0;return!a&&-1}};Zd.exports={includes:Jd(!0),indexOf:Jd(!1)}});var Mr=b((EL,ep)=>{"use strict";ep.exports=function(){}});var tp=b(()=>{"use strict";var rI=Ie(),aI=co().includes,sI=ke(),nI=Mr(),oI=sI(function(){return!Array(1).includes()});rI({target:"Array",proto:!0,forced:oI},{includes:function(e){return aI(this,e,arguments.length>1?arguments[1]:void 0)}});nI("includes")});var Wt=b((wL,ip)=>{"use strict";var uI=kt();ip.exports=uI});var ap=b((AL,rp)=>{"use strict";tp();var lI=Wt();rp.exports=lI("Array","includes")});var np=b((kL,sp)=>{"use strict";var cI=ap();sp.exports=cI});var Je=b((RL,op)=>{"use strict";var dI=np();op.exports=dI});var bs=b((FL,cp)=>{"use strict";var hI=Xn(),mI=Jn(),lp=hI("keys");cp.exports=function(a){return lp[a]||(lp[a]=mI(a))}});var pp=b((qL,dp)=>{"use strict";var fI=ke();dp.exports=!fI(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})});var gs=b((UL,mp)=>{"use strict";var bI=ut(),gI=be(),vI=_i(),SI=bs(),yI=pp(),hp=SI("IE_PROTO"),po=Object,TI=po.prototype;mp.exports=yI?po.getPrototypeOf:function(a){var e=vI(a);if(bI(e,hp))return e[hp];var t=e.constructor;return gI(t)&&e instanceof t?t.prototype:e instanceof po?TI:null}});var vs=b((HL,fp)=>{"use strict";fp.exports={}});var vp=b((jL,gp)=>{"use strict";var II=xe(),ho=ut(),EI=hi(),xI=co().indexOf,PI=vs(),bp=II([].push);gp.exports=function(a,e){var t=EI(a),i=0,r=[],s;for(s in t)!ho(PI,s)&&ho(t,s)&&bp(r,s);for(;e.length>i;)ho(t,s=e[i++])&&(~xI(r,s)||bp(r,s));return r}});var mo=b((QL,Sp)=>{"use strict";Sp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var fo=b((GL,yp)=>{"use strict";var wI=vp(),AI=mo();yp.exports=Object.keys||function(e){return wI(e,AI)}});var bo=b((WL,Pp)=>{"use strict";var Ip=Qe(),kI=ke(),Ep=xe(),RI=gs(),$I=fo(),LI=hi(),MI=Nn().f,xp=Ep(MI),CI=Ep([].push),DI=Ip&&kI(function(){var a=Object.create(null);return a[2]=2,!xp(a,2)}),Tp=function(a){return function(e){for(var t=LI(e),i=$I(t),r=DI&&RI(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!Ip||(r?u in t:xp(t,u)))&&CI(o,a?[u,t[u]]:t[u]);return o}};Pp.exports={entries:Tp(!0),values:Tp(!1)}});var wp=b(()=>{"use strict";var VI=Ie(),OI=bo().entries;VI({target:"Object",stat:!0},{entries:function(e){return OI(e)}})});var kp=b((KL,Ap)=>{"use strict";wp();var BI=Bi();Ap.exports=BI.Object.entries});var $p=b((XL,Rp)=>{"use strict";var _I=kp();Rp.exports=_I});var Qi=b((JL,Lp)=>{"use strict";var NI=$p();Lp.exports=NI});var bi=b((ZL,Mp)=>{"use strict";Mp.exports={}});var Vp=b((eM,Dp)=>{"use strict";var FI=ve(),qI=be(),Cp=FI.WeakMap;Dp.exports=qI(Cp)&&/native code/.test(String(Cp))});var yo=b((tM,_p)=>{"use strict";var UI=Vp(),Bp=ve(),HI=We(),jI=qi(),go=ut(),vo=kr(),QI=bs(),GI=vs(),Op="Object already initialized",So=Bp.TypeError,WI=Bp.WeakMap,Ss,Cr,ys,YI=function(a){return ys(a)?Cr(a):Ss(a,{})},zI=function(a){return function(e){var t;if(!HI(e)||(t=Cr(e)).type!==a)throw new So("Incompatible receiver, "+a+" required");return t}};UI||vo.state?(lt=vo.state||(vo.state=new WI),lt.get=lt.get,lt.has=lt.has,lt.set=lt.set,Ss=function(a,e){if(lt.has(a))throw new So(Op);return e.facade=a,lt.set(a,e),e},Cr=function(a){return lt.get(a)||{}},ys=function(a){return lt.has(a)}):(gi=QI("state"),GI[gi]=!0,Ss=function(a,e){if(go(a,gi))throw new So(Op);return e.facade=a,jI(a,gi,e),e},Cr=function(a){return go(a,gi)?a[gi]:{}},ys=function(a){return go(a,gi)});var lt,gi;_p.exports={set:Ss,get:Cr,has:ys,enforce:YI,getterFor:zI}});var Eo=b((iM,Fp)=>{"use strict";var To=Qe(),KI=ut(),Np=Function.prototype,XI=To&&Object.getOwnPropertyDescriptor,Io=KI(Np,"name"),JI=Io&&function(){}.name==="something",ZI=Io&&(!To||To&&XI(Np,"name").configurable);Fp.exports={EXISTS:Io,PROPER:JI,CONFIGURABLE:ZI}});var Up=b(qp=>{"use strict";var eE=Qe(),tE=ao(),iE=fi(),rE=St(),aE=hi(),sE=fo();qp.f=eE&&!tE?Object.defineProperties:function(e,t){rE(e);for(var i=aE(t),r=sE(t),s=r.length,n=0,o;s>n;)iE.f(e,o=r[n++],i[o]);return e}});var xo=b((aM,Hp)=>{"use strict";var nE=kt();Hp.exports=nE("document","documentElement")});var ko=b((sM,Kp)=>{"use strict";var oE=St(),uE=Up(),jp=mo(),lE=vs(),cE=xo(),dE=hs(),pE=bs(),Qp=">",Gp="<",wo="prototype",Ao="script",Yp=pE("IE_PROTO"),Po=function(){},zp=function(a){return Gp+Ao+Qp+a+Gp+"/"+Ao+Qp},Wp=function(a){a.write(zp("")),a.close();var e=a.parentWindow.Object;return a=null,e},hE=function(){var a=dE("iframe"),e="java"+Ao+":",t;return a.style.display="none",cE.appendChild(a),a.src=String(e),t=a.contentWindow.document,t.open(),t.write(zp("document.F=Object")),t.close(),t.F},Ts,Is=function(){try{Ts=new ActiveXObject("htmlfile")}catch(e){}Is=typeof document!="undefined"?document.domain&&Ts?Wp(Ts):hE():Wp(Ts);for(var a=jp.length;a--;)delete Is[wo][jp[a]];return Is()};lE[Yp]=!0;Kp.exports=Object.create||function(e,t){var i;return e!==null?(Po[wo]=oE(e),i=new Po,Po[wo]=null,i[Yp]=e):i=Is(),t===void 0?i:uE.f(i,t)}});var Gi=b((nM,Xp)=>{"use strict";var mE=qi();Xp.exports=function(a,e,t,i){return i&&i.enumerable?a[e]=t:mE(a,e,t),a}});var Mo=b((oM,eh)=>{"use strict";var fE=ke(),bE=be(),gE=We(),vE=ko(),Jp=gs(),SE=Gi(),yE=Re(),TE=ot(),Lo=yE("iterator"),Zp=!1,Rt,Ro,$o;[].keys&&($o=[].keys(),"next"in $o?(Ro=Jp(Jp($o)),Ro!==Object.prototype&&(Rt=Ro)):Zp=!0);var IE=!gE(Rt)||fE(function(){var a={};return Rt[Lo].call(a)!==a});IE?Rt={}:TE&&(Rt=vE(Rt));bE(Rt[Lo])||SE(Rt,Lo,function(){return this});eh.exports={IteratorPrototype:Rt,BUGGY_SAFARI_ITERATORS:Zp}});var Es=b((uM,ih)=>{"use strict";var EE=Re(),xE=EE("toStringTag"),th={};th[xE]="z";ih.exports=String(th)==="[object z]"});var Dr=b((lM,rh)=>{"use strict";var PE=Es(),wE=be(),xs=pi(),AE=Re(),kE=AE("toStringTag"),RE=Object,$E=xs(function(){return arguments}())==="Arguments",LE=function(a,e){try{return a[e]}catch(t){}};rh.exports=PE?xs:function(a){var e,t,i;return a===void 0?"Undefined":a===null?"Null":typeof(t=LE(e=RE(a),kE))=="string"?t:$E?xs(e):(i=xs(e))==="Object"&&wE(e.callee)?"Arguments":i}});var sh=b((cM,ah)=>{"use strict";var ME=Es(),CE=Dr();ah.exports=ME?{}.toString:function(){return"[object "+CE(this)+"]"}});var Vr=b((dM,oh)=>{"use strict";var DE=Es(),VE=fi().f,OE=qi(),BE=ut(),_E=sh(),NE=Re(),nh=NE("toStringTag");oh.exports=function(a,e,t,i){var r=t?a:a&&a.prototype;r&&(BE(r,nh)||VE(r,nh,{configurable:!0,value:e}),i&&!DE&&OE(r,"toString",_E))}});var lh=b((pM,uh)=>{"use strict";var FE=Mo().IteratorPrototype,qE=ko(),UE=xr(),HE=Vr(),jE=bi(),QE=function(){return this};uh.exports=function(a,e,t,i){var r=e+" Iterator";return a.prototype=qE(FE,{next:UE(+!i,t)}),HE(a,r,!1,!0),jE[r]=QE,a}});var dh=b((hM,ch)=>{"use strict";var GE=xe(),WE=vt();ch.exports=function(a,e,t){try{return GE(WE(Object.getOwnPropertyDescriptor(a,e)[t]))}catch(i){}}});var hh=b((mM,ph)=>{"use strict";var YE=We();ph.exports=function(a){return YE(a)||a===null}});var fh=b((fM,mh)=>{"use strict";var zE=hh(),KE=String,XE=TypeError;mh.exports=function(a){if(zE(a))return a;throw new XE("Can't set "+KE(a)+" as a prototype")}});var Co=b((bM,bh)=>{"use strict";var JE=dh(),ZE=We(),ex=Gt(),tx=fh();bh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a=!1,e={},t;try{t=JE(Object.prototype,"__proto__","set"),t(e,[]),a=e instanceof Array}catch(i){}return function(r,s){return ex(r),tx(s),ZE(r)&&(a?t(r,s):r.__proto__=s),r}}():void 0)});var Ah=b((gM,wh)=>{"use strict";var ix=Ie(),rx=Ge(),Ps=ot(),xh=Eo(),ax=be(),sx=lh(),gh=gs(),vh=Co(),nx=Vr(),ox=qi(),Do=Gi(),ux=Re(),Sh=bi(),Ph=Mo(),lx=xh.PROPER,cx=xh.CONFIGURABLE,yh=Ph.IteratorPrototype,ws=Ph.BUGGY_SAFARI_ITERATORS,Or=ux("iterator"),Th="keys",Br="values",Ih="entries",Eh=function(){return this};wh.exports=function(a,e,t,i,r,s,n){sx(t,e,i);var o=function(y){if(y===r&&m)return m;if(!ws&&y&&y in c)return c[y];switch(y){case Th:return function(){return new t(this,y)};case Br:return function(){return new t(this,y)};case Ih:return function(){return new t(this,y)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=a.prototype,d=c[Or]||c["@@iterator"]||r&&c[r],m=!ws&&d||o(r),h=e==="Array"&&c.entries||d,f,g,S;if(h&&(f=gh(h.call(new a)),f!==Object.prototype&&f.next&&(!Ps&&gh(f)!==yh&&(vh?vh(f,yh):ax(f[Or])||Do(f,Or,Eh)),nx(f,u,!0,!0),Ps&&(Sh[u]=Eh))),lx&&r===Br&&d&&d.name!==Br&&(!Ps&&cx?ox(c,"name",Br):(l=!0,m=function(){return rx(d,this)})),r)if(g={values:o(Br),keys:s?m:o(Th),entries:o(Ih)},n)for(S in g)(ws||l||!(S in c))&&Do(c,S,g[S]);else ix({target:e,proto:!0,forced:ws||l},g);return(!Ps||n)&&c[Or]!==m&&Do(c,Or,m,{name:r}),Sh[e]=m,g}});var Rh=b((vM,kh)=>{"use strict";kh.exports=function(a,e){return{value:a,done:e}}});var Oo=b((SM,Dh)=>{"use strict";var dx=hi(),Vo=Mr(),$h=bi(),Mh=yo(),px=fi().f,hx=Ah(),As=Rh(),mx=ot(),fx=Qe(),Ch="Array Iterator",bx=Mh.set,gx=Mh.getterFor(Ch);Dh.exports=hx(Array,"Array",function(a,e){bx(this,{type:Ch,target:dx(a),index:0,kind:e})},function(){var a=gx(this),e=a.target,t=a.index++;if(!e||t>=e.length)return a.target=void 0,As(void 0,!0);switch(a.kind){case"keys":return As(t,!1);case"values":return As(e[t],!1)}return As([t,e[t]],!1)},"values");var Lh=$h.Arguments=$h.Array;Vo("keys");Vo("values");Vo("entries");if(!mx&&fx&&Lh.name!=="values")try{px(Lh,"name",{value:"values"})}catch(a){}});var Oh=b((yM,Vh)=>{"use strict";var vx=Re(),Sx=bi(),yx=vx("iterator"),Tx=Array.prototype;Vh.exports=function(a){return a!==void 0&&(Sx.Array===a||Tx[yx]===a)}});var Bo=b((TM,_h)=>{"use strict";var Ix=Dr(),Bh=Ar(),Ex=Oi(),xx=bi(),Px=Re(),wx=Px("iterator");_h.exports=function(a){if(!Ex(a))return Bh(a,wx)||Bh(a,"@@iterator")||xx[Ix(a)]}});var Fh=b((IM,Nh)=>{"use strict";var Ax=Ge(),kx=vt(),Rx=St(),$x=wr(),Lx=Bo(),Mx=TypeError;Nh.exports=function(a,e){var t=arguments.length<2?Lx(a):e;if(kx(t))return Rx(Ax(t,a));throw new Mx($x(a)+" is not iterable")}});var Hh=b((EM,Uh)=>{"use strict";var Cx=Ge(),qh=St(),Dx=Ar();Uh.exports=function(a,e,t){var i,r;qh(a);try{if(i=Dx(a,"return"),!i){if(e==="throw")throw t;return t}i=Cx(i,a)}catch(s){r=!0,i=s}if(e==="throw")throw t;if(r)throw i;return qh(i),t}});var Rs=b((xM,Wh)=>{"use strict";var Vx=Fi(),Ox=Ge(),Bx=St(),_x=wr(),Nx=Oh(),Fx=ji(),jh=Pr(),qx=Fh(),Ux=Bo(),Qh=Hh(),Hx=TypeError,ks=function(a,e){this.stopped=a,this.result=e},Gh=ks.prototype;Wh.exports=function(a,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=Vx(e,i),l,c,d,m,h,f,g,S=function(I){return l&&Qh(l,"normal",I),new ks(!0,I)},y=function(I){return r?(Bx(I),o?u(I[0],I[1],S):u(I[0],I[1])):o?u(I,S):u(I)};if(s)l=a.iterator;else if(n)l=a;else{if(c=Ux(a),!c)throw new Hx(_x(a)+" is not iterable");if(Nx(c)){for(d=0,m=Fx(a);m>d;d++)if(h=y(a[d]),h&&jh(Gh,h))return h;return new ks(!1)}l=qx(a,c)}for(f=s?a.next:l.next;!(g=Ox(f,l)).done;){try{h=y(g.value)}catch(I){Qh(l,"throw",I)}if(typeof h=="object"&&h&&jh(Gh,h))return h}return new ks(!1)}});var zh=b((PM,Yh)=>{"use strict";var jx=Qe(),Qx=fi(),Gx=xr();Yh.exports=function(a,e,t){jx?Qx.f(a,e,Gx(0,t)):a[e]=t}});var Kh=b(()=>{"use strict";var Wx=Ie(),Yx=Rs(),zx=zh();Wx({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Yx(e,function(i,r){zx(t,i,r)},{AS_ENTRIES:!0}),t}})});var Jh=b((kM,Xh)=>{"use strict";Oo();Kh();var Kx=Bi();Xh.exports=Kx.Object.fromEntries});var em=b((RM,Zh)=>{"use strict";Zh.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var im=b(()=>{"use strict";Oo();var Xx=em(),Jx=ve(),Zx=Vr(),tm=bi();for($s in Xx)Zx(Jx[$s],$s),tm[$s]=tm.Array;var $s});var am=b((MM,rm)=>{"use strict";var eP=Jh();im();rm.exports=eP});var _o=b((CM,sm)=>{"use strict";var tP=am();sm.exports=tP});var nm=b(()=>{"use strict"});var No=b((OM,om)=>{"use strict";var _r=ve(),iP=mi(),rP=pi(),Ls=function(a){return iP.slice(0,a.length)===a};om.exports=function(){return Ls("Bun/")?"BUN":Ls("Cloudflare-Workers")?"CLOUDFLARE":Ls("Deno/")?"DENO":Ls("Node.js/")?"NODE":_r.Bun&&typeof Bun.version=="string"?"BUN":_r.Deno&&typeof Deno.version=="object"?"DENO":rP(_r.process)==="process"?"NODE":_r.window&&_r.document?"BROWSER":"REST"}()});var Ms=b((BM,um)=>{"use strict";var aP=No();um.exports=aP==="NODE"});var cm=b((_M,lm)=>{"use strict";var sP=fi();lm.exports=function(a,e,t){return sP.f(a,e,t)}});var hm=b((NM,pm)=>{"use strict";var nP=kt(),oP=cm(),uP=Re(),lP=Qe(),dm=uP("species");pm.exports=function(a){var e=nP(a);lP&&e&&!e[dm]&&oP(e,dm,{configurable:!0,get:function(){return this}})}});var fm=b((FM,mm)=>{"use strict";var cP=Pr(),dP=TypeError;mm.exports=function(a,e){if(cP(e,a))return a;throw new dP("Incorrect invocation")}});var qo=b((qM,bm)=>{"use strict";var pP=xe(),hP=be(),Fo=kr(),mP=pP(Function.toString);hP(Fo.inspectSource)||(Fo.inspectSource=function(a){return mP(a)});bm.exports=Fo.inspectSource});var Ho=b((UM,Tm)=>{"use strict";var fP=xe(),bP=ke(),gm=be(),gP=Dr(),vP=kt(),SP=qo(),vm=function(){},Sm=vP("Reflect","construct"),Uo=/^\s*(?:class|function)\b/,yP=fP(Uo.exec),TP=!Uo.test(vm),Nr=function(e){if(!gm(e))return!1;try{return Sm(vm,[],e),!0}catch(t){return!1}},ym=function(e){if(!gm(e))return!1;switch(gP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return TP||!!yP(Uo,SP(e))}catch(t){return!0}};ym.sham=!0;Tm.exports=!Sm||bP(function(){var a;return Nr(Nr.call)||!Nr(Object)||!Nr(function(){a=!0})||a})?ym:Nr});var Em=b((HM,Im)=>{"use strict";var IP=Ho(),EP=wr(),xP=TypeError;Im.exports=function(a){if(IP(a))return a;throw new xP(EP(a)+" is not a constructor")}});var jo=b((jM,Pm)=>{"use strict";var xm=St(),PP=Em(),wP=Oi(),AP=Re(),kP=AP("species");Pm.exports=function(a,e){var t=xm(a).constructor,i;return t===void 0||wP(i=xm(t)[kP])?e:PP(i)}});var Am=b((QM,wm)=>{"use strict";var RP=xe();wm.exports=RP([].slice)});var Rm=b((GM,km)=>{"use strict";var $P=TypeError;km.exports=function(a,e){if(a<e)throw new $P("Not enough arguments");return a}});var Qo=b((WM,$m)=>{"use strict";var LP=mi();$m.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(LP)});var eu=b((YM,Nm)=>{"use strict";var Ye=ve(),MP=Vn(),CP=Fi(),Lm=be(),DP=ut(),_m=ke(),Mm=xo(),VP=Am(),Cm=hs(),OP=Rm(),BP=Qo(),_P=Ms(),Xo=Ye.setImmediate,Jo=Ye.clearImmediate,NP=Ye.process,Go=Ye.Dispatch,FP=Ye.Function,Dm=Ye.MessageChannel,qP=Ye.String,Wo=0,Fr={},Vm="onreadystatechange",qr,vi,Yo,zo;_m(function(){qr=Ye.location});var Zo=function(a){if(DP(Fr,a)){var e=Fr[a];delete Fr[a],e()}},Ko=function(a){return function(){Zo(a)}},Om=function(a){Zo(a.data)},Bm=function(a){Ye.postMessage(qP(a),qr.protocol+"//"+qr.host)};(!Xo||!Jo)&&(Xo=function(e){OP(arguments.length,1);var t=Lm(e)?e:FP(e),i=VP(arguments,1);return Fr[++Wo]=function(){MP(t,void 0,i)},vi(Wo),Wo},Jo=function(e){delete Fr[e]},_P?vi=function(a){NP.nextTick(Ko(a))}:Go&&Go.now?vi=function(a){Go.now(Ko(a))}:Dm&&!BP?(Yo=new Dm,zo=Yo.port2,Yo.port1.onmessage=Om,vi=CP(zo.postMessage,zo)):Ye.addEventListener&&Lm(Ye.postMessage)&&!Ye.importScripts&&qr&&qr.protocol!=="file:"&&!_m(Bm)?(vi=Bm,Ye.addEventListener("message",Om,!1)):Vm in Cm("script")?vi=function(a){Mm.appendChild(Cm("script"))[Vm]=function(){Mm.removeChild(this),Zo(a)}}:vi=function(a){setTimeout(Ko(a),0)});Nm.exports={set:Xo,clear:Jo}});var Um=b((zM,qm)=>{"use strict";var Fm=ve(),UP=Qe(),HP=Object.getOwnPropertyDescriptor;qm.exports=function(a){if(!UP)return Fm[a];var e=HP(Fm,a);return e&&e.value}});var tu=b((KM,jm)=>{"use strict";var Hm=function(){this.head=null,this.tail=null};Hm.prototype={add:function(a){var e={item:a,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var a=this.head;if(a){var e=this.head=a.next;return e===null&&(this.tail=null),a.item}}};jm.exports=Hm});var Gm=b((XM,Qm)=>{"use strict";var jP=mi();Qm.exports=/ipad|iphone|ipod/i.test(jP)&&typeof Pebble!="undefined"});var Ym=b((JM,Wm)=>{"use strict";var QP=mi();Wm.exports=/web0s(?!.*chrome)/i.test(QP)});var tf=b((ZM,ef)=>{"use strict";var Yi=ve(),GP=Um(),zm=Fi(),iu=eu().set,WP=tu(),YP=Qo(),zP=Gm(),KP=Ym(),ru=Ms(),Km=Yi.MutationObserver||Yi.WebKitMutationObserver,Xm=Yi.document,Jm=Yi.process,Cs=Yi.Promise,nu=GP("queueMicrotask"),Wi,au,su,Ds,Zm;nu||(Ur=new WP,Hr=function(){var a,e;for(ru&&(a=Jm.domain)&&a.exit();e=Ur.get();)try{e()}catch(t){throw Ur.head&&Wi(),t}a&&a.enter()},!YP&&!ru&&!KP&&Km&&Xm?(au=!0,su=Xm.createTextNode(""),new Km(Hr).observe(su,{characterData:!0}),Wi=function(){su.data=au=!au}):!zP&&Cs&&Cs.resolve?(Ds=Cs.resolve(void 0),Ds.constructor=Cs,Zm=zm(Ds.then,Ds),Wi=function(){Zm(Hr)}):ru?Wi=function(){Jm.nextTick(Hr)}:(iu=zm(iu,Yi),Wi=function(){iu(Hr)}),nu=function(a){Ur.head||Wi(),Ur.add(a)});var Ur,Hr;ef.exports=nu});var af=b((eC,rf)=>{"use strict";rf.exports=function(a,e){try{arguments.length===1?console.error(a):console.error(a,e)}catch(t){}}});var Vs=b((tC,sf)=>{"use strict";sf.exports=function(a){try{return{error:!1,value:a()}}catch(e){return{error:!0,value:e}}}});var Si=b((iC,nf)=>{"use strict";var XP=ve();nf.exports=XP.Promise});var zi=b((rC,cf)=>{"use strict";var JP=ve(),jr=Si(),ZP=be(),ew=ro(),tw=qo(),iw=Re(),of=No(),rw=ot(),ou=jn(),uf=jr&&jr.prototype,aw=iw("species"),uu=!1,lf=ZP(JP.PromiseRejectionEvent),sw=ew("Promise",function(){var a=tw(jr),e=a!==String(jr);if(!e&&ou===66||rw&&!(uf.catch&&uf.finally))return!0;if(!ou||ou<51||!/native code/.test(a)){var t=new jr(function(s){s(1)}),i=function(s){s(function(){},function(){})},r=t.constructor={};if(r[aw]=i,uu=t.then(function(){})instanceof i,!uu)return!0}return!e&&(of==="BROWSER"||of==="DENO")&&!lf});cf.exports={CONSTRUCTOR:sw,REJECTION_EVENT:lf,SUBCLASSING:uu}});var Ki=b((aC,pf)=>{"use strict";var df=vt(),nw=TypeError,ow=function(a){var e,t;this.promise=new a(function(i,r){if(e!==void 0||t!==void 0)throw new nw("Bad Promise constructor");e=i,t=r}),this.resolve=df(e),this.reject=df(t)};pf.exports.f=function(a){return new ow(a)}});var Lf=b(()=>{"use strict";var uw=Ie(),lw=ot(),Ns=Ms(),Yt=ve(),er=Ge(),hf=Gi(),mf=Co(),cw=Vr(),dw=hm(),pw=vt(),_s=be(),hw=We(),mw=fm(),fw=jo(),Sf=eu().set,hu=tf(),bw=af(),gw=Vs(),vw=tu(),yf=yo(),Fs=Si(),mu=zi(),Tf=Ki(),qs="Promise",If=mu.CONSTRUCTOR,Sw=mu.REJECTION_EVENT,yw=mu.SUBCLASSING,lu=yf.getterFor(qs),Tw=yf.set,Xi=Fs&&Fs.prototype,yi=Fs,Os=Xi,Ef=Yt.TypeError,cu=Yt.document,fu=Yt.process,du=Tf.f,Iw=du,Ew=!!(cu&&cu.createEvent&&Yt.dispatchEvent),xf="unhandledrejection",xw="rejectionhandled",ff=0,Pf=1,Pw=2,bu=1,wf=2,Bs,bf,ww,gf,Af=function(a){var e;return hw(a)&&_s(e=a.then)?e:!1},kf=function(a,e){var t=e.value,i=e.state===Pf,r=i?a.ok:a.fail,s=a.resolve,n=a.reject,o=a.domain,u,l,c;try{r?(i||(e.rejection===wf&&kw(e),e.rejection=bu),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===a.promise?n(new Ef("Promise-chain cycle")):(l=Af(u))?er(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},Rf=function(a,e){a.notified||(a.notified=!0,hu(function(){for(var t=a.reactions,i;i=t.get();)kf(i,a);a.notified=!1,e&&!a.rejection&&Aw(a)}))},$f=function(a,e,t){var i,r;Ew?(i=cu.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(a,!1,!0),Yt.dispatchEvent(i)):i={promise:e,reason:t},!Sw&&(r=Yt["on"+a])?r(i):a===xf&&bw("Unhandled promise rejection",t)},Aw=function(a){er(Sf,Yt,function(){var e=a.facade,t=a.value,i=vf(a),r;if(i&&(r=gw(function(){Ns?fu.emit("unhandledRejection",t,e):$f(xf,e,t)}),a.rejection=Ns||vf(a)?wf:bu,r.error))throw r.value})},vf=function(a){return a.rejection!==bu&&!a.parent},kw=function(a){er(Sf,Yt,function(){var e=a.facade;Ns?fu.emit("rejectionHandled",e):$f(xw,e,a.value)})},Ji=function(a,e,t){return function(i){a(e,i,t)}},Zi=function(a,e,t){a.done||(a.done=!0,t&&(a=t),a.value=e,a.state=Pw,Rf(a,!0))},pu=function(a,e,t){if(!a.done){a.done=!0,t&&(a=t);try{if(a.facade===e)throw new Ef("Promise can't be resolved itself");var i=Af(e);i?hu(function(){var r={done:!1};try{er(i,e,Ji(pu,r,a),Ji(Zi,r,a))}catch(s){Zi(r,s,a)}}):(a.value=e,a.state=Pf,Rf(a,!1))}catch(r){Zi({done:!1},r,a)}}};if(If&&(yi=function(e){mw(this,Os),pw(e),er(Bs,this);var t=lu(this);try{e(Ji(pu,t),Ji(Zi,t))}catch(i){Zi(t,i)}},Os=yi.prototype,Bs=function(e){Tw(this,{type:qs,done:!1,notified:!1,parent:!1,reactions:new vw,rejection:!1,state:ff,value:void 0})},Bs.prototype=hf(Os,"then",function(e,t){var i=lu(this),r=du(fw(this,yi));return i.parent=!0,r.ok=_s(e)?e:!0,r.fail=_s(t)&&t,r.domain=Ns?fu.domain:void 0,i.state===ff?i.reactions.add(r):hu(function(){kf(r,i)}),r.promise}),bf=function(){var a=new Bs,e=lu(a);this.promise=a,this.resolve=Ji(pu,e),this.reject=Ji(Zi,e)},Tf.f=du=function(a){return a===yi||a===ww?new bf(a):Iw(a)},!lw&&_s(Fs)&&Xi!==Object.prototype)){gf=Xi.then,yw||hf(Xi,"then",function(e,t){var i=this;return new yi(function(r,s){er(gf,i,r,s)}).then(e,t)},{unsafe:!0});try{delete Xi.constructor}catch(a){}mf&&mf(Xi,Os)}uw({global:!0,constructor:!0,wrap:!0,forced:If},{Promise:yi});cw(yi,qs,!1,!0);dw(qs)});var Of=b((oC,Vf)=>{"use strict";var Rw=Re(),Cf=Rw("iterator"),Df=!1;try{Mf=0,gu={next:function(){return{done:!!Mf++}},return:function(){Df=!0}},gu[Cf]=function(){return this},Array.from(gu,function(){throw 2})}catch(a){}var Mf,gu;Vf.exports=function(a,e){try{if(!e&&!Df)return!1}catch(r){return!1}var t=!1;try{var i={};i[Cf]=function(){return{next:function(){return{done:t=!0}}}},a(i)}catch(r){}return t}});var vu=b((uC,Bf)=>{"use strict";var $w=Si(),Lw=Of(),Mw=zi().CONSTRUCTOR;Bf.exports=Mw||!Lw(function(a){$w.all(a).then(void 0,function(){})})});var _f=b(()=>{"use strict";var Cw=Ie(),Dw=Ge(),Vw=vt(),Ow=Ki(),Bw=Vs(),_w=Rs(),Nw=vu();Cw({target:"Promise",stat:!0,forced:Nw},{all:function(e){var t=this,i=Ow.f(t),r=i.resolve,s=i.reject,n=Bw(function(){var o=Vw(t.resolve),u=[],l=0,c=1;_w(e,function(d){var m=l++,h=!1;c++,Dw(o,t,d).then(function(f){h||(h=!0,u[m]=f,--c||r(u))},s)}),--c||r(u)});return n.error&&s(n.value),i.promise}})});var Ff=b(()=>{"use strict";var Fw=Ie(),qw=ot(),Uw=zi().CONSTRUCTOR,yu=Si(),Hw=kt(),jw=be(),Qw=Gi(),Nf=yu&&yu.prototype;Fw({target:"Promise",proto:!0,forced:Uw,real:!0},{catch:function(a){return this.then(void 0,a)}});!qw&&jw(yu)&&(Su=Hw("Promise").prototype.catch,Nf.catch!==Su&&Qw(Nf,"catch",Su,{unsafe:!0}));var Su});var qf=b(()=>{"use strict";var Gw=Ie(),Ww=Ge(),Yw=vt(),zw=Ki(),Kw=Vs(),Xw=Rs(),Jw=vu();Gw({target:"Promise",stat:!0,forced:Jw},{race:function(e){var t=this,i=zw.f(t),r=i.reject,s=Kw(function(){var n=Yw(t.resolve);Xw(e,function(o){Ww(n,t,o).then(i.resolve,r)})});return s.error&&r(s.value),i.promise}})});var Uf=b(()=>{"use strict";var Zw=Ie(),eA=Ki(),tA=zi().CONSTRUCTOR;Zw({target:"Promise",stat:!0,forced:tA},{reject:function(e){var t=eA.f(this),i=t.reject;return i(e),t.promise}})});var Tu=b((gC,Hf)=>{"use strict";var iA=St(),rA=We(),aA=Ki();Hf.exports=function(a,e){if(iA(a),rA(e)&&e.constructor===a)return e;var t=aA.f(a),i=t.resolve;return i(e),t.promise}});var Gf=b(()=>{"use strict";var sA=Ie(),nA=kt(),jf=ot(),oA=Si(),Qf=zi().CONSTRUCTOR,uA=Tu(),lA=nA("Promise"),cA=jf&&!Qf;sA({target:"Promise",stat:!0,forced:jf||Qf},{resolve:function(e){return uA(cA&&this===lA?oA:this,e)}})});var Wf=b(()=>{"use strict";Lf();_f();Ff();qf();Uf();Gf()});var Xf=b(()=>{"use strict";var dA=Ie(),pA=ot(),Us=Si(),hA=ke(),zf=kt(),Kf=be(),mA=jo(),Yf=Tu(),fA=Gi(),Eu=Us&&Us.prototype,bA=!!Us&&hA(function(){Eu.finally.call({then:function(){}},function(){})});dA({target:"Promise",proto:!0,real:!0,forced:bA},{finally:function(a){var e=mA(this,zf("Promise")),t=Kf(a);return this.then(t?function(i){return Yf(e,a()).then(function(){return i})}:a,t?function(i){return Yf(e,a()).then(function(){throw i})}:a)}});!pA&&Kf(Us)&&(Iu=zf("Promise").prototype.finally,Eu.finally!==Iu&&fA(Eu,"finally",Iu,{unsafe:!0}));var Iu});var Zf=b((xC,Jf)=>{"use strict";nm();Wf();Xf();var gA=Wt();Jf.exports=gA("Promise","finally")});var tb=b((PC,eb)=>{"use strict";var vA=Zf();eb.exports=vA});var Hs=b((wC,ib)=>{"use strict";var SA=tb();ib.exports=SA});var lb=b(()=>{"use strict";var xA=Ie(),PA=bo().values;xA({target:"Object",stat:!0},{values:function(e){return PA(e)}})});var db=b((rD,cb)=>{"use strict";lb();var wA=Bi();cb.exports=wA.Object.values});var hb=b((aD,pb)=>{"use strict";var AA=db();pb.exports=AA});var tr=b((sD,mb)=>{"use strict";var kA=hb();mb.exports=kA});var wb=b(()=>{"use strict";var _A=Ie(),NA=_i(),FA=ji(),qA=Lr(),UA=Mr();_A({target:"Array",proto:!0},{at:function(e){var t=NA(this),i=FA(t),r=qA(e),s=r>=0?r:i+r;return s<0||s>=i?void 0:t[s]}});UA("at")});var kb=b((p0,Ab)=>{"use strict";wb();var HA=Wt();Ab.exports=HA("Array","at")});var $b=b((h0,Rb)=>{"use strict";var jA=kb();Rb.exports=jA});var Jt=b((m0,Lb)=>{"use strict";var QA=$b();Lb.exports=QA});var Hu=b((QV,Zb)=>{"use strict";var rk=pi();Zb.exports=Array.isArray||function(e){return rk(e)==="Array"}});var tg=b((GV,eg)=>{"use strict";var ak=TypeError,sk=9007199254740991;eg.exports=function(a){if(a>sk)throw ak("Maximum allowed index exceeded");return a}});var ag=b((WV,rg)=>{"use strict";var nk=Hu(),ok=ji(),uk=tg(),lk=Fi(),ig=function(a,e,t,i,r,s,n,o){for(var u=r,l=0,c=n?lk(n,o):!1,d,m;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&nk(d)?(m=ok(d),u=ig(a,e,d,m,u,s-1)-1):(uk(u+1),a[u]=d),u++),l++;return u};rg.exports=ig});var ug=b((YV,og)=>{"use strict";var sg=Hu(),ck=Ho(),dk=We(),pk=Re(),hk=pk("species"),ng=Array;og.exports=function(a){var e;return sg(a)&&(e=a.constructor,ck(e)&&(e===ng||sg(e.prototype))?e=void 0:dk(e)&&(e=e[hk],e===null&&(e=void 0))),e===void 0?ng:e}});var cg=b((zV,lg)=>{"use strict";var mk=ug();lg.exports=function(a,e){return new(mk(a))(e===0?0:e)}});var dg=b(()=>{"use strict";var fk=Ie(),bk=ag(),gk=vt(),vk=_i(),Sk=ji(),yk=cg();fk({target:"Array",proto:!0},{flatMap:function(e){var t=vk(this),i=Sk(t),r;return gk(e),r=yk(t,0),r.length=bk(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var pg=b(()=>{"use strict";var Tk=Mr();Tk("flatMap")});var mg=b((eO,hg)=>{"use strict";dg();pg();var Ik=Wt();hg.exports=Ik("Array","flatMap")});var bg=b((tO,fg)=>{"use strict";var Ek=mg();fg.exports=Ek});var ju=b((iO,gg)=>{"use strict";var xk=bg();gg.exports=xk});var ia=b((rO,vg)=>{"use strict";var Pk=Dr(),wk=String;vg.exports=function(a){if(Pk(a)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return wk(a)}});var Qu=b((aO,Sg)=>{"use strict";Sg.exports=`
|
|
7
|
-
\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var Ig=b((sO,Tg)=>{"use strict";var Ak=xe(),kk=Gt(),Rk=ia(),Wu=Qu(),yg=Ak("".replace),$k=RegExp("^["+Wu+"]+"),Lk=RegExp("(^|[^"+Wu+"])["+Wu+"]+$"),Gu=function(a){return function(e){var t=Rk(kk(e));return a&1&&(t=yg(t,$k,"")),a&2&&(t=yg(t,Lk,"$1")),t}};Tg.exports={start:Gu(1),end:Gu(2),trim:Gu(3)}});var wg=b((nO,Pg)=>{"use strict";var Mk=Eo().PROPER,Ck=ke(),Eg=Qu(),xg="\u200B\x85\u180E";Pg.exports=function(a){return Ck(function(){return!!Eg[a]()||xg[a]()!==xg||Mk&&Eg[a].name!==a})}});var Yu=b((oO,Ag)=>{"use strict";var Dk=Ig().start,Vk=wg();Ag.exports=Vk("trimStart")?function(){return Dk(this)}:"".trimStart});var Rg=b(()=>{"use strict";var Ok=Ie(),kg=Yu();Ok({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==kg},{trimLeft:kg})});var Lg=b(()=>{"use strict";Rg();var Bk=Ie(),$g=Yu();Bk({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==$g},{trimStart:$g})});var Cg=b((pO,Mg)=>{"use strict";Lg();var _k=Wt();Mg.exports=_k("String","trimLeft")});var Vg=b((hO,Dg)=>{"use strict";var Nk=Cg();Dg.exports=Nk});var Bg=b((mO,Og)=>{"use strict";var Fk=Vg();Og.exports=Fk});var Xg=b(()=>{"use strict"});var Jg=b(()=>{"use strict"});var ev=b((W_,Zg)=>{"use strict";var nR=We(),oR=pi(),uR=Re(),lR=uR("match");Zg.exports=function(a){var e;return nR(a)&&((e=a[lR])!==void 0?!!e:oR(a)==="RegExp")}});var iv=b((Y_,tv)=>{"use strict";var cR=St();tv.exports=function(){var a=cR(this),e="";return a.hasIndices&&(e+="d"),a.global&&(e+="g"),a.ignoreCase&&(e+="i"),a.multiline&&(e+="m"),a.dotAll&&(e+="s"),a.unicode&&(e+="u"),a.unicodeSets&&(e+="v"),a.sticky&&(e+="y"),e}});var sv=b((z_,av)=>{"use strict";var dR=Ge(),pR=ut(),hR=Pr(),mR=iv(),rv=RegExp.prototype;av.exports=function(a){var e=a.flags;return e===void 0&&!("flags"in rv)&&!pR(a,"flags")&&hR(rv,a)?dR(mR,a):e}});var ov=b((K_,nv)=>{"use strict";var tl=xe(),fR=_i(),bR=Math.floor,Zu=tl("".charAt),gR=tl("".replace),el=tl("".slice),vR=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,SR=/\$([$&'`]|\d{1,2})/g;nv.exports=function(a,e,t,i,r,s){var n=t+a.length,o=i.length,u=SR;return r!==void 0&&(r=fR(r),u=vR),gR(s,u,function(l,c){var d;switch(Zu(c,0)){case"$":return"$";case"&":return a;case"`":return el(e,0,t);case"'":return el(e,n);case"<":d=r[el(c,1,-1)];break;default:var m=+c;if(m===0)return l;if(m>o){var h=bR(m/10);return h===0?l:h<=o?i[h-1]===void 0?Zu(c,1):i[h-1]+Zu(c,1):l}d=i[m-1]}return d===void 0?"":d})}});var cv=b(()=>{"use strict";var yR=Ie(),TR=Ge(),rl=xe(),uv=Gt(),IR=be(),ER=Oi(),xR=ev(),ur=ia(),PR=Ar(),wR=sv(),AR=ov(),kR=Re(),RR=ot(),$R=kR("replace"),LR=TypeError,il=rl("".indexOf),MR=rl("".replace),lv=rl("".slice),CR=Math.max;yR({target:"String",proto:!0},{replaceAll:function(e,t){var i=uv(this),r,s,n,o,u,l,c,d,m,h,f=0,g="";if(!ER(e)){if(r=xR(e),r&&(s=ur(uv(wR(e))),!~il(s,"g")))throw new LR("`.replaceAll` does not allow non-global regexes");if(n=PR(e,$R),n)return TR(n,e,i,t);if(RR&&r)return MR(ur(i),e,t)}for(o=ur(i),u=ur(e),l=IR(t),l||(t=ur(t)),c=u.length,d=CR(1,c),m=il(o,u);m!==-1;)h=l?ur(t(u,m,o)):AR(u,o,m,[],void 0,t),g+=lv(o,f,m)+h,f=m+c,m=m+d>o.length?-1:il(o,u,m+d);return f<o.length&&(g+=lv(o,f)),g}})});var pv=b((Z_,dv)=>{"use strict";Xg();Jg();cv();var DR=Wt();dv.exports=DR("String","replaceAll")});var mv=b((eN,hv)=>{"use strict";var VR=pv();hv.exports=VR});var bv=b((tN,fv)=>{"use strict";var OR=mv();fv.exports=OR});var vv=b((iN,gv)=>{"use strict";var BR=Lr(),_R=ia(),NR=Gt(),FR=RangeError;gv.exports=function(e){var t=_R(NR(this)),i="",r=BR(e);if(r<0||r===1/0)throw new FR("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var Ev=b((rN,Iv)=>{"use strict";var Tv=xe(),qR=lo(),Sv=ia(),UR=vv(),HR=Gt(),jR=Tv(UR),QR=Tv("".slice),GR=Math.ceil,yv=function(a){return function(e,t,i){var r=Sv(HR(e)),s=qR(t),n=r.length,o=i===void 0?" ":Sv(i),u,l;return s<=n||o===""?r:(u=s-n,l=jR(o,GR(u/o.length)),l.length>u&&(l=QR(l,0,u)),a?r+l:l+r)}};Iv.exports={start:yv(!1),end:yv(!0)}});var Pv=b((aN,xv)=>{"use strict";var WR=mi();xv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(WR)});var wv=b(()=>{"use strict";var YR=Ie(),zR=Ev().start,KR=Pv();YR({target:"String",proto:!0,forced:KR},{padStart:function(e){return zR(this,e,arguments.length>1?arguments[1]:void 0)}})});var kv=b((oN,Av)=>{"use strict";wv();var XR=Wt();Av.exports=XR("String","padStart")});var $v=b((uN,Rv)=>{"use strict";var JR=kv();Rv.exports=JR});var Mv=b((lN,Lv)=>{"use strict";var ZR=$v();Lv.exports=ZR});var S$={};HS(S$,{ChromecastState:()=>yr,HttpConnectionType:()=>ls,Observable:()=>xt.Observable,PlaybackState:()=>_e,Player:()=>Wa,PredefinedQualityLimits:()=>Tr,SDK_VERSION:()=>v$,Subject:()=>xt.Subject,Subscription:()=>xt.Subscription,Surface:()=>cs,VERSION:()=>Cn,ValueSubject:()=>xt.ValueSubject,VideoFormat:()=>gt,VideoQuality:()=>xt.VideoQuality,clientChecker:()=>ee,isMobile:()=>ir});module.exports=jS(S$);var Cn="2.0.131-dev.fc0eff4d.0";var _e=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(_e||{}),gt=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(gt||{});var yr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(yr||{}),ls=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(ls||{});var cs=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(cs||{}),Tr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Tr||{});var kS=W(Je(),1);var G=require("@vkontakte/videoplayer-shared/es2015");var up=a=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",a),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var fs=class{constructor(e){this.connection$=new G.ValueSubject(void 0);this.castState$=new G.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new G.Subject;this.realCastState$=new G.ValueSubject("NOT_AVAILABLE");this.subscription=new G.Subscription;this.isDestroyed=!1;var s;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,G.isNonNullable)((s=window.chrome)==null?void 0:s.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||up("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:G.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,s;(s=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||s.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,G.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,G.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,G.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,G.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var s,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(s=i.getCurrentSession())==null?void 0:s.getMediaSession())==null?void 0:n.media)==null?void 0:o.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,G.assertNever)(r.sessionState)}})).add((0,G.merge)((0,G.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,G.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,G.map)(r=>r.castState)),(0,G.observableFrom)([i.getCastState()])).pipe((0,G.filterChanged)(),(0,G.map)(pI),(0,G.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let s=r==="CONNECTED",n=(0,G.isNonNullable)(this.connection$.getValue());if(s&&!n){let l=i.getCurrentSession();(0,G.assertNonNullable)(l);let c=l.getCastDevice(),d=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,G.isNullable)(d)||d===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:c}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,G.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch(s){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(s){this.errorEvent$.next({id:"ChromecastInitializer",category:G.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:s})}}},pI=a=>{switch(a){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,G.assertNever)(a)}};var Pl=W(Je(),1),fS=W(Qi(),1),bS=W(_o(),1);var nb=W(Hs(),1);var xu=require("@vkontakte/videoplayer-shared/es2015");var $e=(a,e=0,t=0)=>{switch(t){case 0:return a.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return a;let i=new URL(a);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(a);return!i.searchParams.get("offset_p")&&e===0?a:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,xu.assertNever)(t)}return a},js=(a,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(a);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(a);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,xu.assertNever)(e)}};var M=(a,e,t=!1)=>{let i=a.getTransition();(t||!i||i.to===e)&&a.setState(e)};var yt=require("@vkontakte/videoplayer-shared/es2015"),Y=class{constructor(e){this.transitionStarted$=new yt.Subject;this.transitionEnded$=new yt.Subject;this.transitionUpdated$=new yt.Subject;this.forceChanged$=new yt.Subject;this.stateChangeStarted$=(0,yt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,yt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,yt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var rb=require("@vkontakte/videoplayer-shared/es2015"),ab=a=>{switch(a){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,rb.assertNever)(a)}};var D=require("@vkontakte/videoplayer-shared/es2015");var yA=5,TA=5,IA=500,sb=7e3,Qr=class{constructor(e){this.subscription=new D.Subscription;this.loadMediaTimeoutSubscription=new D.Subscription;this.videoState=new Y("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&e!=="stopped"){this.seek(s.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,D.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,D.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,D.assertNever)(e)}break}default:(0,D.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(ab(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new D.Subscription;this.subscription.add(e),this.subscription.add((0,D.merge)(this.videoState.stateChangeStarted$.pipe((0,D.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,D.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,s)=>this.subscription.add(r.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new D.Subject;e.add(r.pipe((0,D.debounce)(IA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-s)>yA)&&r.next(o),s=o})),e.add((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:s}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&s.duration-s.currentTime<TA&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),M(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,D.assertNever)(n)}}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,D.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,D.observableFrom)(["init"])).pipe((0,D.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),M(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),M(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&M(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,s;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(s=e.muted)!=null?s:t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){var l;let t=this.params.source,i,r,s;switch(e){case"MPEG":{let c=t[e];(0,D.assertNonNullable)(c);let d=(0,D.getHighestQuality)(Object.keys(c));(0,D.assertNonNullable)(d);let m=c[d];(0,D.assertNonNullable)(m),i=m,r="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="application/x-mpegurl",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let c=t[e];(0,D.assertNonNullable)(c),i=$e(c.url),r="application/x-mpegurl",s=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let c="Unsupported format for Chromecast",d=new Error(c);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:D.ErrorCategory.VIDEO_PIPELINE,message:c,thrown:d}),d}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,D.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l:i,r);n.contentUrl=i,n.streamType=s,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,D.isNonNullable)(o)&&(n.metadata.title=o),(0,D.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((r,s)=>{this.loadMediaTimeoutSubscription.add((0,D.timeout)(sb).subscribe(()=>s(`timeout(${sb})`)))});(0,nb.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:D.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var qu=W(Je(),1);var ku=require("@vkontakte/videoplayer-shared/es2015");var ob=require("@vkontakte/videoplayer-shared/es2015"),ub=a=>{try{a.pause(),a.playbackRate=0,(0,ob.clearVideoElement)(a),a.remove()}catch(e){console.error(e)}};var Qs=require("@vkontakte/videoplayer-shared/es2015"),Pu=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},wu=window.WeakMap?new WeakMap:new Pu,Au=window.WeakMap?new WeakMap:new Map,EA=(a,e=20)=>{let t=0;return(0,Qs.fromEvent)(a,"ratechange").subscribe(i=>{t++,t>=e&&(a.currentTime=a.currentTime,t=0)})},Ne=(a,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=a.querySelector("video"),r=!!i;i?(0,ku.clearVideoElement)(i):(i=document.createElement("video"),a.appendChild(i)),wu.set(i,r);let s=new Qs.Subscription;return s.add(EA(i,e)),Au.set(i,s),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Fe=a=>{let e=Au.get(a);e==null||e.unsubscribe(),Au.delete(a);let t=wu.get(a);wu.delete(a),t?(0,ku.clearVideoElement)(a):ub(a)};var Ru=W(tr(),1),V=require("@vkontakte/videoplayer-shared/es2015");var zt=require("@vkontakte/videoplayer-shared/es2015"),Gs=(a,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:s}={})=>{let n=a.getState(),o=e(),u=(0,zt.isNullable)(r),l=new zt.Subscription;return r&&l.add(r.subscribe(c=>{let d=a.getState();i(c,d)&&a.setState(c)},s)),i(o,n)||(t(n),u&&a.setState(n)),l.add(a.stateChangeStarted$.subscribe(c=>{t(c.to),u&&a.setState(c.to)},s)),l},Tt=(a,e,t)=>Gs(e,()=>a.loop,i=>{(0,zt.isNonNullable)(i)&&(a.loop=i)},{onError:t}),qe=(a,e,t,i)=>Gs(e,()=>({muted:a.muted,volume:a.volume}),r=>{(0,zt.isNonNullable)(r)&&(a.muted=r.muted,a.volume=r.volume)},{equal:(r,s)=>r===s||(r==null?void 0:r.muted)===(s==null?void 0:s.muted)&&(r==null?void 0:r.volume)===(s==null?void 0:s.volume),changed$:t,onError:i}),Ze=(a,e,t,i)=>Gs(e,()=>a.playbackRate,r=>{(0,zt.isNonNullable)(r)&&(a.playbackRate=r)},{changed$:t,onError:i}),Kt=Gs;var RA=a=>["__",a.language,a.label].join("|"),$A=(a,e)=>{if(a.id===e)return!0;let[t,i,r]=e.split("|");return a.language===i&&a.label===r},$u=class a{constructor(e){this.available$=new V.Subject;this.current$=new V.ValueSubject(void 0);this.error$=new V.Subject;this.subscription=new V.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=s=>{this.error$.next({id:"TextTracksManager",category:V.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:s})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Kt(t.internalTextTracks,()=>(0,Ru.default)(this.internalTracks),s=>{(0,V.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,V.isNonNullable)(s)&&(0,V.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,V.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Kt(t.externalTextTracks,()=>(0,Ru.default)(this.externalTracks),s=>{(0,V.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,V.isNonNullable)(s)&&(0,V.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,V.map)(s=>s.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Kt(t.currentTextTrack,()=>{if(this.video)return;let s=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return s&&this.htmlTextTrackToITextTrack(s).id},s=>this.select(s),{changed$:this.current$,onError:r})),this.subscription.add(Kt(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,V.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,V.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,V.merge)((0,V.fromEvent)(e,"addtrack"),(0,V.fromEvent)(e,"removetrack"),(0,V.observableFrom)(["init"])).pipe((0,V.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,V.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:s},n)=>s===r[n].id))).subscribe(this.available$)),this.subscription.add((0,V.merge)((0,V.fromEvent)(e,"change"),(0,V.observableFrom)(["init"])).pipe((0,V.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,V.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,V.filterChanged)()).subscribe(this.current$));let t=i=>{var r,s;return this.applyCueSettings((s=(r=i.target)==null?void 0:r.activeCues)!=null?s:null)};this.subscription.add((0,V.fromEvent)(e,"addtrack").subscribe(i=>{var s,n;(s=i.track)==null||s.addEventListener("cuechange",t);let r=o=>{var l,c,d,m,h;let u=(c=(l=o.target)==null?void 0:l.cues)!=null?c:null;u&&u.length&&(this.applyCueSettings((m=(d=o.target)==null?void 0:d.cues)!=null?m:null),(h=o.target)==null||h.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,V.fromEvent)(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,V.isNonNullable)(t.align)&&(r.align=t.align),(0,V.isNonNullable)(t.position)&&(r.position=t.position),(0,V.isNonNullable)(t.size)&&(r.size=t.size),(0,V.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,V.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(a.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,c,d;let{language:t,label:i}=e,r=e.id?e.id:RA(e),s=this.externalTracks.has(r),n=(l=s?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return s?{id:r,type:"external",isAuto:n,language:t,label:i,url:(c=this.externalTracks.get(r))==null?void 0:c.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(d=this.internalTracks.get(r))==null?void 0:d.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===s)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,V.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,V.isNullable)(e)||!$A(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,V.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,V.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},et=$u;var Ti=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var fb=a=>{let e=a;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},Lu=a=>{let e=fb(a);return!!(e&&e.fullscreenElement&&e.fullscreenElement===a)},bb=a=>{let e=fb(a);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===a)};var R=require("@vkontakte/videoplayer-shared/es2015");var LA=3,gb=(a,e,t=LA)=>{let i=0,r=0;for(let s=0;s<a.length;s++){let n=a.start(s),o=a.end(s);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=s-1;u>=0;u--)a.end(u)+t>=i&&(i=a.start(u));for(let u=s+1;u<a.length;u++)a.start(u)-t<=r&&(r=a.end(u))}}return{from:i,to:r}};var Ws=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,s=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||r||s||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var vb=W(Je(),1);var ir=()=>{var a,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((a=navigator.appVersion)!=null?a:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var Ys=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,vb.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=ir()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){return A(this,null,function*(){let{userAgentData:e}=navigator;if(e){let t=yield e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}})}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,s=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||s||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let s=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(s);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var zs=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){var t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(i){console.error(i)}}};var ct=()=>window.ManagedMediaSource||window.MediaSource,Ks=()=>{var a,e;return!!(window.ManagedMediaSource&&((e=(a=window.ManagedSourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},Sb=()=>{var a,e;return!!(window.MediaSource&&((e=(a=window.SourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},yb=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var MA=document.createElement("video"),CA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',DA='video/mp4; codecs="hev1.1.6.L93.B0"',Tb='video/webm; codecs="vp09.00.10.08"',Ib='video/webm; codecs="av01.0.00M.08"',VA='audio/mp4; codecs="mp4a.40.2"',OA='audio/webm; codecs="opus"',Eb,BA=()=>A(void 0,null,function*(){if(!window.navigator.mediaCapabilities)return;let a={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=yield Promise.all([window.navigator.mediaCapabilities.decodingInfo(U(L({},a),{video:U(L({},a.video),{contentType:Ib})})),window.navigator.mediaCapabilities.decodingInfo(U(L({},a),{video:U(L({},a.video),{contentType:Tb})}))]);Eb={DASH_WEBM_AV1:e,DASH_WEBM:t}});BA().catch(a=>{console.log(MA),console.error(a)});var Xs=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return Eb}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,s,n,o,u,l,c,d,m,h,f,g,S,y,I,x,w;this._video=document.createElement("video");try{this._protocols={mms:Ks(),mse:Sb(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(s=this._video).canPlayType)!=null&&n.call(s,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let P=!!((c=(l=ct())==null?void 0:l.isTypeSupported)!=null&&c.call(l,CA)),O=!!((m=(d=ct())==null?void 0:d.isTypeSupported)!=null&&m.call(d,DA)),J=!!((f=(h=ct())==null?void 0:h.isTypeSupported)!=null&&f.call(h,VA));this._codecs={h264:P,h265:O,vp9:!!((S=(g=ct())==null?void 0:g.isTypeSupported)!=null&&S.call(g,Tb)),av1:!!((I=(y=ct())==null?void 0:y.isTypeSupported)!=null&&I.call(y,Ib)),aac:J,opus:!!((w=(x=ct())==null?void 0:x.isTypeSupported)!=null&&w.call(x,OA)),mpeg:(P||O)&&J},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(P){console.error(P)}this.destroyVideoElement()}destroyVideoElement(){var t;if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};var xb="audio/mpeg",Js=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,xb))},this._codecs={mp3:!!((r=(i=ct())==null?void 0:i.isTypeSupported)!=null&&r.call(i,xb))}}catch(s){console.error(s)}this.destroyAudioElement()}destroyAudioElement(){var t;if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var Pb=require("@vkontakte/videoplayer-shared/es2015");var Mu=class{constructor(){this.isInited$=new Pb.ValueSubject(!1);this._displayChecker=new zs,this._deviceChecker=new Ys(this._displayChecker),this._browserChecker=new Ws,this._videoChecker=new Xs(this._deviceChecker,this._browserChecker),this._audioChecker=new Js,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}detect(){return A(this,null,function*(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)})}},ee=new Mu;var Ue=a=>{let e=k=>(0,R.fromEvent)(a,k).pipe((0,R.mapTo)(void 0)),t=new R.Subscription,i=()=>t.unsubscribe(),s=(0,R.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(k=>(0,R.fromEvent)(a,k))).pipe((0,R.map)(k=>k.type==="ended"?a.readyState<2:a.readyState<3),(0,R.filterChanged)()),n=(0,R.merge)((0,R.fromEvent)(a,"progress"),(0,R.fromEvent)(a,"timeupdate")).pipe((0,R.map)(()=>gb(a.buffered,a.currentTime))),o=ee.browser.isSafari?(0,R.combine)({play:e("play").pipe((0,R.once)()),playing:e("playing")}).pipe((0,R.mapTo)(void 0)):e("playing"),u=(0,R.fromEvent)(a,"volumechange").pipe((0,R.map)(()=>({muted:a.muted,volume:a.volume}))),l=(0,R.fromEvent)(a,"ratechange").pipe((0,R.map)(()=>a.playbackRate)),c=(0,R.fromEvent)(a,"error").pipe((0,R.filter)(()=>!!(a.error||a.played.length)),(0,R.map)(()=>{var te;let k=a.error;return{id:k?`MediaError#${k.code}`:"HtmlVideoError",category:R.ErrorCategory.VIDEO_PIPELINE,message:k?k.message:"Error event from HTML video element",thrown:(te=a.error)!=null?te:void 0}})),d=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.map)(()=>a.currentTime)),m=new R.Subject,h=.3,f;t.add(d.subscribe(k=>{a.loop&&(0,R.isNonNullable)(f)&&(0,R.isNonNullable)(k)&&f>=a.duration-h&&k<=h&&m.next(f),f=k}));let g=e("pause").pipe((0,R.filter)(()=>!a.error&&f!==a.duration)),S=(0,R.fromEvent)(a,"enterpictureinpicture"),y=(0,R.fromEvent)(a,"leavepictureinpicture"),I=new R.ValueSubject(bb(a));t.add(S.subscribe(()=>I.next(!0))),t.add(y.subscribe(()=>I.next(!1)));let x=new R.ValueSubject(Lu(a)),w=(0,R.fromEvent)(a,"fullscreenchange");t.add(w.pipe((0,R.map)(()=>Lu(a))).subscribe(x));let P=.1,O=1e3,J=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.filter)(k=>a.duration-a.currentTime<P)),Z=(0,R.merge)(J.pipe((0,R.filter)(k=>!a.loop)),(0,R.fromEvent)(a,"ended")).pipe((0,R.throttle)(O),(0,R.mapTo)(void 0)),ne=J.pipe((0,R.filter)(k=>a.loop));return{playing$:o,pause$:g,canplay$:e("canplay"),ended$:Z,looped$:m,loopExpected$:ne,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:d,durationChange$:(0,R.fromEvent)(a,"durationchange").pipe((0,R.map)(()=>a.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:I,inFullscreen$:x,enterPip$:S,leavePip$:y,destroy:i}};var Lt=require("@vkontakte/videoplayer-shared/es2015"),Xt=a=>{switch(a){case"mobile":return Lt.VideoQuality.Q_144P;case"lowest":return Lt.VideoQuality.Q_240P;case"low":return Lt.VideoQuality.Q_360P;case"sd":case"medium":return Lt.VideoQuality.Q_480P;case"hd":case"high":return Lt.VideoQuality.Q_720P;case"fullhd":case"full":return Lt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Lt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Lt.VideoQuality.Q_2160P}};var Zt=W(Jt(),1),Bb=W(Je(),1),Zs=W(Qi(),1),F=require("@vkontakte/videoplayer-shared/es2015");var Cu=!1,Mt={},Mb=a=>{Cu=a},Cb=()=>{Mt={}},Db=a=>{a(Mt)},Gr=(a,e)=>{var t;Cu&&(Mt.meta=(t=Mt.meta)!=null?t:{},Mt.meta[a]=e)},De=class{constructor(e){this.name=e}next(e){var i,r;if(!Cu)return;Mt.series=(i=Mt.series)!=null?i:{};let t=(r=Mt.series[this.name])!=null?r:[];t.push([Date.now(),e]),Mt.series[this.name]=t}};var Ee=require("@vkontakte/videoplayer-shared/es2015");function Du({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!a.max&&a.min===e?"high_quality":!a.min&&a.max===t?"traffic_saving":"unknown"}function Vu({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!!a&&Du({limits:a,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function Wr({limits:a,highestAvailableQuality:e,lowestAvailableQuality:t}){return(0,Ee.isNullable)(a)||(0,Ee.isNonNullable)(a.min)&&(0,Ee.isNonNullable)(a.max)&&(0,Ee.isLower)(a.max,a.min)||(0,Ee.isNonNullable)(a.min)&&e&&(0,Ee.isHigher)(a.min,e)||(0,Ee.isNonNullable)(a.max)&&t&&(0,Ee.isLower)(a.max,t)}function Vb({limits:a,highestAvailableHeight:e,lowestAvailableHeight:t}){return Wr({limits:{max:a!=null&&a.max?(0,Ee.videoHeightToQuality)(a.max):void 0,min:a!=null&&a.min?(0,Ee.videoHeightToQuality)(a.min):void 0},highestAvailableQuality:e?(0,Ee.videoHeightToQuality)(e):void 0,lowestAvailableQuality:t?(0,Ee.videoHeightToQuality)(t):void 0})}var GA=new De("best_bitrate"),_b=(a,e,t)=>(e-t)*Math.pow(2,-10*a)+t;var Ou=a=>(e,t)=>a*(Number(e.bitrate)-Number(t.bitrate)),Yr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,F.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Nb='Assertion "ABR Tracks is empty array" failed',en=(a,e,t,i)=>{var u;let r=[...e].sort(Ou(1)),s=[...t].sort(Ou(1)),n=s.filter(l=>(0,F.isNonNullable)(l.bitrate)&&(0,F.isNonNullable)(a.bitrate)?a.bitrate/l.bitrate>i:!0),o=(u=(0,Zt.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1))))!=null?u:(0,Zt.default)(s,-1);return o&&(0,Bb.default)(n,o)?o:n.length?(0,Zt.default)(n,-1):(0,Zt.default)(s,0)},Ob=a=>"quality"in a,Fb=(a,e,t,i)=>{var n;let r=(0,F.isNonNullable)((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&(0,F.isNonNullable)(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?a.trackCooldownIncreaseQuality:a.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&(0,F.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!s&&i.recordSelection(t),s&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=Ob(o)?"video":"audio",l=Ob(o)?o.quality:o.bitrate;return e({message:`
|
|
6
|
+
"use strict";var BT=Object.create;var ra=Object.defineProperty,CT=Object.defineProperties,VT=Object.getOwnPropertyDescriptor,OT=Object.getOwnPropertyDescriptors,_T=Object.getOwnPropertyNames,po=Object.getOwnPropertySymbols,FT=Object.getPrototypeOf,Zu=Object.prototype.hasOwnProperty,rp=Object.prototype.propertyIsEnumerable;var NT=(s,e)=>(e=Symbol[s])?e:Symbol.for("Symbol."+s);var St=Math.pow,ip=(s,e,t)=>e in s?ra(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,k=(s,e)=>{for(var t in e||(e={}))Zu.call(e,t)&&ip(s,t,e[t]);if(po)for(var t of po(e))rp.call(e,t)&&ip(s,t,e[t]);return s},U=(s,e)=>CT(s,OT(e));var sp=(s,e)=>{var t={};for(var i in s)Zu.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&po)for(var i of po(s))e.indexOf(i)<0&&rp.call(s,i)&&(t[i]=s[i]);return t};var g=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),UT=(s,e)=>{for(var t in e)ra(s,t,{get:e[t],enumerable:!0})},ap=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of _T(e))!Zu.call(s,r)&&r!==t&&ra(s,r,{get:()=>e[r],enumerable:!(i=VT(e,r))||i.enumerable});return s};var K=(s,e,t)=>(t=s!=null?BT(FT(s)):{},ap(e||!s||!s.__esModule?ra(t,"default",{value:s,enumerable:!0}):t,s)),qT=s=>ap(ra({},"__esModule",{value:!0}),s);var A=(s,e,t)=>new Promise((i,r)=>{var a=u=>{try{o(t.next(u))}catch(l){r(l)}},n=u=>{try{o(t.throw(u))}catch(l){r(l)}},o=u=>u.done?i(u.value):Promise.resolve(u.value).then(a,n);o((t=t.apply(s,e)).next())}),hr=function(s,e){this[0]=s,this[1]=e},pe=(s,e,t)=>{var i=(n,o,u,l)=>{try{var d=t[n](o),c=(o=d.value)instanceof hr,h=d.done;Promise.resolve(c?o[0]:o).then(p=>c?i(n==="return"?n:"next",o[1]?{done:p.done,value:p.value}:p,u,l):u({value:p,done:h})).catch(p=>i("throw",p,u,l))}catch(p){l(p)}},r=n=>a[n]=o=>new Promise((u,l)=>i(n,o,u,l)),a={};return t=t.apply(s,e),a[NT("asyncIterator")]=()=>a,r("next"),r("throw"),r("return"),a};var Fe=g((tl,np)=>{"use strict";var na=function(s){return s&&s.Math===Math&&s};np.exports=na(typeof globalThis=="object"&&globalThis)||na(typeof window=="object"&&window)||na(typeof self=="object"&&self)||na(typeof global=="object"&&global)||na(typeof tl=="object"&&tl)||function(){return this}()||Function("return this")()});var st=g((q$,op)=>{"use strict";op.exports=function(s){try{return!!s()}catch(e){return!0}}});var oa=g((j$,up)=>{"use strict";var jT=st();up.exports=!jT(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var il=g((H$,pp)=>{"use strict";var HT=oa(),dp=Function.prototype,lp=dp.apply,cp=dp.call;pp.exports=typeof Reflect=="object"&&Reflect.apply||(HT?cp.bind(lp):function(){return cp.apply(lp,arguments)})});var Ze=g((G$,mp)=>{"use strict";var hp=oa(),fp=Function.prototype,rl=fp.call,GT=hp&&fp.bind.bind(rl,rl);mp.exports=hp?GT:function(s){return function(){return rl.apply(s,arguments)}}});var fr=g((z$,gp)=>{"use strict";var bp=Ze(),zT=bp({}.toString),QT=bp("".slice);gp.exports=function(s){return QT(zT(s),8,-1)}});var sl=g((Q$,Sp)=>{"use strict";var WT=fr(),YT=Ze();Sp.exports=function(s){if(WT(s)==="Function")return YT(s)}});var Oe=g((W$,vp)=>{"use strict";var al=typeof document=="object"&&document.all;vp.exports=typeof al=="undefined"&&al!==void 0?function(s){return typeof s=="function"||s===al}:function(s){return typeof s=="function"}});var Ct=g((Y$,yp)=>{"use strict";var KT=st();yp.exports=!KT(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Vt=g((K$,Tp)=>{"use strict";var XT=oa(),mo=Function.prototype.call;Tp.exports=XT?mo.bind(mo):function(){return mo.apply(mo,arguments)}});var nl=g(Ep=>{"use strict";var Ip={}.propertyIsEnumerable,xp=Object.getOwnPropertyDescriptor,JT=xp&&!Ip.call({1:2},1);Ep.f=JT?function(e){var t=xp(this,e);return!!t&&t.enumerable}:Ip});var ua=g((J$,wp)=>{"use strict";wp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Ap=g((Z$,Pp)=>{"use strict";var ZT=Ze(),eI=st(),tI=fr(),ol=Object,iI=ZT("".split);Pp.exports=eI(function(){return!ol("z").propertyIsEnumerable(0)})?function(s){return tI(s)==="String"?iI(s,""):ol(s)}:ol});var Cr=g((e0,kp)=>{"use strict";kp.exports=function(s){return s==null}});var Yi=g((t0,Rp)=>{"use strict";var rI=Cr(),sI=TypeError;Rp.exports=function(s){if(rI(s))throw new sI("Can't call method on "+s);return s}});var mr=g((i0,Lp)=>{"use strict";var aI=Ap(),nI=Yi();Lp.exports=function(s){return aI(nI(s))}});var Ot=g((r0,Mp)=>{"use strict";var oI=Oe();Mp.exports=function(s){return typeof s=="object"?s!==null:oI(s)}});var Vr=g((s0,$p)=>{"use strict";$p.exports={}});var Di=g((a0,Bp)=>{"use strict";var ul=Vr(),ll=Fe(),uI=Oe(),Dp=function(s){return uI(s)?s:void 0};Bp.exports=function(s,e){return arguments.length<2?Dp(ul[s])||Dp(ll[s]):ul[s]&&ul[s][e]||ll[s]&&ll[s][e]}});var la=g((n0,Cp)=>{"use strict";var lI=Ze();Cp.exports=lI({}.isPrototypeOf)});var br=g((o0,_p)=>{"use strict";var cI=Fe(),Vp=cI.navigator,Op=Vp&&Vp.userAgent;_p.exports=Op?String(Op):""});var dl=g((u0,Hp)=>{"use strict";var jp=Fe(),cl=br(),Fp=jp.process,Np=jp.Deno,Up=Fp&&Fp.versions||Np&&Np.version,qp=Up&&Up.v8,ei,bo;qp&&(ei=qp.split("."),bo=ei[0]>0&&ei[0]<4?1:+(ei[0]+ei[1]));!bo&&cl&&(ei=cl.match(/Edge\/(\d+)/),(!ei||ei[1]>=74)&&(ei=cl.match(/Chrome\/(\d+)/),ei&&(bo=+ei[1])));Hp.exports=bo});var pl=g((l0,zp)=>{"use strict";var Gp=dl(),dI=st(),pI=Fe(),hI=pI.String;zp.exports=!!Object.getOwnPropertySymbols&&!dI(function(){var s=Symbol("symbol detection");return!hI(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&Gp&&Gp<41})});var hl=g((c0,Qp)=>{"use strict";var fI=pl();Qp.exports=fI&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var fl=g((d0,Wp)=>{"use strict";var mI=Di(),bI=Oe(),gI=la(),SI=hl(),vI=Object;Wp.exports=SI?function(s){return typeof s=="symbol"}:function(s){var e=mI("Symbol");return bI(e)&&gI(e.prototype,vI(s))}});var ca=g((p0,Yp)=>{"use strict";var yI=String;Yp.exports=function(s){try{return yI(s)}catch(e){return"Object"}}});var ci=g((h0,Kp)=>{"use strict";var TI=Oe(),II=ca(),xI=TypeError;Kp.exports=function(s){if(TI(s))return s;throw new xI(II(s)+" is not a function")}});var da=g((f0,Xp)=>{"use strict";var EI=ci(),wI=Cr();Xp.exports=function(s,e){var t=s[e];return wI(t)?void 0:EI(t)}});var Zp=g((m0,Jp)=>{"use strict";var ml=Vt(),bl=Oe(),gl=Ot(),PI=TypeError;Jp.exports=function(s,e){var t,i;if(e==="string"&&bl(t=s.toString)&&!gl(i=ml(t,s))||bl(t=s.valueOf)&&!gl(i=ml(t,s))||e!=="string"&&bl(t=s.toString)&&!gl(i=ml(t,s)))return i;throw new PI("Can't convert object to primitive value")}});var ti=g((b0,eh)=>{"use strict";eh.exports=!0});var rh=g((g0,ih)=>{"use strict";var th=Fe(),AI=Object.defineProperty;ih.exports=function(s,e){try{AI(th,s,{value:e,configurable:!0,writable:!0})}catch(t){th[s]=e}return e}});var pa=g((S0,nh)=>{"use strict";var kI=ti(),RI=Fe(),LI=rh(),sh="__core-js_shared__",ah=nh.exports=RI[sh]||LI(sh,{});(ah.versions||(ah.versions=[])).push({version:"3.38.0",mode:kI?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Sl=g((v0,uh)=>{"use strict";var oh=pa();uh.exports=function(s,e){return oh[s]||(oh[s]=e||{})}});var Or=g((y0,lh)=>{"use strict";var MI=Yi(),$I=Object;lh.exports=function(s){return $I(MI(s))}});var ii=g((T0,ch)=>{"use strict";var DI=Ze(),BI=Or(),CI=DI({}.hasOwnProperty);ch.exports=Object.hasOwn||function(e,t){return CI(BI(e),t)}});var vl=g((I0,dh)=>{"use strict";var VI=Ze(),OI=0,_I=Math.random(),FI=VI(1 .toString);dh.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+FI(++OI+_I,36)}});var at=g((x0,hh)=>{"use strict";var NI=Fe(),UI=Sl(),ph=ii(),qI=vl(),jI=pl(),HI=hl(),_r=NI.Symbol,yl=UI("wks"),GI=HI?_r.for||_r:_r&&_r.withoutSetter||qI;hh.exports=function(s){return ph(yl,s)||(yl[s]=jI&&ph(_r,s)?_r[s]:GI("Symbol."+s)),yl[s]}});var gh=g((E0,bh)=>{"use strict";var zI=Vt(),fh=Ot(),mh=fl(),QI=da(),WI=Zp(),YI=at(),KI=TypeError,XI=YI("toPrimitive");bh.exports=function(s,e){if(!fh(s)||mh(s))return s;var t=QI(s,XI),i;if(t){if(e===void 0&&(e="default"),i=zI(t,s,e),!fh(i)||mh(i))return i;throw new KI("Can't convert object to primitive value")}return e===void 0&&(e="number"),WI(s,e)}});var Tl=g((w0,Sh)=>{"use strict";var JI=gh(),ZI=fl();Sh.exports=function(s){var e=JI(s,"string");return ZI(e)?e:e+""}});var go=g((P0,yh)=>{"use strict";var ex=Fe(),vh=Ot(),Il=ex.document,tx=vh(Il)&&vh(Il.createElement);yh.exports=function(s){return tx?Il.createElement(s):{}}});var xl=g((A0,Th)=>{"use strict";var ix=Ct(),rx=st(),sx=go();Th.exports=!ix&&!rx(function(){return Object.defineProperty(sx("div"),"a",{get:function(){return 7}}).a!==7})});var Eh=g(xh=>{"use strict";var ax=Ct(),nx=Vt(),ox=nl(),ux=ua(),lx=mr(),cx=Tl(),dx=ii(),px=xl(),Ih=Object.getOwnPropertyDescriptor;xh.f=ax?Ih:function(e,t){if(e=lx(e),t=cx(t),px)try{return Ih(e,t)}catch(i){}if(dx(e,t))return ux(!nx(ox.f,e,t),e[t])}});var El=g((R0,wh)=>{"use strict";var hx=st(),fx=Oe(),mx=/#|\.prototype\./,ha=function(s,e){var t=gx[bx(s)];return t===vx?!0:t===Sx?!1:fx(e)?hx(e):!!e},bx=ha.normalize=function(s){return String(s).replace(mx,".").toLowerCase()},gx=ha.data={},Sx=ha.NATIVE="N",vx=ha.POLYFILL="P";wh.exports=ha});var Fr=g((L0,Ah)=>{"use strict";var Ph=sl(),yx=ci(),Tx=oa(),Ix=Ph(Ph.bind);Ah.exports=function(s,e){return yx(s),e===void 0?s:Tx?Ix(s,e):function(){return s.apply(e,arguments)}}});var wl=g((M0,kh)=>{"use strict";var xx=Ct(),Ex=st();kh.exports=xx&&Ex(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var di=g(($0,Rh)=>{"use strict";var wx=Ot(),Px=String,Ax=TypeError;Rh.exports=function(s){if(wx(s))return s;throw new Ax(Px(s)+" is not an object")}});var gr=g(Mh=>{"use strict";var kx=Ct(),Rx=xl(),Lx=wl(),So=di(),Lh=Tl(),Mx=TypeError,Pl=Object.defineProperty,$x=Object.getOwnPropertyDescriptor,Al="enumerable",kl="configurable",Rl="writable";Mh.f=kx?Lx?function(e,t,i){if(So(e),t=Lh(t),So(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Rl in i&&!i[Rl]){var r=$x(e,t);r&&r[Rl]&&(e[t]=i.value,i={configurable:kl in i?i[kl]:r[kl],enumerable:Al in i?i[Al]:r[Al],writable:!1})}return Pl(e,t,i)}:Pl:function(e,t,i){if(So(e),t=Lh(t),So(i),Rx)try{return Pl(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new Mx("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Nr=g((B0,$h)=>{"use strict";var Dx=Ct(),Bx=gr(),Cx=ua();$h.exports=Dx?function(s,e,t){return Bx.f(s,e,Cx(1,t))}:function(s,e,t){return s[e]=t,s}});var He=g((C0,Bh)=>{"use strict";var fa=Fe(),Vx=il(),Ox=sl(),_x=Oe(),Fx=Eh().f,Nx=El(),Ur=Vr(),Ux=Fr(),qr=Nr(),Dh=ii();pa();var qx=function(s){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new s;case 1:return new s(t);case 2:return new s(t,i)}return new s(t,i,r)}return Vx(s,this,arguments)};return e.prototype=s.prototype,e};Bh.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?fa:r?fa[t]:fa[t]&&fa[t].prototype,o=i?Ur:Ur[t]||qr(Ur,t,{})[t],u=o.prototype,l,d,c,h,p,f,b,S,v;for(h in e)l=Nx(i?h:t+(r?".":"#")+h,s.forced),d=!l&&n&&Dh(n,h),f=o[h],d&&(s.dontCallGetSet?(v=Fx(n,h),b=v&&v.value):b=n[h]),p=d&&b?b:e[h],!(!l&&!a&&typeof f==typeof p)&&(s.bind&&d?S=Ux(p,fa):s.wrap&&d?S=qx(p):a&&_x(p)?S=Ox(p):S=p,(s.sham||p&&p.sham||f&&f.sham)&&qr(S,"sham",!0),qr(o,h,S),a&&(c=t+"Prototype",Dh(Ur,c)||qr(Ur,c,{}),qr(Ur[c],h,p),s.real&&u&&(l||!u[h])&&qr(u,h,p)))}});var Vh=g((V0,Ch)=>{"use strict";var jx=Math.ceil,Hx=Math.floor;Ch.exports=Math.trunc||function(e){var t=+e;return(t>0?Hx:jx)(t)}});var ma=g((O0,Oh)=>{"use strict";var Gx=Vh();Oh.exports=function(s){var e=+s;return e!==e||e===0?0:Gx(e)}});var Fh=g((_0,_h)=>{"use strict";var zx=ma(),Qx=Math.max,Wx=Math.min;_h.exports=function(s,e){var t=zx(s);return t<0?Qx(t+e,0):Wx(t,e)}});var Ll=g((F0,Nh)=>{"use strict";var Yx=ma(),Kx=Math.min;Nh.exports=function(s){var e=Yx(s);return e>0?Kx(e,9007199254740991):0}});var jr=g((N0,Uh)=>{"use strict";var Xx=Ll();Uh.exports=function(s){return Xx(s.length)}});var Ml=g((U0,jh)=>{"use strict";var Jx=mr(),Zx=Fh(),eE=jr(),qh=function(s){return function(e,t,i){var r=Jx(e),a=eE(r);if(a===0)return!s&&-1;var n=Zx(i,a),o;if(s&&t!==t){for(;a>n;)if(o=r[n++],o!==o)return!0}else for(;a>n;n++)if((s||n in r)&&r[n]===t)return s||n||0;return!s&&-1}};jh.exports={includes:qh(!0),indexOf:qh(!1)}});var ba=g((q0,Hh)=>{"use strict";Hh.exports=function(){}});var Gh=g(()=>{"use strict";var tE=He(),iE=Ml().includes,rE=st(),sE=ba(),aE=rE(function(){return!Array(1).includes()});tE({target:"Array",proto:!0,forced:aE},{includes:function(e){return iE(this,e,arguments.length>1?arguments[1]:void 0)}});sE("includes")});var Ki=g((G0,zh)=>{"use strict";var nE=Di();zh.exports=nE});var Wh=g((z0,Qh)=>{"use strict";Gh();var oE=Ki();Qh.exports=oE("Array","includes")});var Kh=g((Q0,Yh)=>{"use strict";var uE=Wh();Yh.exports=uE});var _t=g((W0,Xh)=>{"use strict";var lE=Kh();Xh.exports=lE});var yo=g((aD,ef)=>{"use strict";var dE=Sl(),pE=vl(),Zh=dE("keys");ef.exports=function(s){return Zh[s]||(Zh[s]=pE(s))}});var rf=g((nD,tf)=>{"use strict";var hE=st();tf.exports=!hE(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var To=g((oD,af)=>{"use strict";var fE=ii(),mE=Oe(),bE=Or(),gE=yo(),SE=rf(),sf=gE("IE_PROTO"),$l=Object,vE=$l.prototype;af.exports=SE?$l.getPrototypeOf:function(s){var e=bE(s);if(fE(e,sf))return e[sf];var t=e.constructor;return mE(t)&&e instanceof t?t.prototype:e instanceof $l?vE:null}});var Io=g((uD,nf)=>{"use strict";nf.exports={}});var lf=g((lD,uf)=>{"use strict";var yE=Ze(),Dl=ii(),TE=mr(),IE=Ml().indexOf,xE=Io(),of=yE([].push);uf.exports=function(s,e){var t=TE(s),i=0,r=[],a;for(a in t)!Dl(xE,a)&&Dl(t,a)&&of(r,a);for(;e.length>i;)Dl(t,a=e[i++])&&(~IE(r,a)||of(r,a));return r}});var Bl=g((cD,cf)=>{"use strict";cf.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Cl=g((dD,df)=>{"use strict";var EE=lf(),wE=Bl();df.exports=Object.keys||function(e){return EE(e,wE)}});var Vl=g((pD,bf)=>{"use strict";var hf=Ct(),PE=st(),ff=Ze(),AE=To(),kE=Cl(),RE=mr(),LE=nl().f,mf=ff(LE),ME=ff([].push),$E=hf&&PE(function(){var s=Object.create(null);return s[2]=2,!mf(s,2)}),pf=function(s){return function(e){for(var t=RE(e),i=kE(t),r=$E&&AE(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!hf||(r?u in t:mf(t,u)))&&ME(o,s?[u,t[u]]:t[u]);return o}};bf.exports={entries:pf(!0),values:pf(!1)}});var gf=g(()=>{"use strict";var DE=He(),BE=Vl().entries;DE({target:"Object",stat:!0},{entries:function(e){return BE(e)}})});var vf=g((mD,Sf)=>{"use strict";gf();var CE=Vr();Sf.exports=CE.Object.entries});var Tf=g((bD,yf)=>{"use strict";var VE=vf();yf.exports=VE});var Sr=g((gD,If)=>{"use strict";var OE=Tf();If.exports=OE});var vr=g((SD,xf)=>{"use strict";xf.exports={}});var Pf=g((vD,wf)=>{"use strict";var _E=Fe(),FE=Oe(),Ef=_E.WeakMap;wf.exports=FE(Ef)&&/native code/.test(String(Ef))});var Nl=g((yD,Rf)=>{"use strict";var NE=Pf(),kf=Fe(),UE=Ot(),qE=Nr(),Ol=ii(),_l=pa(),jE=yo(),HE=Io(),Af="Object already initialized",Fl=kf.TypeError,GE=kf.WeakMap,xo,ga,Eo,zE=function(s){return Eo(s)?ga(s):xo(s,{})},QE=function(s){return function(e){var t;if(!UE(e)||(t=ga(e)).type!==s)throw new Fl("Incompatible receiver, "+s+" required");return t}};NE||_l.state?(ri=_l.state||(_l.state=new GE),ri.get=ri.get,ri.has=ri.has,ri.set=ri.set,xo=function(s,e){if(ri.has(s))throw new Fl(Af);return e.facade=s,ri.set(s,e),e},ga=function(s){return ri.get(s)||{}},Eo=function(s){return ri.has(s)}):(yr=jE("state"),HE[yr]=!0,xo=function(s,e){if(Ol(s,yr))throw new Fl(Af);return e.facade=s,qE(s,yr,e),e},ga=function(s){return Ol(s,yr)?s[yr]:{}},Eo=function(s){return Ol(s,yr)});var ri,yr;Rf.exports={set:xo,get:ga,has:Eo,enforce:zE,getterFor:QE}});var jl=g((TD,Mf)=>{"use strict";var Ul=Ct(),WE=ii(),Lf=Function.prototype,YE=Ul&&Object.getOwnPropertyDescriptor,ql=WE(Lf,"name"),KE=ql&&function(){}.name==="something",XE=ql&&(!Ul||Ul&&YE(Lf,"name").configurable);Mf.exports={EXISTS:ql,PROPER:KE,CONFIGURABLE:XE}});var Df=g($f=>{"use strict";var JE=Ct(),ZE=wl(),ew=gr(),tw=di(),iw=mr(),rw=Cl();$f.f=JE&&!ZE?Object.defineProperties:function(e,t){tw(e);for(var i=iw(t),r=rw(t),a=r.length,n=0,o;a>n;)ew.f(e,o=r[n++],i[o]);return e}});var Hl=g((xD,Bf)=>{"use strict";var sw=Di();Bf.exports=sw("document","documentElement")});var Wl=g((ED,Uf)=>{"use strict";var aw=di(),nw=Df(),Cf=Bl(),ow=Io(),uw=Hl(),lw=go(),cw=yo(),Vf=">",Of="<",zl="prototype",Ql="script",Ff=cw("IE_PROTO"),Gl=function(){},Nf=function(s){return Of+Ql+Vf+s+Of+"/"+Ql+Vf},_f=function(s){s.write(Nf("")),s.close();var e=s.parentWindow.Object;return s=null,e},dw=function(){var s=lw("iframe"),e="java"+Ql+":",t;return s.style.display="none",uw.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Nf("document.F=Object")),t.close(),t.F},wo,Po=function(){try{wo=new ActiveXObject("htmlfile")}catch(e){}Po=typeof document!="undefined"?document.domain&&wo?_f(wo):dw():_f(wo);for(var s=Cf.length;s--;)delete Po[zl][Cf[s]];return Po()};ow[Ff]=!0;Uf.exports=Object.create||function(e,t){var i;return e!==null?(Gl[zl]=aw(e),i=new Gl,Gl[zl]=null,i[Ff]=e):i=Po(),t===void 0?i:nw.f(i,t)}});var Hr=g((wD,qf)=>{"use strict";var pw=Nr();qf.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:pw(s,e,t),s}});var Jl=g((PD,Gf)=>{"use strict";var hw=st(),fw=Oe(),mw=Ot(),bw=Wl(),jf=To(),gw=Hr(),Sw=at(),vw=ti(),Xl=Sw("iterator"),Hf=!1,Bi,Yl,Kl;[].keys&&(Kl=[].keys(),"next"in Kl?(Yl=jf(jf(Kl)),Yl!==Object.prototype&&(Bi=Yl)):Hf=!0);var yw=!mw(Bi)||hw(function(){var s={};return Bi[Xl].call(s)!==s});yw?Bi={}:vw&&(Bi=bw(Bi));fw(Bi[Xl])||gw(Bi,Xl,function(){return this});Gf.exports={IteratorPrototype:Bi,BUGGY_SAFARI_ITERATORS:Hf}});var Ao=g((AD,Qf)=>{"use strict";var Tw=at(),Iw=Tw("toStringTag"),zf={};zf[Iw]="z";Qf.exports=String(zf)==="[object z]"});var Sa=g((kD,Wf)=>{"use strict";var xw=Ao(),Ew=Oe(),ko=fr(),ww=at(),Pw=ww("toStringTag"),Aw=Object,kw=ko(function(){return arguments}())==="Arguments",Rw=function(s,e){try{return s[e]}catch(t){}};Wf.exports=xw?ko:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=Rw(e=Aw(s),Pw))=="string"?t:kw?ko(e):(i=ko(e))==="Object"&&Ew(e.callee)?"Arguments":i}});var Kf=g((RD,Yf)=>{"use strict";var Lw=Ao(),Mw=Sa();Yf.exports=Lw?{}.toString:function(){return"[object "+Mw(this)+"]"}});var va=g((LD,Jf)=>{"use strict";var $w=Ao(),Dw=gr().f,Bw=Nr(),Cw=ii(),Vw=Kf(),Ow=at(),Xf=Ow("toStringTag");Jf.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(Cw(r,Xf)||Dw(r,Xf,{configurable:!0,value:e}),i&&!$w&&Bw(r,"toString",Vw))}});var em=g((MD,Zf)=>{"use strict";var _w=Jl().IteratorPrototype,Fw=Wl(),Nw=ua(),Uw=va(),qw=vr(),jw=function(){return this};Zf.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Fw(_w,{next:Nw(+!i,t)}),Uw(s,r,!1,!0),qw[r]=jw,s}});var im=g(($D,tm)=>{"use strict";var Hw=Ze(),Gw=ci();tm.exports=function(s,e,t){try{return Hw(Gw(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var sm=g((DD,rm)=>{"use strict";var zw=Ot();rm.exports=function(s){return zw(s)||s===null}});var nm=g((BD,am)=>{"use strict";var Qw=sm(),Ww=String,Yw=TypeError;am.exports=function(s){if(Qw(s))return s;throw new Yw("Can't set "+Ww(s)+" as a prototype")}});var Zl=g((CD,om)=>{"use strict";var Kw=im(),Xw=Ot(),Jw=Yi(),Zw=nm();om.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=Kw(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return Jw(r),Zw(a),Xw(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Sm=g((VD,gm)=>{"use strict";var eP=He(),tP=Vt(),Ro=ti(),mm=jl(),iP=Oe(),rP=em(),um=To(),lm=Zl(),sP=va(),aP=Nr(),ec=Hr(),nP=at(),cm=vr(),bm=Jl(),oP=mm.PROPER,uP=mm.CONFIGURABLE,dm=bm.IteratorPrototype,Lo=bm.BUGGY_SAFARI_ITERATORS,ya=nP("iterator"),pm="keys",Ta="values",hm="entries",fm=function(){return this};gm.exports=function(s,e,t,i,r,a,n){rP(t,e,i);var o=function(v){if(v===r&&h)return h;if(!Lo&&v&&v in d)return d[v];switch(v){case pm:return function(){return new t(this,v)};case Ta:return function(){return new t(this,v)};case hm:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=s.prototype,c=d[ya]||d["@@iterator"]||r&&d[r],h=!Lo&&c||o(r),p=e==="Array"&&d.entries||c,f,b,S;if(p&&(f=um(p.call(new s)),f!==Object.prototype&&f.next&&(!Ro&&um(f)!==dm&&(lm?lm(f,dm):iP(f[ya])||ec(f,ya,fm)),sP(f,u,!0,!0),Ro&&(cm[u]=fm))),oP&&r===Ta&&c&&c.name!==Ta&&(!Ro&&uP?aP(d,"name",Ta):(l=!0,h=function(){return tP(c,this)})),r)if(b={values:o(Ta),keys:a?h:o(pm),entries:o(hm)},n)for(S in b)(Lo||l||!(S in d))&&ec(d,S,b[S]);else eP({target:e,proto:!0,forced:Lo||l},b);return(!Ro||n)&&d[ya]!==h&&ec(d,ya,h,{name:r}),cm[e]=h,b}});var ym=g((OD,vm)=>{"use strict";vm.exports=function(s,e){return{value:s,done:e}}});var ic=g((_D,wm)=>{"use strict";var lP=mr(),tc=ba(),Tm=vr(),xm=Nl(),cP=gr().f,dP=Sm(),Mo=ym(),pP=ti(),hP=Ct(),Em="Array Iterator",fP=xm.set,mP=xm.getterFor(Em);wm.exports=dP(Array,"Array",function(s,e){fP(this,{type:Em,target:lP(s),index:0,kind:e})},function(){var s=mP(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Mo(void 0,!0);switch(s.kind){case"keys":return Mo(t,!1);case"values":return Mo(e[t],!1)}return Mo([t,e[t]],!1)},"values");var Im=Tm.Arguments=Tm.Array;tc("keys");tc("values");tc("entries");if(!pP&&hP&&Im.name!=="values")try{cP(Im,"name",{value:"values"})}catch(s){}});var Am=g((FD,Pm)=>{"use strict";var bP=at(),gP=vr(),SP=bP("iterator"),vP=Array.prototype;Pm.exports=function(s){return s!==void 0&&(gP.Array===s||vP[SP]===s)}});var rc=g((ND,Rm)=>{"use strict";var yP=Sa(),km=da(),TP=Cr(),IP=vr(),xP=at(),EP=xP("iterator");Rm.exports=function(s){if(!TP(s))return km(s,EP)||km(s,"@@iterator")||IP[yP(s)]}});var Mm=g((UD,Lm)=>{"use strict";var wP=Vt(),PP=ci(),AP=di(),kP=ca(),RP=rc(),LP=TypeError;Lm.exports=function(s,e){var t=arguments.length<2?RP(s):e;if(PP(t))return AP(wP(t,s));throw new LP(kP(s)+" is not iterable")}});var Bm=g((qD,Dm)=>{"use strict";var MP=Vt(),$m=di(),$P=da();Dm.exports=function(s,e,t){var i,r;$m(s);try{if(i=$P(s,"return"),!i){if(e==="throw")throw t;return t}i=MP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return $m(i),t}});var Do=g((jD,_m)=>{"use strict";var DP=Fr(),BP=Vt(),CP=di(),VP=ca(),OP=Am(),_P=jr(),Cm=la(),FP=Mm(),NP=rc(),Vm=Bm(),UP=TypeError,$o=function(s,e){this.stopped=s,this.result=e},Om=$o.prototype;_m.exports=function(s,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),a=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=DP(e,i),l,d,c,h,p,f,b,S=function(y){return l&&Vm(l,"normal",y),new $o(!0,y)},v=function(y){return r?(CP(y),o?u(y[0],y[1],S):u(y[0],y[1])):o?u(y,S):u(y)};if(a)l=s.iterator;else if(n)l=s;else{if(d=NP(s),!d)throw new UP(VP(s)+" is not iterable");if(OP(d)){for(c=0,h=_P(s);h>c;c++)if(p=v(s[c]),p&&Cm(Om,p))return p;return new $o(!1)}l=FP(s,d)}for(f=a?s.next:l.next;!(b=BP(f,l)).done;){try{p=v(b.value)}catch(y){Vm(l,"throw",y)}if(typeof p=="object"&&p&&Cm(Om,p))return p}return new $o(!1)}});var Nm=g((HD,Fm)=>{"use strict";var qP=Ct(),jP=gr(),HP=ua();Fm.exports=function(s,e,t){qP?jP.f(s,e,HP(0,t)):s[e]=t}});var Um=g(()=>{"use strict";var GP=He(),zP=Do(),QP=Nm();GP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return zP(e,function(i,r){QP(t,i,r)},{AS_ENTRIES:!0}),t}})});var jm=g((QD,qm)=>{"use strict";ic();Um();var WP=Vr();qm.exports=WP.Object.fromEntries});var Gm=g((WD,Hm)=>{"use strict";Hm.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var Qm=g(()=>{"use strict";ic();var YP=Gm(),KP=Fe(),XP=va(),zm=vr();for(Bo in YP)XP(KP[Bo],Bo),zm[Bo]=zm.Array;var Bo});var Ym=g((XD,Wm)=>{"use strict";var JP=jm();Qm();Wm.exports=JP});var sc=g((JD,Km)=>{"use strict";var ZP=Ym();Km.exports=ZP});var Xm=g(()=>{"use strict"});var ac=g((tB,Jm)=>{"use strict";var Ia=Fe(),eA=br(),tA=fr(),Co=function(s){return eA.slice(0,s.length)===s};Jm.exports=function(){return Co("Bun/")?"BUN":Co("Cloudflare-Workers")?"CLOUDFLARE":Co("Deno/")?"DENO":Co("Node.js/")?"NODE":Ia.Bun&&typeof Bun.version=="string"?"BUN":Ia.Deno&&typeof Deno.version=="object"?"DENO":tA(Ia.process)==="process"?"NODE":Ia.window&&Ia.document?"BROWSER":"REST"}()});var Vo=g((iB,Zm)=>{"use strict";var iA=ac();Zm.exports=iA==="NODE"});var tb=g((rB,eb)=>{"use strict";var rA=gr();eb.exports=function(s,e,t){return rA.f(s,e,t)}});var sb=g((sB,rb)=>{"use strict";var sA=Di(),aA=tb(),nA=at(),oA=Ct(),ib=nA("species");rb.exports=function(s){var e=sA(s);oA&&e&&!e[ib]&&aA(e,ib,{configurable:!0,get:function(){return this}})}});var nb=g((aB,ab)=>{"use strict";var uA=la(),lA=TypeError;ab.exports=function(s,e){if(uA(e,s))return s;throw new lA("Incorrect invocation")}});var oc=g((nB,ob)=>{"use strict";var cA=Ze(),dA=Oe(),nc=pa(),pA=cA(Function.toString);dA(nc.inspectSource)||(nc.inspectSource=function(s){return pA(s)});ob.exports=nc.inspectSource});var lc=g((oB,pb)=>{"use strict";var hA=Ze(),fA=st(),ub=Oe(),mA=Sa(),bA=Di(),gA=oc(),lb=function(){},cb=bA("Reflect","construct"),uc=/^\s*(?:class|function)\b/,SA=hA(uc.exec),vA=!uc.test(lb),xa=function(e){if(!ub(e))return!1;try{return cb(lb,[],e),!0}catch(t){return!1}},db=function(e){if(!ub(e))return!1;switch(mA(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return vA||!!SA(uc,gA(e))}catch(t){return!0}};db.sham=!0;pb.exports=!cb||fA(function(){var s;return xa(xa.call)||!xa(Object)||!xa(function(){s=!0})||s})?db:xa});var fb=g((uB,hb)=>{"use strict";var yA=lc(),TA=ca(),IA=TypeError;hb.exports=function(s){if(yA(s))return s;throw new IA(TA(s)+" is not a constructor")}});var cc=g((lB,bb)=>{"use strict";var mb=di(),xA=fb(),EA=Cr(),wA=at(),PA=wA("species");bb.exports=function(s,e){var t=mb(s).constructor,i;return t===void 0||EA(i=mb(t)[PA])?e:xA(i)}});var Sb=g((cB,gb)=>{"use strict";var AA=Ze();gb.exports=AA([].slice)});var yb=g((dB,vb)=>{"use strict";var kA=TypeError;vb.exports=function(s,e){if(s<e)throw new kA("Not enough arguments");return s}});var dc=g((pB,Tb)=>{"use strict";var RA=br();Tb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(RA)});var yc=g((hB,Lb)=>{"use strict";var Ft=Fe(),LA=il(),MA=Fr(),Ib=Oe(),$A=ii(),Rb=st(),xb=Hl(),DA=Sb(),Eb=go(),BA=yb(),CA=dc(),VA=Vo(),gc=Ft.setImmediate,Sc=Ft.clearImmediate,OA=Ft.process,pc=Ft.Dispatch,_A=Ft.Function,wb=Ft.MessageChannel,FA=Ft.String,hc=0,Ea={},Pb="onreadystatechange",wa,Tr,fc,mc;Rb(function(){wa=Ft.location});var vc=function(s){if($A(Ea,s)){var e=Ea[s];delete Ea[s],e()}},bc=function(s){return function(){vc(s)}},Ab=function(s){vc(s.data)},kb=function(s){Ft.postMessage(FA(s),wa.protocol+"//"+wa.host)};(!gc||!Sc)&&(gc=function(e){BA(arguments.length,1);var t=Ib(e)?e:_A(e),i=DA(arguments,1);return Ea[++hc]=function(){LA(t,void 0,i)},Tr(hc),hc},Sc=function(e){delete Ea[e]},VA?Tr=function(s){OA.nextTick(bc(s))}:pc&&pc.now?Tr=function(s){pc.now(bc(s))}:wb&&!CA?(fc=new wb,mc=fc.port2,fc.port1.onmessage=Ab,Tr=MA(mc.postMessage,mc)):Ft.addEventListener&&Ib(Ft.postMessage)&&!Ft.importScripts&&wa&&wa.protocol!=="file:"&&!Rb(kb)?(Tr=kb,Ft.addEventListener("message",Ab,!1)):Pb in Eb("script")?Tr=function(s){xb.appendChild(Eb("script"))[Pb]=function(){xb.removeChild(this),vc(s)}}:Tr=function(s){setTimeout(bc(s),0)});Lb.exports={set:gc,clear:Sc}});var Db=g((fB,$b)=>{"use strict";var Mb=Fe(),NA=Ct(),UA=Object.getOwnPropertyDescriptor;$b.exports=function(s){if(!NA)return Mb[s];var e=UA(Mb,s);return e&&e.value}});var Tc=g((mB,Cb)=>{"use strict";var Bb=function(){this.head=null,this.tail=null};Bb.prototype={add:function(s){var e={item:s,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var s=this.head;if(s){var e=this.head=s.next;return e===null&&(this.tail=null),s.item}}};Cb.exports=Bb});var Ob=g((bB,Vb)=>{"use strict";var qA=br();Vb.exports=/ipad|iphone|ipod/i.test(qA)&&typeof Pebble!="undefined"});var Fb=g((gB,_b)=>{"use strict";var jA=br();_b.exports=/web0s(?!.*chrome)/i.test(jA)});var zb=g((SB,Gb)=>{"use strict";var zr=Fe(),HA=Db(),Nb=Fr(),Ic=yc().set,GA=Tc(),zA=dc(),QA=Ob(),WA=Fb(),xc=Vo(),Ub=zr.MutationObserver||zr.WebKitMutationObserver,qb=zr.document,jb=zr.process,Oo=zr.Promise,Pc=HA("queueMicrotask"),Gr,Ec,wc,_o,Hb;Pc||(Pa=new GA,Aa=function(){var s,e;for(xc&&(s=jb.domain)&&s.exit();e=Pa.get();)try{e()}catch(t){throw Pa.head&&Gr(),t}s&&s.enter()},!zA&&!xc&&!WA&&Ub&&qb?(Ec=!0,wc=qb.createTextNode(""),new Ub(Aa).observe(wc,{characterData:!0}),Gr=function(){wc.data=Ec=!Ec}):!QA&&Oo&&Oo.resolve?(_o=Oo.resolve(void 0),_o.constructor=Oo,Hb=Nb(_o.then,_o),Gr=function(){Hb(Aa)}):xc?Gr=function(){jb.nextTick(Aa)}:(Ic=Nb(Ic,zr),Gr=function(){Ic(Aa)}),Pc=function(s){Pa.head||Gr(),Pa.add(s)});var Pa,Aa;Gb.exports=Pc});var Wb=g((vB,Qb)=>{"use strict";Qb.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var Fo=g((yB,Yb)=>{"use strict";Yb.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Ir=g((TB,Kb)=>{"use strict";var YA=Fe();Kb.exports=YA.Promise});var Qr=g((IB,eg)=>{"use strict";var KA=Fe(),ka=Ir(),XA=Oe(),JA=El(),ZA=oc(),ek=at(),Xb=ac(),tk=ti(),Ac=dl(),Jb=ka&&ka.prototype,ik=ek("species"),kc=!1,Zb=XA(KA.PromiseRejectionEvent),rk=JA("Promise",function(){var s=ZA(ka),e=s!==String(ka);if(!e&&Ac===66||tk&&!(Jb.catch&&Jb.finally))return!0;if(!Ac||Ac<51||!/native code/.test(s)){var t=new ka(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[ik]=i,kc=t.then(function(){})instanceof i,!kc)return!0}return!e&&(Xb==="BROWSER"||Xb==="DENO")&&!Zb});eg.exports={CONSTRUCTOR:rk,REJECTION_EVENT:Zb,SUBCLASSING:kc}});var Wr=g((xB,ig)=>{"use strict";var tg=ci(),sk=TypeError,ak=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new sk("Bad Promise constructor");e=i,t=r}),this.resolve=tg(e),this.reject=tg(t)};ig.exports.f=function(s){return new ak(s)}});var Tg=g(()=>{"use strict";var nk=He(),ok=ti(),jo=Vo(),Xi=Fe(),Jr=Vt(),rg=Hr(),sg=Zl(),uk=va(),lk=sb(),ck=ci(),qo=Oe(),dk=Ot(),pk=nb(),hk=cc(),lg=yc().set,Dc=zb(),fk=Wb(),mk=Fo(),bk=Tc(),cg=Nl(),Ho=Ir(),Bc=Qr(),dg=Wr(),Go="Promise",pg=Bc.CONSTRUCTOR,gk=Bc.REJECTION_EVENT,Sk=Bc.SUBCLASSING,Rc=cg.getterFor(Go),vk=cg.set,Yr=Ho&&Ho.prototype,xr=Ho,No=Yr,hg=Xi.TypeError,Lc=Xi.document,Cc=Xi.process,Mc=dg.f,yk=Mc,Tk=!!(Lc&&Lc.createEvent&&Xi.dispatchEvent),fg="unhandledrejection",Ik="rejectionhandled",ag=0,mg=1,xk=2,Vc=1,bg=2,Uo,ng,Ek,og,gg=function(s){var e;return dk(s)&&qo(e=s.then)?e:!1},Sg=function(s,e){var t=e.value,i=e.state===mg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,d;try{r?(i||(e.rejection===bg&&Pk(e),e.rejection=Vc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new hg("Promise-chain cycle")):(l=gg(u))?Jr(l,u,a,n):a(u)):n(t)}catch(c){o&&!d&&o.exit(),n(c)}},vg=function(s,e){s.notified||(s.notified=!0,Dc(function(){for(var t=s.reactions,i;i=t.get();)Sg(i,s);s.notified=!1,e&&!s.rejection&&wk(s)}))},yg=function(s,e,t){var i,r;Tk?(i=Lc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),Xi.dispatchEvent(i)):i={promise:e,reason:t},!gk&&(r=Xi["on"+s])?r(i):s===fg&&fk("Unhandled promise rejection",t)},wk=function(s){Jr(lg,Xi,function(){var e=s.facade,t=s.value,i=ug(s),r;if(i&&(r=mk(function(){jo?Cc.emit("unhandledRejection",t,e):yg(fg,e,t)}),s.rejection=jo||ug(s)?bg:Vc,r.error))throw r.value})},ug=function(s){return s.rejection!==Vc&&!s.parent},Pk=function(s){Jr(lg,Xi,function(){var e=s.facade;jo?Cc.emit("rejectionHandled",e):yg(Ik,e,s.value)})},Kr=function(s,e,t){return function(i){s(e,i,t)}},Xr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=xk,vg(s,!0))},$c=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new hg("Promise can't be resolved itself");var i=gg(e);i?Dc(function(){var r={done:!1};try{Jr(i,e,Kr($c,r,s),Kr(Xr,r,s))}catch(a){Xr(r,a,s)}}):(s.value=e,s.state=mg,vg(s,!1))}catch(r){Xr({done:!1},r,s)}}};if(pg&&(xr=function(e){pk(this,No),ck(e),Jr(Uo,this);var t=Rc(this);try{e(Kr($c,t),Kr(Xr,t))}catch(i){Xr(t,i)}},No=xr.prototype,Uo=function(e){vk(this,{type:Go,done:!1,notified:!1,parent:!1,reactions:new bk,rejection:!1,state:ag,value:void 0})},Uo.prototype=rg(No,"then",function(e,t){var i=Rc(this),r=Mc(hk(this,xr));return i.parent=!0,r.ok=qo(e)?e:!0,r.fail=qo(t)&&t,r.domain=jo?Cc.domain:void 0,i.state===ag?i.reactions.add(r):Dc(function(){Sg(r,i)}),r.promise}),ng=function(){var s=new Uo,e=Rc(s);this.promise=s,this.resolve=Kr($c,e),this.reject=Kr(Xr,e)},dg.f=Mc=function(s){return s===xr||s===Ek?new ng(s):yk(s)},!ok&&qo(Ho)&&Yr!==Object.prototype)){og=Yr.then,Sk||rg(Yr,"then",function(e,t){var i=this;return new xr(function(r,a){Jr(og,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Yr.constructor}catch(s){}sg&&sg(Yr,No)}nk({global:!0,constructor:!0,wrap:!0,forced:pg},{Promise:xr});uk(xr,Go,!1,!0);lk(Go)});var Pg=g((PB,wg)=>{"use strict";var Ak=at(),xg=Ak("iterator"),Eg=!1;try{Ig=0,Oc={next:function(){return{done:!!Ig++}},return:function(){Eg=!0}},Oc[xg]=function(){return this},Array.from(Oc,function(){throw 2})}catch(s){}var Ig,Oc;wg.exports=function(s,e){try{if(!e&&!Eg)return!1}catch(r){return!1}var t=!1;try{var i={};i[xg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var _c=g((AB,Ag)=>{"use strict";var kk=Ir(),Rk=Pg(),Lk=Qr().CONSTRUCTOR;Ag.exports=Lk||!Rk(function(s){kk.all(s).then(void 0,function(){})})});var kg=g(()=>{"use strict";var Mk=He(),$k=Vt(),Dk=ci(),Bk=Wr(),Ck=Fo(),Vk=Do(),Ok=_c();Mk({target:"Promise",stat:!0,forced:Ok},{all:function(e){var t=this,i=Bk.f(t),r=i.resolve,a=i.reject,n=Ck(function(){var o=Dk(t.resolve),u=[],l=0,d=1;Vk(e,function(c){var h=l++,p=!1;d++,$k(o,t,c).then(function(f){p||(p=!0,u[h]=f,--d||r(u))},a)}),--d||r(u)});return n.error&&a(n.value),i.promise}})});var Lg=g(()=>{"use strict";var _k=He(),Fk=ti(),Nk=Qr().CONSTRUCTOR,Nc=Ir(),Uk=Di(),qk=Oe(),jk=Hr(),Rg=Nc&&Nc.prototype;_k({target:"Promise",proto:!0,forced:Nk,real:!0},{catch:function(s){return this.then(void 0,s)}});!Fk&&qk(Nc)&&(Fc=Uk("Promise").prototype.catch,Rg.catch!==Fc&&jk(Rg,"catch",Fc,{unsafe:!0}));var Fc});var Mg=g(()=>{"use strict";var Hk=He(),Gk=Vt(),zk=ci(),Qk=Wr(),Wk=Fo(),Yk=Do(),Kk=_c();Hk({target:"Promise",stat:!0,forced:Kk},{race:function(e){var t=this,i=Qk.f(t),r=i.reject,a=Wk(function(){var n=zk(t.resolve);Yk(e,function(o){Gk(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var $g=g(()=>{"use strict";var Xk=He(),Jk=Wr(),Zk=Qr().CONSTRUCTOR;Xk({target:"Promise",stat:!0,forced:Zk},{reject:function(e){var t=Jk.f(this),i=t.reject;return i(e),t.promise}})});var Uc=g((VB,Dg)=>{"use strict";var eR=di(),tR=Ot(),iR=Wr();Dg.exports=function(s,e){if(eR(s),tR(e)&&e.constructor===s)return e;var t=iR.f(s),i=t.resolve;return i(e),t.promise}});var Vg=g(()=>{"use strict";var rR=He(),sR=Di(),Bg=ti(),aR=Ir(),Cg=Qr().CONSTRUCTOR,nR=Uc(),oR=sR("Promise"),uR=Bg&&!Cg;rR({target:"Promise",stat:!0,forced:Bg||Cg},{resolve:function(e){return nR(uR&&this===oR?aR:this,e)}})});var Og=g(()=>{"use strict";Tg();kg();Lg();Mg();$g();Vg()});var Ug=g(()=>{"use strict";var lR=He(),cR=ti(),zo=Ir(),dR=st(),Fg=Di(),Ng=Oe(),pR=cc(),_g=Uc(),hR=Hr(),jc=zo&&zo.prototype,fR=!!zo&&dR(function(){jc.finally.call({then:function(){}},function(){})});lR({target:"Promise",proto:!0,real:!0,forced:fR},{finally:function(s){var e=pR(this,Fg("Promise")),t=Ng(s);return this.then(t?function(i){return _g(e,s()).then(function(){return i})}:s,t?function(i){return _g(e,s()).then(function(){throw i})}:s)}});!cR&&Ng(zo)&&(qc=Fg("Promise").prototype.finally,jc.finally!==qc&&hR(jc,"finally",qc,{unsafe:!0}));var qc});var jg=g((jB,qg)=>{"use strict";Xm();Og();Ug();var mR=Ki();qg.exports=mR("Promise","finally")});var Gg=g((HB,Hg)=>{"use strict";var bR=jg();Hg.exports=bR});var Ra=g((GB,zg)=>{"use strict";var gR=Gg();zg.exports=gR});var Zg=g(()=>{"use strict";var IR=He(),xR=Vl().values;IR({target:"Object",stat:!0},{values:function(e){return xR(e)}})});var tS=g((IC,eS)=>{"use strict";Zg();var ER=Vr();eS.exports=ER.Object.values});var rS=g((xC,iS)=>{"use strict";var wR=tS();iS.exports=wR});var Er=g((EC,sS)=>{"use strict";var PR=rS();sS.exports=PR});var mS=g(()=>{"use strict";var VR=He(),OR=Or(),_R=jr(),FR=ma(),NR=ba();VR({target:"Array",proto:!0},{at:function(e){var t=OR(this),i=_R(t),r=FR(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});NR("at")});var gS=g((MV,bS)=>{"use strict";mS();var UR=Ki();bS.exports=UR("Array","at")});var vS=g(($V,SS)=>{"use strict";var qR=gS();SS.exports=qR});var si=g((DV,yS)=>{"use strict";var jR=vS();yS.exports=jR});var ud=g((c_,qS)=>{"use strict";var ZR=fr();qS.exports=Array.isArray||function(e){return ZR(e)==="Array"}});var HS=g((d_,jS)=>{"use strict";var eL=TypeError,tL=9007199254740991;jS.exports=function(s){if(s>tL)throw eL("Maximum allowed index exceeded");return s}});var QS=g((p_,zS)=>{"use strict";var iL=ud(),rL=jr(),sL=HS(),aL=Fr(),GS=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,d=n?aL(n,o):!1,c,h;l<i;)l in t&&(c=d?d(t[l],l,e):t[l],a>0&&iL(c)?(h=rL(c),u=GS(s,e,c,h,u,a-1)-1):(sL(u+1),s[u]=c),u++),l++;return u};zS.exports=GS});var XS=g((h_,KS)=>{"use strict";var WS=ud(),nL=lc(),oL=Ot(),uL=at(),lL=uL("species"),YS=Array;KS.exports=function(s){var e;return WS(s)&&(e=s.constructor,nL(e)&&(e===YS||WS(e.prototype))?e=void 0:oL(e)&&(e=e[lL],e===null&&(e=void 0))),e===void 0?YS:e}});var ZS=g((f_,JS)=>{"use strict";var cL=XS();JS.exports=function(s,e){return new(cL(s))(e===0?0:e)}});var ev=g(()=>{"use strict";var dL=He(),pL=QS(),hL=ci(),fL=Or(),mL=jr(),bL=ZS();dL({target:"Array",proto:!0},{flatMap:function(e){var t=fL(this),i=mL(t),r;return hL(e),r=bL(t,0),r.length=pL(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var tv=g(()=>{"use strict";var gL=ba();gL("flatMap")});var rv=g((v_,iv)=>{"use strict";ev();tv();var SL=Ki();iv.exports=SL("Array","flatMap")});var av=g((y_,sv)=>{"use strict";var vL=rv();sv.exports=vL});var Ua=g((T_,nv)=>{"use strict";var yL=av();nv.exports=yL});var qa=g((I_,ov)=>{"use strict";var TL=Sa(),IL=String;ov.exports=function(s){if(TL(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return IL(s)}});var ld=g((x_,uv)=>{"use strict";uv.exports=`
|
|
7
|
+
\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var dv=g((E_,cv)=>{"use strict";var xL=Ze(),EL=Yi(),wL=qa(),dd=ld(),lv=xL("".replace),PL=RegExp("^["+dd+"]+"),AL=RegExp("(^|[^"+dd+"])["+dd+"]+$"),cd=function(s){return function(e){var t=wL(EL(e));return s&1&&(t=lv(t,PL,"")),s&2&&(t=lv(t,AL,"$1")),t}};cv.exports={start:cd(1),end:cd(2),trim:cd(3)}});var mv=g((w_,fv)=>{"use strict";var kL=jl().PROPER,RL=st(),pv=ld(),hv="\u200B\x85\u180E";fv.exports=function(s){return RL(function(){return!!pv[s]()||hv[s]()!==hv||kL&&pv[s].name!==s})}});var pd=g((P_,bv)=>{"use strict";var LL=dv().start,ML=mv();bv.exports=ML("trimStart")?function(){return LL(this)}:"".trimStart});var Sv=g(()=>{"use strict";var $L=He(),gv=pd();$L({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==gv},{trimLeft:gv})});var yv=g(()=>{"use strict";Sv();var DL=He(),vv=pd();DL({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==vv},{trimStart:vv})});var Iv=g((M_,Tv)=>{"use strict";yv();var BL=Ki();Tv.exports=BL("String","trimLeft")});var Ev=g(($_,xv)=>{"use strict";var CL=Iv();xv.exports=CL});var Pv=g((D_,wv)=>{"use strict";var VL=Ev();wv.exports=VL});var Fv=g(()=>{"use strict"});var Nv=g(()=>{"use strict"});var qv=g((pU,Uv)=>{"use strict";var iM=Ot(),rM=fr(),sM=at(),aM=sM("match");Uv.exports=function(s){var e;return iM(s)&&((e=s[aM])!==void 0?!!e:rM(s)==="RegExp")}});var Hv=g((hU,jv)=>{"use strict";var nM=di();jv.exports=function(){var s=nM(this),e="";return s.hasIndices&&(e+="d"),s.global&&(e+="g"),s.ignoreCase&&(e+="i"),s.multiline&&(e+="m"),s.dotAll&&(e+="s"),s.unicode&&(e+="u"),s.unicodeSets&&(e+="v"),s.sticky&&(e+="y"),e}});var Qv=g((fU,zv)=>{"use strict";var oM=Vt(),uM=ii(),lM=la(),cM=Hv(),Gv=RegExp.prototype;zv.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Gv)&&!uM(s,"flags")&&lM(Gv,s)?oM(cM,s):e}});var Yv=g((mU,Wv)=>{"use strict";var gd=Ze(),dM=Or(),pM=Math.floor,md=gd("".charAt),hM=gd("".replace),bd=gd("".slice),fM=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,mM=/\$([$&'`]|\d{1,2})/g;Wv.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=mM;return r!==void 0&&(r=dM(r),u=fM),hM(a,u,function(l,d){var c;switch(md(d,0)){case"$":return"$";case"&":return s;case"`":return bd(e,0,t);case"'":return bd(e,n);case"<":c=r[bd(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var p=pM(h/10);return p===0?l:p<=o?i[p-1]===void 0?md(d,1):i[p-1]+md(d,1):l}c=i[h-1]}return c===void 0?"":c})}});var Jv=g(()=>{"use strict";var bM=He(),gM=Vt(),vd=Ze(),Kv=Yi(),SM=Oe(),vM=Cr(),yM=qv(),cs=qa(),TM=da(),IM=Qv(),xM=Yv(),EM=at(),wM=ti(),PM=EM("replace"),AM=TypeError,Sd=vd("".indexOf),kM=vd("".replace),Xv=vd("".slice),RM=Math.max;bM({target:"String",proto:!0},{replaceAll:function(e,t){var i=Kv(this),r,a,n,o,u,l,d,c,h,p,f=0,b="";if(!vM(e)){if(r=yM(e),r&&(a=cs(Kv(IM(e))),!~Sd(a,"g")))throw new AM("`.replaceAll` does not allow non-global regexes");if(n=TM(e,PM),n)return gM(n,e,i,t);if(wM&&r)return kM(cs(i),e,t)}for(o=cs(i),u=cs(e),l=SM(t),l||(t=cs(t)),d=u.length,c=RM(1,d),h=Sd(o,u);h!==-1;)p=l?cs(t(u,h,o)):xM(u,o,h,[],void 0,t),b+=Xv(o,f,h)+p,f=h+d,h=h+c>o.length?-1:Sd(o,u,h+c);return f<o.length&&(b+=Xv(o,f)),b}})});var ey=g((SU,Zv)=>{"use strict";Fv();Nv();Jv();var LM=Ki();Zv.exports=LM("String","replaceAll")});var iy=g((vU,ty)=>{"use strict";var MM=ey();ty.exports=MM});var yd=g((yU,ry)=>{"use strict";var $M=iy();ry.exports=$M});var ay=g((TU,sy)=>{"use strict";var DM=ma(),BM=qa(),CM=Yi(),VM=RangeError;sy.exports=function(e){var t=BM(CM(this)),i="",r=DM(e);if(r<0||r===1/0)throw new VM("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var cy=g((IU,ly)=>{"use strict";var uy=Ze(),OM=Ll(),ny=qa(),_M=ay(),FM=Yi(),NM=uy(_M),UM=uy("".slice),qM=Math.ceil,oy=function(s){return function(e,t,i){var r=ny(FM(e)),a=OM(t),n=r.length,o=i===void 0?" ":ny(i),u,l;return a<=n||o===""?r:(u=a-n,l=NM(o,qM(u/o.length)),l.length>u&&(l=UM(l,0,u)),s?r+l:l+r)}};ly.exports={start:oy(!1),end:oy(!0)}});var py=g((xU,dy)=>{"use strict";var jM=br();dy.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(jM)});var hy=g(()=>{"use strict";var HM=He(),GM=cy().start,zM=py();HM({target:"String",proto:!0,forced:zM},{padStart:function(e){return GM(this,e,arguments.length>1?arguments[1]:void 0)}})});var my=g((PU,fy)=>{"use strict";hy();var QM=Ki();fy.exports=QM("String","padStart")});var gy=g((AU,by)=>{"use strict";var WM=my();by.exports=WM});var Td=g((kU,Sy)=>{"use strict";var YM=gy();Sy.exports=YM});var _$={};UT(_$,{ChromecastState:()=>sa,HttpConnectionType:()=>ho,Observable:()=>Si.Observable,PlaybackState:()=>vt,Player:()=>co,PredefinedQualityLimits:()=>aa,SDK_VERSION:()=>O$,Subject:()=>Si.Subject,Subscription:()=>Si.Subscription,Surface:()=>fo,VERSION:()=>el,ValueSubject:()=>Si.ValueSubject,VideoFormat:()=>li,VideoQuality:()=>Si.VideoQuality,clientChecker:()=>te,isMobile:()=>Zr});module.exports=qT(_$);var el="2.0.131";var vt=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(vt||{}),li=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(li||{});var sa=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(sa||{}),ho=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(ho||{});var fo=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(fo||{}),aa=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(aa||{});var DT=K(_t(),1);var le=require("@vkontakte/videoplayer-shared/es2015");var Jh=s=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",s),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var vo=class{constructor(e){this.connection$=new le.ValueSubject(void 0);this.castState$=new le.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new le.Subject;this.realCastState$=new le.ValueSubject("NOT_AVAILABLE");this.subscription=new le.Subscription;this.isDestroyed=!1;var a;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,le.isNonNullable)((a=window.chrome)==null?void 0:a.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||Jh("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:le.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,a;(a=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||a.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,le.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,le.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,le.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,le.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var a,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(a=i.getCurrentSession())==null?void 0:a.getMediaSession())==null?void 0:n.media)==null?void 0:o.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,le.assertNever)(r.sessionState)}})).add((0,le.merge)((0,le.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,le.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,le.map)(r=>r.castState)),(0,le.observableFrom)([i.getCastState()])).pipe((0,le.filterChanged)(),(0,le.map)(cE),(0,le.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=(0,le.isNonNullable)(this.connection$.getValue());if(a&&!n){let l=i.getCurrentSession();(0,le.assertNonNullable)(l);let d=l.getCastDevice(),c=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,le.isNullable)(c)||c===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:d}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,le.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch(a){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:le.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},cE=s=>{switch(s){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,le.assertNever)(s)}};var Zd=K(_t(),1),yT=K(Sr(),1),TT=K(sc(),1);var Kg=K(Ra(),1);var Hc=require("@vkontakte/videoplayer-shared/es2015");var _e=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,Hc.assertNever)(t)}return s},Ji=(s,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(s);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(s);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,Hc.assertNever)(e)}};var O=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var pi=require("@vkontakte/videoplayer-shared/es2015"),re=class{constructor(e){this.transitionStarted$=new pi.Subject;this.transitionEnded$=new pi.Subject;this.transitionUpdated$=new pi.Subject;this.forceChanged$=new pi.Subject;this.stateChangeStarted$=(0,pi.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,pi.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,pi.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var Qg=require("@vkontakte/videoplayer-shared/es2015"),Wg=s=>{switch(s){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,Qg.assertNever)(s)}};var X=require("@vkontakte/videoplayer-shared/es2015");var SR=5,vR=5,yR=500,Yg=7e3,La=class{constructor(e){this.subscription=new X.Subscription;this.loadMediaTimeoutSubscription=new X.Subscription;this.videoState=new re("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&e!=="stopped"){this.seek(a.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,X.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,X.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,X.assertNever)(e)}break}default:(0,X.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Wg(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new X.Subscription;this.subscription.add(e),this.subscription.add((0,X.merge)(this.videoState.stateChangeStarted$.pipe((0,X.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,X.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new X.Subject;e.add(r.pipe((0,X.debounce)(yR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>SR)&&r.next(o),a=o})),e.add((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:a}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&a.duration-a.currentTime<vR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),O(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,X.assertNever)(n)}}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,X.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,X.observableFrom)(["init"])).pipe((0,X.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),O(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),O(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&O(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,a;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(a=e.muted)!=null?a:t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){var l;let t=this.params.source,i,r,a;switch(e){case"MPEG":{let d=t[e];(0,X.assertNonNullable)(d);let c=(0,X.getHighestQuality)(Object.keys(d));(0,X.assertNonNullable)(c);let h=d[c];(0,X.assertNonNullable)(h),i=h,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let d=t[e];(0,X.assertNonNullable)(d),i=d.url,r="application/x-mpegurl",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let d=t[e];(0,X.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let d=t[e];(0,X.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let d=t[e];(0,X.assertNonNullable)(d),i=_e(d.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let d="Unsupported format for Chromecast",c=new Error(d);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:X.ErrorCategory.VIDEO_PIPELINE,message:d,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,X.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l:i,r);n.contentUrl=i,n.streamType=a,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,X.isNonNullable)(o)&&(n.metadata.title=o),(0,X.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((r,a)=>{this.loadMediaTimeoutSubscription.add((0,X.timeout)(Yg).subscribe(()=>a(`timeout(${Yg})`)))});(0,Kg.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let a=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:a}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:X.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var nd=K(_t(),1);var Wc=require("@vkontakte/videoplayer-shared/es2015");var Xg=require("@vkontakte/videoplayer-shared/es2015"),Jg=s=>{try{s.pause(),s.playbackRate=0,(0,Xg.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Qo=require("@vkontakte/videoplayer-shared/es2015"),Gc=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},zc=window.WeakMap?new WeakMap:new Gc,Qc=window.WeakMap?new WeakMap:new Map,TR=(s,e=20)=>{let t=0;return(0,Qo.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},nt=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,Wc.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),zc.set(i,r);let a=new Qo.Subscription;return a.add(TR(i,e)),Qc.set(i,a),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},ot=s=>{let e=Qc.get(s);e==null||e.unsubscribe(),Qc.delete(s);let t=zc.get(s);zc.delete(s),t?(0,Wc.clearVideoElement)(s):Jg(s)};var Yc=K(Er(),1),J=require("@vkontakte/videoplayer-shared/es2015");var Zi=require("@vkontakte/videoplayer-shared/es2015"),Wo=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,Zi.isNullable)(r),l=new Zi.Subscription;return r&&l.add(r.subscribe(d=>{let c=s.getState();i(d,c)&&s.setState(d)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(d=>{t(d.to),u&&s.setState(d.to)},a)),l},Ht=(s,e,t)=>Wo(e,()=>s.loop,i=>{(0,Zi.isNonNullable)(i)&&(s.loop=i)},{onError:t}),ut=(s,e,t,i)=>Wo(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,Zi.isNonNullable)(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||(r==null?void 0:r.muted)===(a==null?void 0:a.muted)&&(r==null?void 0:r.volume)===(a==null?void 0:a.volume),changed$:t,onError:i}),Et=(s,e,t,i)=>Wo(e,()=>s.playbackRate,r=>{(0,Zi.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),er=Wo;var AR=s=>["__",s.language,s.label].join("|"),kR=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Kc=class s{constructor(e){this.available$=new J.Subject;this.current$=new J.ValueSubject(void 0);this.error$=new J.Subject;this.subscription=new J.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=a=>{this.error$.next({id:"TextTracksManager",category:J.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:a})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(er(t.internalTextTracks,()=>(0,Yc.default)(this.internalTracks),a=>{(0,J.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,J.isNonNullable)(a)&&(0,J.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,J.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(er(t.externalTextTracks,()=>(0,Yc.default)(this.externalTracks),a=>{(0,J.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,J.isNonNullable)(a)&&(0,J.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,J.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(er(t.currentTextTrack,()=>{if(this.video)return;let a=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return a&&this.htmlTextTrackToITextTrack(a).id},a=>this.select(a),{changed$:this.current$,onError:r})),this.subscription.add(er(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,J.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,J.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,J.merge)((0,J.fromEvent)(e,"addtrack"),(0,J.fromEvent)(e,"removetrack"),(0,J.observableFrom)(["init"])).pipe((0,J.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,J.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,J.merge)((0,J.fromEvent)(e,"change"),(0,J.observableFrom)(["init"])).pipe((0,J.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,J.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,J.filterChanged)()).subscribe(this.current$));let t=i=>{var r,a;return this.applyCueSettings((a=(r=i.target)==null?void 0:r.activeCues)!=null?a:null)};this.subscription.add((0,J.fromEvent)(e,"addtrack").subscribe(i=>{var a,n;(a=i.track)==null||a.addEventListener("cuechange",t);let r=o=>{var l,d,c,h,p;let u=(d=(l=o.target)==null?void 0:l.cues)!=null?d:null;u&&u.length&&(this.applyCueSettings((h=(c=o.target)==null?void 0:c.cues)!=null?h:null),(p=o.target)==null||p.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,J.fromEvent)(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,J.isNonNullable)(t.align)&&(r.align=t.align),(0,J.isNonNullable)(t.position)&&(r.position=t.position),(0,J.isNonNullable)(t.size)&&(r.size=t.size),(0,J.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,J.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,d,c;let{language:t,label:i}=e,r=e.id?e.id:AR(e),a=this.externalTracks.has(r),n=(l=a?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:(d=this.externalTracks.get(r))==null?void 0:d.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(c=this.internalTracks.get(r))==null?void 0:c.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:a})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===a)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,J.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,J.isNullable)(e)||!kR(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,J.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,J.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},wt=Kc;var wr=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var aS=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},Xc=s=>{let e=aS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},nS=s=>{let e=aS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var j=require("@vkontakte/videoplayer-shared/es2015");var RR=3,oS=(s,e,t=RR)=>{let i=0,r=0;for(let a=0;a<s.length;a++){let n=s.start(a),o=s.end(a);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=a-1;u>=0;u--)s.end(u)+t>=i&&(i=s.start(u));for(let u=a+1;u<s.length;u++)s.start(u)-t<=r&&(r=s.end(u))}}return{from:i,to:r}};var Yo=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||r||a||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var uS=K(_t(),1);var Zr=()=>{var s,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((s=navigator.appVersion)!=null?s:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var Ko=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,uS.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Zr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){return A(this,null,function*(){let{userAgentData:e}=navigator;if(e){let t=yield e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}})}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,a=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||a||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let a=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(a);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var Xo=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){var t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(i){console.error(i)}}};var Nt=()=>window.ManagedMediaSource||window.MediaSource,es=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},lS=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Jo=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var LR=document.createElement("video"),MR='video/mp4; codecs="avc1.42000a,mp4a.40.2"',$R='video/mp4; codecs="hev1.1.6.L93.B0"',cS='video/webm; codecs="vp09.00.10.08"',dS='video/webm; codecs="av01.0.00M.08"',DR='audio/mp4; codecs="mp4a.40.2"',BR='audio/webm; codecs="opus"',pS,CR=()=>A(void 0,null,function*(){if(!window.navigator.mediaCapabilities)return;let s={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=yield Promise.all([window.navigator.mediaCapabilities.decodingInfo(U(k({},s),{video:U(k({},s.video),{contentType:dS})})),window.navigator.mediaCapabilities.decodingInfo(U(k({},s),{video:U(k({},s.video),{contentType:cS})}))]);pS={DASH_WEBM_AV1:e,DASH_WEBM:t}});CR().catch(s=>{console.log(LR),console.error(s)});var Zo=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return pS}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,a,n,o,u,l,d,c,h,p,f,b,S,v,y,x,E;this._video=document.createElement("video");try{this._protocols={mms:es(),mse:lS(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(a=this._video).canPlayType)!=null&&n.call(a,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let P=!!((d=(l=Nt())==null?void 0:l.isTypeSupported)!=null&&d.call(l,MR)),B=!!((h=(c=Nt())==null?void 0:c.isTypeSupported)!=null&&h.call(c,$R)),q=!!((f=(p=Nt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,DR));this._codecs={h264:P,h265:B,vp9:!!((S=(b=Nt())==null?void 0:b.isTypeSupported)!=null&&S.call(b,cS)),av1:!!((y=(v=Nt())==null?void 0:v.isTypeSupported)!=null&&y.call(v,dS)),aac:q,opus:!!((E=(x=Nt())==null?void 0:x.isTypeSupported)!=null&&E.call(x,BR)),mpeg:(P||B)&&q},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(P){console.error(P)}this.destroyVideoElement()}destroyVideoElement(){var t;if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};var hS="audio/mpeg",eu=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,hS))},this._codecs={mp3:!!((r=(i=Nt())==null?void 0:i.isTypeSupported)!=null&&r.call(i,hS))}}catch(a){console.error(a)}this.destroyAudioElement()}destroyAudioElement(){var t;if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var fS=require("@vkontakte/videoplayer-shared/es2015");var Jc=class{constructor(){this.isInited$=new fS.ValueSubject(!1);this._displayChecker=new Xo,this._deviceChecker=new Ko(this._displayChecker),this._browserChecker=new Yo,this._videoChecker=new Zo(this._deviceChecker,this._browserChecker),this._audioChecker=new eu,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}detect(){return A(this,null,function*(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)})}},te=new Jc;var lt=s=>{let e=$=>(0,j.fromEvent)(s,$).pipe((0,j.mapTo)(void 0)),t=new j.Subscription,i=()=>t.unsubscribe(),a=(0,j.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map($=>(0,j.fromEvent)(s,$))).pipe((0,j.map)($=>$.type==="ended"?s.readyState<2:s.readyState<3),(0,j.filterChanged)()),n=(0,j.merge)((0,j.fromEvent)(s,"progress"),(0,j.fromEvent)(s,"timeupdate")).pipe((0,j.map)(()=>oS(s.buffered,s.currentTime))),o=te.browser.isSafari?(0,j.combine)({play:e("play").pipe((0,j.once)()),playing:e("playing")}).pipe((0,j.mapTo)(void 0)):e("playing"),u=(0,j.fromEvent)(s,"volumechange").pipe((0,j.map)(()=>({muted:s.muted,volume:s.volume}))),l=(0,j.fromEvent)(s,"ratechange").pipe((0,j.map)(()=>s.playbackRate)),d=(0,j.fromEvent)(s,"error").pipe((0,j.filter)(()=>!!(s.error||s.played.length)),(0,j.map)(()=>{var W;let $=s.error;return{id:$?`MediaError#${$.code}`:"HtmlVideoError",category:j.ErrorCategory.VIDEO_PIPELINE,message:$?$.message:"Error event from HTML video element",thrown:(W=s.error)!=null?W:void 0}})),c=(0,j.fromEvent)(s,"timeupdate").pipe((0,j.map)(()=>s.currentTime)),h=new j.Subject,p=.3,f;t.add(c.subscribe($=>{s.loop&&(0,j.isNonNullable)(f)&&(0,j.isNonNullable)($)&&f>=s.duration-p&&$<=p&&h.next(f),f=$}));let b=e("pause").pipe((0,j.filter)(()=>!s.error&&f!==s.duration)),S=(0,j.fromEvent)(s,"enterpictureinpicture"),v=(0,j.fromEvent)(s,"leavepictureinpicture"),y=new j.ValueSubject(nS(s));t.add(S.subscribe(()=>y.next(!0))),t.add(v.subscribe(()=>y.next(!1)));let x=new j.ValueSubject(Xc(s)),E=(0,j.fromEvent)(s,"fullscreenchange");t.add(E.pipe((0,j.map)(()=>Xc(s))).subscribe(x));let P=.1,B=1e3,q=(0,j.fromEvent)(s,"timeupdate").pipe((0,j.filter)($=>s.duration-s.currentTime<P)),_=(0,j.merge)(q.pipe((0,j.filter)($=>!s.loop)),(0,j.fromEvent)(s,"ended")).pipe((0,j.throttle)(B),(0,j.mapTo)(void 0)),G=q.pipe((0,j.filter)($=>s.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:_,looped$:h,loopExpected$:G,error$:d,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:(0,j.fromEvent)(s,"durationchange").pipe((0,j.map)(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:y,inFullscreen$:x,enterPip$:S,leavePip$:v,destroy:i}};var Ci=require("@vkontakte/videoplayer-shared/es2015"),fi=s=>{switch(s){case"mobile":return Ci.VideoQuality.Q_144P;case"lowest":return Ci.VideoQuality.Q_240P;case"low":return Ci.VideoQuality.Q_360P;case"sd":case"medium":return Ci.VideoQuality.Q_480P;case"hd":case"high":return Ci.VideoQuality.Q_720P;case"fullhd":case"full":return Ci.VideoQuality.Q_1080P;case"quadhd":case"quad":return Ci.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Ci.VideoQuality.Q_2160P}};var Tt=K(si(),1),td=K(_t(),1),Pr=K(Sr(),1),C=require("@vkontakte/videoplayer-shared/es2015");var Zc=!1,Vi={},TS=s=>{Zc=s},IS=()=>{Vi={}},xS=s=>{s(Vi)},Ma=(s,e)=>{var t;Zc&&(Vi.meta=(t=Vi.meta)!=null?t:{},Vi.meta[s]=e)},yt=class{constructor(e){this.name=e}next(e){var i,r;if(!Zc)return;Vi.series=(i=Vi.series)!=null?i:{};let t=(r=Vi.series[this.name])!=null?r:[];t.push([Date.now(),e]),Vi.series[this.name]=t}};var Ge=require("@vkontakte/videoplayer-shared/es2015");function ed(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function tu(s,e,t){return!!s&&ed(s,e,t)==="high_quality"}function ts(s,e,t){return(0,Ge.isNullable)(s)||(0,Ge.isNonNullable)(s.min)&&(0,Ge.isNonNullable)(s.max)&&(0,Ge.isLower)(s.max,s.min)||(0,Ge.isNonNullable)(s.min)&&e&&(0,Ge.isHigher)(s.min,e)||(0,Ge.isNonNullable)(s.max)&&t&&(0,Ge.isLower)(s.max,t)}function ES({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return ts({max:s!=null&&s.max?(0,Ge.videoHeightToQuality)(s.max):void 0,min:s!=null&&s.min?(0,Ge.videoHeightToQuality)(s.min):void 0},e?(0,Ge.videoHeightToQuality)(e):void 0,t?(0,Ge.videoHeightToQuality)(t):void 0)}var RS=new yt("best_bitrate"),ru=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var is=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),tr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,C.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},su='Assertion "ABR Tracks is empty array" failed',iu=new WeakMap,wS=new WeakMap,PS=new WeakMap,$a=(s,e,t,i)=>{var u;let r=[...e].sort(is(1)),a=[...t].sort(is(1)),n=a.filter(l=>(0,C.isNonNullable)(l.bitrate)&&(0,C.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),o=(u=(0,Tt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Tt.default)(a,-1);return o&&(0,td.default)(n,o)?o:n.length?(0,Tt.default)(n,-1):(0,Tt.default)(a,0)},Da=(s,e,t,i)=>{var u;let r=iu.get(e);r||(r=[...e].sort(is(1)),iu.set(e,r));let a=iu.get(t);a||(a=[...t].sort(is(1)),iu.set(t,a));let n=PS.get(s);n||(n=a.filter(l=>(0,C.isNonNullable)(l.bitrate)&&(0,C.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),PS.set(s,n));let o=(u=(0,Tt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Tt.default)(a,-1);return o&&(0,td.default)(n,o)?o:n.length?(0,Tt.default)(n,-1):(0,Tt.default)(a,0)},AS=s=>"quality"in s,au=(s,e,t,i)=>{var n;let r=(0,C.isNonNullable)((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&(0,C.isNonNullable)(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&(0,C.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!a&&i.recordSelection(t),a&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=AS(o)?"video":"audio",l=AS(o)?o.quality:o.bitrate;return e({message:`
|
|
8
8
|
[last ${u} selected] ${l}
|
|
9
|
-
`}),o}return i==null||i.recordSwitch(t),t},
|
|
9
|
+
`}),o}return i==null||i.recordSwitch(t),t},HR=(s,e)=>Math.log(e)/Math.log(s),LS=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&te.display.pixelRatio){let a=te.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,d=HR(n,o*a+u)+l;Number.isFinite(d)&&(r*=d)}}return tu(t,s.highQualityLimit,s.trafficSavingLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},kS=new WeakMap,mi=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,abrLogger:f,panelSize:b})=>{var Z,z,de,D,N;(0,C.assertNotEmptyArray)(s,su);let{containerSizeFactor:S,containerSizeLimit:v}=LS({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,C.isNonNullable)(o)?o:1,x=kS.get(s);x||(x=s.filter(V=>!(0,C.isInvariantQuality)(V.quality)).sort((V,M)=>(0,C.isHigher)(V.quality,M.quality)?-1:1),kS.set(s,x));let E=(Z=(0,Tt.default)(x,-1))==null?void 0:Z.quality,P=(z=(0,Tt.default)(x,0))==null?void 0:z.quality,B=ts(r,P,E),q=y*ru(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),_={},G=null;for(let V of x){let M=!0;if(v)if(V.size)M=V.size.width<=v.width&&V.size.height<=v.height;else{let rt=v&&(0,C.videoSizeToQuality)(v);M=rt?(0,C.isLowerOrEqual)(V.quality,rt):!0}if(!M){_[V.quality]="FitsContainer";continue}let H=p||t,we=(0,C.isNonNullable)(H)&&isFinite(H)&&(0,C.isNonNullable)(V.bitrate)?H-a>=V.bitrate*q:!0,it=tu(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===V.quality;if(!we&&!it){_[V.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,C.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,C.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,C.isHigher)(V.quality,u.quality)){_[V.quality]="Buffer";continue}if(!!c&&(0,C.isHigherOrEqual)(V.quality,c)&&!it){_[V.quality]="DroppedFramesLimit";continue}if(!!h&&(0,C.isHigherOrEqual)(V.quality,h)&&!it){_[V.quality]="StallsLimit";continue}let Ue=B||((0,C.isNullable)(r==null?void 0:r.max)||(0,C.isLowerOrEqual)(V.quality,r.max))&&((0,C.isNullable)(r==null?void 0:r.min)||(0,C.isHigherOrEqual)(V.quality,r.min)),qe=(0,C.isNonNullable)(d)&&!d?(0,C.isLowerOrEqual)(V.quality,i.backgroundVideoQualityLimit):!0;if(!Ue||!qe){_[V.quality]="FitsQualityLimits";continue}G||(G=V)}G&&G.bitrate&&RS.next(G.bitrate);let $=(de=G!=null?G:(0,Tt.default)(x,-1))!=null?de:s[0],W=l==null?void 0:l.last,F=au(i,f,$,l);return(0,C.isNonNullable)(l)&&F.quality!==(W==null?void 0:W.quality)&&f({message:`
|
|
10
10
|
[VIDEO TRACKS ABR]
|
|
11
11
|
[available video tracks]
|
|
12
|
-
${
|
|
12
|
+
${s.map(V=>{var M,H;return`{ id: ${V.id}, quality: ${V.quality}, bitrate: ${V.bitrate}, size: ${(M=V.size)==null?void 0:M.width}:${(H=V.size)==null?void 0:H.height} }`}).join(`
|
|
13
13
|
`)}
|
|
14
14
|
|
|
15
15
|
[tuning]
|
|
16
|
-
${(0,
|
|
16
|
+
${(0,Pr.default)(i!=null?i:{}).map(([V,M])=>`${V}: ${M}`).join(`
|
|
17
17
|
`)}
|
|
18
18
|
|
|
19
19
|
[limit params]
|
|
20
20
|
containerSizeFactor: ${S},
|
|
21
|
-
containerSizeLimit: ${(
|
|
21
|
+
containerSizeLimit: ${(D=v==null?void 0:v.width)!=null?D:0} x ${(N=v==null?void 0:v.height)!=null?N:0},
|
|
22
22
|
estimatedThroughput: ${t},
|
|
23
|
-
stallsPredictedThroughput: ${
|
|
24
|
-
reserve: ${
|
|
23
|
+
stallsPredictedThroughput: ${p},
|
|
24
|
+
reserve: ${a},
|
|
25
25
|
playbackRate: ${o},
|
|
26
|
-
playbackRateFactor: ${
|
|
26
|
+
playbackRateFactor: ${y},
|
|
27
27
|
forwardBufferHealth: ${n},
|
|
28
|
-
bitrateFactor: ${
|
|
28
|
+
bitrateFactor: ${q},
|
|
29
29
|
minBufferToSwitchUp: ${i.minBufferToSwitchUp},
|
|
30
|
-
droppedVideoMaxQualityLimit: ${
|
|
31
|
-
stallsVideoMaxQualityLimit: ${
|
|
32
|
-
limitsAreInvalid: ${
|
|
30
|
+
droppedVideoMaxQualityLimit: ${c},
|
|
31
|
+
stallsVideoMaxQualityLimit: ${h},
|
|
32
|
+
limitsAreInvalid: ${B},
|
|
33
33
|
maxQualityLimit: ${r==null?void 0:r.max},
|
|
34
34
|
minQualityLimit: ${r==null?void 0:r.min},
|
|
35
35
|
|
|
36
36
|
[limited video tracks]
|
|
37
|
-
${(0,
|
|
37
|
+
${(0,Pr.default)(_).map(([V,M])=>`${V}: ${M}`).join(`
|
|
38
38
|
`)||"All tracks are available"}
|
|
39
39
|
|
|
40
|
-
[best video track] ${
|
|
41
|
-
[selected video track] ${
|
|
42
|
-
`}),
|
|
40
|
+
[best video track] ${G==null?void 0:G.quality}
|
|
41
|
+
[selected video track] ${F==null?void 0:F.quality}
|
|
42
|
+
`}),F},nu=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,abrLogger:f,panelSize:b})=>{var z,de,D,N,V;(0,C.assertNotEmptyArray)(s,su);let{containerSizeFactor:S,containerSizeLimit:v}=LS({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,C.isNonNullable)(o)?o:1,x=s.filter(M=>!(0,C.isInvariantQuality)(M.quality)).sort((M,H)=>(0,C.isHigher)(M.quality,H.quality)?-1:1),E=(z=(0,Tt.default)(x,-1))==null?void 0:z.quality,P=(de=(0,Tt.default)(x,0))==null?void 0:de.quality,B=ts(r,P,E),q=y*ru(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),_={},$=x.filter(M=>{let H=!0;if(v)if(M.size)H=M.size.width<=v.width&&M.size.height<=v.height;else{let jt=v&&(0,C.videoSizeToQuality)(v);H=jt?(0,C.isLowerOrEqual)(M.quality,jt):!0}if(!H)return _[M.quality]="FitsContainer",!1;let we=p||t,it=(0,C.isNonNullable)(we)&&isFinite(we)&&(0,C.isNonNullable)(M.bitrate)?we-a>=M.bitrate*q:!0,ye=tu(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===M.quality;if(!it&&!ye)return _[M.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,C.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,C.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,C.isHigher)(M.quality,u.quality))return _[M.quality]="Buffer",!1;if(!!c&&(0,C.isHigherOrEqual)(M.quality,c)&&!ye)return _[M.quality]="DroppedFramesLimit",!1;if(!!h&&(0,C.isHigherOrEqual)(M.quality,h)&&!ye)return _[M.quality]="StallsLimit",!1;let qe=B||((0,C.isNullable)(r==null?void 0:r.max)||(0,C.isLowerOrEqual)(M.quality,r.max))&&((0,C.isNullable)(r==null?void 0:r.min)||(0,C.isHigherOrEqual)(M.quality,r.min)),rt=(0,C.isNonNullable)(d)&&!d?(0,C.isLowerOrEqual)(M.quality,i.backgroundVideoQualityLimit):!0;return!qe||!rt?(_[M.quality]="FitsQualityLimits",!1):!0})[0];$&&$.bitrate&&RS.next($.bitrate);let W=(D=$!=null?$:(0,Tt.default)(x,-1))!=null?D:s[0],F=l==null?void 0:l.last,Z=au(i,f,W,l);return(0,C.isNonNullable)(l)&&Z.quality!==(F==null?void 0:F.quality)&&f({message:`
|
|
43
|
+
[VIDEO TRACKS ABR]
|
|
44
|
+
[available video tracks]
|
|
45
|
+
${s.map(M=>{var H,we;return`{ id: ${M.id}, quality: ${M.quality}, bitrate: ${M.bitrate}, size: ${(H=M.size)==null?void 0:H.width}:${(we=M.size)==null?void 0:we.height} }`}).join(`
|
|
46
|
+
`)}
|
|
47
|
+
|
|
48
|
+
[tuning]
|
|
49
|
+
${(0,Pr.default)(i!=null?i:{}).map(([M,H])=>`${M}: ${H}`).join(`
|
|
50
|
+
`)}
|
|
51
|
+
|
|
52
|
+
[limit params]
|
|
53
|
+
containerSizeFactor: ${S},
|
|
54
|
+
containerSizeLimit: ${(N=v==null?void 0:v.width)!=null?N:0} x ${(V=v==null?void 0:v.height)!=null?V:0},
|
|
55
|
+
estimatedThroughput: ${t},
|
|
56
|
+
stallsPredictedThroughput: ${p},
|
|
57
|
+
reserve: ${a},
|
|
58
|
+
playbackRate: ${o},
|
|
59
|
+
playbackRateFactor: ${y},
|
|
60
|
+
forwardBufferHealth: ${n},
|
|
61
|
+
bitrateFactor: ${q},
|
|
62
|
+
minBufferToSwitchUp: ${i.minBufferToSwitchUp},
|
|
63
|
+
droppedVideoMaxQualityLimit: ${c},
|
|
64
|
+
stallsVideoMaxQualityLimit: ${h},
|
|
65
|
+
limitsAreInvalid: ${B},
|
|
66
|
+
maxQualityLimit: ${r==null?void 0:r.max},
|
|
67
|
+
minQualityLimit: ${r==null?void 0:r.min},
|
|
68
|
+
|
|
69
|
+
[limited video tracks]
|
|
70
|
+
${(0,Pr.default)(_).map(([M,H])=>`${M}: ${H}`).join(`
|
|
71
|
+
`)||"All tracks are available"}
|
|
72
|
+
|
|
73
|
+
[best video track] ${$==null?void 0:$.quality}
|
|
74
|
+
[selected video track] ${Z==null?void 0:Z.quality}
|
|
75
|
+
`}),Z},ou=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,C.assertNotEmptyArray)(t,su);let d=r.considerPlaybackRate&&(0,C.isNonNullable)(a)?a:1,c=[...t].sort(is(-1)),h=s.bitrate;(0,C.assertNonNullable)(h);let p=d*ru(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=$a(s,e,t,r.minVideoAudioRatio),S=l||i;(0,C.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,C.isNonNullable)(x.bitrate)&&(0,C.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,y=f&&au(r,u,f,o);return(0,C.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
|
|
43
76
|
[AUDIO TRACKS ABR]
|
|
44
77
|
[available audio tracks]
|
|
45
78
|
${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
|
|
46
79
|
`)}
|
|
47
80
|
|
|
48
81
|
[tuning]
|
|
49
|
-
${(0,
|
|
82
|
+
${(0,Pr.default)(r!=null?r:{}).map(([x,E])=>`${x}: ${E}`).join(`
|
|
50
83
|
`)}
|
|
51
84
|
|
|
52
85
|
[limit params]
|
|
53
86
|
estimatedThroughput: ${i},
|
|
54
87
|
stallsPredictedThroughput: ${l},
|
|
55
|
-
reserve: ${
|
|
56
|
-
playbackRate: ${
|
|
57
|
-
playbackRateFactor: ${
|
|
88
|
+
reserve: ${h},
|
|
89
|
+
playbackRate: ${a},
|
|
90
|
+
playbackRateFactor: ${d},
|
|
58
91
|
forwardBufferHealth: ${n},
|
|
59
|
-
bitrateFactor: ${
|
|
92
|
+
bitrateFactor: ${p},
|
|
60
93
|
minBufferToSwitchUp: ${r.minBufferToSwitchUp},
|
|
61
94
|
|
|
62
|
-
[selected audio track] ${
|
|
63
|
-
`}),I};var Pe=a=>new URL(a).hostname;var B=require("@vkontakte/videoplayer-shared/es2015");var Wb=W(Jt(),1);var Hb=W(Je(),1);var Ub=a=>{if(a instanceof DOMException&&(0,Hb.default)(["Failed to load because no supported source was found.","The element has no supported sources."],a.message))throw a;return!(a instanceof DOMException&&(a.code===20||a.name==="AbortError"))},He=(a,e)=>A(void 0,null,function*(){let t=a.muted;try{yield a.play()}catch(i){if(!Ub(i))return!1;if(e&&e(),t)return console.warn(i),!1;a.muted=!0;try{yield a.play()}catch(r){return Ub(r)&&(a.muted=!1,console.warn(r)),!1}}return!0});var ze=require("@vkontakte/videoplayer-shared/es2015");var jb=W(tr(),1),It=require("@vkontakte/videoplayer-shared/es2015");function we(){return(0,It.now)()}function Bu(a){return we()-a}function _u(a){let e=a.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,r=n=>i.test(n);return{resolve:(n,o,u=!1)=>{r(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function Qb(a,e,t){let i=(...r)=>{t.apply(null,r),a.removeEventListener(e,i)};a.addEventListener(e,i)}function rr(a,e,t,i){let r=window.XMLHttpRequest,s,n,o,u=!1,l=0,c,d,m=!1,h="arraybuffer",f=7e3,g=2e3,S=()=>{if(u)return;(0,It.assertNonNullable)(c);let _=Bu(c),ie;if(_<g){ie=g-_,setTimeout(S,ie);return}g*=2,g>f&&(g=f),n&&n.abort(),n=new r,O()},y=_=>(s=_,te),I=_=>(d=_,te),x=()=>(h="json",te),w=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,d&&d(),t&&t()}},P=_=>(m=_,te),O=()=>{c=we(),n=new r,n.open("get",a);let _=0,ie,K=0,ue=()=>((0,It.assertNonNullable)(c),Math.max(c,Math.max(ie||0,K||0)));if(s&&n.addEventListener("progress",C=>{let Q=we();s.updateChunk&&C.loaded>_&&(s.updateChunk(ue(),C.loaded-_),_=C.loaded,ie=Q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>w())),n.addEventListener("load",()=>{if(u)return;(0,It.assertNonNullable)(n);let C=n.status;if(C>=200&&C<300){let{response:Q,responseType:oe}=n,$=Q==null?void 0:Q.byteLength;if(typeof $=="number"&&s){let N=$-_;N&&s.updateChunk&&s.updateChunk(ue(),N)}oe==="json"&&(!Q||!(0,jb.default)(Q).length)?w():(d&&d(),e(Q))}else w()}),n.addEventListener("error",()=>{w()}),m){let C=()=>{(0,It.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(K=we(),n.removeEventListener("readystatechange",C))};n.addEventListener("readystatechange",C)}return n.responseType=h,n.send(),te},te={withBitrateReporting:y,withParallel:P,withJSONResponse:x,withRetryCount:_=>(l=_,te),withRetryInterval:(_,ie)=>((0,It.isNonNullable)(_)&&(g=_),(0,It.isNonNullable)(ie)&&(f=ie),te),withTimeout:_=>(o=_,te),withFinally:I,send:O,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return te}var zr=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,r+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;r+=u,s.start=t,s.bytes-=u}}}if(r>0&&i>0){let s=r*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var Gb=W(tr(),1);var Kr=class{constructor(e,t,i,r,s){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=s}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=we(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=we()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=rr(t,s,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=we()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=we();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Gb.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=s._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),s._finallyCB&&s._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(s,e)}},s._cb=t,s._errorCB=i,s._retryCB=r,s.abort=function(){s.request&&s.request.abort()},s.withFinally=n=>(s._finallyCB=n,s),s}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Yb=require("@vkontakte/videoplayer-shared/es2015");var tn=1e4,Nu=3;var KA=6e4,XA=10,JA=1,ZA=500,Xr=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Yb.Subject,this.chunkRateEstimator=new zr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=_u(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=_u(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{var r;!!e.error&&!this.destroyed&&(t(`Video element error: ${(r=e.error)==null?void 0:r.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,r;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(i-1),t.currentTime<r&&(e("Fixup stall"),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,s,n=t&&1.62*(ee.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){s=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!Vb({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Wb.default)(this.manifest,-1).video.height})&&(u&&s.video.height>u||l&&s.video.height<l)||(s.bitrate<e&&n>Math.min(s.video.height,s.video.width)?(!r||s.bitrate>r.bitrate)&&(r=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,ze.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:s}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Qb(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Kr(Nu,tn,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,s=!1,n=null,o=null,u=null,l=null,c=!1,d=()=>{let w=s&&(!c||c===this.rep);return w||t("Not running!"),w},m=(w,P,O)=>{u&&u.abort(),u=rr(this.urlResolver.resolve(w,!1),P,O,()=>this._retryCallback()).withTimeout(tn).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Nu).withFinally(()=>{u=null}).send()},h=(w,P,O)=>{(0,ze.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(w,!1),P,O,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=w=>{let P=i.playbackRate;i.playbackRate!==w&&(t(`Playback rate switch: ${P}=>${w}`),i.playbackRate=w)},g=w=>{this.lowLatency=w,t(`lowLatency changed to ${w}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let w=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let O=we()-1e4,J=0;for(let ne=0;ne<this.bufferStates.length;ne++){let k=this.bufferStates[ne];w=Math.min(w,k.buf),k.ts<O&&J++}this.bufferStates.splice(0,J),t(`update playback rate; minBuffer=${w} drop=${J} jitter=${this.sourceJitter}`);let Z=w-JA;this.sourceJitter>=0?Z-=this.sourceJitter/2:this.sourceJitter-=1,Z>3?f(1.15):Z>1?f(1.1):Z>.3?f(1.05):f(1)}},y=w=>{let P,O=()=>P&&P.start?P.start.length:0,J=C=>P.start[C]/1e3,Z=C=>P.dur[C]/1e3,ne=C=>P.fragIndex+C,k=(C,Q)=>({chunkIdx:ne(C),startTS:J(C),dur:Z(C),discontinuity:Q}),te=()=>{let C=0;if(P&&P.dur){let Q=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,oe=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,$=Q;this.sourceJitter>1&&($+=this.sourceJitter-1);let N=P.dur.length-1;for(;N>=0&&($-=P.dur[N],!($<=0));--N);C=Math.min(N,P.dur.length-1-oe),C=Math.max(C,0)}return k(C,!0)},_=C=>{let Q=O();if(!(Q<=0)){if((0,ze.isNonNullable)(C)){for(let oe=0;oe<Q;oe++)if(J(oe)>C)return k(oe)}return te()}},ie=C=>{let Q=O(),oe=C?C.chunkIdx+1:0,$=oe-P.fragIndex;if(!(Q<=0)){if(!C||$<0||$-Q>XA)return t(`Resync: offset=${$} bChunks=${Q} chunk=`+JSON.stringify(C)),te();if(!($>=Q))return k(oe-P.fragIndex,!1)}},K=(C,Q,oe)=>{l&&l.abort(),l=rr(this.urlResolver.resolve(C,!0,this.lowLatency),Q,oe,()=>this._retryCallback()).withTimeout(tn).withRetryCount(Nu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(C,Q)=>{K(w,oe=>{if(!d())return;P=oe;let $=!!P.lowLatency;$!==this.lowLatency&&g($);let N=0;for(let Ae=0;Ae<P.dur.length;++Ae)N+=P.dur[Ae];N>0&&((0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(N/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,C(_(Q))},()=>this._handleNetworkError())},nextChunk:ie}},I=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:w=>{let{videoElement:P,logger:O}=this.params,J=y(e.jidxUrl),Z,ne,k,te,_=0,ie,K,ue,C=()=>{ie&&(clearTimeout(ie),ie=void 0);let se=Math.max(ZA,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=_+se,Oe=we(),Be=Math.min(1e4,Me-Oe);_=Oe;let ht=()=>{l||d()&&J.seek(()=>{d()&&(_=we(),Q(),C())})};Be>0?ie=window.setTimeout(()=>{this.paused?C():ht()},Be):ht()},Q=()=>{let se;for(;se=J.nextChunk(te);)te=se,ki(se);let Me=J.nextChunk(k);if(Me){if(k&&Me.discontinuity){O("Detected discontinuity; restarting playback"),this.paused?C():(I(),this._initPlayerWith(e));return}Ae(Me)}else C()},oe=(se,Me)=>{if(!d()||!this.sourceBuffer)return;let Oe,Be,ht,wt=Nt=>{window.setTimeout(()=>{d()&&oe(se,Me)},Nt)};if(this.sourceBuffer.updating)O("Source buffer is updating; delaying appendBuffer"),wt(100);else{let Nt=we(),si=P.currentTime;!this.paused&&P.buffered.length>1&&K===si&&Nt-ue>500&&(O("Stall suspected; trying to fix"),this._fixupStall()),K!==si&&(K=si,ue=Nt);let Ri=this._getBufferSizeSec();if(Ri>30)O(`Buffered ${Ri} seconds; delaying appendBuffer`),wt(2e3);else try{this.sourceBuffer.appendBuffer(se),this.videoPlayStarted?(this.bufferStates.push({ts:Nt,buf:Ri}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch(pr){if(pr.name==="QuotaExceededError")O("QuotaExceededError; delaying appendBuffer"),ht=this.sourceBuffer.buffered.length,ht!==0&&(Oe=this.sourceBuffer.buffered.start(0),Be=si,Be-Oe>4&&this.sourceBuffer.remove(Oe,Be-3)),wt(1e3);else throw pr}}},$=()=>{ne&&Z&&(O([`Appending chunk, sz=${ne.byteLength}:`,JSON.stringify(k)]),oe(ne,function(){ne=null,Q()}))},N=se=>e.fragUrlTemplate.replace("%%id%%",se.chunkIdx),Ae=se=>{d()&&h(N(se),(Me,Oe)=>{if(d()){if(Oe/=1e3,ne=Me,k=se,n=se.startTS,Oe){let Be=Math.min(10,se.dur/Oe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Be:Be}$()}},()=>this._handleNetworkError())},ki=se=>{d()&&((0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(N(se),!1)))},Pt=se=>{d()&&(e.cachedHeader=se,oe(se,()=>{Z=!0,$()}))};s=!0,J.seek(se=>{if(d()){if(_=we(),!se){C();return}te=se,!(0,ze.isNullable)(w)||se.startTS>w?Ae(se):(k=se,Q())}},w),e.cachedHeader?Pt(e.cachedHeader):m(e.headerUrl,Pt,()=>this._handleNetworkError())},stop:I,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,ze.isNonNullable)(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,ze.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,ze.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=d=>{if(!this.autoQuality)return;let m,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(h=this._getBufferSizeSec(),f=d/this.bitrate,h>10&&f>.8||h>15&&f>.5||h>20&&f>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(d)}`);return}m=this._selectQuality(d),m?this._switchToQuality(m):e(`Could not find quality by bitrate ${d}`)},s={updateChunk:(m,h)=>{let f=we();if(this.chunkRateEstimator.addInterval(m,f,h)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-m,speed:S}),!0}},get:()=>{let m=this.chunkRateEstimator.getBitRate();return m?m*.85:0}},n=-1/0,o,u=!0,l=()=>{let d=s.get();if(d&&o&&this.autoQuality){if(u&&d>o&&Bu(n)<3e4)return;i(d)}u=this.autoQuality};return{updateChunk:(d,m)=>{let h=s.updateChunk(d,m);return h&&l(),h},notifySwitch:d=>{let m=we();d<o&&(n=m),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=rr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(tn).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;He(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,s=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,l)=>{var c,d;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((d=(c=window.MediaSource)==null?void 0:c.isTypeSupported)!=null&&d.call(c,u.codecs))&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=s(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},KA))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var zb=W(Qi(),1),fe=require("@vkontakte/videoplayer-shared/es2015"),Fu=class{constructor(){this.onDroopedVideoFramesLimit$=new fe.Subject;this.subscription=new fe.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new fe.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!(0,fe.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,s=1-(i-r)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,fe.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n:0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,fe.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,fe.interval)(this.droppedFramesChecker.checkTime).pipe((0,fe.filter)(()=>this.playing),(0,fe.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,fe.debounce)(this.droppedFramesChecker.checkTime)),i=(0,fe.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){var i,r;let t=(r=(i=(0,zb.default)(this.limitCounts).filter(([,s])=>s>=this.droppedFramesChecker.countLimit).sort(([s],[n])=>(0,fe.isLower)(s,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?e:t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},rn=Fu;var an=require("@vkontakte/videoplayer-shared/es2015"),Kb=require("@vkontakte/videoplayer-shared/es2015");var Jr=()=>{var a;return!!((a=window.documentPictureInPicture)!=null&&a.window)||!!document.pictureInPictureElement};var ek=(a,e)=>new an.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Jr()))},L(L({},i),e));r.observe(a);let s=(0,Kb.fromEvent)(document,"visibilitychange").pipe((0,an.map)(n=>!document.hidden||Jr())).subscribe(n=>t.next(n));return()=>{r.unobserve(a),s.unsubscribe()}}),tt=ek;var tk=["paused","playing","ready"],ik=["paused","playing","ready"],Zr=class{constructor(e){this.subscription=new B.Subscription;this.videoState=new Y("stopped");this.representations$=new B.ValueSubject([]);this.droppedFramesManager=new rn;this.maxSeekBackTime$=new B.ValueSubject(1/0);this.zeroTime$=new B.ValueSubject(void 0);this.liveOffset=new Ti;this._dashCb=e=>{var t,i,r,s;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:B.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),c=(i=Xt(u.name))!=null?i:(0,B.videoSizeToQuality)(u.video),d=u.bitrate/1e3,m=L({},u.video);if(!c)continue;let h={id:l,quality:c,bitrate:d,size:m};o.push({track:h,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(s=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:s.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,B.isNonNullable)(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,qu.default)(ik,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&(0,qu.default)(tk,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource($e(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit($e(this.params.source.url,u))}return;default:return(0,B.assertNever)(e)}};this.textTracksManager=new et(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:B.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,B.merge)(this.videoState.stateChangeStarted$.pipe((0,B.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,B.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(r)}`})})),this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Pe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Ue(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,B.map)(r=>r.map(({track:s})=>s)),(0,B.filter)(r=>!!r.length),(0,B.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.to)==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,B.filterChanged)(),(0,B.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,B.combine)({zeroTime:this.zeroTime$.pipe((0,B.filter)(B.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:s})=>this.params.output.liveTime$.next(r+s*1e3),t)).add(Tt(this.video,this.params.desiredState.isLooped,t)).add(qe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ze(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(tt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:s}})=>{this.dash.setAutoQualityLimits({max:r&&(0,B.videoQualityToHeight)(r),min:s&&(0,B.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var s;switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((s=this.params.desiredState.playbackState.getTransition())==null?void 0:s.to)==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,B.assertNever)(r.to)}},t)).add((0,B.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,B.observableFrom)(["init"])).pipe((0,B.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}createLiveDashPlayer(){let e=new Xr({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var l,c,d,m,h,f;let e=this.representations$.getValue(),t=(c=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?c:this.params.desiredState.videoTrack.getState(),i=(m=(d=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:d.to)!=null?m:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,B.isNonNullable)(t)?t:ei(e.map(({track:g})=>g),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),s=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(h=this.params.desiredState.videoTrack.getState())==null?void 0:h.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||s!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||s!==o){let g=(f=e.find(({track:S})=>S.id===s))==null?void 0:f.representation;(0,B.assertNonNullable)(g,"Representations missing"),this.dash.startPlay(g,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,B.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s:0;this.params.output.position$.next(e/1e3),this.dash.reinit($e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Xb=Zr;var sS=W(Je(),1);var ar=(a,e)=>{let t=0;for(let i=0;i<a.length;i++){let r=a.start(i)*1e3,s=a.end(i)*1e3;r<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var j=require("@vkontakte/videoplayer-shared/es2015");var sn=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,s=i.length;r<s;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,s=i.length;r<s;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},sr=class extends sn{constructor(){super(),this.listeners||sn.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},ea=class{constructor(){Object.defineProperty(this,"signal",{value:new sr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch(r){typeof document!="undefined"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document=="undefined")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch(r){i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(ea.prototype[Symbol.toStringTag]="AbortController",sr.prototype[Symbol.toStringTag]="AbortSignal");function nn(a){return a.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof a.Request=="function"&&!a.Request.prototype.hasOwnProperty("signal")||!a.AbortController}function Uu(a){typeof a=="function"&&(a={fetch:a});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=a;if(!nn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||r)&&(s=function(l,c){let d;c&&c.signal&&(d=c.signal,delete c.signal);let m=new t(l,c);return d&&Object.defineProperty(m,"signal",{writable:!1,enumerable:!1,configurable:!0,value:d}),m},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let d;try{d=new DOMException("Aborted","AbortError")}catch(h){d=new Error("Aborted"),d.name="AbortError"}if(c.aborted)return Promise.reject(d);let m=new Promise((h,f)=>{c.addEventListener("abort",()=>f(d),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([m,n(u,l)])}return n(u,l)},Request:s}}var ta=nn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Jb=ta?Uu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Et=ta?Jb.fetch:window.fetch,UV=ta?Jb.Request:window.Request,Le=ta?ea:window.AbortController,HV=ta?sr:window.AbortSignal;var vl=W(ju(),1);var _g=W(Bg(),1),nr=require("@vkontakte/videoplayer-shared/es2015"),Ng=a=>{if(!a)return{id:"EmptyResponse",category:nr.ErrorCategory.PARSER,message:"Empty response"};if(a.length<=2&&a.match(/^\d+$/))return{id:`UVError#${a}`,category:nr.ErrorCategory.NETWORK,message:`UV Error ${a}`};let e=(0,_g.default)(a).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:nr.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(a,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:nr.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:nr.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var ti=(a,e,t=0)=>{for(let i=0;i<a.length;i++)if(a.start(i)*1e3-t<=e&&a.end(i)*1e3+t>e)return!0;return!1};var v=require("@vkontakte/videoplayer-shared/es2015");var on=W(Je(),1),lr=W(Jt(),1),un=W(ju(),1);var qk=(a,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{a({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},Uk=a=>window.clearTimeout(a),Fg=a=>typeof a=="function"&&(a==null?void 0:a.toString().endsWith("{ [native code] }")),qg=!Fg(window.requestIdleCallback)||!Fg(window.cancelIdleCallback),zu=qg?qk:window.requestIdleCallback,ra=qg?Uk:window.cancelIdleCallback;var Wv=W(Hs(),1);var ii=require("@vkontakte/videoplayer-shared/es2015");var Hk=18,Ug=!1;try{Ug=ee.browser.isSafari&&!!ee.browser.safariVersion&&ee.browser.safariVersion<=Hk}catch(a){console.error(a)}var Ku=class{constructor(e){this.bufferFull$=new ii.Subject;this.error$=new ii.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ii.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return A(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return A(this,null,function*(){return i&&i.aborted?!1:new Promise(r=>{let s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};Ug&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:s}of this.queue)s(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(s){s instanceof DOMException&&s.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):s instanceof DOMException&&s.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:ii.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:s}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,ii.assertNever)(t)}}},Hg=Ku;var Xu=a=>{let e=0;for(let t=0;t<a.length;t++)e+=a.end(t)-a.start(t);return e*1e3};var E=require("@vkontakte/videoplayer-shared/es2015");var re=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,s=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,s,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var or=class extends re{};var aa=class extends re{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,s=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,s)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var sa=class extends re{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var na=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var pe=class extends re{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var oa=class extends pe{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var ua=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var la=class extends re{constructor(e,t){super(e,t),this.data=this.content}};var Ii=class extends pe{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),s=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var ca=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var da=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var pa=class extends pe{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var ha=class extends pe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var ma=class extends pe{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var fa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ba=class extends pe{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var ga=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var va=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sa=class extends pe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ya=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ta=class extends pe{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var Ia=class extends pe{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var Ea=class extends pe{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var xa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pa=class extends pe{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var wa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var Qk={ftyp:sa,moov:na,mvhd:oa,moof:ua,mdat:la,sidx:Ii,trak:ca,mdia:fa,mfhd:Sa,tkhd:ba,traf:ya,tfhd:Ta,tfdt:Ia,trun:Ea,minf:ga,sv3d:da,st3d:pa,prhd:ha,proj:va,equi:ma,uuid:aa,stbl:xa,stsd:Pa,avc1:wa,unknown:or},Ct=class a{constructor(e={}){this.options=L({offset:0},e)}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let s=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(s,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch(r){break}return t}createBox(e,t){let i=Qk[e];return i?new i(t,new a):new or(t,new a)}};var ri=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,s;(s=(i=this.index)[r=t.type])!=null||(i[r]=[]),this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var Wk=new TextDecoder("ascii"),Yk=a=>Wk.decode(new DataView(a.buffer,a.byteOffset+4,4))==="ftyp",zk=a=>{let e=new Ii(a,new Ct),t=e.earliestPresentationTime/e.timescale*1e3,i=a.byteOffset+a.byteLength+e.firstOffset;return e.segments.map(s=>{if(s.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=s.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+s.referencedSize-1}};return t+=n,i+=s.referencedSize,o})},Kk=(a,e)=>{let i=new Ct().parse(a),r=new ri(i),s=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],l=o.source.byteOffset,d=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(a.buffer,l,d)},Xk=a=>{let t=new Ct().parse(a),i=new ri(t),r={},s=i.findAll("uuid");return s.length?s[s.length-1]:r},Jk=a=>{var r;let t=new Ct().parse(a);return(r=new ri(t).find("sidx"))==null?void 0:r.timescale},Zk=(a,e)=>{let i=new Ct().parse(a),s=new ri(i).findAll("traf"),n=s[s.length-1].children.find(d=>d.type==="tfhd"),o=s[s.length-1].children.find(d=>d.type==="tfdt"),u=s[s.length-1].children.find(d=>d.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((d,m)=>d+m,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},eR=a=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new Ct().parse(a),r=new ri(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},jg={validateData:Yk,parseInit:eR,getIndexRange:()=>{},parseSegments:zk,parseFeedableSegmentChunk:Kk,getChunkEndTime:Zk,getServerLatencyTimestamps:Xk,getTimescaleFromIndex:Jk};var ka=W(Je(),1),Dt=require("@vkontakte/videoplayer-shared/es2015");var Gg=require("@vkontakte/videoplayer-shared/es2015");var Qg={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},Wg=a=>{let e=a.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Aa(a,t),r=i in Qg,s=r?Qg[i].type:"binary",n=a.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(a.buffer,a.byteOffset+t+1,o-1),l=n&255>>o,c=Aa(u),d=l*bt(2,(o-1)*8)+c,m=t+o,h;return m+d>a.byteLength?h=new DataView(a.buffer,a.byteOffset+m):h=new DataView(a.buffer,a.byteOffset+m,d),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:m,tagSize:m+d,value:h,valueSize:d}},Aa=(a,e=a.byteLength)=>{switch(e){case 1:return a.getUint8(0);case 2:return a.getUint16(0);case 3:return a.getUint8(0)*bt(2,16)+a.getUint16(1);case 4:return a.getUint32(0);case 5:return a.getUint8(0)*bt(2,32)+a.getUint32(1);case 6:return a.getUint16(0)*bt(2,32)+a.getUint32(2);case 7:{let t=a.getUint8(0)*281474976710656+a.getUint16(1)*4294967296+a.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},dt=(a,e)=>{switch(e){case"int":return a.getInt8(0);case"uint":return Aa(a);case"float":return a.byteLength===4?a.getFloat32(0):a.getFloat64(0);case"string":return new TextDecoder("ascii").decode(a);case"utf8":return new TextDecoder("utf-8").decode(a);case"date":return new Date(Date.UTC(2001,0)+a.getInt8(0)).getTime();case"master":return a;case"binary":return a;default:(0,Gg.assertNever)(e)}},Ei=(a,e)=>{let t=0;for(;t<a.byteLength;){let i=new DataView(a.buffer,a.byteOffset+t),r=Wg(i);if(!e(r))return;r.type==="master"&&Ei(r.value,e),t=r.value.byteOffset-a.byteOffset+r.valueSize}},Yg=a=>{if(a.getUint32(0)!==440786851)return!1;let e,t,i,r=Wg(a);return Ei(r.value,({tag:s,type:n,value:o})=>(s===17143?e=dt(o,n):s===17026?t=dt(o,n):s===17029&&(i=dt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var zg=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],tR=[231,22612,22743,167,171,163,160,175],iR=a=>{let e,t,i,r,s=!1,n=!1,o=!1,u,l,c=!1,d=0;return Ei(a,({tag:m,type:h,value:f,valueSize:g})=>{if(m===21419){let S=dt(f,h);l=Aa(S)}else m!==21420&&(l=void 0);return m===408125543?(e=f.byteOffset,t=f.byteOffset+g):m===357149030?s=!0:m===290298740?n=!0:m===2807729?i=dt(f,h):m===17545?r=dt(f,h):m===21420&&l===475249515?u=dt(f,h):m===374648427?Ei(f,({tag:S,type:y,value:I})=>S===30321?(c=dt(I,y)===1,!1):!0):s&&n&&(0,ka.default)(zg,m)&&(o=!0),!o}),(0,Dt.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Dt.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Dt.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?i:1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:d,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},rR=a=>{if((0,Dt.isNullable)(a.cuesSeekPosition))return;let e=a.segmentStart+a.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},aR=(a,e)=>{let t=!1,i=!1,r=o=>(0,Dt.isNonNullable)(o.time)&&(0,Dt.isNonNullable)(o.position),s=[],n;return Ei(a,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&s.push(n),n={};break;case 179:n&&(n.time=dt(l,u));break;case 183:break;case 241:n&&(n.position=dt(l,u));break;default:t&&(0,ka.default)(zg,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:c}=o,d=s[u+1];return{status:"none",time:{from:l,to:d?d.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:d?e.segmentStart+d.position-1:e.segmentEnd-1}}})},sR=a=>{let e=0,t=!1;try{Ei(a,i=>i.tag===524531317?i.tagSize<=a.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ka.default)(tR,i.tag)?(e+i.tagSize<=a.byteLength&&(e+=i.tagSize,t||(t=(0,ka.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=a.byteLength&&t?new DataView(a.buffer,a.byteOffset,e):null},Kg={validateData:Yg,parseInit:iR,getIndexRange:rR,parseSegments:aR,parseFeedableSegmentChunk:sR};var Ra=a=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(a);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Kg;case"mp4":return jg}}throw new ReferenceError(`Unsupported mime type ${a}`)};var cl=W(bv(),1),Uv=W(Qi(),1),Hv=W(Mv(),1),jv=W(Jt(),1),dl=W(tr(),1);var Cv=W(Je(),1),al=a=>{let e=a.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,s,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[s,n]=r.toUpperCase(),o=s+n;return(0,Cv.default)(["6E","7A","F4"],o)}}return!1};var La=require("@vkontakte/videoplayer-shared/es2015");var Dv=a=>{if(a.includes("/")){let e=a.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(a)};var Vv=a=>{var e;try{let t=e$(),i=a.match(t),{groups:r}=i!=null?i:{};if(r){let s={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{s[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:s,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function e$(){let a="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
|
|
64
|
-
|
|
95
|
+
[selected audio track] ${y==null?void 0:y.id}
|
|
96
|
+
`}),y},uu=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,C.assertNotEmptyArray)(t,su);let d=r.considerPlaybackRate&&(0,C.isNonNullable)(a)?a:1,c=wS.get(t);c||(c=[...t].sort(is(-1)),wS.set(t,c));let h=s.bitrate;(0,C.assertNonNullable)(h);let p=d*ru(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Da(s,e,t,r.minVideoAudioRatio),S=l||i;(0,C.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,C.isNonNullable)(x.bitrate)&&(0,C.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,y=f&&au(r,u,f,o);return(0,C.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
|
|
97
|
+
[AUDIO TRACKS ABR]
|
|
98
|
+
[available audio tracks]
|
|
99
|
+
${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
|
|
100
|
+
`)}
|
|
101
|
+
|
|
102
|
+
[tuning]
|
|
103
|
+
${(0,Pr.default)(r!=null?r:{}).map(([x,E])=>`${x}: ${E}`).join(`
|
|
104
|
+
`)}
|
|
105
|
+
|
|
106
|
+
[limit params]
|
|
107
|
+
estimatedThroughput: ${i},
|
|
108
|
+
stallsPredictedThroughput: ${l},
|
|
109
|
+
reserve: ${h},
|
|
110
|
+
playbackRate: ${a},
|
|
111
|
+
playbackRateFactor: ${d},
|
|
112
|
+
forwardBufferHealth: ${n},
|
|
113
|
+
bitrateFactor: ${p},
|
|
114
|
+
minBufferToSwitchUp: ${r.minBufferToSwitchUp},
|
|
115
|
+
|
|
116
|
+
[selected audio track] ${y==null?void 0:y.id}
|
|
117
|
+
`}),y};var ze=s=>new URL(s).hostname;var ee=require("@vkontakte/videoplayer-shared/es2015");var VS=K(si(),1);var $S=K(_t(),1);var MS=s=>{if(s instanceof DOMException&&(0,$S.default)(["Failed to load because no supported source was found.","The element has no supported sources."],s.message))throw s;return!(s instanceof DOMException&&(s.code===20||s.name==="AbortError"))},ct=(s,e)=>A(void 0,null,function*(){let t=s.muted;try{yield s.play()}catch(i){if(!MS(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{yield s.play()}catch(r){return MS(r)&&(s.muted=!1,console.warn(r)),!1}}return!0});var Ut=require("@vkontakte/videoplayer-shared/es2015");var DS=K(Er(),1),bi=require("@vkontakte/videoplayer-shared/es2015");function et(){return(0,bi.now)()}function id(s){return et()-s}function rd(s){let e=s.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,r=n=>i.test(n);return{resolve:(n,o,u=!1)=>{r(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function BS(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function rs(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,d,c,h=!1,p="arraybuffer",f=7e3,b=2e3,S=()=>{if(u)return;(0,bi.assertNonNullable)(d);let F=id(d),Z;if(F<b){Z=b-F,setTimeout(S,Z);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,B()},v=F=>(a=F,W),y=F=>(c=F,W),x=()=>(p="json",W),E=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,c&&c(),t&&t()}},P=F=>(h=F,W),B=()=>{d=et(),n=new r,n.open("get",s);let F=0,Z,z=0,de=()=>((0,bi.assertNonNullable)(d),Math.max(d,Math.max(Z||0,z||0)));if(a&&n.addEventListener("progress",D=>{let N=et();a.updateChunk&&D.loaded>F&&(a.updateChunk(de(),D.loaded-F),F=D.loaded,Z=N)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>E())),n.addEventListener("load",()=>{if(u)return;(0,bi.assertNonNullable)(n);let D=n.status;if(D>=200&&D<300){let{response:N,responseType:V}=n,M=N==null?void 0:N.byteLength;if(typeof M=="number"&&a){let H=M-F;H&&a.updateChunk&&a.updateChunk(de(),H)}V==="json"&&(!N||!(0,DS.default)(N).length)?E():(c&&c(),e(N))}else E()}),n.addEventListener("error",()=>{E()}),h){let D=()=>{(0,bi.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(z=et(),n.removeEventListener("readystatechange",D))};n.addEventListener("readystatechange",D)}return n.responseType=p,n.send(),W},W={withBitrateReporting:v,withParallel:P,withJSONResponse:x,withRetryCount:F=>(l=F,W),withRetryInterval:(F,Z)=>((0,bi.isNonNullable)(F)&&(b=F),(0,bi.isNonNullable)(Z)&&(f=Z),W),withTimeout:F=>(o=F,W),withFinally:y,send:B,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return W}var Ba=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var CS=K(Er(),1);var Ca=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=et(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=et()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=rs(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=et()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=et();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,CS.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let a={};return a.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=a._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),a._finallyCB&&a._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(a,e)}},a._cb=t,a._errorCB=i,a._retryCB=r,a.abort=function(){a.request&&a.request.abort()},a.withFinally=n=>(a._finallyCB=n,a),a}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var OS=require("@vkontakte/videoplayer-shared/es2015");var lu=1e4,sd=3;var zR=6e4,QR=10,WR=1,YR=500,Va=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new OS.Subject,this.chunkRateEstimator=new Ba(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=rd(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=rd(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{var r;!!e.error&&!this.destroyed&&(t(`Video element error: ${(r=e.error)==null?void 0:r.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,r;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(i-1),t.currentTime<r&&(e("Fixup stall"),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(te.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){a=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!ES({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,VS.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||l&&a.video.height<l)||(a.bitrate<e&&n>Math.min(a.video.height,a.video.width)?(!r||a.bitrate>r.bitrate)&&(r=a):(!i||i.bitrate>a.bitrate)&&(i=a))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,Ut.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{BS(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Ca(sd,lu,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,d=!1,c=()=>{let E=a&&(!d||d===this.rep);return E||t("Not running!"),E},h=(E,P,B)=>{u&&u.abort(),u=rs(this.urlResolver.resolve(E,!1),P,B,()=>this._retryCallback()).withTimeout(lu).withBitrateReporting(this.bitrateSwitcher).withRetryCount(sd).withFinally(()=>{u=null}).send()},p=(E,P,B)=>{(0,Ut.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(E,!1),P,B,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=E=>{let P=i.playbackRate;i.playbackRate!==E&&(t(`Playback rate switch: ${P}=>${E}`),i.playbackRate=E)},b=E=>{this.lowLatency=E,t(`lowLatency changed to ${E}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let E=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let B=et()-1e4,q=0;for(let G=0;G<this.bufferStates.length;G++){let $=this.bufferStates[G];E=Math.min(E,$.buf),$.ts<B&&q++}this.bufferStates.splice(0,q),t(`update playback rate; minBuffer=${E} drop=${q} jitter=${this.sourceJitter}`);let _=E-WR;this.sourceJitter>=0?_-=this.sourceJitter/2:this.sourceJitter-=1,_>3?f(1.15):_>1?f(1.1):_>.3?f(1.05):f(1)}},v=E=>{let P,B=()=>P&&P.start?P.start.length:0,q=D=>P.start[D]/1e3,_=D=>P.dur[D]/1e3,G=D=>P.fragIndex+D,$=(D,N)=>({chunkIdx:G(D),startTS:q(D),dur:_(D),discontinuity:N}),W=()=>{let D=0;if(P&&P.dur){let N=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,V=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,M=N;this.sourceJitter>1&&(M+=this.sourceJitter-1);let H=P.dur.length-1;for(;H>=0&&(M-=P.dur[H],!(M<=0));--H);D=Math.min(H,P.dur.length-1-V),D=Math.max(D,0)}return $(D,!0)},F=D=>{let N=B();if(!(N<=0)){if((0,Ut.isNonNullable)(D)){for(let V=0;V<N;V++)if(q(V)>D)return $(V)}return W()}},Z=D=>{let N=B(),V=D?D.chunkIdx+1:0,M=V-P.fragIndex;if(!(N<=0)){if(!D||M<0||M-N>QR)return t(`Resync: offset=${M} bChunks=${N} chunk=`+JSON.stringify(D)),W();if(!(M>=N))return $(V-P.fragIndex,!1)}},z=(D,N,V)=>{l&&l.abort(),l=rs(this.urlResolver.resolve(D,!0,this.lowLatency),N,V,()=>this._retryCallback()).withTimeout(lu).withRetryCount(sd).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(D,N)=>{z(E,V=>{if(!c())return;P=V;let M=!!P.lowLatency;M!==this.lowLatency&&b(M);let H=0;for(let we=0;we<P.dur.length;++we)H+=P.dur[we];H>0&&((0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(H/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,D(F(N))},()=>this._handleNetworkError())},nextChunk:Z}},y=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:E=>{let{videoElement:P,logger:B}=this.params,q=v(e.jidxUrl),_,G,$,W,F=0,Z,z,de,D=()=>{Z&&(clearTimeout(Z),Z=void 0);let me=Math.max(YR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ne=F+me,Ue=et(),qe=Math.min(1e4,Ne-Ue);F=Ue;let rt=()=>{l||c()&&q.seek(()=>{c()&&(F=et(),N(),D())})};qe>0?Z=window.setTimeout(()=>{this.paused?D():rt()},qe):rt()},N=()=>{let me;for(;me=q.nextChunk(W);)W=me,it(me);let Ne=q.nextChunk($);if(Ne){if($&&Ne.discontinuity){B("Detected discontinuity; restarting playback"),this.paused?D():(y(),this._initPlayerWith(e));return}we(Ne)}else D()},V=(me,Ne)=>{if(!c()||!this.sourceBuffer)return;let Ue,qe,rt,jt=Qt=>{window.setTimeout(()=>{c()&&V(me,Ne)},Qt)};if(this.sourceBuffer.updating)B("Source buffer is updating; delaying appendBuffer"),jt(100);else{let Qt=et(),ui=P.currentTime;!this.paused&&P.buffered.length>1&&z===ui&&Qt-de>500&&(B("Stall suspected; trying to fix"),this._fixupStall()),z!==ui&&(z=ui,de=Qt);let vi=this._getBufferSizeSec();if(vi>30)B(`Buffered ${vi} seconds; delaying appendBuffer`),jt(2e3);else try{this.sourceBuffer.appendBuffer(me),this.videoPlayStarted?(this.bufferStates.push({ts:Qt,buf:vi}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Ne&&Ne()}catch(Wi){if(Wi.name==="QuotaExceededError")B("QuotaExceededError; delaying appendBuffer"),rt=this.sourceBuffer.buffered.length,rt!==0&&(Ue=this.sourceBuffer.buffered.start(0),qe=ui,qe-Ue>4&&this.sourceBuffer.remove(Ue,qe-3)),jt(1e3);else throw Wi}}},M=()=>{G&&_&&(B([`Appending chunk, sz=${G.byteLength}:`,JSON.stringify($)]),V(G,function(){G=null,N()}))},H=me=>e.fragUrlTemplate.replace("%%id%%",me.chunkIdx),we=me=>{c()&&p(H(me),(Ne,Ue)=>{if(c()){if(Ue/=1e3,G=Ne,$=me,n=me.startTS,Ue){let qe=Math.min(10,me.dur/Ue);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*qe:qe}M()}},()=>this._handleNetworkError())},it=me=>{c()&&((0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(H(me),!1)))},ye=me=>{c()&&(e.cachedHeader=me,V(me,()=>{_=!0,M()}))};a=!0,q.seek(me=>{if(c()){if(F=et(),!me){D();return}W=me,!(0,Ut.isNullable)(E)||me.startTS>E?we(me):($=me,N())}},E),e.cachedHeader?ye(e.cachedHeader):h(e.headerUrl,ye,()=>this._handleNetworkError())},stop:y,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,Ut.isNonNullable)(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,Ut.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Ut.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=c=>{if(!this.autoQuality)return;let h,p,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&c<this.bitrate&&(p=this._getBufferSizeSec(),f=c/this.bitrate,p>10&&f>.8||p>15&&f>.5||p>20&&f>.3)){e(`Not switching: buffer=${Math.floor(p)}; bitrate=${this.bitrate}; newRate=${Math.floor(c)}`);return}h=this._selectQuality(c),h?this._switchToQuality(h):e(`Could not find quality by bitrate ${c}`)},a={updateChunk:(h,p)=>{let f=et();if(this.chunkRateEstimator.addInterval(h,f,p)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:p,duration:f-h,speed:S}),!0}},get:()=>{let h=this.chunkRateEstimator.getBitRate();return h?h*.85:0}},n=-1/0,o,u=!0,l=()=>{let c=a.get();if(c&&o&&this.autoQuality){if(u&&c>o&&id(n)<3e4)return;i(c)}u=this.autoQuality};return{updateChunk:(c,h)=>{let p=a.updateChunk(c,h);return p&&l(),p},notifySwitch:c=>{let h=et();c<o&&(n=h),o=c}}}_fetchManifest(e,t,i){this.manifestRequest=rs(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(lu).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;ct(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,a=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,l)=>{var d,c;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((c=(d=window.MediaSource)==null?void 0:d.isTypeSupported)!=null&&c.call(d,u.codecs))&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=a(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},zR))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var _S=K(Sr(),1),Be=require("@vkontakte/videoplayer-shared/es2015"),ad=class{constructor(){this.onDroopedVideoFramesLimit$=new Be.Subject;this.subscription=new Be.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new Be.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!(0,Be.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,Be.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n:0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,Be.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,Be.interval)(this.droppedFramesChecker.checkTime).pipe((0,Be.filter)(()=>this.playing),(0,Be.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,Be.debounce)(this.droppedFramesChecker.checkTime)),i=(0,Be.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){var i,r;let t=(r=(i=(0,_S.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>(0,Be.isLower)(a,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?e:t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},ss=ad;var cu=require("@vkontakte/videoplayer-shared/es2015"),FS=require("@vkontakte/videoplayer-shared/es2015");var Oa=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var KR=(s,e)=>new cu.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Oa()))},k(k({},i),e));r.observe(s);let a=(0,FS.fromEvent)(document,"visibilitychange").pipe((0,cu.map)(n=>!document.hidden||Oa())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),Pt=KR;var XR=["paused","playing","ready"],JR=["paused","playing","ready"],_a=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new re("stopped");this.representations$=new ee.ValueSubject([]);this.droppedFramesManager=new ss;this.maxSeekBackTime$=new ee.ValueSubject(1/0);this.zeroTime$=new ee.ValueSubject(void 0);this.liveOffset=new wr;this._dashCb=e=>{var t,i,r,a;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:ee.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),d=(i=fi(u.name))!=null?i:(0,ee.videoSizeToQuality)(u.video),c=u.bitrate/1e3,h=k({},u.video);if(!d)continue;let p={id:l,quality:d,bitrate:c,size:h};o.push({track:p,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(a=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:a.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,ee.isNonNullable)(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,nd.default)(JR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,nd.default)(XR,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(_e(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(_e(this.params.source.url,u))}return;default:return(0,ee.assertNever)(e)}};this.textTracksManager=new wt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:ee.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,ee.merge)(this.videoState.stateChangeStarted$.pipe((0,ee.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ee.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=lt(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,ee.map)(r=>r.map(({track:a})=>a)),(0,ee.filter)(r=>!!r.length),(0,ee.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.to)==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,ee.filterChanged)(),(0,ee.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,ee.combine)({zeroTime:this.zeroTime$.pipe((0,ee.filter)(ee.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add(Ht(this.video,this.params.desiredState.isLooped,t)).add(ut(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Et(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(Pt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&(0,ee.videoQualityToHeight)(r),min:a&&(0,ee.videoQualityToHeight)(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var a;switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((a=this.params.desiredState.playbackState.getTransition())==null?void 0:a.to)==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,ee.assertNever)(r.to)}},t)).add((0,ee.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ee.observableFrom)(["init"])).pipe((0,ee.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),ot(this.video)}createLiveDashPlayer(){let e=new Va({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var l,d,c,h,p,f;let e=this.representations$.getValue(),t=(d=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?d:this.params.desiredState.videoTrack.getState(),i=(h=(c=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:c.to)!=null?h:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,ee.isNonNullable)(t)?t:mi(e.map(({track:b})=>b),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(p=this.params.desiredState.videoTrack.getState())==null?void 0:p.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let b=(f=e.find(({track:S})=>S.id===a))==null?void 0:f.representation;(0,ee.assertNonNullable)(b,"Representations missing"),this.dash.startPlay(b,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,ee.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",a=-e,n=a<=this.maxSeekBackTime$.getValue()?a:0;this.params.output.position$.next(e/1e3),this.dash.reinit(_e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var NS=_a;var Uy=K(_t(),1);var tt=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};var ue=require("@vkontakte/videoplayer-shared/es2015");var du=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,a=i.length;r<a;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,a=i.length;r<a;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},as=class extends du{constructor(){super(),this.listeners||du.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},Fa=class{constructor(){Object.defineProperty(this,"signal",{value:new as,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch(r){typeof document!="undefined"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document=="undefined")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch(r){i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(Fa.prototype[Symbol.toStringTag]="AbortController",as.prototype[Symbol.toStringTag]="AbortSignal");function pu(s){return s.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof s.Request=="function"&&!s.Request.prototype.hasOwnProperty("signal")||!s.AbortController}function od(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!pu({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(l,d){let c;d&&d.signal&&(c=d.signal,delete d.signal);let h=new t(l,d);return c&&Object.defineProperty(h,"signal",{writable:!1,enumerable:!1,configurable:!0,value:c}),h},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let d=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(d){let c;try{c=new DOMException("Aborted","AbortError")}catch(p){c=new Error("Aborted"),c.name="AbortError"}if(d.aborted)return Promise.reject(c);let h=new Promise((p,f)=>{d.addEventListener("abort",()=>f(c),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([h,n(u,l)])}return n(u,l)},Request:a}}var Na=pu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),US=Na?od({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Gt=Na?US.fetch:window.fetch,o_=Na?US.Request:window.Request,Te=Na?Fa:window.AbortController,u_=Na?as:window.AbortSignal;var Bd=K(Ua(),1);var Av=K(Pv(),1),ns=require("@vkontakte/videoplayer-shared/es2015"),hu=s=>{if(!s)return{id:"EmptyResponse",category:ns.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:ns.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,Av.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:ns.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(s,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:ns.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:ns.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var dt=(s,e,t=0)=>{for(let i=0;i<s.length;i++)if(s.start(i)*1e3-t<=e&&s.end(i)*1e3+t>e)return!0;return!1};var I=require("@vkontakte/videoplayer-shared/es2015");var mu=K(_t(),1),ps=K(si(),1),bu=K(Ua(),1);var OL=(s,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},_L=s=>window.clearTimeout(s),kv=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),Rv=!kv(window.requestIdleCallback)||!kv(window.cancelIdleCallback),os=Rv?OL:window.requestIdleCallback,gi=Rv?_L:window.cancelIdleCallback;var My=K(Ra(),1);var ir=require("@vkontakte/videoplayer-shared/es2015");var FL=18,Lv=!1;try{Lv=te.browser.isSafari&&!!te.browser.safariVersion&&te.browser.safariVersion<=FL}catch(s){console.error(s)}var hd=class{constructor(e){this.bufferFull$=new ir.Subject;this.error$=new ir.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ir.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return A(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return A(this,null,function*(){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};Lv&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:ir.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,ir.assertNever)(t)}}},Mv=hd;var us=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var R=require("@vkontakte/videoplayer-shared/es2015");var be=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var ls=class extends be{};var ja=class extends be{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var Ha=class extends be{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var Ga=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pe=class extends be{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var za=class extends Pe{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var Qa=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wa=class extends be{constructor(e,t){super(e,t),this.data=this.content}};var Ar=class extends Pe{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Ya=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ka=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Xa=class extends Pe{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Ja=class extends Pe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Za=class extends Pe{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var en=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var tn=class extends Pe{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var rn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var an=class extends Pe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var nn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var on=class extends Pe{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var un=class extends Pe{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var ln=class extends Pe{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var cn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var dn=class extends Pe{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var pn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var UL={ftyp:Ha,moov:Ga,mvhd:za,moof:Qa,mdat:Wa,sidx:Ar,trak:Ya,mdia:en,mfhd:an,tkhd:tn,traf:nn,tfhd:on,tfdt:un,trun:ln,minf:rn,sv3d:Ka,st3d:Xa,prhd:Ja,proj:sn,equi:Za,uuid:ja,stbl:cn,stsd:dn,avc1:pn,unknown:ls},Oi=class s{constructor(e={}){this.options=k({offset:0},e)}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch(r){break}return t}createBox(e,t){let i=UL[e];return i?new i(t,new s):new ls(t,new s)}};var rr=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(a=(i=this.index)[r=t.type])!=null||(i[r]=[]),this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var jL=new TextDecoder("ascii"),HL=s=>jL.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",GL=s=>{let e=new Ar(s,new Oi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},zL=(s,e)=>{let i=new Oi().parse(s),r=new rr(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},QL=s=>{let t=new Oi().parse(s),i=new rr(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},WL=s=>{var r;let t=new Oi().parse(s);return(r=new rr(t).find("sidx"))==null?void 0:r.timescale},YL=(s,e)=>{let i=new Oi().parse(s),a=new rr(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},KL=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new Oi().parse(s),r=new rr(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},$v={validateData:HL,parseInit:KL,getIndexRange:()=>{},parseSegments:GL,parseFeedableSegmentChunk:zL,getChunkEndTime:YL,getServerLatencyTimestamps:QL,getTimescaleFromIndex:WL};var fn=K(_t(),1),_i=require("@vkontakte/videoplayer-shared/es2015");var Bv=require("@vkontakte/videoplayer-shared/es2015");var Dv={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},Cv=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=hn(s,t),r=i in Dv,a=r?Dv[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,d=hn(u),c=l*St(2,(o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},hn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*St(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*St(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*St(2,32)+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},ai=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return hn(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,Bv.assertNever)(e)}},kr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Cv(i);if(!e(r))return;r.type==="master"&&kr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Vv=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Cv(s);return kr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ai(o,n):a===17026?t=ai(o,n):a===17029&&(i=ai(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Ov=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],XL=[231,22612,22743,167,171,163,160,175],JL=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return kr(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=ai(f,p);l=hn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ai(f,p):h===17545?r=ai(f,p):h===21420&&l===475249515?u=ai(f,p):h===374648427?kr(f,({tag:S,type:v,value:y})=>S===30321?(d=ai(y,v)===1,!1):!0):a&&n&&(0,fn.default)(Ov,h)&&(o=!0),!o}),(0,_i.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,_i.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,_i.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?i:1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},ZL=s=>{if((0,_i.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},eM=(s,e)=>{let t=!1,i=!1,r=o=>(0,_i.isNonNullable)(o.time)&&(0,_i.isNonNullable)(o.position),a=[],n;return kr(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=ai(l,u));break;case 183:break;case 241:n&&(n.position=ai(l,u));break;default:t&&(0,fn.default)(Ov,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},tM=s=>{let e=0,t=!1;try{kr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,fn.default)(XL,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,fn.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},_v={validateData:Vv,parseInit:JL,getIndexRange:ZL,parseSegments:eM,parseFeedableSegmentChunk:tM};var mn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return _v;case"mp4":return $v}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Ad=K(yd(),1),Ay=K(Sr(),1),ky=K(Td(),1),Ry=K(si(),1),kd=K(Er(),1);var vy=K(_t(),1),ds=s=>{let e=s.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,a,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,a,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[a,n]=r.toUpperCase(),o=a+n;return(0,vy.default)(["6E","7A","F4"],o)}}return!1};var gn=require("@vkontakte/videoplayer-shared/es2015");var fu=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var yy=s=>{var e;try{let t=KM(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{a[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function KM(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
|
|
118
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
65
119
|
(-(?<script>[a-z]{4}))?
|
|
66
120
|
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
67
121
|
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
68
122
|
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
69
123
|
(?:-(?<privateuse>(?:${e})))?
|
|
70
|
-
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var nl=W(Jt(),1);var Ov=require("@vkontakte/videoplayer-shared/es2015"),Bv=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n})=>{var u;let o=(u=s?Xt(s):void 0)!=null?u:(0,Ov.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},_v=({id:a,bitrate:e})=>({id:a,bitrate:e}),Nv=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Fv=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),ol=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,nl.default)(i.split("."),0),isDefault:r}),ul=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,nl.default)(r.split("."),0)}),ll=a=>"url"in a,Ve=a=>a.type==="template",$a=a=>a instanceof DOMException&&(a.name==="AbortError"||a.code===20);var qv=a=>{if(!(a!=null&&a.startsWith("P")))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(a),r=(i==null?void 0:i[1])==="-"?-1:1,s={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},Vt=(a,e)=>{let t=a;t=(0,cl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,s]of(0,Uv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,cl.default)(t,n,(o,u)=>(0,La.isNullable)(s)?o:(0,La.isNullable)(u)?s:(0,Hv.default)(s,parseInt(u,10),"0"))}return t},Qv=(a,e)=>{var ne,k,te,_,ie,K,ue,C,Q,oe,$,N,Ae,ki,Pt,se,Me,Oe,Be,ht,wt,Nt,si,Ri,pr,kl,Rl,$l,Ll,Ml,Cl,Dl,Vl,Ol,Bl,_l,Nl,Fl,ql,Ul,Hl,jl,Ql,Gl,Wl,Yl,zl,Kl,Xl,Jl,Zl,ec,tc,ic,rc,ac,sc,nc,oc,uc,lc;let i=new DOMParser().parseFromString(a,"application/xml"),r={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(rt=>{var ce,ni;return(ni=(ce=rt.textContent)==null?void 0:ce.trim())!=null?ni:""}),o=(ne=(0,jv.default)(n,0))!=null?ne:"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),c=s.getAttribute("publishTime"),d=s.getElementsByTagName("vk:Attrs")[0],m=d==null?void 0:d.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=d==null?void 0:d.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=d==null?void 0:d.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=d==null?void 0:d.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:m?new Date(m).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let y,I=s.getAttribute("mediaPresentationDuration"),x=[...s.getElementsByTagName("Period")],w=x.reduce((rt,ce)=>U(L({},rt),{[ce.id]:ce.children}),{}),P=x.reduce((rt,ce)=>U(L({},rt),{[ce.id]:ce.getAttribute("duration")}),{});I?y=qv(I):(0,dl.default)(P).filter(rt=>rt).length&&!u?y=(0,dl.default)(P).reduce((rt,ce)=>{var ni;return rt+((ni=qv(ce))!=null?ni:0)},0):g&&(y=parseInt(g,10));let O=0,J=(te=(k=s.getAttribute("profiles"))==null?void 0:k.split(","))!=null?te:[];for(let rt of x.map(ce=>ce.id))for(let ce of w[rt]){let ni=(_=ce.getAttribute("id"))!=null?_:"id"+(O++).toString(10),hr=(ie=ce.getAttribute("mimeType"))!=null?ie:"",An=(K=ce.getAttribute("codecs"))!=null?K:"",kn=(ue=ce.getAttribute("contentType"))!=null?ue:hr==null?void 0:hr.split("/")[0],RS=(Q=(C=ce.getAttribute("profiles"))==null?void 0:C.split(","))!=null?Q:[],cc=($=Vv((oe=ce.getAttribute("lang"))!=null?oe:""))!=null?$:{},Ya=(ki=(Ae=(N=ce.querySelector("Label"))==null?void 0:N.textContent)==null?void 0:Ae.trim())!=null?ki:void 0,$S=ce.querySelectorAll("Representation"),LS=ce.querySelector("SegmentTemplate"),MS=(se=(Pt=ce.querySelector("Role"))==null?void 0:Pt.getAttribute("value"))!=null?se:void 0,$i=kn,ge={id:ni,language:cc.language,isDefault:MS==="main",label:Ya,codecs:An,hdr:$i==="video"&&al(An),mime:hr,representations:[]};for(let le of $S){let Ft=(Me=le.getAttribute("lang"))!=null?Me:void 0,mr=(Be=(Oe=Ya!=null?Ya:ce.getAttribute("label"))!=null?Oe:le.getAttribute("label"))!=null?Be:void 0,za=(Nt=(wt=(ht=le.querySelector("BaseURL"))==null?void 0:ht.textContent)==null?void 0:wt.trim())!=null?Nt:"",oi=new URL(za||o,e).toString(),qt=(si=le.getAttribute("mimeType"))!=null?si:hr,Ka=(pr=(Ri=le.getAttribute("codecs"))!=null?Ri:An)!=null?pr:"",Xa;if(kn==="text"){let Ut=le.getAttribute("id")||"",Ja=((kl=cc.privateuse)==null?void 0:kl.includes("x-auto"))||Ut.includes("_auto"),ui=le.querySelector("SegmentTemplate");if(ui){let fr={representationId:(Rl=le.getAttribute("id"))!=null?Rl:void 0,bandwidth:($l=le.getAttribute("bandwidth"))!=null?$l:void 0},Za=parseInt((Ll=le.getAttribute("bandwidth"))!=null?Ll:"",10)/1e3,es=(Cl=parseInt((Ml=ui.getAttribute("startNumber"))!=null?Ml:"",10))!=null?Cl:1,Li=parseInt((Dl=ui.getAttribute("timescale"))!=null?Dl:"",10),Rn=(Vl=ui.querySelectorAll("SegmentTimeline S"))!=null?Vl:[],Mi=ui.getAttribute("media");if(!Mi)continue;let ts=[],is=0,rs="",Ci=0,br=es,Ce=0;for(let at of Rn){let li=parseInt((Ol=at.getAttribute("d"))!=null?Ol:"",10),Xe=parseInt((Bl=at.getAttribute("r"))!=null?Bl:"",10)||0,Ht=parseInt((_l=at.getAttribute("t"))!=null?_l:"",10);Ce=Number.isFinite(Ht)?Ht:Ce;let ci=li/Li*1e3,jt=Ce/Li*1e3;for(let mt=0;mt<Xe+1;mt++){let Qt=Vt(Mi,U(L({},fr),{segmentNumber:br.toString(10),segmentTime:(Ce+mt*li).toString(10)})),Di=(jt!=null?jt:0)+mt*ci,vr=Di+ci;br++,ts.push({time:{from:Di,to:vr},url:Qt})}Ce+=(Xe+1)*li,is+=(Xe+1)*ci}Ci=Ce/Li*1e3,rs=Vt(Mi,U(L({},fr),{segmentNumber:br.toString(10),segmentTime:Ce.toString(10)}));let gr={time:{from:Ci,to:1/0},url:rs},At={type:"template",baseUrl:oi,segmentTemplateUrl:Mi,initUrl:"",totalSegmentsDurationMs:is,segments:ts,nextSegmentBeyondManifest:gr,timescale:Li};Xa={id:Ut,kind:"text",segmentReference:At,profiles:[],duration:y,bitrate:Za,mime:"",codecs:"",width:0,height:0,isAuto:Ja}}else Xa={id:Ut,isAuto:Ja,kind:"text",url:oi}}else{let Ut=(Fl=(Nl=le.getAttribute("contentType"))!=null?Nl:qt==null?void 0:qt.split("/")[0])!=null?Fl:kn,Ja=(Ul=(ql=ce.getAttribute("profiles"))==null?void 0:ql.split(","))!=null?Ul:[],ui=parseInt((Hl=le.getAttribute("width"))!=null?Hl:"",10),fr=parseInt((jl=le.getAttribute("height"))!=null?jl:"",10),Za=parseInt((Ql=le.getAttribute("bandwidth"))!=null?Ql:"",10)/1e3,es=(Gl=le.getAttribute("frameRate"))!=null?Gl:"",Li=(Wl=le.getAttribute("quality"))!=null?Wl:void 0,Rn=es?Dv(es):void 0,Mi=(Yl=le.getAttribute("id"))!=null?Yl:"id"+(O++).toString(10),ts=Ut==="video"?`${fr}p`:Ut==="audio"?`${Za}Kbps`:Ka,is=`${Mi}@${ts}`,rs=[...J,...RS,...Ja],Ci,br=le.querySelector("SegmentBase"),Ce=(zl=le.querySelector("SegmentTemplate"))!=null?zl:LS;if(br){let At=(Xl=(Kl=le.querySelector("SegmentBase Initialization"))==null?void 0:Kl.getAttribute("range"))!=null?Xl:"",[at,li]=At.split("-").map(Qt=>parseInt(Qt,10)),Xe={from:at,to:li},Ht=(Jl=le.querySelector("SegmentBase"))==null?void 0:Jl.getAttribute("indexRange"),[ci,jt]=Ht?Ht.split("-").map(Qt=>parseInt(Qt,10)):[],mt=Ht?{from:ci,to:jt}:void 0;Ci={type:"byteRange",url:oi,initRange:Xe,indexRange:mt}}else if(Ce){let At={representationId:(Zl=le.getAttribute("id"))!=null?Zl:void 0,bandwidth:(ec=le.getAttribute("bandwidth"))!=null?ec:void 0},at=parseInt((tc=Ce.getAttribute("timescale"))!=null?tc:"",10),li=(ic=Ce.getAttribute("initialization"))!=null?ic:"",Xe=Ce.getAttribute("media"),Ht=(ac=parseInt((rc=Ce.getAttribute("startNumber"))!=null?rc:"",10))!=null?ac:1,ci=Vt(li,At);if(!Xe)throw new ReferenceError("No media attribute in SegmentTemplate");let jt=(sc=Ce.querySelectorAll("SegmentTimeline S"))!=null?sc:[],mt=[],Qt=0,Di="",vr=0;if(jt.length){let as=Ht,st=0;for(let Vi of jt){let ft=parseInt((nc=Vi.getAttribute("d"))!=null?nc:"",10),di=parseInt((oc=Vi.getAttribute("r"))!=null?oc:"",10)||0,ss=parseInt((uc=Vi.getAttribute("t"))!=null?uc:"",10);st=Number.isFinite(ss)?ss:st;let $n=ft/at*1e3,Ln=st/at*1e3;for(let ns=0;ns<di+1;ns++){let DS=Vt(Xe,U(L({},At),{segmentNumber:as.toString(10),segmentTime:(st+ns*ft).toString(10)})),dc=(Ln!=null?Ln:0)+ns*$n,VS=dc+$n;as++,mt.push({time:{from:dc,to:VS},url:DS})}st+=(di+1)*ft,Qt+=(di+1)*$n}vr=st/at*1e3,Di=Vt(Xe,U(L({},At),{segmentNumber:as.toString(10),segmentTime:st.toString(10)}))}else if((0,La.isNonNullable)(y)){let st=parseInt((lc=Ce.getAttribute("duration"))!=null?lc:"",10)/at*1e3,Vi=Math.ceil(y/st),ft=0;for(let di=1;di<Vi;di++){let ss=Vt(Xe,U(L({},At),{segmentNumber:di.toString(10),segmentTime:ft.toString(10)}));mt.push({time:{from:ft,to:ft+st},url:ss}),ft+=st}vr=ft,Di=Vt(Xe,U(L({},At),{segmentNumber:Vi.toString(10),segmentTime:ft.toString(10)}))}let CS={time:{from:vr,to:1/0},url:Di};Ci={type:"template",baseUrl:oi,segmentTemplateUrl:Xe,initUrl:ci,totalSegmentsDurationMs:Qt,segments:mt,nextSegmentBeyondManifest:CS,timescale:at}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ut||!qt)continue;let gr={video:"video",audio:"audio",text:"text"}[Ut];if(!gr)continue;$i||($i=gr),Xa={id:is,kind:gr,segmentReference:Ci,profiles:rs,duration:y,bitrate:Za,mime:qt,codecs:Ka,width:ui,height:fr,fps:Rn,quality:Li}}ge.language||(ge.language=Ft),ge.label||(ge.label=mr),ge.mime||(ge.mime=qt),ge.codecs||(ge.codecs=Ka),ge.hdr||(ge.hdr=$i==="video"&&al(Ka)),ge.representations.push(Xa)}if($i){let le=r[$i].find(Ft=>Ft.id===ge.id);if(le&&ge.representations.every(Ft=>Ve(Ft.segmentReference)))for(let Ft of le.representations){let mr=ge.representations.find(qt=>qt.id===Ft.id),za=mr==null?void 0:mr.segmentReference,oi=Ft.segmentReference;oi.segments.push(...za.segments),oi.nextSegmentBeyondManifest=za.nextSegmentBeyondManifest}else r[$i].push(ge)}}return{duration:y,streams:r,baseUrls:n,live:S}};var Gv=W(Je(),1),hl=require("@vkontakte/videoplayer-shared/es2015"),Se=(a,e)=>(0,hl.isNonNullable)(a)&&(0,hl.isNonNullable)(e)&&a.readyState==="open"&&(0,Gv.default)([...a.activeSourceBuffers],e);var Ma=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new E.ValueSubject(0);this.currentLowLatencySegmentLength$=new E.ValueSubject(0);this.currentSegmentLength$=new E.ValueSubject(0);this.onLastSegment$=new E.ValueSubject(!1);this.fullyBuffered$=new E.ValueSubject(!1);this.playingRepresentation$=new E.ValueSubject(void 0);this.playingRepresentationInit$=new E.ValueSubject(void 0);this.error$=new E.Subject;this.gaps=[];this.subscription=new E.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Le;this.switchAbortController=new Le;this.destroyAbortController=new Le;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,E.abortable)(this.destroyAbortController.signal,function(e){return Te(this,null,function*(){let t=this.representations.get(e);(0,E.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Hg(this.sourceBuffer),this.subscription.add((0,E.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,E.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:E.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Se(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Xu(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(d=>{this.handleAsyncError(d,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),s=this.parsedInitData.get(t.id);(0,E.assertNonNullable)(i,"No init buffer for starting representation"),(0,E.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(s))})}.bind(this));this.switchTo=(0,E.abortable)(this.destroyAbortController.signal,function(e,t=!1){return Te(this,null,function*(){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,E.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,E.isNullable)(s)||(0,E.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,E.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,E.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new us(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,E.abortable)(this.destroyAbortController.signal,function(e,t=!1){return Te(this,null,function*(){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,E.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,E.isNullable)(s)||(0,E.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,E.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,E.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new us(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,E.abortable)(this.destroyAbortController.signal,function(e){return Te(this,null,function*(){var u,l;let t=(u=(0,un.default)(e,c=>c.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let c of this.representations.keys()){let d=t.find(f=>f.id===c);d&&this.representations.set(c,d);let m=this.representations.get(c);if(!m||!Ve(m.segmentReference))return;let h=this.getActualLiveStartingSegments(m.segmentReference);this.segments.set(m.id,h)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,E.assertNonNullable)(r);let s=this.segments.get(i);(0,E.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,E.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(s,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1})}.bind(this));var c;this.fetcher=r,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(c=l==null?void 0:l.baseUrls)!=null?c:[],this.initData=new Map(i.map(d=>[d.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(d=>[d.id,d])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Le,(0,E.abortable)(this.switchAbortController.signal,function(i,r=!1){return Te(this,null,function*(){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,E.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,E.isNullable)(o)||(0,E.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,E.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,E.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}})}.bind(this))(e,t))}warmUpMediaSource(){!(0,E.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return A(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Le,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,E.isNullable)(e)||(0,E.isNullable)(this.downloadingRepresentationId)||(0,E.isNullable)(this.playingRepresentationId)||(0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,E.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,E.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,E.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),d=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(s=d)}if(isFinite(this.bufferLimit)&&Xu(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<d).catch(m=>{this.handleAsyncError(m,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,on.default)(u,r))c="high";else{let d=(0,lr.default)(u,0);d&&d.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(d=>{this.handleAsyncError(d,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,lr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+r}),i=s.time.to;(0,E.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],s=0,n=t.length-1;do r.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,un.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,s,n;let t=(i=(0,un.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!Ve(o.segmentReference))return;let u=o.segmentReference.segments.map(h=>U(L({},h),{status:"none",size:void 0})),l=100,c=(r=this.segments.get(o.id))!=null?r:[],d=(n=(s=(0,lr.default)(c,-1))==null?void 0:s.time.to)!=null?n:0,m=u==null?void 0:u.findIndex(h=>d>=h.time.from+l&&d<=h.time.to+l);if(m===-1){this.liveUpdateSegmentIndex=0;let h=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,h)}else{let h=u.slice(m+1);this.segments.set(o.id,[...c,...h])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,E.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let s=r.segmentReference;if(!Ve(s))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.from));if(o&&!isFinite(o.time.to)&&(o.time.to=e.time.to,t=o.time.to-o.time.from),!!!n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let l=Math.round(e.time.to*s.timescale/1e3).toString(10),c=Vt(s.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:c})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var s,n,o;let t=(n=(s=this.switchingToRepresentationId)!=null?s:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&ra&&ra(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ra&&ra(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:d,time:{from:m,to:h}},f)=>{let g=m<=i&&h>=i,S=m>i||g||f===0&&i===0,y=Math.min(this.forwardBufferTarget,this.bufferLimit),I=this.preloadOnly&&m<=i+y||h<=i+y;return(d==="none"||d==="partially_ejected"&&S&&I&&this.sourceBuffer&&Se(this.mediaSource,this.sourceBuffer)&&!(ti(this.sourceBuffer.buffered,m)&&ti(this.sourceBuffer.buffered,h)))&&S&&I});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let s=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let d=r;d<s.length&&(n<=l||o<=c);d++){let m=s[d];if(n+=m.byte.to+1-m.byte.from,o+=m.time.to+1-m.time.from,m.status==="none"||m.status==="partially_ejected")u.push(m);else break}return u}loadSegments(e,t,i="auto"){return A(this,null,function*(){Ve(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return A(this,null,function*(){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,E.abortable)(o,function(){return Te(this,null,function*(){let c=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,c))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=yield this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,E.now)(),!c)return;let d=new DataView(c),m=Ra(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=m.getChunkEndTime(d,g)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=m.getServerLatencyTimestamps(d);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),$a(c)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Ve(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return A(this,null,function*(){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,E.abortable)(n,function(){return Te(this,null,function*(){let u=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,E.fromEvent)(window,"online").pipe((0,E.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(s,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,E.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),$a(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(Ve(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,lr.default)(e,0).byte.from,to:(0,lr.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:r,signal:s,onProgress:(o,u)=>A(this,null,function*(){if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,E.now)(),yield this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!Ve(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,E.now)();let d=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:r,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,on.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:s}){if(!this.activeSegments.size||!Se(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId===t){if(s.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let c=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),d=Ra(o.mime).parseFeedableSegmentChunk(c,this.isLive);d!=null&&d.byteLength&&(l.status="partially_fed",u.feedingBytes+=d.byteLength,yield this.sourceBufferTaskQueue.append(d),u.fedBytes+=d.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Se(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){let{segment:c}=l;if(l.representationId!==t)continue;if(s.aborted){yield n();continue}let d=c.byte.from-i,m=c.byte.to-i,h=m-d+1,f=d<r,g=m<=r;if(!f)continue;let S=Ra(u.mime);if(c.status==="downloading"&&g){c.status="downloaded";let y=new DataView(e.buffer,e.byteOffset+d,h);(yield this.sourceBufferTaskQueue.append(y,s))&&!s.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status==="downloading"||c.status==="partially_fed")&&(l.loadedBytes=Math.min(h,r-d),l.loadedBytes>l.feedingBytes)){let y=new DataView(e.buffer,e.byteOffset+d+l.feedingBytes,l.loadedBytes-l.feedingBytes),I=l.loadedBytes===h?y:S.parseFeedableSegmentChunk(y);I!=null&&I.byteLength&&(c.status="partially_fed",l.feedingBytes+=I.byteLength,(yield this.sourceBufferTaskQueue.append(I,s))&&!s.aborted?(l.fedBytes+=I.byteLength,l.fedBytes===h&&this.onSegmentFullyAppended(l,t)):yield n())}}})}onSegmentFullyAppended(e,t){var i;if(!((0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer))){!this.isLive&&ee.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(ti(this.sourceBuffer.buffered,e.segment.time.from,100)&&ti(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",ll(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let s of(i=this.segments.get(r.id))!=null?i:[])s.status==="fed"&&Math.round(s.time.from)===Math.round(e.segment.time.from)&&Math.round(s.time.to)===Math.round(e.segment.time.to)&&(s.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,s]of this.initData.entries()){let n=s instanceof Promise;t||(t=n),s===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=zu(()=>(0,Wv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return A(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,E.abortable)(this.destroyAbortController.signal,function(){return Te(this,null,function*(){let o=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Ra(e.mime),r)).then(o=>A(this,null,function*(){if(!o)return;let{init:u,dataView:l,segments:c}=o,d=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,d);let m=c;this.isLive&&Ve(e.segmentReference)&&(m=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,m),u&&this.parsedInitData.set(e.id,u)})).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:E.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return A(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return A(this,null,function*(){if(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,E.isNullable)(e))return!1;let r=[],s=0,n=u=>{u.sort((c,d)=>c.from-d.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:d,to:m}=u[c],h=l[l.length-1];h.to>=d?h.to=Math.max(h.to,m):l.push(u[c])}return l},o=u=>{var c;if(s>=t)return r;r.push(L({},u.time)),r=n(r);let l=ll(u)?(c=u.size)!=null?c:0:u.byte.to-u.byte.from;s+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||d)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,c=this.sourceBuffer.buffered.end(u)*1e3,d=0;for(let m of this.segments.values())for(let h of m)(0,on.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&d++;if(d===this.segments.size){let m={time:{from:l,to:c},url:"",status:"none"};o(m)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return r.length?(yield Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)})}getDebugBufferState(){if(!(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,E.isNullable)(e)?0:ar(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let s=0;s<this.sourceBuffer.buffered.length;s++){let n=this.sourceBuffer.buffered.start(s)*1e3,o=this.sourceBuffer.buffered.end(s)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(s=>r&&s.from===r.from&&s.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=zu(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:E.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,E.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:s})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:s}=r;if(s!=="fed"&&s!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:E.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var Ca=a=>{let e=new URL(a);return e.searchParams.set("quic","1"),e.toString()};var Yv=a=>{var s;let e=a.get("X-Delivery-Type"),t=a.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(s={1:!0,0:!1}[t])!=null?s:void 0;return{type:i,reused:r}};var H=require("@vkontakte/videoplayer-shared/es2015");var zv=a=>{let e=new URL(a);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var cn=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new H.ValueSubject(void 0);this.lastConnectionReused$=new H.ValueSubject(void 0);this.lastRequestFirstBytes$=new H.ValueSubject(void 0);this.recoverableError$=new H.Subject;this.error$=new H.Subject;this.abortAllController=new Le;this.subscription=new H.Subscription;this.fetchManifest=(0,H.abortable)(this.abortAllController.signal,function(e){return Te(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ca(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=zv(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(ln);return r?(t.log("success",(0,H.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,H.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,H.abortable)(this.abortAllController.signal,function(l){return Te(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var _,ie;let c=e,d=new Headers,m=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let K=new URL(c,location.href);K.searchParams.append("bytes",`${i.from}-${i.to}`),c=K.toString();break}default:(0,H.assertNever)(t)}this.requestQuic&&(c=Ca(c));let h=this.abortAllController.signal,f;if(n){let K=new Le;if(f=(0,H.merge)((0,H.fromEvent)(this.abortAllController.signal,"abort"),(0,H.fromEvent)(n,"abort")).subscribe(()=>{try{K.abort()}catch(ue){ln(ue)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{K.abort()}catch(ue){ln(ue)}h=K.signal}let g=(0,H.now)();m.log("startRequest",(0,H.flattenObject)({url:c,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:g}));let S=yield this.doFetch(c,{priority:s,headers:d,signal:h}),y=(0,H.now)();if(!S)return m.error("error",{message:"No response in request"}),m.end(),f==null||f.unsubscribe(),null;if((_=this.throughputEstimator)==null||_.addRawRtt(y-g),!S.ok||!S.body){f==null||f.unsubscribe();let K=`Fetch error ${S.status}: ${S.statusText}`;return m.error("error",{message:K}),m.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){f==null||f.unsubscribe();let K=(0,H.now)(),ue={requestStartedAt:g,requestEndedAt:K,duration:K-g};return m.log("endRequest",(0,H.flattenObject)(ue)),m.end(),S.arrayBuffer()}let[I,x]=S.body.tee(),w=I.getReader();o&&((ie=this.throughputEstimator)==null||ie.trackStream(x,u));let P=0,O=new Uint8Array(0),J=!1,Z=K=>{f==null||f.unsubscribe(),J=!0,ln(K)},ne=(0,H.abortable)(h,function(C){return Te(this,arguments,function*({done:K,value:ue}){if(P===0&&this.lastRequestFirstBytes$.next((0,H.now)()-g),h.aborted){f==null||f.unsubscribe();return}if(!K&&ue){let Q=new Uint8Array(O.length+ue.length);Q.set(O),Q.set(ue,O.length),O=Q,P+=ue.byteLength,r==null||r(new DataView(O.buffer),P),yield w==null?void 0:w.read().then(ne,Z)}})}.bind(this));yield w==null?void 0:w.read().then(ne,Z),f==null||f.unsubscribe();let k=(0,H.now)(),te={failed:J,requestStartedAt:g,requestEndedAt:k,duration:k-g};return J?(m.error("endRequest",(0,H.flattenObject)(te)),m.end(),null):(m.log("endRequest",(0,H.flattenObject)(te)),m.end(),O.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,H.abortable)(this.abortAllController.signal,function(e,t,i){return Te(this,null,function*(){var y;if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,r),o=Math.max(c,s))),n=Math.min(n,0);let d=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!d)return null;let m=new DataView(d,r-n,s-n+1);if(!t.validateData(m))throw new Error("Invalid media file");let h=t.parseInit(m),f=(y=e.indexRange)!=null?y:t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(d,f.from-n,f.to-f.from+1);else{let I=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!I)return null;g=new DataView(I)}let S=t.parseSegments(g,h,f);return{init:h,dataView:new DataView(d),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,H.abortable)(this.abortAllController.signal,function(e,t){return Te(this,null,function*(){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>U(L({},n),{status:"none",size:void 0})),dataView:new DataView(r)}:null})}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=s}onHeadersReceived(e){let{type:t,reused:i}=Yv(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(this,null,function*(){var s,n;let{type:r}=e;switch(r){case"byteRange":return(s=yield this.fetchByteRangeRepresentation(e,t,i))!=null?s:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,H.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}doFetch(e,t){return A(this,null,function*(){let i=yield Et(e,t);if(i.ok)return i;let r=yield i.text(),s=parseInt(r);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:H.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:H.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:H.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:H.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:H.ErrorCategory.FATAL})}})}},ln=a=>{if(!$a(a))throw a};var xi=(a,e,t)=>t*e+(1-t)*a,ml=(a,e)=>a.reduce((t,i)=>t+i,0)/e,Kv=(a,e,t,i)=>{let r=0,s=t,n=ml(a,e),o=e<i?e:i;for(let u=0;u<o;u++)a[s]>n?r++:r--,s=(a.length+s-1)%a.length;return Math.abs(r)===o};var Da=require("@vkontakte/videoplayer-shared/es2015");var ai=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;var i;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new Da.ValueSubject(e.initial),this.debounced$=new Da.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new De(`raw_${t}`),this.smoothedSeries$=new De(`smoothed_${t}`),this.reportedSeries$=new De(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=bt(this.pastMeasures[o]-this.smoothed,2),i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),s=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>s||this.smoothed<n)&&((0,Da.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var dn=class extends ai{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=xi(this.slow,e,this.params.emaAlphaSlow),this.fast=xi(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var pn=class extends ai{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=ml(this.pastMeasures,this.takenMeasures);this.emaSmoothed=xi(this.emaSmoothed,e,this.params.emaAlpha);let i=Kv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var hn=class extends ai{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?xi(this.smoothed,t,this.params.emaAlpha):t}};var Pi=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new dn({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new pn({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new hn(L({initial:e,label:"liveEdgeDelay"},t))}};var fl=(a,e)=>{a&&a.playbackRate!==e&&(a.playbackRate=e)};var mn=require("@vkontakte/videoplayer-shared/es2015");var Va=class a{constructor(e,t){this.currentRepresentation$=new mn.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,mn.isNullable)(e))for(let i of this.representations)for(let r of i){let s=r.segmentReference,n=s.segments.length,o=s.segments[0].time.from,u=s.segments[n-1].time.to;if(e<o||e>u)continue;let l=s.segments.find(c=>c.time.from<=e&&c.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(U(L({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,s.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=a.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>a.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&Ve(t.segmentReference))}};var bn=W(Jt(),1);var Oa=require("@vkontakte/videoplayer-shared/es2015");var Xv=(a,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:s,codecs:n,nativeHlsSupported:o}=ee.video,u=(n.h264||n.h265)&&n.aac,l=s.mse&&(!i||!!window.MediaStreamTrack)||s.mms&&t;return a.filter(c=>{switch(c){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return s.webrtc&&s.ws&&n.h264&&(r.mp4||r.webm);default:return(0,Oa.assertNever)(c)}})},fn=a=>{let{webmDecodingInfo:e}=ee.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(a){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,Oa.assertNever)(a)}return[t,i]},Jv=({webmCodec:a,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...fn(a),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(ee.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...r,"MPEG",...fn(a),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...fn(a),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...fn(a),...r,"HLS","HLS_ONDEMAND"];default:(0,Oa.assertNever)(e)}return ee.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Zv=({androidPreferredFormat:a,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],r=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],s=[...i,...r],n=[...r,...i],o,u=ee.device.isMac&&ee.browser.isSafari;if(ee.device.isAndroid)switch(a){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=s;break}case"hls":case"mpeg":{o=n;break}default:(0,Oa.assertNever)(a)}else ee.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=s;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},bl=a=>a?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],eS=a=>{if(a.size===0)return;if(a.size===1){let t=a.values().next();return(0,bn.default)(t.value.split("."),0)}for(let t of a){let i=(0,bn.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=a.values().next();return(0,bn.default)(e.value.split("."),0)};var n$=["timeupdate","progress","play","seeked","stalled","waiting"],o$=["timeupdate","progress","loadeddata","playing","seeked"];var gn=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new v.Subscription;this.representationSubscription=new v.Subscription;this.state$=new Y("none");this.currentVideoRepresentation$=new v.ValueSubject(void 0);this.currentVideoRepresentationInit$=new v.ValueSubject(void 0);this.currentAudioRepresentation$=new v.ValueSubject(void 0);this.currentVideoSegmentLength$=new v.ValueSubject(0);this.currentAudioSegmentLength$=new v.ValueSubject(0);this.error$=new v.Subject;this.lastConnectionType$=new v.ValueSubject(void 0);this.lastConnectionReused$=new v.ValueSubject(void 0);this.lastRequestFirstBytes$=new v.ValueSubject(void 0);this.currentLiveTextRepresentation$=new v.ValueSubject(null);this.isLive$=new v.ValueSubject(!1);this.isActiveLive$=new v.ValueSubject(!1);this.isLowLatency$=new v.ValueSubject(!1);this.liveDuration$=new v.ValueSubject(0);this.liveSeekableDuration$=new v.ValueSubject(0);this.liveAvailabilityStartTime$=new v.ValueSubject(0);this.liveStreamStatus$=new v.ValueSubject(void 0);this.bufferLength$=new v.ValueSubject(0);this.liveLatency$=new v.ValueSubject(void 0);this.liveLoadBufferLength$=new v.ValueSubject(0);this.livePositionFromPlayer$=new v.ValueSubject(0);this.currentStallDuration$=new v.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new v.ValueSubject(0);this.fetcherRecoverableError$=new v.Subject;this.fetcherError$=new v.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new v.Subject;this.gapWatchdogActive=!1;this.destroyController=new Le;this.initManifest=(0,v.abortable)(this.destroyController.signal,function(e,t,i){return Te(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:v.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,v.abortable)(this.destroyController.signal,function(){return Te(this,null,function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:v.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Qv(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=Ng(e))!=null?n:{id:"ManifestParsing",category:v.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,c)=>{var d,m,h,f;return!!((m=(d=this.element)==null?void 0:d.canPlayType)!=null&&m.call(d,l)&&((f=(h=ct())==null?void 0:h.isTypeSupported)!=null&&f.call(h,`${l}; codecs="${c}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:c,streamIsAlive:d}=t.live,m=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*m),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let h="active";d||(h=c?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(h)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let c=t.streams[u].filter(({mime:h,codecs:f})=>i(u,h,f)),d=new Set(c.map(({codecs:h})=>h)),m=eS(d);if(m&&(r[u]=c.filter(({codecs:h})=>h.startsWith(m))),u==="video"){let h=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),g=r.video.some(S=>!S.hdr);ee.display.isHDR&&h&&f?r.video=r.video.filter(S=>S.hdr):g&&(r.video=r.video.filter(S=>!S.hdr))}}let s=U(L({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,v.flattenObject)(s)),s})}.bind(this));this.initRepresentations=(0,v.abortable)(this.destroyController.signal,function(e,t,i){return Te(this,null,function*(){var m;this.tracer.log("initRepresentationsStart",(0,v.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,v.assertNonNullable)(this.manifest),(0,v.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=h=>{this.representationSubscription.add((0,v.fromEvent)(h,"error").pipe((0,v.filter)(f=>{var g;return!!((g=this.element)!=null&&g.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?yb():new MediaSource;let s=document.createElement("source");if(r(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&Ks())if(i){let h=document.createElement("source");r(h),h.type="application/x-mpegurl",h.src=i.url,this.element.appendChild(h)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((h,f)=>[...h,...f.representations],[]);if(this.videoBufferManager=new Ma("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,v.isNonNullable)(t)){let h=this.manifest.streams.audio.reduce((f,g)=>[...f,...g.representations],[]);this.audioBufferManager=new Ma("audio",this.source,h,n),this.bufferManagers.push(this.audioBufferManager)}Va.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Va(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{var h;(h=this.stallWatchdogSubscription)==null||h.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,v.merge)(...o$.map(h=>(0,v.fromEvent)(this.element,h))).pipe((0,v.map)(h=>this.element?ar(this.element.buffered,this.element.currentTime*1e3):0),(0,v.filterChanged)(),(0,v.tap)(h=>{h>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,v.merge)((0,v.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,v.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,v.now)())),this.subscription.add((0,v.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,v.interval)(1e3).subscribe(f=>{let g=js(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,g+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,v.fromEvent)(this.element,"play").subscribe(f=>{var g;return(g=this.livePauseWatchdogSubscription)==null?void 0:g.unsubscribe()})),this.representationSubscription.add((0,v.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.map)(({isActiveLive:f,isLowLatency:g})=>f&&g),(0,v.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||fl(this.element,1)})),this.representationSubscription.add((0,v.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.filter)(({bufferLength:f,isActiveLive:g,isLowLatency:S})=>g&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let g=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(g,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,v.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,v.filter)(({isLive:f})=>f),(0,v.filterChanged)((f,g)=>g.bufferLength<f.bufferLength),(0,v.map)(({rtt:f,bufferLength:g,segmentServerLatency:S})=>{let y=js(this.manifestUrlString,2);return(f/2+g+S+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,v.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:g,isLowLatency:S})=>{if(!S||!g)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,I=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,w=f-y;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(w)>I&&(P=1+Math.sign(w)*x),fl(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,y;let g=0;if(f){let I=((y=(S=this.element)==null?void 0:S.currentTime)!=null?y:0)*1e3;g=Math.min(...this.bufferManagers.map(w=>{var P,O;return(O=(P=w.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?O:I}))-I}this.liveLoadBufferLength$.getValue()!==g&&this.liveLoadBufferLength$.next(g)}));let h=0;this.representationSubscription.add((0,v.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,v.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:g}){if(!this.element||this.isUpdatingLive)return;let y=this.element.playbackRate,I=js(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,w=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*y),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*y,O=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*y,J=isFinite(f)?f:g,Z=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),ne=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(ne);let k="none";if(Z?k="active_low_latency":this.isLowLatency$.getValue()&&ne?(this.bufferManagers.forEach(te=>te.proceedLowLatencyLive()),k="active_low_latency"):I!==0&&J<w?k="live_forward_buffering":J<w+O&&(k="live_with_target_offset"),isFinite(f)&&(h=f>h?f:h),k==="live_forward_buffering"||k==="live_with_target_offset"){let te=h-(w+P),_=this.normolizeLiveOffset(Math.trunc(I+te/y)),ie=Math.abs(_-I),K=0;!f||ie<=this.tuning.dashCmafLive.offsetCalculationError?K=I:_>0&&ie>this.tuning.dashCmafLive.offsetCalculationError&&(K=_),this.manifestUrlString=$e(this.manifestUrlString,K,2)}(k==="live_with_target_offset"||k==="live_forward_buffering")&&(h=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:v.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,v.merge)(...this.bufferManagers.map(h=>h.fullyBuffered$)).pipe((0,v.map)(()=>this.bufferManagers.every(h=>h.fullyBuffered$.getValue()))),c=(0,v.merge)(...this.bufferManagers.map(h=>h.onLastSegment$)).pipe((0,v.map)(()=>this.bufferManagers.some(h=>h.onLastSegment$.getValue()))),d=(0,v.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,v.filterChanged)(),(0,v.map)(({allBuffersFull:h,someBufferEnded:f})=>h&&f),(0,v.filter)(h=>h));if(this.representationSubscription.add((0,v.merge)(this.forceEnded$,d).subscribe(()=>{var h;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(h=this.source)==null||h.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,v.merge)(...this.bufferManagers.map(h=>h.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let h=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((f,g)=>{var S;h&&(this.timeoutSourceOpenId=setTimeout(()=>{var y;if(((y=this.source)==null?void 0:y.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?g(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let h=[(m=this.manifest.duration)!=null?m:0,...(0,vl.default)((0,vl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let g=[];return f.duration&&g.push(f.duration),Ve(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&g.push(f.segmentReference.totalSegmentsDurationMs),g})];this.source.duration=Math.max(...h)/1e3}this.audioBufferManager&&(0,v.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")})}.bind(this));this.tick=()=>{var t,i,r,s;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(s=this.audioBufferManager)!=null&&s.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,v.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:v.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new cn({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=Pi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,L({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(this,null,function*(){var r,s,n;(0,v.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,v.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(s=this.audioBufferManager)==null?void 0:s.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,v.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,v.merge)(...n$.map(e=>(0,v.fromEvent)(this.element,e)),(0,v.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:v.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,v.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,v.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&ti(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var h,f,g,S,y,I,x,w,P,O,J;if(!this.element||((h=this.source)==null?void 0:h.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},s=(0,v.now)(),n=100,o=(g=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?g:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(y=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?y:0,l=(x=(I=this.videoBufferManager)==null?void 0:I.getForwardBufferDuration())!=null?x:0,c=(P=(w=this.audioBufferManager)==null?void 0:w.getForwardBufferDuration())!=null?P:0,d=l<n&&s-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,m=this.audioBufferManager&&c<n&&s-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((d||m)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let Z=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(Z).catch(ne=>{this.error$.next({id:"stallIntervalCallback",category:v.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:ne})}),r.liveLastOffset=Z}else{let Z=this.element.currentTime*1e3;(O=this.videoBufferManager)==null||O.maintain(Z),(J=this.audioBufferManager)==null||J.maintain(Z),r.position=Z}this.tracer.log("stallIntervalCallback",(0,v.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,v.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:v.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return A(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return A(this,null,function*(){var r,s,n,o,u;(0,v.assertNonNullable)(this.element),(0,v.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(s=this.audioBufferManager)==null?void 0:s.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),ti(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,v.isNullable)(this.element)||(0,v.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,v.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,v.isNonNullable)(this.element)&&(0,v.isNonNullable)(this.source)&&(0,v.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,v.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}updateLive(){return A(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.updateLive(this.manifest)),this.isUpdatingLive=!1})}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,s=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?s.push(1/0):s.push(u.to));if(s.length){let o=Math.max(...s)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i=U(L({},i),{gapEnds:s,jumpTo:o,resultCurrentTime:this.element.currentTime}),this.tracer.log("jumpGap",(0,v.flattenObject)(i)))}}};var vn=class{constructor(e,t){this.fov=e,this.orientation=t}};var Sn=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/bt(this.options.speedFadeTime/1e3,2)}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,s=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:s,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?i:this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed=L({},this.rotationSpeed),this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*bt(this.fadeTime/1e3,2)+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var iS=`attribute vec2 a_vertex;
|
|
124
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var xd=K(si(),1);var Ty=require("@vkontakte/videoplayer-shared/es2015"),Iy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?fi(a):void 0)!=null?u:(0,Ty.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},xy=({id:s,bitrate:e})=>({id:s,bitrate:e}),Ey=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),wy=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ed=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,xd.default)(i.split("."),0),isDefault:r}),wd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,xd.default)(r.split("."),0)}),Pd=s=>"url"in s,It=s=>s.type==="template",bn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var Py=s=>{if(!(s!=null&&s.startsWith("P")))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=(i==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},Fi=(s,e)=>{let t=s;t=(0,Ad.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Ay.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Ad.default)(t,n,(o,u)=>(0,gn.isNullable)(a)?o:(0,gn.isNullable)(u)?a:(0,ky.default)(a,parseInt(u,10),"0"))}return t},Ly=(s,e)=>{var G,$,W,F,Z,z,de,D,N,V,M,H,we,it,ye,me,Ne,Ue,qe,rt,jt,Qt,ui,vi,Wi,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ls,Ms,$s,Ds,Bs,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs,Gs,zs,Qs,Ws,Ys,Ks,Xs,Js,Zs,ea;let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(Re=>{var Y,pt;return(pt=(Y=Re.textContent)==null?void 0:Y.trim())!=null?pt:""}),o=(G=(0,Ry.default)(n,0))!=null?G:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,y=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],E=x.reduce((Re,Y)=>U(k({},Re),{[Y.id]:Y.children}),{}),P=x.reduce((Re,Y)=>U(k({},Re),{[Y.id]:Y.getAttribute("duration")}),{});y?v=Py(y):(0,kd.default)(P).filter(Re=>Re).length&&!u?v=(0,kd.default)(P).reduce((Re,Y)=>{var pt;return Re+((pt=Py(Y))!=null?pt:0)},0):b&&(v=parseInt(b,10));let B=0,q=(W=($=a.getAttribute("profiles"))==null?void 0:$.split(","))!=null?W:[];for(let Re of x.map(Y=>Y.id))for(let Y of E[Re]){let pt=(F=Y.getAttribute("id"))!=null?F:"id"+(B++).toString(10),Wt=(Z=Y.getAttribute("mimeType"))!=null?Z:"",ur=(z=Y.getAttribute("codecs"))!=null?z:"",lr=(de=Y.getAttribute("contentType"))!=null?de:Wt==null?void 0:Wt.split("/")[0],zu=(N=(D=Y.getAttribute("profiles"))==null?void 0:D.split(","))!=null?N:[],ta=(M=yy((V=Y.getAttribute("lang"))!=null?V:""))!=null?M:{},yi=(it=(we=(H=Y.querySelector("Label"))==null?void 0:H.textContent)==null?void 0:we.trim())!=null?it:void 0,Qu=Y.querySelectorAll("Representation"),Wu=Y.querySelector("SegmentTemplate"),Yu=(me=(ye=Y.querySelector("Role"))==null?void 0:ye.getAttribute("value"))!=null?me:void 0,Rt=lr,ne={id:pt,language:ta.language,isDefault:Yu==="main",label:yi,codecs:ur,hdr:Rt==="video"&&ds(ur),mime:Wt,representations:[]};for(let Q of Qu){let Qe=(Ne=Q.getAttribute("lang"))!=null?Ne:void 0,Yt=(qe=(Ue=yi!=null?yi:Y.getAttribute("label"))!=null?Ue:Q.getAttribute("label"))!=null?qe:void 0,Ti=(Qt=(jt=(rt=Q.querySelector("BaseURL"))==null?void 0:rt.textContent)==null?void 0:jt.trim())!=null?Qt:"",ht=new URL(Ti||o,e).toString(),We=(ui=Q.getAttribute("mimeType"))!=null?ui:Wt,Ii=(Wi=(vi=Q.getAttribute("codecs"))!=null?vi:ur)!=null?Wi:"",xi;if(lr==="text"){let Ye=Q.getAttribute("id")||"",Ei=((vs=ta.privateuse)==null?void 0:vs.includes("x-auto"))||Ye.includes("_auto"),ft=Q.querySelector("SegmentTemplate");if(ft){let Kt={representationId:(ys=Q.getAttribute("id"))!=null?ys:void 0,bandwidth:(Ts=Q.getAttribute("bandwidth"))!=null?Ts:void 0},wi=parseInt((Is=Q.getAttribute("bandwidth"))!=null?Is:"",10)/1e3,Pi=(Es=parseInt((xs=ft.getAttribute("startNumber"))!=null?xs:"",10))!=null?Es:1,Lt=parseInt((ws=ft.getAttribute("timescale"))!=null?ws:"",10),cr=(Ps=ft.querySelectorAll("SegmentTimeline S"))!=null?Ps:[],Mt=ft.getAttribute("media");if(!Mt)continue;let Ai=[],ki=0,Ri="",$t=0,Xt=Pi,Se=0;for(let Le of cr){let mt=parseInt((As=Le.getAttribute("d"))!=null?As:"",10),Ie=parseInt((ks=Le.getAttribute("r"))!=null?ks:"",10)||0,Ke=parseInt((Rs=Le.getAttribute("t"))!=null?Rs:"",10);Se=Number.isFinite(Ke)?Ke:Se;let bt=mt/Lt*1e3,Xe=Se/Lt*1e3;for(let Ce=0;Ce<Ie+1;Ce++){let Je=Fi(Mt,U(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:(Se+Ce*mt).toString(10)})),Dt=(Xe!=null?Xe:0)+Ce*bt,Zt=Dt+bt;Xt++,Ai.push({time:{from:Dt,to:Zt},url:Je})}Se+=(Ie+1)*mt,ki+=(Ie+1)*bt}$t=Se/Lt*1e3,Ri=Fi(Mt,U(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:Se.toString(10)}));let Jt={time:{from:$t,to:1/0},url:Ri},je={type:"template",baseUrl:ht,segmentTemplateUrl:Mt,initUrl:"",totalSegmentsDurationMs:ki,segments:Ai,nextSegmentBeyondManifest:Jt,timescale:Lt};xi={id:Ye,kind:"text",segmentReference:je,profiles:[],duration:v,bitrate:wi,mime:"",codecs:"",width:0,height:0,isAuto:Ei}}else xi={id:Ye,isAuto:Ei,kind:"text",url:ht}}else{let Ye=(Ms=(Ls=Q.getAttribute("contentType"))!=null?Ls:We==null?void 0:We.split("/")[0])!=null?Ms:lr,Ei=(Ds=($s=Y.getAttribute("profiles"))==null?void 0:$s.split(","))!=null?Ds:[],ft=parseInt((Bs=Q.getAttribute("width"))!=null?Bs:"",10),Kt=parseInt((Cs=Q.getAttribute("height"))!=null?Cs:"",10),wi=parseInt((Vs=Q.getAttribute("bandwidth"))!=null?Vs:"",10)/1e3,Pi=(Os=Q.getAttribute("frameRate"))!=null?Os:"",Lt=(_s=Q.getAttribute("quality"))!=null?_s:void 0,cr=Pi?fu(Pi):void 0,Mt=(Fs=Q.getAttribute("id"))!=null?Fs:"id"+(B++).toString(10),Ai=Ye==="video"?`${Kt}p`:Ye==="audio"?`${wi}Kbps`:Ii,ki=`${Mt}@${Ai}`,Ri=[...q,...zu,...Ei],$t,Xt=Q.querySelector("SegmentBase"),Se=(Ns=Q.querySelector("SegmentTemplate"))!=null?Ns:Wu;if(Xt){let je=(qs=(Us=Q.querySelector("SegmentBase Initialization"))==null?void 0:Us.getAttribute("range"))!=null?qs:"",[Le,mt]=je.split("-").map(Je=>parseInt(Je,10)),Ie={from:Le,to:mt},Ke=(js=Q.querySelector("SegmentBase"))==null?void 0:js.getAttribute("indexRange"),[bt,Xe]=Ke?Ke.split("-").map(Je=>parseInt(Je,10)):[],Ce=Ke?{from:bt,to:Xe}:void 0;$t={type:"byteRange",url:ht,initRange:Ie,indexRange:Ce}}else if(Se){let je={representationId:(Hs=Q.getAttribute("id"))!=null?Hs:void 0,bandwidth:(Gs=Q.getAttribute("bandwidth"))!=null?Gs:void 0},Le=parseInt((zs=Se.getAttribute("timescale"))!=null?zs:"",10),mt=(Qs=Se.getAttribute("initialization"))!=null?Qs:"",Ie=Se.getAttribute("media"),Ke=(Ys=parseInt((Ws=Se.getAttribute("startNumber"))!=null?Ws:"",10))!=null?Ys:1,bt=Fi(mt,je);if(!Ie)throw new ReferenceError("No media attribute in SegmentTemplate");let Xe=(Ks=Se.querySelectorAll("SegmentTimeline S"))!=null?Ks:[],Ce=[],Je=0,Dt="",Zt=0;if(Xe.length){let Li=Ke,Me=0;for(let Bt of Xe){let Ve=parseInt((Xs=Bt.getAttribute("d"))!=null?Xs:"",10),gt=parseInt((Js=Bt.getAttribute("r"))!=null?Js:"",10)||0,Mi=parseInt((Zs=Bt.getAttribute("t"))!=null?Zs:"",10);Me=Number.isFinite(Mi)?Mi:Me;let dr=Ve/Le*1e3,pr=Me/Le*1e3;for(let $i=0;$i<gt+1;$i++){let Xu=Fi(Ie,U(k({},je),{segmentNumber:Li.toString(10),segmentTime:(Me+$i*Ve).toString(10)})),ia=(pr!=null?pr:0)+$i*dr,Ju=ia+dr;Li++,Ce.push({time:{from:ia,to:Ju},url:Xu})}Me+=(gt+1)*Ve,Je+=(gt+1)*dr}Zt=Me/Le*1e3,Dt=Fi(Ie,U(k({},je),{segmentNumber:Li.toString(10),segmentTime:Me.toString(10)}))}else if((0,gn.isNonNullable)(v)){let Me=parseInt((ea=Se.getAttribute("duration"))!=null?ea:"",10)/Le*1e3,Bt=Math.ceil(v/Me),Ve=0;for(let gt=1;gt<Bt;gt++){let Mi=Fi(Ie,U(k({},je),{segmentNumber:gt.toString(10),segmentTime:Ve.toString(10)}));Ce.push({time:{from:Ve,to:Ve+Me},url:Mi}),Ve+=Me}Zt=Ve,Dt=Fi(Ie,U(k({},je),{segmentNumber:Bt.toString(10),segmentTime:Ve.toString(10)}))}let Ku={time:{from:Zt,to:1/0},url:Dt};$t={type:"template",baseUrl:ht,segmentTemplateUrl:Ie,initUrl:bt,totalSegmentsDurationMs:Je,segments:Ce,nextSegmentBeyondManifest:Ku,timescale:Le}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ye||!We)continue;let Jt={video:"video",audio:"audio",text:"text"}[Ye];if(!Jt)continue;Rt||(Rt=Jt),xi={id:ki,kind:Jt,segmentReference:$t,profiles:Ri,duration:v,bitrate:wi,mime:We,codecs:Ii,width:ft,height:Kt,fps:cr,quality:Lt}}ne.language||(ne.language=Qe),ne.label||(ne.label=Yt),ne.mime||(ne.mime=We),ne.codecs||(ne.codecs=Ii),ne.hdr||(ne.hdr=Rt==="video"&&ds(Ii)),ne.representations.push(xi)}if(Rt){let Q=r[Rt].find(Qe=>Qe.id===ne.id);if(Q&&ne.representations.every(Qe=>It(Qe.segmentReference)))for(let Qe of Q.representations){let Yt=ne.representations.find(We=>We.id===Qe.id),Ti=Yt==null?void 0:Yt.segmentReference,ht=Qe.segmentReference;ht.segments.push(...Ti.segments),ht.nextSegmentBeyondManifest=Ti.nextSegmentBeyondManifest}else r[Rt].push(ne)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Ld=require("@vkontakte/videoplayer-shared/es2015"),oe=(s,e)=>(0,Ld.isNonNullable)(s)&&(0,Ld.isNonNullable)(e)&&s.readyState==="open"&&XM(s,e);function XM(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var Sn=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new R.ValueSubject(0);this.currentLowLatencySegmentLength$=new R.ValueSubject(0);this.currentSegmentLength$=new R.ValueSubject(0);this.onLastSegment$=new R.ValueSubject(!1);this.fullyBuffered$=new R.ValueSubject(!1);this.playingRepresentation$=new R.ValueSubject(void 0);this.playingRepresentationInit$=new R.ValueSubject(void 0);this.error$=new R.Subject;this.gaps=[];this.subscription=new R.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Te;this.switchAbortController=new Te;this.destroyAbortController=new Te;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,R.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){let t=this.representations.get(e);(0,R.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Mv(this.sourceBuffer),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:R.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!oe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,us(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,R.assertNonNullable)(i,"No init buffer for starting representation"),(0,R.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))})}.bind(this));this.switchTo=(0,R.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,R.isNullable)(a)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,R.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,R.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,R.isNullable)(a)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,R.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,R.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){var u,l;let t=(u=(0,bu.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!It(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,R.assertNonNullable)(r);let a=this.segments.get(i);(0,R.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,R.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1})}.bind(this));var d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Te,(0,R.abortable)(this.switchAbortController.signal,function(i,r=!1){return pe(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,R.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,R.isNullable)(o)||(0,R.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,R.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,R.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}})}.bind(this))(e,t))}warmUpMediaSource(){!(0,R.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return A(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Te,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,R.isNullable)(e)||(0,R.isNullable)(this.downloadingRepresentationId)||(0,R.isNullable)(this.playingRepresentationId)||(0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,R.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,R.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,R.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=this.getForwardBufferDuration(e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&us(this.sourceBuffer.buffered)>=this.bufferLimit){let d=this.getForwardBufferDuration(e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,mu.default)(u,r))d="high";else{let c=(0,ps.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,ps.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,R.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,bu.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,bu.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!It(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>U(k({},p),{status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,ps.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,R.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let a=r.segmentReference;if(!It(a))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.from));if(o&&!isFinite(o.time.to)&&(o.time.to=e.time.to,t=o.time.to-o.time.from),!!!n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let l=Math.round(e.time.to*a.timescale/1e3).toString(10),d=Fi(a.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:d})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&gi&&gi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&gi&&gi(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:c,time:{from:h,to:p}},f)=>{let b=h<=i&&p>=i,S=h>i||b||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),y=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&y&&this.sourceBuffer&&oe(this.mediaSource,this.sourceBuffer)&&!(dt(this.sourceBuffer.buffered,h)&&dt(this.sourceBuffer.buffered,p)))&&S&&y});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=d);c++){let h=a[c];if(n+=h.byte.to+1-h.byte.from,o+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")u.push(h);else break}return u}loadSegments(e,t,i="auto"){return A(this,null,function*(){It(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return A(this,null,function*(){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,R.abortable)(o,function(){return pe(this,null,function*(){let d=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=yield this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,R.now)(),!d)return;let c=new DataView(d),h=mn(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),bn(d)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())It(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return A(this,null,function*(){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,R.abortable)(n,function(){return pe(this,null,function*(){let u=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,R.fromEvent)(window,"online").pipe((0,R.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,R.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),bn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(It(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,ps.default)(e,0).byte.from,to:(0,ps.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>A(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,R.now)(),yield this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!It(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,R.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,mu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!oe(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId===t){if(a.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let d=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),c=mn(o.mime).parseFeedableSegmentChunk(d,this.isLive);c!=null&&c.byteLength&&(l.status="partially_fed",u.feedingBytes+=c.byteLength,yield this.sourceBufferTaskQueue.append(c),u.fedBytes+=c.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!oe(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){let{segment:d}=l;if(l.representationId!==t)continue;if(a.aborted){yield n();continue}let c=d.byte.from-i,h=d.byte.to-i,p=h-c+1,f=c<r,b=h<=r;if(!f)continue;let S=mn(u.mime);if(d.status==="downloading"&&b){d.status="downloaded";let v=new DataView(e.buffer,e.byteOffset+c,p);(yield this.sourceBufferTaskQueue.append(v,a))&&!a.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(d.status==="downloading"||d.status==="partially_fed")&&(l.loadedBytes=Math.min(p,r-c),l.loadedBytes>l.feedingBytes)){let v=new DataView(e.buffer,e.byteOffset+c+l.feedingBytes,l.loadedBytes-l.feedingBytes),y=l.loadedBytes===p?v:S.parseFeedableSegmentChunk(v);y!=null&&y.byteLength&&(d.status="partially_fed",l.feedingBytes+=y.byteLength,(yield this.sourceBufferTaskQueue.append(y,a))&&!a.aborted?(l.fedBytes+=y.byteLength,l.fedBytes===p&&this.onSegmentFullyAppended(l,t)):yield n())}}})}onSegmentFullyAppended(e,t){var i;if(!((0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer))){!this.isLive&&te.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(dt(this.sourceBuffer.buffered,e.segment.time.from,100)&&dt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Pd(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let a of(i=this.segments.get(r.id))!=null?i:[])a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=os(()=>(0,My.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return A(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,R.abortable)(this.destroyAbortController.signal,function(){return pe(this,null,function*(){let o=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,mn(e.mime),r)).then(o=>A(this,null,function*(){if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let h=d;this.isLive&&It(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),u&&this.parsedInitData.set(e.id,u)})).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:R.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return A(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return A(this,null,function*(){if(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,R.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((d,c)=>d.from-c.from);let l=[u[0]];for(let d=1;d<u.length;d++){let{from:c,to:h}=u[d],p=l[l.length-1];p.to>=c?p.to=Math.max(p.to,h):l.push(u[d])}return l},o=u=>{var d;if(a>=t)return r;r.push(k({},u.time)),r=n(r);let l=Pd(u)?(d=u.size)!=null?d:0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let d=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||c)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,c=0;for(let h of this.segments.values())for(let p of h)(0,mu.default)(["none","partially_ejected"],p.status)&&Math.round(p.time.from)<=Math.round(l)&&Math.round(p.time.to)>=Math.round(d)&&c++;if(c===this.segments.size){let h={time:{from:l,to:d},url:"",status:"none"};o(h)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let d of l)d.time.from>=e+u&&d.status==="fed"&&o(d)}return r.length?(yield Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,d)=>l||d,!1):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)})}getDebugBufferState(){if(!(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,R.isNullable)(e)?0:tt(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=os(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:R.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,R.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(d=>d.from-t<=n&&d.to+t>=o),l=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:R.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var sr=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var gu=s=>{var a;let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(a={1:!0,0:!1}[t])!=null?a:void 0;return{type:i,reused:r}};var se=require("@vkontakte/videoplayer-shared/es2015");var Su=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var yu=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new se.ValueSubject(void 0);this.lastConnectionReused$=new se.ValueSubject(void 0);this.lastRequestFirstBytes$=new se.ValueSubject(void 0);this.recoverableError$=new se.Subject;this.error$=new se.Subject;this.abortAllController=new Te;this.subscription=new se.Subscription;this.fetchManifest=(0,se.abortable)(this.abortAllController.signal,function(e){return pe(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=sr(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Su(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(vu);return r?(t.log("success",(0,se.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,se.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,se.abortable)(this.abortAllController.signal,function(l){return pe(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var F,Z;let d=e,c=new Headers,h=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let z=new URL(d,location.href);z.searchParams.append("bytes",`${i.from}-${i.to}`),d=z.toString();break}default:(0,se.assertNever)(t)}this.requestQuic&&(d=sr(d));let p=this.abortAllController.signal,f;if(n){let z=new Te;if(f=(0,se.merge)((0,se.fromEvent)(this.abortAllController.signal,"abort"),(0,se.fromEvent)(n,"abort")).subscribe(()=>{try{z.abort()}catch(de){vu(de)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{z.abort()}catch(de){vu(de)}p=z.signal}let b=(0,se.now)();h.log("startRequest",(0,se.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let S=yield this.doFetch(d,{priority:a,headers:c,signal:p}),v=(0,se.now)();if(!S)return h.error("error",{message:"No response in request"}),h.end(),f==null||f.unsubscribe(),null;if((F=this.throughputEstimator)==null||F.addRawRtt(v-b),!S.ok||!S.body){f==null||f.unsubscribe();let z=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:z}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){f==null||f.unsubscribe();let z=(0,se.now)(),de={requestStartedAt:b,requestEndedAt:z,duration:z-b};return h.log("endRequest",(0,se.flattenObject)(de)),h.end(),S.arrayBuffer()}let[y,x]=S.body.tee(),E=y.getReader();o&&((Z=this.throughputEstimator)==null||Z.trackStream(x,u));let P=0,B=new Uint8Array(0),q=!1,_=z=>{f==null||f.unsubscribe(),q=!0,vu(z)},G=(0,se.abortable)(p,function(D){return pe(this,arguments,function*({done:z,value:de}){if(P===0&&this.lastRequestFirstBytes$.next((0,se.now)()-b),p.aborted){f==null||f.unsubscribe();return}if(!z&&de){let N=new Uint8Array(B.length+de.length);N.set(B),N.set(de,B.length),B=N,P+=de.byteLength,r==null||r(new DataView(B.buffer),P),yield E==null?void 0:E.read().then(G,_)}})}.bind(this));yield E==null?void 0:E.read().then(G,_),f==null||f.unsubscribe();let $=(0,se.now)(),W={failed:q,requestStartedAt:b,requestEndedAt:$,duration:$-b};return q?(h.error("endRequest",(0,se.flattenObject)(W)),h.end(),null):(h.log("endRequest",(0,se.flattenObject)(W)),h.end(),B.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,se.abortable)(this.abortAllController.signal,function(e,t,i){return pe(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let y=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,p,f);return{init:p,dataView:new DataView(c),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,se.abortable)(this.abortAllController.signal,function(e,t){return pe(this,null,function*(){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>U(k({},n),{status:"none",size:void 0})),dataView:new DataView(r)}:null})}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=gu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=yield this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,se.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}doFetch(e,t){return A(this,null,function*(){let i=yield Gt(e,t);if(i.ok)return i;let r=yield i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:se.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:se.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:se.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:se.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:se.ErrorCategory.FATAL})}})}},vu=s=>{if(!bn(s))throw s};var Ni=(s,e,t)=>t*e+(1-t)*s,Md=(s,e)=>s.reduce((t,i)=>t+i,0)/e,$y=(s,e,t,i)=>{let r=0,a=t,n=Md(s,e),o=e<i?e:i;for(let u=0;u<o;u++)s[a]>n?r++:r--,a=(s.length+a-1)%s.length;return Math.abs(r)===o};var vn=require("@vkontakte/videoplayer-shared/es2015");var ar=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;var i;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new vn.ValueSubject(e.initial),this.debounced$=new vn.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new yt(`raw_${t}`),this.smoothedSeries$=new yt(`smoothed_${t}`),this.reportedSeries$=new yt(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=St(this.pastMeasures[o]-this.smoothed,2),i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,vn.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var Tu=class extends ar{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Ni(this.slow,e,this.params.emaAlphaSlow),this.fast=Ni(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Iu=class extends ar{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Md(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Ni(this.emaSmoothed,e,this.params.emaAlpha);let i=$y(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var xu=class extends ar{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?Ni(this.smoothed,t,this.params.emaAlpha):t}};var Ui=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Tu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Iu({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new xu(k({initial:e,label:"liveEdgeDelay"},t))}};var hs=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var Eu=require("@vkontakte/videoplayer-shared/es2015");var yn=class s{constructor(e,t){this.currentRepresentation$=new Eu.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,Eu.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(U(k({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&It(t.segmentReference))}};var Pu=K(si(),1);var Tn=require("@vkontakte/videoplayer-shared/es2015");var Dy=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=te.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(d=>{switch(d){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return a.webrtc&&a.ws&&n.h264&&(r.mp4||r.webm);default:return(0,Tn.assertNever)(d)}})},wu=s=>{let{webmDecodingInfo:e}=te.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(s){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,Tn.assertNever)(s)}return[t,i]},By=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...wu(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(te.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...r,"MPEG",...wu(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...wu(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...wu(s),...r,"HLS","HLS_ONDEMAND"];default:(0,Tn.assertNever)(e)}return te.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Cy=({androidPreferredFormat:s,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],r=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],a=[...i,...r],n=[...r,...i],o,u=te.device.isMac&&te.browser.isSafari;if(te.device.isAndroid)switch(s){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=a;break}case"hls":case"mpeg":{o=n;break}default:(0,Tn.assertNever)(s)}else te.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=a;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},$d=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Au=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,Pu.default)(t.value.split("."),0)}for(let t of s){let i=(0,Pu.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,Pu.default)(e.value.split("."),0)};var i$=["timeupdate","progress","play","seeked","stalled","waiting"],r$=["timeupdate","progress","loadeddata","playing","seeked"];var ku=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new I.Subscription;this.representationSubscription=new I.Subscription;this.state$=new re("none");this.currentVideoRepresentation$=new I.ValueSubject(void 0);this.currentVideoRepresentationInit$=new I.ValueSubject(void 0);this.currentAudioRepresentation$=new I.ValueSubject(void 0);this.currentVideoSegmentLength$=new I.ValueSubject(0);this.currentAudioSegmentLength$=new I.ValueSubject(0);this.error$=new I.Subject;this.lastConnectionType$=new I.ValueSubject(void 0);this.lastConnectionReused$=new I.ValueSubject(void 0);this.lastRequestFirstBytes$=new I.ValueSubject(void 0);this.currentLiveTextRepresentation$=new I.ValueSubject(null);this.isLive$=new I.ValueSubject(!1);this.isActiveLive$=new I.ValueSubject(!1);this.isLowLatency$=new I.ValueSubject(!1);this.liveDuration$=new I.ValueSubject(0);this.liveSeekableDuration$=new I.ValueSubject(0);this.liveAvailabilityStartTime$=new I.ValueSubject(0);this.liveStreamStatus$=new I.ValueSubject(void 0);this.bufferLength$=new I.ValueSubject(0);this.liveLatency$=new I.ValueSubject(void 0);this.liveLoadBufferLength$=new I.ValueSubject(0);this.livePositionFromPlayer$=new I.ValueSubject(0);this.currentStallDuration$=new I.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new I.ValueSubject(0);this.fetcherRecoverableError$=new I.Subject;this.fetcherError$=new I.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new I.Subject;this.gapWatchdogActive=!1;this.destroyController=new Te;this.initManifest=(0,I.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=_e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:I.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,I.abortable)(this.destroyController.signal,function(){return pe(this,null,function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:I.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Ly(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=hu(e))!=null?n:{id:"ManifestParsing",category:I.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=Nt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=Au(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),b=r.video.some(S=>!S.hdr);te.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a=U(k({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,I.flattenObject)(a)),a})}.bind(this));this.initRepresentations=(0,I.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var h;this.tracer.log("initRepresentationsStart",(0,I.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,I.assertNonNullable)(this.manifest),(0,I.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,I.fromEvent)(p,"error").pipe((0,I.filter)(f=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Jo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&es())if(i){let p=document.createElement("source");r(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((p,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new Sn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,I.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new Sn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}yn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new yn(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,I.merge)(...r$.map(p=>(0,I.fromEvent)(this.element,p))).pipe((0,I.map)(p=>this.element?tt(this.element.buffered,this.element.currentTime*1e3):0),(0,I.filterChanged)(),(0,I.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,I.merge)((0,I.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,I.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,I.now)())),this.subscription.add((0,I.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,I.interval)(1e3).subscribe(f=>{let b=Ji(this.manifestUrlString,2);this.manifestUrlString=_e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,I.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,I.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,I.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||hs(this.element,1)})),this.representationSubscription.add((0,I.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.filter)(({bufferLength:f,isActiveLive:b,isLowLatency:S})=>b&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,I.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,I.filter)(({isLive:f})=>f),(0,I.filterChanged)((f,b)=>b.bufferLength<f.bufferLength),(0,I.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Ji(this.manifestUrlString,2);return(f/2+b+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,I.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,y=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(E)>y&&(P=1+Math.sign(E)*x),hs(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let y=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(E=>{var P,B;return(B=(P=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?B:y}))-y}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,I.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,I.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:b}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,y=Ji(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,B=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,q=isFinite(f)?f:b,_=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let $="none";if(_?$="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(W=>W.proceedLowLatencyLive()),$="active_low_latency"):y!==0&&q<E?$="live_forward_buffering":q<E+B&&($="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),$==="live_forward_buffering"||$==="live_with_target_offset"){let W=p-(E+P),F=this.normolizeLiveOffset(Math.trunc(y+W/v)),Z=Math.abs(F-y),z=0;!f||Z<=this.tuning.dashCmafLive.offsetCalculationError?z=y:F>0&&Z>this.tuning.dashCmafLive.offsetCalculationError&&(z=F),this.manifestUrlString=_e(this.manifestUrlString,z,2)}($==="live_with_target_offset"||$==="live_forward_buffering")&&(p=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:I.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,I.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,I.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,I.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,I.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,I.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,I.filterChanged)(),(0,I.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,I.filter)(p=>p));if(this.representationSubscription.add((0,I.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,I.merge)(...this.bufferManagers.map(p=>p.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((f,b)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,Bd.default)((0,Bd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let b=[];return f.duration&&b.push(f.duration),It(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,I.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")})}.bind(this));this.tick=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,I.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:I.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new yu({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=Ui.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,k({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(this,null,function*(){var r,a,n;(0,I.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,I.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=_e(this.manifestUrlString,i,2),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,I.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,I.merge)(...i$.map(e=>(0,I.fromEvent)(this.element,e)),(0,I.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:I.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,I.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,I.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&dt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,b,S,v,y,x,E,P,B,q;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},a=(0,I.now)(),n=100,o=(b=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(x=(y=this.videoBufferManager)==null?void 0:y.getForwardBufferDuration())!=null?x:0,d=(P=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?P:0,c=l<n&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,h=this.audioBufferManager&&d<n&&a-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||h)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let _=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(_).catch(G=>{this.error$.next({id:"stallIntervalCallback",category:I.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:G})}),r.liveLastOffset=_}else{let _=this.element.currentTime*1e3;(B=this.videoBufferManager)==null||B.maintain(_),(q=this.audioBufferManager)==null||q.maintain(_),r.position=_}this.tracer.log("stallIntervalCallback",(0,I.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,I.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:I.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return A(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return A(this,null,function*(){var r,a,n,o,u;(0,I.assertNonNullable)(this.element),(0,I.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),dt(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,I.isNullable)(this.element)||(0,I.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,I.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,I.isNonNullable)(this.element)&&(0,I.isNonNullable)(this.source)&&(0,I.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,I.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}updateLive(){return A(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.updateLive(this.manifest)),this.isUpdatingLive=!1})}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i=U(k({},i),{gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime}),this.tracer.log("jumpGap",(0,I.flattenObject)(i)))}}};var Ru=class{constructor(e,t){this.fov=e,this.orientation=t}};var Lu=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/St(this.options.speedFadeTime/1e3,2)}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,a=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:a,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?i:this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed=k({},this.rotationSpeed),this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*St(this.fadeTime/1e3,2)+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var _y=`attribute vec2 a_vertex;
|
|
71
125
|
attribute vec2 a_texel;
|
|
72
126
|
|
|
73
127
|
varying vec2 v_texel;
|
|
@@ -78,7 +132,7 @@ void main(void) {
|
|
|
78
132
|
// save texel vector to pass to fragment shader
|
|
79
133
|
v_texel = a_texel;
|
|
80
134
|
}
|
|
81
|
-
`;var
|
|
135
|
+
`;var Fy=`#ifdef GL_ES
|
|
82
136
|
precision highp float;
|
|
83
137
|
precision highp int;
|
|
84
138
|
#else
|
|
@@ -121,6 +175,13 @@ void main(void) {
|
|
|
121
175
|
// sample using new coordinates
|
|
122
176
|
gl_FragColor = texture2D(u_texture, tc);
|
|
123
177
|
}
|
|
124
|
-
`;var yn=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new vn(this.params.fov,this.params.orientation),this.cameraRotationManager=new Sn(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),r=this.gl.getUniformLocation(this.program,"u_texture"),s=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(s,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(iS,this.gl.VERTEX_SHADER),i=this.createShader(rS,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,s=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,d=e-i,m=t+r;return[s,n,o,u,l,c,d,m]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var ye=require("@vkontakte/videoplayer-shared/es2015"),Sl=class{constructor(){this.isSeeked$=new ye.ValueSubject(!1);this.isBuffering$=new ye.ValueSubject(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new ye.Subscription;this.severeStallOccurred$=new ye.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.qualityLimitsOnStall=e.qualityLimitsOnStall,this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add((0,ye.combine)({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe((0,ye.debounce)(this.qualityLimitsOnStall.stallDurationToBeCount),(0,ye.filter)(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add((0,ye.combine)({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if((0,ye.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=(0,ye.now)(),d=r&&this.currentStallsCount>=r,m=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(d||m)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,ye.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),t||(this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},s))}))}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,ye.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},aS=Sl;var je=require("@vkontakte/videoplayer-shared/es2015"),Tn=class{constructor(){this.subscription=new je.Subscription;this.pipSize$=new je.ValueSubject(void 0);this.videoSize$=new je.ValueSubject(void 0);this.elementSize$=new je.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=je.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,je.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,je.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,je.map)(({videoSize:r,inPip:s,pipSize:n})=>s?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var wi=class{constructor(e){this.subscription=new j.Subscription;this.videoState=new Y("stopped");this.droppedFramesManager=new rn;this.stallsManager=new aS;this.elementSizeManager=new Tn;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Yr;this.audioTrackSwitchHistory=new Yr;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&(i==null?void 0:i.to)!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&M(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,j.assertNever)(e)}}};this.init3DScene=e=>{var i,r,s;if(this.scene3D)return;this.scene3D=new yn(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((s=e.projectionData)==null?void 0:s.pose.roll)||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new et(e.source.url),this.params=e,this.video=Ne(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Pe(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new gn({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Ue(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,s=o=>{e.error$.next({id:r,category:j.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:s,connect:(o,u)=>this.subscription.add(o.subscribe(u,s))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,j.filter)(l=>!!l.length),(0,j.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,j.map)(l=>l.to.state!=="none"),(0,j.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe((0,j.filterChanged)()),videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,qualityLimitsOnStall:this.params.tuning.dash.qualityLimitsOnStall,isBuffering$:i.isBuffering$,looped$:i.looped$}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,j.filter)(j.isNonNullable),(0,j.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,j.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Tt(this.video,t.isLooped,r)),this.subscription.add(qe(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Ze(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,j.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let h of c.audio){m.push(ol(h));let f=[];for(let g of h.representations){let S=_v(g);f.push(S),this.audioTracksMap.set(S,{stream:h,representation:g})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(m)}let d=[];for(let m of c.video){d.push(ul(m));let h=[];for(let f of m.representations){let g=Bv(U(L({},f),{streamId:m.id}));g&&(h.push(g),this.videoTracksMap.set(g,{stream:m,representation:f}))}this.videoStreamsMap.set(m,h)}this.params.output.availableVideoStreams$.next(d);for(let m of c.text)for(let h of m.representations){let f=Nv(m,h);this.textTracksMap.set(f,{stream:m,representation:h})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,j.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,j.fromEvent)(this.video,"progress")).pipe((0,j.filter)(()=>this.videoTracksMap.size>0)).subscribe(()=>A(this,null,function*(){let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,sS.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let d=this.selectVideoAudioRepresentations();if(!d)return;let[m,h]=d,f=[...this.videoTracksMap.keys()].find(S=>{var y;return((y=this.videoTracksMap.get(S))==null?void 0:y.representation.id)===m.id});(0,j.isNonNullable)(f)&&(this.stallsManager.lastVideoTrackSelected=f);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),l==="manifest_ready")yield this.player.initRepresentations(m.id,h==null?void 0:h.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",m.id),h){let S=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,S)}}),r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,j.filterChanged)()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[d,{stream:m}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===m.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(d),e.currentVideoStream$.next(ul(m))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,j.filterChanged)()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[d,{stream:m}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===m.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(ol(m))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var c,d;if(l!=null&&l.is3dVideo&&((c=this.params.tuning.spherical)!=null&&c.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(m){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${m}`})}else this.destroy3DScene(),(d=this.params.tuning.spherical)!=null&&d.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,j.map)(({to:l})=>l==="ready"),(0,j.filterChanged)());this.subscription.add((0,j.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,j.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),d=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(d)})),this.subscription.add((0,j.merge)(o,this.player.state$.stateChangeEnded$,(0,j.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,j.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,j.observableFrom)(["init"])).pipe((0,j.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var J,Z,ne,k,te,_,ie,K,ue,C,Q,oe,$;if(this.player.isStreamEnded)return;let{desiredState:e,output:t}=this.params,i=e.autoVideoTrackSwitching.getState(),r=(J=e.videoTrack.getState())==null?void 0:J.id,n=[...this.videoTracksMap.keys()].find(({id:N})=>N===r),o=t.currentVideoTrack$.getValue(),u=((k=(ne=e.videoStream.getState())!=null?ne:n&&((Z=this.videoTracksMap.get(n))==null?void 0:Z.stream))!=null?k:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!u)return;let l=[...this.videoStreamsMap.keys()].find(({id:N})=>N===u.id),c=l&&this.videoStreamsMap.get(l);if(!c)return;let d=ar(this.video.buffered,this.video.currentTime*1e3),m;this.player.isActiveLive$.getValue()?m=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?m=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:m=i?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let h=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,f=Math.min(d/Math.min(m,h||1/0),1),g=(te=e.audioStream.getState())!=null?te:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(_=[...this.audioStreamsMap.keys()].find(({id:N})=>N===(g==null?void 0:g.id)))!=null?_:this.audioStreamsMap.keys().next().value,y=0;if(S){if(n&&!i){let N=en(n,c,(ie=this.audioStreamsMap.get(S))!=null?ie:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,(K=N==null?void 0:N.bitrate)!=null?K:-1/0)}if(o){let N=en(o,c,(ue=this.audioStreamsMap.get(S))!=null?ue:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,(C=N==null?void 0:N.bitrate)!=null?C:-1/0)}}let I=ei(c,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:y,forwardBufferHealth:f,current:o,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),x=i?I!=null?I:n:n!=null?n:I,w=S&&qb(x,c,(Q=this.audioStreamsMap.get(S))!=null?Q:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:f,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),P=(oe=this.videoTracksMap.get(x))==null?void 0:oe.representation,O=w&&(($=this.audioTracksMap.get(w))==null?void 0:$.representation);if(P&&O)return[P,O];if(P&&!O&&this.audioTracksMap.size===0)return[P,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:j.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Fe(this.video),this.tracer.end()}};var Ba=class extends wi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var de=require("@vkontakte/videoplayer-shared/es2015");var _a=class extends wi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:s}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),s(i.timeUpdate$,t.liveBufferTime$),s(this.player.liveSeekableDuration$,t.duration$),s(this.player.liveLatency$,t.liveLatency$);let n=new de.ValueSubject(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,de.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,de.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,de.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,de.filter)(o=>(0,de.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,de.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,de.merge)(i.playbackRateState$,new de.ValueSubject(1))}).pipe((0,de.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:d}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-d||this.video.paused||(0,de.isNullable)(l)||(e=o-l)})).add((0,de.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,de.merge)(i.playbackRateState$,new de.ValueSubject(1))}).pipe((0,de.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:d}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-d||(0,de.isNullable)(o)||(0,de.isNullable)(u))return;let m=-1*(u-o-e);t.position$.next(Math.min(m,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=Fv(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var nS=W(Hs(),1);var X=require("@vkontakte/videoplayer-shared/es2015");var pt={};var cr=(a,e)=>new X.Observable(t=>{let i=(r,s)=>t.next(s);return a.on(e,i),()=>a.off(e,i)}),Na=class{constructor(e){this.subscription=new X.Subscription;this.videoState=new Y("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(e!=="initializing")switch((i==null?void 0:i.to)!=="paused"&&r.state==="requested"&&this.seek(r.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,X.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,X.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,X.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,X.assertNever)(e)}break;default:(0,X.assertNever)(t)}};this.textTracksManager=new et(e.source.url),this.video=Ne(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Pe(this.params.source.url)),this.loadHlsJs()}destroy(){var e,t;this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),(e=this.hls)==null||e.detachMedia(),(t=this.hls)==null||t.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:X.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,nS.default)(import("hls.js").then(r=>{e||(pt.Hls=r.default,pt.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,X.assertNonNullable)(pt.Hls,"hls.js not loaded"),this.hls=new pt.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,X.assertNonNullable)(pt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:X.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(l,c)=>this.subscription.add(l.subscribe(c,i));s(r.timeUpdate$,t.position$),s(r.durationChange$,t.duration$),s(r.ended$,t.endedEvent$),s(r.looped$,t.loopedEvent$),s(r.error$,t.error$),s(r.isBuffering$,t.isBuffering$),s(r.currentBuffer$,t.currentBuffer$),s(r.loadStart$,t.firstBytesEvent$),s(r.loadedMetadata$,t.loadedMetadataEvent$),s(r.playing$,t.firstFrameEvent$),s(r.canplay$,t.canplay$),s(r.seeked$,t.seekedEvent$),s(r.inPiP$,t.inPiP$),s(r.inFullscreen$,t.inFullscreen$),this.subscription.add(Tt(this.video,e.isLooped,i)),this.subscription.add(qe(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Ze(this.video,e.playbackRate,r.playbackRateState$,i)),s(tt(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe((0,X.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(cr(this.hls,pt.Events.ERROR).subscribe(l=>{var c;l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:X.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${(c=l.err)==null?void 0:c.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var l;((l=this.videoState.getTransition())==null?void 0:l.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),s(cr(this.hls,pt.Events.MANIFEST_PARSED).pipe((0,X.map)(({levels:l})=>l.reduce((c,d)=>{var I,x;let m=d.name||d.height.toString(10),{width:h,height:f}=d,g=(x=Xt((I=d.attrs.QUALITY)!=null?I:""))!=null?x:(0,X.videoSizeToQuality)({width:h,height:f});if(!g)return c;let S=d.attrs["FRAME-RATE"]?parseFloat(d.attrs["FRAME-RATE"]):void 0,y={id:m.toString(),quality:g,bitrate:d.bitrate/1e3,size:{width:h,height:f},fps:S};return this.trackLevels.set(m,{track:y,level:d}),c.push(y),c},[]))),t.availableVideoTracks$),s(cr(this.hls,pt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let d of l.subtitleTracks){let m=d.name,h=d.attrs.URI||"",f=d.lang;c.push({id:m,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),s(cr(this.hls,pt.Events.LEVEL_LOADING).pipe((0,X.map)(({url:l})=>Pe(l))),t.hostname$),s(cr(this.hls,pt.Events.FRAG_CHANGED),l=>{var m,h,f,g;let{video:c,audio:d}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next((((m=c==null?void 0:c.endPTS)!=null?m:0)-((h=c==null?void 0:c.startPTS)!=null?h:0))*1e3),t.currentAudioSegmentLength$.next((((f=d==null?void 0:d.endPTS)!=null?f:0)-((g=d==null?void 0:d.startPTS)!=null?g:0))*1e3)}),this.subscription.add(Kt(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>{var c;return(c=Array.from(this.trackLevels.values()).find(({level:d})=>d===l))==null?void 0:c.track},o=cr(this.hls,pt.Events.LEVEL_SWITCHED).pipe((0,X.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,X.filter)(X.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Kt(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,X.isNullable)(l))return;let c=(f=this.trackLevels.get(l.id))==null?void 0:f.level;if(!c)return;let d=this.hls.levels.indexOf(c),m=this.hls.currentLevel,h=this.hls.levels[m];!h||c.bitrate>h.bitrate?this.hls.nextLevel=d:(this.hls.loadLevel=d,this.hls.loadLevel=d)},{changed$:o,onError:i})),s(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,X.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,X.observableFrom)(["init"])).pipe((0,X.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}playIfAllowed(){return A(this,null,function*(){this.videoState.startTransitionTo("playing"),(yield He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:X.ErrorCategory.DOM,thrown:t})))||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))})}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0)}};var oS="X-Playback-Duration",yl=a=>A(void 0,null,function*(){var r;let e=yield Et(a),t=yield e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(oS)?parseInt(e.headers.get(oS),10):void 0});var z=require("@vkontakte/videoplayer-shared/es2015");var Il=W(_o(),1);var In=require("@vkontakte/videoplayer-shared/es2015");var d$=a=>{let e=null;if(a.QUALITY&&(e=Xt(a.QUALITY)),!e&&a.RESOLUTION){let[t,i]=a.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,In.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},p$=(a,e)=>{var s,n;let t=a.split(`
|
|
125
|
-
|
|
126
|
-
`),s=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:s,to:s+c},url:l}),s=s+c,!i.segmentStartTime){let d=new Date(i.vkStartTime).valueOf(),m=new Date(i.programDateTime).valueOf();i.segmentStartTime=m-d}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),s=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,Ke.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([U(L({},this.currentTextTrackData.textTrack),{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){return A(this,null,function*(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new Le;let{textTracks:e}=yield this.fetchManifestData(),t=yield this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}})}fetchManifestData(){return A(this,null,function*(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return yield this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Ke.ErrorCategory.WTF,thrown:t,message:e})}};var Fa=class{constructor(e){this.subscription=new z.Subscription;this.videoState=new Y("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new z.ValueSubject([]);this.liveOffset=new Ti;this.manifestStartTime$=new z.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?M(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),M(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let c=this.liveOffset.getTotalOffset();c>=this.maxSeekBackTime$.getValue()&&(c=0,this.liveOffset.resetTo(c)),this.liveOffset.resume(),this.params.output.position$.next(-c/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(M(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,z.assertNever)(t)}};var i;this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:z.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,s)=>En(r,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},s);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new xn(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new et(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:s})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:z.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(s,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:z.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Pe(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new z.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(m=>m.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:z.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.ended$,e.endedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),s(tt(this.video),e.elementVisible$),this.liveTextManager?(s(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),s(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,z.filterChanged)(),(0,z.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,z.isNonNullable)(l.to)){let d=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let m=this.manifests$.getValue().find(h=>h.id===d);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(Pe(m.url)))}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{var u,l,c;let o=(c=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:c.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,z.combine)({startTime:this.manifestStartTime$.pipe((0,z.filter)(z.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,z.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:m})=>({id:u,quality:l,size:c,fps:m,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,z.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,z.observableFrom)(["init"])).pipe((0,z.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,z.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:c,min:d}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[m,h]of[[c,"mq"],[d,"lq"]]){let f=String(parseFloat(m||""));h&&m&&r.searchParams.set(h,f)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=$e(r.toString(),this.liveOffset.getTotalOffset(),s);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),yl(n).then(c=>{var d;if(!(0,z.isNullable)(c))this.maxSeekBackTime$.next(c);else{let m=(d=this.params.source.maxSeekBackTime)!=null?d:this.maxSeekBackTime$.getValue();((0,z.isNullable)(m)||!isFinite(m))&&Et(n).then(h=>h.text()).then(h=>{var g;let f=(g=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(h))==null?void 0:g[1];if(f){let S=new URL(f,n).toString();yl(S).then(y=>{(0,z.isNullable)(y)||this.maxSeekBackTime$.next(y)})}}).catch(()=>{})}})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:z.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=$e(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var ae=require("@vkontakte/videoplayer-shared/es2015");var qa=class{constructor(e){this.subscription=new ae.Subscription;this.videoState=new Y("stopped");this.manifests$=new ae.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:d}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:d*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?M(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ae.assertNever)(t)}};this.textTracksManager=new et(e.source.url),this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ae.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Pe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),En($e(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:ae.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(m=>m.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:ae.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,ae.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Tt(this.video,t.isLooped,i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var h;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,ae.isNonNullable)(l.to)){let f=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let g=this.manifests$.getValue().find(S=>S.id===f);g&&(this.params.output.currentVideoTrack$.next(g),this.params.output.hostname$.next(Pe(g.url)))}let d=this.params.desiredState.playbackRate.getState(),m=(h=this.params.output.element$.getValue())==null?void 0:h.playbackRate;if(d!==m){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(d),f.playbackRate=d)}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,ae.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:m})=>({id:u,quality:l,size:c,fps:m,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i)),!ee.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,ae.merge)((0,ae.fromEvent)(o,"addtrack"),(0,ae.fromEvent)(o,"removetrack"),(0,ae.fromEvent)(o,"change"),(0,ae.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,ae.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ae.observableFrom)(["init"])).pipe((0,ae.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}prepare(){var s,n;let e=this.selectManifest();if((0,ae.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=(n=(s=t==null?void 0:t.to)!=null?s:i)!=null?n:{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let d=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,d)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ae.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var lS=W(Qi(),1),El=W(tr(),1),cS=W(Jt(),1);var he=require("@vkontakte/videoplayer-shared/es2015");var Ua=class{constructor(e){this.subscription=new he.Subscription;this.videoState=new Y("stopped");this.trackUrls={};this.textTracksManager=new et;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(s&&e!=="ready"&&!n){this.handleQualityLimitTransition(s.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch((i==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?M(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,he.assertNever)(e)}};this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),(0,lS.default)(this.params.source).reverse().forEach(([t,i],r)=>{let s=r.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,El.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:he.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,he.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Tt(this.video,t.isLooped,i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),s(tt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,he.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let c=this.params.desiredState.playbackRate.getState(),d=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(c!==d){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(c),m.playbackRate=c)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,he.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,he.observableFrom)(["init"])).pipe((0,he.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Fe(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,he.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,he.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Ca(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Pe(t))}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:he.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var l,c;this.params.output.autoVideoTrackLimits$.next(e);let t=d=>{this.params.output.currentVideoTrack$.next(d),this.params.desiredState.videoTrack.startTransitionTo(d)},i=d=>{let m=ei(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:d,abrLogger:this.params.dependencies.abrLogger});t(m)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,s=!!(e.max||e.min),n=(0,El.default)(this.trackUrls).map(d=>d.track);if(!r||!s||Wr({limits:e,lowestAvailableQuality:(c=(0,cS.default)(n,-1))==null?void 0:c.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?(0,he.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,he.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var me=require("@vkontakte/videoplayer-shared/es2015");var pS=require("@vkontakte/videoplayer-shared/es2015");var dS=["stun:videostun.mycdn.me:80"],m$=1e3,f$=3,xl=()=>null,Pn=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=xl;this.externalStopCallback=xl;this.externalErrorCallback=xl;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}handleUpdateMessage(e){return A(this,null,function*(){try{let t=yield this.createOffer();this.peerConnection&&(yield this.peerConnection.setLocalDescription(t)),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}})}handleLogin(){return A(this,null,function*(){try{let e={iceServers:[{urls:dS}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=yield this.createOffer();yield this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}})}handleAnswer(e){return A(this,null,function*(){try{this.peerConnection&&(yield this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e})))}catch(t){this.handleRTCError(t)}})}handleCandidate(e){return A(this,null,function*(){if(e)try{this.peerConnection&&(yield this.peerConnection.addIceCandidate(e))}catch(t){this.handleRTCError(t)}})}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:pS.ErrorCategory.WTF,message:e.message})}onPeerConnectionStream(e){return A(this,null,function*(){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))})}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}createOffer(){return A(this,null,function*(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=yield this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t})}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch(t){throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),m$)}normalizeOptions(e={}){let t={stunServerList:dS,maxRetryNumber:f$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Ha=class{constructor(e){this.videoState=new Y("stopped");this.maxSeekBackTime$=new me.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),M(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,me.assertNever)(e)}};this.subscription=new me.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ne(e.container,e.tuning),this.liveStreamClient=new Pn(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Fe(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:me.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,me.merge)(this.videoState.stateChangeStarted$.pipe((0,me.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,me.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(r.timeUpdate$,e.liveTime$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(tt(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.to)==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(qe(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,me.assertNever)(n.to)}},i)).add((0,me.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,me.observableFrom)(["init"])).pipe((0,me.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Pe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:me.VideoQuality.INVARIANT}),this.video.srcObject=e,M(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:me.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:me.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var ja=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var T=require("@vkontakte/videoplayer-shared/es2015");var Ot=require("@vkontakte/videoplayer-shared/es2015"),hS=a=>new Ot.Observable(e=>{let t=new Ot.Subscription,i=a.desiredPlaybackState$.stateChangeStarted$.pipe((0,Ot.map)(({from:l,to:c})=>`${l}-${c}`)),r=a.desiredPlaybackState$.stateChangeEnded$,s=a.providerChanged$.pipe((0,Ot.map)(({type:l})=>l!==void 0)),n=new Ot.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),a.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(s.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),a.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var it=require("@vkontakte/videoplayer-shared/es2015");function mS(){return new(window.AudioContext||window.webkitAudioContext)}var Qa=class Qa{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new Le;this.subscriptions=new it.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,it.filter)(s=>!!s.type),(0,it.once)()).subscribe(({type:s})=>this.subscribe(s)))}subscribe(e){ee.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,it.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,it.filter)(({playbackState:t,video:i,volume:{muted:r,volume:s}})=>t==="playing"&&!!i&&!r&&!!s),(0,it.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}initAudioContextOnce(e){return A(this,null,function*(){let{volumeMultiplier:t}=this,i=mS();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(yield i.resume(),this.destroyController.signal.aborted))return!1;let s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.connect(r),!0})}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){var t;this.volumeMultiplierError$.next({id:Qa.errorId,category:it.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${Qa.errorId} exception`,thrown:e})}};Qa.errorId="VolumeMultiplierManager";var dr=Qa;var b$={chunkDuration:5e3,maxParallelRequests:5},Ga=class{constructor(e){this.current$=new T.ValueSubject({type:void 0});this.providerError$=new T.Subject;this.noAvailableProvidersError$=new T.Subject;this.volumeMultiplierError$=new T.Subject;this.providerOutput={position$:new T.ValueSubject(0),duration$:new T.ValueSubject(1/0),volume$:new T.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new T.ValueSubject([]),currentVideoStream$:new T.ValueSubject(void 0),availableVideoTracks$:new T.ValueSubject([]),currentVideoTrack$:new T.ValueSubject(void 0),availableAudioStreams$:new T.ValueSubject([]),currentAudioStream$:new T.ValueSubject(void 0),availableAudioTracks$:new T.ValueSubject([]),currentVideoSegmentLength$:new T.ValueSubject(0),currentAudioSegmentLength$:new T.ValueSubject(0),isAudioAvailable$:new T.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new T.ValueSubject(!1),autoVideoTrackLimits$:new T.ValueSubject(void 0),currentBuffer$:new T.ValueSubject(void 0),isBuffering$:new T.ValueSubject(!0),error$:new T.Subject,fetcherError$:new T.Subject,fetcherRecoverableError$:new T.Subject,warning$:new T.Subject,willSeekEvent$:new T.Subject,soundProhibitedEvent$:new T.Subject,seekedEvent$:new T.Subject,loopedEvent$:new T.Subject,endedEvent$:new T.Subject,firstBytesEvent$:new T.Subject,loadedMetadataEvent$:new T.Subject,firstFrameEvent$:new T.Subject,canplay$:new T.Subject,isLive$:new T.ValueSubject(void 0),isLiveEnded$:new T.ValueSubject(null),isLowLatency$:new T.ValueSubject(!1),canChangePlaybackSpeed$:new T.ValueSubject(!0),liveTime$:new T.ValueSubject(void 0),liveBufferTime$:new T.ValueSubject(void 0),liveLatency$:new T.ValueSubject(void 0),severeStallOccurred$:new T.Subject,availableTextTracks$:new T.ValueSubject([]),currentTextTrack$:new T.ValueSubject(void 0),hostname$:new T.ValueSubject(void 0),httpConnectionType$:new T.ValueSubject(void 0),httpConnectionReused$:new T.ValueSubject(void 0),inPiP$:new T.ValueSubject(!1),inFullscreen$:new T.ValueSubject(!1),element$:new T.ValueSubject(void 0),elementVisible$:new T.ValueSubject(!0),availableSources$:new T.ValueSubject(void 0),is3DVideo$:new T.ValueSubject(!1),playbackState$:new T.ValueSubject(""),getCurrentTime$:new T.ValueSubject(null)};this.subscription=new T.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=Xv([...Zv(this.params.tuning),...Jv(this.params.tuning)],this.params.tuning).filter(l=>(0,T.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,s=[];i?s=[i]:r.length?s=[...t.filter(l=>!(0,Pl.default)(r,l)),...t.filter(l=>(0,Pl.default)(r,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,T.flattenObject)(s)),this.screenFormatsIterator=new ja(s);let n=[...bl(!0),...bl(!1)];this.chromecastFormatsIterator=new ja(n.filter(l=>(0,T.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&dr.isSupported()&&(this.volumeMultiplierManager=new dr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,T.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:T.ErrorCategory.WTF,message:"Failed to create provider",thrown:r})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider");let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}e.destroy();let s=this.providerOutput.isBuffering$;s.getValue()||s.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,T.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:s};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,T.assertNonNullable)(u),new Ba(U(L({},o),{source:u,sourceHls:l}))}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new _a(U(L({},o),{source:u}))}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),ee.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new qa(U(L({},o),{source:u})):new Na(U(L({},o),{source:u}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Fa(U(L({},o),{source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Ua(U(L({},o),{source:u}))}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Xb(U(L({},o),{source:u,config:U(L({},b$),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Ha({container:i,source:u,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,T.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:s}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,T.assertNonNullable)(o),new Qr({connection:o,meta:s,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,T.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,T.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,T.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let s=new URL(r);return s.host=t,s.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return U(L({},e),{url:i(e.url)})}return(0,bS.default)((0,fS.default)(e).map(([r,s])=>[r,i(s)]))}initProviderErrorHandling(){let e=new T.Subscription,t=!1,i=0;return e.add((0,T.merge)(this.providerOutput.error$.pipe((0,T.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),hS({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,T.map)(r=>({id:`ProviderHangup:${r}`,category:T.ErrorCategory.WTF,message:`A ${r} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,T.filter)(({to:s})=>s==="playing"),(0,T.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let s=this.current$.getValue().destination,n={error:r,currentDestination:s};if(s==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===T.ErrorCategory.NETWORK,u=r.category===T.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=i<this.params.tuning.providerErrorLimit&&!u,d=l&&!u&&(o&&t||!c);n=U(L({},n),{isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:d,canReinitProvider:c}),c?(i++,this.reinitProvider()):d?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(s!=null?s:"SCREEN"))}this.tracer.error("providerError",(0,T.flattenObject)(n))})),e}};var q=require("@vkontakte/videoplayer-shared/es2015");var g$=5e3,gS="one_video_throughput",vS="one_video_rtt",Bt=window.navigator.connection,SS=()=>{let a=Bt==null?void 0:Bt.downlink;if((0,q.isNonNullable)(a)&&a!==10)return a*1e3},yS=()=>{let a=Bt==null?void 0:Bt.rtt;if((0,q.isNonNullable)(a)&&a!==3e3)return a},TS=(a,e,t)=>{let i=t*8,r=i/a;return i/(r+e)},wl=class a{constructor(e){this.subscription=new q.Subscription;this.concurrentDownloads=new Set;var r,s;this.tuningConfig=e;let t=a.load(gS)||(e.useBrowserEstimation?SS():void 0)||g$,i=(s=(r=a.load(vS))!=null?r:e.useBrowserEstimation?yS():void 0)!=null?s:0;if(this.throughput$=new q.ValueSubject(t),this.rtt$=new q.ValueSubject(i),this.rttAdjustedThroughput$=new q.ValueSubject(TS(t,i,e.rttPenaltyRequestSize)),this.throughput=Pi.getSmoothedValue(t,-1,e),this.rtt=Pi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=SS();u&&this.throughput.next(u);let l=yS();(0,q.isNonNullable)(l)&&this.rtt.next(l)};Bt&&"onchange"in Bt&&this.subscription.add((0,q.fromEvent)(Bt,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{q.safeStorage.set(gS,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{q.safeStorage.set(vS,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,q.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,q.map)(({throughput:n,rtt:o})=>TS(n,o,e.rttPenaltyRequestSize)),(0,q.filter)(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,q.now)(),r=new q.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,q.fromEvent)(e,"progress").pipe((0,q.once)()).subscribe(s=>{t=s.loaded,i=(0,q.now)()}));break;case 1:case 0:r.add((0,q.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,q.now)()}));break}r.add((0,q.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,q.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,s=(0,q.now)(),n=0,o=(0,q.now)(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=m=>A(this,[m],function*({done:c,value:d}){if(c)!t&&this.addRawSpeed(r,(0,q.now)()-s,1),this.concurrentDownloads.delete(e);else if(d){if(t){let h=(0,q.now)();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let g=o-s;g&&this.addRawSpeed(n,g,1,t),n=d.byteLength,s=(0,q.now)()}else n+=d.byteLength;o=(0,q.now)()}else r+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,q.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,q.now)()-o,this.concurrentDownloads.size),n=0,o=(0,q.now)());yield i==null?void 0:i.read().then(l,u)}});this.concurrentDownloads.add(e),i==null||i.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(a.sanityCheck(e,t,r)){let s=e*8/t;this.throughput.next(s*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){var i;let t=q.safeStorage.get(e);if((0,q.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},IS=wl;var Ai=require("@vkontakte/videoplayer-shared/es2015");var ES={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{bitrateFactorAtEmptyBuffer:2.8,bitrateAudioFactorAtEmptyBuffer:10,bitrateFactorAtFullBuffer:2,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,containerSizeFactor:1.3,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Ai.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Ai.VideoQuality.Q_720P,trafficSavingLimit:Ai.VideoQuality.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Ai.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,qualityLimitsOnStall:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1},enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:2e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},xS=a=>{var e;return U(L({},(0,Ai.fillWithDefault)(a,ES)),{configName:[...(e=a.configName)!=null?e:[],...ES.configName]})};var p=require("@vkontakte/videoplayer-shared/es2015");var _t=require("@vkontakte/videoplayer-shared/es2015"),Al=({seekState:a,position$:e})=>(0,_t.merge)(a.stateChangeEnded$.pipe((0,_t.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,_t.filter)(_t.isNonNullable)),e.pipe((0,_t.filter)(()=>a.getState().state==="none")));var PS=require("@vkontakte/videoplayer-shared/es2015"),wS=a=>{let e=typeof a.container=="string"?document.getElementById(a.container):a.container;return(0,PS.assertNonNullable)(e,`Wrong container or containerId {${a.container}}`),e};var wn=require("@vkontakte/videoplayer-shared/es2015"),AS=(a,e,t,i)=>{a!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,wn.filter)(r=>r.length>0),(0,wn.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(a)}):(a===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(a)};var Wa=class{constructor(e={configName:[]},t=p.Tracer.createRootTracer(!1)){this.subscription=new p.Subscription;this.logger=new p.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new p.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new p.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new Y("stopped"),seekState:new Y({state:"none"}),volume:new Y({volume:1,muted:!1}),videoTrack:new Y(void 0),videoStream:new Y(void 0),audioStream:new Y(void 0),autoVideoTrackSwitching:new Y(!0),autoVideoTrackLimits:new Y({}),isLooped:new Y(!1),isLowLatency:new Y(!1),playbackRate:new Y(1),externalTextTracks:new Y([]),internalTextTracks:new Y([]),currentTextTrack:new Y(void 0),textTrackCuesSettings:new Y({}),cameraOrientation:new Y({x:0,y:0})};this.info={playbackState$:new p.ValueSubject(void 0),position$:new p.ValueSubject(0),duration$:new p.ValueSubject(1/0),muted$:new p.ValueSubject(!1),volume$:new p.ValueSubject(1),availableVideoStreams$:new p.ValueSubject([]),currentVideoStream$:new p.ValueSubject(void 0),availableQualities$:new p.ValueSubject([]),availableQualitiesFps$:new p.ValueSubject({}),currentQuality$:new p.ValueSubject(void 0),isAutoQualityEnabled$:new p.ValueSubject(!0),autoQualityLimitingAvailable$:new p.ValueSubject(!1),autoQualityLimits$:new p.ValueSubject({}),predefinedQualityLimitType$:new p.ValueSubject("unknown"),availableAudioStreams$:new p.ValueSubject([]),currentAudioStream$:new p.ValueSubject(void 0),availableAudioTracks$:new p.ValueSubject([]),isAudioAvailable$:new p.ValueSubject(!0),currentPlaybackRate$:new p.ValueSubject(1),currentBuffer$:new p.ValueSubject({start:0,end:0}),isBuffering$:new p.ValueSubject(!0),isStalled$:new p.ValueSubject(!1),isEnded$:new p.ValueSubject(!1),isLooped$:new p.ValueSubject(!1),isLive$:new p.ValueSubject(void 0),isLiveEnded$:new p.ValueSubject(null),canChangePlaybackSpeed$:new p.ValueSubject(void 0),atLiveEdge$:new p.ValueSubject(void 0),atLiveDurationEdge$:new p.ValueSubject(void 0),liveTime$:new p.ValueSubject(void 0),liveBufferTime$:new p.ValueSubject(void 0),liveLatency$:new p.ValueSubject(void 0),currentFormat$:new p.ValueSubject(void 0),availableTextTracks$:new p.ValueSubject([]),currentTextTrack$:new p.ValueSubject(void 0),throughputEstimation$:new p.ValueSubject(void 0),rttEstimation$:new p.ValueSubject(void 0),videoBitrate$:new p.ValueSubject(void 0),hostname$:new p.ValueSubject(void 0),httpConnectionType$:new p.ValueSubject(void 0),httpConnectionReused$:new p.ValueSubject(void 0),surface$:new p.ValueSubject("none"),chromecastState$:new p.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new p.ValueSubject(void 0),intrinsicVideoSize$:new p.ValueSubject(void 0),availableSources$:new p.ValueSubject(void 0),is3DVideo$:new p.ValueSubject(!1),currentVideoSegmentLength$:new p.ValueSubject(0),currentAudioSegmentLength$:new p.ValueSubject(0)};this.events={inited$:new p.Subject,ready$:new p.Subject,started$:new p.Subject,playing$:new p.Subject,paused$:new p.Subject,stopped$:new p.Subject,willStart$:new p.Subject,willResume$:new p.Subject,willPause$:new p.Subject,willStop$:new p.Subject,willDestruct$:new p.Subject,watchCoverageRecord$:new p.Subject,watchCoverageLive$:new p.Subject,managedError$:new p.Subject,fatalError$:new p.Subject,fetcherRecoverableError$:new p.Subject,ended$:new p.Subject,looped$:new p.Subject,seeked$:new p.Subject,willSeek$:new p.Subject,autoplaySoundProhibited$:new p.Subject,firstBytes$:new p.Subject,loadedMetadata$:new p.Subject,firstFrame$:new p.Subject,canplay$:new p.Subject,log$:new p.Subject,fetcherError$:new p.Subject,severeStallOccured$:new p.Subject};this.experimental={element$:new p.ValueSubject(void 0),tuningConfigName$:new p.ValueSubject([]),enableDebugTelemetry$:new p.ValueSubject(!1),dumpTelemetry:Db,getCurrentTime$:new p.ValueSubject(null)};if(this.initLogs(),this.tuning=xS(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new fs({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new IS(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new p.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,s)=>{let n=Reflect.get(i,r,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(m=>JSON.stringify(m,(h,f)=>{let g=typeof f;return(0,kS.default)(["number","string","boolean"],g)?f:f===null?null:`<${g}>`})),c=`Player.${String(r)}`,d=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:p.ErrorCategory.WTF,message:d,thrown:u}),u}}}})}initVideo(e){var s;this.config=e,(s=this.internalsExposure)==null||s.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{var l,c,d;let u=e,{container:n}=u,o=mc(u,["container"]);this.tracer.log("initVideo",(0,p.flattenObject)(o)),this.domContainer=wS(e),this.chromecastInitializer.contentId=(l=e.meta)==null?void 0:l.videoId,this.providerContainer=new Ga({sources:e.sources,meta:(c=e.meta)!=null?c:{},failoverHosts:(d=e.failoverHosts)!=null?d:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?ee.isInited$.pipe((0,p.filter)(n=>!!n),(0,p.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,p.fromEvent)(document,"visibilitychange").pipe((0,p.once)()).subscribe(r)):r(),this}destroy(){var e,t;this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),(t=this.internalsExposure)==null||t.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),s=e;e>=i&&!r&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),s=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?t:this.tuning.isAudioDisabled||s;this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var n;let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,r=t.getTransition(),s=(n=r==null?void 0:r.to.volume)!=null?n:this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:s,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:s,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{(0,p.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,p.filter)(i=>i.length>0),(0,p.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,p.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,r;switch(e){case"high_quality":r={min:t,max:void 0};break;case"traffic_saving":r={max:i,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var i;(0,p.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,p.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>L({type:"external"},t)))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var t;AS(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",L({},e)),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+s.x,y:r.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>e),(0,p.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,p.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,p.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,p.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,p.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Du({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,p.filter)(({from:e})=>e==="stopped"),(0,p.once)()).subscribe(()=>{this.initedAt=(0,p.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,p.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState(U(L({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:p.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,p.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,p.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,p.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,p.map)(n=>n.destination),(0,p.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,p.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,p.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,p.isInvariantQuality)(u)?1:(0,p.isInvariantQuality)(l)?-1:(0,p.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,p.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,p.filter)(n=>(0,p.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,p.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,p.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,p.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,p.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,p.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe((0,p.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,p.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,p.combine)({hasLiveOffsetByPaused:(0,p.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,p.map)(n=>n.to),(0,p.filterChanged)(),(0,p.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,p.combine)({atLiveEdge:(0,p.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Al({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,p.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,p.filterChanged)(),(0,p.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,p.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,p.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,p.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,p.filterChanged)(),(0,p.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,p.map)(n=>n.muted),(0,p.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,p.map)(n=>n.volume),(0,p.filterChanged)()).subscribe(this.info.volume$)).add(Al({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,p.merge)(e.providerOutput.endedEvent$.pipe((0,p.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,p.mapTo)(!1))).pipe((0,p.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,p.map)(n=>({id:n?`No${n}`:"NoProviders",category:p.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,p.once)(),(0,p.map)(n=>n!=null?n:(0,p.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,p.once)(),(0,p.map)(()=>(0,p.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,p.once)(),(0,p.map)(()=>(0,p.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new p.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new p.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,p.filter)(({to:n})=>n==="playing"),(0,p.once)()).subscribe(()=>i.next(!1)));let r=0,s=(0,p.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,p.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,p.filterChanged)());this.subscription.add(s.subscribe(n=>{n?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add((0,p.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,p.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),c=this.chromecastInitializer.castState$.getValue(),d;c==="CONNECTED"?d="second_screen":u?l?n?d="pip":o?d="fullscreen":d="inline":d="invisible":d="none",this.info.surface$.getValue()!==d&&this.info.surface$.next(d)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,p.map)(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new p.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,p.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,p.filter)(i=>i.length>0),(0,p.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:s})=>s===i),t||this.setAutoQuality(!0)),t||(t=ei(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,p.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,p.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;(0,p.assertNonNullable)(this.providerContainer),(0,p.assertNonNullable)(e),Cb(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>Mb(i)),this.providerContainer.current$.subscribe(({type:i})=>Gr("provider",i)),e.duration$.subscribe(i=>Gr("duration",i)),e.availableVideoTracks$.pipe((0,p.filter)(i=>!!i.length),(0,p.once)()).subscribe(i=>Gr("tracks",i)),this.events.fatalError$.subscribe(new De("fatalError")),this.events.managedError$.subscribe(new De("managedError")),e.position$.subscribe(new De("position")),e.currentVideoTrack$.pipe((0,p.map)(i=>i==null?void 0:i.quality)).subscribe(new De("quality")),this.info.currentBuffer$.subscribe(new De("buffer")),e.isBuffering$.subscribe(new De("isBuffering"))].forEach(i=>this.subscription.add(i)),Gr("codecs",ee.video.supportedCodecs)}initTracerSubscription(){let e=(0,p.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,p.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,p.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,p.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,p.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,p.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,p.filter)(i=>i>0),(0,p.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,p.filter)(i=>i>0),(0,p.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,p.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,p.filter)(i=>i.end>0),(0,p.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,p.filterChanged)())}).pipe((0,p.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,p.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,p.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,p.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,p.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,p.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,p.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,p.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,p.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,p.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,p.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,p.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e==null||e.release(),e=void 0},i=()=>A(this,null,function*(){t(),e=yield window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:p.ErrorCategory.DOM,message:String(r)})})});this.subscription.add((0,p.merge)((0,p.fromEvent)(document,"visibilitychange"),(0,p.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&s?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,p.flattenObject)({quality:t,availableTracks:(0,p.flattenObject)(e),track:(0,p.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Jr()}};var xt=require("@vkontakte/videoplayer-shared/es2015"),v$=`@vkontakte/videoplayer-core@${Cn}`;
|
|
178
|
+
`;var fs=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new Ru(this.params.fov,this.params.orientation),this.cameraRotationManager=new Lu(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),r=this.gl.getUniformLocation(this.program,"u_texture"),a=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(a,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(_y,this.gl.VERTEX_SHADER),i=this.createShader(Fy,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,l=e+i,d=t+r,c=e-i,h=t+r;return[a,n,o,u,l,d,c,h]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var $e=require("@vkontakte/videoplayer-shared/es2015");var Mu="stalls_manager_metrics",Ny="stalls_manager_abr_params",Cd=class{constructor(){this.isSeeked$=new $e.ValueSubject(!1);this.isBuffering$=new $e.ValueSubject(!1);this.maxQualityLimit=void 0;this.currentStallsCount=0;this.sumStallsDuration=0;this.lastStallDuration=0;this.providerStartWatchingTimestamp=0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new $e.Subscription;this.severeStallOccurred$=new $e.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){return k(k({},this.abrParams),this.getStoredData(Ny))}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,$e.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,$e.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(Mu,"[]");if(t.length<this.tuning.stallsMetricsHistoryLength)return;if(this.tuning.useTotalStallsDurationPerTvt){let r=t.reduce((o,u)=>o+u.tvt,0),n=t.reduce((o,u)=>o+u.stallsDuration,0)/r;e.push(this.calculateOptimalAbrParams(n))}if(this.tuning.useAverageStallsDurationPerTvt){let r=t.reduce((a,n)=>a+n.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(r))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed));let i={bitrateFactorAtEmptyBuffer:Math.max(...e.map(r=>r.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(r=>r.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(r=>r.containerSizeFactor))};this.setStoredData(Mu,[]),this.setStoredData(Ny,i)}calculateOptimalAbrParams(e){let{targetStallsDurationPerTvt:t,deviationStallsDurationPerTvt:i,criticalStallsDurationPerTvt:r,abrAdjustingSpeed:a}=this.tuning,n=this.abrTuningParams;return e<t-i?n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer-a,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer-a,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor+a,this.abrParams.maxContainerSizeFactor)}:e>t+i&&(n={bitrateFactorAtEmptyBuffer:Math.min(n.bitrateFactorAtEmptyBuffer+a,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(n.bitrateFactorAtFullBuffer+a,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(n.containerSizeFactor-a,this.abrParams.minContainerSizeFactor)}),e>r&&(n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor,this.abrParams.containerSizeFactor)}),n}getStoredData(e,t="{}"){var i;return JSON.parse((i=$e.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){$e.safeStorage.set(e,JSON.stringify(t))}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(Mu,"[]"),r=t/e,a=i.length?Ni(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:a};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(Mu,i)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe((0,$e.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,$e.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,$e.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,$e.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,$e.now)(),c=r&&this.currentStallsCount>=r,h=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-l>=i+o&&t>=i;(c||h)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,$e.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,$e.now)()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},a)),this.lastStallDuration=t}))}},$u=Cd;var At=require("@vkontakte/videoplayer-shared/es2015"),Du=class{constructor(){this.subscription=new At.Subscription;this.pipSize$=new At.ValueSubject(void 0);this.videoSize$=new At.ValueSubject(void 0);this.elementSize$=new At.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=At.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,At.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,At.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,At.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var Rr=class{constructor(e){this.subscription=new ue.Subscription;this.videoState=new re("stopped");this.droppedFramesManager=new ss;this.stallsManager=new $u;this.elementSizeManager=new Du;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new tr;this.audioTrackSwitchHistory=new tr;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&(i==null?void 0:i.to)!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ue.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new fs(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.pose.roll)||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new wt(e.source.url),this.params=e,this.video=nt(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new ku({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=lt(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ue.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ue.filter)(l=>!!l.length),(0,ue.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ue.map)(l=>l.to.state!=="none"),(0,ue.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ue.filter)(ue.isNonNullable),(0,ue.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ue.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ht(this.video,t.isLooped,r)),this.subscription.add(ut(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Et(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Pt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if((0,ue.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(Ed(p));let f=[];for(let b of p.representations){let S=xy(b);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:b})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(wd(h));let p=[];for(let f of h.representations){let b=Iy(U(k({},f),{streamId:h.id}));b&&(p.push(b),this.videoTracksMap.set(b,{stream:h,representation:f}))}this.videoStreamsMap.set(h,p)}this.params.output.availableVideoStreams$.next(c);for(let h of d.text)for(let p of h.representations){let f=Ey(h,p);this.textTracksMap.set(f,{stream:h,representation:p})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ue.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ue.fromEvent)(this.video,"progress")).pipe((0,ue.filter)(()=>this.videoTracksMap.size>0)).subscribe(()=>A(this,null,function*(){let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(!(0,Uy.default)(["manifest_ready","running"],l)||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let c=this.selectVideoAudioRepresentations();if(!c)return;let[h,p]=c,f=[...this.videoTracksMap.keys()].find(S=>{var v;return((v=this.videoTracksMap.get(S))==null?void 0:v.representation.id)===h.id});(0,ue.isNonNullable)(f)&&(this.stallsManager.lastVideoTrackSelected=f);let b=this.params.desiredState.autoVideoTrackLimits.getTransition();if(b&&this.params.output.autoVideoTrackLimits$.next(b.to),l==="manifest_ready")yield this.player.initRepresentations(h.id,p==null?void 0:p.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",h.id),p){let S=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",p.id,S)}}),r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ue.filterChanged)()).subscribe(l=>{let d=[...this.videoTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.videoStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.videoStream.setState(p.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(wd(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ue.filterChanged)()).subscribe(l=>{let d=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.audioStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.audioStream.setState(p.to),e.currentAudioStream$.next(Ed(h))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var d,c;if(l!=null&&l.is3dVideo&&((d=this.params.tuning.spherical)!=null&&d.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(h){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${h}`})}else this.destroy3DScene(),(c=this.params.tuning.spherical)!=null&&c.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ue.map)(({to:l})=>l==="ready"),(0,ue.filterChanged)());this.subscription.add((0,ue.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ue.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add((0,ue.merge)(o,this.player.state$.stateChangeEnded$,(0,ue.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ue.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ue.observableFrom)(["init"])).pipe((0,ue.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var $,W,F,Z,z,de,D,N,V,M,H,we,it;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Da:$a,t=this.params.tuning.useNewAutoSelectVideoTrack?uu:ou,i=this.params.tuning.useNewAutoSelectVideoTrack?mi:nu,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=($=r.videoTrack.getState())==null?void 0:$.id,l=[...this.videoTracksMap.keys()].find(({id:ye})=>ye===o),d=a.currentVideoTrack$.getValue(),c=((Z=(F=r.videoStream.getState())!=null?F:l&&((W=this.videoTracksMap.get(l))==null?void 0:W.stream))!=null?Z:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let h=[...this.videoStreamsMap.keys()].find(({id:ye})=>ye===c.id),p=h&&this.videoStreamsMap.get(h);if(!p)return;let f=tt(this.video.buffered,this.video.currentTime*1e3),b;this.player.isActiveLive$.getValue()?b=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?b=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:b=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let S=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(f/Math.min(b,S||1/0),1),y=(z=r.audioStream.getState())!=null?z:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,x=(de=[...this.audioStreamsMap.keys()].find(({id:ye})=>ye===(y==null?void 0:y.id)))!=null?de:this.audioStreamsMap.keys().next().value,E=0;if(x){if(l&&!n){let ye=e(l,p,(D=this.audioStreamsMap.get(x))!=null?D:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,(N=ye==null?void 0:ye.bitrate)!=null?N:-1/0)}if(d){let ye=e(d,p,(V=this.audioStreamsMap.get(x))!=null?V:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,(M=ye==null?void 0:ye.bitrate)!=null?M:-1/0)}}let P=i(p,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:E,forwardBufferHealth:v,current:d,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),B=n?P!=null?P:l:l!=null?l:P,q=x&&t(B,p,(H=this.audioStreamsMap.get(x))!=null?H:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),_=(we=this.videoTracksMap.get(B))==null?void 0:we.representation,G=q&&((it=this.audioTracksMap.get(q))==null?void 0:it.representation);if(_&&G)return[_,G];if(_&&!G&&this.audioTracksMap.size===0)return[_,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ue.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),ot(this.video),this.tracer.end()}};var In=class extends Rr{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var xe=require("@vkontakte/videoplayer-shared/es2015");var xn=class extends Rr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new xe.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,xe.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,xe.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,xe.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,xe.filter)(o=>(0,xe.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,xe.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,xe.merge)(i.playbackRateState$,new xe.ValueSubject(1))}).pipe((0,xe.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,xe.isNullable)(l)||(e=o-l)})).add((0,xe.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,xe.merge)(i.playbackRateState$,new xe.ValueSubject(1))}).pipe((0,xe.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,xe.isNullable)(o)||(0,xe.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=wy(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var ce=require("@vkontakte/videoplayer-shared/es2015");var Qd=K(Ua(),1);var T=require("@vkontakte/videoplayer-shared/es2015");var Bu=K(_t(),1),bs=K(si(),1),Cu=K(Ua(),1);var lT=K(Ra(),1);var nr=require("@vkontakte/videoplayer-shared/es2015");var o$=18,qy=!1;try{qy=te.browser.isSafari&&!!te.browser.safariVersion&&te.browser.safariVersion<=o$}catch(s){console.error(s)}var Vd=class{constructor(e){this.bufferFull$=new nr.Subject;this.error$=new nr.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:nr.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return A(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return A(this,null,function*(){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};qy&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:nr.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,nr.assertNever)(t)}}},jy=Vd;var L=require("@vkontakte/videoplayer-shared/es2015");var ge=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),i>e.byteLength-e.byteOffset&&(this.size32=NaN);let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var ms=class extends ge{};var En=class extends ge{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var wn=class extends ge{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var Pn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ae=class extends ge{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var An=class extends Ae{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var kn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Rn=class extends ge{constructor(e,t){super(e,t),this.data=this.content}};var Lr=class extends Ae{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Ln=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Mn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $n=class extends Ae{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Dn=class extends Ae{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Bn=class extends Ae{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Cn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Vn=class extends Ae{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var On=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _n=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fn=class extends Ae{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Nn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Un=class extends Ae{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var qn=class extends Ae{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var jn=class extends Ae{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var Hn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gn=class extends Ae{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var zn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var l$={ftyp:wn,moov:Pn,mvhd:An,moof:kn,mdat:Rn,sidx:Lr,trak:Ln,mdia:Cn,mfhd:Fn,tkhd:Vn,traf:Nn,tfhd:Un,tfdt:qn,trun:jn,minf:On,sv3d:Mn,st3d:$n,prhd:Dn,proj:_n,equi:Bn,uuid:En,stbl:Hn,stsd:Gn,avc1:zn,unknown:ms},qi=class s{constructor(e={}){this.options=k({offset:0},e)}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i));if(!n.size)break;t.push(n),i+=n.size}catch(r){break}return t}createBox(e,t){let i=l$[e];return i?new i(t,new s):new ms(t,new s)}};var or=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(a=(i=this.index)[r=t.type])!=null||(i[r]=[]),this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var d$=new TextDecoder("ascii"),p$=s=>d$.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",h$=s=>{let e=new Lr(s,new qi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},f$=(s,e)=>{let i=new qi().parse(s),r=new or(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},m$=s=>{let t=new qi().parse(s),i=new or(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},b$=s=>{var r;let t=new qi().parse(s);return(r=new or(t).find("sidx"))==null?void 0:r.timescale},g$=(s,e)=>{let i=new qi().parse(s),a=new or(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},S$=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new qi().parse(s),r=new or(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Hy={validateData:p$,parseInit:S$,getIndexRange:()=>{},parseSegments:h$,parseFeedableSegmentChunk:f$,getChunkEndTime:g$,getServerLatencyTimestamps:m$,getTimescaleFromIndex:b$};var Wn=K(_t(),1),ji=require("@vkontakte/videoplayer-shared/es2015");var zy=require("@vkontakte/videoplayer-shared/es2015");var Gy={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},Qy=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Qn(s,t),r=i in Gy,a=r?Gy[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,d=Qn(u),c=l*St(2,(o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},Qn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*St(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*St(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*St(2,32)+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},ni=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Qn(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,zy.assertNever)(e)}},Mr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Qy(i);if(!e(r))return;r.type==="master"&&Mr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Wy=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Qy(s);return Mr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ni(o,n):a===17026?t=ni(o,n):a===17029&&(i=ni(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Yy=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],v$=[231,22612,22743,167,171,163,160,175],y$=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return Mr(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=ni(f,p);l=Qn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ni(f,p):h===17545?r=ni(f,p):h===21420&&l===475249515?u=ni(f,p):h===374648427?Mr(f,({tag:S,type:v,value:y})=>S===30321?(d=ni(y,v)===1,!1):!0):a&&n&&(0,Wn.default)(Yy,h)&&(o=!0),!o}),(0,ji.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,ji.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,ji.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?i:1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},T$=s=>{if((0,ji.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},I$=(s,e)=>{let t=!1,i=!1,r=o=>(0,ji.isNonNullable)(o.time)&&(0,ji.isNonNullable)(o.position),a=[],n;return Mr(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=ni(l,u));break;case 183:break;case 241:n&&(n.position=ni(l,u));break;default:t&&(0,Wn.default)(Yy,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},x$=s=>{let e=0,t=!1;try{Mr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Wn.default)(v$,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,Wn.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Ky={validateData:Wy,parseInit:y$,getIndexRange:T$,parseSegments:I$,parseFeedableSegmentChunk:x$};var Yn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Ky;case"mp4":return Hy}}throw new ReferenceError(`Unsupported mime type ${s}`)};var jd=K(yd(),1),aT=K(Sr(),1),nT=K(Td(),1),oT=K(si(),1),Hd=K(Er(),1);var Xn=require("@vkontakte/videoplayer-shared/es2015");var Xy=s=>{var e;try{let t=E$(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{a[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function E$(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
|
|
179
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
180
|
+
(-(?<script>[a-z]{4}))?
|
|
181
|
+
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
182
|
+
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
183
|
+
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
184
|
+
(?:-(?<privateuse>(?:${e})))?
|
|
185
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var Fd=K(si(),1);var Jy=require("@vkontakte/videoplayer-shared/es2015"),Zy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?fi(a):void 0)!=null?u:(0,Jy.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},eT=({id:s,bitrate:e})=>({id:s,bitrate:e}),tT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),iT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Nd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Fd.default)(i.split("."),0),isDefault:r}),Ud=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Fd.default)(r.split("."),0)}),qd=s=>"url"in s,xt=s=>s.type==="template",Kn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var rT=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},$r=(s,e)=>{for(let t of s)if(e(t))return t;return null};var sT=s=>{if(!(s!=null&&s.startsWith("P")))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=(i==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},Hi=(s,e)=>{let t=s;t=(0,jd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,aT.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,jd.default)(t,n,(o,u)=>(0,Xn.isNullable)(a)?o:(0,Xn.isNullable)(u)?a:(0,nT.default)(a,parseInt(u,10),"0"))}return t},uT=(s,e)=>{var G,$,W,F,Z,z,de,D,N,V,M,H,we,it,ye,me,Ne,Ue,qe,rt,jt,Qt,ui,vi,Wi,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ls,Ms,$s,Ds,Bs,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs,Gs,zs,Qs,Ws,Ys,Ks,Xs,Js,Zs,ea;let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(Re=>{var Y,pt;return(pt=(Y=Re.textContent)==null?void 0:Y.trim())!=null?pt:""}),o=(G=(0,oT.default)(n,0))!=null?G:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,y=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],E=x.reduce((Re,Y)=>U(k({},Re),{[Y.id]:Y.children}),{}),P=x.reduce((Re,Y)=>U(k({},Re),{[Y.id]:Y.getAttribute("duration")}),{});y?v=sT(y):(0,Hd.default)(P).filter(Re=>Re).length&&!u?v=(0,Hd.default)(P).reduce((Re,Y)=>{var pt;return Re+((pt=sT(Y))!=null?pt:0)},0):b&&(v=parseInt(b,10));let B=0,q=(W=($=a.getAttribute("profiles"))==null?void 0:$.split(","))!=null?W:[];for(let Re of x.map(Y=>Y.id))for(let Y of E[Re]){let pt=(F=Y.getAttribute("id"))!=null?F:"id"+(B++).toString(10),Wt=(Z=Y.getAttribute("mimeType"))!=null?Z:"",ur=(z=Y.getAttribute("codecs"))!=null?z:"",lr=(de=Y.getAttribute("contentType"))!=null?de:Wt==null?void 0:Wt.split("/")[0],zu=(N=(D=Y.getAttribute("profiles"))==null?void 0:D.split(","))!=null?N:[],ta=(M=Xy((V=Y.getAttribute("lang"))!=null?V:""))!=null?M:{},yi=(it=(we=(H=Y.querySelector("Label"))==null?void 0:H.textContent)==null?void 0:we.trim())!=null?it:void 0,Qu=Y.querySelectorAll("Representation"),Wu=Y.querySelector("SegmentTemplate"),Yu=(me=(ye=Y.querySelector("Role"))==null?void 0:ye.getAttribute("value"))!=null?me:void 0,Rt=lr,ne={id:pt,language:ta.language,isDefault:Yu==="main",label:yi,codecs:ur,hdr:Rt==="video"&&ds(ur),mime:Wt,representations:[]};for(let Q of Qu){let Qe=(Ne=Q.getAttribute("lang"))!=null?Ne:void 0,Yt=(qe=(Ue=yi!=null?yi:Y.getAttribute("label"))!=null?Ue:Q.getAttribute("label"))!=null?qe:void 0,Ti=(Qt=(jt=(rt=Q.querySelector("BaseURL"))==null?void 0:rt.textContent)==null?void 0:jt.trim())!=null?Qt:"",ht=new URL(Ti||o,e).toString(),We=(ui=Q.getAttribute("mimeType"))!=null?ui:Wt,Ii=(Wi=(vi=Q.getAttribute("codecs"))!=null?vi:ur)!=null?Wi:"",xi;if(lr==="text"){let Ye=Q.getAttribute("id")||"",Ei=((vs=ta.privateuse)==null?void 0:vs.includes("x-auto"))||Ye.includes("_auto"),ft=Q.querySelector("SegmentTemplate");if(ft){let Kt={representationId:(ys=Q.getAttribute("id"))!=null?ys:void 0,bandwidth:(Ts=Q.getAttribute("bandwidth"))!=null?Ts:void 0},wi=parseInt((Is=Q.getAttribute("bandwidth"))!=null?Is:"",10)/1e3,Pi=(Es=parseInt((xs=ft.getAttribute("startNumber"))!=null?xs:"",10))!=null?Es:1,Lt=parseInt((ws=ft.getAttribute("timescale"))!=null?ws:"",10),cr=(Ps=ft.querySelectorAll("SegmentTimeline S"))!=null?Ps:[],Mt=ft.getAttribute("media");if(!Mt)continue;let Ai=[],ki=0,Ri="",$t=0,Xt=Pi,Se=0;for(let Le of cr){let mt=parseInt((As=Le.getAttribute("d"))!=null?As:"",10),Ie=parseInt((ks=Le.getAttribute("r"))!=null?ks:"",10)||0,Ke=parseInt((Rs=Le.getAttribute("t"))!=null?Rs:"",10);Se=Number.isFinite(Ke)?Ke:Se;let bt=mt/Lt*1e3,Xe=Se/Lt*1e3;for(let Ce=0;Ce<Ie+1;Ce++){let Je=Hi(Mt,U(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:(Se+Ce*mt).toString(10)})),Dt=(Xe!=null?Xe:0)+Ce*bt,Zt=Dt+bt;Xt++,Ai.push({time:{from:Dt,to:Zt},url:Je})}Se+=(Ie+1)*mt,ki+=(Ie+1)*bt}$t=Se/Lt*1e3,Ri=Hi(Mt,U(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:Se.toString(10)}));let Jt={time:{from:$t,to:1/0},url:Ri},je={type:"template",baseUrl:ht,segmentTemplateUrl:Mt,initUrl:"",totalSegmentsDurationMs:ki,segments:Ai,nextSegmentBeyondManifest:Jt,timescale:Lt};xi={id:Ye,kind:"text",segmentReference:je,profiles:[],duration:v,bitrate:wi,mime:"",codecs:"",width:0,height:0,isAuto:Ei}}else xi={id:Ye,isAuto:Ei,kind:"text",url:ht}}else{let Ye=(Ms=(Ls=Q.getAttribute("contentType"))!=null?Ls:We==null?void 0:We.split("/")[0])!=null?Ms:lr,Ei=(Ds=($s=Y.getAttribute("profiles"))==null?void 0:$s.split(","))!=null?Ds:[],ft=parseInt((Bs=Q.getAttribute("width"))!=null?Bs:"",10),Kt=parseInt((Cs=Q.getAttribute("height"))!=null?Cs:"",10),wi=parseInt((Vs=Q.getAttribute("bandwidth"))!=null?Vs:"",10)/1e3,Pi=(Os=Q.getAttribute("frameRate"))!=null?Os:"",Lt=(_s=Q.getAttribute("quality"))!=null?_s:void 0,cr=Pi?fu(Pi):void 0,Mt=(Fs=Q.getAttribute("id"))!=null?Fs:"id"+(B++).toString(10),Ai=Ye==="video"?`${Kt}p`:Ye==="audio"?`${wi}Kbps`:Ii,ki=`${Mt}@${Ai}`,Ri=[...q,...zu,...Ei],$t,Xt=Q.querySelector("SegmentBase"),Se=(Ns=Q.querySelector("SegmentTemplate"))!=null?Ns:Wu;if(Xt){let je=(qs=(Us=Q.querySelector("SegmentBase Initialization"))==null?void 0:Us.getAttribute("range"))!=null?qs:"",[Le,mt]=je.split("-").map(Je=>parseInt(Je,10)),Ie={from:Le,to:mt},Ke=(js=Q.querySelector("SegmentBase"))==null?void 0:js.getAttribute("indexRange"),[bt,Xe]=Ke?Ke.split("-").map(Je=>parseInt(Je,10)):[],Ce=Ke?{from:bt,to:Xe}:void 0;$t={type:"byteRange",url:ht,initRange:Ie,indexRange:Ce}}else if(Se){let je={representationId:(Hs=Q.getAttribute("id"))!=null?Hs:void 0,bandwidth:(Gs=Q.getAttribute("bandwidth"))!=null?Gs:void 0},Le=parseInt((zs=Se.getAttribute("timescale"))!=null?zs:"",10),mt=(Qs=Se.getAttribute("initialization"))!=null?Qs:"",Ie=Se.getAttribute("media"),Ke=(Ys=parseInt((Ws=Se.getAttribute("startNumber"))!=null?Ws:"",10))!=null?Ys:1,bt=Hi(mt,je);if(!Ie)throw new ReferenceError("No media attribute in SegmentTemplate");let Xe=(Ks=Se.querySelectorAll("SegmentTimeline S"))!=null?Ks:[],Ce=[],Je=0,Dt="",Zt=0;if(Xe.length){let Li=Ke,Me=0;for(let Bt of Xe){let Ve=parseInt((Xs=Bt.getAttribute("d"))!=null?Xs:"",10),gt=parseInt((Js=Bt.getAttribute("r"))!=null?Js:"",10)||0,Mi=parseInt((Zs=Bt.getAttribute("t"))!=null?Zs:"",10);Me=Number.isFinite(Mi)?Mi:Me;let dr=Ve/Le*1e3,pr=Me/Le*1e3;for(let $i=0;$i<gt+1;$i++){let Xu=Hi(Ie,U(k({},je),{segmentNumber:Li.toString(10),segmentTime:(Me+$i*Ve).toString(10)})),ia=(pr!=null?pr:0)+$i*dr,Ju=ia+dr;Li++,Ce.push({time:{from:ia,to:Ju},url:Xu})}Me+=(gt+1)*Ve,Je+=(gt+1)*dr}Zt=Me/Le*1e3,Dt=Hi(Ie,U(k({},je),{segmentNumber:Li.toString(10),segmentTime:Me.toString(10)}))}else if((0,Xn.isNonNullable)(v)){let Me=parseInt((ea=Se.getAttribute("duration"))!=null?ea:"",10)/Le*1e3,Bt=Math.ceil(v/Me),Ve=0;for(let gt=1;gt<Bt;gt++){let Mi=Hi(Ie,U(k({},je),{segmentNumber:gt.toString(10),segmentTime:Ve.toString(10)}));Ce.push({time:{from:Ve,to:Ve+Me},url:Mi}),Ve+=Me}Zt=Ve,Dt=Hi(Ie,U(k({},je),{segmentNumber:Bt.toString(10),segmentTime:Ve.toString(10)}))}let Ku={time:{from:Zt,to:1/0},url:Dt};$t={type:"template",baseUrl:ht,segmentTemplateUrl:Ie,initUrl:bt,totalSegmentsDurationMs:Je,segments:Ce,nextSegmentBeyondManifest:Ku,timescale:Le}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ye||!We)continue;let Jt={video:"video",audio:"audio",text:"text"}[Ye];if(!Jt)continue;Rt||(Rt=Jt),xi={id:ki,kind:Jt,segmentReference:$t,profiles:Ri,duration:v,bitrate:wi,mime:We,codecs:Ii,width:ft,height:Kt,fps:cr,quality:Lt}}ne.language||(ne.language=Qe),ne.label||(ne.label=Yt),ne.mime||(ne.mime=We),ne.codecs||(ne.codecs=Ii),ne.hdr||(ne.hdr=Rt==="video"&&ds(Ii)),ne.representations.push(xi)}if(Rt){let Q=r[Rt].find(Qe=>Qe.id===ne.id);if(Q&&ne.representations.every(Qe=>xt(Qe.segmentReference)))for(let Qe of Q.representations){let Yt=ne.representations.find(We=>We.id===Qe.id),Ti=Yt==null?void 0:Yt.segmentReference,ht=Qe.segmentReference;ht.segments.push(...Ti.segments),ht.nextSegmentBeyondManifest=Ti.nextSegmentBeyondManifest}else r[Rt].push(ne)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Jn=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new L.ValueSubject(0);this.currentLowLatencySegmentLength$=new L.ValueSubject(0);this.currentSegmentLength$=new L.ValueSubject(0);this.onLastSegment$=new L.ValueSubject(!1);this.fullyBuffered$=new L.ValueSubject(!1);this.playingRepresentation$=new L.ValueSubject(void 0);this.playingRepresentationInit$=new L.ValueSubject(void 0);this.error$=new L.Subject;this.gaps=[];this.subscription=new L.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Te;this.switchAbortController=new Te;this.destroyAbortController=new Te;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,L.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){let t=this.representations.get(e);(0,L.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new jy(this.sourceBuffer),this.subscription.add((0,L.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,L.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:L.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!oe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,us(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=tt(this.sourceBuffer.buffered,o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,L.assertNonNullable)(i,"No init buffer for starting representation"),(0,L.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))})}.bind(this));this.switchTo=(0,L.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,L.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,L.isNullable)(a)||(0,L.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,L.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,L.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,L.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,L.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,L.isNullable)(a)||(0,L.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,L.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,L.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,L.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){var u,l;let t=(u=(0,Cu.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!xt(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,L.assertNonNullable)(r);let a=this.segments.get(i);(0,L.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,L.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1})}.bind(this));var d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Te,(0,L.abortable)(this.switchAbortController.signal,function(i,r=!1){return pe(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,L.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,L.isNullable)(o)||(0,L.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,L.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,L.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}})}.bind(this))(e,t))}warmUpMediaSource(){!(0,L.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return A(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Te,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,L.isNullable)(e)||(0,L.isNullable)(this.downloadingRepresentationId)||(0,L.isNullable)(this.playingRepresentationId)||(0,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,L.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,L.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,L.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=tt(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&us(this.sourceBuffer.buffered)>=this.bufferLimit){let d=tt(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u!=null&&u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Bu.default)(u,r))d="high";else{let c=(0,bs.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!(u!=null&&u.length)&&tt(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,bs.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-tt(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,L.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,Cu.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,Cu.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!xt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>U(k({},p),{status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,bs.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,L.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!xt(r))return;let a=this.segments.get(i.id);if(!a)continue;let n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=Hi(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&gi&&gi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&gi&&gi(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:c,time:{from:h,to:p}},f)=>{let b=h<=i&&p>=i,S=h>i||b||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),y=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&y&&this.sourceBuffer&&oe(this.mediaSource,this.sourceBuffer)&&!(dt(this.sourceBuffer.buffered,h)&&dt(this.sourceBuffer.buffered,p)))&&S&&y});if(r===-1)return null;if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=d);c++){let h=a[c];if(n+=h.byte.to+1-h.byte.from,o+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")u.push(h);else break}return u}loadSegments(e,t,i="auto"){return A(this,null,function*(){xt(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return A(this,null,function*(){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,L.abortable)(o,function(){return pe(this,null,function*(){let d=(0,L.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=yield this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,L.now)(),!d)return;let c=new DataView(d),h=Yn(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),Kn(d)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())xt(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return A(this,null,function*(){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,L.abortable)(n,function(){return pe(this,null,function*(){let u=(0,L.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,L.fromEvent)(window,"online").pipe((0,L.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,L.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Kn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(xt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,bs.default)(e,0).byte.from,to:(0,bs.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>A(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,L.now)(),yield this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!xt(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,L.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Bu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!oe(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId===t){if(a.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let d=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),c=Yn(o.mime).parseFeedableSegmentChunk(d,this.isLive);c!=null&&c.byteLength&&(l.status="partially_fed",u.feedingBytes+=c.byteLength,yield this.sourceBufferTaskQueue.append(c),u.fedBytes+=c.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!oe(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){if(l.representationId!==t)continue;if(a.aborted){yield n();continue}let{segment:d}=l,c=d.byte.from-i,h=d.byte.to-i,p=h-c+1,f=c<r,b=h<=r;if(f){if(d.status==="downloading"&&b){d.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+c,p);(yield this.sourceBufferTaskQueue.append(S,a))&&!a.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(d.status==="downloading"||d.status==="partially_fed")&&(l.loadedBytes=Math.min(p,r-c),l.loadedBytes>l.feedingBytes)){let S=new DataView(e.buffer,e.byteOffset+c+l.feedingBytes,l.loadedBytes-l.feedingBytes),v=l.loadedBytes===p?S:Yn(u.mime).parseFeedableSegmentChunk(S);v!=null&&v.byteLength&&(d.status="partially_fed",l.feedingBytes+=v.byteLength,(yield this.sourceBufferTaskQueue.append(v,a))&&!a.aborted?(l.fedBytes+=v.byteLength,l.fedBytes===p&&this.onSegmentFullyAppended(l,t)):yield n())}}}})}onSegmentFullyAppended(e,t){if(!((0,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer))){!this.isLive&&te.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(dt(this.sourceBuffer.buffered,e.segment.time.from,100)&&dt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:L.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",qd(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none")}this.isActiveLowLatency()&&this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,e.segment)}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=os(()=>(0,lT.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return A(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,L.abortable)(this.destroyAbortController.signal,function(){return pe(this,null,function*(){let o=(0,L.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Yn(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let h=d;this.isLive&&xt(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:L.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return A(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return A(this,null,function*(){if(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,L.isNullable)(e))return!1;let r=[],a=0,n=o=>{var l;if(a>=t)return;r.push(k({},o.time));let u=qd(o)?(l=o.size)!=null?l:0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||d)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,d=0;for(let c of this.segments.values())for(let h of c)(0,Bu.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(u)&&Math.round(h.time.to)>=Math.round(l)&&d++;if(d===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=rT(r),(yield Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)})}getDebugBufferState(){if(!(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getBufferedTo(){return!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,L.isNullable)(e)?0:tt(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))return;if(this.tuning.useRefactoredSearchGap)for(let r=0;r<this.sourceBuffer.buffered.length;r++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(r)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(r)*1e3)));let i={representation:e,from:t.time.from,to:t.time.to};for(let r=0;r<this.sourceBuffer.buffered.length;r++){let a=this.sourceBuffer.buffered.start(r)*1e3,n=this.sourceBuffer.buffered.end(r)*1e3;if(!(n<=t.time.from||a>=t.time.to)){if(a<=t.time.from&&n>=t.time.to){i=void 0;break}n>t.time.from&&n<t.time.to&&(i.from=n),a<t.time.to&&a>t.time.from&&(i.to=a)}}i&&i.to-i.from>1&&!this.gaps.some(r=>i&&r.from===i.from&&r.to===i.to)&&this.gaps.push(i)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=os(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:L.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,L.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(d=>d.from-t<=n&&d.to+t>=o),l=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:L.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ae=require("@vkontakte/videoplayer-shared/es2015");var Ou=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new ae.ValueSubject(void 0);this.lastConnectionReused$=new ae.ValueSubject(void 0);this.lastRequestFirstBytes$=new ae.ValueSubject(void 0);this.recoverableError$=new ae.Subject;this.error$=new ae.Subject;this.abortAllController=new Te;this.subscription=new ae.SubscriptionRemovable;this.fetchManifest=(0,ae.abortable)(this.abortAllController.signal,function(e){return pe(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=sr(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Su(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Vu);return r?(t.log("success",(0,ae.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,ae.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,ae.abortable)(this.abortAllController.signal,function(l){return pe(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var Z,z,de;let d=e,c=new Headers,h=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let D=new URL(d,location.href);D.searchParams.append("bytes",`${i.from}-${i.to}`),d=D.toString();break}default:(0,ae.assertNever)(t)}this.requestQuic&&(d=sr(d));let p=this.abortAllController.signal,f;if(n){let D=new Te;if(f=(0,ae.merge)((0,ae.fromEvent)(this.abortAllController.signal,"abort"),(0,ae.fromEvent)(n,"abort")).subscribe(()=>{try{D.abort()}catch(N){Vu(N)}}),this.abortAllController.signal.aborted||n.aborted)try{D.abort()}catch(N){Vu(N)}p=D.signal}let b=(0,ae.now)();h.log("startRequest",(0,ae.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let S=yield this.doFetch(d,{priority:a,headers:c,signal:p}),v=(0,ae.now)();if(!S)return h.error("error",{message:"No response in request"}),h.end(),this.unsubscribeAbortSubscription(f),null;if((Z=this.throughputEstimator)==null||Z.addRawRtt(v-b),!S.ok||!S.body){this.unsubscribeAbortSubscription(f);let D=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:D}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){this.unsubscribeAbortSubscription(f);let D=(0,ae.now)(),N={requestStartedAt:b,requestEndedAt:D,duration:D-b};return h.log("endRequest",(0,ae.flattenObject)(N)),h.end(),S.arrayBuffer()}let y=S.body;if(o){let D;[y,D]=S.body.tee(),(z=this.throughputEstimator)==null||z.trackStream(D,u)}let x=y.getReader(),E,P=parseInt((de=S.headers.get("content-length"))!=null?de:"",10);Number.isFinite(P)&&(E=P),!E&&i&&(E=i.to-i.from+1);let B=0,q=E?new Uint8Array(E):new Uint8Array(0),_=!1,G=D=>{this.unsubscribeAbortSubscription(f),_=!0,Vu(D)},$=(0,ae.abortable)(p,function(V){return pe(this,arguments,function*({done:D,value:N}){if(B===0&&this.lastRequestFirstBytes$.next((0,ae.now)()-b),p.aborted){this.unsubscribeAbortSubscription(f);return}if(!D&&N){if(E)q.set(N,B),B+=N.byteLength;else{let M=new Uint8Array(q.length+N.length);M.set(q),M.set(N,q.length),q=M,B+=N.byteLength}r==null||r(new DataView(q.buffer),B),yield x==null?void 0:x.read().then($,G)}})}.bind(this));yield x==null?void 0:x.read().then($,G),this.unsubscribeAbortSubscription(f);let W=(0,ae.now)(),F={failed:_,requestStartedAt:b,requestEndedAt:W,duration:W-b};return _?(h.error("endRequest",(0,ae.flattenObject)(F)),h.end(),null):(h.log("endRequest",(0,ae.flattenObject)(F)),h.end(),q.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,ae.abortable)(this.abortAllController.signal,function(e,t,i){return pe(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let y=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,p,f);return{init:p,dataView:new DataView(c),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,ae.abortable)(this.abortAllController.signal,function(e,t){return pe(this,null,function*(){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>U(k({},n),{status:"none",size:void 0})),dataView:new DataView(r)}:null})}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=gu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=yield this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,ae.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}doFetch(e,t){return A(this,null,function*(){let i=yield Gt(e,t);if(i.ok)return i;let r=yield i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:ae.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ae.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ae.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ae.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:ae.ErrorCategory.FATAL})}})}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Vu=s=>{if(!Kn(s))throw s};var _u=require("@vkontakte/videoplayer-shared/es2015");var Zn=class s{constructor(e,t){this.currentRepresentation$=new _u.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,_u.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(U(k({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&xt(t.segmentReference))}};var A$=["timeupdate","progress","play","seeked","stalled","waiting"],k$=["timeupdate","progress","loadeddata","playing","seeked"];var Fu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new T.Subscription;this.representationSubscription=new T.Subscription;this.state$=new re("none");this.currentVideoRepresentation$=new T.ValueSubject(void 0);this.currentVideoRepresentationInit$=new T.ValueSubject(void 0);this.currentAudioRepresentation$=new T.ValueSubject(void 0);this.currentVideoSegmentLength$=new T.ValueSubject(0);this.currentAudioSegmentLength$=new T.ValueSubject(0);this.error$=new T.Subject;this.lastConnectionType$=new T.ValueSubject(void 0);this.lastConnectionReused$=new T.ValueSubject(void 0);this.lastRequestFirstBytes$=new T.ValueSubject(void 0);this.currentLiveTextRepresentation$=new T.ValueSubject(null);this.isLive$=new T.ValueSubject(!1);this.isActiveLive$=new T.ValueSubject(!1);this.isLowLatency$=new T.ValueSubject(!1);this.liveDuration$=new T.ValueSubject(0);this.liveSeekableDuration$=new T.ValueSubject(0);this.liveAvailabilityStartTime$=new T.ValueSubject(0);this.liveStreamStatus$=new T.ValueSubject(void 0);this.bufferLength$=new T.ValueSubject(0);this.liveLatency$=new T.ValueSubject(void 0);this.liveLoadBufferLength$=new T.ValueSubject(0);this.livePositionFromPlayer$=new T.ValueSubject(0);this.currentStallDuration$=new T.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new T.ValueSubject(0);this.fetcherRecoverableError$=new T.Subject;this.fetcherError$=new T.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new T.Subject;this.gapWatchdogActive=!1;this.destroyController=new Te;this.initManifest=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=_e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:T.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,T.abortable)(this.destroyController.signal,function(){return pe(this,null,function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:T.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=uT(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=hu(e))!=null?n:{id:"ManifestParsing",category:T.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=Nt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=Au(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),b=r.video.some(S=>!S.hdr);te.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a=U(k({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,T.flattenObject)(a)),a})}.bind(this));this.initRepresentations=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var h;this.tracer.log("initRepresentationsStart",(0,T.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,T.assertNonNullable)(this.manifest),(0,T.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new T.Subscription,this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,T.fromEvent)(p,"error").pipe((0,T.filter)(f=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Jo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&es())if(i){let p=document.createElement("source");r(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((p,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new Jn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,T.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new Jn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}Zn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Zn(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,T.merge)(...k$.map(p=>(0,T.fromEvent)(this.element,p))).pipe((0,T.map)(p=>this.element?tt(this.element.buffered,this.element.currentTime*1e3):0),(0,T.filterChanged)(),(0,T.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,T.merge)((0,T.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,T.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,T.now)())),this.subscription.add((0,T.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,T.interval)(1e3).subscribe(f=>{let b=Ji(this.manifestUrlString,2);this.manifestUrlString=_e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,T.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,T.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,T.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||hs(this.element,1)})),this.representationSubscription.add((0,T.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.filter)(({bufferLength:f,isActiveLive:b,isLowLatency:S})=>b&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,T.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,T.filter)(({isLive:f})=>f),(0,T.filterChanged)((f,b)=>b.bufferLength<f.bufferLength),(0,T.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Ji(this.manifestUrlString,2);return(f/2+b+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,T.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,y=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(E)>y&&(P=1+Math.sign(E)*x),hs(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let y=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(E=>{var P,B;return(B=(P=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?B:y}))-y}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,T.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,T.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:b}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,y=Ji(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,B=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,q=isFinite(f)?f:b,_=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let $="none";if(_?$="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(W=>W.proceedLowLatencyLive()),$="active_low_latency"):y!==0&&q<E?$="live_forward_buffering":q<E+B&&($="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),$==="live_forward_buffering"||$==="live_with_target_offset"){let W=p-(E+P),F=this.normolizeLiveOffset(Math.trunc(y+W/v)),Z=Math.abs(F-y),z=0;!f||Z<=this.tuning.dashCmafLive.offsetCalculationError?z=y:F>0&&Z>this.tuning.dashCmafLive.offsetCalculationError&&(z=F),this.manifestUrlString=_e(this.manifestUrlString,z,2)}($==="live_with_target_offset"||$==="live_forward_buffering")&&(p=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:T.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,T.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,T.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,T.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,T.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,T.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,T.filterChanged)(),(0,T.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,T.filter)(p=>p));if(this.representationSubscription.add((0,T.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,T.merge)(...this.bufferManagers.map(p=>p.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((f,b)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,Qd.default)((0,Qd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let b=[];return f.duration&&b.push(f.duration),xt(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,T.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")})}.bind(this));this.tick=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,T.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:T.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new Ou({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=Ui.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,k({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(this,null,function*(){var r,a,n;(0,T.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,T.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=_e(this.manifestUrlString,i,2),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,T.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,T.merge)(...A$.map(e=>(0,T.fromEvent)(this.element,e)),(0,T.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:T.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,T.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,T.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&dt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,b,S,v,y,x,E,P,B,q;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},a=(0,T.now)(),n=100,o=(b=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(x=(y=this.videoBufferManager)==null?void 0:y.getForwardBufferDuration())!=null?x:0,d=(P=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?P:0,c=l<n&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,h=this.audioBufferManager&&d<n&&a-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||h)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let _=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(_).catch(G=>{this.error$.next({id:"stallIntervalCallback",category:T.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:G})}),r.liveLastOffset=_}else{let _=this.element.currentTime*1e3;(B=this.videoBufferManager)==null||B.maintain(_),(q=this.audioBufferManager)==null||q.maintain(_),r.position=_}this.tracer.log("stallIntervalCallback",(0,T.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,T.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:T.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return A(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return A(this,null,function*(){var r,a,n,o,u;(0,T.assertNonNullable)(this.element),(0,T.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),dt(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,T.isNullable)(this.element)||(0,T.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,T.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,T.isNonNullable)(this.element)&&(0,T.isNonNullable)(this.source)&&(0,T.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,T.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}updateLive(){return A(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.updateLive(this.manifest)),this.isUpdatingLive=!1})}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue();this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,r=null,a=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let n of this.bufferManagers)for(let o of n.gaps)n.playingRepresentation$.getValue()===o.representation&&o.from-a<=i&&o.to+a>i&&(this.element.duration*1e3-o.to<this.tuning.endGapTolerance?r=1/0:(r===null||o.to>r)&&(r=o.to));if(r!==null){let n=r+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,n===1/0?this.forceEnded$.next():(this.element.currentTime=n/1e3,this.tracer.log("jumpGap",(0,T.flattenObject)({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};var kt=require("@vkontakte/videoplayer-shared/es2015"),Nu=class{constructor(){this.subscription=new kt.Subscription;this.pipSize$=new kt.ValueSubject(void 0);this.videoSize$=new kt.ValueSubject(void 0);this.elementSize$=new kt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=kt.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,kt.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,kt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,kt.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var Dr=class{constructor(e){this.subscription=new ce.Subscription;this.videoState=new re("stopped");this.droppedFramesManager=new ss;this.stallsManager=new $u;this.elementSizeManager=new Nu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new tr;this.audioTrackSwitchHistory=new tr;this.selectedRepresentations={audio:null,video:null};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&(i==null?void 0:i.to)!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ce.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new fs(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.pose.roll)||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new wt(e.source.url),this.params=e,this.video=nt(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Fu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=lt(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ce.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ce.filter)(l=>!!l.length),(0,ce.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ce.map)(l=>l.to.state!=="none"),(0,ce.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ce.filter)(ce.isNonNullable),(0,ce.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ce.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ht(this.video,t.isLooped,r)),this.subscription.add(ut(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Et(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Pt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if((0,ce.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(Nd(p));let f=[];for(let b of p.representations){let S=eT(b);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:b})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(Ud(h));let p=[];for(let f of h.representations){let b=Zy(U(k({},f),{streamId:h.id}));b&&(p.push(b),this.videoTracksMap.set(b,{stream:h,representation:f}))}this.videoStreamsMap.set(h,p)}this.params.output.availableVideoStreams$.next(c);for(let h of d.text)for(let p of h.representations){let f=tT(h,p);this.textTracksMap.set(f,{stream:h,representation:p})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ce.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,t.videoStream.stateChangeStarted$,t.audioStream.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ce.fromEvent)(this.video,"progress")).subscribe(()=>A(this,null,function*(){let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:c,audio:h}=this.selectedRepresentations;if(!c)return;let p=$r(this.videoTracksMap.keys(),b=>{var S;return((S=this.videoTracksMap.get(b))==null?void 0:S.representation.id)===c.id});(0,ce.isNonNullable)(p)&&(this.stallsManager.lastVideoTrackSelected=p);let f=this.params.desiredState.autoVideoTrackLimits.getTransition();if(f&&this.params.output.autoVideoTrackLimits$.next(f.to),l==="manifest_ready")yield this.player.initRepresentations(c.id,h==null?void 0:h.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",c.id),h){let b=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,b)}}),r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ce.filterChanged)()).subscribe(l=>{let d=$r(this.videoTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.videoStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.videoStream.setState(p.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(Ud(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ce.filterChanged)()).subscribe(l=>{let d=$r(this.audioTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.audioStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.audioStream.setState(p.to),e.currentAudioStream$.next(Nd(h))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var d,c;if(l!=null&&l.is3dVideo&&((d=this.params.tuning.spherical)!=null&&d.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(h){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${h}`})}else this.destroy3DScene(),(c=this.params.tuning.spherical)!=null&&c.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ce.map)(({to:l})=>l==="ready"),(0,ce.filterChanged)());this.subscription.add((0,ce.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ce.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add((0,ce.merge)(o,this.player.state$.stateChangeEnded$,(0,ce.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ce.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ce.observableFrom)(["init"])).pipe((0,ce.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var _,G,$,W,F,Z,z,de,D,N,V,M;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Da:$a,t=this.params.tuning.useNewAutoSelectVideoTrack?uu:ou,i=this.params.tuning.useNewAutoSelectVideoTrack?mi:nu,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(_=r.videoTrack.getState())==null?void 0:_.id,u=$r(this.videoTracksMap.keys(),H=>H.id===o),l=a.currentVideoTrack$.getValue(),d=((W=($=r.videoStream.getState())!=null?$:u&&((G=this.videoTracksMap.get(u))==null?void 0:G.stream))!=null?W:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let c=$r(this.videoStreamsMap.keys(),H=>H.id===d.id),h=c&&this.videoStreamsMap.get(c);if(!h)return;let p=tt(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(p/Math.min(f,b||1/0),1),v=(F=r.audioStream.getState())!=null?F:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,y=(v==null?void 0:v.id)&&$r(this.audioStreamsMap.keys(),H=>H.id===v.id)||this.audioStreamsMap.keys().next().value,x=0;if(y){if(u&&!n){let H=e(u,h,(Z=this.audioStreamsMap.get(y))!=null?Z:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(z=H==null?void 0:H.bitrate)!=null?z:-1/0)}if(l){let H=e(l,h,(de=this.audioStreamsMap.get(y))!=null?de:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(D=H==null?void 0:H.bitrate)!=null?D:-1/0)}}let E=u;(n||!E)&&(E=i(h,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:x,forwardBufferHealth:S,current:l,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let P=y&&t(E,h,(N=this.audioStreamsMap.get(y))!=null?N:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),B=(V=this.videoTracksMap.get(E))==null?void 0:V.representation,q=P&&((M=this.audioTracksMap.get(P))==null?void 0:M.representation);B&&q?(this.selectedRepresentations.video=B,this.selectedRepresentations.audio=q):B&&!q&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=B,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ce.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),ot(this.video),this.tracer.end()}};var eo=class extends Dr{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var Ee=require("@vkontakte/videoplayer-shared/es2015");var to=class extends Dr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new Ee.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,Ee.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,Ee.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,Ee.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,Ee.filter)(o=>(0,Ee.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,Ee.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,Ee.merge)(i.playbackRateState$,new Ee.ValueSubject(1))}).pipe((0,Ee.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,Ee.isNullable)(l)||(e=o-l)})).add((0,Ee.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,Ee.merge)(i.playbackRateState$,new Ee.ValueSubject(1))}).pipe((0,Ee.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,Ee.isNullable)(o)||(0,Ee.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=iT(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var dT=K(Ra(),1);var fe=require("@vkontakte/videoplayer-shared/es2015");var oi={};var gs=(s,e)=>new fe.Observable(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),io=class{constructor(e){this.subscription=new fe.Subscription;this.videoState=new re("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(e!=="initializing")switch((i==null?void 0:i.to)!=="paused"&&r.state==="requested"&&this.seek(r.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,fe.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,fe.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,fe.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,fe.assertNever)(e)}break;default:(0,fe.assertNever)(t)}};this.textTracksManager=new wt(e.source.url),this.video=nt(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ze(this.params.source.url)),this.loadHlsJs()}destroy(){var e,t;this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),(e=this.hls)==null||e.detachMedia(),(t=this.hls)==null||t.destroy(),this.params.output.element$.next(void 0),ot(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:fe.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,dT.default)(import("hls.js").then(r=>{e||(oi.Hls=r.default,oi.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,fe.assertNonNullable)(oi.Hls,"hls.js not loaded"),this.hls=new oi.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,fe.assertNonNullable)(oi.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:fe.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=lt(this.video);this.subscription.add(()=>r.destroy());let a=(l,d)=>this.subscription.add(l.subscribe(d,i));a(r.timeUpdate$,t.position$),a(r.durationChange$,t.duration$),a(r.ended$,t.endedEvent$),a(r.looped$,t.loopedEvent$),a(r.error$,t.error$),a(r.isBuffering$,t.isBuffering$),a(r.currentBuffer$,t.currentBuffer$),a(r.loadStart$,t.firstBytesEvent$),a(r.loadedMetadata$,t.loadedMetadataEvent$),a(r.playing$,t.firstFrameEvent$),a(r.canplay$,t.canplay$),a(r.seeked$,t.seekedEvent$),a(r.inPiP$,t.inPiP$),a(r.inFullscreen$,t.inFullscreen$),this.subscription.add(Ht(this.video,e.isLooped,i)),this.subscription.add(ut(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Et(this.video,e.playbackRate,r.playbackRateState$,i)),a(Pt(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe((0,fe.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(gs(this.hls,oi.Events.ERROR).subscribe(l=>{var d;l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:fe.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${(d=l.err)==null?void 0:d.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var l;((l=this.videoState.getTransition())==null?void 0:l.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),a(gs(this.hls,oi.Events.MANIFEST_PARSED).pipe((0,fe.map)(({levels:l})=>l.reduce((d,c)=>{var y,x;let h=c.name||c.height.toString(10),{width:p,height:f}=c,b=(x=fi((y=c.attrs.QUALITY)!=null?y:""))!=null?x:(0,fe.videoSizeToQuality)({width:p,height:f});if(!b)return d;let S=c.attrs["FRAME-RATE"]?parseFloat(c.attrs["FRAME-RATE"]):void 0,v={id:h.toString(),quality:b,bitrate:c.bitrate/1e3,size:{width:p,height:f},fps:S};return this.trackLevels.set(h,{track:v,level:c}),d.push(v),d},[]))),t.availableVideoTracks$),a(gs(this.hls,oi.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let d=[];for(let c of l.subtitleTracks){let h=c.name,p=c.attrs.URI||"",f=c.lang;d.push({id:h,url:p,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(d)}}),a(gs(this.hls,oi.Events.LEVEL_LOADING).pipe((0,fe.map)(({url:l})=>ze(l))),t.hostname$),a(gs(this.hls,oi.Events.FRAG_CHANGED),l=>{var h,p,f,b;let{video:d,audio:c}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next((((h=d==null?void 0:d.endPTS)!=null?h:0)-((p=d==null?void 0:d.startPTS)!=null?p:0))*1e3),t.currentAudioSegmentLength$.next((((f=c==null?void 0:c.endPTS)!=null?f:0)-((b=c==null?void 0:c.startPTS)!=null?b:0))*1e3)}),this.subscription.add(er(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>{var d;return(d=Array.from(this.trackLevels.values()).find(({level:c})=>c===l))==null?void 0:d.track},o=gs(this.hls,oi.Events.LEVEL_SWITCHED).pipe((0,fe.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,fe.filter)(fe.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(er(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,fe.isNullable)(l))return;let d=(f=this.trackLevels.get(l.id))==null?void 0:f.level;if(!d)return;let c=this.hls.levels.indexOf(d),h=this.hls.currentLevel,p=this.hls.levels[h];!p||d.bitrate>p.bitrate?this.hls.nextLevel=c:(this.hls.loadLevel=c,this.hls.loadLevel=c)},{changed$:o,onError:i})),a(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,fe.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,fe.observableFrom)(["init"])).pipe((0,fe.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}playIfAllowed(){return A(this,null,function*(){this.videoState.startTransitionTo("playing"),(yield ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:fe.ErrorCategory.DOM,thrown:t})))||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))})}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0)}};var pT="X-Playback-Duration",Wd=s=>A(void 0,null,function*(){var r;let e=yield Gt(s),t=yield e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(pT)?parseInt(e.headers.get(pT),10):void 0});var he=require("@vkontakte/videoplayer-shared/es2015");var Kd=K(sc(),1);var Uu=require("@vkontakte/videoplayer-shared/es2015");var L$=s=>{let e=null;if(s.QUALITY&&(e=fi(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Uu.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},M$=(s,e)=>{var a,n;let t=s.split(`
|
|
186
|
+
`),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],l=u.match(/^#EXT-X-STREAM-INF:(.+)/),d=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!l&&!d)){if(l){let c=(0,Kd.default)(l[1].split(",").map(y=>y.split("="))),h=(a=c.QUALITY)!=null?a:`stream-${c.BANDWIDTH}`,p=L$(c),f;c.BANDWIDTH&&(f=parseInt(c.BANDWIDTH,10)/1e3||void 0),!f&&c["AVERAGE-BANDWIDTH"]&&(f=parseInt(c["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let b=c["FRAME-RATE"]?parseFloat(c["FRAME-RATE"]):void 0,S;if(c.RESOLUTION){let[y,x]=c.RESOLUTION.split("x").map(E=>parseInt(E,10));y&&x&&(S={width:y,height:x})}let v=new URL(t[++o],e).toString();p&&i.push({id:h,quality:p,url:v,bandwidth:f,size:S,fps:b})}if(d){let c=(0,Kd.default)(d[1].split(",").map(b=>{let S=b.indexOf("=");return[b.substring(0,S),b.substring(S+1)]}).map(([b,S])=>[b,S.replace(/^"|"$/g,"")])),h=(n=c.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),p=c.LANGUAGE,f=c.NAME;h&&p&&r.push({type:"internal",id:p,label:f,language:p,url:h,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},$$=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Yd=0,hT=(r,...a)=>A(void 0,[r,...a],function*(s,e=s,t,i){let o=yield(yield Gt(s,i)).text();Yd+=1;try{let{qualityManifests:u,textTracks:l}=M$(o,e);return{qualityManifests:u,textTracks:l}}catch(u){if(Yd<=t.manifestRetryMaxCount)return yield $$((0,Uu.getExponentialDelay)(Yd-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),hT(s,e,t)}return{qualityManifests:[],textTracks:[]}}),qu=hT;var qt=require("@vkontakte/videoplayer-shared/es2015");var ju=class{constructor(e,t,i,r,a){this.subscription=new qt.Subscription;this.abortControllers={destroy:new Te,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new qt.ValueSubject(null);this.getCurrentTime$=new qt.ValueSubject(null);this.error$=new qt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,qt.throttle)(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}prepare(e){return A(this,null,function*(){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=yield this.fetchManifestData();yield this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}})}processTextTracks(e,t){return A(this,null,function*(){try{let i=yield this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}})}parseTextTracks(e,t){return A(this,null,function*(){for(let i of e){let r=new URL(i.url,t).toString(),n=yield(yield Gt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}})}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
|
|
187
|
+
`),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+d},url:l}),a=a+d,!i.segmentStartTime){let c=new Date(i.vkStartTime).valueOf(),h=new Date(i.programDateTime).valueOf();i.segmentStartTime=h-c}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),a=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,qt.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([U(k({},this.currentTextTrackData.textTrack),{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){return A(this,null,function*(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new Te;let{textTracks:e}=yield this.fetchManifestData(),t=yield this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}})}fetchManifestData(){return A(this,null,function*(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return yield this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:qt.ErrorCategory.WTF,thrown:t,message:e})}};var ro=class{constructor(e){this.subscription=new he.Subscription;this.videoState=new re("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new he.ValueSubject([]);this.liveOffset=new wr;this.manifestStartTime$=new he.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),O(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let d=this.liveOffset.getTotalOffset();d>=this.maxSeekBackTime$.getValue()&&(d=0,this.liveOffset.resetTo(d)),this.liveOffset.resume(),this.params.output.position$.next(-d/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(O(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,he.assertNever)(t)}};var i;this.params=e,this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:he.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,a)=>qu(r,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},a);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new ju(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new wt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:a})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:he.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:he.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new he.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:he.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=lt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.ended$,e.endedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),a(Pt(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,he.filterChanged)(),(0,he.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,he.isNonNullable)(l.to)){let c=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let h=this.manifests$.getValue().find(p=>p.id===c);h&&(this.params.output.currentVideoTrack$.next(h),this.params.output.hostname$.next(ze(h.url)))}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{var u,l,d;let o=(d=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:d.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,he.combine)({startTime:this.manifestStartTime$.pipe((0,he.filter)(he.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,he.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,he.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,he.observableFrom)(["init"])).pipe((0,he.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),ot(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,he.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:d,min:c}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[h,p]of[[d,"mq"],[c,"lq"]]){let f=String(parseFloat(h||""));p&&h&&r.searchParams.set(p,f)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=_e(r.toString(),this.liveOffset.getTotalOffset(),a);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),Wd(n).then(d=>{var c;if(!(0,he.isNullable)(d))this.maxSeekBackTime$.next(d);else{let h=(c=this.params.source.maxSeekBackTime)!=null?c:this.maxSeekBackTime$.getValue();((0,he.isNullable)(h)||!isFinite(h))&&Gt(n).then(p=>p.text()).then(p=>{var b;let f=(b=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(p))==null?void 0:b[1];if(f){let S=new URL(f,n).toString();Wd(S).then(v=>{(0,he.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:he.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=_e(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var ve=require("@vkontakte/videoplayer-shared/es2015");var so=class{constructor(e){this.subscription=new ve.Subscription;this.videoState=new re("stopped");this.manifests$=new ve.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:c}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:c*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ve.assertNever)(t)}};this.textTracksManager=new wt(e.source.url),this.params=e,this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ve.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),qu(_e(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:ve.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:ve.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=lt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u));if(a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,ve.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Ht(this.video,t.isLooped,i)),this.subscription.add(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var p;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,ve.isNonNullable)(l.to)){let f=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let b=this.manifests$.getValue().find(S=>S.id===f);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(ze(b.url)))}let c=this.params.desiredState.playbackRate.getState(),h=(p=this.params.output.element$.getValue())==null?void 0:p.playbackRate;if(c!==h){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(c),f.playbackRate=c)}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,ve.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i)),!te.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,ve.merge)((0,ve.fromEvent)(o,"addtrack"),(0,ve.fromEvent)(o,"removetrack"),(0,ve.fromEvent)(o,"change"),(0,ve.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,ve.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ve.observableFrom)(["init"])).pipe((0,ve.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),ot(this.video)}prepare(){var a,n;let e=this.selectManifest();if((0,ve.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=(n=(a=t==null?void 0:t.to)!=null?a:i)!=null?n:{};for(let[l,d]of[[o,"mq"],[u,"lq"]]){let c=String(parseFloat(l||""));d&&l&&r.searchParams.set(d,c)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ve.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var fT=K(Sr(),1),Xd=K(Er(),1),mT=K(si(),1);var ke=require("@vkontakte/videoplayer-shared/es2015");var ao=class{constructor(e){this.subscription=new ke.Subscription;this.videoState=new re("stopped");this.trackUrls={};this.textTracksManager=new wt;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch((i==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?O(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ke.assertNever)(e)}};this.params=e,this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),(0,fT.default)(this.params.source).reverse().forEach(([t,i],r)=>{let a=r.toString(10);this.trackUrls[a]={track:{quality:t,id:a},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,Xd.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:ke.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=lt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,ke.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Ht(this.video,t.isLooped,i)),this.subscription.add(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),a(Pt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,ke.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let d=this.params.desiredState.playbackRate.getState(),c=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(d!==c){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(d),h.playbackRate=d)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,ke.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ke.observableFrom)(["init"])).pipe((0,ke.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),ot(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,ke.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ke.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=sr(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(ze(t))}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ke.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var l,d;this.params.output.autoVideoTrackLimits$.next(e);let t=c=>{this.params.output.currentVideoTrack$.next(c),this.params.desiredState.videoTrack.startTransitionTo(c)},i=c=>{let h=mi(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:c,abrLogger:this.params.dependencies.abrLogger});t(h)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,a=!!(e.max||e.min),n=(0,Xd.default)(this.trackUrls).map(c=>c.track);if(!r||!a||ts(e,n[0].quality,(d=(0,mT.default)(n,-1))==null?void 0:d.quality)){i();return}let o=e.max?(0,ke.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,ke.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var De=require("@vkontakte/videoplayer-shared/es2015");var gT=require("@vkontakte/videoplayer-shared/es2015");var bT=["stun:videostun.mycdn.me:80"],D$=1e3,B$=3,Jd=()=>null,Hu=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Jd;this.externalStopCallback=Jd;this.externalErrorCallback=Jd;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}handleUpdateMessage(e){return A(this,null,function*(){try{let t=yield this.createOffer();this.peerConnection&&(yield this.peerConnection.setLocalDescription(t)),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}})}handleLogin(){return A(this,null,function*(){try{let e={iceServers:[{urls:bT}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=yield this.createOffer();yield this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}})}handleAnswer(e){return A(this,null,function*(){try{this.peerConnection&&(yield this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e})))}catch(t){this.handleRTCError(t)}})}handleCandidate(e){return A(this,null,function*(){if(e)try{this.peerConnection&&(yield this.peerConnection.addIceCandidate(e))}catch(t){this.handleRTCError(t)}})}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:gT.ErrorCategory.WTF,message:e.message})}onPeerConnectionStream(e){return A(this,null,function*(){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))})}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}createOffer(){return A(this,null,function*(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=yield this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t})}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch(t){throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),D$)}normalizeOptions(e={}){let t={stunServerList:bT,maxRetryNumber:B$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var no=class{constructor(e){this.videoState=new re("stopped");this.maxSeekBackTime$=new De.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,De.assertNever)(e)}};this.subscription=new De.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=nt(e.container,e.tuning),this.liveStreamClient=new Hu(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),ot(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:De.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,De.merge)(this.videoState.stateChangeStarted$.pipe((0,De.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,De.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=lt(this.video);this.subscription.add(()=>r.destroy());let a=(n,o)=>this.subscription.add(n.subscribe(o,i));a(r.timeUpdate$,e.liveTime$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(Pt(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.to)==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(ut(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,De.assertNever)(n.to)}},i)).add((0,De.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,De.observableFrom)(["init"])).pipe((0,De.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ze(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:De.VideoQuality.INVARIANT}),this.video.srcObject=e,O(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:De.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:De.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var oo=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var w=require("@vkontakte/videoplayer-shared/es2015");var Gi=require("@vkontakte/videoplayer-shared/es2015"),ST=s=>new Gi.Observable(e=>{let t=new Gi.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,Gi.map)(({from:l,to:d})=>`${l}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,Gi.map)(({type:l})=>l!==void 0)),n=new Gi.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),s.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var zt=require("@vkontakte/videoplayer-shared/es2015");function vT(){return new(window.AudioContext||window.webkitAudioContext)}var uo=class uo{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new Te;this.subscriptions=new zt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,zt.filter)(a=>!!a.type),(0,zt.once)()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){te.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,zt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,zt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,zt.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}initAudioContextOnce(e){return A(this,null,function*(){let{volumeMultiplier:t}=this,i=vT();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(yield i.resume(),this.destroyController.signal.aborted))return!1;let a=i.createMediaElementSource(e);return this.mediaElementSource=a,a.connect(r),!0})}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){var t;this.volumeMultiplierError$.next({id:uo.errorId,category:zt.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${uo.errorId} exception`,thrown:e})}};uo.errorId="VolumeMultiplierManager";var Ss=uo;var C$={chunkDuration:5e3,maxParallelRequests:5},lo=class{constructor(e){this.current$=new w.ValueSubject({type:void 0});this.providerError$=new w.Subject;this.noAvailableProvidersError$=new w.Subject;this.volumeMultiplierError$=new w.Subject;this.providerOutput={position$:new w.ValueSubject(0),duration$:new w.ValueSubject(1/0),volume$:new w.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new w.ValueSubject([]),currentVideoStream$:new w.ValueSubject(void 0),availableVideoTracks$:new w.ValueSubject([]),currentVideoTrack$:new w.ValueSubject(void 0),availableAudioStreams$:new w.ValueSubject([]),currentAudioStream$:new w.ValueSubject(void 0),availableAudioTracks$:new w.ValueSubject([]),currentVideoSegmentLength$:new w.ValueSubject(0),currentAudioSegmentLength$:new w.ValueSubject(0),isAudioAvailable$:new w.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new w.ValueSubject(!1),autoVideoTrackLimits$:new w.ValueSubject(void 0),currentBuffer$:new w.ValueSubject(void 0),isBuffering$:new w.ValueSubject(!0),error$:new w.Subject,fetcherError$:new w.Subject,fetcherRecoverableError$:new w.Subject,warning$:new w.Subject,willSeekEvent$:new w.Subject,soundProhibitedEvent$:new w.Subject,seekedEvent$:new w.Subject,loopedEvent$:new w.Subject,endedEvent$:new w.Subject,firstBytesEvent$:new w.Subject,loadedMetadataEvent$:new w.Subject,firstFrameEvent$:new w.Subject,canplay$:new w.Subject,isLive$:new w.ValueSubject(void 0),isLiveEnded$:new w.ValueSubject(null),isLowLatency$:new w.ValueSubject(!1),canChangePlaybackSpeed$:new w.ValueSubject(!0),liveTime$:new w.ValueSubject(void 0),liveBufferTime$:new w.ValueSubject(void 0),liveLatency$:new w.ValueSubject(void 0),severeStallOccurred$:new w.Subject,availableTextTracks$:new w.ValueSubject([]),currentTextTrack$:new w.ValueSubject(void 0),hostname$:new w.ValueSubject(void 0),httpConnectionType$:new w.ValueSubject(void 0),httpConnectionReused$:new w.ValueSubject(void 0),inPiP$:new w.ValueSubject(!1),inFullscreen$:new w.ValueSubject(!1),element$:new w.ValueSubject(void 0),elementVisible$:new w.ValueSubject(!0),availableSources$:new w.ValueSubject(void 0),is3DVideo$:new w.ValueSubject(!1),playbackState$:new w.ValueSubject(""),getCurrentTime$:new w.ValueSubject(null)};this.subscription=new w.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=Dy([...Cy(this.params.tuning),...By(this.params.tuning)],this.params.tuning).filter(l=>(0,w.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Zd.default)(r,l)),...t.filter(l=>(0,Zd.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,w.flattenObject)(a)),this.screenFormatsIterator=new oo(a);let n=[...$d(!0),...$d(!1)];this.chromecastFormatsIterator=new oo(n.filter(l=>(0,w.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Ss.isSupported()&&(this.volumeMultiplierManager=new Ss(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,w.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:w.ErrorCategory.WTF,message:"Failed to create provider",thrown:r})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,w.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:a}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:a};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,w.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new eo(U(k({},o),{source:u,sourceHls:l})):new In(U(k({},o),{source:u,sourceHls:l}))}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new to(U(k({},o),{source:u})):new xn(U(k({},o),{source:u}))}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),te.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new so(U(k({},o),{source:u})):new io(U(k({},o),{source:u}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new ro(U(k({},o),{source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new ao(U(k({},o),{source:u}))}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new NS(U(k({},o),{source:u,config:U(k({},C$),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new no({container:i,source:u,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,w.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:a}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,w.assertNonNullable)(o),new La({connection:o,meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,w.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,w.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,w.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let a=new URL(r);return a.host=t,a.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return U(k({},e),{url:i(e.url)})}return(0,TT.default)((0,yT.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new w.Subscription,t=!1,i=0;return e.add((0,w.merge)(this.providerOutput.error$.pipe((0,w.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),ST({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,w.map)(r=>({id:`ProviderHangup:${r}`,category:w.ErrorCategory.WTF,message:`A ${r} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,w.filter)(({to:a})=>a==="playing"),(0,w.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let a=this.current$.getValue().destination,n={error:r,currentDestination:a};if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===w.ErrorCategory.NETWORK,u=r.category===w.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),d=i<this.params.tuning.providerErrorLimit&&!u,c=l&&!u&&(o&&t||!d);n=U(k({},n),{isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:c,canReinitProvider:d}),d?(i++,this.reinitProvider()):c?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a!=null?a:"SCREEN"))}this.tracer.error("providerError",(0,w.flattenObject)(n))})),e}};var ie=require("@vkontakte/videoplayer-shared/es2015");var V$=5e3,IT="one_video_throughput",xT="one_video_rtt",zi=window.navigator.connection,ET=()=>{let s=zi==null?void 0:zi.downlink;if((0,ie.isNonNullable)(s)&&s!==10)return s*1e3},wT=()=>{let s=zi==null?void 0:zi.rtt;if((0,ie.isNonNullable)(s)&&s!==3e3)return s},PT=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},ep=class s{constructor(e){this.subscription=new ie.Subscription;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(IT)||(e.useBrowserEstimation?ET():void 0)||V$,i=(a=(r=s.load(xT))!=null?r:e.useBrowserEstimation?wT():void 0)!=null?a:0;if(this.throughput$=new ie.ValueSubject(t),this.rtt$=new ie.ValueSubject(i),this.rttAdjustedThroughput$=new ie.ValueSubject(PT(t,i,e.rttPenaltyRequestSize)),this.throughput=Ui.getSmoothedValue(t,-1,e),this.rtt=Ui.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=ET();u&&this.throughput.next(u);let l=wT();(0,ie.isNonNullable)(l)&&this.rtt.next(l)};zi&&"onchange"in zi&&this.subscription.add((0,ie.fromEvent)(zi,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{ie.safeStorage.set(IT,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{ie.safeStorage.set(xT,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,ie.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,ie.map)(({throughput:n,rtt:o})=>PT(n,o,e.rttPenaltyRequestSize)),(0,ie.filter)(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,ie.now)(),r=new ie.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,ie.fromEvent)(e,"progress").pipe((0,ie.once)()).subscribe(a=>{t=a.loaded,i=(0,ie.now)()}));break;case 1:case 0:r.add((0,ie.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,ie.now)()}));break}r.add((0,ie.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,ie.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,a=(0,ie.now)(),n=0,o=(0,ie.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=h=>A(this,[h],function*({done:d,value:c}){if(d)!t&&this.addRawSpeed(r,(0,ie.now)()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let p=(0,ie.now)();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let b=o-a;b&&this.addRawSpeed(n,b,1,t),n=c.byteLength,a=(0,ie.now)()}else n+=c.byteLength;o=(0,ie.now)()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,ie.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,ie.now)()-o,this.concurrentDownloads.size),n=0,o=(0,ie.now)());yield i==null?void 0:i.read().then(l,u)}});this.concurrentDownloads.add(e),i==null||i.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(s.sanityCheck(e,t,r)){let a=e*8/t;this.throughput.next(a*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){var i;let t=ie.safeStorage.get(e);if((0,ie.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},AT=ep;var Br=require("@vkontakte/videoplayer-shared/es2015");var kT={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Br.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Br.VideoQuality.Q_720P,trafficSavingLimit:Br.VideoQuality.Q_480P},stallsManager:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1,stallsMetricsHistoryLength:5,maxPossibleStallDuration:3e4,minTvtToBeCounted:5,maxTvtToBeCounted:0,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Br.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},RT=s=>{var e;return U(k({},(0,Br.fillWithDefault)(s,kT)),{configName:[...(e=s.configName)!=null?e:[],...kT.configName]})};var m=require("@vkontakte/videoplayer-shared/es2015");var Qi=require("@vkontakte/videoplayer-shared/es2015"),tp=({seekState:s,position$:e})=>(0,Qi.merge)(s.stateChangeEnded$.pipe((0,Qi.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,Qi.filter)(Qi.isNonNullable)),e.pipe((0,Qi.filter)(()=>s.getState().state==="none")));var LT=require("@vkontakte/videoplayer-shared/es2015"),MT=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,LT.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var Gu=require("@vkontakte/videoplayer-shared/es2015"),$T=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,Gu.filter)(r=>r.length>0),(0,Gu.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var co=class{constructor(e={configName:[]},t=m.Tracer.createRootTracer(!1)){this.subscription=new m.Subscription;this.logger=new m.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new m.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new m.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new re("stopped"),seekState:new re({state:"none"}),volume:new re({volume:1,muted:!1}),videoTrack:new re(void 0),videoStream:new re(void 0),audioStream:new re(void 0),autoVideoTrackSwitching:new re(!0),autoVideoTrackLimits:new re({}),isLooped:new re(!1),isLowLatency:new re(!1),playbackRate:new re(1),externalTextTracks:new re([]),internalTextTracks:new re([]),currentTextTrack:new re(void 0),textTrackCuesSettings:new re({}),cameraOrientation:new re({x:0,y:0})};this.info={playbackState$:new m.ValueSubject(void 0),position$:new m.ValueSubject(0),duration$:new m.ValueSubject(1/0),muted$:new m.ValueSubject(!1),volume$:new m.ValueSubject(1),availableVideoStreams$:new m.ValueSubject([]),currentVideoStream$:new m.ValueSubject(void 0),availableQualities$:new m.ValueSubject([]),availableQualitiesFps$:new m.ValueSubject({}),currentQuality$:new m.ValueSubject(void 0),isAutoQualityEnabled$:new m.ValueSubject(!0),autoQualityLimitingAvailable$:new m.ValueSubject(!1),autoQualityLimits$:new m.ValueSubject({}),predefinedQualityLimitType$:new m.ValueSubject("unknown"),availableAudioStreams$:new m.ValueSubject([]),currentAudioStream$:new m.ValueSubject(void 0),availableAudioTracks$:new m.ValueSubject([]),isAudioAvailable$:new m.ValueSubject(!0),currentPlaybackRate$:new m.ValueSubject(1),currentBuffer$:new m.ValueSubject({start:0,end:0}),isBuffering$:new m.ValueSubject(!0),isStalled$:new m.ValueSubject(!1),isEnded$:new m.ValueSubject(!1),isLooped$:new m.ValueSubject(!1),isLive$:new m.ValueSubject(void 0),isLiveEnded$:new m.ValueSubject(null),canChangePlaybackSpeed$:new m.ValueSubject(void 0),atLiveEdge$:new m.ValueSubject(void 0),atLiveDurationEdge$:new m.ValueSubject(void 0),liveTime$:new m.ValueSubject(void 0),liveBufferTime$:new m.ValueSubject(void 0),liveLatency$:new m.ValueSubject(void 0),currentFormat$:new m.ValueSubject(void 0),availableTextTracks$:new m.ValueSubject([]),currentTextTrack$:new m.ValueSubject(void 0),throughputEstimation$:new m.ValueSubject(void 0),rttEstimation$:new m.ValueSubject(void 0),videoBitrate$:new m.ValueSubject(void 0),hostname$:new m.ValueSubject(void 0),httpConnectionType$:new m.ValueSubject(void 0),httpConnectionReused$:new m.ValueSubject(void 0),surface$:new m.ValueSubject("none"),chromecastState$:new m.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new m.ValueSubject(void 0),intrinsicVideoSize$:new m.ValueSubject(void 0),availableSources$:new m.ValueSubject(void 0),is3DVideo$:new m.ValueSubject(!1),currentVideoSegmentLength$:new m.ValueSubject(0),currentAudioSegmentLength$:new m.ValueSubject(0)};this.events={inited$:new m.Subject,ready$:new m.Subject,started$:new m.Subject,playing$:new m.Subject,paused$:new m.Subject,stopped$:new m.Subject,willStart$:new m.Subject,willResume$:new m.Subject,willPause$:new m.Subject,willStop$:new m.Subject,willDestruct$:new m.Subject,watchCoverageRecord$:new m.Subject,watchCoverageLive$:new m.Subject,managedError$:new m.Subject,fatalError$:new m.Subject,fetcherRecoverableError$:new m.Subject,ended$:new m.Subject,looped$:new m.Subject,seeked$:new m.Subject,willSeek$:new m.Subject,autoplaySoundProhibited$:new m.Subject,firstBytes$:new m.Subject,loadedMetadata$:new m.Subject,firstFrame$:new m.Subject,canplay$:new m.Subject,log$:new m.Subject,fetcherError$:new m.Subject,severeStallOccured$:new m.Subject};this.experimental={element$:new m.ValueSubject(void 0),tuningConfigName$:new m.ValueSubject([]),enableDebugTelemetry$:new m.ValueSubject(!1),dumpTelemetry:xS,getCurrentTime$:new m.ValueSubject(null)};if(this.initLogs(),this.tuning=RT(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new vo({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new AT(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new m.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(h=>JSON.stringify(h,(p,f)=>{let b=typeof f;return(0,DT.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),d=`Player.${String(r)}`,c=`Exception calling ${d} (${l.join(", ")})`;throw this.events.fatalError$.next({id:d,category:m.ErrorCategory.WTF,message:c,thrown:u}),u}}}})}initVideo(e){var a;this.config=e,(a=this.internalsExposure)==null||a.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{var l,d,c;let u=e,{container:n}=u,o=sp(u,["container"]);this.tracer.log("initVideo",(0,m.flattenObject)(o)),this.domContainer=MT(e),this.chromecastInitializer.contentId=(l=e.meta)==null?void 0:l.videoId,this.providerContainer=new lo({sources:e.sources,meta:(d=e.meta)!=null?d:{},failoverHosts:(c=e.failoverHosts)!=null?c:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?te.isInited$.pipe((0,m.filter)(n=>!!n),(0,m.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,m.fromEvent)(document,"visibilitychange").pipe((0,m.once)()).subscribe(r)):r(),this}destroy(){var e,t;this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),(t=this.internalsExposure)==null||t.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:a,forcePrecise:t}),Number.isFinite(a)&&(this.events.willSeek$.next({from:this.getExactTime(),to:a}),this.desiredState.seekState.setState({state:"requested",position:a*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),a=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?t:this.tuning.isAudioDisabled||a;this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var n;let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,r=t.getTransition(),a=(n=r==null?void 0:r.to.volume)!=null?n:this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:a,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:a,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{(0,m.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,m.filter)(i=>i.length>0),(0,m.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,m.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,r;switch(e){case"high_quality":r={min:t,max:void 0};break;case"traffic_saving":r={max:i,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var i;(0,m.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,m.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>k({type:"external"},t)))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var t;$T(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",k({},e)),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),a=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+a.x,y:r.y+a.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,m.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,m.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(ed(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.filter)(({from:e})=>e==="stopped"),(0,m.once)()).subscribe(()=>{this.initedAt=(0,m.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,m.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState(U(k({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:m.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,m.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,m.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,m.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,m.map)(n=>n.destination),(0,m.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,m.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,m.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,m.isInvariantQuality)(u)?1:(0,m.isInvariantQuality)(l)?-1:(0,m.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,m.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,m.filter)(n=>(0,m.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,m.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe((0,m.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,m.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,m.combine)({hasLiveOffsetByPaused:(0,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(n=>n.to),(0,m.filterChanged)(),(0,m.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,m.combine)({atLiveEdge:(0,m.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:tp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,m.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,m.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,m.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,m.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.muted),(0,m.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.volume),(0,m.filterChanged)()).subscribe(this.info.volume$)).add(tp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,m.merge)(e.providerOutput.endedEvent$.pipe((0,m.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,m.mapTo)(!1))).pipe((0,m.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,m.map)(n=>({id:n?`No${n}`:"NoProviders",category:m.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,m.once)(),(0,m.map)(n=>n!=null?n:(0,m.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new m.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new m.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.filter)(({to:n})=>n==="playing"),(0,m.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,m.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,m.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,m.filterChanged)());this.subscription.add(a.subscribe(n=>{n?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add((0,m.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,m.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),d=this.chromecastInitializer.castState$.getValue(),c;d==="CONNECTED"?c="second_screen":u?l?n?c="pip":o?c="fullscreen":c="inline":c="invisible":c="none",this.info.surface$.getValue()!==c&&this.info.surface$.next(c)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,m.map)(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new m.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,m.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,m.filter)(i=>i.length>0),(0,m.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=mi(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,m.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,m.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;(0,m.assertNonNullable)(this.providerContainer),(0,m.assertNonNullable)(e),IS(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>TS(i)),this.providerContainer.current$.subscribe(({type:i})=>Ma("provider",i)),e.duration$.subscribe(i=>Ma("duration",i)),e.availableVideoTracks$.pipe((0,m.filter)(i=>!!i.length),(0,m.once)()).subscribe(i=>Ma("tracks",i)),this.events.fatalError$.subscribe(new yt("fatalError")),this.events.managedError$.subscribe(new yt("managedError")),e.position$.subscribe(new yt("position")),e.currentVideoTrack$.pipe((0,m.map)(i=>i==null?void 0:i.quality)).subscribe(new yt("quality")),this.info.currentBuffer$.subscribe(new yt("buffer")),e.isBuffering$.subscribe(new yt("isBuffering"))].forEach(i=>this.subscription.add(i)),Ma("codecs",te.video.supportedCodecs)}initTracerSubscription(){let e=(0,m.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,m.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,m.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,m.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,m.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,m.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,m.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,m.filter)(i=>i.end>0),(0,m.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,m.filterChanged)())}).pipe((0,m.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,m.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,m.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,m.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,m.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,m.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,m.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,m.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,m.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,m.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,m.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,m.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e==null||e.release(),e=void 0},i=()=>A(this,null,function*(){t(),e=yield window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:m.ErrorCategory.DOM,message:String(r)})})});this.subscription.add((0,m.merge)((0,m.fromEvent)(document,"visibilitychange"),(0,m.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&a?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,m.flattenObject)({quality:t,availableTracks:(0,m.flattenObject)(e),track:(0,m.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Oa()}};var Si=require("@vkontakte/videoplayer-shared/es2015"),O$=`@vkontakte/videoplayer-core@${el}`;
|