@srgssr/pillarbox-web 1.14.0 → 1.15.0

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.
@@ -86,12 +86,11 @@
86
86
  function _objectWithoutPropertiesLoose(source, excluded) {
87
87
  if (source == null) return {};
88
88
  var target = {};
89
- var sourceKeys = Object.keys(source);
90
- var key, i;
91
- for (i = 0; i < sourceKeys.length; i++) {
92
- key = sourceKeys[i];
93
- if (excluded.indexOf(key) >= 0) continue;
94
- target[key] = source[key];
89
+ for (var key in source) {
90
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
91
+ if (excluded.indexOf(key) >= 0) continue;
92
+ target[key] = source[key];
93
+ }
95
94
  }
96
95
  return target;
97
96
  }
@@ -111,7 +110,7 @@
111
110
  return target;
112
111
  }
113
112
 
114
- var version$8 = "1.13.1";
113
+ const version$8 = "1.14.1";
115
114
 
116
115
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
117
116
 
@@ -119,6 +118,31 @@
119
118
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
120
119
  }
121
120
 
121
+ function getAugmentedNamespace(n) {
122
+ if (n.__esModule) return n;
123
+ var f = n.default;
124
+ if (typeof f == "function") {
125
+ var a = function a () {
126
+ if (this instanceof a) {
127
+ return Reflect.construct(f, arguments, this.constructor);
128
+ }
129
+ return f.apply(this, arguments);
130
+ };
131
+ a.prototype = f.prototype;
132
+ } else a = {};
133
+ Object.defineProperty(a, '__esModule', {value: true});
134
+ Object.keys(n).forEach(function (k) {
135
+ var d = Object.getOwnPropertyDescriptor(n, k);
136
+ Object.defineProperty(a, k, d.get ? d : {
137
+ enumerable: true,
138
+ get: function () {
139
+ return n[k];
140
+ }
141
+ });
142
+ });
143
+ return a;
144
+ }
145
+
122
146
  var win;
123
147
 
124
148
  if (typeof window !== "undefined") {
@@ -133,624 +157,20 @@
133
157
 
134
158
  var window_1 = win;
135
159
 
136
- var window$4 = /*@__PURE__*/getDefaultExportFromCjs(window_1);
137
-
138
- var slice = Array.prototype.slice;
139
-
140
- var domWalk$2 = iterativelyWalk;
141
-
142
- function iterativelyWalk(nodes, cb) {
143
- if (!('length' in nodes)) {
144
- nodes = [nodes];
145
- }
146
-
147
- nodes = slice.call(nodes);
148
-
149
- while(nodes.length) {
150
- var node = nodes.shift(),
151
- ret = cb(node);
152
-
153
- if (ret) {
154
- return ret
155
- }
156
-
157
- if (node.childNodes && node.childNodes.length) {
158
- nodes = slice.call(node.childNodes).concat(nodes);
159
- }
160
- }
161
- }
162
-
163
- var domComment = Comment$2;
164
-
165
- function Comment$2(data, owner) {
166
- if (!(this instanceof Comment$2)) {
167
- return new Comment$2(data, owner)
168
- }
169
-
170
- this.data = data;
171
- this.nodeValue = data;
172
- this.length = data.length;
173
- this.ownerDocument = owner || null;
174
- }
175
-
176
- Comment$2.prototype.nodeType = 8;
177
- Comment$2.prototype.nodeName = "#comment";
178
-
179
- Comment$2.prototype.toString = function _Comment_toString() {
180
- return "[object Comment]"
181
- };
182
-
183
- var domText = DOMText$1;
184
-
185
- function DOMText$1(value, owner) {
186
- if (!(this instanceof DOMText$1)) {
187
- return new DOMText$1(value)
188
- }
189
-
190
- this.data = value || "";
191
- this.length = this.data.length;
192
- this.ownerDocument = owner || null;
193
- }
194
-
195
- DOMText$1.prototype.type = "DOMTextNode";
196
- DOMText$1.prototype.nodeType = 3;
197
- DOMText$1.prototype.nodeName = "#text";
198
-
199
- DOMText$1.prototype.toString = function _Text_toString() {
200
- return this.data
201
- };
202
-
203
- DOMText$1.prototype.replaceData = function replaceData(index, length, value) {
204
- var current = this.data;
205
- var left = current.substring(0, index);
206
- var right = current.substring(index + length, current.length);
207
- this.data = left + value + right;
208
- this.length = this.data.length;
209
- };
210
-
211
- var dispatchEvent_1 = dispatchEvent$2;
160
+ const window$4 = /*@__PURE__*/getDefaultExportFromCjs(window_1);
212
161
 
213
- function dispatchEvent$2(ev) {
214
- var elem = this;
215
- var type = ev.type;
162
+ const __viteBrowserExternal = {};
216
163
 
217
- if (!ev.target) {
218
- ev.target = elem;
219
- }
220
-
221
- if (!elem.listeners) {
222
- elem.listeners = {};
223
- }
224
-
225
- var listeners = elem.listeners[type];
226
-
227
- if (listeners) {
228
- return listeners.forEach(function (listener) {
229
- ev.currentTarget = elem;
230
- if (typeof listener === 'function') {
231
- listener(ev);
232
- } else {
233
- listener.handleEvent(ev);
234
- }
235
- })
236
- }
237
-
238
- if (elem.parentNode) {
239
- elem.parentNode.dispatchEvent(ev);
240
- }
241
- }
242
-
243
- var addEventListener_1 = addEventListener$2;
244
-
245
- function addEventListener$2(type, listener) {
246
- var elem = this;
247
-
248
- if (!elem.listeners) {
249
- elem.listeners = {};
250
- }
251
-
252
- if (!elem.listeners[type]) {
253
- elem.listeners[type] = [];
254
- }
255
-
256
- if (elem.listeners[type].indexOf(listener) === -1) {
257
- elem.listeners[type].push(listener);
258
- }
259
- }
260
-
261
- var removeEventListener_1 = removeEventListener$2;
262
-
263
- function removeEventListener$2(type, listener) {
264
- var elem = this;
265
-
266
- if (!elem.listeners) {
267
- return
268
- }
269
-
270
- if (!elem.listeners[type]) {
271
- return
272
- }
273
-
274
- var list = elem.listeners[type];
275
- var index = list.indexOf(listener);
276
- if (index !== -1) {
277
- list.splice(index, 1);
278
- }
279
- }
280
-
281
- var serialize = serializeNode$1;
282
-
283
- var voidElements = ["area","base","br","col","embed","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"];
284
-
285
- function serializeNode$1(node) {
286
- switch (node.nodeType) {
287
- case 3:
288
- return escapeText(node.data)
289
- case 8:
290
- return "<!--" + node.data + "-->"
291
- default:
292
- return serializeElement(node)
293
- }
294
- }
295
-
296
- function serializeElement(elem) {
297
- var strings = [];
298
-
299
- var tagname = elem.tagName;
300
-
301
- if (elem.namespaceURI === "http://www.w3.org/1999/xhtml") {
302
- tagname = tagname.toLowerCase();
303
- }
304
-
305
- strings.push("<" + tagname + properties(elem) + datasetify(elem));
306
-
307
- if (voidElements.indexOf(tagname) > -1) {
308
- strings.push(" />");
309
- } else {
310
- strings.push(">");
311
-
312
- if (elem.childNodes.length) {
313
- strings.push.apply(strings, elem.childNodes.map(serializeNode$1));
314
- } else if (elem.textContent || elem.innerText) {
315
- strings.push(escapeText(elem.textContent || elem.innerText));
316
- } else if (elem.innerHTML) {
317
- strings.push(elem.innerHTML);
318
- }
319
-
320
- strings.push("</" + tagname + ">");
321
- }
322
-
323
- return strings.join("")
324
- }
325
-
326
- function isProperty(elem, key) {
327
- var type = typeof elem[key];
328
-
329
- if (key === "style" && Object.keys(elem.style).length > 0) {
330
- return true
331
- }
332
-
333
- return elem.hasOwnProperty(key) &&
334
- (type === "string" || type === "boolean" || type === "number") &&
335
- key !== "nodeName" && key !== "className" && key !== "tagName" &&
336
- key !== "textContent" && key !== "innerText" && key !== "namespaceURI" && key !== "innerHTML"
337
- }
338
-
339
- function stylify(styles) {
340
- if (typeof styles === 'string') return styles
341
- var attr = "";
342
- Object.keys(styles).forEach(function (key) {
343
- var value = styles[key];
344
- key = key.replace(/[A-Z]/g, function(c) {
345
- return "-" + c.toLowerCase();
346
- });
347
- attr += key + ":" + value + ";";
348
- });
349
- return attr
350
- }
351
-
352
- function datasetify(elem) {
353
- var ds = elem.dataset;
354
- var props = [];
355
-
356
- for (var key in ds) {
357
- props.push({ name: "data-" + key, value: ds[key] });
358
- }
359
-
360
- return props.length ? stringify(props) : ""
361
- }
362
-
363
- function stringify(list) {
364
- var attributes = [];
365
- list.forEach(function (tuple) {
366
- var name = tuple.name;
367
- var value = tuple.value;
368
-
369
- if (name === "style") {
370
- value = stylify(value);
371
- }
372
-
373
- attributes.push(name + "=" + "\"" + escapeAttributeValue(value) + "\"");
374
- });
375
-
376
- return attributes.length ? " " + attributes.join(" ") : ""
377
- }
378
-
379
- function properties(elem) {
380
- var props = [];
381
- for (var key in elem) {
382
- if (isProperty(elem, key)) {
383
- props.push({ name: key, value: elem[key] });
384
- }
385
- }
386
-
387
- for (var ns in elem._attributes) {
388
- for (var attribute in elem._attributes[ns]) {
389
- var prop = elem._attributes[ns][attribute];
390
- var name = (prop.prefix ? prop.prefix + ":" : "") + attribute;
391
- props.push({ name: name, value: prop.value });
392
- }
393
- }
394
-
395
- if (elem.className) {
396
- props.push({ name: "class", value: elem.className });
397
- }
398
-
399
- return props.length ? stringify(props) : ""
400
- }
401
-
402
- function escapeText(s) {
403
- var str = '';
404
-
405
- if (typeof(s) === 'string') {
406
- str = s;
407
- } else if (s) {
408
- str = s.toString();
409
- }
410
-
411
- return str
412
- .replace(/&/g, "&amp;")
413
- .replace(/</g, "&lt;")
414
- .replace(/>/g, "&gt;")
415
- }
416
-
417
- function escapeAttributeValue(str) {
418
- return escapeText(str).replace(/"/g, "&quot;")
419
- }
420
-
421
- var domWalk$1 = domWalk$2;
422
- var dispatchEvent$1 = dispatchEvent_1;
423
- var addEventListener$1 = addEventListener_1;
424
- var removeEventListener$1 = removeEventListener_1;
425
- var serializeNode = serialize;
426
-
427
- var htmlns = "http://www.w3.org/1999/xhtml";
428
-
429
- var domElement = DOMElement$2;
430
-
431
- function DOMElement$2(tagName, owner, namespace) {
432
- if (!(this instanceof DOMElement$2)) {
433
- return new DOMElement$2(tagName)
434
- }
435
-
436
- var ns = namespace === undefined ? htmlns : (namespace || null);
437
-
438
- this.tagName = ns === htmlns ? String(tagName).toUpperCase() : tagName;
439
- this.nodeName = this.tagName;
440
- this.className = "";
441
- this.dataset = {};
442
- this.childNodes = [];
443
- this.parentNode = null;
444
- this.style = {};
445
- this.ownerDocument = owner || null;
446
- this.namespaceURI = ns;
447
- this._attributes = {};
448
-
449
- if (this.tagName === 'INPUT') {
450
- this.type = 'text';
451
- }
452
- }
453
-
454
- DOMElement$2.prototype.type = "DOMElement";
455
- DOMElement$2.prototype.nodeType = 1;
456
-
457
- DOMElement$2.prototype.appendChild = function _Element_appendChild(child) {
458
- if (child.parentNode) {
459
- child.parentNode.removeChild(child);
460
- }
461
-
462
- this.childNodes.push(child);
463
- child.parentNode = this;
464
-
465
- return child
466
- };
467
-
468
- DOMElement$2.prototype.replaceChild =
469
- function _Element_replaceChild(elem, needle) {
470
- // TODO: Throw NotFoundError if needle.parentNode !== this
471
-
472
- if (elem.parentNode) {
473
- elem.parentNode.removeChild(elem);
474
- }
475
-
476
- var index = this.childNodes.indexOf(needle);
477
-
478
- needle.parentNode = null;
479
- this.childNodes[index] = elem;
480
- elem.parentNode = this;
481
-
482
- return needle
483
- };
484
-
485
- DOMElement$2.prototype.removeChild = function _Element_removeChild(elem) {
486
- // TODO: Throw NotFoundError if elem.parentNode !== this
487
-
488
- var index = this.childNodes.indexOf(elem);
489
- this.childNodes.splice(index, 1);
490
-
491
- elem.parentNode = null;
492
- return elem
493
- };
494
-
495
- DOMElement$2.prototype.insertBefore =
496
- function _Element_insertBefore(elem, needle) {
497
- // TODO: Throw NotFoundError if referenceElement is a dom node
498
- // and parentNode !== this
499
-
500
- if (elem.parentNode) {
501
- elem.parentNode.removeChild(elem);
502
- }
503
-
504
- var index = needle === null || needle === undefined ?
505
- -1 :
506
- this.childNodes.indexOf(needle);
507
-
508
- if (index > -1) {
509
- this.childNodes.splice(index, 0, elem);
510
- } else {
511
- this.childNodes.push(elem);
512
- }
513
-
514
- elem.parentNode = this;
515
- return elem
516
- };
517
-
518
- DOMElement$2.prototype.setAttributeNS =
519
- function _Element_setAttributeNS(namespace, name, value) {
520
- var prefix = null;
521
- var localName = name;
522
- var colonPosition = name.indexOf(":");
523
- if (colonPosition > -1) {
524
- prefix = name.substr(0, colonPosition);
525
- localName = name.substr(colonPosition + 1);
526
- }
527
- if (this.tagName === 'INPUT' && name === 'type') {
528
- this.type = value;
529
- }
530
- else {
531
- var attributes = this._attributes[namespace] || (this._attributes[namespace] = {});
532
- attributes[localName] = {value: value, prefix: prefix};
533
- }
534
- };
535
-
536
- DOMElement$2.prototype.getAttributeNS =
537
- function _Element_getAttributeNS(namespace, name) {
538
- var attributes = this._attributes[namespace];
539
- var value = attributes && attributes[name] && attributes[name].value;
540
- if (this.tagName === 'INPUT' && name === 'type') {
541
- return this.type;
542
- }
543
- if (typeof value !== "string") {
544
- return null
545
- }
546
- return value
547
- };
548
-
549
- DOMElement$2.prototype.removeAttributeNS =
550
- function _Element_removeAttributeNS(namespace, name) {
551
- var attributes = this._attributes[namespace];
552
- if (attributes) {
553
- delete attributes[name];
554
- }
555
- };
556
-
557
- DOMElement$2.prototype.hasAttributeNS =
558
- function _Element_hasAttributeNS(namespace, name) {
559
- var attributes = this._attributes[namespace];
560
- return !!attributes && name in attributes;
561
- };
562
-
563
- DOMElement$2.prototype.setAttribute = function _Element_setAttribute(name, value) {
564
- return this.setAttributeNS(null, name, value)
565
- };
566
-
567
- DOMElement$2.prototype.getAttribute = function _Element_getAttribute(name) {
568
- return this.getAttributeNS(null, name)
569
- };
570
-
571
- DOMElement$2.prototype.removeAttribute = function _Element_removeAttribute(name) {
572
- return this.removeAttributeNS(null, name)
573
- };
574
-
575
- DOMElement$2.prototype.hasAttribute = function _Element_hasAttribute(name) {
576
- return this.hasAttributeNS(null, name)
577
- };
578
-
579
- DOMElement$2.prototype.removeEventListener = removeEventListener$1;
580
- DOMElement$2.prototype.addEventListener = addEventListener$1;
581
- DOMElement$2.prototype.dispatchEvent = dispatchEvent$1;
582
-
583
- // Un-implemented
584
- DOMElement$2.prototype.focus = function _Element_focus() {
585
- return void 0
586
- };
587
-
588
- DOMElement$2.prototype.toString = function _Element_toString() {
589
- return serializeNode(this)
590
- };
591
-
592
- DOMElement$2.prototype.getElementsByClassName = function _Element_getElementsByClassName(classNames) {
593
- var classes = classNames.split(" ");
594
- var elems = [];
595
-
596
- domWalk$1(this, function (node) {
597
- if (node.nodeType === 1) {
598
- var nodeClassName = node.className || "";
599
- var nodeClasses = nodeClassName.split(" ");
600
-
601
- if (classes.every(function (item) {
602
- return nodeClasses.indexOf(item) !== -1
603
- })) {
604
- elems.push(node);
605
- }
606
- }
607
- });
608
-
609
- return elems
610
- };
611
-
612
- DOMElement$2.prototype.getElementsByTagName = function _Element_getElementsByTagName(tagName) {
613
- tagName = tagName.toLowerCase();
614
- var elems = [];
615
-
616
- domWalk$1(this.childNodes, function (node) {
617
- if (node.nodeType === 1 && (tagName === '*' || node.tagName.toLowerCase() === tagName)) {
618
- elems.push(node);
619
- }
620
- });
621
-
622
- return elems
623
- };
624
-
625
- DOMElement$2.prototype.contains = function _Element_contains(element) {
626
- return domWalk$1(this, function (node) {
627
- return element === node
628
- }) || false
629
- };
630
-
631
- var DOMElement$1 = domElement;
632
-
633
- var domFragment = DocumentFragment$2;
634
-
635
- function DocumentFragment$2(owner) {
636
- if (!(this instanceof DocumentFragment$2)) {
637
- return new DocumentFragment$2()
638
- }
639
-
640
- this.childNodes = [];
641
- this.parentNode = null;
642
- this.ownerDocument = owner || null;
643
- }
644
-
645
- DocumentFragment$2.prototype.type = "DocumentFragment";
646
- DocumentFragment$2.prototype.nodeType = 11;
647
- DocumentFragment$2.prototype.nodeName = "#document-fragment";
648
-
649
- DocumentFragment$2.prototype.appendChild = DOMElement$1.prototype.appendChild;
650
- DocumentFragment$2.prototype.replaceChild = DOMElement$1.prototype.replaceChild;
651
- DocumentFragment$2.prototype.removeChild = DOMElement$1.prototype.removeChild;
652
-
653
- DocumentFragment$2.prototype.toString =
654
- function _DocumentFragment_toString() {
655
- return this.childNodes.map(function (node) {
656
- return String(node)
657
- }).join("")
658
- };
659
-
660
- var event = Event$1;
661
-
662
- function Event$1(family) {}
663
-
664
- Event$1.prototype.initEvent = function _Event_initEvent(type, bubbles, cancelable) {
665
- this.type = type;
666
- this.bubbles = bubbles;
667
- this.cancelable = cancelable;
668
- };
669
-
670
- Event$1.prototype.preventDefault = function _Event_preventDefault() {
671
-
672
- };
673
-
674
- var domWalk = domWalk$2;
675
-
676
- var Comment$1 = domComment;
677
- var DOMText = domText;
678
- var DOMElement = domElement;
679
- var DocumentFragment$1 = domFragment;
680
- var Event = event;
681
- var dispatchEvent = dispatchEvent_1;
682
- var addEventListener = addEventListener_1;
683
- var removeEventListener = removeEventListener_1;
684
-
685
- var document$3 = Document$2;
686
-
687
- function Document$2() {
688
- if (!(this instanceof Document$2)) {
689
- return new Document$2();
690
- }
691
-
692
- this.head = this.createElement("head");
693
- this.body = this.createElement("body");
694
- this.documentElement = this.createElement("html");
695
- this.documentElement.appendChild(this.head);
696
- this.documentElement.appendChild(this.body);
697
- this.childNodes = [this.documentElement];
698
- this.nodeType = 9;
699
- }
700
-
701
- var proto = Document$2.prototype;
702
- proto.createTextNode = function createTextNode(value) {
703
- return new DOMText(value, this)
704
- };
705
-
706
- proto.createElementNS = function createElementNS(namespace, tagName) {
707
- var ns = namespace === null ? null : String(namespace);
708
- return new DOMElement(tagName, this, ns)
709
- };
710
-
711
- proto.createElement = function createElement(tagName) {
712
- return new DOMElement(tagName, this)
713
- };
714
-
715
- proto.createDocumentFragment = function createDocumentFragment() {
716
- return new DocumentFragment$1(this)
717
- };
718
-
719
- proto.createEvent = function createEvent(family) {
720
- return new Event()
721
- };
722
-
723
- proto.createComment = function createComment(data) {
724
- return new Comment$1(data, this)
725
- };
726
-
727
- proto.getElementById = function getElementById(id) {
728
- id = String(id);
729
-
730
- var result = domWalk(this.childNodes, function (node) {
731
- if (String(node.id) === id) {
732
- return node
733
- }
734
- });
735
-
736
- return result || null
737
- };
738
-
739
- proto.getElementsByClassName = DOMElement.prototype.getElementsByClassName;
740
- proto.getElementsByTagName = DOMElement.prototype.getElementsByTagName;
741
- proto.contains = DOMElement.prototype.contains;
742
-
743
- proto.removeEventListener = removeEventListener;
744
- proto.addEventListener = addEventListener;
745
- proto.dispatchEvent = dispatchEvent;
746
-
747
- var Document$1 = document$3;
164
+ const __viteBrowserExternal$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
165
+ __proto__: null,
166
+ default: __viteBrowserExternal
167
+ }, Symbol.toStringTag, { value: 'Module' }));
748
168
 
749
- var minDocument = new Document$1();
169
+ const require$$0 = /*@__PURE__*/getAugmentedNamespace(__viteBrowserExternal$1);
750
170
 
751
171
  var topLevel = typeof commonjsGlobal !== 'undefined' ? commonjsGlobal :
752
172
  typeof window !== 'undefined' ? window : {};
753
- var minDoc = minDocument;
173
+ var minDoc = require$$0;
754
174
 
755
175
  var doccy;
756
176
 
@@ -766,7 +186,7 @@
766
186
 
767
187
  var document_1 = doccy;
768
188
 
769
- var document$2 = /*@__PURE__*/getDefaultExportFromCjs(document_1);
189
+ const document$2 = /*@__PURE__*/getDefaultExportFromCjs(document_1);
770
190
 
771
191
  var keycode$1 = {exports: {}};
772
192
 
@@ -949,7 +369,7 @@
949
369
  } (keycode$1, keycode$1.exports));
950
370
 
951
371
  var keycodeExports = keycode$1.exports;
952
- var keycode = /*@__PURE__*/getDefaultExportFromCjs(keycodeExports);
372
+ const keycode = /*@__PURE__*/getDefaultExportFromCjs(keycodeExports);
953
373
 
954
374
  var tuple = SafeParseTuple;
955
375
 
@@ -966,31 +386,31 @@
966
386
  return [error, json]
967
387
  }
968
388
 
969
- var safeParseTuple = /*@__PURE__*/getDefaultExportFromCjs(tuple);
389
+ const safeParseTuple = /*@__PURE__*/getDefaultExportFromCjs(tuple);
970
390
 
971
391
  var lib = {exports: {}};
972
392
 
973
- var _extends$4 = {exports: {}};
393
+ function _extends$3() {
394
+ _extends$3 = Object.assign ? Object.assign.bind() : function (target) {
395
+ for (var i = 1; i < arguments.length; i++) {
396
+ var source = arguments[i];
397
+ for (var key in source) {
398
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
399
+ target[key] = source[key];
400
+ }
401
+ }
402
+ }
403
+ return target;
404
+ };
405
+ return _extends$3.apply(this, arguments);
406
+ }
974
407
 
975
- (function (module) {
976
- function _extends() {
977
- module.exports = _extends = Object.assign ? Object.assign.bind() : function (target) {
978
- for (var i = 1; i < arguments.length; i++) {
979
- var source = arguments[i];
980
- for (var key in source) {
981
- if (Object.prototype.hasOwnProperty.call(source, key)) {
982
- target[key] = source[key];
983
- }
984
- }
985
- }
986
- return target;
987
- }, module.exports.__esModule = true, module.exports["default"] = module.exports;
988
- return _extends.apply(this, arguments);
989
- }
990
- module.exports = _extends, module.exports.__esModule = true, module.exports["default"] = module.exports;
991
- } (_extends$4));
408
+ const _extends$4 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
409
+ __proto__: null,
410
+ default: _extends$3
411
+ }, Symbol.toStringTag, { value: 'Module' }));
992
412
 
993
- var _extendsExports = _extends$4.exports;
413
+ const require$$1 = /*@__PURE__*/getAugmentedNamespace(_extends$4);
994
414
 
995
415
  var isFunction_1 = isFunction$1;
996
416
 
@@ -1074,7 +494,7 @@
1074
494
 
1075
495
  var window$2 = window_1;
1076
496
 
1077
- var _extends$3 = _extendsExports;
497
+ var _extends$2 = require$$1;
1078
498
 
1079
499
  var isFunction = isFunction_1;
1080
500
 
@@ -1149,7 +569,7 @@
1149
569
  };
1150
570
  }
1151
571
  } else {
1152
- params = _extends$3({}, options, {
572
+ params = _extends$2({}, options, {
1153
573
  uri: uri
1154
574
  });
1155
575
  }
@@ -1368,7 +788,7 @@
1368
788
  function noop$1() {}
1369
789
 
1370
790
  var libExports = lib.exports;
1371
- var XHR = /*@__PURE__*/getDefaultExportFromCjs(libExports);
791
+ const XHR = /*@__PURE__*/getDefaultExportFromCjs(libExports);
1372
792
 
1373
793
  var browserIndex = {exports: {}};
1374
794
 
@@ -3198,22 +2618,7 @@
3198
2618
  }
3199
2619
 
3200
2620
  var browserIndexExports = browserIndex.exports;
3201
- var vtt = /*@__PURE__*/getDefaultExportFromCjs(browserIndexExports);
3202
-
3203
- function _extends$2() {
3204
- _extends$2 = Object.assign ? Object.assign.bind() : function (target) {
3205
- for (var i = 1; i < arguments.length; i++) {
3206
- var source = arguments[i];
3207
- for (var key in source) {
3208
- if (Object.prototype.hasOwnProperty.call(source, key)) {
3209
- target[key] = source[key];
3210
- }
3211
- }
3212
- }
3213
- return target;
3214
- };
3215
- return _extends$2.apply(this, arguments);
3216
- }
2621
+ const vtt = /*@__PURE__*/getDefaultExportFromCjs(browserIndexExports);
3217
2622
 
3218
2623
  var urlToolkit = {exports: {}};
3219
2624
 
@@ -3388,7 +2793,7 @@
3388
2793
  } (urlToolkit));
3389
2794
 
3390
2795
  var urlToolkitExports = urlToolkit.exports;
3391
- var URLToolkit = /*@__PURE__*/getDefaultExportFromCjs(urlToolkitExports);
2796
+ const URLToolkit = /*@__PURE__*/getDefaultExportFromCjs(urlToolkitExports);
3392
2797
 
3393
2798
  var DEFAULT_LOCATION = 'http://example.com';
3394
2799
 
@@ -3878,7 +3283,7 @@
3878
3283
  match = /^#EXT-X-BYTERANGE:(.*)?$/.exec(newLine);
3879
3284
 
3880
3285
  if (match) {
3881
- event = _extends$2(parseByterange(match[1]), {
3286
+ event = _extends$3(parseByterange(match[1]), {
3882
3287
  type: 'tag',
3883
3288
  tagType: 'byterange'
3884
3289
  });
@@ -4800,7 +4205,7 @@
4800
4205
  currentUri.attributes = {};
4801
4206
  }
4802
4207
 
4803
- _extends$2(currentUri.attributes, entry.attributes);
4208
+ _extends$3(currentUri.attributes, entry.attributes);
4804
4209
  },
4805
4210
 
4806
4211
  media() {
@@ -5105,8 +4510,8 @@
5105
4510
 
5106
4511
 
5107
4512
  const dateRangeWithSameId = this.manifest.dateRanges.findIndex(dateRangeToFind => dateRangeToFind.id === dateRange.id);
5108
- this.manifest.dateRanges[dateRangeWithSameId] = _extends$2(this.manifest.dateRanges[dateRangeWithSameId], dateRange);
5109
- dateRangeTags[dateRange.id] = _extends$2(dateRangeTags[dateRange.id], dateRange); // after merging, delete the duplicate dateRange that was added last
4513
+ this.manifest.dateRanges[dateRangeWithSameId] = _extends$3(this.manifest.dateRanges[dateRangeWithSameId], dateRange);
4514
+ dateRangeTags[dateRange.id] = _extends$3(dateRangeTags[dateRange.id], dateRange); // after merging, delete the duplicate dateRange that was added last
5110
4515
 
5111
4516
  this.manifest.dateRanges.pop();
5112
4517
  }
@@ -5585,7 +4990,7 @@
5585
4990
  return Number(number);
5586
4991
  };
5587
4992
  var numberToBytes = function numberToBytes(number, _temp2) {
5588
- var _ref2 = _temp2 === void 0 ? {} : _temp2,
4993
+ var _ref2 = {} ,
5589
4994
  _ref2$le = _ref2.le,
5590
4995
  le = _ref2$le === void 0 ? false : _ref2$le;
5591
4996
 
@@ -13723,7 +13128,7 @@
13723
13128
 
13724
13129
  var parseSidx_1 = parseSidx;
13725
13130
 
13726
- var parseSidx$1 = /*@__PURE__*/getDefaultExportFromCjs(parseSidx_1);
13131
+ const parseSidx$1 = /*@__PURE__*/getDefaultExportFromCjs(parseSidx_1);
13727
13132
 
13728
13133
  var ID3 = toUint8([0x49, 0x44, 0x33]);
13729
13134
  var getId3Size = function getId3Size(bytes, offset) {
@@ -14106,9 +13511,6 @@
14106
13511
  return newData;
14107
13512
  };
14108
13513
  var findNal = function findNal(bytes, dataType, types, nalLimit) {
14109
- if (nalLimit === void 0) {
14110
- nalLimit = Infinity;
14111
- }
14112
13514
 
14113
13515
  bytes = toUint8(bytes);
14114
13516
  types = [].concat(types);
@@ -14408,7 +13810,7 @@
14408
13810
 
14409
13811
  /**
14410
13812
  * @license
14411
- * Video.js 8.11.8 <http://videojs.com/>
13813
+ * Video.js 8.12.0 <http://videojs.com/>
14412
13814
  * Copyright Brightcove, Inc. <https://www.brightcove.com/>
14413
13815
  * Available under Apache License Version 2.0
14414
13816
  * <https://github.com/videojs/video.js/blob/main/LICENSE>
@@ -14419,7 +13821,7 @@
14419
13821
  */
14420
13822
 
14421
13823
 
14422
- var version$6 = "8.11.8";
13824
+ var version$6 = "8.12.0";
14423
13825
 
14424
13826
  /**
14425
13827
  * An Object that contains lifecycle hooks as keys which point to an array
@@ -15184,6 +14586,14 @@
15184
14586
  */
15185
14587
  let IS_WEBOS = false;
15186
14588
 
14589
+ /**
14590
+ * Whether or not this is a Smart TV (Tizen or WebOS) device.
14591
+ *
14592
+ * @static
14593
+ * @type {Boolean}
14594
+ */
14595
+ let IS_SMART_TV = false;
14596
+
15187
14597
  /**
15188
14598
  * Whether or not this device is touch-enabled.
15189
14599
  *
@@ -15258,7 +14668,8 @@
15258
14668
  }();
15259
14669
  IS_TIZEN = /Tizen/i.test(USER_AGENT);
15260
14670
  IS_WEBOS = /Web0S/i.test(USER_AGENT);
15261
- IS_SAFARI = /Safari/i.test(USER_AGENT) && !IS_CHROME && !IS_ANDROID && !IS_EDGE && !IS_TIZEN && !IS_WEBOS;
14671
+ IS_SMART_TV = IS_TIZEN || IS_WEBOS;
14672
+ IS_SAFARI = /Safari/i.test(USER_AGENT) && !IS_CHROME && !IS_ANDROID && !IS_EDGE && !IS_SMART_TV;
15262
14673
  IS_WINDOWS = /Windows/i.test(USER_AGENT);
15263
14674
  IS_IPAD = /iPad/i.test(USER_AGENT) || IS_SAFARI && TOUCH_ENABLED && !/iPhone/i.test(USER_AGENT);
15264
14675
  IS_IPHONE = /iPhone/i.test(USER_AGENT) && !IS_IPAD;
@@ -15301,6 +14712,7 @@
15301
14712
  get IS_IPHONE () { return IS_IPHONE; },
15302
14713
  get IS_TIZEN () { return IS_TIZEN; },
15303
14714
  get IS_WEBOS () { return IS_WEBOS; },
14715
+ get IS_SMART_TV () { return IS_SMART_TV; },
15304
14716
  TOUCH_ENABLED: TOUCH_ENABLED,
15305
14717
  IS_IOS: IS_IOS,
15306
14718
  IS_ANY_SAFARI: IS_ANY_SAFARI
@@ -26706,14 +26118,23 @@
26706
26118
  // of the player. We calculate any gap between the left edge of the player
26707
26119
  // and the left edge of the `SeekBar` and add the number of pixels in the
26708
26120
  // `SeekBar` before hitting the `seekBarPoint`
26709
- const spaceLeftOfPoint = seekBarRect.left - playerRect.left + seekBarPointPx;
26121
+ let spaceLeftOfPoint = seekBarRect.left - playerRect.left + seekBarPointPx;
26710
26122
 
26711
26123
  // This is the space right of the `seekBarPoint` available within the bounds
26712
26124
  // of the player. We calculate the number of pixels from the `seekBarPoint`
26713
26125
  // to the right edge of the `SeekBar` and add to that any gap between the
26714
26126
  // right edge of the `SeekBar` and the player.
26715
- const spaceRightOfPoint = seekBarRect.width - seekBarPointPx + (playerRect.right - seekBarRect.right);
26127
+ let spaceRightOfPoint = seekBarRect.width - seekBarPointPx + (playerRect.right - seekBarRect.right);
26716
26128
 
26129
+ // spaceRightOfPoint is always NaN for mouse time display
26130
+ // because the seekbarRect does not have a right property. This causes
26131
+ // the mouse tool tip to be truncated when it's close to the right edge of the player.
26132
+ // In such cases, we ignore the `playerRect.right - seekBarRect.right` value when calculating.
26133
+ // For the sake of consistency, we ignore seekBarRect.left - playerRect.left for the left edge.
26134
+ if (!spaceRightOfPoint) {
26135
+ spaceRightOfPoint = seekBarRect.width - seekBarPointPx;
26136
+ spaceLeftOfPoint = seekBarPointPx;
26137
+ }
26717
26138
  // This is the number of pixels by which the tooltip will need to be pulled
26718
26139
  // further to the right to center it over the `seekBarPoint`.
26719
26140
  let pullTooltipBy = tooltipRect.width / 2;
@@ -28764,7 +28185,7 @@
28764
28185
  this.skipTime = this.getSkipForwardTime();
28765
28186
  if (this.skipTime && this.validOptions.includes(this.skipTime)) {
28766
28187
  this.setIcon(`forward-${this.skipTime}`);
28767
- this.controlText(this.localize('Skip forward {1} seconds', [this.skipTime]));
28188
+ this.controlText(this.localize('Skip forward {1} seconds', [this.skipTime.toLocaleString(player.language())]));
28768
28189
  this.show();
28769
28190
  } else {
28770
28191
  this.hide();
@@ -28830,7 +28251,7 @@
28830
28251
  this.skipTime = this.getSkipBackwardTime();
28831
28252
  if (this.skipTime && this.validOptions.includes(this.skipTime)) {
28832
28253
  this.setIcon(`replay-${this.skipTime}`);
28833
- this.controlText(this.localize('Skip backward {1} seconds', [this.skipTime]));
28254
+ this.controlText(this.localize('Skip backward {1} seconds', [this.skipTime.toLocaleString(player.language())]));
28834
28255
  this.show();
28835
28256
  } else {
28836
28257
  this.hide();
@@ -35180,6 +34601,10 @@
35180
34601
  tag.player = el.player = this;
35181
34602
  // Default state of video is paused
35182
34603
  this.addClass('vjs-paused');
34604
+ const deviceClassNames = ['IS_SMART_TV', 'IS_TIZEN', 'IS_WEBOS', 'IS_ANDROID', 'IS_IPAD', 'IS_IPHONE'].filter(key => browser[key]).map(key => {
34605
+ return 'vjs-device-' + key.substring(3).toLowerCase().replace(/\_/g, '-');
34606
+ });
34607
+ this.addClass(...deviceClassNames);
35183
34608
 
35184
34609
  // Add a style element in the player that we'll use to set the width/height
35185
34610
  // of the player in a way that's still overridable by CSS, just like the
@@ -40168,9 +39593,6 @@
40168
39593
  AdsMacroReplacementFailed: 'ads-macro-replacement-failed',
40169
39594
  AdsResumeContentFailed: 'ads-resume-content-failed',
40170
39595
  // Errors used in contrib-eme:
40171
- EMEEncryptedError: 'eme-encrypted-error',
40172
- MSKeyError: 'ms-key-error',
40173
- WebkitKeyError: 'webkit-key-error',
40174
39596
  EMEFailedToRequestMediaKeySystemAccess: 'eme-failed-request-media-key-system-access',
40175
39597
  EMEFailedToCreateMediaKeys: 'eme-failed-create-media-keys',
40176
39598
  EMEFailedToAttachMediaKeysToVideoElement: 'eme-failed-attach-media-keys-to-video',
@@ -40178,7 +39600,9 @@
40178
39600
  EMEFailedToSetServerCertificate: 'eme-failed-set-server-certificate',
40179
39601
  EMEFailedToGenerateLicenseRequest: 'eme-failed-generate-license-request',
40180
39602
  EMEFailedToUpdateSessionWithReceivedLicenseKeys: 'eme-failed-update-session',
40181
- EMEFailedToCloseSession: 'eme-failed-close-session'
39603
+ EMEFailedToCloseSession: 'eme-failed-close-session',
39604
+ EMEFailedToRemoveKeysFromSession: 'eme-failed-remove-keys',
39605
+ EMEFailedToLoadSessionBySessionId: 'eme-failed-load-session'
40182
39606
  };
40183
39607
 
40184
39608
  /**
@@ -40995,7 +40419,7 @@
40995
40419
  // Include the version number.
40996
40420
  qualityLevels.VERSION = version$5;
40997
40421
 
40998
- /*! @name @videojs/http-streaming @version 3.12.0 @license Apache-2.0 */
40422
+ /*! @name @videojs/http-streaming @version 3.12.1 @license Apache-2.0 */
40999
40423
 
41000
40424
  /**
41001
40425
  * @file resolve-url.js - Handling how URLs are resolved and manipulated
@@ -42361,7 +41785,7 @@
42361
41785
  }
42362
41786
  }
42363
41787
  }
42364
- properties.playlists = [_extends$2({}, properties)];
41788
+ properties.playlists = [_extends$3({}, properties)];
42365
41789
  }
42366
41790
  properties.playlists.forEach(function (p, i) {
42367
41791
  const groupId = createGroupID(mediaType, groupKey, labelKey, p);
@@ -43410,7 +42834,7 @@
43410
42834
  }
43411
42835
  for (const labelKey in main.mediaGroups[mediaType][groupKey]) {
43412
42836
  const oldMedia = main.mediaGroups[mediaType][groupKey][labelKey];
43413
- main.mediaGroups[mediaType][id][labelKey] = _extends$2({}, oldMedia);
42837
+ main.mediaGroups[mediaType][id][labelKey] = _extends$3({}, oldMedia);
43414
42838
  const newMedia = main.mediaGroups[mediaType][id][labelKey]; // update URIs on the media
43415
42839
 
43416
42840
  const newUri = this.createCloneURI_(oldMedia.resolvedUri, clone);
@@ -53865,7 +53289,7 @@
53865
53289
  const transmuxer = options.transmuxer;
53866
53290
  const endAction = options.endAction || options.action;
53867
53291
  const callback = options.callback;
53868
- const message = _extends$2({}, options, {
53292
+ const message = _extends$3({}, options, {
53869
53293
  endAction: null,
53870
53294
  transmuxer: null,
53871
53295
  callback: null
@@ -57003,9 +56427,11 @@ bufferedEnd: ${lastBufferedEnd(this.buffered_())}
57003
56427
  this.partIndex = null;
57004
56428
  this.syncPoint_ = null;
57005
56429
  this.isPendingTimestampOffset_ = false; // this is mainly to sync timing-info when switching between renditions with and without timestamp-rollover,
57006
- // so we don't want it for DASH
56430
+ // so we don't want it for DASH or fragmented mp4 segments.
57007
56431
 
57008
- if (this.sourceType_ === 'hls') {
56432
+ const isFmp4 = this.currentMediaInfo_ && this.currentMediaInfo_.isFmp4;
56433
+ const isHlsTs = this.sourceType_ === 'hls' && !isFmp4;
56434
+ if (isHlsTs) {
57009
56435
  this.shouldForceTimestampOffsetAfterResync_ = true;
57010
56436
  }
57011
56437
  this.callQueue_ = [];
@@ -58108,10 +57534,10 @@ Fetch At Buffer: ${this.fetchAtBuffer_}
58108
57534
  this.loadQueue_.push(() => {
58109
57535
  // regenerate the audioAppendStart, timestampOffset, etc as they
58110
57536
  // may have changed since this function was added to the queue.
58111
- const options = _extends$2({}, segmentInfo, {
57537
+ const options = _extends$3({}, segmentInfo, {
58112
57538
  forceTimestampOffset: true
58113
57539
  });
58114
- _extends$2(segmentInfo, this.generateSegmentInfo_(options));
57540
+ _extends$3(segmentInfo, this.generateSegmentInfo_(options));
58115
57541
  this.isPendingTimestampOffset_ = false;
58116
57542
  this.updateTransmuxerAndRequestSegment_(segmentInfo);
58117
57543
  });
@@ -64966,7 +64392,7 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
64966
64392
  }
64967
64393
  if (enable !== currentlyEnabled && !incompatible) {
64968
64394
  // Ensure the outside world knows about our changes
64969
- changePlaylistFn();
64395
+ changePlaylistFn(playlist);
64970
64396
  if (enable) {
64971
64397
  loader.trigger('renditionenabled');
64972
64398
  } else {
@@ -65685,7 +65111,7 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
65685
65111
  const reloadSourceOnError = function (options) {
65686
65112
  initPlugin(this, options);
65687
65113
  };
65688
- var version$4 = "3.12.0";
65114
+ var version$4 = "3.12.1";
65689
65115
  var version$3 = "7.0.3";
65690
65116
  var version$2 = "1.3.0";
65691
65117
  var version$1 = "7.1.0";
@@ -69209,6 +68635,7 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
69209
68635
  };
69210
68636
  if (this.isAudioTrackEnabled()) {
69211
68637
  labels.media_audio_track = this.getCurrentAudioTrack();
68638
+ labels.media_audiodescription_on = this.isAudioDescriptionEnabled();
69212
68639
  }
69213
68640
  if (this.isTextTrackEnabled()) {
69214
68641
  labels.media_subtitle_selection = this.getCurrentTextTrack();
@@ -69349,6 +68776,16 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
69349
68776
  }
69350
68777
  }
69351
68778
 
68779
+ /**
68780
+ * Check if the audio description track is enabled.
68781
+ *
68782
+ * @returns {Boolean} __true__ if enabled __false__ otherwise.
68783
+ */
68784
+ isAudioDescriptionEnabled() {
68785
+ const currentTrack = Array.from(this.player.audioTracks()).find(track => track.enabled && track.kind.includes('desc'));
68786
+ return Boolean(currentTrack);
68787
+ }
68788
+
69352
68789
  /**
69353
68790
  * Check if the audio track is enabled.
69354
68791
  *
@@ -69902,7 +69339,6 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
69902
69339
  message: error.message,
69903
69340
  name: error.code
69904
69341
  }, playbackPosition), {}, {
69905
- severity: 'Fatal',
69906
69342
  url
69907
69343
  }));
69908
69344
  this.reset();
@@ -70789,45 +70225,45 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
70789
70225
  * @typedef {import('./typedef').MainResource} MainResource
70790
70226
  */
70791
70227
 
70792
- var Play$4 = "Wiedergabe";
70793
- var Pause$4 = "Pause";
70794
- var Replay$4 = "Erneut abspielen";
70795
- var Duration$4 = "Dauer";
70796
- var LIVE$4 = "LIVE";
70797
- var Loaded$4 = "Geladen";
70798
- var Progress$4 = "Status";
70799
- var Fullscreen$4 = "Vollbild";
70800
- var Mute$4 = "Stumm schalten";
70801
- var Unmute$4 = "Ton einschalten";
70802
- var Subtitles$4 = "Untertitel";
70803
- var Captions$4 = "Untertitel";
70804
- var Chapters$4 = "Kapitel";
70805
- var Close$4 = "Schließen";
70806
- var Descriptions$4 = "Beschreibungen";
70807
- var Text$4 = "Schrift";
70808
- var White$4 = "Weiß";
70809
- var Black$4 = "Schwarz";
70810
- var Red$4 = "Rot";
70811
- var Green$4 = "Grün";
70812
- var Blue$4 = "Blau";
70813
- var Yellow$4 = "Gelb";
70814
- var Magenta$4 = "Magenta";
70815
- var Cyan$4 = "Türkis";
70816
- var Background$4 = "Hintergrund";
70817
- var Window$4 = "Fenster";
70818
- var Transparent$4 = "Durchsichtig";
70819
- var Opaque$4 = "Undurchsichtig";
70820
- var None$4 = "Kein";
70821
- var Raised$3 = "Erhoben";
70822
- var Depressed$3 = "Gedrückt";
70823
- var Uniform$4 = "Uniform";
70824
- var Casual$3 = "Zwanglos";
70825
- var Script$3 = "Schreibschrift";
70826
- var Reset$4 = "Zurücksetzen";
70827
- var Done$4 = "Fertig";
70828
- var Color$3 = "Farbe";
70829
- var Opacity$3 = "Deckkraft";
70830
- var de$1 = {
70228
+ const Play$4 = "Wiedergabe";
70229
+ const Pause$4 = "Pause";
70230
+ const Replay$4 = "Erneut abspielen";
70231
+ const Duration$4 = "Dauer";
70232
+ const LIVE$4 = "LIVE";
70233
+ const Loaded$4 = "Geladen";
70234
+ const Progress$4 = "Status";
70235
+ const Fullscreen$4 = "Vollbild";
70236
+ const Mute$4 = "Stumm schalten";
70237
+ const Unmute$4 = "Ton einschalten";
70238
+ const Subtitles$4 = "Untertitel";
70239
+ const Captions$4 = "Untertitel";
70240
+ const Chapters$4 = "Kapitel";
70241
+ const Close$4 = "Schließen";
70242
+ const Descriptions$4 = "Beschreibungen";
70243
+ const Text$4 = "Schrift";
70244
+ const White$4 = "Weiß";
70245
+ const Black$4 = "Schwarz";
70246
+ const Red$4 = "Rot";
70247
+ const Green$4 = "Grün";
70248
+ const Blue$4 = "Blau";
70249
+ const Yellow$4 = "Gelb";
70250
+ const Magenta$4 = "Magenta";
70251
+ const Cyan$4 = "Türkis";
70252
+ const Background$4 = "Hintergrund";
70253
+ const Window$4 = "Fenster";
70254
+ const Transparent$4 = "Durchsichtig";
70255
+ const Opaque$4 = "Undurchsichtig";
70256
+ const None$4 = "Kein";
70257
+ const Raised$3 = "Erhoben";
70258
+ const Depressed$3 = "Gedrückt";
70259
+ const Uniform$4 = "Uniform";
70260
+ const Casual$3 = "Zwanglos";
70261
+ const Script$3 = "Schreibschrift";
70262
+ const Reset$4 = "Zurücksetzen";
70263
+ const Done$4 = "Fertig";
70264
+ const Color$3 = "Farbe";
70265
+ const Opacity$3 = "Deckkraft";
70266
+ const vjsLang$3 = {
70831
70267
  Play: Play$4,
70832
70268
  Pause: Pause$4,
70833
70269
  Replay: Replay$4,
@@ -70925,59 +70361,16 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
70925
70361
  "Skip backward {1} seconds": "{1} Sekunden zurück"
70926
70362
  };
70927
70363
 
70928
- var vjsLang$3 = /*#__PURE__*/Object.freeze({
70929
- __proto__: null,
70930
- Background: Background$4,
70931
- Black: Black$4,
70932
- Blue: Blue$4,
70933
- Captions: Captions$4,
70934
- Casual: Casual$3,
70935
- Chapters: Chapters$4,
70936
- Close: Close$4,
70937
- Color: Color$3,
70938
- Cyan: Cyan$4,
70939
- Depressed: Depressed$3,
70940
- Descriptions: Descriptions$4,
70941
- Done: Done$4,
70942
- Duration: Duration$4,
70943
- Fullscreen: Fullscreen$4,
70944
- Green: Green$4,
70945
- LIVE: LIVE$4,
70946
- Loaded: Loaded$4,
70947
- Magenta: Magenta$4,
70948
- Mute: Mute$4,
70949
- None: None$4,
70950
- Opacity: Opacity$3,
70951
- Opaque: Opaque$4,
70952
- Pause: Pause$4,
70953
- Play: Play$4,
70954
- Progress: Progress$4,
70955
- Raised: Raised$3,
70956
- Red: Red$4,
70957
- Replay: Replay$4,
70958
- Reset: Reset$4,
70959
- Script: Script$3,
70960
- Subtitles: Subtitles$4,
70961
- Text: Text$4,
70962
- Transparent: Transparent$4,
70963
- Uniform: Uniform$4,
70964
- Unmute: Unmute$4,
70965
- White: White$4,
70966
- Window: Window$4,
70967
- Yellow: Yellow$4,
70968
- default: de$1
70969
- });
70970
-
70971
- var AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
70972
- var AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
70973
- var COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
70974
- var ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
70975
- var GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
70976
- var JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
70977
- var LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
70978
- var STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
70979
- var UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
70980
- var de = {
70364
+ const AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
70365
+ const AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
70366
+ const COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
70367
+ const ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
70368
+ const GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
70369
+ const JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
70370
+ const LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
70371
+ const STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
70372
+ const UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
70373
+ const pillarboxLang$4 = {
70981
70374
  AGERATING12: AGERATING12$4,
70982
70375
  AGERATING18: AGERATING18$4,
70983
70376
  COMMERCIAL: COMMERCIAL$4,
@@ -70989,61 +70382,47 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
70989
70382
  UNKNOWN: UNKNOWN$4
70990
70383
  };
70991
70384
 
70992
- var pillarboxLang$4 = /*#__PURE__*/Object.freeze({
70993
- __proto__: null,
70994
- AGERATING12: AGERATING12$4,
70995
- AGERATING18: AGERATING18$4,
70996
- COMMERCIAL: COMMERCIAL$4,
70997
- ENDDATE: ENDDATE$4,
70998
- GEOBLOCK: GEOBLOCK$4,
70999
- JOURNALISTIC: JOURNALISTIC$4,
71000
- LEGAL: LEGAL$4,
71001
- STARTDATE: STARTDATE$4,
71002
- UNKNOWN: UNKNOWN$4,
71003
- default: de
71004
- });
71005
-
71006
70385
  pillarbox.addLanguage('de', _objectSpread2(_objectSpread2({}, vjsLang$3), pillarboxLang$4));
71007
70386
 
71008
- var Play$3 = "Play";
71009
- var Pause$3 = "Pause";
71010
- var Replay$3 = "Replay";
71011
- var Duration$3 = "Duration";
71012
- var LIVE$3 = "LIVE";
71013
- var Loaded$3 = "Loaded";
71014
- var Progress$3 = "Progress";
71015
- var Fullscreen$3 = "Fullscreen";
71016
- var Mute$3 = "Mute";
71017
- var Unmute$3 = "Unmute";
71018
- var Subtitles$3 = "Subtitles";
71019
- var Captions$3 = "Captions";
71020
- var Chapters$3 = "Chapters";
71021
- var Descriptions$3 = "Descriptions";
71022
- var Close$3 = "Close";
71023
- var Text$3 = "Text";
71024
- var White$3 = "White";
71025
- var Black$3 = "Black";
71026
- var Red$3 = "Red";
71027
- var Green$3 = "Green";
71028
- var Blue$3 = "Blue";
71029
- var Yellow$3 = "Yellow";
71030
- var Magenta$3 = "Magenta";
71031
- var Cyan$3 = "Cyan";
71032
- var Background$3 = "Background";
71033
- var Window$3 = "Window";
71034
- var Transparent$3 = "Transparent";
71035
- var Opaque$3 = "Opaque";
71036
- var None$3 = "None";
71037
- var Raised$2 = "Raised";
71038
- var Depressed$2 = "Depressed";
71039
- var Uniform$3 = "Uniform";
71040
- var Casual$2 = "Casual";
71041
- var Script$2 = "Script";
71042
- var Reset$3 = "Reset";
71043
- var Done$3 = "Done";
71044
- var Color$2 = "Color";
71045
- var Opacity$2 = "Opacity";
71046
- var en$1 = {
70387
+ const Play$3 = "Play";
70388
+ const Pause$3 = "Pause";
70389
+ const Replay$3 = "Replay";
70390
+ const Duration$3 = "Duration";
70391
+ const LIVE$3 = "LIVE";
70392
+ const Loaded$3 = "Loaded";
70393
+ const Progress$3 = "Progress";
70394
+ const Fullscreen$3 = "Fullscreen";
70395
+ const Mute$3 = "Mute";
70396
+ const Unmute$3 = "Unmute";
70397
+ const Subtitles$3 = "Subtitles";
70398
+ const Captions$3 = "Captions";
70399
+ const Chapters$3 = "Chapters";
70400
+ const Descriptions$3 = "Descriptions";
70401
+ const Close$3 = "Close";
70402
+ const Text$3 = "Text";
70403
+ const White$3 = "White";
70404
+ const Black$3 = "Black";
70405
+ const Red$3 = "Red";
70406
+ const Green$3 = "Green";
70407
+ const Blue$3 = "Blue";
70408
+ const Yellow$3 = "Yellow";
70409
+ const Magenta$3 = "Magenta";
70410
+ const Cyan$3 = "Cyan";
70411
+ const Background$3 = "Background";
70412
+ const Window$3 = "Window";
70413
+ const Transparent$3 = "Transparent";
70414
+ const Opaque$3 = "Opaque";
70415
+ const None$3 = "None";
70416
+ const Raised$2 = "Raised";
70417
+ const Depressed$2 = "Depressed";
70418
+ const Uniform$3 = "Uniform";
70419
+ const Casual$2 = "Casual";
70420
+ const Script$2 = "Script";
70421
+ const Reset$3 = "Reset";
70422
+ const Done$3 = "Done";
70423
+ const Color$2 = "Color";
70424
+ const Opacity$2 = "Opacity";
70425
+ const vjsLang$2 = {
71047
70426
  "Audio Player": "Audio Player",
71048
70427
  "Video Player": "Video Player",
71049
70428
  Play: Play$3,
@@ -71141,59 +70520,16 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71141
70520
  "Skip forward {1} seconds": "Skip forward {1} seconds"
71142
70521
  };
71143
70522
 
71144
- var vjsLang$2 = /*#__PURE__*/Object.freeze({
71145
- __proto__: null,
71146
- Background: Background$3,
71147
- Black: Black$3,
71148
- Blue: Blue$3,
71149
- Captions: Captions$3,
71150
- Casual: Casual$2,
71151
- Chapters: Chapters$3,
71152
- Close: Close$3,
71153
- Color: Color$2,
71154
- Cyan: Cyan$3,
71155
- Depressed: Depressed$2,
71156
- Descriptions: Descriptions$3,
71157
- Done: Done$3,
71158
- Duration: Duration$3,
71159
- Fullscreen: Fullscreen$3,
71160
- Green: Green$3,
71161
- LIVE: LIVE$3,
71162
- Loaded: Loaded$3,
71163
- Magenta: Magenta$3,
71164
- Mute: Mute$3,
71165
- None: None$3,
71166
- Opacity: Opacity$2,
71167
- Opaque: Opaque$3,
71168
- Pause: Pause$3,
71169
- Play: Play$3,
71170
- Progress: Progress$3,
71171
- Raised: Raised$2,
71172
- Red: Red$3,
71173
- Replay: Replay$3,
71174
- Reset: Reset$3,
71175
- Script: Script$2,
71176
- Subtitles: Subtitles$3,
71177
- Text: Text$3,
71178
- Transparent: Transparent$3,
71179
- Uniform: Uniform$3,
71180
- Unmute: Unmute$3,
71181
- White: White$3,
71182
- Window: Window$3,
71183
- Yellow: Yellow$3,
71184
- default: en$1
71185
- });
71186
-
71187
- var AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
71188
- var AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
71189
- var COMMERCIAL$3 = "This commercial content is not available.";
71190
- var ENDDATE$3 = "This content is not available anymore.";
71191
- var GEOBLOCK$3 = "This content is not available outside Switzerland.";
71192
- var JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
71193
- var LEGAL$3 = "This content is not available due to legal restrictions.";
71194
- var STARTDATE$3 = "This content is not available yet.";
71195
- var UNKNOWN$3 = "This content is not available.";
71196
- var en = {
70523
+ const AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
70524
+ const AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
70525
+ const COMMERCIAL$3 = "This commercial content is not available.";
70526
+ const ENDDATE$3 = "This content is not available anymore.";
70527
+ const GEOBLOCK$3 = "This content is not available outside Switzerland.";
70528
+ const JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
70529
+ const LEGAL$3 = "This content is not available due to legal restrictions.";
70530
+ const STARTDATE$3 = "This content is not available yet.";
70531
+ const UNKNOWN$3 = "This content is not available.";
70532
+ const pillarboxLang$3 = {
71197
70533
  AGERATING12: AGERATING12$3,
71198
70534
  AGERATING18: AGERATING18$3,
71199
70535
  COMMERCIAL: COMMERCIAL$3,
@@ -71205,61 +70541,47 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71205
70541
  UNKNOWN: UNKNOWN$3
71206
70542
  };
71207
70543
 
71208
- var pillarboxLang$3 = /*#__PURE__*/Object.freeze({
71209
- __proto__: null,
71210
- AGERATING12: AGERATING12$3,
71211
- AGERATING18: AGERATING18$3,
71212
- COMMERCIAL: COMMERCIAL$3,
71213
- ENDDATE: ENDDATE$3,
71214
- GEOBLOCK: GEOBLOCK$3,
71215
- JOURNALISTIC: JOURNALISTIC$3,
71216
- LEGAL: LEGAL$3,
71217
- STARTDATE: STARTDATE$3,
71218
- UNKNOWN: UNKNOWN$3,
71219
- default: en
71220
- });
71221
-
71222
70544
  pillarbox.addLanguage('en', _objectSpread2(_objectSpread2({}, vjsLang$2), pillarboxLang$3));
71223
70545
 
71224
- var Play$2 = "Lecture";
71225
- var Pause$2 = "Pause";
71226
- var Replay$2 = "Revoir";
71227
- var Duration$2 = "Durée";
71228
- var LIVE$2 = "EN DIRECT";
71229
- var Loaded$2 = "Chargé";
71230
- var Progress$2 = "Progression";
71231
- var Fullscreen$2 = "Plein écran";
71232
- var Mute$2 = "Mettre en sourdine";
71233
- var Unmute$2 = "Activer le son";
71234
- var Subtitles$2 = "Sous-titres";
71235
- var Captions$2 = "Sous-titres transcrits";
71236
- var Chapters$2 = "Chapitres";
71237
- var Descriptions$2 = "Descriptions";
71238
- var Close$2 = "Fermer";
71239
- var Text$2 = "Texte";
71240
- var White$2 = "Blanc";
71241
- var Black$2 = "Noir";
71242
- var Red$2 = "Rouge";
71243
- var Green$2 = "Vert";
71244
- var Blue$2 = "Bleu";
71245
- var Yellow$2 = "Jaune";
71246
- var Magenta$2 = "Magenta";
71247
- var Cyan$2 = "Cyan";
71248
- var Background$2 = "Arrière-plan";
71249
- var Window$2 = "Fenêtre";
71250
- var Transparent$2 = "Transparent";
71251
- var Opaque$2 = "Opaque";
71252
- var None$2 = "Aucun";
71253
- var Raised$1 = "Élevé";
71254
- var Depressed$1 = "Enfoncé";
71255
- var Uniform$2 = "Uniforme";
71256
- var Casual$1 = "Manuscrite";
71257
- var Script$1 = "Scripte";
71258
- var Reset$2 = "Réinitialiser";
71259
- var Done$2 = "Terminé";
71260
- var Color$1 = "Couleur";
71261
- var Opacity$1 = "Opacité";
71262
- var fr$1 = {
70546
+ const Play$2 = "Lecture";
70547
+ const Pause$2 = "Pause";
70548
+ const Replay$2 = "Revoir";
70549
+ const Duration$2 = "Durée";
70550
+ const LIVE$2 = "EN DIRECT";
70551
+ const Loaded$2 = "Chargé";
70552
+ const Progress$2 = "Progression";
70553
+ const Fullscreen$2 = "Plein écran";
70554
+ const Mute$2 = "Mettre en sourdine";
70555
+ const Unmute$2 = "Activer le son";
70556
+ const Subtitles$2 = "Sous-titres";
70557
+ const Captions$2 = "Sous-titres transcrits";
70558
+ const Chapters$2 = "Chapitres";
70559
+ const Descriptions$2 = "Descriptions";
70560
+ const Close$2 = "Fermer";
70561
+ const Text$2 = "Texte";
70562
+ const White$2 = "Blanc";
70563
+ const Black$2 = "Noir";
70564
+ const Red$2 = "Rouge";
70565
+ const Green$2 = "Vert";
70566
+ const Blue$2 = "Bleu";
70567
+ const Yellow$2 = "Jaune";
70568
+ const Magenta$2 = "Magenta";
70569
+ const Cyan$2 = "Cyan";
70570
+ const Background$2 = "Arrière-plan";
70571
+ const Window$2 = "Fenêtre";
70572
+ const Transparent$2 = "Transparent";
70573
+ const Opaque$2 = "Opaque";
70574
+ const None$2 = "Aucun";
70575
+ const Raised$1 = "Élevé";
70576
+ const Depressed$1 = "Enfoncé";
70577
+ const Uniform$2 = "Uniforme";
70578
+ const Casual$1 = "Manuscrite";
70579
+ const Script$1 = "Scripte";
70580
+ const Reset$2 = "Réinitialiser";
70581
+ const Done$2 = "Terminé";
70582
+ const Color$1 = "Couleur";
70583
+ const Opacity$1 = "Opacité";
70584
+ const vjsLang$1 = {
71263
70585
  "Audio Player": "Lecteur audio",
71264
70586
  "Video Player": "Lecteur vidéo",
71265
70587
  Play: Play$2,
@@ -71356,59 +70678,16 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71356
70678
  "Skip forward {1} seconds": "Avancer de {1} secondes"
71357
70679
  };
71358
70680
 
71359
- var vjsLang$1 = /*#__PURE__*/Object.freeze({
71360
- __proto__: null,
71361
- Background: Background$2,
71362
- Black: Black$2,
71363
- Blue: Blue$2,
71364
- Captions: Captions$2,
71365
- Casual: Casual$1,
71366
- Chapters: Chapters$2,
71367
- Close: Close$2,
71368
- Color: Color$1,
71369
- Cyan: Cyan$2,
71370
- Depressed: Depressed$1,
71371
- Descriptions: Descriptions$2,
71372
- Done: Done$2,
71373
- Duration: Duration$2,
71374
- Fullscreen: Fullscreen$2,
71375
- Green: Green$2,
71376
- LIVE: LIVE$2,
71377
- Loaded: Loaded$2,
71378
- Magenta: Magenta$2,
71379
- Mute: Mute$2,
71380
- None: None$2,
71381
- Opacity: Opacity$1,
71382
- Opaque: Opaque$2,
71383
- Pause: Pause$2,
71384
- Play: Play$2,
71385
- Progress: Progress$2,
71386
- Raised: Raised$1,
71387
- Red: Red$2,
71388
- Replay: Replay$2,
71389
- Reset: Reset$2,
71390
- Script: Script$1,
71391
- Subtitles: Subtitles$2,
71392
- Text: Text$2,
71393
- Transparent: Transparent$2,
71394
- Uniform: Uniform$2,
71395
- Unmute: Unmute$2,
71396
- White: White$2,
71397
- Window: Window$2,
71398
- Yellow: Yellow$2,
71399
- default: fr$1
71400
- });
71401
-
71402
- var AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
71403
- var AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
71404
- var COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
71405
- var ENDDATE$2 = "Ce contenu n'est plus disponible.";
71406
- var GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
71407
- var JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
71408
- var LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
71409
- var STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
71410
- var UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
71411
- var fr = {
70681
+ const AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
70682
+ const AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
70683
+ const COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
70684
+ const ENDDATE$2 = "Ce contenu n'est plus disponible.";
70685
+ const GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
70686
+ const JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
70687
+ const LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
70688
+ const STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
70689
+ const UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
70690
+ const pillarboxLang$2 = {
71412
70691
  AGERATING12: AGERATING12$2,
71413
70692
  AGERATING18: AGERATING18$2,
71414
70693
  COMMERCIAL: COMMERCIAL$2,
@@ -71420,57 +70699,43 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71420
70699
  UNKNOWN: UNKNOWN$2
71421
70700
  };
71422
70701
 
71423
- var pillarboxLang$2 = /*#__PURE__*/Object.freeze({
71424
- __proto__: null,
71425
- AGERATING12: AGERATING12$2,
71426
- AGERATING18: AGERATING18$2,
71427
- COMMERCIAL: COMMERCIAL$2,
71428
- ENDDATE: ENDDATE$2,
71429
- GEOBLOCK: GEOBLOCK$2,
71430
- JOURNALISTIC: JOURNALISTIC$2,
71431
- LEGAL: LEGAL$2,
71432
- STARTDATE: STARTDATE$2,
71433
- UNKNOWN: UNKNOWN$2,
71434
- default: fr
71435
- });
71436
-
71437
70702
  pillarbox.addLanguage('fr', _objectSpread2(_objectSpread2({}, vjsLang$1), pillarboxLang$2));
71438
70703
 
71439
- var Play$1 = "Play";
71440
- var Pause$1 = "Pausa";
71441
- var Replay$1 = "Replay";
71442
- var Duration$1 = "Durata";
71443
- var LIVE$1 = "LIVE";
71444
- var Loaded$1 = "Caricato";
71445
- var Progress$1 = "Stato";
71446
- var Fullscreen$1 = "Schermo intero";
71447
- var Mute$1 = "Disattiva l’audio";
71448
- var Unmute$1 = "Attiva l’audio";
71449
- var Subtitles$1 = "Sottotitoli";
71450
- var Captions$1 = "Sottotitoli non udenti";
71451
- var Chapters$1 = "Capitolo";
71452
- var Descriptions$1 = "Descrizioni";
71453
- var Close$1 = "Chiudi";
71454
- var Text$1 = "Testo";
71455
- var White$1 = "Bianco";
71456
- var Black$1 = "Nero";
71457
- var Red$1 = "Rosso";
71458
- var Green$1 = "Verde";
71459
- var Blue$1 = "Blu";
71460
- var Yellow$1 = "Giallo";
71461
- var Magenta$1 = "Magenta";
71462
- var Cyan$1 = "Ciano";
71463
- var Background$1 = "Sfondo";
71464
- var Window$1 = "Finestra";
71465
- var Transparent$1 = "Trasparente";
71466
- var Opaque$1 = "Opaco";
71467
- var None$1 = "Nessuno";
71468
- var Uniform$1 = "Uniforme";
71469
- var Reset$1 = "Reinizializza";
71470
- var Done$1 = "Fatto";
71471
- var Color = "Colore";
71472
- var Opacity = "Opacità";
71473
- var it$1 = {
70704
+ const Play$1 = "Play";
70705
+ const Pause$1 = "Pausa";
70706
+ const Replay$1 = "Replay";
70707
+ const Duration$1 = "Durata";
70708
+ const LIVE$1 = "LIVE";
70709
+ const Loaded$1 = "Caricato";
70710
+ const Progress$1 = "Stato";
70711
+ const Fullscreen$1 = "Schermo intero";
70712
+ const Mute$1 = "Disattiva l’audio";
70713
+ const Unmute$1 = "Attiva l’audio";
70714
+ const Subtitles$1 = "Sottotitoli";
70715
+ const Captions$1 = "Didascalie";
70716
+ const Chapters$1 = "Capitolo";
70717
+ const Descriptions$1 = "Descrizioni";
70718
+ const Close$1 = "Chiudi";
70719
+ const Text$1 = "Testo";
70720
+ const White$1 = "Bianco";
70721
+ const Black$1 = "Nero";
70722
+ const Red$1 = "Rosso";
70723
+ const Green$1 = "Verde";
70724
+ const Blue$1 = "Blu";
70725
+ const Yellow$1 = "Giallo";
70726
+ const Magenta$1 = "Magenta";
70727
+ const Cyan$1 = "Ciano";
70728
+ const Background$1 = "Sfondo";
70729
+ const Window$1 = "Finestra";
70730
+ const Transparent$1 = "Trasparente";
70731
+ const Opaque$1 = "Opaco";
70732
+ const None$1 = "Nessuno";
70733
+ const Uniform$1 = "Uniforme";
70734
+ const Reset$1 = "Reinizializza";
70735
+ const Done$1 = "Fatto";
70736
+ const Color = "Colore";
70737
+ const Opacity = "Opacità";
70738
+ const vjsLang = {
71474
70739
  "Audio Player": "Lettore audio",
71475
70740
  "Video Player": "Lettore video",
71476
70741
  Play: Play$1,
@@ -71493,7 +70758,7 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71493
70758
  Subtitles: Subtitles$1,
71494
70759
  "subtitles off": "Senza sottotitoli",
71495
70760
  Captions: Captions$1,
71496
- "captions off": "Senza sottotitoli non udenti",
70761
+ "captions off": "Senza didascalie",
71497
70762
  Chapters: Chapters$1,
71498
70763
  Descriptions: Descriptions$1,
71499
70764
  "descriptions off": "Descrizioni disattivate",
@@ -71511,13 +70776,13 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71511
70776
  "Modal Window": "Finestra di dialogo",
71512
70777
  "This is a modal window": "Questa è una finestra di dialogo",
71513
70778
  "This modal can be closed by pressing the Escape key or activating the close button.": "Questa finestra di dialogo può essere chiusa premendo sul tasto Esc o attivando il pulsante di chiusura.",
71514
- ", opens captions settings dialog": ", aprire i parametri della trascrizione dei sottotitoli",
71515
- ", opens subtitles settings dialog": ", aprire i parametri dei sottotitoli",
71516
- ", opens descriptions settings dialog": ", aprire i parametri delle descrizioni",
70779
+ ", opens captions settings dialog": ", aprire le impostazioni delle didascalie",
70780
+ ", opens subtitles settings dialog": ", aprire le impostazioni dei sottotitoli",
70781
+ ", opens descriptions settings dialog": ", aprire le impostazioni delle descrizioni",
71517
70782
  ", selected": ", selezionato",
71518
- "captions settings": "Parametri sottotitoli non udenti",
71519
- "subtitles settings": "Parametri sottotitoli",
71520
- "descriptions settings": "Parametri descrizioni",
70783
+ "captions settings": "Impostazioni didascalie",
70784
+ "subtitles settings": "Impostazioni sottotitoli",
70785
+ "descriptions settings": "Impostazioni descrizioni",
71521
70786
  Text: Text$1,
71522
70787
  White: White$1,
71523
70788
  Black: Black$1,
@@ -71560,55 +70825,16 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71560
70825
  "Skip backward {1} seconds": "Indietro {1} secondi"
71561
70826
  };
71562
70827
 
71563
- var vjsLang = /*#__PURE__*/Object.freeze({
71564
- __proto__: null,
71565
- Background: Background$1,
71566
- Black: Black$1,
71567
- Blue: Blue$1,
71568
- Captions: Captions$1,
71569
- Chapters: Chapters$1,
71570
- Close: Close$1,
71571
- Color: Color,
71572
- Cyan: Cyan$1,
71573
- Descriptions: Descriptions$1,
71574
- Done: Done$1,
71575
- Duration: Duration$1,
71576
- Fullscreen: Fullscreen$1,
71577
- Green: Green$1,
71578
- LIVE: LIVE$1,
71579
- Loaded: Loaded$1,
71580
- Magenta: Magenta$1,
71581
- Mute: Mute$1,
71582
- None: None$1,
71583
- Opacity: Opacity,
71584
- Opaque: Opaque$1,
71585
- Pause: Pause$1,
71586
- Play: Play$1,
71587
- Progress: Progress$1,
71588
- Red: Red$1,
71589
- Replay: Replay$1,
71590
- Reset: Reset$1,
71591
- Subtitles: Subtitles$1,
71592
- Text: Text$1,
71593
- Transparent: Transparent$1,
71594
- Uniform: Uniform$1,
71595
- Unmute: Unmute$1,
71596
- White: White$1,
71597
- Window: Window$1,
71598
- Yellow: Yellow$1,
71599
- default: it$1
71600
- });
71601
-
71602
- var AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
71603
- var AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
71604
- var COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
71605
- var ENDDATE$1 = "Questo media non è più disponibile.";
71606
- var GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
71607
- var JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
71608
- var LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
71609
- var STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
71610
- var UNKNOWN$1 = "Questo media non è disponibile.";
71611
- var it = {
70828
+ const AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
70829
+ const AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
70830
+ const COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
70831
+ const ENDDATE$1 = "Questo media non è più disponibile.";
70832
+ const GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
70833
+ const JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
70834
+ const LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
70835
+ const STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
70836
+ const UNKNOWN$1 = "Questo media non è disponibile.";
70837
+ const pillarboxLang$1 = {
71612
70838
  AGERATING12: AGERATING12$1,
71613
70839
  AGERATING18: AGERATING18$1,
71614
70840
  COMMERCIAL: COMMERCIAL$1,
@@ -71620,69 +70846,55 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71620
70846
  UNKNOWN: UNKNOWN$1
71621
70847
  };
71622
70848
 
71623
- var pillarboxLang$1 = /*#__PURE__*/Object.freeze({
71624
- __proto__: null,
71625
- AGERATING12: AGERATING12$1,
71626
- AGERATING18: AGERATING18$1,
71627
- COMMERCIAL: COMMERCIAL$1,
71628
- ENDDATE: ENDDATE$1,
71629
- GEOBLOCK: GEOBLOCK$1,
71630
- JOURNALISTIC: JOURNALISTIC$1,
71631
- LEGAL: LEGAL$1,
71632
- STARTDATE: STARTDATE$1,
71633
- UNKNOWN: UNKNOWN$1,
71634
- default: it
71635
- });
71636
-
71637
70849
  pillarbox.addLanguage('it', _objectSpread2(_objectSpread2({}, vjsLang), pillarboxLang$1));
71638
70850
 
71639
- var Play = "Laschar ir";
71640
- var Pause = "Pausa";
71641
- var Replay = "Mussar danovamain";
71642
- var Duration = "Durada";
71643
- var LIVE = "LIVE";
71644
- var Loaded = "Chargià";
71645
- var Progress = "Progress";
71646
- var Fullscreen = "Entir visur";
71647
- var Mute = "Senza tun";
71648
- var Unmute = "Cun tun";
71649
- var Subtitles = "Suttitels";
71650
- var Captions = "Suttitels";
71651
- var Chapters = "Chapitels";
71652
- var Descriptions = "Descripziuns";
71653
- var Close = "Serrar";
71654
- var Text = "Text";
71655
- var White = "Alv";
71656
- var Black = "Nair";
71657
- var Red = "Cotschn";
71658
- var Green = "Verd";
71659
- var Blue = "Blau";
71660
- var Yellow = "Mellen";
71661
- var Magenta = "Magenta";
71662
- var Cyan = "Cyan";
71663
- var Background = "Fund";
71664
- var Window = "Fanestra";
71665
- var Transparent = "Transparent";
71666
- var Opaque = "Betg transparent";
71667
- var None = "Nagin";
71668
- var Raised = "Auzà";
71669
- var Depressed = "Sbassà";
71670
- var Uniform = "Uniform";
71671
- var Dropshadow = "Sumbriva";
71672
- var Casual = "Casual";
71673
- var Script = "Script";
71674
- var Reset = "Da nov";
71675
- var Done = "Fatg";
71676
- var AGERATING12 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 20.00 e las 06.00.";
71677
- var AGERATING18 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 23.00 e las 05.00.";
71678
- var COMMERCIAL = "Quest medium commerzial n'è betg disponibel.";
71679
- var ENDDATE = "Quest cuntegn n'è betg pli disponibel.";
71680
- var GEOBLOCK = "Quest cuntegn n'è betg disponibel ordaifer la Svizra.";
71681
- var JOURNALISTIC = "Quest cuntegn na stat ad interim betg a disposiziun per motivs publicistics.";
71682
- var LEGAL = "Quest cuntegn n'è betg disponibel perquai ch'el è scadì.";
71683
- var STARTDATE = "Quest cuntegn n'è betg anc disponibel. Empruvai pli tard.";
71684
- var UNKNOWN = "Quest cuntegn n'è betg disponibel.";
71685
- var rm = {
70851
+ const Play = "Laschar ir";
70852
+ const Pause = "Pausa";
70853
+ const Replay = "Mussar danovamain";
70854
+ const Duration = "Durada";
70855
+ const LIVE = "LIVE";
70856
+ const Loaded = "Chargià";
70857
+ const Progress = "Progress";
70858
+ const Fullscreen = "Entir visur";
70859
+ const Mute = "Senza tun";
70860
+ const Unmute = "Cun tun";
70861
+ const Subtitles = "Suttitels";
70862
+ const Captions = "Suttitels";
70863
+ const Chapters = "Chapitels";
70864
+ const Descriptions = "Descripziuns";
70865
+ const Close = "Serrar";
70866
+ const Text = "Text";
70867
+ const White = "Alv";
70868
+ const Black = "Nair";
70869
+ const Red = "Cotschn";
70870
+ const Green = "Verd";
70871
+ const Blue = "Blau";
70872
+ const Yellow = "Mellen";
70873
+ const Magenta = "Magenta";
70874
+ const Cyan = "Cyan";
70875
+ const Background = "Fund";
70876
+ const Window = "Fanestra";
70877
+ const Transparent = "Transparent";
70878
+ const Opaque = "Betg transparent";
70879
+ const None = "Nagin";
70880
+ const Raised = "Auzà";
70881
+ const Depressed = "Sbassà";
70882
+ const Uniform = "Uniform";
70883
+ const Dropshadow = "Sumbriva";
70884
+ const Casual = "Casual";
70885
+ const Script = "Script";
70886
+ const Reset = "Da nov";
70887
+ const Done = "Fatg";
70888
+ const AGERATING12 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 20.00 e las 06.00.";
70889
+ const AGERATING18 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 23.00 e las 05.00.";
70890
+ const COMMERCIAL = "Quest medium commerzial n'è betg disponibel.";
70891
+ const ENDDATE = "Quest cuntegn n'è betg pli disponibel.";
70892
+ const GEOBLOCK = "Quest cuntegn n'è betg disponibel ordaifer la Svizra.";
70893
+ const JOURNALISTIC = "Quest cuntegn na stat ad interim betg a disposiziun per motivs publicistics.";
70894
+ const LEGAL = "Quest cuntegn n'è betg disponibel perquai ch'el è scadì.";
70895
+ const STARTDATE = "Quest cuntegn n'è betg anc disponibel. Empruvai pli tard.";
70896
+ const UNKNOWN = "Quest cuntegn n'è betg disponibel.";
70897
+ const pillarboxLang = {
71686
70898
  "Audio Player": "Audio-Player",
71687
70899
  "Video Player": "Video-Player",
71688
70900
  Play: Play,
@@ -71776,57 +70988,6 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
71776
70988
  UNKNOWN: UNKNOWN
71777
70989
  };
71778
70990
 
71779
- var pillarboxLang = /*#__PURE__*/Object.freeze({
71780
- __proto__: null,
71781
- AGERATING12: AGERATING12,
71782
- AGERATING18: AGERATING18,
71783
- Background: Background,
71784
- Black: Black,
71785
- Blue: Blue,
71786
- COMMERCIAL: COMMERCIAL,
71787
- Captions: Captions,
71788
- Casual: Casual,
71789
- Chapters: Chapters,
71790
- Close: Close,
71791
- Cyan: Cyan,
71792
- Depressed: Depressed,
71793
- Descriptions: Descriptions,
71794
- Done: Done,
71795
- Dropshadow: Dropshadow,
71796
- Duration: Duration,
71797
- ENDDATE: ENDDATE,
71798
- Fullscreen: Fullscreen,
71799
- GEOBLOCK: GEOBLOCK,
71800
- Green: Green,
71801
- JOURNALISTIC: JOURNALISTIC,
71802
- LEGAL: LEGAL,
71803
- LIVE: LIVE,
71804
- Loaded: Loaded,
71805
- Magenta: Magenta,
71806
- Mute: Mute,
71807
- None: None,
71808
- Opaque: Opaque,
71809
- Pause: Pause,
71810
- Play: Play,
71811
- Progress: Progress,
71812
- Raised: Raised,
71813
- Red: Red,
71814
- Replay: Replay,
71815
- Reset: Reset,
71816
- STARTDATE: STARTDATE,
71817
- Script: Script,
71818
- Subtitles: Subtitles,
71819
- Text: Text,
71820
- Transparent: Transparent,
71821
- UNKNOWN: UNKNOWN,
71822
- Uniform: Uniform,
71823
- Unmute: Unmute,
71824
- White: White,
71825
- Window: Window,
71826
- Yellow: Yellow,
71827
- default: rm
71828
- });
71829
-
71830
70991
  pillarbox.addLanguage('rm', _objectSpread2({}, pillarboxLang));
71831
70992
 
71832
70993
  const _excluded = ["url", "mimeType", "keySystems"],
@@ -72460,3 +71621,4 @@ ${segmentInfoString(segmentInfo)}`); // If there's an init segment associated wi
72460
71621
  return pillarbox;
72461
71622
 
72462
71623
  }));
71624
+ //# sourceMappingURL=pillarbox.umd.js.map