aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/static
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/static')
-rw-r--r--youtube/static/js/plyr-start.js37
-rw-r--r--youtube/static/modules/plyr/build-instructions.md23
-rw-r--r--youtube/static/modules/plyr/plyr.css2
-rw-r--r--youtube/static/modules/plyr/plyr.js6991
-rw-r--r--youtube/static/modules/plyr/plyr.min.js2
5 files changed, 3208 insertions, 3847 deletions
diff --git a/youtube/static/js/plyr-start.js b/youtube/static/js/plyr-start.js
new file mode 100644
index 0000000..aff925f
--- /dev/null
+++ b/youtube/static/js/plyr-start.js
@@ -0,0 +1,37 @@
+let captionsActive;
+
+switch(true) {
+
+case data.settings.subtitles_mode == 2:
+ captionsActive = true;
+ break;
+case data.settings.subtitles_mode == 1 && data.has_manual_captions:
+ captionsActive = true;
+ break;
+default:
+ captionsActive = false;
+}
+
+const player = new Plyr(document.getElementById('js-video-player'), {
+ disableContextMenu: false,
+ captions: {
+ active: captionsActive,
+ language: data.settings.subtitles_language,
+ },
+ controls: [
+ 'play-large',
+ 'play',
+ 'progress',
+ 'current-time',
+ 'duration',
+ 'mute',
+ 'volume',
+ 'captions',
+ 'settings',
+ 'fullscreen'
+ ],
+ iconUrl: "/youtube.com/static/modules/plyr/plyr.svg",
+ blankVideo: "/youtube.com/static/modules/plyr/blank.webm",
+ debug: false,
+ storage: {enabled: false}
+});
diff --git a/youtube/static/modules/plyr/build-instructions.md b/youtube/static/modules/plyr/build-instructions.md
new file mode 100644
index 0000000..4323281
--- /dev/null
+++ b/youtube/static/modules/plyr/build-instructions.md
@@ -0,0 +1,23 @@
+# Build steps for Plyr (3.6.8)
+
+Tested on Hyperbola GNU with Linux-libre.
+
+First install npm (node package manager).
+
+Clone the repo to a location of your choosing:
+```
+git clone https://git.sr.ht/~heckyel/plyr
+cd plyr
+```
+
+Install Plyr's dependencies:
+```
+npm install
+```
+
+Build with npm:
+```
+npm run build
+```
+
+plyr.js and other files will be in the `dist` directory.
diff --git a/youtube/static/modules/plyr/plyr.css b/youtube/static/modules/plyr/plyr.css
index 7d98f20..fd3a1bc 100644
--- a/youtube/static/modules/plyr/plyr.css
+++ b/youtube/static/modules/plyr/plyr.css
@@ -1 +1 @@
-@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{from{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;align-items:center;direction:ltr;display:flex;flex-direction:column;font-family:inherit;font-family:var(--plyr-font-family,inherit);font-variant-numeric:tabular-nums;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);height:100%;line-height:1.7;line-height:var(--plyr-line-height,1.7);max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease;z-index:0}.plyr audio,.plyr iframe,.plyr video{display:block;height:100%;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui ::after,.plyr--full-ui ::before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);color:#fff;color:var(--plyr-badge-text-color,#fff);font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;display:none;font-size:13px;font-size:var(--plyr-font-size-small,13px);left:0;padding:10px;padding:var(--plyr-control-spacing,10px);position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:15px;font-size:var(--plyr-font-size-base,15px);padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2)}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px)}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(calc(10px * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4))}.plyr__caption{background:rgba(0,0,0,.8);background:var(--plyr-captions-background,rgba(0,0,0,.8));border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:#fff;color:var(--plyr-captions-text-color,#fff);line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__caption div{display:inline}.plyr__control{background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:calc(10px * .7);padding:calc(var(--plyr-control-spacing,10px) * .7);position:relative;transition:all .3s ease}.plyr__control svg{display:block;fill:currentColor;height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;width:18px;width:var(--plyr-control-icon-size,18px)}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}a.plyr__control{text-decoration:none}a.plyr__control::after,a.plyr__control::before{display:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:calc(10px / 4);margin-left:calc(var(--plyr-control-spacing,10px)/ 4)}.plyr__controls .plyr__controls__item:first-child{margin-left:0;margin-right:auto}.plyr__controls .plyr__controls__item.plyr__progress__container{padding-left:calc(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4)}.plyr__controls .plyr__controls__item.plyr__time{padding:0 calc(10px / 2);padding:0 calc(var(--plyr-control-spacing,10px)/ 2)}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0}.plyr__controls:empty{display:none}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip]{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);background:var(--plyr-menu-background,rgba(255,255,255,.9));border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-menu-color,#4a5464);font-size:15px;font-size:var(--plyr-font-size-base,15px);margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container::after{border:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:rgba(255,255,255,.9);border-top-color:var(--plyr-menu-background,rgba(255,255,255,.9));content:'';height:0;position:absolute;right:calc(((18px / 2) + calc(10px * .7)) - (4px / 2));right:calc(((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * .7)) - (var(--plyr-menu-arrow-size,4px)/ 2));top:100%;width:0}.plyr__menu__container [role=menu]{padding:calc(10px * .7);padding:calc(var(--plyr-control-spacing,10px) * .7)}.plyr__menu__container [role=menucaptions]{padding:calc(10px * .7);padding:calc(var(--plyr-control-spacing,10px) * .7);max-height:320px;overflow-y:auto}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4a5464;color:var(--plyr-menu-color,#4a5464);display:flex;font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));padding-bottom:calc(calc(10px * .7)/ 1.5);padding-bottom:calc(calc(var(--plyr-control-spacing,10px) * .7)/ 1.5);padding-left:calc(calc(10px * .7) * 1.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * .7) * 1.5);padding-right:calc(calc(10px * .7) * 1.5);padding-right:calc(calc(var(--plyr-control-spacing,10px) * .7) * 1.5);padding-top:calc(calc(10px * .7)/ 1.5);padding-top:calc(calc(var(--plyr-control-spacing,10px) * .7)/ 1.5);-webkit-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control::after{border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;content:'';position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:calc(calc(10px * .7) * 4);padding-right:calc(calc(var(--plyr-control-spacing,10px) * .7) * 4)}.plyr__menu__container .plyr__control--forward::after{border-left-color:#728197;border-left-color:var(--plyr-menu-arrow-color,#728197);right:calc((calc(10px * .7) * 1.5) - 4px);right:calc((calc(var(--plyr-control-spacing,10px) * .7) * 1.5) - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:400;font-weight:var(--plyr-font-weight-regular,400);margin:calc(10px * .7);margin:calc(var(--plyr-control-spacing,10px) * .7);margin-bottom:calc(calc(10px * .7)/ 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px) * .7)/ 2);padding-left:calc(calc(10px * .7) * 4);padding-left:calc(calc(var(--plyr-control-spacing,10px) * .7) * 4);position:relative;width:calc(100% - (calc(10px * .7) * 2));width:calc(100% - (calc(var(--plyr-control-spacing,10px) * .7) * 2))}.plyr__menu__container .plyr__control--back::after{border-right-color:#728197;border-right-color:var(--plyr-menu-arrow-color,#728197);left:calc((calc(10px * .7) * 1.5) - 4px);left:calc((calc(var(--plyr-control-spacing,10px) * .7) * 1.5) - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--back::before{background:#dcdfe5;background:var(--plyr-menu-back-border-color,#dcdfe5);box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 var(--plyr-menu-back-border-shadow-color,#fff);content:'';height:1px;left:0;margin-top:calc(calc(10px * .7)/ 2);margin-top:calc(calc(var(--plyr-control-spacing,10px) * .7)/ 2);overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:calc(10px * .7);padding-left:calc(var(--plyr-control-spacing,10px) * .7)}.plyr__menu__container .plyr__control[role=menuitemradio]::after,.plyr__menu__container .plyr__control[role=menuitemradio]::before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]::before{background:rgba(0,0,0,.1);content:'';display:block;flex-shrink:0;height:16px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px);transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]::after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{background:#00b3ff;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)))}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before{background:rgba(35,40,47,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:calc((calc(10px * .7) - 2) * -1);margin-right:calc((calc(var(--plyr-control-spacing,10px) * .7) - 2) * -1);overflow:hidden;padding-left:calc(calc(10px * .7) * 3.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * .7) * 3.5);pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:0 0;border:0;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);color:#00b3ff;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));display:block;height:calc((3px * 2) + 13px);height:calc((var(--plyr-range-thumb-active-shadow-width,3px) * 2) + var(--plyr-range-thumb-height,13px));margin:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px);-webkit-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none;background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0))}.plyr--full-ui input[type=range]::-webkit-slider-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;-webkit-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px);-webkit-appearance:none;margin-top:calc(((13px - 5px)/ 2) * -1);margin-top:calc(((var(--plyr-range-thumb-height,13px) - var(--plyr-range-track-height,5px))/ 2) * -1)}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px);-moz-transition:box-shadow .3s ease;transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;-moz-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px)}.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper{background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;background:currentColor}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;-ms-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px);margin-top:0}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px))}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px;margin-right:var(--plyr-control-spacing,10px)}@media (max-width:calc(768px - 1)){.plyr__time+.plyr__time{display:none}}.plyr__tooltip{background:rgba(255,255,255,.9);background:var(--plyr-tooltip-background,rgba(255,255,255,.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);font-size:13px;font-size:var(--plyr-font-size-small,13px);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);left:50%;line-height:1.3;margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);opacity:0;padding:calc(10px / 2) calc(calc(10px / 2) * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(calc(var(--plyr-control-spacing,10px)/ 2) * 1.5);pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;white-space:nowrap;z-index:2}.plyr__tooltip::before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid rgba(255,255,255,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,.9));bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:calc((18px / 2) + calc(10px * .7));left:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * .7))}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{left:auto;right:calc((18px / 2) + calc(10px * .7));right:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * .7));transform:translateX(50%)}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr__progress{left:calc(13px * .5);left:calc(var(--plyr-range-thumb-height,13px) * .5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:calc(13px * -.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -.5);margin-right:calc(13px * -.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -.5);width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height,13px))}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin-top:calc((5px / 2) * -1);margin-top:calc((var(--plyr-range-track-height,5px)/ 2) * -1);padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);-moz-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;-ms-transition:width .2s ease;transition:width .2s ease}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,40,47,.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,.6) 50%,rgba(35,40,47,.6) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,.25);background-color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,.25))}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr__volume{align-items:center;display:flex;max-width:110px;min-width:80px;position:relative;width:20%}.plyr__volume input[type=range]{margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);margin-right:calc(10px / 2);margin-right:calc(var(--plyr-control-spacing,10px)/ 2);position:relative;z-index:2}.plyr--is-ios .plyr__volume{min-width:0;width:auto}.plyr--audio{display:block}.plyr--audio .plyr__controls{background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);padding:10px;padding:var(--plyr-control-spacing,10px)}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#00b3ff;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;color:var(--plyr-audio-control-color-hover,#fff)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;height:100%;margin:auto;overflow:hidden;position:relative;width:100%}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;left:0;position:absolute;top:0}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr--video .plyr__controls{background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.75));background:var(--plyr-video-controls-background,linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.75)));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;color:var(--plyr-video-control-color,#fff);left:0;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5)}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;color:var(--plyr-video-control-color-hover,#fff)}.plyr__control--overlaid{background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));border:0;border-radius:100%;color:#fff;color:var(--plyr-video-control-color,#fff);display:none;left:50%;opacity:.9;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);position:absolute;top:50%;transform:translate(-50%,-50%);transition:.3s;z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{opacity:1}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:rgba(255,255,255,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,.25)))}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:rgba(255,255,255,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,.25)))}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:rgba(255,255,255,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,.25)))}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,.5))}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,.5))}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,.5))}.plyr--video .plyr__progress__buffer{color:rgba(255,255,255,.25);color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,.25))}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:-ms-fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;height:100%;margin:0;width:100%;bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads::after{background:#23282f;border-radius:2px;bottom:10px;bottom:var(--plyr-control-spacing,10px);color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;right:var(--plyr-control-spacing,10px);z-index:3}.plyr__ads::after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin:-var(--plyr-range-track-height,5px)/2 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:rgba(255,255,255,.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,.9));border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);opacity:0;padding:3px;padding:var(--plyr-tooltip-radius,3px);pointer-events:none;position:absolute;transform:translate(0,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1)}.plyr__preview-thumb::before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid rgba(255,255,255,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,.9));bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c8d1;border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);color:#fff;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;border:0!important;height:1px!important;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important} \ No newline at end of file
+@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{0%{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;align-items:center;direction:ltr;display:flex;flex-direction:column;font-family:inherit;font-family:var(--plyr-font-family,inherit);font-variant-numeric:tabular-nums;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);line-height:1.7;line-height:var(--plyr-line-height,1.7);max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease;z-index:0}.plyr audio,.plyr iframe,.plyr video{display:block;height:100%;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui :after,.plyr--full-ui :before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);color:#fff;color:var(--plyr-badge-text-color,#fff);font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;display:none;font-size:13px;font-size:var(--plyr-font-size-small,13px);left:0;padding:10px;padding:var(--plyr-control-spacing,10px);position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:15px;font-size:var(--plyr-font-size-base,15px);padding:20px;padding:calc(var(--plyr-control-spacing, 10px)*2)}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px)}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(-40px);transform:translateY(calc(var(--plyr-control-spacing, 10px)*-4))}.plyr__caption{background:rgba(0,0,0,.8);background:var(--plyr-captions-background,rgba(0,0,0,.8));border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:#fff;color:var(--plyr-captions-text-color,#fff);line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__caption div{display:inline}.plyr__control{background:transparent;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;padding:calc(var(--plyr-control-spacing, 10px)*.7);position:relative;transition:all .3s ease}.plyr__control svg{fill:currentColor;display:block;height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;width:18px;width:var(--plyr-control-icon-size,18px)}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}a.plyr__control{text-decoration:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed,a.plyr__control:after,a.plyr__control:before{display:none}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:2.5px;margin-left:calc(var(--plyr-control-spacing, 10px)/4)}.plyr__controls .plyr__controls__item:first-child{margin-left:0;margin-right:auto}.plyr__controls .plyr__controls__item.plyr__progress__container{padding-left:2.5px;padding-left:calc(var(--plyr-control-spacing, 10px)/4)}.plyr__controls .plyr__controls__item.plyr__time{padding:0 5px;padding:0 calc(var(--plyr-control-spacing, 10px)/2)}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip],.plyr__controls:empty{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:hsla(0,0%,100%,.9);background:var(--plyr-menu-background,hsla(0,0%,100%,.9));border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-menu-color,#4a5464);font-size:15px;font-size:var(--plyr-font-size-base,15px);margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container:after{border:4px solid transparent;border-top:var(--plyr-menu-arrow-size,4px) solid hsla(0,0%,100%,.9);border-width:var(--plyr-menu-arrow-size,4px);content:"";height:0;position:absolute;right:14px;right:calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7 - var(--plyr-menu-arrow-size, 4px)/2);top:100%;width:0}.plyr__menu__container [role=menu]{max-height:320px;overflow-y:auto;padding:7px;padding:calc(var(--plyr-control-spacing, 10px)*.7)}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4a5464;color:var(--plyr-menu-color,#4a5464);display:flex;font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));padding:4.66667px 10.5px;padding:calc(var(--plyr-control-spacing, 10px)*.7/1.5) calc(var(--plyr-control-spacing, 10px)*.7*1.5);-webkit-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control:after{border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;content:"";position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px;padding-right:calc(var(--plyr-control-spacing, 10px)*.7*4)}.plyr__menu__container .plyr__control--forward:after{border-left-color:#728197;border-left-color:var(--plyr-menu-arrow-color,#728197);right:6.5px;right:calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px))}.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,.plyr__menu__container .plyr__control--forward:hover:after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:400;font-weight:var(--plyr-font-weight-regular,400);margin:7px;margin:calc(var(--plyr-control-spacing, 10px)*.7);margin-bottom:3.5px;margin-bottom:calc(var(--plyr-control-spacing, 10px)*.7/2);padding-left:28px;padding-left:calc(var(--plyr-control-spacing, 10px)*.7*4);position:relative;width:calc(100% - 14px);width:calc(100% - var(--plyr-control-spacing, 10px)*.7*2)}.plyr__menu__container .plyr__control--back:after{border-right-color:#728197;border-right-color:var(--plyr-menu-arrow-color,#728197);left:6.5px;left:calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px))}.plyr__menu__container .plyr__control--back:before{background:#dcdfe5;background:var(--plyr-menu-back-border-color,#dcdfe5);box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 var(--plyr-menu-back-border-shadow-color,#fff);content:"";height:1px;left:0;margin-top:3.5px;margin-top:calc(var(--plyr-control-spacing, 10px)*.7/2);overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,.plyr__menu__container .plyr__control--back:hover:after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:7px;padding-left:calc(var(--plyr-control-spacing, 10px)*.7)}.plyr__menu__container .plyr__control[role=menuitemradio]:after,.plyr__menu__container .plyr__control[role=menuitemradio]:before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]:before{background:rgba(0,0,0,.1);content:"";display:block;flex-shrink:0;height:16px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px);transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]:after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before{background:#00b3ff;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)))}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before{background:rgba(35,40,47,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:calc(-7px - -2);margin-right:calc(var(--plyr-control-spacing, 10px)*.7*-1 - -2);overflow:hidden;padding-left:24.5px;padding-left:calc(var(--plyr-control-spacing, 10px)*.7*3.5);pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:transparent;border:0;border-radius:26px;border-radius:calc(var(--plyr-range-thumb-height, 13px)*2);color:#00b3ff;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));display:block;height:19px;height:calc(var(--plyr-range-thumb-active-shadow-width, 3px)*2 + var(--plyr-range-thumb-height, 13px));margin:0;min-width:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:transparent;background-image:linear-gradient(90deg,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height, 5px)/2);height:5px;height:var(--plyr-range-track-height,5px);-webkit-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:-4px;margin-top:calc(var(--plyr-range-thumb-height, 13px)/2*-1 - var(--plyr-range-track-height, 5px)/2*-1);position:relative;-webkit-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-track{background:transparent;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height, 5px)/2);height:5px;height:var(--plyr-range-track-height,5px);-moz-transition:box-shadow .3s ease;transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;-moz-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height, 5px)/2);height:5px;height:var(--plyr-range-track-height,5px)}.plyr--full-ui input[type=range]::-ms-track{color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper,.plyr--full-ui input[type=range]::-ms-track{background:transparent;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height, 5px)/2);height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:transparent;background:currentColor;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height, 5px)/2);height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:0;position:relative;-ms-transition:all .2s ease;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{outline-color:#00b3ff;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr__poster{background-color:#000;background-color:var(--plyr-video-background,var(--plyr-video-background,#000));background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster{display:none}.plyr__time{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px))}.plyr__time+.plyr__time:before{content:"\2044";margin-right:10px;margin-right:var(--plyr-control-spacing,10px)}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}.plyr__tooltip{background:hsla(0,0%,100%,.9);background:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);font-size:13px;font-size:var(--plyr-font-size-small,13px);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);left:50%;line-height:1.3;margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing, 10px)/2*2);opacity:0;padding:5px 7.5px;padding:calc(var(--plyr-control-spacing, 10px)/2) calc(var(--plyr-control-spacing, 10px)/2*1.5);pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;white-space:nowrap;z-index:2}.plyr__tooltip:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid hsla(0,0%,100%,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,hsla(0,0%,100%,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size, 4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip{left:0;transform:translateY(10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip:before,.plyr__controls>.plyr__control:first-child .plyr__tooltip:before{left:16px;left:calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7)}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translateY(10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip:before{left:auto;right:16px;right:calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7);transform:translateX(50%)}.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0) scale(1)}.plyr__progress{left:6.5px;left:calc(var(--plyr-range-thumb-height, 13px)*.5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);position:relative}.plyr__progress__buffer,.plyr__progress input[type=range]{margin-left:-6.5px;margin-left:calc(var(--plyr-range-thumb-height, 13px)*-.5);margin-right:-6.5px;margin-right:calc(var(--plyr-range-thumb-height, 13px)*-.5);width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height, 13px))}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));left:0}.plyr__progress__buffer{-webkit-appearance:none;background:transparent;border:0;border-radius:100px;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin-top:-2.5px;margin-top:calc(var(--plyr-range-track-height, 5px)/2*-1);padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:transparent}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);-moz-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;-ms-transition:width .2s ease;transition:width .2s ease}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,40,47,.6) 25%,transparent 0,transparent 50%,rgba(35,40,47,.6) 0,rgba(35,40,47,.6) 75%,transparent 0,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25))}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr__volume{align-items:center;display:flex;max-width:110px;min-width:80px;position:relative;width:20%}.plyr__volume input[type=range]{margin-left:5px;margin-left:calc(var(--plyr-control-spacing, 10px)/2);margin-right:5px;margin-right:calc(var(--plyr-control-spacing, 10px)/2);position:relative;z-index:2}.plyr--is-ios .plyr__volume{min-width:0;width:auto}.plyr--audio{display:block}.plyr--audio .plyr__controls{background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);padding:10px;padding:var(--plyr-control-spacing,10px)}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#00b3ff;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;color:var(--plyr-audio-control-color-hover,#fff)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,.1))}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr--video{background:#000;background:var(--plyr-video-background,var(--plyr-video-background,#000));overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;background:var(--plyr-video-background,var(--plyr-video-background,#000));margin:auto;overflow:hidden;position:relative;width:100%}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{aspect-ratio:16/9}@supports not (aspect-ratio:16/9){.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;position:relative}}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr--video .plyr__controls{background:linear-gradient(transparent,rgba(0,0,0,.8));background:var(--plyr-video-controls-background,linear-gradient(transparent,rgba(0,0,0,.8)));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;color:var(--plyr-video-control-color,#fff);left:0;padding:5px;padding:calc(var(--plyr-control-spacing, 10px)/2);padding-top:20px;padding-top:calc(var(--plyr-control-spacing, 10px)*2);position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:35px;padding-top:calc(var(--plyr-control-spacing, 10px)*3.5)}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;color:var(--plyr-video-control-color-hover,#fff)}.plyr__control--overlaid{background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));border:0;border-radius:100%;color:#fff;color:var(--plyr-video-control-color,#fff);display:none;left:50%;opacity:.9;padding:15px;padding:calc(var(--plyr-control-spacing, 10px)*1.5);position:absolute;top:50%;transform:translate(-50%,-50%);transition:.3s;z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{opacity:1}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25)))}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25)))}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25)))}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px hsla(0,0%,100%,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,hsla(0,0%,100%,.5))}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px hsla(0,0%,100%,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,hsla(0,0%,100%,.5))}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2),0 0 0 3px hsla(0,0%,100%,.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2)),0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,hsla(0,0%,100%,.5))}.plyr--video .plyr__progress__buffer{color:hsla(0,0%,100%,.25);color:var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25))}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen video{height:100%}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;bottom:0;display:block;height:100%;left:0;margin:0;position:fixed;right:0;top:0;width:100%;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads:after{background:#23282f;border-radius:2px;bottom:10px;bottom:var(--plyr-control-spacing,10px);color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;right:var(--plyr-control-spacing,10px);z-index:3}.plyr__ads:after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin:-var(--plyr-range-track-height,5px)/2 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:hsla(0,0%,100%,.9);background-color:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing, 10px)/2*2);opacity:0;padding:3px;padding:var(--plyr-tooltip-radius,3px);pointer-events:none;position:absolute;transform:translateY(10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0) scale(1)}.plyr__preview-thumb:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid hsla(0,0%,100%,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,hsla(0,0%,100%,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size, 4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c8d1;border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius, 3px) - 1px);overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius, 3px) - 1px);color:#fff;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;-o-object-fit:contain;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);border:0!important;height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important} \ No newline at end of file
diff --git a/youtube/static/modules/plyr/plyr.js b/youtube/static/modules/plyr/plyr.js
index d5cc84e..8047141 100644
--- a/youtube/static/modules/plyr/plyr.js
+++ b/youtube/static/modules/plyr/plyr.js
@@ -1,32 +1,10 @@
typeof navigator === "object" && (function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define('Plyr', factory) :
- (global = global || self, global.Plyr = factory());
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Plyr = factory());
}(this, (function () { 'use strict';
- function _classCallCheck(instance, Constructor) {
- if (!(instance instanceof Constructor)) {
- throw new TypeError("Cannot call a class as a function");
- }
- }
-
- function _defineProperties(target, props) {
- for (var i = 0; i < props.length; i++) {
- var descriptor = props[i];
- descriptor.enumerable = descriptor.enumerable || false;
- descriptor.configurable = true;
- if ("value" in descriptor) descriptor.writable = true;
- Object.defineProperty(target, descriptor.key, descriptor);
- }
- }
-
- function _createClass(Constructor, protoProps, staticProps) {
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
- if (staticProps) _defineProperties(Constructor, staticProps);
- return Constructor;
- }
-
- function _defineProperty(obj, key, value) {
+ function _defineProperty$1(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
@@ -41,164 +19,22 @@ typeof navigator === "object" && (function (global, factory) {
return obj;
}
- function ownKeys(object, enumerableOnly) {
- var keys = Object.keys(object);
-
- if (Object.getOwnPropertySymbols) {
- var symbols = Object.getOwnPropertySymbols(object);
- if (enumerableOnly) symbols = symbols.filter(function (sym) {
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
- });
- keys.push.apply(keys, symbols);
- }
-
- return keys;
- }
-
- function _objectSpread2(target) {
- for (var i = 1; i < arguments.length; i++) {
- var source = arguments[i] != null ? arguments[i] : {};
-
- if (i % 2) {
- ownKeys(Object(source), true).forEach(function (key) {
- _defineProperty(target, key, source[key]);
- });
- } else if (Object.getOwnPropertyDescriptors) {
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
- } else {
- ownKeys(Object(source)).forEach(function (key) {
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
- });
- }
- }
-
- return target;
- }
-
- function _objectWithoutPropertiesLoose(source, excluded) {
- if (source == null) return {};
- var target = {};
- var sourceKeys = Object.keys(source);
- var key, i;
-
- for (i = 0; i < sourceKeys.length; i++) {
- key = sourceKeys[i];
- if (excluded.indexOf(key) >= 0) continue;
- target[key] = source[key];
- }
-
- return target;
- }
-
- function _objectWithoutProperties(source, excluded) {
- if (source == null) return {};
-
- var target = _objectWithoutPropertiesLoose(source, excluded);
-
- var key, i;
-
- if (Object.getOwnPropertySymbols) {
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
-
- for (i = 0; i < sourceSymbolKeys.length; i++) {
- key = sourceSymbolKeys[i];
- if (excluded.indexOf(key) >= 0) continue;
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
- target[key] = source[key];
- }
- }
-
- return target;
- }
-
- function _slicedToArray(arr, i) {
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
- }
-
- function _toConsumableArray(arr) {
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
- }
-
- function _arrayWithoutHoles(arr) {
- if (Array.isArray(arr)) return _arrayLikeToArray(arr);
- }
-
- function _arrayWithHoles(arr) {
- if (Array.isArray(arr)) return arr;
- }
-
- function _iterableToArray(iter) {
- if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
- }
-
- function _iterableToArrayLimit(arr, i) {
- if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
- var _arr = [];
- var _n = true;
- var _d = false;
- var _e = undefined;
-
- try {
- for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
- _arr.push(_s.value);
-
- if (i && _arr.length === i) break;
- }
- } catch (err) {
- _d = true;
- _e = err;
- } finally {
- try {
- if (!_n && _i["return"] != null) _i["return"]();
- } finally {
- if (_d) throw _e;
- }
- }
-
- return _arr;
- }
-
- function _unsupportedIterableToArray(o, minLen) {
- if (!o) return;
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
- var n = Object.prototype.toString.call(o).slice(8, -1);
- if (n === "Object" && o.constructor) n = o.constructor.name;
- if (n === "Map" || n === "Set") return Array.from(o);
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
- }
-
- function _arrayLikeToArray(arr, len) {
- if (len == null || len > arr.length) len = arr.length;
-
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
-
- return arr2;
- }
-
- function _nonIterableSpread() {
- throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
- }
-
- function _nonIterableRest() {
- throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
- }
-
- function _classCallCheck$1(e, t) {
+ function _classCallCheck(e, t) {
if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function");
}
- function _defineProperties$1(e, t) {
+ function _defineProperties(e, t) {
for (var n = 0; n < t.length; n++) {
var r = t[n];
r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r);
}
}
- function _createClass$1(e, t, n) {
- return t && _defineProperties$1(e.prototype, t), n && _defineProperties$1(e, n), e;
+ function _createClass(e, t, n) {
+ return t && _defineProperties(e.prototype, t), n && _defineProperties(e, n), e;
}
- function _defineProperty$1(e, t, n) {
+ function _defineProperty(e, t, n) {
return t in e ? Object.defineProperty(e, t, {
value: n,
enumerable: !0,
@@ -207,7 +43,7 @@ typeof navigator === "object" && (function (global, factory) {
}) : e[t] = n, e;
}
- function ownKeys$1(e, t) {
+ function ownKeys(e, t) {
var n = Object.keys(e);
if (Object.getOwnPropertySymbols) {
@@ -220,12 +56,12 @@ typeof navigator === "object" && (function (global, factory) {
return n;
}
- function _objectSpread2$1(e) {
+ function _objectSpread2(e) {
for (var t = 1; t < arguments.length; t++) {
var n = null != arguments[t] ? arguments[t] : {};
- t % 2 ? ownKeys$1(Object(n), !0).forEach(function (t) {
- _defineProperty$1(e, t, n[t]);
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : ownKeys$1(Object(n)).forEach(function (t) {
+ t % 2 ? ownKeys(Object(n), !0).forEach(function (t) {
+ _defineProperty(e, t, n[t]);
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : ownKeys(Object(n)).forEach(function (t) {
Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t));
});
}
@@ -233,13 +69,13 @@ typeof navigator === "object" && (function (global, factory) {
return e;
}
- var defaults = {
+ var defaults$1 = {
addCSS: !0,
thumbWidth: 15,
watch: !0
};
- function matches(e, t) {
+ function matches$1(e, t) {
return function () {
return Array.from(document.querySelectorAll(t)).includes(this);
}.call(e, t);
@@ -254,57 +90,57 @@ typeof navigator === "object" && (function (global, factory) {
}
}
- var getConstructor = function getConstructor(e) {
+ var getConstructor$1 = function (e) {
return null != e ? e.constructor : null;
},
- instanceOf = function instanceOf(e, t) {
+ instanceOf$1 = function (e, t) {
return !!(e && t && e instanceof t);
},
- isNullOrUndefined = function isNullOrUndefined(e) {
+ isNullOrUndefined$1 = function (e) {
return null == e;
},
- isObject = function isObject(e) {
- return getConstructor(e) === Object;
+ isObject$1 = function (e) {
+ return getConstructor$1(e) === Object;
},
- isNumber = function isNumber(e) {
- return getConstructor(e) === Number && !Number.isNaN(e);
+ isNumber$1 = function (e) {
+ return getConstructor$1(e) === Number && !Number.isNaN(e);
},
- isString = function isString(e) {
- return getConstructor(e) === String;
+ isString$1 = function (e) {
+ return getConstructor$1(e) === String;
},
- isBoolean = function isBoolean(e) {
- return getConstructor(e) === Boolean;
+ isBoolean$1 = function (e) {
+ return getConstructor$1(e) === Boolean;
},
- isFunction = function isFunction(e) {
- return getConstructor(e) === Function;
+ isFunction$1 = function (e) {
+ return getConstructor$1(e) === Function;
},
- isArray = function isArray(e) {
+ isArray$1 = function (e) {
return Array.isArray(e);
},
- isNodeList = function isNodeList(e) {
- return instanceOf(e, NodeList);
+ isNodeList$1 = function (e) {
+ return instanceOf$1(e, NodeList);
},
- isElement = function isElement(e) {
- return instanceOf(e, Element);
+ isElement$1 = function (e) {
+ return instanceOf$1(e, Element);
},
- isEvent = function isEvent(e) {
- return instanceOf(e, Event);
+ isEvent$1 = function (e) {
+ return instanceOf$1(e, Event);
},
- isEmpty = function isEmpty(e) {
- return isNullOrUndefined(e) || (isString(e) || isArray(e) || isNodeList(e)) && !e.length || isObject(e) && !Object.keys(e).length;
+ isEmpty$1 = function (e) {
+ return isNullOrUndefined$1(e) || (isString$1(e) || isArray$1(e) || isNodeList$1(e)) && !e.length || isObject$1(e) && !Object.keys(e).length;
},
- is = {
- nullOrUndefined: isNullOrUndefined,
- object: isObject,
- number: isNumber,
- string: isString,
- boolean: isBoolean,
- function: isFunction,
- array: isArray,
- nodeList: isNodeList,
- element: isElement,
- event: isEvent,
- empty: isEmpty
+ is$1 = {
+ nullOrUndefined: isNullOrUndefined$1,
+ object: isObject$1,
+ number: isNumber$1,
+ string: isString$1,
+ boolean: isBoolean$1,
+ function: isFunction$1,
+ array: isArray$1,
+ nodeList: isNodeList$1,
+ element: isElement$1,
+ event: isEvent$1,
+ empty: isEmpty$1
};
function getDecimalPlaces(e) {
@@ -323,22 +159,22 @@ typeof navigator === "object" && (function (global, factory) {
var RangeTouch = function () {
function e(t, n) {
- _classCallCheck$1(this, e), is.element(t) ? this.element = t : is.string(t) && (this.element = document.querySelector(t)), is.element(this.element) && is.empty(this.element.rangeTouch) && (this.config = _objectSpread2$1({}, defaults, {}, n), this.init());
+ _classCallCheck(this, e), is$1.element(t) ? this.element = t : is$1.string(t) && (this.element = document.querySelector(t)), is$1.element(this.element) && is$1.empty(this.element.rangeTouch) && (this.config = _objectSpread2({}, defaults$1, {}, n), this.init());
}
- return _createClass$1(e, [{
+ return _createClass(e, [{
key: "init",
- value: function value() {
+ value: function () {
e.enabled && (this.config.addCSS && (this.element.style.userSelect = "none", this.element.style.webKitUserSelect = "none", this.element.style.touchAction = "manipulation"), this.listeners(!0), this.element.rangeTouch = this);
}
}, {
key: "destroy",
- value: function value() {
+ value: function () {
e.enabled && (this.config.addCSS && (this.element.style.userSelect = "", this.element.style.webKitUserSelect = "", this.element.style.touchAction = ""), this.listeners(!1), this.element.rangeTouch = null);
}
}, {
key: "listeners",
- value: function value(e) {
+ value: function (e) {
var t = this,
n = e ? "addEventListener" : "removeEventListener";
["touchstart", "touchmove", "touchend"].forEach(function (e) {
@@ -349,8 +185,8 @@ typeof navigator === "object" && (function (global, factory) {
}
}, {
key: "get",
- value: function value(t) {
- if (!e.enabled || !is.event(t)) return null;
+ value: function (t) {
+ if (!e.enabled || !is$1.event(t)) return null;
var n,
r = t.target,
i = t.changedTouches[0],
@@ -363,23 +199,23 @@ typeof navigator === "object" && (function (global, factory) {
}
}, {
key: "set",
- value: function value(t) {
- e.enabled && is.event(t) && !t.target.disabled && (t.preventDefault(), t.target.value = this.get(t), trigger(t.target, "touchend" === t.type ? "change" : "input"));
+ value: function (t) {
+ e.enabled && is$1.event(t) && !t.target.disabled && (t.preventDefault(), t.target.value = this.get(t), trigger(t.target, "touchend" === t.type ? "change" : "input"));
}
}], [{
key: "setup",
- value: function value(t) {
+ value: function (t) {
var n = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {},
r = null;
- if (is.empty(t) || is.string(t) ? r = Array.from(document.querySelectorAll(is.string(t) ? t : 'input[type="range"]')) : is.element(t) ? r = [t] : is.nodeList(t) ? r = Array.from(t) : is.array(t) && (r = t.filter(is.element)), is.empty(r)) return null;
+ if (is$1.empty(t) || is$1.string(t) ? r = Array.from(document.querySelectorAll(is$1.string(t) ? t : 'input[type="range"]')) : is$1.element(t) ? r = [t] : is$1.nodeList(t) ? r = Array.from(t) : is$1.array(t) && (r = t.filter(is$1.element)), is$1.empty(r)) return null;
- var i = _objectSpread2$1({}, defaults, {}, n);
+ var i = _objectSpread2({}, defaults$1, {}, n);
- if (is.string(t) && i.watch) {
+ if (is$1.string(t) && i.watch) {
var o = new MutationObserver(function (n) {
Array.from(n).forEach(function (n) {
Array.from(n.addedNodes).forEach(function (n) {
- is.element(n) && matches(n, t) && new e(n, i);
+ is$1.element(n) && matches$1(n, t) && new e(n, i);
});
});
});
@@ -395,7 +231,7 @@ typeof navigator === "object" && (function (global, factory) {
}
}, {
key: "enabled",
- get: function get() {
+ get: function () {
return "ontouchstart" in document.documentElement;
}
}]), e;
@@ -404,145 +240,105 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
// Type checking utils
// ==========================================================================
- var getConstructor$1 = function getConstructor(input) {
- return input !== null && typeof input !== 'undefined' ? input.constructor : null;
- };
+ const getConstructor = input => input !== null && typeof input !== 'undefined' ? input.constructor : null;
- var instanceOf$1 = function instanceOf(input, constructor) {
- return Boolean(input && constructor && input instanceof constructor);
- };
+ const instanceOf = (input, constructor) => Boolean(input && constructor && input instanceof constructor);
- var isNullOrUndefined$1 = function isNullOrUndefined(input) {
- return input === null || typeof input === 'undefined';
- };
+ const isNullOrUndefined = input => input === null || typeof input === 'undefined';
- var isObject$1 = function isObject(input) {
- return getConstructor$1(input) === Object;
- };
+ const isObject = input => getConstructor(input) === Object;
- var isNumber$1 = function isNumber(input) {
- return getConstructor$1(input) === Number && !Number.isNaN(input);
- };
+ const isNumber = input => getConstructor(input) === Number && !Number.isNaN(input);
- var isString$1 = function isString(input) {
- return getConstructor$1(input) === String;
- };
+ const isString = input => getConstructor(input) === String;
- var isBoolean$1 = function isBoolean(input) {
- return getConstructor$1(input) === Boolean;
- };
+ const isBoolean = input => getConstructor(input) === Boolean;
- var isFunction$1 = function isFunction(input) {
- return getConstructor$1(input) === Function;
- };
+ const isFunction = input => getConstructor(input) === Function;
- var isArray$1 = function isArray(input) {
- return Array.isArray(input);
- };
+ const isArray = input => Array.isArray(input);
- var isWeakMap = function isWeakMap(input) {
- return instanceOf$1(input, WeakMap);
- };
+ const isWeakMap = input => instanceOf(input, WeakMap);
- var isNodeList$1 = function isNodeList(input) {
- return instanceOf$1(input, NodeList);
- };
+ const isNodeList = input => instanceOf(input, NodeList);
- var isElement$1 = function isElement(input) {
- return instanceOf$1(input, Element);
- };
+ const isTextNode = input => getConstructor(input) === Text;
- var isTextNode = function isTextNode(input) {
- return getConstructor$1(input) === Text;
- };
+ const isEvent = input => instanceOf(input, Event);
- var isEvent$1 = function isEvent(input) {
- return instanceOf$1(input, Event);
- };
+ const isKeyboardEvent = input => instanceOf(input, KeyboardEvent);
- var isKeyboardEvent = function isKeyboardEvent(input) {
- return instanceOf$1(input, KeyboardEvent);
- };
+ const isCue = input => instanceOf(input, window.TextTrackCue) || instanceOf(input, window.VTTCue);
- var isCue = function isCue(input) {
- return instanceOf$1(input, window.TextTrackCue) || instanceOf$1(input, window.VTTCue);
- };
+ const isTrack = input => instanceOf(input, TextTrack) || !isNullOrUndefined(input) && isString(input.kind);
- var isTrack = function isTrack(input) {
- return instanceOf$1(input, TextTrack) || !isNullOrUndefined$1(input) && isString$1(input.kind);
- };
+ const isPromise = input => instanceOf(input, Promise) && isFunction(input.then);
- var isPromise = function isPromise(input) {
- return instanceOf$1(input, Promise) && isFunction$1(input.then);
- };
+ const isElement = input => input !== null && typeof input === 'object' && input.nodeType === 1 && typeof input.style === 'object' && typeof input.ownerDocument === 'object';
- var isEmpty$1 = function isEmpty(input) {
- return isNullOrUndefined$1(input) || (isString$1(input) || isArray$1(input) || isNodeList$1(input)) && !input.length || isObject$1(input) && !Object.keys(input).length;
- };
+ const isEmpty = input => isNullOrUndefined(input) || (isString(input) || isArray(input) || isNodeList(input)) && !input.length || isObject(input) && !Object.keys(input).length;
- var isUrl = function isUrl(input) {
+ const isUrl = input => {
// Accept a URL object
- if (instanceOf$1(input, window.URL)) {
+ if (instanceOf(input, window.URL)) {
return true;
} // Must be string from here
- if (!isString$1(input)) {
+ if (!isString(input)) {
return false;
} // Add the protocol if required
- var string = input;
+ let string = input;
if (!input.startsWith('http://') || !input.startsWith('https://')) {
- string = "http://".concat(input);
+ string = `http://${input}`;
}
try {
- return !isEmpty$1(new URL(string).hostname);
+ return !isEmpty(new URL(string).hostname);
} catch (e) {
return false;
}
};
- var is$1 = {
- nullOrUndefined: isNullOrUndefined$1,
- object: isObject$1,
- number: isNumber$1,
- string: isString$1,
- boolean: isBoolean$1,
- function: isFunction$1,
- array: isArray$1,
+ var is = {
+ nullOrUndefined: isNullOrUndefined,
+ object: isObject,
+ number: isNumber,
+ string: isString,
+ boolean: isBoolean,
+ function: isFunction,
+ array: isArray,
weakMap: isWeakMap,
- nodeList: isNodeList$1,
- element: isElement$1,
+ nodeList: isNodeList,
+ element: isElement,
textNode: isTextNode,
- event: isEvent$1,
+ event: isEvent,
keyboardEvent: isKeyboardEvent,
cue: isCue,
track: isTrack,
promise: isPromise,
url: isUrl,
- empty: isEmpty$1
+ empty: isEmpty
};
// ==========================================================================
- var transitionEndEvent = function () {
- var element = document.createElement('span');
- var events = {
+ const transitionEndEvent = (() => {
+ const element = document.createElement('span');
+ const events = {
WebkitTransition: 'webkitTransitionEnd',
MozTransition: 'transitionend',
OTransition: 'oTransitionEnd otransitionend',
transition: 'transitionend'
};
- var type = Object.keys(events).find(function (event) {
- return element.style[event] !== undefined;
- });
- return is$1.string(type) ? events[type] : false;
- }(); // Force repaint of element
+ const type = Object.keys(events).find(event => element.style[event] !== undefined);
+ return is.string(type) ? events[type] : false;
+ })(); // Force repaint of element
function repaint(element, delay) {
- setTimeout(function () {
+ setTimeout(() => {
try {
// eslint-disable-next-line no-param-reassign
element.hidden = true; // eslint-disable-next-line no-unused-expressions
@@ -559,67 +355,65 @@ typeof navigator === "object" && (function (global, factory) {
// Browser sniffing
// Unfortunately, due to mixed support, UA sniffing is required
// ==========================================================================
- var browser = {
- isIE:
- /* @cc_on!@ */
- !!document.documentMode,
+ const browser = {
+ isIE: Boolean(window.document.documentMode),
isEdge: window.navigator.userAgent.includes('Edge'),
isWebkit: 'WebkitAppearance' in document.documentElement.style && !/Edge/.test(navigator.userAgent),
isIPhone: /(iPhone|iPod)/gi.test(navigator.platform),
- isIos: /(iPad|iPhone|iPod)/gi.test(navigator.platform)
+ isIos: navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 || /(iPad|iPhone|iPod)/gi.test(navigator.platform)
};
+ // ==========================================================================
+
function cloneDeep(object) {
return JSON.parse(JSON.stringify(object));
} // Get a nested value in an object
function getDeep(object, path) {
- return path.split('.').reduce(function (obj, key) {
- return obj && obj[key];
- }, object);
+ return path.split('.').reduce((obj, key) => obj && obj[key], object);
} // Deep extend destination object with N more objects
- function extend() {
- var target = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
-
- for (var _len = arguments.length, sources = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- sources[_key - 1] = arguments[_key];
- }
-
+ function extend(target = {}, ...sources) {
if (!sources.length) {
return target;
}
- var source = sources.shift();
+ const source = sources.shift();
- if (!is$1.object(source)) {
+ if (!is.object(source)) {
return target;
}
- Object.keys(source).forEach(function (key) {
- if (is$1.object(source[key])) {
+ Object.keys(source).forEach(key => {
+ if (is.object(source[key])) {
if (!Object.keys(target).includes(key)) {
- Object.assign(target, _defineProperty({}, key, {}));
+ Object.assign(target, {
+ [key]: {}
+ });
}
extend(target[key], source[key]);
} else {
- Object.assign(target, _defineProperty({}, key, source[key]));
+ Object.assign(target, {
+ [key]: source[key]
+ });
}
});
- return extend.apply(void 0, [target].concat(sources));
+ return extend(target, ...sources);
}
+ // ==========================================================================
+
function wrap(elements, wrapper) {
// Convert `elements` to an array, if necessary.
- var targets = elements.length ? elements : [elements]; // Loops backwards to prevent having to clone the wrapper on the
+ const targets = elements.length ? elements : [elements]; // Loops backwards to prevent having to clone the wrapper on the
// first element (see `child` below).
- Array.from(targets).reverse().forEach(function (element, index) {
- var child = index > 0 ? wrapper.cloneNode(true) : wrapper; // Cache the current parent and sibling.
+ Array.from(targets).reverse().forEach((element, index) => {
+ const child = index > 0 ? wrapper.cloneNode(true) : wrapper; // Cache the current parent and sibling.
- var parent = element.parentNode;
- var sibling = element.nextSibling; // Wrap the element (is automatically removed from its current
+ const parent = element.parentNode;
+ const sibling = element.nextSibling; // Wrap the element (is automatically removed from its current
// parent).
child.appendChild(element); // If the element had a sibling, insert the wrapper before
@@ -635,36 +429,25 @@ typeof navigator === "object" && (function (global, factory) {
} // Set attributes
function setAttributes(element, attributes) {
- if (!is$1.element(element) || is$1.empty(attributes)) {
+ if (!is.element(element) || is.empty(attributes)) {
return;
} // Assume null and undefined attributes should be left out,
// Setting them would otherwise convert them to "null" and "undefined"
- Object.entries(attributes).filter(function (_ref) {
- var _ref2 = _slicedToArray(_ref, 2),
- value = _ref2[1];
-
- return !is$1.nullOrUndefined(value);
- }).forEach(function (_ref3) {
- var _ref4 = _slicedToArray(_ref3, 2),
- key = _ref4[0],
- value = _ref4[1];
-
- return element.setAttribute(key, value);
- });
+ Object.entries(attributes).filter(([, value]) => !is.nullOrUndefined(value)).forEach(([key, value]) => element.setAttribute(key, value));
} // Create a DocumentFragment
function createElement(type, attributes, text) {
// Create a new <element>
- var element = document.createElement(type); // Set all passed attributes
+ const element = document.createElement(type); // Set all passed attributes
- if (is$1.object(attributes)) {
+ if (is.object(attributes)) {
setAttributes(element, attributes);
} // Add text node
- if (is$1.string(text)) {
+ if (is.string(text)) {
element.innerText = text;
} // Return built element
@@ -673,7 +456,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Inaert an element after another
function insertAfter(element, target) {
- if (!is$1.element(element) || !is$1.element(target)) {
+ if (!is.element(element) || !is.element(target)) {
return;
}
@@ -681,7 +464,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Insert a DocumentFragment
function insertElement(type, parent, attributes, text) {
- if (!is$1.element(parent)) {
+ if (!is.element(parent)) {
return;
}
@@ -689,12 +472,12 @@ typeof navigator === "object" && (function (global, factory) {
} // Remove element(s)
function removeElement(element) {
- if (is$1.nodeList(element) || is$1.array(element)) {
+ if (is.nodeList(element) || is.array(element)) {
Array.from(element).forEach(removeElement);
return;
}
- if (!is$1.element(element) || !is$1.element(element.parentNode)) {
+ if (!is.element(element) || !is.element(element.parentNode)) {
return;
}
@@ -702,11 +485,13 @@ typeof navigator === "object" && (function (global, factory) {
} // Remove all child elements
function emptyElement(element) {
- if (!is$1.element(element)) {
+ if (!is.element(element)) {
return;
}
- var length = element.childNodes.length;
+ let {
+ length
+ } = element.childNodes;
while (length > 0) {
element.removeChild(element.lastChild);
@@ -715,7 +500,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Replace element
function replaceElement(newChild, oldChild) {
- if (!is$1.element(oldChild) || !is$1.element(oldChild.parentNode) || !is$1.element(newChild)) {
+ if (!is.element(oldChild) || !is.element(oldChild.parentNode) || !is.element(newChild)) {
return null;
}
@@ -728,32 +513,29 @@ typeof navigator === "object" && (function (global, factory) {
// '.test' to { class: 'test' }
// '#test' to { id: 'test' }
// '[data-test="test"]' to { 'data-test': 'test' }
- if (!is$1.string(sel) || is$1.empty(sel)) {
+ if (!is.string(sel) || is.empty(sel)) {
return {};
}
- var attributes = {};
- var existing = extend({}, existingAttributes);
- sel.split(',').forEach(function (s) {
+ const attributes = {};
+ const existing = extend({}, existingAttributes);
+ sel.split(',').forEach(s => {
// Remove whitespace
- var selector = s.trim();
- var className = selector.replace('.', '');
- var stripped = selector.replace(/[[\]]/g, ''); // Get the parts and value
+ const selector = s.trim();
+ const className = selector.replace('.', '');
+ const stripped = selector.replace(/[[\]]/g, ''); // Get the parts and value
- var parts = stripped.split('=');
+ const parts = stripped.split('=');
+ const [key] = parts;
+ const value = parts.length > 1 ? parts[1].replace(/["']/g, '') : ''; // Get the first character
- var _parts = _slicedToArray(parts, 1),
- key = _parts[0];
-
- var value = parts.length > 1 ? parts[1].replace(/["']/g, '') : ''; // Get the first character
-
- var start = selector.charAt(0);
+ const start = selector.charAt(0);
switch (start) {
case '.':
// Add to existing classname
- if (is$1.string(existing.class)) {
- attributes.class = "".concat(existing.class, " ").concat(className);
+ if (is.string(existing.class)) {
+ attributes.class = `${existing.class} ${className}`;
} else {
attributes.class = className;
}
@@ -775,13 +557,13 @@ typeof navigator === "object" && (function (global, factory) {
} // Toggle hidden
function toggleHidden(element, hidden) {
- if (!is$1.element(element)) {
+ if (!is.element(element)) {
return;
}
- var hide = hidden;
+ let hide = hidden;
- if (!is$1.boolean(hide)) {
+ if (!is.boolean(hide)) {
hide = !element.hidden;
} // eslint-disable-next-line no-param-reassign
@@ -790,14 +572,12 @@ typeof navigator === "object" && (function (global, factory) {
} // Mirror Element.classList.toggle, with IE compatibility for "force" argument
function toggleClass(element, className, force) {
- if (is$1.nodeList(element)) {
- return Array.from(element).map(function (e) {
- return toggleClass(e, className, force);
- });
+ if (is.nodeList(element)) {
+ return Array.from(element).map(e => toggleClass(e, className, force));
}
- if (is$1.element(element)) {
- var method = 'toggle';
+ if (is.element(element)) {
+ let method = 'toggle';
if (typeof force !== 'undefined') {
method = force ? 'add' : 'remove';
@@ -811,37 +591,39 @@ typeof navigator === "object" && (function (global, factory) {
} // Has class name
function hasClass(element, className) {
- return is$1.element(element) && element.classList.contains(className);
+ return is.element(element) && element.classList.contains(className);
} // Element matches selector
- function matches$1(element, selector) {
- var _Element = Element,
- prototype = _Element.prototype;
+ function matches(element, selector) {
+ const {
+ prototype
+ } = Element;
function match() {
return Array.from(document.querySelectorAll(selector)).includes(this);
}
- var method = prototype.matches || prototype.webkitMatchesSelector || prototype.mozMatchesSelector || prototype.msMatchesSelector || match;
+ const method = prototype.matches || prototype.webkitMatchesSelector || prototype.mozMatchesSelector || prototype.msMatchesSelector || match;
return method.call(element, selector);
} // Closest ancestor element matching selector (also tests element itself)
- function closest(element, selector) {
- var _Element2 = Element,
- prototype = _Element2.prototype; // https://developer.mozilla.org/en-US/docs/Web/API/Element/closest#Polyfill
+ function closest$1(element, selector) {
+ const {
+ prototype
+ } = Element; // https://developer.mozilla.org/en-US/docs/Web/API/Element/closest#Polyfill
function closestElement() {
- var el = this;
+ let el = this;
do {
- if (matches$1.matches(el, selector)) return el;
+ if (matches.matches(el, selector)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null && el.nodeType === 1);
return null;
}
- var method = prototype.closest || closestElement;
+ const method = prototype.closest || closestElement;
return method.call(element, selector);
} // Find all elements
@@ -853,11 +635,8 @@ typeof navigator === "object" && (function (global, factory) {
return this.elements.container.querySelector(selector);
} // Set focus and tab focus class
- function setFocus() {
- var element = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
- var tabFocus = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
-
- if (!is$1.element(element)) {
+ function setFocus(element = null, tabFocus = false) {
+ if (!is.element(element)) {
return;
} // Set regular focus
@@ -871,7 +650,9 @@ typeof navigator === "object" && (function (global, factory) {
}
}
- var defaultCodecs = {
+ // ==========================================================================
+
+ const defaultCodecs = {
'audio/ogg': 'vorbis',
'audio/wav': '1',
'video/webm': 'vp8, vorbis',
@@ -879,31 +660,33 @@ typeof navigator === "object" && (function (global, factory) {
'video/ogg': 'theora'
}; // Check for feature support
- var support = {
+ const support = {
// Basic support
audio: 'canPlayType' in document.createElement('audio'),
video: 'canPlayType' in document.createElement('video'),
+
// Check for support
// Basic functionality vs full UI
- check: function check(type, provider, playsinline) {
- var canPlayInline = browser.isIPhone && playsinline && support.playsinline;
- var api = support[type] || provider !== 'html5';
- var ui = api && support.rangeInput && (type !== 'video' || !browser.isIPhone || canPlayInline);
+ check(type, provider, playsinline) {
+ const canPlayInline = browser.isIPhone && playsinline && support.playsinline;
+ const api = support[type] || provider !== 'html5';
+ const ui = api && support.rangeInput && (type !== 'video' || !browser.isIPhone || canPlayInline);
return {
- api: api,
- ui: ui
+ api,
+ ui
};
},
+
// Picture-in-picture support
// Safari & Chrome only currently
- pip: function () {
+ pip: (() => {
if (browser.isIPhone) {
return false;
} // Safari
// https://developer.apple.com/documentation/webkitjs/adding_picture_in_picture_to_your_safari_media_controls
- if (is$1.function(createElement('video').webkitSetPresentationMode)) {
+ if (is.function(createElement('video').webkitSetPresentationMode)) {
return true;
} // Chrome
// https://developers.google.com/web/updates/2018/10/watch-video-using-picture-in-picture
@@ -914,26 +697,24 @@ typeof navigator === "object" && (function (global, factory) {
}
return false;
- }(),
+ })(),
// Airplay support
// Safari only currently
- airplay: is$1.function(window.WebKitPlaybackTargetAvailabilityEvent),
+ airplay: is.function(window.WebKitPlaybackTargetAvailabilityEvent),
// Inline playback support
// https://webkit.org/blog/6784/new-video-policies-for-ios/
playsinline: 'playsInline' in document.createElement('video'),
+
// Check for mime type support against a player instance
// Credits: http://diveintohtml5.info/everything.html
// Related: http://www.leanbackplayer.com/test/h5mt.html
- mime: function mime(input) {
- if (is$1.empty(input)) {
+ mime(input) {
+ if (is.empty(input)) {
return false;
}
- var _input$split = input.split('/'),
- _input$split2 = _slicedToArray(_input$split, 1),
- mediaType = _input$split2[0];
-
- var type = input; // Verify we're using HTML5 and there's no media type mismatch
+ const [mediaType] = input.split('/');
+ let type = input; // Verify we're using HTML5 and there's no media type mismatch
if (!this.isHTML5 || mediaType !== this.type) {
return false;
@@ -941,7 +722,7 @@ typeof navigator === "object" && (function (global, factory) {
if (Object.keys(defaultCodecs).includes(type)) {
- type += "; codecs=\"".concat(defaultCodecs[input], "\"");
+ type += `; codecs="${defaultCodecs[input]}"`;
}
try {
@@ -950,14 +731,15 @@ typeof navigator === "object" && (function (global, factory) {
return false;
}
},
+
// Check for textTracks support
textTracks: 'textTracks' in document.createElement('video'),
// <input type="range"> Sliders
- rangeInput: function () {
- var range = document.createElement('input');
+ rangeInput: (() => {
+ const range = document.createElement('input');
range.type = 'range';
return range.type === 'range';
- }(),
+ })(),
// Touch
// NOTE: Remember a device can be mouse + touch enabled so we check on first touch event
touch: 'ontouchstart' in document.documentElement,
@@ -968,19 +750,21 @@ typeof navigator === "object" && (function (global, factory) {
reducedMotion: 'matchMedia' in window && window.matchMedia('(prefers-reduced-motion)').matches
};
+ // ==========================================================================
// https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md
// https://www.youtube.com/watch?v=NPM6172J22g
- var supportsPassiveListeners = function () {
+ const supportsPassiveListeners = (() => {
// Test via a getter in the options object to see if the passive property is accessed
- var supported = false;
+ let supported = false;
try {
- var options = Object.defineProperty({}, 'passive', {
- get: function get() {
+ const options = Object.defineProperty({}, 'passive', {
+ get() {
supported = true;
return null;
}
+
});
window.addEventListener('test', null, options);
window.removeEventListener('test', null, options);
@@ -988,45 +772,39 @@ typeof navigator === "object" && (function (global, factory) {
}
return supported;
- }(); // Toggle event listener
-
+ })(); // Toggle event listener
- function toggleListener(element, event, callback) {
- var _this = this;
-
- var toggle = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
- var passive = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true;
- var capture = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : false;
+ function toggleListener(element, event, callback, toggle = false, passive = true, capture = false) {
// Bail if no element, event, or callback
- if (!element || !('addEventListener' in element) || is$1.empty(event) || !is$1.function(callback)) {
+ if (!element || !('addEventListener' in element) || is.empty(event) || !is.function(callback)) {
return;
} // Allow multiple events
- var events = event.split(' '); // Build options
+ const events = event.split(' '); // Build options
// Default to just the capture boolean for browsers with no passive listener support
- var options = capture; // If passive events listeners are supported
+ let options = capture; // If passive events listeners are supported
if (supportsPassiveListeners) {
options = {
// Whether the listener can be passive (i.e. default never prevented)
- passive: passive,
+ passive,
// Whether the listener is a capturing listener or not
- capture: capture
+ capture
};
} // If a single node is passed, bind the event listener
- events.forEach(function (type) {
- if (_this && _this.eventListeners && toggle) {
+ events.forEach(type => {
+ if (this && this.eventListeners && toggle) {
// Cache event listener
- _this.eventListeners.push({
- element: element,
- type: type,
- callback: callback,
- options: options
+ this.eventListeners.push({
+ element,
+ type,
+ callback,
+ options
});
}
@@ -1034,59 +812,35 @@ typeof navigator === "object" && (function (global, factory) {
});
} // Bind event handler
- function on(element) {
- var events = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- var callback = arguments.length > 2 ? arguments[2] : undefined;
- var passive = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
- var capture = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
+ function on(element, events = '', callback, passive = true, capture = false) {
toggleListener.call(this, element, events, callback, true, passive, capture);
} // Unbind event handler
- function off(element) {
- var events = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- var callback = arguments.length > 2 ? arguments[2] : undefined;
- var passive = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
- var capture = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
+ function off(element, events = '', callback, passive = true, capture = false) {
toggleListener.call(this, element, events, callback, false, passive, capture);
} // Bind once-only event handler
- function once(element) {
- var _this2 = this;
-
- var events = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- var callback = arguments.length > 2 ? arguments[2] : undefined;
- var passive = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
- var capture = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
-
- var onceCallback = function onceCallback() {
+ function once(element, events = '', callback, passive = true, capture = false) {
+ const onceCallback = (...args) => {
off(element, events, onceCallback, passive, capture);
-
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- callback.apply(_this2, args);
+ callback.apply(this, args);
};
toggleListener.call(this, element, events, onceCallback, true, passive, capture);
} // Trigger event
- function triggerEvent(element) {
- var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- var bubbles = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
- var detail = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
-
+ function triggerEvent(element, type = '', bubbles = false, detail = {}) {
// Bail if no element
- if (!is$1.element(element) || is$1.empty(type)) {
+ if (!is.element(element) || is.empty(type)) {
return;
} // Create and dispatch the event
- var event = new CustomEvent(type, {
- bubbles: bubbles,
- detail: _objectSpread2(_objectSpread2({}, detail), {}, {
+ const event = new CustomEvent(type, {
+ bubbles,
+ detail: { ...detail,
plyr: this
- })
+ }
}); // Dispatch the event
element.dispatchEvent(event);
@@ -1094,11 +848,13 @@ typeof navigator === "object" && (function (global, factory) {
function unbindListeners() {
if (this && this.eventListeners) {
- this.eventListeners.forEach(function (item) {
- var element = item.element,
- type = item.type,
- callback = item.callback,
- options = item.options;
+ this.eventListeners.forEach(item => {
+ const {
+ element,
+ type,
+ callback,
+ options
+ } = item;
element.removeEventListener(type, callback, options);
});
this.eventListeners = [];
@@ -1106,11 +862,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Run method when / if player is ready
function ready() {
- var _this3 = this;
-
- return new Promise(function (resolve) {
- return _this3.ready ? setTimeout(resolve, 0) : on.call(_this3, _this3.elements.container, 'ready', resolve);
- }).then(function () {});
+ return new Promise(resolve => this.ready ? setTimeout(resolve, 0) : on.call(this, this.elements.container, 'ready', resolve)).then(() => {});
}
/**
@@ -1121,61 +873,92 @@ typeof navigator === "object" && (function (global, factory) {
*/
function silencePromise(value) {
- if (is$1.promise(value)) {
- value.then(null, function () {});
+ if (is.promise(value)) {
+ value.then(null, () => {});
}
}
- function validateRatio(input) {
- if (!is$1.array(input) && (!is$1.string(input) || !input.includes(':'))) {
- return false;
+ // ==========================================================================
+
+ function dedupe(array) {
+ if (!is.array(array)) {
+ return array;
+ }
+
+ return array.filter((item, index) => array.indexOf(item) === index);
+ } // Get the closest value in an array
+
+ function closest(array, value) {
+ if (!is.array(array) || !array.length) {
+ return null;
}
- var ratio = is$1.array(input) ? input : input.split(':');
- return ratio.map(Number).every(is$1.number);
+ return array.reduce((prev, curr) => Math.abs(curr - value) < Math.abs(prev - value) ? curr : prev);
}
+
+ // ==========================================================================
+
+ function supportsCSS(declaration) {
+ if (!window || !window.CSS) {
+ return false;
+ }
+
+ return window.CSS.supports(declaration);
+ } // Standard/common aspect ratios
+
+ const standardRatios = [[1, 1], [4, 3], [3, 4], [5, 4], [4, 5], [3, 2], [2, 3], [16, 10], [10, 16], [16, 9], [9, 16], [21, 9], [9, 21], [32, 9], [9, 32]].reduce((out, [x, y]) => ({ ...out,
+ [x / y]: [x, y]
+ }), {}); // Validate an aspect ratio
+
+ function validateAspectRatio(input) {
+ if (!is.array(input) && (!is.string(input) || !input.includes(':'))) {
+ return false;
+ }
+
+ const ratio = is.array(input) ? input : input.split(':');
+ return ratio.map(Number).every(is.number);
+ } // Reduce an aspect ratio to it's lowest form
+
function reduceAspectRatio(ratio) {
- if (!is$1.array(ratio) || !ratio.every(is$1.number)) {
+ if (!is.array(ratio) || !ratio.every(is.number)) {
return null;
}
- var _ratio = _slicedToArray(ratio, 2),
- width = _ratio[0],
- height = _ratio[1];
+ const [width, height] = ratio;
- var getDivider = function getDivider(w, h) {
- return h === 0 ? w : getDivider(h, w % h);
- };
+ const getDivider = (w, h) => h === 0 ? w : getDivider(h, w % h);
- var divider = getDivider(width, height);
+ const divider = getDivider(width, height);
return [width / divider, height / divider];
- }
+ } // Calculate an aspect ratio
+
function getAspectRatio(input) {
- var parse = function parse(ratio) {
- return validateRatio(ratio) ? ratio.split(':').map(Number) : null;
- }; // Try provided ratio
+ const parse = ratio => validateAspectRatio(ratio) ? ratio.split(':').map(Number) : null; // Try provided ratio
- var ratio = parse(input); // Get from config
+ let ratio = parse(input); // Get from config
if (ratio === null) {
ratio = parse(this.config.ratio);
} // Get from embed
- if (ratio === null && !is$1.empty(this.embed) && is$1.array(this.embed.ratio)) {
- ratio = this.embed.ratio;
+ if (ratio === null && !is.empty(this.embed) && is.array(this.embed.ratio)) {
+ ({
+ ratio
+ } = this.embed);
} // Get from HTML5 video
if (ratio === null && this.isHTML5) {
- var _this$media = this.media,
- videoWidth = _this$media.videoWidth,
- videoHeight = _this$media.videoHeight;
- ratio = reduceAspectRatio([videoWidth, videoHeight]);
+ const {
+ videoWidth,
+ videoHeight
+ } = this.media;
+ ratio = [videoWidth, videoHeight];
}
- return ratio;
+ return reduceAspectRatio(ratio);
} // Set aspect ratio for responsive container
function setAspectRatio(input) {
@@ -1183,121 +966,150 @@ typeof navigator === "object" && (function (global, factory) {
return {};
}
- var wrapper = this.elements.wrapper;
- var ratio = getAspectRatio.call(this, input);
+ const {
+ wrapper
+ } = this.elements;
+ const ratio = getAspectRatio.call(this, input);
+
+ if (!is.array(ratio)) {
+ return {};
+ }
+
+ const [x, y] = reduceAspectRatio(ratio);
+ const useNative = supportsCSS(`aspect-ratio: ${x}/${y}`);
+ const padding = 100 / x * y;
- var _ref = is$1.array(ratio) ? ratio : [0, 0],
- _ref2 = _slicedToArray(_ref, 2),
- w = _ref2[0],
- h = _ref2[1];
+ if (useNative) {
+ wrapper.style.aspectRatio = `${x}/${y}`;
+ } else {
+ wrapper.style.paddingBottom = `${padding}%`;
+ } // For Vimeo we have an extra <div> to hide the standard controls and UI
- var padding = 100 / w * h;
- wrapper.style.paddingBottom = "".concat(padding, "%"); // For Vimeo we have an extra <div> to hide the standard controls and UI
if (this.isVimeo && !this.config.vimeo.premium && this.supported.ui) {
- var height = 100 / this.media.offsetWidth * parseInt(window.getComputedStyle(this.media).paddingBottom, 10);
- var offset = (height - padding) / (height / 50);
- this.media.style.transform = "translateY(-".concat(offset, "%)");
+ const height = 100 / this.media.offsetWidth * parseInt(window.getComputedStyle(this.media).paddingBottom, 10);
+ const offset = (height - padding) / (height / 50);
+
+ if (this.fullscreen.active) {
+ wrapper.style.paddingBottom = null;
+ } else {
+ this.media.style.transform = `translateY(-${offset}%)`;
+ }
} else if (this.isHTML5) {
- wrapper.classList.toggle(this.config.classNames.videoFixedRatio, ratio !== null);
+ wrapper.classList.add(this.config.classNames.videoFixedRatio);
}
return {
- padding: padding,
- ratio: ratio
+ padding,
+ ratio
};
+ } // Round an aspect ratio to closest standard ratio
+
+ function roundAspectRatio(x, y, tolerance = 0.05) {
+ const ratio = x / y;
+ const closestRatio = closest(Object.keys(standardRatios), ratio); // Check match is within tolerance
+
+ if (Math.abs(closestRatio - ratio) <= tolerance) {
+ return standardRatios[closestRatio];
+ } // No match
+
+
+ return [x, y];
+ } // Get the size of the viewport
+ // https://stackoverflow.com/questions/1248081/how-to-get-the-browser-viewport-dimensions
+
+ function getViewportSize() {
+ const width = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0);
+ const height = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0);
+ return [width, height];
}
// ==========================================================================
- var html5 = {
- getSources: function getSources() {
- var _this = this;
-
+ const html5 = {
+ getSources() {
if (!this.isHTML5) {
return [];
}
- var sources = Array.from(this.media.querySelectorAll('source')); // Filter out unsupported sources (if type is specified)
+ const sources = Array.from(this.media.querySelectorAll('source')); // Filter out unsupported sources (if type is specified)
- return sources.filter(function (source) {
- var type = source.getAttribute('type');
+ return sources.filter(source => {
+ const type = source.getAttribute('type');
- if (is$1.empty(type)) {
+ if (is.empty(type)) {
return true;
}
- return support.mime.call(_this, type);
+ return support.mime.call(this, type);
});
},
+
// Get quality levels
- getQualityOptions: function getQualityOptions() {
+ getQualityOptions() {
// Whether we're forcing all options (e.g. for streaming)
if (this.config.quality.forced) {
return this.config.quality.options;
} // Get sizes from <source> elements
- return html5.getSources.call(this).map(function (source) {
- return Number(source.getAttribute('data-res'));
- }).filter(Boolean);
+ return html5.getSources.call(this).map(source => Number(source.getAttribute('data-res'))).filter(Boolean);
},
- setup: function setup() {
+
+ setup() {
if (!this.isHTML5) {
return;
}
- var player = this; // Set speed options from config
+ const player = this; // Set speed options from config
player.options.speed = player.config.speed.options; // Set aspect ratio if fixed
- if (!is$1.empty(this.config.ratio)) {
+ if (!is.empty(this.config.ratio)) {
setAspectRatio.call(player);
} // Quality
Object.defineProperty(player.media, 'quality', {
- get: function get() {
+ get() {
// Get sources
- var sources = html5.getSources.call(player);
- var source = sources.find(function (s) {
- return s.getAttribute('src') === player.source;
- }); // Return size, if match is found
+ const sources = html5.getSources.call(player);
+ const source = sources.find(s => s.getAttribute('src') === player.source); // Return size, if match is found
return source && Number(source.getAttribute('data-res'));
},
- set: function set(input) {
+
+ set(input) {
if (player.quality === input) {
return;
} // If we're using an an external handler...
- if (player.config.quality.forced && is$1.function(player.config.quality.onChange)) {
+ if (player.config.quality.forced && is.function(player.config.quality.onChange)) {
player.config.quality.onChange(input);
} else {
// Get sources
- var sources = html5.getSources.call(player); // Get first match for requested size
+ const sources = html5.getSources.call(player); // Get first match for requested size
- var source = sources.find(function (s) {
- return Number(s.getAttribute('data-res')) === input;
- }); // No matching source found
+ const source = sources.find(s => Number(s.getAttribute('data-res')) === input); // No matching source found
if (!source) {
return;
} // Get current state
- var _player$media = player.media,
- currentTime = _player$media.currentTime,
- paused = _player$media.paused,
- preload = _player$media.preload,
- readyState = _player$media.readyState,
- playbackRate = _player$media.playbackRate; // Set new source
+ const {
+ currentTime,
+ paused,
+ preload,
+ readyState,
+ playbackRate
+ } = player.media; // Set new source
player.media.src = source.getAttribute('src'); // Prevent loading if preload="none" and the current source isn't loaded (#1044)
if (preload !== 'none' || readyState) {
// Restore time
- player.once('loadedmetadata', function () {
+ player.once('loadedmetadata', () => {
player.speed = playbackRate;
player.currentTime = currentTime; // Resume playing
@@ -1315,11 +1127,13 @@ typeof navigator === "object" && (function (global, factory) {
quality: input
});
}
+
});
},
+
// Cancel current network requests
// See https://github.com/sampotts/plyr/issues/174
- cancelRequests: function cancelRequests() {
+ cancelRequests() {
if (!this.isHTML5) {
return;
} // Remove child sources
@@ -1337,48 +1151,21 @@ typeof navigator === "object" && (function (global, factory) {
this.debug.log('Cancelled network requests');
}
- };
-
- // ==========================================================================
-
- function dedupe(array) {
- if (!is$1.array(array)) {
- return array;
- }
-
- return array.filter(function (item, index) {
- return array.indexOf(item) === index;
- });
- } // Get the closest value in an array
-
- function closest$1(array, value) {
- if (!is$1.array(array) || !array.length) {
- return null;
- }
- return array.reduce(function (prev, curr) {
- return Math.abs(curr - value) < Math.abs(prev - value) ? curr : prev;
- });
- }
+ };
// ==========================================================================
function generateId(prefix) {
- return "".concat(prefix, "-").concat(Math.floor(Math.random() * 10000));
+ return `${prefix}-${Math.floor(Math.random() * 10000)}`;
} // Format string
- function format(input) {
- for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
-
- if (is$1.empty(input)) {
+ function format(input, ...args) {
+ if (is.empty(input)) {
return input;
}
- return input.toString().replace(/{(\d+)}/g, function (match, i) {
- return args[i].toString();
- });
+ return input.toString().replace(/{(\d+)}/g, (match, i) => args[i].toString());
} // Get percentage
function getPercentage(current, max) {
@@ -1389,23 +1176,12 @@ typeof navigator === "object" && (function (global, factory) {
return (current / max * 100).toFixed(2);
} // Replace all occurances of a string in a string
- var replaceAll = function replaceAll() {
- var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- var find = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- var replace = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
- return input.replace(new RegExp(find.toString().replace(/([.*+?^=!:${}()|[\]/\\])/g, '\\$1'), 'g'), replace.toString());
- }; // Convert to title case
-
- var toTitleCase = function toTitleCase() {
- var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- return input.toString().replace(/\w\S*/g, function (text) {
- return text.charAt(0).toUpperCase() + text.substr(1).toLowerCase();
- });
- }; // Convert string to pascalCase
+ const replaceAll = (input = '', find = '', replace = '') => input.replace(new RegExp(find.toString().replace(/([.*+?^=!:${}()|[\]/\\])/g, '\\$1'), 'g'), replace.toString()); // Convert to title case
- function toPascalCase() {
- var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- var string = input.toString(); // Convert kebab case
+ const toTitleCase = (input = '') => input.toString().replace(/\w\S*/g, text => text.charAt(0).toUpperCase() + text.substr(1).toLowerCase()); // Convert string to pascalCase
+
+ function toPascalCase(input = '') {
+ let string = input.toString(); // Convert kebab case
string = replaceAll(string, '-', ' '); // Convert snake case
@@ -1416,9 +1192,8 @@ typeof navigator === "object" && (function (global, factory) {
return replaceAll(string, ' ', '');
} // Convert string to pascalCase
- function toCamelCase() {
- var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- var string = input.toString(); // Convert to pascal case
+ function toCamelCase(input = '') {
+ let string = input.toString(); // Convert to pascal case
string = toPascalCase(string); // Convert first character to lowercase
@@ -1426,38 +1201,37 @@ typeof navigator === "object" && (function (global, factory) {
} // Remove HTML from a string
function stripHTML(source) {
- var fragment = document.createDocumentFragment();
- var element = document.createElement('div');
+ const fragment = document.createDocumentFragment();
+ const element = document.createElement('div');
fragment.appendChild(element);
element.innerHTML = source;
return fragment.firstChild.innerText;
} // Like outerHTML, but also works for DocumentFragment
function getHTML(element) {
- var wrapper = document.createElement('div');
+ const wrapper = document.createElement('div');
wrapper.appendChild(element);
return wrapper.innerHTML;
}
- var resources = {
+ // ==========================================================================
+
+ const resources = {
pip: 'PIP',
airplay: 'AirPlay',
html5: 'HTML5',
vimeo: 'Vimeo',
youtube: 'YouTube'
};
- var i18n = {
- get: function get() {
- var key = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
-
- if (is$1.empty(key) || is$1.empty(config)) {
+ const i18n = {
+ get(key = '', config = {}) {
+ if (is.empty(key) || is.empty(config)) {
return '';
}
- var string = getDeep(config.i18n, key);
+ let string = getDeep(config.i18n, key);
- if (is$1.empty(string)) {
+ if (is.empty(string)) {
if (Object.keys(resources).includes(key)) {
return resources[key];
}
@@ -1465,63 +1239,50 @@ typeof navigator === "object" && (function (global, factory) {
return '';
}
- var replace = {
+ const replace = {
'{seektime}': config.seekTime,
'{title}': config.title
};
- Object.entries(replace).forEach(function (_ref) {
- var _ref2 = _slicedToArray(_ref, 2),
- k = _ref2[0],
- v = _ref2[1];
-
+ Object.entries(replace).forEach(([k, v]) => {
string = replaceAll(string, k, v);
});
return string;
}
- };
-
- var Storage = /*#__PURE__*/function () {
- function Storage(player) {
- _classCallCheck(this, Storage);
-
- this.enabled = player.config.storage.enabled;
- this.key = player.config.storage.key;
- } // Check for actual support (see if we can use it)
+ };
- _createClass(Storage, [{
- key: "get",
- value: function get(key) {
+ class Storage {
+ constructor(player) {
+ _defineProperty$1(this, "get", key => {
if (!Storage.supported || !this.enabled) {
return null;
}
- var store = window.localStorage.getItem(this.key);
+ const store = window.localStorage.getItem(this.key);
- if (is$1.empty(store)) {
+ if (is.empty(store)) {
return null;
}
- var json = JSON.parse(store);
- return is$1.string(key) && key.length ? json[key] : json;
- }
- }, {
- key: "set",
- value: function set(object) {
+ const json = JSON.parse(store);
+ return is.string(key) && key.length ? json[key] : json;
+ });
+
+ _defineProperty$1(this, "set", object => {
// Bail if we don't have localStorage support or it's disabled
if (!Storage.supported || !this.enabled) {
return;
} // Can only store objectst
- if (!is$1.object(object)) {
+ if (!is.object(object)) {
return;
} // Get current storage
- var storage = this.get(); // Default to empty object
+ let storage = this.get(); // Default to empty object
- if (is$1.empty(storage)) {
+ if (is.empty(storage)) {
storage = {};
} // Update the working copy of the values
@@ -1529,45 +1290,46 @@ typeof navigator === "object" && (function (global, factory) {
extend(storage, object); // Update storage
window.localStorage.setItem(this.key, JSON.stringify(storage));
- }
- }], [{
- key: "supported",
- get: function get() {
- try {
- if (!('localStorage' in window)) {
- return false;
- }
+ });
- var test = '___test'; // Try to use it (it might be disabled, e.g. user is in private mode)
- // see: https://github.com/sampotts/plyr/issues/131
+ this.enabled = player.config.storage.enabled;
+ this.key = player.config.storage.key;
+ } // Check for actual support (see if we can use it)
- window.localStorage.setItem(test, test);
- window.localStorage.removeItem(test);
- return true;
- } catch (e) {
+
+ static get supported() {
+ try {
+ if (!('localStorage' in window)) {
return false;
}
+
+ const test = '___test'; // Try to use it (it might be disabled, e.g. user is in private mode)
+ // see: https://github.com/sampotts/plyr/issues/131
+
+ window.localStorage.setItem(test, test);
+ window.localStorage.removeItem(test);
+ return true;
+ } catch (e) {
+ return false;
}
- }]);
+ }
- return Storage;
- }();
+ }
// ==========================================================================
// Fetch wrapper
// Using XHR to avoid issues with older browsers
// ==========================================================================
- function fetch(url) {
- var responseType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'text';
- return new Promise(function (resolve, reject) {
+ function fetch(url, responseType = 'text') {
+ return new Promise((resolve, reject) => {
try {
- var request = new XMLHttpRequest(); // Check for CORS support
+ const request = new XMLHttpRequest(); // Check for CORS support
if (!('withCredentials' in request)) {
return;
}
- request.addEventListener('load', function () {
+ request.addEventListener('load', () => {
if (responseType === 'text') {
try {
resolve(JSON.parse(request.responseText));
@@ -1578,7 +1340,7 @@ typeof navigator === "object" && (function (global, factory) {
resolve(request.response);
}
});
- request.addEventListener('error', function () {
+ request.addEventListener('error', () => {
throw new Error(request.status);
});
request.open('GET', url, true); // Set the required response type
@@ -1594,19 +1356,17 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
function loadSprite(url, id) {
- if (!is$1.string(url)) {
+ if (!is.string(url)) {
return;
}
- var prefix = 'cache';
- var hasId = is$1.string(id);
- var isCached = false;
+ const prefix = 'cache';
+ const hasId = is.string(id);
+ let isCached = false;
- var exists = function exists() {
- return document.getElementById(id) !== null;
- };
+ const exists = () => document.getElementById(id) !== null;
- var update = function update(container, data) {
+ const update = (container, data) => {
// eslint-disable-next-line no-param-reassign
container.innerHTML = data; // Check again incase of race condition
@@ -1620,9 +1380,9 @@ typeof navigator === "object" && (function (global, factory) {
if (!hasId || !exists()) {
- var useStorage = Storage.supported; // Create container
+ const useStorage = Storage.supported; // Create container
- var container = document.createElement('div');
+ const container = document.createElement('div');
container.setAttribute('hidden', '');
if (hasId) {
@@ -1631,86 +1391,77 @@ typeof navigator === "object" && (function (global, factory) {
if (useStorage) {
- var cached = window.localStorage.getItem("".concat(prefix, "-").concat(id));
+ const cached = window.localStorage.getItem(`${prefix}-${id}`);
isCached = cached !== null;
if (isCached) {
- var data = JSON.parse(cached);
+ const data = JSON.parse(cached);
update(container, data.content);
}
} // Get the sprite
- fetch(url).then(function (result) {
- if (is$1.empty(result)) {
+ fetch(url).then(result => {
+ if (is.empty(result)) {
return;
}
if (useStorage) {
- window.localStorage.setItem("".concat(prefix, "-").concat(id), JSON.stringify({
+ window.localStorage.setItem(`${prefix}-${id}`, JSON.stringify({
content: result
}));
}
update(container, result);
- }).catch(function () {});
+ }).catch(() => {});
}
}
// ==========================================================================
- var getHours = function getHours(value) {
- return Math.trunc(value / 60 / 60 % 60, 10);
- };
- var getMinutes = function getMinutes(value) {
- return Math.trunc(value / 60 % 60, 10);
- };
- var getSeconds = function getSeconds(value) {
- return Math.trunc(value % 60, 10);
- }; // Format time to UI friendly string
-
- function formatTime() {
- var time = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var displayHours = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- var inverted = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+ const getHours = value => Math.trunc(value / 60 / 60 % 60, 10);
+ const getMinutes = value => Math.trunc(value / 60 % 60, 10);
+ const getSeconds = value => Math.trunc(value % 60, 10); // Format time to UI friendly string
+ function formatTime(time = 0, displayHours = false, inverted = false) {
// Bail if the value isn't a number
- if (!is$1.number(time)) {
+ if (!is.number(time)) {
return formatTime(undefined, displayHours, inverted);
} // Format time component to add leading zero
- var format = function format(value) {
- return "0".concat(value).slice(-2);
- }; // Breakdown to hours, mins, secs
+ const format = value => `0${value}`.slice(-2); // Breakdown to hours, mins, secs
- var hours = getHours(time);
- var mins = getMinutes(time);
- var secs = getSeconds(time); // Do we need to display hours?
+ let hours = getHours(time);
+ const mins = getMinutes(time);
+ const secs = getSeconds(time); // Do we need to display hours?
if (displayHours || hours > 0) {
- hours = "".concat(hours, ":");
+ hours = `${hours}:`;
} else {
hours = '';
} // Render
- return "".concat(inverted && time > 0 ? '-' : '').concat(hours).concat(format(mins), ":").concat(format(secs));
+ return `${inverted && time > 0 ? '-' : ''}${hours}${format(mins)}:${format(secs)}`;
}
- var controls = {
+ // ==========================================================================
+
+ const controls = {
// Get icon URL
- getIconUrl: function getIconUrl() {
- var url = new URL(this.config.iconUrl, window.location);
- var cors = url.host !== window.location.host || browser.isIE && !window.svg4everybody;
+ getIconUrl() {
+ const url = new URL(this.config.iconUrl, window.location);
+ const cors = url.host !== window.location.host || browser.isIE && !window.svg4everybody;
return {
url: this.config.iconUrl,
- cors: cors
+ cors
};
},
+
// Find the UI controls
- findElements: function findElements() {
+ findElements() {
try {
this.elements.controls = getElement.call(this, this.config.selectors.controls.wrapper); // Buttons
@@ -1741,8 +1492,8 @@ typeof navigator === "object" && (function (global, factory) {
duration: getElement.call(this, this.config.selectors.display.duration)
}; // Seek tooltip
- if (is$1.element(this.elements.progress)) {
- this.elements.display.seekTooltip = this.elements.progress.querySelector(".".concat(this.config.classNames.tooltip));
+ if (is.element(this.elements.progress)) {
+ this.elements.display.seekTooltip = this.elements.progress.querySelector(`.${this.config.classNames.tooltip}`);
}
return true;
@@ -1754,20 +1505,21 @@ typeof navigator === "object" && (function (global, factory) {
return false;
}
},
+
// Create <svg> icon
- createIcon: function createIcon(type, attributes) {
- var namespace = 'http://www.w3.org/2000/svg';
- var iconUrl = controls.getIconUrl.call(this);
- var iconPath = "".concat(!iconUrl.cors ? iconUrl.url : '', "#").concat(this.config.iconPrefix); // Create <svg>
+ createIcon(type, attributes) {
+ const namespace = 'http://www.w3.org/2000/svg';
+ const iconUrl = controls.getIconUrl.call(this);
+ const iconPath = `${!iconUrl.cors ? iconUrl.url : ''}#${this.config.iconPrefix}`; // Create <svg>
- var icon = document.createElementNS(namespace, 'svg');
+ const icon = document.createElementNS(namespace, 'svg');
setAttributes(icon, extend(attributes, {
'aria-hidden': 'true',
focusable: 'false'
})); // Create the <use> to reference sprite
- var use = document.createElementNS(namespace, 'use');
- var path = "".concat(iconPath, "-").concat(type); // Set `href` attributes
+ const use = document.createElementNS(namespace, 'use');
+ const path = `${iconPath}-${type}`; // Set `href` attributes
// https://github.com/sampotts/plyr/issues/460
// https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/xlink:href
@@ -1781,24 +1533,23 @@ typeof navigator === "object" && (function (global, factory) {
icon.appendChild(use);
return icon;
},
- // Create hidden text label
- createLabel: function createLabel(key) {
- var attr = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- var text = i18n.get(key, this.config);
- var attributes = _objectSpread2(_objectSpread2({}, attr), {}, {
+ // Create hidden text label
+ createLabel(key, attr = {}) {
+ const text = i18n.get(key, this.config);
+ const attributes = { ...attr,
class: [attr.class, this.config.classNames.hidden].filter(Boolean).join(' ')
- });
-
+ };
return createElement('span', attributes, text);
},
+
// Create a badge
- createBadge: function createBadge(text) {
- if (is$1.empty(text)) {
+ createBadge(text) {
+ if (is.empty(text)) {
return null;
}
- var badge = createElement('span', {
+ const badge = createElement('span', {
class: this.config.classNames.menu.value
});
badge.appendChild(createElement('span', {
@@ -1806,13 +1557,12 @@ typeof navigator === "object" && (function (global, factory) {
}, text));
return badge;
},
- // Create a <button>
- createButton: function createButton(buttonType, attr) {
- var _this = this;
- var attributes = extend({}, attr);
- var type = toCamelCase(buttonType);
- var props = {
+ // Create a <button>
+ createButton(buttonType, attr) {
+ const attributes = extend({}, attr);
+ let type = toCamelCase(buttonType);
+ const props = {
element: 'button',
toggle: false,
label: null,
@@ -1820,7 +1570,7 @@ typeof navigator === "object" && (function (global, factory) {
labelPressed: null,
iconPressed: null
};
- ['element', 'icon', 'label'].forEach(function (key) {
+ ['element', 'icon', 'label'].forEach(key => {
if (Object.keys(attributes).includes(key)) {
props[key] = attributes[key];
delete attributes[key];
@@ -1833,11 +1583,9 @@ typeof navigator === "object" && (function (global, factory) {
if (Object.keys(attributes).includes('class')) {
- if (!attributes.class.split(' ').some(function (c) {
- return c === _this.config.classNames.control;
- })) {
+ if (!attributes.class.split(' ').some(c => c === this.config.classNames.control)) {
extend(attributes, {
- class: "".concat(attributes.class, " ").concat(this.config.classNames.control)
+ class: `${attributes.class} ${this.config.classNames.control}`
});
}
} else {
@@ -1879,24 +1627,24 @@ typeof navigator === "object" && (function (global, factory) {
break;
case 'play-large':
- attributes.class += " ".concat(this.config.classNames.control, "--overlaid");
+ attributes.class += ` ${this.config.classNames.control}--overlaid`;
type = 'play';
props.label = 'play';
props.icon = 'play';
break;
default:
- if (is$1.empty(props.label)) {
+ if (is.empty(props.label)) {
props.label = type;
}
- if (is$1.empty(props.icon)) {
+ if (is.empty(props.icon)) {
props.icon = buttonType;
}
}
- var button = createElement(props.element); // Setup toggle icon and labels
+ const button = createElement(props.element); // Setup toggle icon and labels
if (props.toggle) {
// Icon
@@ -1923,7 +1671,7 @@ typeof navigator === "object" && (function (global, factory) {
setAttributes(button, attributes); // We have multiple play buttons
if (type === 'play') {
- if (!is$1.array(this.elements.buttons[type])) {
+ if (!is.array(this.elements.buttons[type])) {
this.elements.buttons[type] = [];
}
@@ -1934,10 +1682,11 @@ typeof navigator === "object" && (function (global, factory) {
return button;
},
+
// Create an <input type='range'>
- createRange: function createRange(type, attributes) {
+ createRange(type, attributes) {
// Seek input
- var input = createElement('input', extend(getAttributesFromSelector(this.config.selectors.inputs[type]), {
+ const input = createElement('input', extend(getAttributesFromSelector(this.config.selectors.inputs[type]), {
type: 'range',
min: 0,
max: 100,
@@ -1958,9 +1707,10 @@ typeof navigator === "object" && (function (global, factory) {
RangeTouch.setup(input);
return input;
},
+
// Create a <progress>
- createProgress: function createProgress(type, attributes) {
- var progress = createElement('progress', extend(getAttributesFromSelector(this.config.selectors.display[type]), {
+ createProgress(type, attributes) {
+ const progress = createElement('progress', extend(getAttributesFromSelector(this.config.selectors.display[type]), {
min: 0,
max: 100,
value: 0,
@@ -1970,36 +1720,36 @@ typeof navigator === "object" && (function (global, factory) {
if (type !== 'volume') {
progress.appendChild(createElement('span', null, '0'));
- var suffixKey = {
+ const suffixKey = {
played: 'played',
buffer: 'buffered'
}[type];
- var suffix = suffixKey ? i18n.get(suffixKey, this.config) : '';
- progress.innerText = "% ".concat(suffix.toLowerCase());
+ const suffix = suffixKey ? i18n.get(suffixKey, this.config) : '';
+ progress.innerText = `% ${suffix.toLowerCase()}`;
}
this.elements.display[type] = progress;
return progress;
},
+
// Create time display
- createTime: function createTime(type, attrs) {
- var attributes = getAttributesFromSelector(this.config.selectors.display[type], attrs);
- var container = createElement('div', extend(attributes, {
- class: "".concat(attributes.class ? attributes.class : '', " ").concat(this.config.classNames.display.time, " ").trim(),
+ createTime(type, attrs) {
+ const attributes = getAttributesFromSelector(this.config.selectors.display[type], attrs);
+ const container = createElement('div', extend(attributes, {
+ class: `${attributes.class ? attributes.class : ''} ${this.config.classNames.display.time} `.trim(),
'aria-label': i18n.get(type, this.config)
}), '00:00'); // Reference for updates
this.elements.display[type] = container;
return container;
},
+
// Bind keyboard shortcuts for a menu item
// We have to bind to keyup otherwise Firefox triggers a click when a keydown event handler shifts focus
// https://bugzilla.mozilla.org/show_bug.cgi?id=1220143
- bindMenuItemShortcuts: function bindMenuItemShortcuts(menuItem, type) {
- var _this2 = this;
-
+ bindMenuItemShortcuts(menuItem, type) {
// Navigate through menus via arrow keys and space
- on.call(this, menuItem, 'keydown keyup', function (event) {
+ on.call(this, menuItem, 'keydown keyup', event => {
// We only care about space and ⬆️ ⬇️️ ➡️
if (![32, 38, 39, 40].includes(event.which)) {
return;
@@ -2013,67 +1763,65 @@ typeof navigator === "object" && (function (global, factory) {
return;
}
- var isRadioButton = matches$1(menuItem, '[role="menuitemradio"]'); // Show the respective menu
+ const isRadioButton = matches(menuItem, '[role="menuitemradio"]'); // Show the respective menu
if (!isRadioButton && [32, 39].includes(event.which)) {
- controls.showMenuPanel.call(_this2, type, true);
+ controls.showMenuPanel.call(this, type, true);
} else {
- var target;
+ let target;
if (event.which !== 32) {
if (event.which === 40 || isRadioButton && event.which === 39) {
target = menuItem.nextElementSibling;
- if (!is$1.element(target)) {
+ if (!is.element(target)) {
target = menuItem.parentNode.firstElementChild;
}
} else {
target = menuItem.previousElementSibling;
- if (!is$1.element(target)) {
+ if (!is.element(target)) {
target = menuItem.parentNode.lastElementChild;
}
}
- setFocus.call(_this2, target, true);
+ setFocus.call(this, target, true);
}
}
}, false); // Enter will fire a `click` event but we still need to manage focus
// So we bind to keyup which fires after and set focus here
- on.call(this, menuItem, 'keyup', function (event) {
+ on.call(this, menuItem, 'keyup', event => {
if (event.which !== 13) {
return;
}
- controls.focusFirstMenuItem.call(_this2, null, true);
+ controls.focusFirstMenuItem.call(this, null, true);
});
},
+
// Create a settings menu item
- createMenuItem: function createMenuItem(_ref) {
- var _this3 = this;
-
- var value = _ref.value,
- list = _ref.list,
- type = _ref.type,
- title = _ref.title,
- _ref$badge = _ref.badge,
- badge = _ref$badge === void 0 ? null : _ref$badge,
- _ref$checked = _ref.checked,
- checked = _ref$checked === void 0 ? false : _ref$checked;
- var attributes = getAttributesFromSelector(this.config.selectors.inputs[type]);
- var menuItem = createElement('button', extend(attributes, {
+ createMenuItem({
+ value,
+ list,
+ type,
+ title,
+ badge = null,
+ checked = false
+ }) {
+ const attributes = getAttributesFromSelector(this.config.selectors.inputs[type]);
+ const menuItem = createElement('button', extend(attributes, {
type: 'button',
role: 'menuitemradio',
- class: "".concat(this.config.classNames.control, " ").concat(attributes.class ? attributes.class : '').trim(),
+ class: `${this.config.classNames.control} ${attributes.class ? attributes.class : ''}`.trim(),
'aria-checked': checked,
- value: value
+ value
}));
- var flex = createElement('span'); // We have to set as HTML incase of special characters
+ const flex = createElement('span'); // We have to set as HTML incase of special characters
flex.innerHTML = title;
- if (is$1.element(badge)) {
+ if (is.element(badge)) {
flex.appendChild(badge);
}
@@ -2081,24 +1829,23 @@ typeof navigator === "object" && (function (global, factory) {
Object.defineProperty(menuItem, 'checked', {
enumerable: true,
- get: function get() {
+
+ get() {
return menuItem.getAttribute('aria-checked') === 'true';
},
- set: function set(check) {
+
+ set(check) {
// Ensure exclusivity
if (check) {
- Array.from(menuItem.parentNode.children).filter(function (node) {
- return matches$1(node, '[role="menuitemradio"]');
- }).forEach(function (node) {
- return node.setAttribute('aria-checked', 'false');
- });
+ Array.from(menuItem.parentNode.children).filter(node => matches(node, '[role="menuitemradio"]')).forEach(node => node.setAttribute('aria-checked', 'false'));
}
menuItem.setAttribute('aria-checked', check ? 'true' : 'false');
}
+
});
- this.listeners.bind(menuItem, 'click keyup', function (event) {
- if (is$1.keyboardEvent(event) && event.which !== 32) {
+ this.listeners.bind(menuItem, 'click keyup', event => {
+ if (is.keyboardEvent(event) && event.which !== 32) {
return;
}
@@ -2108,72 +1855,67 @@ typeof navigator === "object" && (function (global, factory) {
switch (type) {
case 'language':
- _this3.currentTrack = Number(value);
+ this.currentTrack = Number(value);
break;
case 'quality':
- _this3.quality = value;
+ this.quality = value;
break;
case 'speed':
- _this3.speed = parseFloat(value);
+ this.speed = parseFloat(value);
break;
}
- controls.showMenuPanel.call(_this3, 'home', is$1.keyboardEvent(event));
+ controls.showMenuPanel.call(this, 'home', is.keyboardEvent(event));
}, type, false);
controls.bindMenuItemShortcuts.call(this, menuItem, type);
list.appendChild(menuItem);
},
- // Format a time for display
- formatTime: function formatTime$1() {
- var time = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var inverted = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+ // Format a time for display
+ formatTime(time = 0, inverted = false) {
// Bail if the value isn't a number
- if (!is$1.number(time)) {
+ if (!is.number(time)) {
return time;
} // Always display hours if duration is over an hour
- var forceHours = getHours(this.duration) > 0;
+ const forceHours = getHours(this.duration) > 0;
return formatTime(time, forceHours, inverted);
},
- // Update the displayed time
- updateTimeDisplay: function updateTimeDisplay() {
- var target = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
- var time = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- var inverted = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+ // Update the displayed time
+ updateTimeDisplay(target = null, time = 0, inverted = false) {
// Bail if there's no element to display or the value isn't a number
- if (!is$1.element(target) || !is$1.number(time)) {
+ if (!is.element(target) || !is.number(time)) {
return;
} // eslint-disable-next-line no-param-reassign
target.innerText = controls.formatTime(time, inverted);
},
+
// Update volume UI and storage
- updateVolume: function updateVolume() {
+ updateVolume() {
if (!this.supported.ui) {
return;
} // Update range
- if (is$1.element(this.elements.inputs.volume)) {
+ if (is.element(this.elements.inputs.volume)) {
controls.setRange.call(this, this.elements.inputs.volume, this.muted ? 0 : this.volume);
} // Update mute state
- if (is$1.element(this.elements.buttons.mute)) {
+ if (is.element(this.elements.buttons.mute)) {
this.elements.buttons.mute.pressed = this.muted || this.volume === 0;
}
},
- // Update seek value and lower fill
- setRange: function setRange(target) {
- var value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- if (!is$1.element(target)) {
+ // Update seek value and lower fill
+ setRange(target, value = 0) {
+ if (!is.element(target)) {
return;
} // eslint-disable-next-line
@@ -2182,26 +1924,25 @@ typeof navigator === "object" && (function (global, factory) {
controls.updateRangeFill.call(this, target);
},
- // Update <progress> elements
- updateProgress: function updateProgress(event) {
- var _this4 = this;
- if (!this.supported.ui || !is$1.event(event)) {
+ // Update <progress> elements
+ updateProgress(event) {
+ if (!this.supported.ui || !is.event(event)) {
return;
}
- var value = 0;
+ let value = 0;
- var setProgress = function setProgress(target, input) {
- var val = is$1.number(input) ? input : 0;
- var progress = is$1.element(target) ? target : _this4.elements.display.buffer; // Update value and label
+ const setProgress = (target, input) => {
+ const val = is.number(input) ? input : 0;
+ const progress = is.element(target) ? target : this.elements.display.buffer; // Update value and label
- if (is$1.element(progress)) {
+ if (is.element(progress)) {
progress.value = val; // Update text label inside
- var label = progress.getElementsByTagName('span')[0];
+ const label = progress.getElementsByTagName('span')[0];
- if (is$1.element(label)) {
+ if (is.element(label)) {
label.childNodes[0].nodeValue = val;
}
}
@@ -2229,26 +1970,27 @@ typeof navigator === "object" && (function (global, factory) {
}
}
},
+
// Webkit polyfill for lower fill range
- updateRangeFill: function updateRangeFill(target) {
+ updateRangeFill(target) {
// Get range from event if event passed
- var range = is$1.event(target) ? target.target : target; // Needs to be a valid <input type='range'>
+ const range = is.event(target) ? target.target : target; // Needs to be a valid <input type='range'>
- if (!is$1.element(range) || range.getAttribute('type') !== 'range') {
+ if (!is.element(range) || range.getAttribute('type') !== 'range') {
return;
} // Set aria values for https://github.com/sampotts/plyr/issues/905
- if (matches$1(range, this.config.selectors.inputs.seek)) {
+ if (matches(range, this.config.selectors.inputs.seek)) {
range.setAttribute('aria-valuenow', this.currentTime);
- var currentTime = controls.formatTime(this.currentTime);
- var duration = controls.formatTime(this.duration);
- var format = i18n.get('seekLabel', this.config);
+ const currentTime = controls.formatTime(this.currentTime);
+ const duration = controls.formatTime(this.duration);
+ const format = i18n.get('seekLabel', this.config);
range.setAttribute('aria-valuetext', format.replace('{currentTime}', currentTime).replace('{duration}', duration));
- } else if (matches$1(range, this.config.selectors.inputs.volume)) {
- var percent = range.value * 100;
+ } else if (matches(range, this.config.selectors.inputs.volume)) {
+ const percent = range.value * 100;
range.setAttribute('aria-valuenow', percent);
- range.setAttribute('aria-valuetext', "".concat(percent.toFixed(1), "%"));
+ range.setAttribute('aria-valuetext', `${percent.toFixed(1)}%`);
} else {
range.setAttribute('aria-valuenow', range.value);
} // WebKit only
@@ -2259,22 +2001,19 @@ typeof navigator === "object" && (function (global, factory) {
} // Set CSS custom property
- range.style.setProperty('--value', "".concat(range.value / range.max * 100, "%"));
+ range.style.setProperty('--value', `${range.value / range.max * 100}%`);
},
- // Update hover tooltip for seeking
- updateSeekTooltip: function updateSeekTooltip(event) {
- var _this5 = this;
+ // Update hover tooltip for seeking
+ updateSeekTooltip(event) {
// Bail if setting not true
- if (!this.config.tooltips.seek || !is$1.element(this.elements.inputs.seek) || !is$1.element(this.elements.display.seekTooltip) || this.duration === 0) {
+ if (!this.config.tooltips.seek || !is.element(this.elements.inputs.seek) || !is.element(this.elements.display.seekTooltip) || this.duration === 0) {
return;
}
- var visible = "".concat(this.config.classNames.tooltip, "--visible");
+ const visible = `${this.config.classNames.tooltip}--visible`;
- var toggle = function toggle(show) {
- return toggleClass(_this5.elements.display.seekTooltip, visible, show);
- }; // Hide on touch
+ const toggle = show => toggleClass(this.elements.display.seekTooltip, visible, show); // Hide on touch
if (this.touch) {
@@ -2283,10 +2022,10 @@ typeof navigator === "object" && (function (global, factory) {
} // Determine percentage, if already visible
- var percent = 0;
- var clientRect = this.elements.progress.getBoundingClientRect();
+ let percent = 0;
+ const clientRect = this.elements.progress.getBoundingClientRect();
- if (is$1.event(event)) {
+ if (is.event(event)) {
percent = 100 / clientRect.width * (event.pageX - clientRect.left);
} else if (hasClass(this.elements.display.seekTooltip, visible)) {
percent = parseFloat(this.elements.display.seekTooltip.style.left, 10);
@@ -2304,17 +2043,18 @@ typeof navigator === "object" && (function (global, factory) {
controls.updateTimeDisplay.call(this, this.elements.display.seekTooltip, this.duration / 100 * percent); // Set position
- this.elements.display.seekTooltip.style.left = "".concat(percent, "%"); // Show/hide the tooltip
+ this.elements.display.seekTooltip.style.left = `${percent}%`; // Show/hide the tooltip
// If the event is a moues in/out and percentage is inside bounds
- if (is$1.event(event) && ['mouseenter', 'mouseleave'].includes(event.type)) {
+ if (is.event(event) && ['mouseenter', 'mouseleave'].includes(event.type)) {
toggle(event.type === 'mouseenter');
}
},
+
// Handle time change event
- timeUpdate: function timeUpdate(event) {
+ timeUpdate(event) {
// Only invert if only one time element is displayed and used for both duration and currentTime
- var invert = !is$1.element(this.elements.display.duration) && this.config.invertTime; // Duration
+ const invert = !is.element(this.elements.display.duration) && this.config.invertTime; // Duration
controls.updateTimeDisplay.call(this, this.elements.display.currentTime, invert ? this.duration - this.currentTime : this.currentTime, invert); // Ignore updates while seeking
@@ -2325,8 +2065,9 @@ typeof navigator === "object" && (function (global, factory) {
controls.updateProgress.call(this, event);
},
+
// Show the duration on metadataloaded or durationchange events
- durationUpdate: function durationUpdate() {
+ durationUpdate() {
// Bail if no UI or durationchange event triggered after playing/seek when invertTime is false
if (!this.supported.ui || !this.config.invertTime && this.currentTime) {
return;
@@ -2336,19 +2077,19 @@ typeof navigator === "object" && (function (global, factory) {
// https://github.com/Dash-Industry-Forum/dash.js/blob/69859f51b969645b234666800d4cb596d89c602d/src/dash/models/DashManifestModel.js#L338
- if (this.duration >= Math.pow(2, 32)) {
+ if (this.duration >= 2 ** 32) {
toggleHidden(this.elements.display.currentTime, true);
toggleHidden(this.elements.progress, true);
return;
} // Update ARIA values
- if (is$1.element(this.elements.inputs.seek)) {
+ if (is.element(this.elements.inputs.seek)) {
this.elements.inputs.seek.setAttribute('aria-valuemax', this.duration);
} // If there's a spot to display duration
- var hasDuration = is$1.element(this.elements.display.duration); // If there's only one time display, display duration there
+ const hasDuration = is.element(this.elements.display.duration); // If there's only one time display, display duration there
if (!hasDuration && this.config.displayDuration && this.paused) {
controls.updateTimeDisplay.call(this, this.elements.display.currentTime, this.duration);
@@ -2362,70 +2103,73 @@ typeof navigator === "object" && (function (global, factory) {
controls.updateSeekTooltip.call(this);
},
+
// Hide/show a tab
- toggleMenuButton: function toggleMenuButton(setting, toggle) {
+ toggleMenuButton(setting, toggle) {
toggleHidden(this.elements.settings.buttons[setting], !toggle);
},
+
// Update the selected setting
- updateSetting: function updateSetting(setting, container, input) {
- var pane = this.elements.settings.panels[setting];
- var value = null;
- var list = container;
+ updateSetting(setting, container, input) {
+ const pane = this.elements.settings.panels[setting];
+ let value = null;
+ let list = container;
if (setting === 'captions') {
value = this.currentTrack;
} else {
- value = !is$1.empty(input) ? input : this[setting]; // Get default
+ value = !is.empty(input) ? input : this[setting]; // Get default
- if (is$1.empty(value)) {
+ if (is.empty(value)) {
value = this.config[setting].default;
} // Unsupported value
- if (!is$1.empty(this.options[setting]) && !this.options[setting].includes(value)) {
- this.debug.warn("Unsupported value of '".concat(value, "' for ").concat(setting));
+ if (!is.empty(this.options[setting]) && !this.options[setting].includes(value)) {
+ this.debug.warn(`Unsupported value of '${value}' for ${setting}`);
return;
} // Disabled value
if (!this.config[setting].options.includes(value)) {
- this.debug.warn("Disabled value of '".concat(value, "' for ").concat(setting));
+ this.debug.warn(`Disabled value of '${value}' for ${setting}`);
return;
}
} // Get the list if we need to
- if (!is$1.element(list)) {
+ if (!is.element(list)) {
list = pane && pane.querySelector('[role="menu"]');
} // If there's no list it means it's not been rendered...
- if (!is$1.element(list)) {
+ if (!is.element(list)) {
return;
} // Update the label
- var label = this.elements.settings.buttons[setting].querySelector(".".concat(this.config.classNames.menu.value));
+ const label = this.elements.settings.buttons[setting].querySelector(`.${this.config.classNames.menu.value}`);
label.innerHTML = controls.getLabel.call(this, setting, value); // Find the radio option and check it
- var target = list && list.querySelector("[value=\"".concat(value, "\"]"));
+ const target = list && list.querySelector(`[value="${value}"]`);
- if (is$1.element(target)) {
+ if (is.element(target)) {
target.checked = true;
}
},
+
// Translate a value into a nice label
- getLabel: function getLabel(setting, value) {
+ getLabel(setting, value) {
switch (setting) {
case 'speed':
- return value === 1 ? i18n.get('normal', this.config) : "".concat(value, "&times;");
+ return value === 1 ? i18n.get('normal', this.config) : `${value}&times;`;
case 'quality':
- if (is$1.number(value)) {
- var label = i18n.get("qualityLabel.".concat(value), this.config);
+ if (is.number(value)) {
+ const label = i18n.get(`qualityLabel.${value}`, this.config);
if (!label.length) {
- return "".concat(value, "p");
+ return `${value}p`;
}
return label;
@@ -2440,26 +2184,23 @@ typeof navigator === "object" && (function (global, factory) {
return null;
}
},
- // Set the quality menu
- setQualityMenu: function setQualityMenu(options) {
- var _this6 = this;
+ // Set the quality menu
+ setQualityMenu(options) {
// Menu required
- if (!is$1.element(this.elements.settings.panels.quality)) {
+ if (!is.element(this.elements.settings.panels.quality)) {
return;
}
- var type = 'quality';
- var list = this.elements.settings.panels.quality.querySelector('[role="menu"]'); // Set options if passed and filter based on uniqueness and config
+ const type = 'quality';
+ const list = this.elements.settings.panels.quality.querySelector('[role="menu"]'); // Set options if passed and filter based on uniqueness and config
- if (is$1.array(options)) {
- this.options.quality = dedupe(options).filter(function (quality) {
- return _this6.config.quality.options.includes(quality);
- });
+ if (is.array(options)) {
+ this.options.quality = dedupe(options).filter(quality => this.config.quality.options.includes(quality));
} // Toggle the pane and tab
- var toggle = !is$1.empty(this.options.quality) && this.options.quality.length > 1;
+ const toggle = !is.empty(this.options.quality) && this.options.quality.length > 1;
controls.toggleMenuButton.call(this, type, toggle); // Empty the menu
emptyElement(list); // Check if we need to toggle the parent
@@ -2471,31 +2212,32 @@ typeof navigator === "object" && (function (global, factory) {
} // Get the badge HTML for HD, 4K etc
- var getBadge = function getBadge(quality) {
- var label = i18n.get("qualityBadge.".concat(quality), _this6.config);
+ const getBadge = quality => {
+ const label = i18n.get(`qualityBadge.${quality}`, this.config);
if (!label.length) {
return null;
}
- return controls.createBadge.call(_this6, label);
+ return controls.createBadge.call(this, label);
}; // Sort options by the config and then render options
- this.options.quality.sort(function (a, b) {
- var sorting = _this6.config.quality.options;
+ this.options.quality.sort((a, b) => {
+ const sorting = this.config.quality.options;
return sorting.indexOf(a) > sorting.indexOf(b) ? 1 : -1;
- }).forEach(function (quality) {
- controls.createMenuItem.call(_this6, {
+ }).forEach(quality => {
+ controls.createMenuItem.call(this, {
value: quality,
- list: list,
- type: type,
- title: controls.getLabel.call(_this6, 'quality', quality),
+ list,
+ type,
+ title: controls.getLabel.call(this, 'quality', quality),
badge: getBadge(quality)
});
});
controls.updateSetting.call(this, type, list);
},
+
// Set the looping options
/* setLoopMenu() {
@@ -2535,19 +2277,17 @@ typeof navigator === "object" && (function (global, factory) {
// Get current selected caption language
// TODO: rework this to user the getter in the API?
// Set a list of available captions languages
- setCaptionsMenu: function setCaptionsMenu() {
- var _this7 = this;
-
+ setCaptionsMenu() {
// Menu required
- if (!is$1.element(this.elements.settings.panels.captions)) {
+ if (!is.element(this.elements.settings.panels.captions)) {
return;
} // TODO: Captions or language? Currently it's mixed
- var type = 'captions';
- var list = this.elements.settings.panels.captions.querySelector('[role="menucaptions"]');
- var tracks = captions.getTracks.call(this);
- var toggle = Boolean(tracks.length); // Toggle the pane and tab
+ const type = 'captions';
+ const list = this.elements.settings.panels.captions.querySelector('[role="menu"]');
+ const tracks = captions.getTracks.call(this);
+ const toggle = Boolean(tracks.length); // Toggle the pane and tab
controls.toggleMenuButton.call(this, type, toggle); // Empty the menu
@@ -2560,45 +2300,40 @@ typeof navigator === "object" && (function (global, factory) {
} // Generate options data
- var options = tracks.map(function (track, value) {
- return {
- value: value,
- checked: _this7.captions.toggled && _this7.currentTrack === value,
- title: captions.getLabel.call(_this7, track),
- badge: track.language && controls.createBadge.call(_this7, track.language.toUpperCase()),
- list: list,
- type: 'language'
- };
- }); // Add the "Disabled" option to turn off captions
+ const options = tracks.map((track, value) => ({
+ value,
+ checked: this.captions.toggled && this.currentTrack === value,
+ title: captions.getLabel.call(this, track),
+ badge: track.language && controls.createBadge.call(this, track.language.toUpperCase()),
+ list,
+ type: 'language'
+ })); // Add the "Disabled" option to turn off captions
options.unshift({
value: -1,
checked: !this.captions.toggled,
title: i18n.get('disabled', this.config),
- list: list,
+ list,
type: 'language'
}); // Generate options
options.forEach(controls.createMenuItem.bind(this));
controls.updateSetting.call(this, type, list);
},
- // Set a list of available captions languages
- setSpeedMenu: function setSpeedMenu() {
- var _this8 = this;
+ // Set a list of available captions languages
+ setSpeedMenu() {
// Menu required
- if (!is$1.element(this.elements.settings.panels.speed)) {
+ if (!is.element(this.elements.settings.panels.speed)) {
return;
}
- var type = 'speed';
- var list = this.elements.settings.panels.speed.querySelector('[role="menu"]'); // Filter out invalid speeds
+ const type = 'speed';
+ const list = this.elements.settings.panels.speed.querySelector('[role="menu"]'); // Filter out invalid speeds
- this.options.speed = this.options.speed.filter(function (o) {
- return o >= _this8.minimumSpeed && o <= _this8.maximumSpeed;
- }); // Toggle the pane and tab
+ this.options.speed = this.options.speed.filter(o => o >= this.minimumSpeed && o <= this.maximumSpeed); // Toggle the pane and tab
- var toggle = !is$1.empty(this.options.speed) && this.options.speed.length > 1;
+ const toggle = !is.empty(this.options.speed) && this.options.speed.length > 1;
controls.toggleMenuButton.call(this, type, toggle); // Empty the menu
emptyElement(list); // Check if we need to toggle the parent
@@ -2610,65 +2345,68 @@ typeof navigator === "object" && (function (global, factory) {
} // Create items
- this.options.speed.forEach(function (speed) {
- controls.createMenuItem.call(_this8, {
+ this.options.speed.forEach(speed => {
+ controls.createMenuItem.call(this, {
value: speed,
- list: list,
- type: type,
- title: controls.getLabel.call(_this8, 'speed', speed)
+ list,
+ type,
+ title: controls.getLabel.call(this, 'speed', speed)
});
});
controls.updateSetting.call(this, type, list);
},
+
// Check if we need to hide/show the settings menu
- checkMenu: function checkMenu() {
- var buttons = this.elements.settings.buttons;
- var visible = !is$1.empty(buttons) && Object.values(buttons).some(function (button) {
- return !button.hidden;
- });
+ checkMenu() {
+ const {
+ buttons
+ } = this.elements.settings;
+ const visible = !is.empty(buttons) && Object.values(buttons).some(button => !button.hidden);
toggleHidden(this.elements.settings.menu, !visible);
},
- // Focus the first menu item in a given (or visible) menu
- focusFirstMenuItem: function focusFirstMenuItem(pane) {
- var tabFocus = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+ // Focus the first menu item in a given (or visible) menu
+ focusFirstMenuItem(pane, tabFocus = false) {
if (this.elements.settings.popup.hidden) {
return;
}
- var target = pane;
+ let target = pane;
- if (!is$1.element(target)) {
- target = Object.values(this.elements.settings.panels).find(function (p) {
- return !p.hidden;
- });
+ if (!is.element(target)) {
+ target = Object.values(this.elements.settings.panels).find(p => !p.hidden);
}
- var firstItem = target.querySelector('[role^="menuitem"]');
+ const firstItem = target.querySelector('[role^="menuitem"]');
setFocus.call(this, firstItem, tabFocus);
},
+
// Show/hide menu
- toggleMenu: function toggleMenu(input) {
- var popup = this.elements.settings.popup;
- var button = this.elements.buttons.settings; // Menu and button are required
+ toggleMenu(input) {
+ const {
+ popup
+ } = this.elements.settings;
+ const button = this.elements.buttons.settings; // Menu and button are required
- if (!is$1.element(popup) || !is$1.element(button)) {
+ if (!is.element(popup) || !is.element(button)) {
return;
} // True toggle by default
- var hidden = popup.hidden;
- var show = hidden;
+ const {
+ hidden
+ } = popup;
+ let show = hidden;
- if (is$1.boolean(input)) {
+ if (is.boolean(input)) {
show = input;
- } else if (is$1.keyboardEvent(input) && input.which === 27) {
+ } else if (is.keyboardEvent(input) && input.which === 27) {
show = false;
- } else if (is$1.event(input)) {
+ } else if (is.event(input)) {
// If Plyr is in a shadowDOM, the event target is set to the component, instead of the
// Element in the shadowDOM. The path, if available, is complete.
- var target = is$1.function(input.composedPath) ? input.composedPath()[0] : input.target;
- var isMenuItem = popup.contains(target); // If the click was inside the menu or if the click
+ const target = is.function(input.composedPath) ? input.composedPath()[0] : input.target;
+ const isMenuItem = popup.contains(target); // If the click was inside the menu or if the click
// wasn't the button or menu item and we're trying to
// show the menu (a doc click shouldn't show the menu)
@@ -2684,57 +2422,53 @@ typeof navigator === "object" && (function (global, factory) {
toggleClass(this.elements.container, this.config.classNames.menu.open, show); // Focus the first item if key interaction
- if (show && is$1.keyboardEvent(input)) {
+ if (show && is.keyboardEvent(input)) {
controls.focusFirstMenuItem.call(this, null, true);
} else if (!show && !hidden) {
// If closing, re-focus the button
- setFocus.call(this, button, is$1.keyboardEvent(input));
+ setFocus.call(this, button, is.keyboardEvent(input));
}
},
+
// Get the natural size of a menu panel
- getMenuSize: function getMenuSize(tab) {
- var clone = tab.cloneNode(true);
+ getMenuSize(tab) {
+ const clone = tab.cloneNode(true);
clone.style.position = 'absolute';
clone.style.opacity = 0;
clone.removeAttribute('hidden'); // Append to parent so we get the "real" size
tab.parentNode.appendChild(clone); // Get the sizes before we remove
- var width = clone.scrollWidth;
- var height = clone.scrollHeight; // Remove from the DOM
+ const width = clone.scrollWidth;
+ const height = clone.scrollHeight; // Remove from the DOM
removeElement(clone);
return {
- width: width,
- height: height
+ width,
+ height
};
},
- // Show a panel in the menu
- showMenuPanel: function showMenuPanel() {
- var _this9 = this;
- var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- var tabFocus = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- var target = this.elements.container.querySelector("#plyr-settings-".concat(this.id, "-").concat(type)); // Nothing to show, bail
+ // Show a panel in the menu
+ showMenuPanel(type = '', tabFocus = false) {
+ const target = this.elements.container.querySelector(`#plyr-settings-${this.id}-${type}`); // Nothing to show, bail
- if (!is$1.element(target)) {
+ if (!is.element(target)) {
return;
} // Hide all other panels
- var container = target.parentNode;
- var current = Array.from(container.children).find(function (node) {
- return !node.hidden;
- }); // If we can do fancy animations, we'll animate the height/width
+ const container = target.parentNode;
+ const current = Array.from(container.children).find(node => !node.hidden); // If we can do fancy animations, we'll animate the height/width
if (support.transitions && !support.reducedMotion) {
// Set the current width as a base
- container.style.width = "".concat(current.scrollWidth, "px");
- container.style.height = "".concat(current.scrollHeight, "px"); // Get potential sizes
+ container.style.width = `${current.scrollWidth}px`;
+ container.style.height = `${current.scrollHeight}px`; // Get potential sizes
- var size = controls.getMenuSize.call(this, target); // Restore auto height/width
+ const size = controls.getMenuSize.call(this, target); // Restore auto height/width
- var restore = function restore(event) {
+ const restore = event => {
// We're only bothered about height and width on the container
if (event.target !== container || !['width', 'height'].includes(event.propertyName)) {
return;
@@ -2744,14 +2478,14 @@ typeof navigator === "object" && (function (global, factory) {
container.style.width = '';
container.style.height = ''; // Only listen once
- off.call(_this9, container, transitionEndEvent, restore);
+ off.call(this, container, transitionEndEvent, restore);
}; // Listen for the transition finishing and restore auto height/width
on.call(this, container, transitionEndEvent, restore); // Set dimensions to target
- container.style.width = "".concat(size.width, "px");
- container.style.height = "".concat(size.height, "px");
+ container.style.width = `${size.width}px`;
+ container.style.height = `${size.height}px`;
} // Set attributes on current tab
@@ -2761,116 +2495,120 @@ typeof navigator === "object" && (function (global, factory) {
controls.focusFirstMenuItem.call(this, target, tabFocus);
},
+
// Set the download URL
- setDownloadUrl: function setDownloadUrl() {
- var button = this.elements.buttons.download; // Bail if no button
+ setDownloadUrl() {
+ const button = this.elements.buttons.download; // Bail if no button
- if (!is$1.element(button)) {
+ if (!is.element(button)) {
return;
} // Set attribute
button.setAttribute('href', this.download);
},
+
// Build the default HTML
- create: function create(data) {
- var _this10 = this;
-
- var bindMenuItemShortcuts = controls.bindMenuItemShortcuts,
- createButton = controls.createButton,
- createProgress = controls.createProgress,
- createRange = controls.createRange,
- createTime = controls.createTime,
- setQualityMenu = controls.setQualityMenu,
- setSpeedMenu = controls.setSpeedMenu,
- showMenuPanel = controls.showMenuPanel;
+ create(data) {
+ const {
+ bindMenuItemShortcuts,
+ createButton,
+ createProgress,
+ createRange,
+ createTime,
+ setQualityMenu,
+ setSpeedMenu,
+ showMenuPanel
+ } = controls;
this.elements.controls = null; // Larger overlaid play button
- if (is$1.array(this.config.controls) && this.config.controls.includes('play-large')) {
+ if (is.array(this.config.controls) && this.config.controls.includes('play-large')) {
this.elements.container.appendChild(createButton.call(this, 'play-large'));
} // Create the container
- var container = createElement('div', getAttributesFromSelector(this.config.selectors.controls.wrapper));
+ const container = createElement('div', getAttributesFromSelector(this.config.selectors.controls.wrapper));
this.elements.controls = container; // Default item attributes
- var defaultAttributes = {
+ const defaultAttributes = {
class: 'plyr__controls__item'
}; // Loop through controls in order
- dedupe(is$1.array(this.config.controls) ? this.config.controls : []).forEach(function (control) {
+ dedupe(is.array(this.config.controls) ? this.config.controls : []).forEach(control => {
// Restart button
if (control === 'restart') {
- container.appendChild(createButton.call(_this10, 'restart', defaultAttributes));
+ container.appendChild(createButton.call(this, 'restart', defaultAttributes));
} // Rewind button
if (control === 'rewind') {
- container.appendChild(createButton.call(_this10, 'rewind', defaultAttributes));
+ container.appendChild(createButton.call(this, 'rewind', defaultAttributes));
} // Play/Pause button
if (control === 'play') {
- container.appendChild(createButton.call(_this10, 'play', defaultAttributes));
+ container.appendChild(createButton.call(this, 'play', defaultAttributes));
} // Fast forward button
if (control === 'fast-forward') {
- container.appendChild(createButton.call(_this10, 'fast-forward', defaultAttributes));
+ container.appendChild(createButton.call(this, 'fast-forward', defaultAttributes));
} // Progress
if (control === 'progress') {
- var progressContainer = createElement('div', {
- class: "".concat(defaultAttributes.class, " plyr__progress__container")
+ const progressContainer = createElement('div', {
+ class: `${defaultAttributes.class} plyr__progress__container`
});
- var progress = createElement('div', getAttributesFromSelector(_this10.config.selectors.progress)); // Seek range slider
+ const progress = createElement('div', getAttributesFromSelector(this.config.selectors.progress)); // Seek range slider
- progress.appendChild(createRange.call(_this10, 'seek', {
- id: "plyr-seek-".concat(data.id)
+ progress.appendChild(createRange.call(this, 'seek', {
+ id: `plyr-seek-${data.id}`
})); // Buffer progress
- progress.appendChild(createProgress.call(_this10, 'buffer')); // TODO: Add loop display indicator
+ progress.appendChild(createProgress.call(this, 'buffer')); // TODO: Add loop display indicator
// Seek tooltip
- if (_this10.config.tooltips.seek) {
- var tooltip = createElement('span', {
- class: _this10.config.classNames.tooltip
+ if (this.config.tooltips.seek) {
+ const tooltip = createElement('span', {
+ class: this.config.classNames.tooltip
}, '00:00');
progress.appendChild(tooltip);
- _this10.elements.display.seekTooltip = tooltip;
+ this.elements.display.seekTooltip = tooltip;
}
- _this10.elements.progress = progress;
- progressContainer.appendChild(_this10.elements.progress);
+ this.elements.progress = progress;
+ progressContainer.appendChild(this.elements.progress);
container.appendChild(progressContainer);
} // Media current time display
if (control === 'current-time') {
- container.appendChild(createTime.call(_this10, 'currentTime', defaultAttributes));
+ container.appendChild(createTime.call(this, 'currentTime', defaultAttributes));
} // Media duration display
if (control === 'duration') {
- container.appendChild(createTime.call(_this10, 'duration', defaultAttributes));
+ container.appendChild(createTime.call(this, 'duration', defaultAttributes));
} // Volume controls
if (control === 'mute' || control === 'volume') {
- var volume = _this10.elements.volume; // Create the volume container if needed
+ let {
+ volume
+ } = this.elements; // Create the volume container if needed
- if (!is$1.element(volume) || !container.contains(volume)) {
+ if (!is.element(volume) || !container.contains(volume)) {
volume = createElement('div', extend({}, defaultAttributes, {
- class: "".concat(defaultAttributes.class, " plyr__volume").trim()
+ class: `${defaultAttributes.class} plyr__volume`.trim()
}));
- _this10.elements.volume = volume;
+ this.elements.volume = volume;
container.appendChild(volume);
} // Toggle mute button
if (control === 'mute') {
- volume.appendChild(createButton.call(_this10, 'mute'));
+ volume.appendChild(createButton.call(this, 'mute'));
} // Volume range control
// Ignored on iOS as it's handled globally
// https://developer.apple.com/library/safari/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Device-SpecificConsiderations/Device-SpecificConsiderations.html
@@ -2878,69 +2616,69 @@ typeof navigator === "object" && (function (global, factory) {
if (control === 'volume' && !browser.isIos) {
// Set the attributes
- var attributes = {
+ const attributes = {
max: 1,
step: 0.05,
- value: _this10.config.volume
+ value: this.config.volume
}; // Create the volume range slider
- volume.appendChild(createRange.call(_this10, 'volume', extend(attributes, {
- id: "plyr-volume-".concat(data.id)
+ volume.appendChild(createRange.call(this, 'volume', extend(attributes, {
+ id: `plyr-volume-${data.id}`
})));
}
} // Toggle captions button
if (control === 'captions') {
- container.appendChild(createButton.call(_this10, 'captions', defaultAttributes));
+ container.appendChild(createButton.call(this, 'captions', defaultAttributes));
} // Settings button / menu
- if (control === 'settings' && !is$1.empty(_this10.config.settings)) {
- var wrapper = createElement('div', extend({}, defaultAttributes, {
- class: "".concat(defaultAttributes.class, " plyr__menu").trim(),
+ if (control === 'settings' && !is.empty(this.config.settings)) {
+ const wrapper = createElement('div', extend({}, defaultAttributes, {
+ class: `${defaultAttributes.class} plyr__menu`.trim(),
hidden: ''
}));
- wrapper.appendChild(createButton.call(_this10, 'settings', {
+ wrapper.appendChild(createButton.call(this, 'settings', {
'aria-haspopup': true,
- 'aria-controls': "plyr-settings-".concat(data.id),
+ 'aria-controls': `plyr-settings-${data.id}`,
'aria-expanded': false
}));
- var popup = createElement('div', {
+ const popup = createElement('div', {
class: 'plyr__menu__container',
- id: "plyr-settings-".concat(data.id),
+ id: `plyr-settings-${data.id}`,
hidden: ''
});
- var inner = createElement('div');
- var home = createElement('div', {
- id: "plyr-settings-".concat(data.id, "-home")
+ const inner = createElement('div');
+ const home = createElement('div', {
+ id: `plyr-settings-${data.id}-home`
}); // Create the menu
- var menu = createElement('div', {
+ const menu = createElement('div', {
role: 'menu'
});
home.appendChild(menu);
inner.appendChild(home);
- _this10.elements.settings.panels.home = home; // Build the menu items
+ this.elements.settings.panels.home = home; // Build the menu items
- _this10.config.settings.forEach(function (type) {
+ this.config.settings.forEach(type => {
// TODO: bundle this with the createMenuItem helper and bindings
- var menuItem = createElement('button', extend(getAttributesFromSelector(_this10.config.selectors.buttons.settings), {
+ const menuItem = createElement('button', extend(getAttributesFromSelector(this.config.selectors.buttons.settings), {
type: 'button',
- class: "".concat(_this10.config.classNames.control, " ").concat(_this10.config.classNames.control, "--forward"),
+ class: `${this.config.classNames.control} ${this.config.classNames.control}--forward`,
role: 'menuitem',
'aria-haspopup': true,
hidden: ''
})); // Bind menu shortcuts for keyboard users
- bindMenuItemShortcuts.call(_this10, menuItem, type); // Show menu on click
+ bindMenuItemShortcuts.call(this, menuItem, type); // Show menu on click
- on.call(_this10, menuItem, 'click', function () {
- showMenuPanel.call(_this10, type, false);
+ on.call(this, menuItem, 'click', () => {
+ showMenuPanel.call(this, type, false);
});
- var flex = createElement('span', null, i18n.get(type, _this10.config));
- var value = createElement('span', {
- class: _this10.config.classNames.menu.value
+ const flex = createElement('span', null, i18n.get(type, this.config));
+ const value = createElement('span', {
+ class: this.config.classNames.menu.value
}); // Speed contains HTML entities
value.innerHTML = data[type];
@@ -2948,25 +2686,25 @@ typeof navigator === "object" && (function (global, factory) {
menuItem.appendChild(flex);
menu.appendChild(menuItem); // Build the panes
- var pane = createElement('div', {
- id: "plyr-settings-".concat(data.id, "-").concat(type),
+ const pane = createElement('div', {
+ id: `plyr-settings-${data.id}-${type}`,
hidden: ''
}); // Back button
- var backButton = createElement('button', {
+ const backButton = createElement('button', {
type: 'button',
- class: "".concat(_this10.config.classNames.control, " ").concat(_this10.config.classNames.control, "--back")
+ class: `${this.config.classNames.control} ${this.config.classNames.control}--back`
}); // Visible label
backButton.appendChild(createElement('span', {
'aria-hidden': true
- }, i18n.get(type, _this10.config))); // Screen reader label
+ }, i18n.get(type, this.config))); // Screen reader label
backButton.appendChild(createElement('span', {
- class: _this10.config.classNames.hidden
- }, i18n.get('menuBack', _this10.config))); // Go back via keyboard
+ class: this.config.classNames.hidden
+ }, i18n.get('menuBack', this.config))); // Go back via keyboard
- on.call(_this10, pane, 'keydown', function (event) {
+ on.call(this, pane, 'keydown', event => {
// We only care about <-
if (event.which !== 37) {
return;
@@ -2976,72 +2714,68 @@ typeof navigator === "object" && (function (global, factory) {
event.preventDefault();
event.stopPropagation(); // Show the respective menu
- showMenuPanel.call(_this10, 'home', true);
+ showMenuPanel.call(this, 'home', true);
}, false); // Go back via button click
- on.call(_this10, backButton, 'click', function () {
- showMenuPanel.call(_this10, 'home', false);
+ on.call(this, backButton, 'click', () => {
+ showMenuPanel.call(this, 'home', false);
}); // Add to pane
pane.appendChild(backButton); // Menu
pane.appendChild(createElement('div', {
role: 'menu'
- })); // Menu Captions
-
- pane.appendChild(createElement('div', {
- role: 'menucaptions'
}));
inner.appendChild(pane);
- _this10.elements.settings.buttons[type] = menuItem;
- _this10.elements.settings.panels[type] = pane;
+ this.elements.settings.buttons[type] = menuItem;
+ this.elements.settings.panels[type] = pane;
});
-
popup.appendChild(inner);
wrapper.appendChild(popup);
container.appendChild(wrapper);
- _this10.elements.settings.popup = popup;
- _this10.elements.settings.menu = wrapper;
+ this.elements.settings.popup = popup;
+ this.elements.settings.menu = wrapper;
} // Picture in picture button
if (control === 'pip' && support.pip) {
- container.appendChild(createButton.call(_this10, 'pip', defaultAttributes));
+ container.appendChild(createButton.call(this, 'pip', defaultAttributes));
} // Airplay button
if (control === 'airplay' && support.airplay) {
- container.appendChild(createButton.call(_this10, 'airplay', defaultAttributes));
+ container.appendChild(createButton.call(this, 'airplay', defaultAttributes));
} // Download button
if (control === 'download') {
- var _attributes = extend({}, defaultAttributes, {
+ const attributes = extend({}, defaultAttributes, {
element: 'a',
- href: _this10.download,
+ href: this.download,
target: '_blank'
}); // Set download attribute for HTML5 only
-
- if (_this10.isHTML5) {
- _attributes.download = '';
+ if (this.isHTML5) {
+ attributes.download = '';
}
- var download = _this10.config.urls.download;
+ const {
+ download
+ } = this.config.urls;
- if (!is$1.url(download) && _this10.isEmbed) {
- extend(_attributes, {
- icon: "logo-".concat(_this10.provider),
- label: _this10.provider
+ if (!is.url(download) && this.isEmbed) {
+ extend(attributes, {
+ icon: `logo-${this.provider}`,
+ label: this.provider
});
}
- container.appendChild(createButton.call(_this10, 'download', _attributes));
+ container.appendChild(createButton.call(this, 'download', attributes));
} // Toggle fullscreen button
if (control === 'fullscreen') {
- container.appendChild(createButton.call(_this10, 'fullscreen', defaultAttributes));
+ container.appendChild(createButton.call(this, 'fullscreen', defaultAttributes));
}
}); // Set available quality levels
@@ -3052,13 +2786,12 @@ typeof navigator === "object" && (function (global, factory) {
setSpeedMenu.call(this);
return container;
},
- // Insert controls
- inject: function inject() {
- var _this11 = this;
+ // Insert controls
+ inject() {
// Sprite
if (this.config.loadSprite) {
- var icon = controls.getIconUrl.call(this); // Only load external sprite using AJAX
+ const icon = controls.getIconUrl.call(this); // Only load external sprite using AJAX
if (icon.cors) {
loadSprite(icon.url, 'sprite-plyr');
@@ -3068,17 +2801,17 @@ typeof navigator === "object" && (function (global, factory) {
this.id = Math.floor(Math.random() * 10000); // Null by default
- var container = null;
+ let container = null;
this.elements.controls = null; // Set template properties
- var props = {
+ const props = {
id: this.id,
seektime: this.config.seekTime,
title: this.config.title
};
- var update = true; // If function, run it and use output
+ let update = true; // If function, run it and use output
- if (is$1.function(this.config.controls)) {
+ if (is.function(this.config.controls)) {
this.config.controls = this.config.controls.call(this, props);
} // Convert falsy controls to empty array (primarily for empty strings)
@@ -3087,7 +2820,7 @@ typeof navigator === "object" && (function (global, factory) {
this.config.controls = [];
}
- if (is$1.element(this.config.controls) || is$1.string(this.config.controls)) {
+ if (is.element(this.config.controls) || is.string(this.config.controls)) {
// HTMLElement or Non-empty string passed as the option
container = this.config.controls;
} else {
@@ -3105,64 +2838,62 @@ typeof navigator === "object" && (function (global, factory) {
} // Replace props with their value
- var replace = function replace(input) {
- var result = input;
- Object.entries(props).forEach(function (_ref2) {
- var _ref3 = _slicedToArray(_ref2, 2),
- key = _ref3[0],
- value = _ref3[1];
-
- result = replaceAll(result, "{".concat(key, "}"), value);
+ const replace = input => {
+ let result = input;
+ Object.entries(props).forEach(([key, value]) => {
+ result = replaceAll(result, `{${key}}`, value);
});
return result;
}; // Update markup
if (update) {
- if (is$1.string(this.config.controls)) {
+ if (is.string(this.config.controls)) {
container = replace(container);
}
} // Controls container
- var target; // Inject to custom location
+ let target; // Inject to custom location
- if (is$1.string(this.config.selectors.controls.container)) {
+ if (is.string(this.config.selectors.controls.container)) {
target = document.querySelector(this.config.selectors.controls.container);
} // Inject into the container by default
- if (!is$1.element(target)) {
+ if (!is.element(target)) {
target = this.elements.container;
} // Inject controls HTML (needs to be before captions, hence "afterbegin")
- var insertMethod = is$1.element(container) ? 'insertAdjacentElement' : 'insertAdjacentHTML';
+ const insertMethod = is.element(container) ? 'insertAdjacentElement' : 'insertAdjacentHTML';
target[insertMethod]('afterbegin', container); // Find the elements if need be
- if (!is$1.element(this.elements.controls)) {
+ if (!is.element(this.elements.controls)) {
controls.findElements.call(this);
} // Add pressed property to buttons
- if (!is$1.empty(this.elements.buttons)) {
- var addProperty = function addProperty(button) {
- var className = _this11.config.classNames.controlPressed;
+ if (!is.empty(this.elements.buttons)) {
+ const addProperty = button => {
+ const className = this.config.classNames.controlPressed;
Object.defineProperty(button, 'pressed', {
enumerable: true,
- get: function get() {
+
+ get() {
return hasClass(button, className);
},
- set: function set() {
- var pressed = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+
+ set(pressed = false) {
toggleClass(button, className, pressed);
}
+
});
}; // Toggle classname when pressed property is set
- Object.values(this.elements.buttons).filter(Boolean).forEach(function (button) {
- if (is$1.array(button) || is$1.nodeList(button)) {
+ Object.values(this.elements.buttons).filter(Boolean).forEach(button => {
+ if (is.array(button) || is.nodeList(button)) {
Array.from(button).filter(Boolean).forEach(addProperty);
} else {
addProperty(button);
@@ -3177,31 +2908,33 @@ typeof navigator === "object" && (function (global, factory) {
if (this.config.tooltips.controls) {
- var _this$config = this.config,
- classNames = _this$config.classNames,
- selectors = _this$config.selectors;
- var selector = "".concat(selectors.controls.wrapper, " ").concat(selectors.labels, " .").concat(classNames.hidden);
- var labels = getElements.call(this, selector);
- Array.from(labels).forEach(function (label) {
- toggleClass(label, _this11.config.classNames.hidden, false);
- toggleClass(label, _this11.config.classNames.tooltip, true);
+ const {
+ classNames,
+ selectors
+ } = this.config;
+ const selector = `${selectors.controls.wrapper} ${selectors.labels} .${classNames.hidden}`;
+ const labels = getElements.call(this, selector);
+ Array.from(labels).forEach(label => {
+ toggleClass(label, this.config.classNames.hidden, false);
+ toggleClass(label, this.config.classNames.tooltip, true);
});
}
}
+
};
+ // ==========================================================================
/**
* Parse a string to a URL object
* @param {String} input - the URL to be parsed
* @param {Boolean} safe - failsafe parsing
*/
- function parseUrl(input) {
- var safe = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
- var url = input;
+ function parseUrl(input, safe = true) {
+ let url = input;
if (safe) {
- var parser = document.createElement('a');
+ const parser = document.createElement('a');
parser.href = url;
url = parser.href;
}
@@ -3214,14 +2947,10 @@ typeof navigator === "object" && (function (global, factory) {
} // Convert object to URLSearchParams
function buildUrlParams(input) {
- var params = new URLSearchParams();
-
- if (is$1.object(input)) {
- Object.entries(input).forEach(function (_ref) {
- var _ref2 = _slicedToArray(_ref, 2),
- key = _ref2[0],
- value = _ref2[1];
+ const params = new URLSearchParams();
+ if (is.object(input)) {
+ Object.entries(input).forEach(([key, value]) => {
params.set(key, value);
});
}
@@ -3229,9 +2958,10 @@ typeof navigator === "object" && (function (global, factory) {
return params;
}
- var captions = {
+ // ==========================================================================
+ const captions = {
// Setup captions
- setup: function setup() {
+ setup() {
// Requires UI support
if (!this.supported.ui) {
return;
@@ -3240,7 +2970,7 @@ typeof navigator === "object" && (function (global, factory) {
if (!this.isVideo || this.isYouTube || this.isHTML5 && !support.textTracks) {
// Clear menu and hide
- if (is$1.array(this.config.controls) && this.config.controls.includes('settings') && this.config.settings.includes('captions')) {
+ if (is.array(this.config.controls) && this.config.controls.includes('settings') && this.config.settings.includes('captions')) {
controls.setCaptionsMenu.call(this);
}
@@ -3248,7 +2978,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Inject the container
- if (!is$1.element(this.elements.captions)) {
+ if (!is.element(this.elements.captions)) {
this.elements.captions = createElement('div', getAttributesFromSelector(this.config.selectors.captions));
insertAfter(this.elements.captions, this.elements.wrapper);
} // Fix IE captions if CORS is used
@@ -3256,15 +2986,15 @@ typeof navigator === "object" && (function (global, factory) {
if (browser.isIE && window.URL) {
- var elements = this.media.querySelectorAll('track');
- Array.from(elements).forEach(function (track) {
- var src = track.getAttribute('src');
- var url = parseUrl(src);
+ const elements = this.media.querySelectorAll('track');
+ Array.from(elements).forEach(track => {
+ const src = track.getAttribute('src');
+ const url = parseUrl(src);
if (url !== null && url.hostname !== window.location.href.hostname && ['http:', 'https:'].includes(url.protocol)) {
- fetch(src, 'blob').then(function (blob) {
+ fetch(src, 'blob').then(blob => {
track.setAttribute('src', window.URL.createObjectURL(blob));
- }).catch(function () {
+ }).catch(() => {
removeElement(track);
});
}
@@ -3277,60 +3007,53 @@ typeof navigator === "object" && (function (global, factory) {
// * toggled: The real captions state
- var browserLanguages = navigator.languages || [navigator.language || navigator.userLanguage || 'en'];
- var languages = dedupe(browserLanguages.map(function (language) {
- return language.split('-')[0];
- }));
- var language = (this.storage.get('language') || this.config.captions.language || 'auto').toLowerCase(); // Use first browser language when language is 'auto'
+ const browserLanguages = navigator.languages || [navigator.language || navigator.userLanguage || 'en'];
+ const languages = dedupe(browserLanguages.map(language => language.split('-')[0]));
+ let language = (this.storage.get('language') || this.config.captions.language || 'auto').toLowerCase(); // Use first browser language when language is 'auto'
if (language === 'auto') {
- var _languages = _slicedToArray(languages, 1);
-
- language = _languages[0];
+ [language] = languages;
}
- var active = this.storage.get('captions');
+ let active = this.storage.get('captions');
- if (!is$1.boolean(active)) {
- active = this.config.captions.active;
+ if (!is.boolean(active)) {
+ ({
+ active
+ } = this.config.captions);
}
Object.assign(this.captions, {
toggled: false,
- active: active,
- language: language,
- languages: languages
+ active,
+ language,
+ languages
}); // Watch changes to textTracks and update captions menu
if (this.isHTML5) {
- var trackEvents = this.config.captions.update ? 'addtrack removetrack' : 'removetrack';
+ const trackEvents = this.config.captions.update ? 'addtrack removetrack' : 'removetrack';
on.call(this, this.media.textTracks, trackEvents, captions.update.bind(this));
} // Update available languages in list next tick (the event must not be triggered before the listeners)
setTimeout(captions.update.bind(this), 0);
},
- // Update available language options in settings based on tracks
- update: function update() {
- var _this = this;
- var tracks = captions.getTracks.call(this, true); // Get the wanted language
+ // Update available language options in settings based on tracks
+ update() {
+ const tracks = captions.getTracks.call(this, true); // Get the wanted language
- var _this$captions = this.captions,
- active = _this$captions.active,
- language = _this$captions.language,
- meta = _this$captions.meta,
- currentTrackNode = _this$captions.currentTrackNode;
- var languageExists = Boolean(tracks.find(function (track) {
- return track.language === language;
- })); // Handle tracks (add event listener and "pseudo"-default)
+ const {
+ active,
+ language,
+ meta,
+ currentTrackNode
+ } = this.captions;
+ const languageExists = Boolean(tracks.find(track => track.language === language)); // Handle tracks (add event listener and "pseudo"-default)
if (this.isHTML5 && this.isVideo) {
- tracks.filter(function (track) {
- return !meta.get(track);
- }).forEach(function (track) {
- _this.debug.log('Track added', track); // Attempt to store if the original dom element was "default"
-
+ tracks.filter(track => !meta.get(track)).forEach(track => {
+ this.debug.log('Track added', track); // Attempt to store if the original dom element was "default"
meta.set(track, {
default: track.mode === 'showing'
@@ -3345,9 +3068,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Add event listener for cue changes
- on.call(_this, track, 'cuechange', function () {
- return captions.updateCues.call(_this);
- });
+ on.call(this, track, 'cuechange', () => captions.updateCues.call(this));
});
} // Update language first time it matches, or if the previous matching track was removed
@@ -3358,30 +3079,29 @@ typeof navigator === "object" && (function (global, factory) {
} // Enable or disable captions based on track length
- toggleClass(this.elements.container, this.config.classNames.captions.enabled, !is$1.empty(tracks)); // Update available languages in list
+ toggleClass(this.elements.container, this.config.classNames.captions.enabled, !is.empty(tracks)); // Update available languages in list
- if (is$1.array(this.config.controls) && this.config.controls.includes('settings') && this.config.settings.includes('captions')) {
+ if (is.array(this.config.controls) && this.config.controls.includes('settings') && this.config.settings.includes('captions')) {
controls.setCaptionsMenu.call(this);
}
},
+
// Toggle captions display
// Used internally for the toggleCaptions method, with the passive option forced to false
- toggle: function toggle(input) {
- var _this2 = this;
-
- var passive = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
-
+ toggle(input, passive = true) {
// If there's no full support
if (!this.supported.ui) {
return;
}
- var toggled = this.captions.toggled; // Current state
+ const {
+ toggled
+ } = this.captions; // Current state
- var activeClass = this.config.classNames.captions.active; // Get the next state
+ const activeClass = this.config.classNames.captions.active; // Get the next state
// If the method is called without parameter, toggle based on current value
- var active = is$1.nullOrUndefined(input) ? !toggled : input; // Update state and trigger event
+ const active = is.nullOrUndefined(input) ? !toggled : input; // Update state and trigger event
if (active !== toggled) {
// When passive, don't override user preferences
@@ -3394,8 +3114,8 @@ typeof navigator === "object" && (function (global, factory) {
if (!this.language && active && !passive) {
- var tracks = captions.getTracks.call(this);
- var track = captions.findTrack.call(this, [this.captions.language].concat(_toConsumableArray(this.captions.languages)), true); // Override user preferences to avoid switching languages if a matching track is added
+ const tracks = captions.getTracks.call(this);
+ const track = captions.findTrack.call(this, [this.captions.language, ...this.captions.languages], true); // Override user preferences to avoid switching languages if a matching track is added
this.captions.language = track.language; // Set caption, but don't store in localStorage as user preference
@@ -3419,24 +3139,24 @@ typeof navigator === "object" && (function (global, factory) {
// on the active track - forcing the browser to download it
- setTimeout(function () {
- if (active && _this2.captions.toggled) {
- _this2.captions.currentTrackNode.mode = 'hidden';
+ setTimeout(() => {
+ if (active && this.captions.toggled) {
+ this.captions.currentTrackNode.mode = 'hidden';
}
});
},
+
// Set captions by track index
// Used internally for the currentTrack setter with the passive option forced to false
- set: function set(index) {
- var passive = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
- var tracks = captions.getTracks.call(this); // Disable captions if setting to -1
+ set(index, passive = true) {
+ const tracks = captions.getTracks.call(this); // Disable captions if setting to -1
if (index === -1) {
captions.toggle.call(this, false, passive);
return;
}
- if (!is$1.number(index)) {
+ if (!is.number(index)) {
this.debug.warn('Invalid caption argument', index);
return;
}
@@ -3448,11 +3168,10 @@ typeof navigator === "object" && (function (global, factory) {
if (this.captions.currentTrack !== index) {
this.captions.currentTrack = index;
- var track = tracks[index];
-
- var _ref = track || {},
- language = _ref.language; // Store reference to node for invalidation on remove
-
+ const track = tracks[index];
+ const {
+ language
+ } = track || {}; // Store reference to node for invalidation on remove
this.captions.currentTrackNode = track; // Update settings menu
@@ -3461,7 +3180,7 @@ typeof navigator === "object" && (function (global, factory) {
if (!passive) {
this.captions.language = language;
this.storage.set({
- language: language
+ language
});
} // Handle Vimeo captions
@@ -3482,83 +3201,70 @@ typeof navigator === "object" && (function (global, factory) {
captions.updateCues.call(this);
}
},
+
// Set captions by language
// Used internally for the language setter with the passive option forced to false
- setLanguage: function setLanguage(input) {
- var passive = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
-
- if (!is$1.string(input)) {
+ setLanguage(input, passive = true) {
+ if (!is.string(input)) {
this.debug.warn('Invalid language argument', input);
return;
} // Normalize
- var language = input.toLowerCase();
+ const language = input.toLowerCase();
this.captions.language = language; // Set currentTrack
- var tracks = captions.getTracks.call(this);
- var track = captions.findTrack.call(this, [language]);
+ const tracks = captions.getTracks.call(this);
+ const track = captions.findTrack.call(this, [language]);
captions.set.call(this, tracks.indexOf(track), passive);
},
+
// Get current valid caption tracks
// If update is false it will also ignore tracks without metadata
// This is used to "freeze" the language options when captions.update is false
- getTracks: function getTracks() {
- var _this3 = this;
-
- var update = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ getTracks(update = false) {
// Handle media or textTracks missing or null
- var tracks = Array.from((this.media || {}).textTracks || []); // For HTML5, use cache instead of current tracks when it exists (if captions.update is false)
+ const tracks = Array.from((this.media || {}).textTracks || []); // For HTML5, use cache instead of current tracks when it exists (if captions.update is false)
// Filter out removed tracks and tracks that aren't captions/subtitles (for example metadata)
- return tracks.filter(function (track) {
- return !_this3.isHTML5 || update || _this3.captions.meta.has(track);
- }).filter(function (track) {
- return ['captions', 'subtitles'].includes(track.kind);
- });
+ return tracks.filter(track => !this.isHTML5 || update || this.captions.meta.has(track)).filter(track => ['captions', 'subtitles'].includes(track.kind));
},
+
// Match tracks based on languages and get the first
- findTrack: function findTrack(languages) {
- var _this4 = this;
+ findTrack(languages, force = false) {
+ const tracks = captions.getTracks.call(this);
- var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- var tracks = captions.getTracks.call(this);
+ const sortIsDefault = track => Number((this.captions.meta.get(track) || {}).default);
- var sortIsDefault = function sortIsDefault(track) {
- return Number((_this4.captions.meta.get(track) || {}).default);
- };
-
- var sorted = Array.from(tracks).sort(function (a, b) {
- return sortIsDefault(b) - sortIsDefault(a);
- });
- var track;
- languages.every(function (language) {
- track = sorted.find(function (t) {
- return t.language === language;
- });
+ const sorted = Array.from(tracks).sort((a, b) => sortIsDefault(b) - sortIsDefault(a));
+ let track;
+ languages.every(language => {
+ track = sorted.find(t => t.language === language);
return !track; // Break iteration if there is a match
}); // If no match is found but is required, get first
return track || (force ? sorted[0] : undefined);
},
+
// Get the current track
- getCurrentTrack: function getCurrentTrack() {
+ getCurrentTrack() {
return captions.getTracks.call(this)[this.currentTrack];
},
+
// Get UI label for track
- getLabel: function getLabel(track) {
- var currentTrack = track;
+ getLabel(track) {
+ let currentTrack = track;
- if (!is$1.track(currentTrack) && support.textTracks && this.captions.toggled) {
+ if (!is.track(currentTrack) && support.textTracks && this.captions.toggled) {
currentTrack = captions.getCurrentTrack.call(this);
}
- if (is$1.track(currentTrack)) {
- if (!is$1.empty(currentTrack.label)) {
+ if (is.track(currentTrack)) {
+ if (!is.empty(currentTrack.label)) {
return currentTrack.label;
}
- if (!is$1.empty(currentTrack.language)) {
+ if (!is.empty(currentTrack.language)) {
return track.language.toUpperCase();
}
@@ -3567,56 +3273,54 @@ typeof navigator === "object" && (function (global, factory) {
return i18n.get('disabled', this.config);
},
+
// Update captions using current track's active cues
// Also optional array argument in case there isn't any track (ex: vimeo)
- updateCues: function updateCues(input) {
+ updateCues(input) {
// Requires UI
if (!this.supported.ui) {
return;
}
- if (!is$1.element(this.elements.captions)) {
+ if (!is.element(this.elements.captions)) {
this.debug.warn('No captions element to render to');
return;
} // Only accept array or empty input
- if (!is$1.nullOrUndefined(input) && !Array.isArray(input)) {
+ if (!is.nullOrUndefined(input) && !Array.isArray(input)) {
this.debug.warn('updateCues: Invalid input', input);
return;
}
- var cues = input; // Get cues from track
+ let cues = input; // Get cues from track
if (!cues) {
- var track = captions.getCurrentTrack.call(this);
- cues = Array.from((track || {}).activeCues || []).map(function (cue) {
- return cue.getCueAsHTML();
- }).map(getHTML);
+ const track = captions.getCurrentTrack.call(this);
+ cues = Array.from((track || {}).activeCues || []).map(cue => cue.getCueAsHTML()).map(getHTML);
} // Set new caption text
- var content = cues.map(function (cueText) {
- return cueText.trim();
- }).join('\n');
- var changed = content !== this.elements.captions.innerHTML;
+ const content = cues.map(cueText => cueText.trim()).join('\n');
+ const changed = content !== this.elements.captions.innerHTML;
if (changed) {
// Empty the container and create a new child element
emptyElement(this.elements.captions);
- var caption = createElement('span', getAttributesFromSelector(this.config.selectors.caption));
+ const caption = createElement('span', getAttributesFromSelector(this.config.selectors.caption));
caption.innerHTML = content;
this.elements.captions.appendChild(caption); // Trigger event
triggerEvent.call(this, this.media, 'cuechange');
}
}
+
};
// ==========================================================================
// Plyr default config
// ==========================================================================
- var defaults$1 = {
+ const defaults = {
// Disable
enabled: true,
// Custom media title
@@ -3658,9 +3362,9 @@ typeof navigator === "object" && (function (global, factory) {
// Sprite (for icons)
loadSprite: true,
iconPrefix: 'plyr',
- iconUrl: '/theme/modules/plyr/plyr.svg',
+ iconUrl: 'https://cdn.plyr.io/3.6.8/plyr.svg',
// Blank video (used to prevent errors on source change)
- blankVideo: '/theme/modules/plyr/blank.webm',
+ blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
// Quality default
quality: {
default: 576,
@@ -3776,7 +3480,7 @@ typeof navigator === "object" && (function (global, factory) {
vimeo: {
sdk: 'https://player.vimeo.com/api/player.js',
iframe: 'https://player.vimeo.com/video/{0}?{1}',
- api: 'https://vimeo.com/api/v2/video/{0}.json'
+ api: 'https://vimeo.com/api/oembed.json?url={0}'
},
youtube: {
sdk: 'https://www.youtube.com/iframe_api',
@@ -3946,24 +3650,27 @@ typeof navigator === "object" && (function (global, factory) {
title: false,
speed: true,
transparent: false,
+ // Custom settings from Plyr
+ customControls: true,
+ referrerPolicy: null,
+ // https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy
// Whether the owner of the video has a Pro or Business account
// (which allows us to properly hide controls without CSS hacks, etc)
- premium: false,
- // Custom settings from Plyr
- referrerPolicy: null // https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy
-
+ premium: false
},
// YouTube plugin
youtube: {
- noCookie: true,
- // Whether to use an alternative version of YouTube without cookies
rel: 0,
// No related vids
showinfo: 0,
// Hide info
iv_load_policy: 3,
// Hide annotations
- modestbranding: 1 // Hide logos as much as possible (they still show one in the corner when paused)
+ modestbranding: 1,
+ // Hide logos as much as possible (they still show one in the corner when paused)
+ // Custom settings from Plyr
+ customControls: true,
+ noCookie: false // Whether to use an alternative version of YouTube without cookies
}
};
@@ -3971,7 +3678,7 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
// Plyr states
// ==========================================================================
- var pip = {
+ const pip = {
active: 'picture-in-picture',
inactive: 'inline'
};
@@ -3979,12 +3686,12 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
// Plyr supported types and providers
// ==========================================================================
- var providers = {
+ const providers = {
html5: 'html5',
youtube: 'youtube',
vimeo: 'vimeo'
};
- var types = {
+ const types = {
audio: 'audio',
video: 'video'
};
@@ -4010,14 +3717,10 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
// Console wrapper
// ==========================================================================
- var noop = function noop() {};
-
- var Console = /*#__PURE__*/function () {
- function Console() {
- var enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
-
- _classCallCheck(this, Console);
+ const noop = () => {};
+ class Console {
+ constructor(enabled = false) {
this.enabled = window.console && enabled;
if (this.enabled) {
@@ -4025,96 +3728,44 @@ typeof navigator === "object" && (function (global, factory) {
}
}
- _createClass(Console, [{
- key: "log",
- get: function get() {
- // eslint-disable-next-line no-console
- return this.enabled ? Function.prototype.bind.call(console.log, console) : noop;
- }
- }, {
- key: "warn",
- get: function get() {
- // eslint-disable-next-line no-console
- return this.enabled ? Function.prototype.bind.call(console.warn, console) : noop;
- }
- }, {
- key: "error",
- get: function get() {
- // eslint-disable-next-line no-console
- return this.enabled ? Function.prototype.bind.call(console.error, console) : noop;
- }
- }]);
-
- return Console;
- }();
-
- var Fullscreen = /*#__PURE__*/function () {
- function Fullscreen(player) {
- var _this = this;
-
- _classCallCheck(this, Fullscreen);
-
- // Keep reference to parent
- this.player = player; // Get prefix
-
- this.prefix = Fullscreen.prefix;
- this.property = Fullscreen.property; // Scroll position
-
- this.scrollPosition = {
- x: 0,
- y: 0
- }; // Force the use of 'full window/browser' rather than fullscreen
-
- this.forceFallback = player.config.fullscreen.fallback === 'force'; // Get the fullscreen element
- // Checks container is an ancestor, defaults to null
-
- this.player.elements.fullscreen = player.config.fullscreen.container && closest(this.player.elements.container, player.config.fullscreen.container); // Register event listeners
- // Handle event (incase user presses escape etc)
-
- on.call(this.player, document, this.prefix === 'ms' ? 'MSFullscreenChange' : "".concat(this.prefix, "fullscreenchange"), function () {
- // TODO: Filter for target??
- _this.onChange();
- }); // Fullscreen toggle on double click
-
- on.call(this.player, this.player.elements.container, 'dblclick', function (event) {
- // Ignore double click in controls
- if (is$1.element(_this.player.elements.controls) && _this.player.elements.controls.contains(event.target)) {
- return;
- }
-
- _this.toggle();
- }); // Tap focus when in fullscreen
+ get log() {
+ // eslint-disable-next-line no-console
+ return this.enabled ? Function.prototype.bind.call(console.log, console) : noop;
+ }
- on.call(this, this.player.elements.container, 'keydown', function (event) {
- return _this.trapFocus(event);
- }); // Update the UI
+ get warn() {
+ // eslint-disable-next-line no-console
+ return this.enabled ? Function.prototype.bind.call(console.warn, console) : noop;
+ }
- this.update();
- } // Determine if native supported
+ get error() {
+ // eslint-disable-next-line no-console
+ return this.enabled ? Function.prototype.bind.call(console.error, console) : noop;
+ }
+ }
- _createClass(Fullscreen, [{
- key: "onChange",
- value: function onChange() {
+ class Fullscreen {
+ constructor(player) {
+ _defineProperty$1(this, "onChange", () => {
if (!this.enabled) {
return;
} // Update toggle button
- var button = this.player.elements.buttons.fullscreen;
+ const button = this.player.elements.buttons.fullscreen;
- if (is$1.element(button)) {
+ if (is.element(button)) {
button.pressed = this.active;
- } // Trigger an event
+ } // Always trigger events on the plyr / media element (not a fullscreen container) and let them bubble up
- triggerEvent.call(this.player, this.target, this.active ? 'enterfullscreen' : 'exitfullscreen', true);
- }
- }, {
- key: "toggleFallback",
- value: function toggleFallback() {
- var toggle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ const target = this.target === this.player.media ? this.target : this.player.elements.container; // Trigger an event
+
+ triggerEvent.call(this.player, target, this.active ? 'enterfullscreen' : 'exitfullscreen', true);
+ });
+ _defineProperty$1(this, "toggleFallback", (toggle = false) => {
// Store or restore scroll position
if (toggle) {
this.scrollPosition = {
@@ -4131,8 +3782,8 @@ typeof navigator === "object" && (function (global, factory) {
toggleClass(this.target, this.player.config.classNames.fullscreen.fallback, toggle); // Force full viewport on iPhone X+
if (browser.isIos) {
- var viewport = document.head.querySelector('meta[name="viewport"]');
- var property = 'viewport-fit=cover'; // Inject the viewport meta if required
+ let viewport = document.head.querySelector('meta[name="viewport"]');
+ const property = 'viewport-fit=cover'; // Inject the viewport meta if required
if (!viewport) {
viewport = document.createElement('meta');
@@ -4140,41 +3791,34 @@ typeof navigator === "object" && (function (global, factory) {
} // Check if the property already exists
- var hasProperty = is$1.string(viewport.content) && viewport.content.includes(property);
+ const hasProperty = is.string(viewport.content) && viewport.content.includes(property);
if (toggle) {
this.cleanupViewport = !hasProperty;
if (!hasProperty) {
- viewport.content += ",".concat(property);
+ viewport.content += `,${property}`;
}
} else if (this.cleanupViewport) {
- viewport.content = viewport.content.split(',').filter(function (part) {
- return part.trim() !== property;
- }).join(',');
+ viewport.content = viewport.content.split(',').filter(part => part.trim() !== property).join(',');
}
} // Toggle button and fire events
this.onChange();
- } // Trap focus inside container
+ });
- }, {
- key: "trapFocus",
- value: function trapFocus(event) {
+ _defineProperty$1(this, "trapFocus", event => {
// Bail if iOS, not active, not the tab key
if (browser.isIos || !this.active || event.key !== 'Tab' || event.keyCode !== 9) {
return;
} // Get the current focused element
- var focused = document.activeElement;
- var focusable = getElements.call(this.player, 'a[href], button:not(:disabled), input:not(:disabled), [tabindex]');
-
- var _focusable = _slicedToArray(focusable, 1),
- first = _focusable[0];
-
- var last = focusable[focusable.length - 1];
+ const focused = document.activeElement;
+ const focusable = getElements.call(this.player, 'a[href], button:not(:disabled), input:not(:disabled), [tabindex]');
+ const [first] = focusable;
+ const last = focusable[focusable.length - 1];
if (focused === last && !event.shiftKey) {
// Move focus to first element that can be tabbed if Shift isn't used
@@ -4185,13 +3829,11 @@ typeof navigator === "object" && (function (global, factory) {
last.focus();
event.preventDefault();
}
- } // Update UI
+ });
- }, {
- key: "update",
- value: function update() {
+ _defineProperty$1(this, "update", () => {
if (this.enabled) {
- var mode;
+ let mode;
if (this.forceFallback) {
mode = 'Fallback (forced)';
@@ -4201,39 +3843,39 @@ typeof navigator === "object" && (function (global, factory) {
mode = 'Fallback';
}
- this.player.debug.log("".concat(mode, " fullscreen enabled"));
+ this.player.debug.log(`${mode} fullscreen enabled`);
} else {
this.player.debug.log('Fullscreen not supported and fallback disabled');
} // Add styling hook to show button
toggleClass(this.player.elements.container, this.player.config.classNames.fullscreen.enabled, this.enabled);
- } // Make an element fullscreen
+ });
- }, {
- key: "enter",
- value: function enter() {
+ _defineProperty$1(this, "enter", () => {
if (!this.enabled) {
return;
} // iOS native fullscreen doesn't need the request step
if (browser.isIos && this.player.config.fullscreen.iosNative) {
- this.target.webkitEnterFullscreen();
+ if (this.player.isVimeo) {
+ this.player.embed.requestFullscreen();
+ } else {
+ this.target.webkitEnterFullscreen();
+ }
} else if (!Fullscreen.native || this.forceFallback) {
this.toggleFallback(true);
} else if (!this.prefix) {
this.target.requestFullscreen({
navigationUI: 'hide'
});
- } else if (!is$1.empty(this.prefix)) {
- this.target["".concat(this.prefix, "Request").concat(this.property)]();
+ } else if (!is.empty(this.prefix)) {
+ this.target[`${this.prefix}Request${this.property}`]();
}
- } // Bail from fullscreen
+ });
- }, {
- key: "exit",
- value: function exit() {
+ _defineProperty$1(this, "exit", () => {
if (!this.enabled) {
return;
} // iOS native fullscreen
@@ -4246,103 +3888,128 @@ typeof navigator === "object" && (function (global, factory) {
this.toggleFallback(false);
} else if (!this.prefix) {
(document.cancelFullScreen || document.exitFullscreen).call(document);
- } else if (!is$1.empty(this.prefix)) {
- var action = this.prefix === 'moz' ? 'Cancel' : 'Exit';
- document["".concat(this.prefix).concat(action).concat(this.property)]();
+ } else if (!is.empty(this.prefix)) {
+ const action = this.prefix === 'moz' ? 'Cancel' : 'Exit';
+ document[`${this.prefix}${action}${this.property}`]();
}
- } // Toggle state
+ });
- }, {
- key: "toggle",
- value: function toggle() {
+ _defineProperty$1(this, "toggle", () => {
if (!this.active) {
this.enter();
} else {
this.exit();
}
- }
- }, {
- key: "usingNative",
- // If we're actually using native
- get: function get() {
- return Fullscreen.native && !this.forceFallback;
- } // Get the prefix for handlers
+ });
- }, {
- key: "enabled",
- // Determine if fullscreen is enabled
- get: function get() {
- return (Fullscreen.native || this.player.config.fullscreen.fallback) && this.player.config.fullscreen.enabled && this.player.supported.ui && this.player.isVideo;
- } // Get active state
+ // Keep reference to parent
+ this.player = player; // Get prefix
- }, {
- key: "active",
- get: function get() {
- if (!this.enabled) {
- return false;
- } // Fallback using classname
+ this.prefix = Fullscreen.prefix;
+ this.property = Fullscreen.property; // Scroll position
+ this.scrollPosition = {
+ x: 0,
+ y: 0
+ }; // Force the use of 'full window/browser' rather than fullscreen
+
+ this.forceFallback = player.config.fullscreen.fallback === 'force'; // Get the fullscreen element
+ // Checks container is an ancestor, defaults to null
+
+ this.player.elements.fullscreen = player.config.fullscreen.container && closest$1(this.player.elements.container, player.config.fullscreen.container); // Register event listeners
+ // Handle event (incase user presses escape etc)
- if (!Fullscreen.native || this.forceFallback) {
- return hasClass(this.target, this.player.config.classNames.fullscreen.fallback);
+ on.call(this.player, document, this.prefix === 'ms' ? 'MSFullscreenChange' : `${this.prefix}fullscreenchange`, () => {
+ // TODO: Filter for target??
+ this.onChange();
+ }); // Fullscreen toggle on double click
+
+ on.call(this.player, this.player.elements.container, 'dblclick', event => {
+ // Ignore double click in controls
+ if (is.element(this.player.elements.controls) && this.player.elements.controls.contains(event.target)) {
+ return;
}
- var element = !this.prefix ? document.fullscreenElement : document["".concat(this.prefix).concat(this.property, "Element")];
- return element && element.shadowRoot ? element === this.target.getRootNode().host : element === this.target;
- } // Get target element
+ this.player.listeners.proxy(event, this.toggle, 'fullscreen');
+ }); // Tap focus when in fullscreen
- }, {
- key: "target",
- get: function get() {
- return browser.isIos && this.player.config.fullscreen.iosNative ? this.player.media : this.player.elements.fullscreen || this.player.elements.container;
- }
- }], [{
- key: "native",
- get: function get() {
- return !!(document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled);
- }
- }, {
- key: "prefix",
- get: function get() {
- // No prefix
- if (is$1.function(document.exitFullscreen)) {
- return '';
- } // Check for fullscreen support by vendor prefix
-
-
- var value = '';
- var prefixes = ['webkit', 'moz', 'ms'];
- prefixes.some(function (pre) {
- if (is$1.function(document["".concat(pre, "ExitFullscreen")]) || is$1.function(document["".concat(pre, "CancelFullScreen")])) {
- value = pre;
- return true;
- }
+ on.call(this, this.player.elements.container, 'keydown', event => this.trapFocus(event)); // Update the UI
- return false;
- });
- return value;
- }
- }, {
- key: "property",
- get: function get() {
- return this.prefix === 'moz' ? 'FullScreen' : 'Fullscreen';
+ this.update(); // this.toggle = this.toggle.bind(this);
+ } // Determine if native supported
+
+
+ static get native() {
+ return !!(document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled);
+ } // If we're actually using native
+
+
+ get usingNative() {
+ return Fullscreen.native && !this.forceFallback;
+ } // Get the prefix for handlers
+
+
+ static get prefix() {
+ // No prefix
+ if (is.function(document.exitFullscreen)) {
+ return '';
+ } // Check for fullscreen support by vendor prefix
+
+
+ let value = '';
+ const prefixes = ['webkit', 'moz', 'ms'];
+ prefixes.some(pre => {
+ if (is.function(document[`${pre}ExitFullscreen`]) || is.function(document[`${pre}CancelFullScreen`])) {
+ value = pre;
+ return true;
+ }
+
+ return false;
+ });
+ return value;
+ }
+
+ static get property() {
+ return this.prefix === 'moz' ? 'FullScreen' : 'Fullscreen';
+ } // Determine if fullscreen is enabled
+
+
+ get enabled() {
+ return (Fullscreen.native || this.player.config.fullscreen.fallback) && this.player.config.fullscreen.enabled && this.player.supported.ui && this.player.isVideo;
+ } // Get active state
+
+
+ get active() {
+ if (!this.enabled) {
+ return false;
+ } // Fallback using classname
+
+
+ if (!Fullscreen.native || this.forceFallback) {
+ return hasClass(this.target, this.player.config.classNames.fullscreen.fallback);
}
- }]);
- return Fullscreen;
- }();
+ const element = !this.prefix ? document.fullscreenElement : document[`${this.prefix}${this.property}Element`];
+ return element && element.shadowRoot ? element === this.target.getRootNode().host : element === this.target;
+ } // Get target element
+
+
+ get target() {
+ return browser.isIos && this.player.config.fullscreen.iosNative ? this.player.media : this.player.elements.fullscreen || this.player.elements.container;
+ }
+
+ }
// ==========================================================================
// Load image avoiding xhr/fetch CORS issues
// Server status can't be obtained this way unfortunately, so this uses "naturalWidth" to determine if the image has loaded
// By default it checks if it is at least 1px, but you can add a second argument to change this
// ==========================================================================
- function loadImage(src) {
- var minWidth = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
- return new Promise(function (resolve, reject) {
- var image = new Image();
+ function loadImage(src, minWidth = 1) {
+ return new Promise((resolve, reject) => {
+ const image = new Image();
- var handler = function handler() {
+ const handler = () => {
delete image.onload;
delete image.onerror;
(image.naturalWidth >= minWidth ? resolve : reject)(image);
@@ -4351,36 +4018,35 @@ typeof navigator === "object" && (function (global, factory) {
Object.assign(image, {
onload: handler,
onerror: handler,
- src: src
+ src
});
});
}
- var ui = {
- addStyleHook: function addStyleHook() {
+ // ==========================================================================
+ const ui = {
+ addStyleHook() {
toggleClass(this.elements.container, this.config.selectors.container.replace('.', ''), true);
toggleClass(this.elements.container, this.config.classNames.uiSupported, this.supported.ui);
},
- // Toggle native HTML5 media controls
- toggleNativeControls: function toggleNativeControls() {
- var toggle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ // Toggle native HTML5 media controls
+ toggleNativeControls(toggle = false) {
if (toggle && this.isHTML5) {
this.media.setAttribute('controls', '');
} else {
this.media.removeAttribute('controls');
}
},
- // Setup the UI
- build: function build() {
- var _this = this;
+ // Setup the UI
+ build() {
// Re-attach media element listeners
// TODO: Use event bubbling?
this.listeners.media(); // Don't setup interface if no support
if (!this.supported.ui) {
- this.debug.warn("Basic support only for ".concat(this.provider, " ").concat(this.type)); // Restore native controls
+ this.debug.warn(`Basic support only for ${this.provider} ${this.type}`); // Restore native controls
ui.toggleNativeControls.call(this, true); // Bail
@@ -4388,7 +4054,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Inject custom controls if not present
- if (!is$1.element(this.elements.controls)) {
+ if (!is.element(this.elements.controls)) {
// Inject custom controls
controls.inject.call(this); // Re-attach control listeners
@@ -4429,14 +4095,14 @@ typeof navigator === "object" && (function (global, factory) {
this.ready = true; // Ready event at end of execution stack
- setTimeout(function () {
- triggerEvent.call(_this, _this.media, 'ready');
+ setTimeout(() => {
+ triggerEvent.call(this, this.media, 'ready');
}, 0); // Set the title
ui.setTitle.call(this); // Assure the poster image is set, if the property was added before the element was created
if (this.poster) {
- ui.setPoster.call(this, this.poster, false).catch(function () {});
+ ui.setPoster.call(this, this.poster, false).catch(() => {});
} // Manually set the duration if user has overridden it.
// The event listeners for it doesn't get called if preload is disabled (#701)
@@ -4445,326 +4111,169 @@ typeof navigator === "object" && (function (global, factory) {
controls.durationUpdate.call(this);
}
},
+
// Setup aria attribute for play and iframe title
- setTitle: function setTitle() {
+ setTitle() {
// Find the current text
- var label = i18n.get('play', this.config); // If there's a media title set, use that for the label
+ let label = i18n.get('play', this.config); // If there's a media title set, use that for the label
- if (is$1.string(this.config.title) && !is$1.empty(this.config.title)) {
- label += ", ".concat(this.config.title);
+ if (is.string(this.config.title) && !is.empty(this.config.title)) {
+ label += `, ${this.config.title}`;
} // If there's a play button, set label
- Array.from(this.elements.buttons.play || []).forEach(function (button) {
+ Array.from(this.elements.buttons.play || []).forEach(button => {
button.setAttribute('aria-label', label);
}); // Set iframe title
// https://github.com/sampotts/plyr/issues/124
if (this.isEmbed) {
- var iframe = getElement.call(this, 'iframe');
+ const iframe = getElement.call(this, 'iframe');
- if (!is$1.element(iframe)) {
+ if (!is.element(iframe)) {
return;
} // Default to media type
- var title = !is$1.empty(this.config.title) ? this.config.title : 'video';
- var format = i18n.get('frameTitle', this.config);
+ const title = !is.empty(this.config.title) ? this.config.title : 'video';
+ const format = i18n.get('frameTitle', this.config);
iframe.setAttribute('title', format.replace('{title}', title));
}
},
+
// Toggle poster
- togglePoster: function togglePoster(enable) {
+ togglePoster(enable) {
toggleClass(this.elements.container, this.config.classNames.posterEnabled, enable);
},
+
// Set the poster image (async)
// Used internally for the poster setter, with the passive option forced to false
- setPoster: function setPoster(poster) {
- var _this2 = this;
-
- var passive = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
-
+ setPoster(poster, passive = true) {
// Don't override if call is passive
if (passive && this.poster) {
return Promise.reject(new Error('Poster already set'));
} // Set property synchronously to respect the call order
- this.media.setAttribute('data-poster', poster); // Wait until ui is ready
+ this.media.setAttribute('data-poster', poster); // Show the poster
+
+ this.elements.poster.removeAttribute('hidden'); // Wait until ui is ready
return ready.call(this) // Load image
- .then(function () {
- return loadImage(poster);
- }).catch(function (err) {
+ .then(() => loadImage(poster)).catch(err => {
// Hide poster on error unless it's been set by another call
- if (poster === _this2.poster) {
- ui.togglePoster.call(_this2, false);
+ if (poster === this.poster) {
+ ui.togglePoster.call(this, false);
} // Rethrow
throw err;
- }).then(function () {
+ }).then(() => {
// Prevent race conditions
- if (poster !== _this2.poster) {
+ if (poster !== this.poster) {
throw new Error('setPoster cancelled by later call to setPoster');
}
- }).then(function () {
- Object.assign(_this2.elements.poster.style, {
- backgroundImage: "url('".concat(poster, "')"),
+ }).then(() => {
+ Object.assign(this.elements.poster.style, {
+ backgroundImage: `url('${poster}')`,
// Reset backgroundSize as well (since it can be set to "cover" for padded thumbnails for youtube)
backgroundSize: ''
});
- ui.togglePoster.call(_this2, true);
+ ui.togglePoster.call(this, true);
return poster;
});
},
- // Check playing state
- checkPlaying: function checkPlaying(event) {
- var _this3 = this;
+ // Check playing state
+ checkPlaying(event) {
// Class hooks
toggleClass(this.elements.container, this.config.classNames.playing, this.playing);
toggleClass(this.elements.container, this.config.classNames.paused, this.paused);
toggleClass(this.elements.container, this.config.classNames.stopped, this.stopped); // Set state
- Array.from(this.elements.buttons.play || []).forEach(function (target) {
+ Array.from(this.elements.buttons.play || []).forEach(target => {
Object.assign(target, {
- pressed: _this3.playing
+ pressed: this.playing
});
- target.setAttribute('aria-label', i18n.get(_this3.playing ? 'pause' : 'play', _this3.config));
+ target.setAttribute('aria-label', i18n.get(this.playing ? 'pause' : 'play', this.config));
}); // Only update controls on non timeupdate events
- if (is$1.event(event) && event.type === 'timeupdate') {
+ if (is.event(event) && event.type === 'timeupdate') {
return;
} // Toggle controls
ui.toggleControls.call(this);
},
- // Check if media is loading
- checkLoading: function checkLoading(event) {
- var _this4 = this;
+ // Check if media is loading
+ checkLoading(event) {
this.loading = ['stalled', 'waiting'].includes(event.type); // Clear timer
clearTimeout(this.timers.loading); // Timer to prevent flicker when seeking
- this.timers.loading = setTimeout(function () {
+ this.timers.loading = setTimeout(() => {
// Update progress bar loading class state
- toggleClass(_this4.elements.container, _this4.config.classNames.loading, _this4.loading); // Update controls visibility
+ toggleClass(this.elements.container, this.config.classNames.loading, this.loading); // Update controls visibility
- ui.toggleControls.call(_this4);
+ ui.toggleControls.call(this);
}, this.loading ? 250 : 0);
},
+
// Toggle controls based on state and `force` argument
- toggleControls: function toggleControls(force) {
- var controlsElement = this.elements.controls;
+ toggleControls(force) {
+ const {
+ controls: controlsElement
+ } = this.elements;
if (controlsElement && this.config.hideControls) {
// Don't hide controls if a touch-device user recently seeked. (Must be limited to touch devices, or it occasionally prevents desktop controls from hiding.)
- var recentTouchSeek = this.touch && this.lastSeekTime + 2000 > Date.now(); // Show controls if force, loading, paused, button interaction, or recent seek, otherwise hide
+ const recentTouchSeek = this.touch && this.lastSeekTime + 2000 > Date.now(); // Show controls if force, loading, paused, button interaction, or recent seek, otherwise hide
this.toggleControls(Boolean(force || this.loading || this.paused || controlsElement.pressed || controlsElement.hover || recentTouchSeek));
}
},
- // Migrate any custom properties from the media to the parent
- migrateStyles: function migrateStyles() {
- var _this5 = this;
+ // Migrate any custom properties from the media to the parent
+ migrateStyles() {
// Loop through values (as they are the keys when the object is spread 🤔)
- Object.values(_objectSpread2({}, this.media.style)) // We're only fussed about Plyr specific properties
- .filter(function (key) {
- return !is$1.empty(key) && key.startsWith('--plyr');
- }).forEach(function (key) {
+ Object.values({ ...this.media.style
+ }) // We're only fussed about Plyr specific properties
+ .filter(key => !is.empty(key) && is.string(key) && key.startsWith('--plyr')).forEach(key => {
// Set on the container
- _this5.elements.container.style.setProperty(key, _this5.media.style.getPropertyValue(key)); // Clean up from media element
-
+ this.elements.container.style.setProperty(key, this.media.style.getPropertyValue(key)); // Clean up from media element
- _this5.media.style.removeProperty(key);
+ this.media.style.removeProperty(key);
}); // Remove attribute if empty
- if (is$1.empty(this.media.style)) {
+ if (is.empty(this.media.style)) {
this.media.removeAttribute('style');
}
}
- };
-
- var Listeners = /*#__PURE__*/function () {
- function Listeners(player) {
- _classCallCheck(this, Listeners);
-
- this.player = player;
- this.lastKey = null;
- this.focusTimer = null;
- this.lastKeyDown = null;
- this.handleKey = this.handleKey.bind(this);
- this.toggleMenu = this.toggleMenu.bind(this);
- this.setTabFocus = this.setTabFocus.bind(this);
- this.firstTouch = this.firstTouch.bind(this);
- } // Handle key presses
+ };
- _createClass(Listeners, [{
- key: "handleKey",
- value: function handleKey(event) {
- var player = this.player;
- var elements = player.elements;
- var code = event.keyCode ? event.keyCode : event.which;
- var pressed = event.type === 'keydown';
- var repeat = pressed && code === this.lastKey; // Bail if a modifier key is set
-
- if (event.altKey || event.ctrlKey || event.metaKey || event.shiftKey) {
- return;
- } // If the event is bubbled from the media element
- // Firefox doesn't get the keycode for whatever reason
-
-
- if (!is$1.number(code)) {
- return;
- } // Seek by the number keys
-
-
- var seekByKey = function seekByKey() {
- // Divide the max duration into 10th's and times by the number value
- player.currentTime = player.duration / 10 * (code - 48);
- }; // Handle the key on keydown
- // Reset on keyup
-
-
- if (pressed) {
- // Check focused element
- // and if the focused element is not editable (e.g. text input)
- // and any that accept key input http://webaim.org/techniques/keyboard/
- var focused = document.activeElement;
-
- if (is$1.element(focused)) {
- var editable = player.config.selectors.editable;
- var seek = elements.inputs.seek;
-
- if (focused !== seek && matches$1(focused, editable)) {
- return;
- }
-
- if (event.which === 32 && matches$1(focused, 'button, [role^="menuitem"]')) {
- return;
- }
- } // Which keycodes should we prevent default
-
-
- var preventDefault = [32, 37, 38, 39, 40, 48, 49, 50, 51, 52, 53, 54, 56, 57, 67, 70, 73, 75, 76, 77, 79]; // If the code is found prevent default (e.g. prevent scrolling for arrows)
-
- if (preventDefault.includes(code)) {
- event.preventDefault();
- event.stopPropagation();
- }
-
- switch (code) {
- case 48:
- case 49:
- case 50:
- case 51:
- case 52:
- case 53:
- case 54:
- case 55:
- case 56:
- case 57:
- // 0-9
- if (!repeat) {
- seekByKey();
- }
-
- break;
-
- case 32:
- case 75:
- // Space and K key
- if (!repeat) {
- silencePromise(player.togglePlay());
- }
-
- break;
-
- case 38:
- // Arrow up
- player.increaseVolume(0.1);
- break;
-
- case 40:
- // Arrow down
- player.decreaseVolume(0.1);
- break;
-
- case 77:
- // M key
- if (!repeat) {
- player.muted = !player.muted;
- }
-
- break;
-
- case 39:
- // Arrow forward
- player.forward();
- break;
-
- case 37:
- // Arrow back
- player.rewind();
- break;
-
- case 70:
- // F key
- player.fullscreen.toggle();
- break;
-
- case 67:
- // C key
- if (!repeat) {
- player.toggleCaptions();
- }
-
- break;
-
- case 76:
- // L key
- player.loop = !player.loop;
- break;
- } // Escape is handle natively when in full screen
- // So we only need to worry about non native
-
-
- if (code === 27 && !player.fullscreen.usingNative && player.fullscreen.active) {
- player.fullscreen.toggle();
- } // Store last code for next cycle
-
-
- this.lastKey = code;
- } else {
- this.lastKey = null;
- }
- } // Toggle menu
-
- }, {
- key: "toggleMenu",
- value: function toggleMenu(event) {
- controls.toggleMenu.call(this.player, event);
- } // Device is touch enabled
-
- }, {
- key: "firstTouch",
- value: function firstTouch() {
- var player = this.player;
- var elements = player.elements;
+ class Listeners {
+ constructor(_player) {
+ _defineProperty$1(this, "firstTouch", () => {
+ const {
+ player
+ } = this;
+ const {
+ elements
+ } = player;
player.touch = true; // Add touch class
toggleClass(elements.container, player.config.classNames.isTouch, true);
- }
- }, {
- key: "setTabFocus",
- value: function setTabFocus(event) {
- var player = this.player;
- var elements = player.elements;
+ });
+
+ _defineProperty$1(this, "setTabFocus", event => {
+ const {
+ player
+ } = this;
+ const {
+ elements
+ } = player;
clearTimeout(this.focusTimer); // Ignore any key other than tab
if (event.type === 'keydown' && event.which !== 9) {
@@ -4777,14 +4286,14 @@ typeof navigator === "object" && (function (global, factory) {
} // Remove current classes
- var removeCurrent = function removeCurrent() {
- var className = player.config.classNames.tabFocus;
- var current = getElements.call(player, ".".concat(className));
+ const removeCurrent = () => {
+ const className = player.config.classNames.tabFocus;
+ const current = getElements.call(player, `.${className}`);
toggleClass(current, className, false);
}; // Determine if a key was pressed to trigger this event
- var wasKeyDown = event.timeStamp - this.lastKeyDown <= 20; // Ignore focus events if a key was pressed prior
+ const wasKeyDown = event.timeStamp - this.lastKeyDown <= 20; // Ignore focus events if a key was pressed prior
if (event.type === 'focus' && !wasKeyDown) {
return;
@@ -4795,8 +4304,8 @@ typeof navigator === "object" && (function (global, factory) {
// This event fires before the focusin event
if (event.type !== 'focusout') {
- this.focusTimer = setTimeout(function () {
- var focused = document.activeElement; // Ignore if current focus element isn't inside the player
+ this.focusTimer = setTimeout(() => {
+ const focused = document.activeElement; // Ignore if current focus element isn't inside the player
if (!elements.container.contains(focused)) {
return;
@@ -4805,13 +4314,12 @@ typeof navigator === "object" && (function (global, factory) {
toggleClass(document.activeElement, player.config.classNames.tabFocus, true);
}, 10);
}
- } // Global window & document listeners
+ });
- }, {
- key: "global",
- value: function global() {
- var toggle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
- var player = this.player; // Keyboard shortcuts
+ _defineProperty$1(this, "global", (toggle = true) => {
+ const {
+ player
+ } = this; // Keyboard shortcuts
if (player.config.keyboard.global) {
toggleListener.call(player, window, 'keydown keyup', this.handleKey, toggle, false);
@@ -4823,23 +4331,27 @@ typeof navigator === "object" && (function (global, factory) {
once.call(player, document.body, 'touchstart', this.firstTouch); // Tab focus detection
toggleListener.call(player, document.body, 'keydown focus blur focusout', this.setTabFocus, toggle, false, true);
- } // Container listeners
+ });
- }, {
- key: "container",
- value: function container() {
- var player = this.player;
- var config = player.config,
- elements = player.elements,
- timers = player.timers; // Keyboard shortcuts
+ _defineProperty$1(this, "container", () => {
+ const {
+ player
+ } = this;
+ const {
+ config,
+ elements,
+ timers
+ } = player; // Keyboard shortcuts
if (!config.keyboard.global && config.keyboard.focused) {
on.call(player, elements.container, 'keydown keyup', this.handleKey, false);
} // Toggle controls on mouse events and entering fullscreen
- on.call(player, elements.container, 'mousemove mouseleave touchstart touchmove enterfullscreen exitfullscreen', function (event) {
- var controlsElement = elements.controls; // Remove button states for fullscreen
+ on.call(player, elements.container, 'mousemove mouseleave touchstart touchmove enterfullscreen exitfullscreen', event => {
+ const {
+ controls: controlsElement
+ } = elements; // Remove button states for fullscreen
if (controlsElement && event.type === 'enterfullscreen') {
controlsElement.pressed = false;
@@ -4847,8 +4359,8 @@ typeof navigator === "object" && (function (global, factory) {
} // Show, then hide after a timeout unless another control event occurs
- var show = ['touchstart', 'touchmove', 'mousemove'].includes(event.type);
- var delay = 0;
+ const show = ['touchstart', 'touchmove', 'mousemove'].includes(event.type);
+ let delay = 0;
if (show) {
ui.toggleControls.call(player, true); // Use longer timeout for touch devices
@@ -4859,98 +4371,87 @@ typeof navigator === "object" && (function (global, factory) {
clearTimeout(timers.controls); // Set new timer to prevent flicker when seeking
- timers.controls = setTimeout(function () {
- return ui.toggleControls.call(player, false);
- }, delay);
+ timers.controls = setTimeout(() => ui.toggleControls.call(player, false), delay);
}); // Set a gutter for Vimeo
- var setGutter = function setGutter(ratio, padding, toggle) {
+ const setGutter = () => {
if (!player.isVimeo || player.config.vimeo.premium) {
return;
}
- var target = player.elements.wrapper.firstChild;
-
- var _ratio = _slicedToArray(ratio, 2),
- y = _ratio[1];
+ const target = elements.wrapper;
+ const {
+ active
+ } = player.fullscreen;
+ const [videoWidth, videoHeight] = getAspectRatio.call(player);
+ const useNativeAspectRatio = supportsCSS(`aspect-ratio: ${videoWidth} / ${videoHeight}`); // If not active, remove styles
+
+ if (!active) {
+ if (useNativeAspectRatio) {
+ target.style.width = null;
+ target.style.height = null;
+ } else {
+ target.style.maxWidth = null;
+ target.style.margin = null;
+ }
- var _getAspectRatio$call = getAspectRatio.call(player),
- _getAspectRatio$call2 = _slicedToArray(_getAspectRatio$call, 2),
- videoX = _getAspectRatio$call2[0],
- videoY = _getAspectRatio$call2[1];
+ return;
+ } // Determine which dimension will overflow and constrain view
- target.style.maxWidth = toggle ? "".concat(y / videoY * videoX, "px") : null;
- target.style.margin = toggle ? '0 auto' : null;
- }; // Resize on fullscreen change
+ const [viewportWidth, viewportHeight] = getViewportSize();
+ const overflow = viewportWidth / viewportHeight > videoWidth / videoHeight;
- var setPlayerSize = function setPlayerSize(measure) {
- // If we don't need to measure the viewport
- if (!measure) {
- return setAspectRatio.call(player);
+ if (useNativeAspectRatio) {
+ target.style.width = overflow ? 'auto' : '100%';
+ target.style.height = overflow ? '100%' : 'auto';
+ } else {
+ target.style.maxWidth = overflow ? `${viewportHeight / videoHeight * videoWidth}px` : null;
+ target.style.margin = overflow ? '0 auto' : null;
}
+ }; // Handle resizing
- var rect = elements.container.getBoundingClientRect();
- var width = rect.width,
- height = rect.height;
- return setAspectRatio.call(player, "".concat(width, ":").concat(height));
- };
- var resized = function resized() {
+ const resized = () => {
clearTimeout(timers.resized);
- timers.resized = setTimeout(setPlayerSize, 50);
+ timers.resized = setTimeout(setGutter, 50);
};
- on.call(player, elements.container, 'enterfullscreen exitfullscreen', function (event) {
- var _player$fullscreen = player.fullscreen,
- target = _player$fullscreen.target,
- usingNative = _player$fullscreen.usingNative; // Ignore events not from target
+ on.call(player, elements.container, 'enterfullscreen exitfullscreen', event => {
+ const {
+ target
+ } = player.fullscreen; // Ignore events not from target
if (target !== elements.container) {
return;
} // If it's not an embed and no ratio specified
- if (!player.isEmbed && is$1.empty(player.config.ratio)) {
+ if (!player.isEmbed && is.empty(player.config.ratio)) {
return;
- }
+ } // Set Vimeo gutter
- var isEnter = event.type === 'enterfullscreen'; // Set the player size when entering fullscreen to viewport size
- var _setPlayerSize = setPlayerSize(isEnter),
- padding = _setPlayerSize.padding,
- ratio = _setPlayerSize.ratio; // Set Vimeo gutter
+ setGutter(); // Watch for resizes
-
- setGutter(ratio, padding, isEnter); // If not using native browser fullscreen API, we need to check for resizes of viewport
-
- if (!usingNative) {
- if (isEnter) {
- on.call(player, window, 'resize', resized);
- } else {
- off.call(player, window, 'resize', resized);
- }
- }
+ const method = event.type === 'enterfullscreen' ? on : off;
+ method.call(player, window, 'resize', resized);
});
- } // Listen for media events
-
- }, {
- key: "media",
- value: function media() {
- var _this = this;
+ });
- var player = this.player;
- var elements = player.elements; // Time change on media
+ _defineProperty$1(this, "media", () => {
+ const {
+ player
+ } = this;
+ const {
+ elements
+ } = player; // Time change on media
- on.call(player, player.media, 'timeupdate seeking seeked', function (event) {
- return controls.timeUpdate.call(player, event);
- }); // Display duration
+ on.call(player, player.media, 'timeupdate seeking seeked', event => controls.timeUpdate.call(player, event)); // Display duration
- on.call(player, player.media, 'durationchange loadeddata loadedmetadata', function (event) {
- return controls.durationUpdate.call(player, event);
- }); // Handle the media finishing
+ on.call(player, player.media, 'durationchange loadeddata loadedmetadata', event => controls.durationUpdate.call(player, event)); // Handle the media finishing
- on.call(player, player.media, 'ended', function () {
+ on.call(player, player.media, 'ended', () => {
// Show poster on end
if (player.isHTML5 && player.isVideo && player.config.resetOnEnd) {
// Restart
@@ -4960,33 +4461,25 @@ typeof navigator === "object" && (function (global, factory) {
}
}); // Check for buffer progress
- on.call(player, player.media, 'progress playing seeking seeked', function (event) {
- return controls.updateProgress.call(player, event);
- }); // Handle volume changes
+ on.call(player, player.media, 'progress playing seeking seeked', event => controls.updateProgress.call(player, event)); // Handle volume changes
- on.call(player, player.media, 'volumechange', function (event) {
- return controls.updateVolume.call(player, event);
- }); // Handle play/pause
+ on.call(player, player.media, 'volumechange', event => controls.updateVolume.call(player, event)); // Handle play/pause
- on.call(player, player.media, 'playing play pause ended emptied timeupdate', function (event) {
- return ui.checkPlaying.call(player, event);
- }); // Loading state
+ on.call(player, player.media, 'playing play pause ended emptied timeupdate', event => ui.checkPlaying.call(player, event)); // Loading state
- on.call(player, player.media, 'waiting canplay seeked playing', function (event) {
- return ui.checkLoading.call(player, event);
- }); // Click video
+ on.call(player, player.media, 'waiting canplay seeked playing', event => ui.checkLoading.call(player, event)); // Click video
if (player.supported.ui && player.config.clickToPlay && !player.isAudio) {
// Re-fetch the wrapper
- var wrapper = getElement.call(player, ".".concat(player.config.classNames.video)); // Bail if there's no wrapper (this should never happen)
+ const wrapper = getElement.call(player, `.${player.config.classNames.video}`); // Bail if there's no wrapper (this should never happen)
- if (!is$1.element(wrapper)) {
+ if (!is.element(wrapper)) {
return;
} // On click play, pause or restart
- on.call(player, elements.container, 'click', function (event) {
- var targets = [elements.container, wrapper]; // Ignore if click if not container or in video wrapper
+ on.call(player, elements.container, 'click', event => {
+ const targets = [elements.container, wrapper]; // Ignore if click if not container or in video wrapper
if (!targets.includes(event.target) && !wrapper.contains(event.target)) {
return;
@@ -4998,13 +4491,12 @@ typeof navigator === "object" && (function (global, factory) {
}
if (player.ended) {
- _this.proxy(event, player.restart, 'restart');
-
- _this.proxy(event, function () {
+ this.proxy(event, player.restart, 'restart');
+ this.proxy(event, () => {
silencePromise(player.play());
}, 'play');
} else {
- _this.proxy(event, function () {
+ this.proxy(event, () => {
silencePromise(player.togglePlay());
}, 'play');
}
@@ -5013,13 +4505,13 @@ typeof navigator === "object" && (function (global, factory) {
if (player.supported.ui && player.config.disableContextMenu) {
- on.call(player, elements.wrapper, 'contextmenu', function (event) {
+ on.call(player, elements.wrapper, 'contextmenu', event => {
event.preventDefault();
}, false);
} // Volume change
- on.call(player, player.media, 'volumechange', function () {
+ on.call(player, player.media, 'volumechange', () => {
// Save to storage
player.storage.set({
volume: player.volume,
@@ -5027,30 +4519,30 @@ typeof navigator === "object" && (function (global, factory) {
});
}); // Speed change
- on.call(player, player.media, 'ratechange', function () {
+ on.call(player, player.media, 'ratechange', () => {
// Update UI
controls.updateSetting.call(player, 'speed'); // Save to storage
-
player.storage.set({
speed: player.speed
});
}); // Quality change
- on.call(player, player.media, 'qualitychange', function (event) {
+ on.call(player, player.media, 'qualitychange', event => {
// Update UI
controls.updateSetting.call(player, 'quality', null, event.detail.quality);
}); // Update download link when ready and if quality changes
- on.call(player, player.media, 'ready qualitychange', function () {
+ on.call(player, player.media, 'ready qualitychange', () => {
controls.setDownloadUrl.call(player);
}); // Proxy events to container
// Bubble up key events for Edge
- var proxyEvents = player.config.events.concat(['keyup', 'keydown']).join(' ');
- on.call(player, player.media, proxyEvents, function (event) {
- var _event$detail = event.detail,
- detail = _event$detail === void 0 ? {} : _event$detail; // Get error details from media
+ const proxyEvents = player.config.events.concat(['keyup', 'keydown']).join(' ');
+ on.call(player, player.media, proxyEvents, event => {
+ let {
+ detail = {}
+ } = event; // Get error details from media
if (event.type === 'error') {
detail = player.media.error;
@@ -5058,53 +4550,48 @@ typeof navigator === "object" && (function (global, factory) {
triggerEvent.call(player, elements.container, event.type, true, detail);
});
- } // Run default and custom handlers
+ });
- }, {
- key: "proxy",
- value: function proxy(event, defaultHandler, customHandlerKey) {
- var player = this.player;
- var customHandler = player.config.listeners[customHandlerKey];
- var hasCustomHandler = is$1.function(customHandler);
- var returned = true; // Execute custom handler
+ _defineProperty$1(this, "proxy", (event, defaultHandler, customHandlerKey) => {
+ const {
+ player
+ } = this;
+ const customHandler = player.config.listeners[customHandlerKey];
+ const hasCustomHandler = is.function(customHandler);
+ let returned = true; // Execute custom handler
if (hasCustomHandler) {
returned = customHandler.call(player, event);
} // Only call default handler if not prevented in custom handler
- if (returned !== false && is$1.function(defaultHandler)) {
+ if (returned !== false && is.function(defaultHandler)) {
defaultHandler.call(player, event);
}
- } // Trigger custom and default handlers
-
- }, {
- key: "bind",
- value: function bind(element, type, defaultHandler, customHandlerKey) {
- var _this2 = this;
-
- var passive = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true;
- var player = this.player;
- var customHandler = player.config.listeners[customHandlerKey];
- var hasCustomHandler = is$1.function(customHandler);
- on.call(player, element, type, function (event) {
- return _this2.proxy(event, defaultHandler, customHandlerKey);
- }, passive && !hasCustomHandler);
- } // Listen for control events
+ });
- }, {
- key: "controls",
- value: function controls$1() {
- var _this3 = this;
+ _defineProperty$1(this, "bind", (element, type, defaultHandler, customHandlerKey, passive = true) => {
+ const {
+ player
+ } = this;
+ const customHandler = player.config.listeners[customHandlerKey];
+ const hasCustomHandler = is.function(customHandler);
+ on.call(player, element, type, event => this.proxy(event, defaultHandler, customHandlerKey), passive && !hasCustomHandler);
+ });
- var player = this.player;
- var elements = player.elements; // IE doesn't support input event, so we fallback to change
+ _defineProperty$1(this, "controls", () => {
+ const {
+ player
+ } = this;
+ const {
+ elements
+ } = player; // IE doesn't support input event, so we fallback to change
- var inputEvent = browser.isIE ? 'change' : 'input'; // Play/pause toggle
+ const inputEvent = browser.isIE ? 'change' : 'input'; // Play/pause toggle
if (elements.buttons.play) {
- Array.from(elements.buttons.play).forEach(function (button) {
- _this3.bind(button, 'click', function () {
+ Array.from(elements.buttons.play).forEach(button => {
+ this.bind(button, 'click', () => {
silencePromise(player.togglePlay());
}, 'play');
});
@@ -5113,45 +4600,50 @@ typeof navigator === "object" && (function (global, factory) {
this.bind(elements.buttons.restart, 'click', player.restart, 'restart'); // Rewind
- this.bind(elements.buttons.rewind, 'click', player.rewind, 'rewind'); // Rewind
+ this.bind(elements.buttons.rewind, 'click', () => {
+ // Record seek time so we can prevent hiding controls for a few seconds after rewind
+ player.lastSeekTime = Date.now();
+ player.rewind();
+ }, 'rewind'); // Rewind
- this.bind(elements.buttons.fastForward, 'click', player.forward, 'fastForward'); // Mute toggle
+ this.bind(elements.buttons.fastForward, 'click', () => {
+ // Record seek time so we can prevent hiding controls for a few seconds after fast forward
+ player.lastSeekTime = Date.now();
+ player.forward();
+ }, 'fastForward'); // Mute toggle
- this.bind(elements.buttons.mute, 'click', function () {
+ this.bind(elements.buttons.mute, 'click', () => {
player.muted = !player.muted;
}, 'mute'); // Captions toggle
- this.bind(elements.buttons.captions, 'click', function () {
- return player.toggleCaptions();
- }); // Download
+ this.bind(elements.buttons.captions, 'click', () => player.toggleCaptions()); // Download
- this.bind(elements.buttons.download, 'click', function () {
+ this.bind(elements.buttons.download, 'click', () => {
triggerEvent.call(player, player.media, 'download');
}, 'download'); // Fullscreen toggle
- this.bind(elements.buttons.fullscreen, 'click', function () {
+ this.bind(elements.buttons.fullscreen, 'click', () => {
player.fullscreen.toggle();
}, 'fullscreen'); // Picture-in-Picture
- this.bind(elements.buttons.pip, 'click', function () {
+ this.bind(elements.buttons.pip, 'click', () => {
player.pip = 'toggle';
}, 'pip'); // Airplay
this.bind(elements.buttons.airplay, 'click', player.airplay, 'airplay'); // Settings menu - click toggle
- this.bind(elements.buttons.settings, 'click', function (event) {
+ this.bind(elements.buttons.settings, 'click', event => {
// Prevent the document click listener closing the menu
event.stopPropagation();
event.preventDefault();
-
controls.toggleMenu.call(player, event);
}, null, false); // Can't be passive as we're preventing default
// Settings menu - keyboard toggle
// We have to bind to keyup otherwise Firefox triggers a click when a keydown event handler shifts focus
// https://bugzilla.mozilla.org/show_bug.cgi?id=1220143
- this.bind(elements.buttons.settings, 'keyup', function (event) {
- var code = event.which; // We only care about space and return
+ this.bind(elements.buttons.settings, 'keyup', event => {
+ const code = event.which; // We only care about space and return
if (![13, 32].includes(code)) {
return;
@@ -5160,7 +4652,6 @@ typeof navigator === "object" && (function (global, factory) {
if (code === 13) {
controls.focusFirstMenuItem.call(player, null, true);
-
return;
} // Prevent scroll
@@ -5173,33 +4664,33 @@ typeof navigator === "object" && (function (global, factory) {
}, null, false // Can't be passive as we're preventing default
); // Escape closes menu
- this.bind(elements.settings.menu, 'keydown', function (event) {
+ this.bind(elements.settings.menu, 'keydown', event => {
if (event.which === 27) {
controls.toggleMenu.call(player, event);
}
}); // Set range input alternative "value", which matches the tooltip time (#954)
- this.bind(elements.inputs.seek, 'mousedown mousemove', function (event) {
- var rect = elements.progress.getBoundingClientRect();
- var percent = 100 / rect.width * (event.pageX - rect.left);
+ this.bind(elements.inputs.seek, 'mousedown mousemove', event => {
+ const rect = elements.progress.getBoundingClientRect();
+ const percent = 100 / rect.width * (event.pageX - rect.left);
event.currentTarget.setAttribute('seek-value', percent);
}); // Pause while seeking
- this.bind(elements.inputs.seek, 'mousedown mouseup keydown keyup touchstart touchend', function (event) {
- var seek = event.currentTarget;
- var code = event.keyCode ? event.keyCode : event.which;
- var attribute = 'play-on-seeked';
+ this.bind(elements.inputs.seek, 'mousedown mouseup keydown keyup touchstart touchend', event => {
+ const seek = event.currentTarget;
+ const code = event.keyCode ? event.keyCode : event.which;
+ const attribute = 'play-on-seeked';
- if (is$1.keyboardEvent(event) && code !== 39 && code !== 37) {
+ if (is.keyboardEvent(event) && code !== 39 && code !== 37) {
return;
} // Record seek time so we can prevent hiding controls for a few seconds after seek
player.lastSeekTime = Date.now(); // Was playing before?
- var play = seek.hasAttribute(attribute); // Done seeking
+ const play = seek.hasAttribute(attribute); // Done seeking
- var done = ['mouseup', 'touchend', 'keyup'].includes(event.type); // If we're done seeking and it was playing, resume playback
+ const done = ['mouseup', 'touchend', 'keyup'].includes(event.type); // If we're done seeking and it was playing, resume playback
if (play && done) {
seek.removeAttribute(attribute);
@@ -5213,21 +4704,17 @@ typeof navigator === "object" && (function (global, factory) {
// it takes over further interactions on the page. This is a hack
if (browser.isIos) {
- var inputs = getElements.call(player, 'input[type="range"]');
- Array.from(inputs).forEach(function (input) {
- return _this3.bind(input, inputEvent, function (event) {
- return repaint(event.target);
- });
- });
+ const inputs = getElements.call(player, 'input[type="range"]');
+ Array.from(inputs).forEach(input => this.bind(input, inputEvent, event => repaint(event.target)));
} // Seek
- this.bind(elements.inputs.seek, inputEvent, function (event) {
- var seek = event.currentTarget; // If it exists, use seek-value instead of "value" for consistency with tooltip time (#954)
+ this.bind(elements.inputs.seek, inputEvent, event => {
+ const seek = event.currentTarget; // If it exists, use seek-value instead of "value" for consistency with tooltip time (#954)
- var seekTo = seek.getAttribute('seek-value');
+ let seekTo = seek.getAttribute('seek-value');
- if (is$1.empty(seekTo)) {
+ if (is.empty(seekTo)) {
seekTo = seek.value;
}
@@ -5235,36 +4722,42 @@ typeof navigator === "object" && (function (global, factory) {
player.currentTime = seekTo / seek.max * player.duration;
}, 'seek'); // Seek tooltip
- this.bind(elements.progress, 'mouseenter mouseleave mousemove', function (event) {
- return controls.updateSeekTooltip.call(player, event);
- }); // Preview thumbnails plugin
+ this.bind(elements.progress, 'mouseenter mouseleave mousemove', event => controls.updateSeekTooltip.call(player, event)); // Preview thumbnails plugin
// TODO: Really need to work on some sort of plug-in wide event bus or pub-sub for this
- this.bind(elements.progress, 'mousemove touchmove', function (event) {
- var previewThumbnails = player.previewThumbnails;
+ this.bind(elements.progress, 'mousemove touchmove', event => {
+ const {
+ previewThumbnails
+ } = player;
if (previewThumbnails && previewThumbnails.loaded) {
previewThumbnails.startMove(event);
}
}); // Hide thumbnail preview - on mouse click, mouse leave, and video play/seek. All four are required, e.g., for buffering
- this.bind(elements.progress, 'mouseleave touchend click', function () {
- var previewThumbnails = player.previewThumbnails;
+ this.bind(elements.progress, 'mouseleave touchend click', () => {
+ const {
+ previewThumbnails
+ } = player;
if (previewThumbnails && previewThumbnails.loaded) {
previewThumbnails.endMove(false, true);
}
}); // Show scrubbing preview
- this.bind(elements.progress, 'mousedown touchstart', function (event) {
- var previewThumbnails = player.previewThumbnails;
+ this.bind(elements.progress, 'mousedown touchstart', event => {
+ const {
+ previewThumbnails
+ } = player;
if (previewThumbnails && previewThumbnails.loaded) {
previewThumbnails.startScrubbing(event);
}
});
- this.bind(elements.progress, 'mouseup touchend', function (event) {
- var previewThumbnails = player.previewThumbnails;
+ this.bind(elements.progress, 'mouseup touchend', event => {
+ const {
+ previewThumbnails
+ } = player;
if (previewThumbnails && previewThumbnails.loaded) {
previewThumbnails.endScrubbing(event);
@@ -5272,101 +4765,254 @@ typeof navigator === "object" && (function (global, factory) {
}); // Polyfill for lower fill in <input type="range"> for webkit
if (browser.isWebkit) {
- Array.from(getElements.call(player, 'input[type="range"]')).forEach(function (element) {
- _this3.bind(element, 'input', function (event) {
- return controls.updateRangeFill.call(player, event.target);
- });
+ Array.from(getElements.call(player, 'input[type="range"]')).forEach(element => {
+ this.bind(element, 'input', event => controls.updateRangeFill.call(player, event.target));
});
} // Current time invert
// Only if one time element is used for both currentTime and duration
- if (player.config.toggleInvert && !is$1.element(elements.display.duration)) {
- this.bind(elements.display.currentTime, 'click', function () {
+ if (player.config.toggleInvert && !is.element(elements.display.duration)) {
+ this.bind(elements.display.currentTime, 'click', () => {
// Do nothing if we're at the start
if (player.currentTime === 0) {
return;
}
player.config.invertTime = !player.config.invertTime;
-
controls.timeUpdate.call(player);
});
} // Volume
- this.bind(elements.inputs.volume, inputEvent, function (event) {
+ this.bind(elements.inputs.volume, inputEvent, event => {
player.volume = event.target.value;
}, 'volume'); // Update controls.hover state (used for ui.toggleControls to avoid hiding when interacting)
- this.bind(elements.controls, 'mouseenter mouseleave', function (event) {
+ this.bind(elements.controls, 'mouseenter mouseleave', event => {
elements.controls.hover = !player.touch && event.type === 'mouseenter';
}); // Also update controls.hover state for any non-player children of fullscreen element (as above)
if (elements.fullscreen) {
- Array.from(elements.fullscreen.children).filter(function (c) {
- return !c.contains(elements.container);
- }).forEach(function (child) {
- _this3.bind(child, 'mouseenter mouseleave', function (event) {
+ Array.from(elements.fullscreen.children).filter(c => !c.contains(elements.container)).forEach(child => {
+ this.bind(child, 'mouseenter mouseleave', event => {
elements.controls.hover = !player.touch && event.type === 'mouseenter';
});
});
} // Update controls.pressed state (used for ui.toggleControls to avoid hiding when interacting)
- this.bind(elements.controls, 'mousedown mouseup touchstart touchend touchcancel', function (event) {
+ this.bind(elements.controls, 'mousedown mouseup touchstart touchend touchcancel', event => {
elements.controls.pressed = ['mousedown', 'touchstart'].includes(event.type);
}); // Show controls when they receive focus (e.g., when using keyboard tab key)
- this.bind(elements.controls, 'focusin', function () {
- var config = player.config,
- timers = player.timers; // Skip transition to prevent focus from scrolling the parent element
+ this.bind(elements.controls, 'focusin', () => {
+ const {
+ config,
+ timers
+ } = player; // Skip transition to prevent focus from scrolling the parent element
toggleClass(elements.controls, config.classNames.noTransition, true); // Toggle
ui.toggleControls.call(player, true); // Restore transition
- setTimeout(function () {
+ setTimeout(() => {
toggleClass(elements.controls, config.classNames.noTransition, false);
}, 0); // Delay a little more for mouse users
- var delay = _this3.touch ? 3000 : 4000; // Clear timer
+ const delay = this.touch ? 3000 : 4000; // Clear timer
clearTimeout(timers.controls); // Hide again after delay
- timers.controls = setTimeout(function () {
- return ui.toggleControls.call(player, false);
- }, delay);
+ timers.controls = setTimeout(() => ui.toggleControls.call(player, false), delay);
}); // Mouse wheel for volume
- this.bind(elements.inputs.volume, 'wheel', function (event) {
+ this.bind(elements.inputs.volume, 'wheel', event => {
// Detect "natural" scroll - suppored on OS X Safari only
// Other browsers on OS X will be inverted until support improves
- var inverted = event.webkitDirectionInvertedFromDevice; // Get delta from event. Invert if `inverted` is true
-
- var _map = [event.deltaX, -event.deltaY].map(function (value) {
- return inverted ? -value : value;
- }),
- _map2 = _slicedToArray(_map, 2),
- x = _map2[0],
- y = _map2[1]; // Using the biggest delta, normalize to 1 or -1 (or 0 if no delta)
+ const inverted = event.webkitDirectionInvertedFromDevice; // Get delta from event. Invert if `inverted` is true
+ const [x, y] = [event.deltaX, -event.deltaY].map(value => inverted ? -value : value); // Using the biggest delta, normalize to 1 or -1 (or 0 if no delta)
- var direction = Math.sign(Math.abs(x) > Math.abs(y) ? x : y); // Change the volume by 2%
+ const direction = Math.sign(Math.abs(x) > Math.abs(y) ? x : y); // Change the volume by 2%
player.increaseVolume(direction / 50); // Don't break page scrolling at max and min
- var volume = player.media.volume;
+ const {
+ volume
+ } = player.media;
if (direction === 1 && volume < 1 || direction === -1 && volume > 0) {
event.preventDefault();
}
}, 'volume', false);
+ });
+
+ this.player = _player;
+ this.lastKey = null;
+ this.focusTimer = null;
+ this.lastKeyDown = null;
+ this.handleKey = this.handleKey.bind(this);
+ this.toggleMenu = this.toggleMenu.bind(this);
+ this.setTabFocus = this.setTabFocus.bind(this);
+ this.firstTouch = this.firstTouch.bind(this);
+ } // Handle key presses
+
+
+ handleKey(event) {
+ const {
+ player
+ } = this;
+ const {
+ elements
+ } = player;
+ const code = event.keyCode ? event.keyCode : event.which;
+ const pressed = event.type === 'keydown';
+ const repeat = pressed && code === this.lastKey; // Bail if a modifier key is set
+
+ if (event.altKey || event.ctrlKey || event.metaKey || event.shiftKey) {
+ return;
+ } // If the event is bubbled from the media element
+ // Firefox doesn't get the keycode for whatever reason
+
+
+ if (!is.number(code)) {
+ return;
+ } // Seek by the number keys
+
+
+ const seekByKey = () => {
+ // Divide the max duration into 10th's and times by the number value
+ player.currentTime = player.duration / 10 * (code - 48);
+ }; // Handle the key on keydown
+ // Reset on keyup
+
+
+ if (pressed) {
+ // Check focused element
+ // and if the focused element is not editable (e.g. text input)
+ // and any that accept key input http://webaim.org/techniques/keyboard/
+ const focused = document.activeElement;
+
+ if (is.element(focused)) {
+ const {
+ editable
+ } = player.config.selectors;
+ const {
+ seek
+ } = elements.inputs;
+
+ if (focused !== seek && matches(focused, editable)) {
+ return;
+ }
+
+ if (event.which === 32 && matches(focused, 'button, [role^="menuitem"]')) {
+ return;
+ }
+ } // Which keycodes should we prevent default
+
+
+ const preventDefault = [32, 37, 38, 39, 40, 48, 49, 50, 51, 52, 53, 54, 56, 57, 67, 70, 73, 75, 76, 77, 79]; // If the code is found prevent default (e.g. prevent scrolling for arrows)
+
+ if (preventDefault.includes(code)) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+
+ switch (code) {
+ case 48:
+ case 49:
+ case 50:
+ case 51:
+ case 52:
+ case 53:
+ case 54:
+ case 55:
+ case 56:
+ case 57:
+ // 0-9
+ if (!repeat) {
+ seekByKey();
+ }
+
+ break;
+
+ case 32:
+ case 75:
+ // Space and K key
+ if (!repeat) {
+ silencePromise(player.togglePlay());
+ }
+
+ break;
+
+ case 38:
+ // Arrow up
+ player.increaseVolume(0.1);
+ break;
+
+ case 40:
+ // Arrow down
+ player.decreaseVolume(0.1);
+ break;
+
+ case 77:
+ // M key
+ if (!repeat) {
+ player.muted = !player.muted;
+ }
+
+ break;
+
+ case 39:
+ // Arrow forward
+ player.forward();
+ break;
+
+ case 37:
+ // Arrow back
+ player.rewind();
+ break;
+
+ case 70:
+ // F key
+ player.fullscreen.toggle();
+ break;
+
+ case 67:
+ // C key
+ if (!repeat) {
+ player.toggleCaptions();
+ }
+
+ break;
+
+ case 76:
+ // L key
+ player.loop = !player.loop;
+ break;
+ } // Escape is handle natively when in full screen
+ // So we only need to worry about non native
+
+
+ if (code === 27 && !player.fullscreen.usingNative && player.fullscreen.active) {
+ player.fullscreen.toggle();
+ } // Store last code for next cycle
+
+
+ this.lastKey = code;
+ } else {
+ this.lastKey = null;
}
- }]);
+ } // Toggle menu
- return Listeners;
- }();
+
+ toggleMenu(event) {
+ controls.toggleMenu.call(this.player, event);
+ } // Device is touch enabled
+
+
+ }
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
@@ -5384,7 +5030,7 @@ typeof navigator === "object" && (function (global, factory) {
* Global dependencies.
* @global {Object} document - DOM
*/
- var devnull = function devnull() {},
+ var devnull = function () {},
bundleIdCache = {},
bundleResultCache = {},
bundleCallbackQueue = {};
@@ -5406,7 +5052,7 @@ typeof navigator === "object" && (function (global, factory) {
r,
q; // define callback function
- fn = function fn(bundleId, pathsNotFound) {
+ fn = function (bundleId, pathsNotFound) {
if (pathsNotFound.length) depsNotFound.push(bundleId);
numWaiting--;
if (!numWaiting) callbackFn(depsNotFound);
@@ -5556,7 +5202,7 @@ typeof navigator === "object" && (function (global, factory) {
fn,
i; // define callback function
- fn = function fn(path, result, defaultPrevented) {
+ fn = function (path, result, defaultPrevented) {
// handle error
if (result == 'e') pathsNotFound.push(path); // handle beforeload event. If defaultPrevented then that means the load
// will be blocked (ex. Ghostery/ABP on Safari)
@@ -5570,9 +5216,7 @@ typeof navigator === "object" && (function (global, factory) {
}; // load scripts
- for (i = 0; i < x; i++) {
- loadFile(paths[i], fn, args);
- }
+ for (i = 0; i < x; i++) loadFile(paths[i], fn, args);
}
/**
* Initiate script load and register bundle.
@@ -5670,7 +5314,7 @@ typeof navigator === "object" && (function (global, factory) {
// ==========================================================================
function loadScript(url) {
- return new Promise(function (resolve, reject) {
+ return new Promise((resolve, reject) => {
loadjs_umd(url, {
success: resolve,
error: reject
@@ -5678,21 +5322,23 @@ typeof navigator === "object" && (function (global, factory) {
});
}
- function parseId(url) {
- if (is$1.empty(url)) {
+ // ==========================================================================
+
+ function parseId$1(url) {
+ if (is.empty(url)) {
return null;
}
- if (is$1.number(Number(url))) {
+ if (is.number(Number(url))) {
return url;
}
- var regex = /^.*(vimeo.com\/|video\/)(\d+).*/;
+ const regex = /^.*(vimeo.com\/|video\/)(\d+).*/;
return url.match(regex) ? RegExp.$2 : url;
} // Set playback state and trigger change (only on actual change)
- function assurePlaybackState(play) {
+ function assurePlaybackState$1(play) {
if (play && !this.embed.hasPlayed) {
this.embed.hasPlayed = true;
}
@@ -5703,9 +5349,9 @@ typeof navigator === "object" && (function (global, factory) {
}
}
- var vimeo = {
- setup: function setup() {
- var player = this; // Add embed class for responsive
+ const vimeo = {
+ setup() {
+ const player = this; // Add embed class for responsive
toggleClass(player.elements.wrapper, player.config.classNames.embed, true); // Set speed options from config
@@ -5713,27 +5359,26 @@ typeof navigator === "object" && (function (global, factory) {
setAspectRatio.call(player); // Load the SDK if not already
- if (!is$1.object(window.Vimeo)) {
- loadScript(player.config.urls.vimeo.sdk).then(function () {
+ if (!is.object(window.Vimeo)) {
+ loadScript(player.config.urls.vimeo.sdk).then(() => {
vimeo.ready.call(player);
- }).catch(function (error) {
+ }).catch(error => {
player.debug.warn('Vimeo SDK (player.js) failed to load', error);
});
} else {
vimeo.ready.call(player);
}
},
- // API Ready
- ready: function ready() {
- var _this = this;
-
- var player = this;
- var config = player.config.vimeo;
-
- var premium = config.premium,
- referrerPolicy = config.referrerPolicy,
- frameParams = _objectWithoutProperties(config, ["premium", "referrerPolicy"]); // If the owner has a pro or premium account then we can hide controls etc
+ // API Ready
+ ready() {
+ const player = this;
+ const config = player.config.vimeo;
+ const {
+ premium,
+ referrerPolicy,
+ ...frameParams
+ } = config; // If the owner has a pro or premium account then we can hide controls etc
if (premium) {
Object.assign(frameParams, {
@@ -5743,62 +5388,60 @@ typeof navigator === "object" && (function (global, factory) {
} // Get Vimeo params for the iframe
- var params = buildUrlParams(_objectSpread2({
+ const params = buildUrlParams({
loop: player.config.loop.active,
autoplay: player.autoplay,
muted: player.muted,
gesture: 'media',
- playsinline: !this.config.fullscreen.iosNative
- }, frameParams)); // Get the source URL or ID
+ playsinline: !this.config.fullscreen.iosNative,
+ ...frameParams
+ }); // Get the source URL or ID
- var source = player.media.getAttribute('src'); // Get from <div> if needed
+ let source = player.media.getAttribute('src'); // Get from <div> if needed
- if (is$1.empty(source)) {
+ if (is.empty(source)) {
source = player.media.getAttribute(player.config.attributes.embed.id);
}
- var id = parseId(source); // Build an iframe
+ const id = parseId$1(source); // Build an iframe
- var iframe = createElement('iframe');
- var src = format(player.config.urls.vimeo.iframe, id, params);
+ const iframe = createElement('iframe');
+ const src = format(player.config.urls.vimeo.iframe, id, params);
iframe.setAttribute('src', src);
iframe.setAttribute('allowfullscreen', '');
- iframe.setAttribute('allow', 'autoplay,fullscreen,picture-in-picture'); // Set the referrer policy if required
+ iframe.setAttribute('allow', ['autoplay', 'fullscreen', 'picture-in-picture', 'encrypted-media', 'accelerometer', 'gyroscope'].join('; ')); // Set the referrer policy if required
- if (!is$1.empty(referrerPolicy)) {
+ if (!is.empty(referrerPolicy)) {
iframe.setAttribute('referrerPolicy', referrerPolicy);
} // Inject the package
- var poster = player.poster;
-
- if (premium) {
- iframe.setAttribute('data-poster', poster);
+ if (premium || !config.customControls) {
+ iframe.setAttribute('data-poster', player.poster);
player.media = replaceElement(iframe, player.media);
} else {
- var wrapper = createElement('div', {
+ const wrapper = createElement('div', {
class: player.config.classNames.embedContainer,
- 'data-poster': poster
+ 'data-poster': player.poster
});
wrapper.appendChild(iframe);
player.media = replaceElement(wrapper, player.media);
} // Get poster image
- fetch(format(player.config.urls.vimeo.api, id), 'json').then(function (response) {
- if (is$1.empty(response)) {
- return;
- } // Get the URL for thumbnail
-
-
- var url = new URL(response[0].thumbnail_large); // Get original image
+ if (!config.customControls) {
+ fetch(format(player.config.urls.vimeo.api, src)).then(response => {
+ if (is.empty(response) || !response.thumbnail_url) {
+ return;
+ } // Set and show poster
- url.pathname = "".concat(url.pathname.split('_')[0], ".jpg"); // Set and show poster
- ui.setPoster.call(player, url.href).catch(function () {});
- }); // Setup instance
+ ui.setPoster.call(player, response.thumbnail_url).catch(() => {});
+ });
+ } // Setup instance
// https://github.com/vimeo/player.js
+
player.embed = new window.Vimeo.Player(iframe, {
autopause: player.config.autopause,
muted: player.muted
@@ -5811,204 +5454,215 @@ typeof navigator === "object" && (function (global, factory) {
} // Create a faux HTML5 API using the Vimeo API
- player.media.play = function () {
- assurePlaybackState.call(player, true);
+ player.media.play = () => {
+ assurePlaybackState$1.call(player, true);
return player.embed.play();
};
- player.media.pause = function () {
- assurePlaybackState.call(player, false);
+ player.media.pause = () => {
+ assurePlaybackState$1.call(player, false);
return player.embed.pause();
};
- player.media.stop = function () {
+ player.media.stop = () => {
player.pause();
player.currentTime = 0;
}; // Seeking
- var currentTime = player.media.currentTime;
+ let {
+ currentTime
+ } = player.media;
Object.defineProperty(player.media, 'currentTime', {
- get: function get() {
+ get() {
return currentTime;
},
- set: function set(time) {
+
+ set(time) {
// Vimeo will automatically play on seek if the video hasn't been played before
// Get current paused state and volume etc
- var embed = player.embed,
- media = player.media,
- paused = player.paused,
- volume = player.volume;
- var restorePause = paused && !embed.hasPlayed; // Set seeking state and trigger event
+ const {
+ embed,
+ media,
+ paused,
+ volume
+ } = player;
+ const restorePause = paused && !embed.hasPlayed; // Set seeking state and trigger event
media.seeking = true;
triggerEvent.call(player, media, 'seeking'); // If paused, mute until seek is complete
Promise.resolve(restorePause && embed.setVolume(0)) // Seek
- .then(function () {
- return embed.setCurrentTime(time);
- }) // Restore paused
- .then(function () {
- return restorePause && embed.pause();
- }) // Restore volume
- .then(function () {
- return restorePause && embed.setVolume(volume);
- }).catch(function () {// Do nothing
+ .then(() => embed.setCurrentTime(time)) // Restore paused
+ .then(() => restorePause && embed.pause()) // Restore volume
+ .then(() => restorePause && embed.setVolume(volume)).catch(() => {// Do nothing
});
}
+
}); // Playback speed
- var speed = player.config.speed.selected;
+ let speed = player.config.speed.selected;
Object.defineProperty(player.media, 'playbackRate', {
- get: function get() {
+ get() {
return speed;
},
- set: function set(input) {
- player.embed.setPlaybackRate(input).then(function () {
+
+ set(input) {
+ player.embed.setPlaybackRate(input).then(() => {
speed = input;
triggerEvent.call(player, player.media, 'ratechange');
- }).catch(function () {
+ }).catch(() => {
// Cannot set Playback Rate, Video is probably not on Pro account
player.options.speed = [1];
});
}
+
}); // Volume
- var volume = player.config.volume;
+ let {
+ volume
+ } = player.config;
Object.defineProperty(player.media, 'volume', {
- get: function get() {
+ get() {
return volume;
},
- set: function set(input) {
- player.embed.setVolume(input).then(function () {
+
+ set(input) {
+ player.embed.setVolume(input).then(() => {
volume = input;
triggerEvent.call(player, player.media, 'volumechange');
});
}
+
}); // Muted
- var muted = player.config.muted;
+ let {
+ muted
+ } = player.config;
Object.defineProperty(player.media, 'muted', {
- get: function get() {
+ get() {
return muted;
},
- set: function set(input) {
- var toggle = is$1.boolean(input) ? input : false;
- player.embed.setVolume(toggle ? 0 : player.config.volume).then(function () {
+
+ set(input) {
+ const toggle = is.boolean(input) ? input : false;
+ player.embed.setVolume(toggle ? 0 : player.config.volume).then(() => {
muted = toggle;
triggerEvent.call(player, player.media, 'volumechange');
});
}
+
}); // Loop
- var loop = player.config.loop;
+ let {
+ loop
+ } = player.config;
Object.defineProperty(player.media, 'loop', {
- get: function get() {
+ get() {
return loop;
},
- set: function set(input) {
- var toggle = is$1.boolean(input) ? input : player.config.loop.active;
- player.embed.setLoop(toggle).then(function () {
+
+ set(input) {
+ const toggle = is.boolean(input) ? input : player.config.loop.active;
+ player.embed.setLoop(toggle).then(() => {
loop = toggle;
});
}
+
}); // Source
- var currentSrc;
- player.embed.getVideoUrl().then(function (value) {
+ let currentSrc;
+ player.embed.getVideoUrl().then(value => {
currentSrc = value;
controls.setDownloadUrl.call(player);
- }).catch(function (error) {
- _this.debug.warn(error);
+ }).catch(error => {
+ this.debug.warn(error);
});
Object.defineProperty(player.media, 'currentSrc', {
- get: function get() {
+ get() {
return currentSrc;
}
+
}); // Ended
Object.defineProperty(player.media, 'ended', {
- get: function get() {
+ get() {
return player.currentTime === player.duration;
}
- }); // Set aspect ratio based on video size
- Promise.all([player.embed.getVideoWidth(), player.embed.getVideoHeight()]).then(function (dimensions) {
- var _dimensions = _slicedToArray(dimensions, 2),
- width = _dimensions[0],
- height = _dimensions[1];
+ }); // Set aspect ratio based on video size
- player.embed.ratio = [width, height];
- setAspectRatio.call(_this);
+ Promise.all([player.embed.getVideoWidth(), player.embed.getVideoHeight()]).then(dimensions => {
+ const [width, height] = dimensions;
+ player.embed.ratio = roundAspectRatio(width, height);
+ setAspectRatio.call(this);
}); // Set autopause
- player.embed.setAutopause(player.config.autopause).then(function (state) {
+ player.embed.setAutopause(player.config.autopause).then(state => {
player.config.autopause = state;
}); // Get title
- player.embed.getVideoTitle().then(function (title) {
+ player.embed.getVideoTitle().then(title => {
player.config.title = title;
- ui.setTitle.call(_this);
+ ui.setTitle.call(this);
}); // Get current time
- player.embed.getCurrentTime().then(function (value) {
+ player.embed.getCurrentTime().then(value => {
currentTime = value;
triggerEvent.call(player, player.media, 'timeupdate');
}); // Get duration
- player.embed.getDuration().then(function (value) {
+ player.embed.getDuration().then(value => {
player.media.duration = value;
triggerEvent.call(player, player.media, 'durationchange');
}); // Get captions
- player.embed.getTextTracks().then(function (tracks) {
+ player.embed.getTextTracks().then(tracks => {
player.media.textTracks = tracks;
captions.setup.call(player);
});
- player.embed.on('cuechange', function (_ref) {
- var _ref$cues = _ref.cues,
- cues = _ref$cues === void 0 ? [] : _ref$cues;
- var strippedCues = cues.map(function (cue) {
- return stripHTML(cue.text);
- });
+ player.embed.on('cuechange', ({
+ cues = []
+ }) => {
+ const strippedCues = cues.map(cue => stripHTML(cue.text));
captions.updateCues.call(player, strippedCues);
});
- player.embed.on('loaded', function () {
+ player.embed.on('loaded', () => {
// Assure state and events are updated on autoplay
- player.embed.getPaused().then(function (paused) {
- assurePlaybackState.call(player, !paused);
+ player.embed.getPaused().then(paused => {
+ assurePlaybackState$1.call(player, !paused);
if (!paused) {
triggerEvent.call(player, player.media, 'playing');
}
});
- if (is$1.element(player.embed.element) && player.supported.ui) {
- var frame = player.embed.element; // Fix keyboard focus issues
+ if (is.element(player.embed.element) && player.supported.ui) {
+ const frame = player.embed.element; // Fix keyboard focus issues
// https://github.com/sampotts/plyr/issues/317
frame.setAttribute('tabindex', -1);
}
});
- player.embed.on('bufferstart', function () {
+ player.embed.on('bufferstart', () => {
triggerEvent.call(player, player.media, 'waiting');
});
- player.embed.on('bufferend', function () {
+ player.embed.on('bufferend', () => {
triggerEvent.call(player, player.media, 'playing');
});
- player.embed.on('play', function () {
- assurePlaybackState.call(player, true);
+ player.embed.on('play', () => {
+ assurePlaybackState$1.call(player, true);
triggerEvent.call(player, player.media, 'playing');
});
- player.embed.on('pause', function () {
- assurePlaybackState.call(player, false);
+ player.embed.on('pause', () => {
+ assurePlaybackState$1.call(player, false);
});
- player.embed.on('timeupdate', function (data) {
+ player.embed.on('timeupdate', data => {
player.media.seeking = false;
currentTime = data.seconds;
triggerEvent.call(player, player.media, 'timeupdate');
});
- player.embed.on('progress', function (data) {
+ player.embed.on('progress', data => {
player.media.buffered = data.percent;
triggerEvent.call(player, player.media, 'progress'); // Check all loaded
@@ -6018,45 +5672,46 @@ typeof navigator === "object" && (function (global, factory) {
// https://github.com/sampotts/plyr/issues/891
- player.embed.getDuration().then(function (value) {
+ player.embed.getDuration().then(value => {
if (value !== player.media.duration) {
player.media.duration = value;
triggerEvent.call(player, player.media, 'durationchange');
}
});
});
- player.embed.on('seeked', function () {
+ player.embed.on('seeked', () => {
player.media.seeking = false;
triggerEvent.call(player, player.media, 'seeked');
});
- player.embed.on('ended', function () {
+ player.embed.on('ended', () => {
player.media.paused = true;
triggerEvent.call(player, player.media, 'ended');
});
- player.embed.on('error', function (detail) {
+ player.embed.on('error', detail => {
player.media.error = detail;
triggerEvent.call(player, player.media, 'error');
}); // Rebuild UI
- setTimeout(function () {
- return ui.build.call(player);
- }, 0);
+ if (config.customControls) {
+ setTimeout(() => ui.build.call(player), 0);
+ }
}
+
};
// ==========================================================================
- function parseId$1(url) {
- if (is$1.empty(url)) {
+ function parseId(url) {
+ if (is.empty(url)) {
return null;
}
- var regex = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|&v=)([^#&?]*).*/;
+ const regex = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|&v=)([^#&?]*).*/;
return url.match(regex) ? RegExp.$2 : url;
} // Set playback state and trigger change (only on actual change)
- function assurePlaybackState$1(play) {
+ function assurePlaybackState(play) {
if (play && !this.embed.hasPlayed) {
this.embed.hasPlayed = true;
}
@@ -6080,123 +5735,116 @@ typeof navigator === "object" && (function (global, factory) {
return undefined;
}
- var youtube = {
- setup: function setup() {
- var _this = this;
-
+ const youtube = {
+ setup() {
// Add embed class for responsive
toggleClass(this.elements.wrapper, this.config.classNames.embed, true); // Setup API
- if (is$1.object(window.YT) && is$1.function(window.YT.Player)) {
+ if (is.object(window.YT) && is.function(window.YT.Player)) {
youtube.ready.call(this);
} else {
// Reference current global callback
- var callback = window.onYouTubeIframeAPIReady; // Set callback to process queue
+ const callback = window.onYouTubeIframeAPIReady; // Set callback to process queue
- window.onYouTubeIframeAPIReady = function () {
+ window.onYouTubeIframeAPIReady = () => {
// Call global callback if set
- if (is$1.function(callback)) {
+ if (is.function(callback)) {
callback();
}
- youtube.ready.call(_this);
+ youtube.ready.call(this);
}; // Load the SDK
- loadScript(this.config.urls.youtube.sdk).catch(function (error) {
- _this.debug.warn('YouTube API failed to load', error);
+ loadScript(this.config.urls.youtube.sdk).catch(error => {
+ this.debug.warn('YouTube API failed to load', error);
});
}
},
- // Get the media title
- getTitle: function getTitle(videoId) {
- var _this2 = this;
-
- var url = format(this.config.urls.youtube.api, videoId);
- fetch(url).then(function (data) {
- if (is$1.object(data)) {
- var title = data.title,
- height = data.height,
- width = data.width; // Set title
-
- _this2.config.title = title;
- ui.setTitle.call(_this2); // Set aspect ratio
- _this2.embed.ratio = [width, height];
+ // Get the media title
+ getTitle(videoId) {
+ const url = format(this.config.urls.youtube.api, videoId);
+ fetch(url).then(data => {
+ if (is.object(data)) {
+ const {
+ title,
+ height,
+ width
+ } = data; // Set title
+
+ this.config.title = title;
+ ui.setTitle.call(this); // Set aspect ratio
+
+ this.embed.ratio = roundAspectRatio(width, height);
}
- setAspectRatio.call(_this2);
- }).catch(function () {
+ setAspectRatio.call(this);
+ }).catch(() => {
// Set aspect ratio
- setAspectRatio.call(_this2);
+ setAspectRatio.call(this);
});
},
+
// API ready
- ready: function ready() {
- var player = this; // Ignore already setup (race condition)
+ ready() {
+ const player = this;
+ const config = player.config.youtube; // Ignore already setup (race condition)
- var currentId = player.media && player.media.getAttribute('id');
+ const currentId = player.media && player.media.getAttribute('id');
- if (!is$1.empty(currentId) && currentId.startsWith('youtube-')) {
+ if (!is.empty(currentId) && currentId.startsWith('youtube-')) {
return;
} // Get the source URL or ID
- var source = player.media.getAttribute('src'); // Get from <div> if needed
+ let source = player.media.getAttribute('src'); // Get from <div> if needed
- if (is$1.empty(source)) {
+ if (is.empty(source)) {
source = player.media.getAttribute(this.config.attributes.embed.id);
} // Replace the <iframe> with a <div> due to YouTube API issues
- var videoId = parseId$1(source);
- var id = generateId(player.provider); // Get poster, if already set
+ const videoId = parseId(source);
+ const id = generateId(player.provider); // Replace media element
- var poster = player.poster; // Replace media element
-
- var container = createElement('div', {
- id: id,
- 'data-poster': poster
+ const container = createElement('div', {
+ id,
+ 'data-poster': config.customControls ? player.poster : undefined
});
- player.media = replaceElement(container, player.media); // Id to poster wrapper
-
- var posterSrc = function posterSrc(s) {
- return "https://i.ytimg.com/vi/".concat(videoId, "/").concat(s, "default.jpg");
- }; // Check thumbnail images in order of quality, but reject fallback thumbnails (120px wide)
-
-
- loadImage(posterSrc('maxres'), 121) // Higest quality and unpadded
- .catch(function () {
- return loadImage(posterSrc('sd'), 121);
- }) // 480p padded 4:3
- .catch(function () {
- return loadImage(posterSrc('hq'));
- }) // 360p padded 4:3. Always exists
- .then(function (image) {
- return ui.setPoster.call(player, image.src);
- }).then(function (src) {
- // If the image is padded, use background-size "cover" instead (like youtube does too with their posters)
- if (!src.includes('maxres')) {
- player.elements.poster.style.backgroundSize = 'cover';
- }
- }).catch(function () {});
- var config = player.config.youtube; // Setup instance
+ player.media = replaceElement(container, player.media); // Only load the poster when using custom controls
+
+ if (config.customControls) {
+ const posterSrc = s => `https://i.ytimg.com/vi/${videoId}/${s}default.jpg`; // Check thumbnail images in order of quality, but reject fallback thumbnails (120px wide)
+
+
+ loadImage(posterSrc('maxres'), 121) // Higest quality and unpadded
+ .catch(() => loadImage(posterSrc('sd'), 121)) // 480p padded 4:3
+ .catch(() => loadImage(posterSrc('hq'))) // 360p padded 4:3. Always exists
+ .then(image => ui.setPoster.call(player, image.src)).then(src => {
+ // If the image is padded, use background-size "cover" instead (like youtube does too with their posters)
+ if (!src.includes('maxres')) {
+ player.elements.poster.style.backgroundSize = 'cover';
+ }
+ }).catch(() => {});
+ } // Setup instance
// https://developers.google.com/youtube/iframe_api_reference
- player.embed = new window.YT.Player(id, {
- videoId: videoId,
+
+ player.embed = new window.YT.Player(player.media, {
+ videoId,
host: getHost(config),
playerVars: extend({}, {
- autoplay: player.config.autoplay ? 1 : 0,
// Autoplay
- hl: player.config.hl,
+ autoplay: player.config.autoplay ? 1 : 0,
// iframe interface language
- controls: player.supported.ui ? 0 : 1,
- // Only show controls if not fully supported
- disablekb: 1,
+ hl: player.config.hl,
+ // Only show controls if not fully supported or opted out
+ controls: player.supported.ui && config.customControls ? 0 : 1,
// Disable keyboard as we handle it
- playsinline: !player.config.fullscreen.iosNative ? 1 : 0,
+ disablekb: 1,
// Allow iOS inline playback
+ playsinline: !player.config.fullscreen.iosNative ? 1 : 0,
// Captions are flaky on YouTube
cc_load_policy: player.captions.active ? 1 : 0,
cc_lang_pref: player.config.captions.language,
@@ -6204,12 +5852,12 @@ typeof navigator === "object" && (function (global, factory) {
widget_referrer: window ? window.location.href : null
}, config),
events: {
- onError: function onError(event) {
+ onError(event) {
// YouTube may fire onError twice, so only handle it once
if (!player.media.error) {
- var code = event.data; // Messages copied from https://developers.google.com/youtube/iframe_api_reference#onError
+ const code = event.data; // Messages copied from https://developers.google.com/youtube/iframe_api_reference#onError
- var message = {
+ const message = {
2: 'The request contains an invalid parameter value. For example, this error occurs if you specify a video ID that does not have 11 characters, or if the video ID contains invalid characters, such as exclamation points or asterisks.',
5: 'The requested content cannot be played in an HTML5 player or another error related to the HTML5 player has occurred.',
100: 'The video requested was not found. This error occurs when a video has been removed (for any reason) or has been marked as private.',
@@ -6217,41 +5865,43 @@ typeof navigator === "object" && (function (global, factory) {
150: 'The owner of the requested video does not allow it to be played in embedded players.'
}[code] || 'An unknown error occured';
player.media.error = {
- code: code,
- message: message
+ code,
+ message
};
triggerEvent.call(player, player.media, 'error');
}
},
- onPlaybackRateChange: function onPlaybackRateChange(event) {
+
+ onPlaybackRateChange(event) {
// Get the instance
- var instance = event.target; // Get current speed
+ const instance = event.target; // Get current speed
player.media.playbackRate = instance.getPlaybackRate();
triggerEvent.call(player, player.media, 'ratechange');
},
- onReady: function onReady(event) {
+
+ onReady(event) {
// Bail if onReady has already been called. See issue #1108
- if (is$1.function(player.media.play)) {
+ if (is.function(player.media.play)) {
return;
} // Get the instance
- var instance = event.target; // Get the title
+ const instance = event.target; // Get the title
youtube.getTitle.call(player, videoId); // Create a faux HTML5 API using the YouTube API
- player.media.play = function () {
- assurePlaybackState$1.call(player, true);
+ player.media.play = () => {
+ assurePlaybackState.call(player, true);
instance.playVideo();
};
- player.media.pause = function () {
- assurePlaybackState$1.call(player, false);
+ player.media.pause = () => {
+ assurePlaybackState.call(player, false);
instance.pauseVideo();
};
- player.media.stop = function () {
+ player.media.stop = () => {
instance.stopVideo();
};
@@ -6260,10 +5910,11 @@ typeof navigator === "object" && (function (global, factory) {
player.media.currentTime = 0;
Object.defineProperty(player.media, 'currentTime', {
- get: function get() {
+ get() {
return Number(instance.getCurrentTime());
},
- set: function set(time) {
+
+ set(time) {
// If paused and never played, mute audio preventively (YouTube starts playing on seek if the video hasn't been played yet).
if (player.paused && !player.embed.hasPlayed) {
player.embed.mute();
@@ -6275,61 +5926,73 @@ typeof navigator === "object" && (function (global, factory) {
instance.seekTo(time);
}
+
}); // Playback speed
Object.defineProperty(player.media, 'playbackRate', {
- get: function get() {
+ get() {
return instance.getPlaybackRate();
},
- set: function set(input) {
+
+ set(input) {
instance.setPlaybackRate(input);
}
+
}); // Volume
- var volume = player.config.volume;
+ let {
+ volume
+ } = player.config;
Object.defineProperty(player.media, 'volume', {
- get: function get() {
+ get() {
return volume;
},
- set: function set(input) {
+
+ set(input) {
volume = input;
instance.setVolume(volume * 100);
triggerEvent.call(player, player.media, 'volumechange');
}
+
}); // Muted
- var muted = player.config.muted;
+ let {
+ muted
+ } = player.config;
Object.defineProperty(player.media, 'muted', {
- get: function get() {
+ get() {
return muted;
},
- set: function set(input) {
- var toggle = is$1.boolean(input) ? input : muted;
+
+ set(input) {
+ const toggle = is.boolean(input) ? input : muted;
muted = toggle;
instance[toggle ? 'mute' : 'unMute']();
+ instance.setVolume(volume * 100);
triggerEvent.call(player, player.media, 'volumechange');
}
+
}); // Source
Object.defineProperty(player.media, 'currentSrc', {
- get: function get() {
+ get() {
return instance.getVideoUrl();
}
+
}); // Ended
Object.defineProperty(player.media, 'ended', {
- get: function get() {
+ get() {
return player.currentTime === player.duration;
}
+
}); // Get available speeds
- var speeds = instance.getAvailablePlaybackRates(); // Filter based on config
+ const speeds = instance.getAvailablePlaybackRates(); // Filter based on config
- player.options.speed = speeds.filter(function (s) {
- return player.config.speed.options.includes(s);
- }); // Set the tabindex to avoid focus entering iframe
+ player.options.speed = speeds.filter(s => player.config.speed.options.includes(s)); // Set the tabindex to avoid focus entering iframe
- if (player.supported.ui) {
+ if (player.supported.ui && config.customControls) {
player.media.setAttribute('tabindex', -1);
}
@@ -6338,7 +6001,7 @@ typeof navigator === "object" && (function (global, factory) {
clearInterval(player.timers.buffering); // Setup buffering
- player.timers.buffering = setInterval(function () {
+ player.timers.buffering = setInterval(() => {
// Get loaded % from YouTube
player.media.buffered = instance.getVideoLoadedFraction(); // Trigger progress only when we actually buffer something
@@ -6356,16 +6019,17 @@ typeof navigator === "object" && (function (global, factory) {
}
}, 200); // Rebuild UI
- setTimeout(function () {
- return ui.build.call(player);
- }, 50);
+ if (config.customControls) {
+ setTimeout(() => ui.build.call(player), 50);
+ }
},
- onStateChange: function onStateChange(event) {
+
+ onStateChange(event) {
// Get the instance
- var instance = event.target; // Reset timer
+ const instance = event.target; // Reset timer
clearInterval(player.timers.playing);
- var seeked = player.media.seeking && [1, 2].includes(event.data);
+ const seeked = player.media.seeking && [1, 2].includes(event.data);
if (seeked) {
// Unset seeking and fire seeked event
@@ -6390,7 +6054,7 @@ typeof navigator === "object" && (function (global, factory) {
break;
case 0:
- assurePlaybackState$1.call(player, false); // YouTube doesn't support loop for a single video, so mimick it.
+ assurePlaybackState.call(player, false); // YouTube doesn't support loop for a single video, so mimick it.
if (player.media.loop) {
// YouTube needs a call to `stopVideo` before playing again
@@ -6404,13 +6068,13 @@ typeof navigator === "object" && (function (global, factory) {
case 1:
// Restore paused state (YouTube starts playing on seek if the video hasn't been played yet)
- if (!player.config.autoplay && player.media.paused && !player.embed.hasPlayed) {
+ if (config.customControls && !player.config.autoplay && player.media.paused && !player.embed.hasPlayed) {
player.media.pause();
} else {
- assurePlaybackState$1.call(player, true);
+ assurePlaybackState.call(player, true);
triggerEvent.call(player, player.media, 'playing'); // Poll to get playback progress
- player.timers.playing = setInterval(function () {
+ player.timers.playing = setInterval(() => {
triggerEvent.call(player, player.media, 'timeupdate');
}, 50); // Check duration again due to YouTube bug
// https://github.com/sampotts/plyr/issues/374
@@ -6430,7 +6094,7 @@ typeof navigator === "object" && (function (global, factory) {
player.embed.unMute();
}
- assurePlaybackState$1.call(player, false);
+ assurePlaybackState.call(player, false);
break;
case 3:
@@ -6443,15 +6107,17 @@ typeof navigator === "object" && (function (global, factory) {
code: event.data
});
}
+
}
});
}
+
};
// ==========================================================================
- var media = {
+ const media = {
// Setup media
- setup: function setup() {
+ setup() {
// If there's no media, bail
if (!this.media) {
this.debug.warn('No media element found!');
@@ -6491,9 +6157,10 @@ typeof navigator === "object" && (function (global, factory) {
vimeo.setup.call(this);
}
}
+
};
- var destroy = function destroy(instance) {
+ const destroy = instance => {
// Destroy our adsManager
if (instance.manager) {
instance.manager.destroy();
@@ -6507,76 +6174,32 @@ typeof navigator === "object" && (function (global, factory) {
instance.elements.container.remove();
};
- var Ads = /*#__PURE__*/function () {
+ class Ads {
/**
* Ads constructor.
* @param {Object} player
* @return {Ads}
*/
- function Ads(player) {
- var _this = this;
-
- _classCallCheck(this, Ads);
-
- this.player = player;
- this.config = player.config.ads;
- this.playing = false;
- this.initialized = false;
- this.elements = {
- container: null,
- displayContainer: null
- };
- this.manager = null;
- this.loader = null;
- this.cuePoints = null;
- this.events = {};
- this.safetyTimer = null;
- this.countdownTimer = null; // Setup a promise to resolve when the IMA manager is ready
-
- this.managerPromise = new Promise(function (resolve, reject) {
- // The ad is loaded and ready
- _this.on('loaded', resolve); // Ads failed
-
-
- _this.on('error', reject);
- });
- this.load();
- }
-
- _createClass(Ads, [{
- key: "load",
-
- /**
- * Load the IMA SDK
- */
- value: function load() {
- var _this2 = this;
-
+ constructor(player) {
+ _defineProperty$1(this, "load", () => {
if (!this.enabled) {
return;
} // Check if the Google IMA3 SDK is loaded or load it ourselves
- if (!is$1.object(window.google) || !is$1.object(window.google.ima)) {
- loadScript(this.player.config.urls.googleIMA.sdk).then(function () {
- _this2.ready();
- }).catch(function () {
+ if (!is.object(window.google) || !is.object(window.google.ima)) {
+ loadScript(this.player.config.urls.googleIMA.sdk).then(() => {
+ this.ready();
+ }).catch(() => {
// Script failed to load or is blocked
- _this2.trigger('error', new Error('Google IMA SDK failed to load'));
+ this.trigger('error', new Error('Google IMA SDK failed to load'));
});
} else {
this.ready();
}
- }
- /**
- * Get the ads instance ready
- */
-
- }, {
- key: "ready",
- value: function ready() {
- var _this3 = this;
+ });
+ _defineProperty$1(this, "ready", () => {
// Double check we're enabled
if (!this.enabled) {
destroy(this);
@@ -6586,29 +6209,16 @@ typeof navigator === "object" && (function (global, factory) {
this.startSafetyTimer(12000, 'ready()'); // Clear the safety timer
- this.managerPromise.then(function () {
- _this3.clearSafetyTimer('onAdsManagerLoaded()');
+ this.managerPromise.then(() => {
+ this.clearSafetyTimer('onAdsManagerLoaded()');
}); // Set listeners on the Plyr instance
this.listeners(); // Setup the IMA SDK
this.setupIMA();
- } // Build the tag URL
-
- }, {
- key: "setupIMA",
-
- /**
- * In order for the SDK to display ads for our video, we need to tell it where to put them,
- * so here we define our ad container. This div is set up to render on top of the video player.
- * Using the code below, we tell the SDK to render ads within that div. We also provide a
- * handle to the content video player - the SDK will poll the current time of our player to
- * properly place mid-rolls. After we create the ad display container, we initialize it. On
- * mobile devices, this initialization is done as the result of a user action.
- */
- value: function setupIMA() {
- var _this4 = this;
+ });
+ _defineProperty$1(this, "setupIMA", () => {
// Create the container for our advertisements
this.elements.container = createElement('div', {
class: this.player.config.classNames.ads
@@ -6625,27 +6235,20 @@ typeof navigator === "object" && (function (global, factory) {
this.loader = new google.ima.AdsLoader(this.elements.displayContainer); // Listen and respond to ads loaded and error events
- this.loader.addEventListener(google.ima.AdsManagerLoadedEvent.Type.ADS_MANAGER_LOADED, function (event) {
- return _this4.onAdsManagerLoaded(event);
- }, false);
- this.loader.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR, function (error) {
- return _this4.onAdError(error);
- }, false); // Request video ads to be pre-loaded
+ this.loader.addEventListener(google.ima.AdsManagerLoadedEvent.Type.ADS_MANAGER_LOADED, event => this.onAdsManagerLoaded(event), false);
+ this.loader.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR, error => this.onAdError(error), false); // Request video ads to be pre-loaded
this.requestAds();
- }
- /**
- * Request advertisements
- */
+ });
- }, {
- key: "requestAds",
- value: function requestAds() {
- var container = this.player.elements.container;
+ _defineProperty$1(this, "requestAds", () => {
+ const {
+ container
+ } = this.player.elements;
try {
// Request video ads
- var request = new google.ima.AdsRequest();
+ const request = new google.ima.AdsRequest();
request.adTagUrl = this.tagUrl; // Specify the linear and nonlinear slot sizes. This helps the SDK
// to select the correct creative if multiple are returned
@@ -6661,51 +6264,32 @@ typeof navigator === "object" && (function (global, factory) {
} catch (e) {
this.onAdError(e);
}
- }
- /**
- * Update the ad countdown
- * @param {Boolean} start
- */
-
- }, {
- key: "pollCountdown",
- value: function pollCountdown() {
- var _this5 = this;
-
- var start = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ });
+ _defineProperty$1(this, "pollCountdown", (start = false) => {
if (!start) {
clearInterval(this.countdownTimer);
this.elements.container.removeAttribute('data-badge-text');
return;
}
- var update = function update() {
- var time = formatTime(Math.max(_this5.manager.getRemainingTime(), 0));
- var label = "".concat(i18n.get('advertisement', _this5.player.config), " - ").concat(time);
-
- _this5.elements.container.setAttribute('data-badge-text', label);
+ const update = () => {
+ const time = formatTime(Math.max(this.manager.getRemainingTime(), 0));
+ const label = `${i18n.get('advertisement', this.player.config)} - ${time}`;
+ this.elements.container.setAttribute('data-badge-text', label);
};
this.countdownTimer = setInterval(update, 100);
- }
- /**
- * This method is called whenever the ads are ready inside the AdDisplayContainer
- * @param {Event} adsManagerLoadedEvent
- */
-
- }, {
- key: "onAdsManagerLoaded",
- value: function onAdsManagerLoaded(event) {
- var _this6 = this;
+ });
+ _defineProperty$1(this, "onAdsManagerLoaded", event => {
// Load could occur after a source change (race condition)
if (!this.enabled) {
return;
} // Get the ads manager
- var settings = new google.ima.AdsRenderingSettings(); // Tell the SDK to save and restore content video state on our behalf
+ const settings = new google.ima.AdsRenderingSettings(); // Tell the SDK to save and restore content video state on our behalf
settings.restoreCustomPlaybackStateOnAdBreakComplete = true;
settings.enablePreloading = true; // The SDK is polling currentTime on the contentPlayback. And needs a duration
@@ -6716,61 +6300,46 @@ typeof navigator === "object" && (function (global, factory) {
this.cuePoints = this.manager.getCuePoints(); // Add listeners to the required events
// Advertisement error events
- this.manager.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR, function (error) {
- return _this6.onAdError(error);
- }); // Advertisement regular events
+ this.manager.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR, error => this.onAdError(error)); // Advertisement regular events
- Object.keys(google.ima.AdEvent.Type).forEach(function (type) {
- _this6.manager.addEventListener(google.ima.AdEvent.Type[type], function (e) {
- return _this6.onAdEvent(e);
- });
+ Object.keys(google.ima.AdEvent.Type).forEach(type => {
+ this.manager.addEventListener(google.ima.AdEvent.Type[type], e => this.onAdEvent(e));
}); // Resolve our adsManager
this.trigger('loaded');
- }
- }, {
- key: "addCuePoints",
- value: function addCuePoints() {
- var _this7 = this;
+ });
+ _defineProperty$1(this, "addCuePoints", () => {
// Add advertisement cue's within the time line if available
- if (!is$1.empty(this.cuePoints)) {
- this.cuePoints.forEach(function (cuePoint) {
- if (cuePoint !== 0 && cuePoint !== -1 && cuePoint < _this7.player.duration) {
- var seekElement = _this7.player.elements.progress;
-
- if (is$1.element(seekElement)) {
- var cuePercentage = 100 / _this7.player.duration * cuePoint;
- var cue = createElement('span', {
- class: _this7.player.config.classNames.cues
+ if (!is.empty(this.cuePoints)) {
+ this.cuePoints.forEach(cuePoint => {
+ if (cuePoint !== 0 && cuePoint !== -1 && cuePoint < this.player.duration) {
+ const seekElement = this.player.elements.progress;
+
+ if (is.element(seekElement)) {
+ const cuePercentage = 100 / this.player.duration * cuePoint;
+ const cue = createElement('span', {
+ class: this.player.config.classNames.cues
});
- cue.style.left = "".concat(cuePercentage.toString(), "%");
+ cue.style.left = `${cuePercentage.toString()}%`;
seekElement.appendChild(cue);
}
}
});
}
- }
- /**
- * This is where all the event handling takes place. Retrieve the ad from the event. Some
- * events (e.g. ALL_ADS_COMPLETED) don't have the ad object associated
- * https://developers.google.com/interactive-media-ads/docs/sdks/html5/v3/apis#ima.AdEvent.Type
- * @param {Event} event
- */
-
- }, {
- key: "onAdEvent",
- value: function onAdEvent(event) {
- var _this8 = this;
+ });
- var container = this.player.elements.container; // Retrieve the ad from the event. Some events (e.g. ALL_ADS_COMPLETED)
+ _defineProperty$1(this, "onAdEvent", event => {
+ const {
+ container
+ } = this.player.elements; // Retrieve the ad from the event. Some events (e.g. ALL_ADS_COMPLETED)
// don't have ad object associated
- var ad = event.getAd();
- var adData = event.getAdData(); // Proxy event
+ const ad = event.getAd();
+ const adData = event.getAdData(); // Proxy event
- var dispatchEvent = function dispatchEvent(type) {
- triggerEvent.call(_this8.player, _this8.player.media, "ads".concat(type.replace(/_/g, '').toLowerCase()));
+ const dispatchEvent = type => {
+ triggerEvent.call(this.player, this.player.media, `ads${type.replace(/_/g, '').toLowerCase()}`);
}; // Bubble the event
@@ -6850,147 +6419,108 @@ typeof navigator === "object" && (function (global, factory) {
case google.ima.AdEvent.Type.LOG:
if (adData.adError) {
- this.player.debug.warn("Non-fatal ad error: ".concat(adData.adError.getMessage()));
+ this.player.debug.warn(`Non-fatal ad error: ${adData.adError.getMessage()}`);
}
break;
}
- }
- /**
- * Any ad error handling comes through here
- * @param {Event} event
- */
+ });
- }, {
- key: "onAdError",
- value: function onAdError(event) {
+ _defineProperty$1(this, "onAdError", event => {
this.cancel();
this.player.debug.warn('Ads error', event);
- }
- /**
- * Setup hooks for Plyr and window events. This ensures
- * the mid- and post-roll launch at the correct time. And
- * resize the advertisement when the player resizes
- */
-
- }, {
- key: "listeners",
- value: function listeners() {
- var _this9 = this;
+ });
- var container = this.player.elements.container;
- var time;
- this.player.on('canplay', function () {
- _this9.addCuePoints();
+ _defineProperty$1(this, "listeners", () => {
+ const {
+ container
+ } = this.player.elements;
+ let time;
+ this.player.on('canplay', () => {
+ this.addCuePoints();
});
- this.player.on('ended', function () {
- _this9.loader.contentComplete();
+ this.player.on('ended', () => {
+ this.loader.contentComplete();
});
- this.player.on('timeupdate', function () {
- time = _this9.player.currentTime;
+ this.player.on('timeupdate', () => {
+ time = this.player.currentTime;
});
- this.player.on('seeked', function () {
- var seekedTime = _this9.player.currentTime;
+ this.player.on('seeked', () => {
+ const seekedTime = this.player.currentTime;
- if (is$1.empty(_this9.cuePoints)) {
+ if (is.empty(this.cuePoints)) {
return;
}
- _this9.cuePoints.forEach(function (cuePoint, index) {
+ this.cuePoints.forEach((cuePoint, index) => {
if (time < cuePoint && cuePoint < seekedTime) {
- _this9.manager.discardAdBreak();
-
- _this9.cuePoints.splice(index, 1);
+ this.manager.discardAdBreak();
+ this.cuePoints.splice(index, 1);
}
});
}); // Listen to the resizing of the window. And resize ad accordingly
// TODO: eventually implement ResizeObserver
- window.addEventListener('resize', function () {
- if (_this9.manager) {
- _this9.manager.resize(container.offsetWidth, container.offsetHeight, google.ima.ViewMode.NORMAL);
+ window.addEventListener('resize', () => {
+ if (this.manager) {
+ this.manager.resize(container.offsetWidth, container.offsetHeight, google.ima.ViewMode.NORMAL);
}
});
- }
- /**
- * Initialize the adsManager and start playing advertisements
- */
-
- }, {
- key: "play",
- value: function play() {
- var _this10 = this;
+ });
- var container = this.player.elements.container;
+ _defineProperty$1(this, "play", () => {
+ const {
+ container
+ } = this.player.elements;
if (!this.managerPromise) {
this.resumeContent();
} // Play the requested advertisement whenever the adsManager is ready
- this.managerPromise.then(function () {
+ this.managerPromise.then(() => {
// Set volume to match player
- _this10.manager.setVolume(_this10.player.volume); // Initialize the container. Must be done via a user action on mobile devices
-
+ this.manager.setVolume(this.player.volume); // Initialize the container. Must be done via a user action on mobile devices
- _this10.elements.displayContainer.initialize();
+ this.elements.displayContainer.initialize();
try {
- if (!_this10.initialized) {
+ if (!this.initialized) {
// Initialize the ads manager. Ad rules playlist will start at this time
- _this10.manager.init(container.offsetWidth, container.offsetHeight, google.ima.ViewMode.NORMAL); // Call play to start showing the ad. Single video and overlay ads will
+ this.manager.init(container.offsetWidth, container.offsetHeight, google.ima.ViewMode.NORMAL); // Call play to start showing the ad. Single video and overlay ads will
// start at this time; the call will be ignored for ad rules
-
- _this10.manager.start();
+ this.manager.start();
}
- _this10.initialized = true;
+ this.initialized = true;
} catch (adError) {
// An error may be thrown if there was a problem with the
// VAST response
- _this10.onAdError(adError);
+ this.onAdError(adError);
}
- }).catch(function () {});
- }
- /**
- * Resume our video
- */
+ }).catch(() => {});
+ });
- }, {
- key: "resumeContent",
- value: function resumeContent() {
+ _defineProperty$1(this, "resumeContent", () => {
// Hide the advertisement container
this.elements.container.style.zIndex = ''; // Ad is stopped
this.playing = false; // Play video
silencePromise(this.player.media.play());
- }
- /**
- * Pause our video
- */
+ });
- }, {
- key: "pauseContent",
- value: function pauseContent() {
+ _defineProperty$1(this, "pauseContent", () => {
// Show the advertisement container
this.elements.container.style.zIndex = 3; // Ad is playing
this.playing = true; // Pause our video.
this.player.media.pause();
- }
- /**
- * Destroy the adsManager so we can grab new ads after this. If we don't then we're not
- * allowed to call new ads based on google policies, as they interpret this as an accidental
- * video requests. https://developers.google.com/interactive-
- * media-ads/docs/sdks/android/faq#8
- */
+ });
- }, {
- key: "cancel",
- value: function cancel() {
+ _defineProperty$1(this, "cancel", () => {
// Pause our video
if (this.initialized) {
this.resumeContent();
@@ -7000,176 +6530,156 @@ typeof navigator === "object" && (function (global, factory) {
this.trigger('error'); // Re-create our adsManager
this.loadAds();
- }
- /**
- * Re-create our adsManager
- */
-
- }, {
- key: "loadAds",
- value: function loadAds() {
- var _this11 = this;
+ });
+ _defineProperty$1(this, "loadAds", () => {
// Tell our adsManager to go bye bye
- this.managerPromise.then(function () {
+ this.managerPromise.then(() => {
// Destroy our adsManager
- if (_this11.manager) {
- _this11.manager.destroy();
+ if (this.manager) {
+ this.manager.destroy();
} // Re-set our adsManager promises
- _this11.managerPromise = new Promise(function (resolve) {
- _this11.on('loaded', resolve);
-
- _this11.player.debug.log(_this11.manager);
+ this.managerPromise = new Promise(resolve => {
+ this.on('loaded', resolve);
+ this.player.debug.log(this.manager);
}); // Now that the manager has been destroyed set it to also be un-initialized
- _this11.initialized = false; // Now request some new advertisements
-
- _this11.requestAds();
- }).catch(function () {});
- }
- /**
- * Handles callbacks after an ad event was invoked
- * @param {String} event - Event type
- */
-
- }, {
- key: "trigger",
- value: function trigger(event) {
- var _this12 = this;
+ this.initialized = false; // Now request some new advertisements
- for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
+ this.requestAds();
+ }).catch(() => {});
+ });
- var handlers = this.events[event];
+ _defineProperty$1(this, "trigger", (event, ...args) => {
+ const handlers = this.events[event];
- if (is$1.array(handlers)) {
- handlers.forEach(function (handler) {
- if (is$1.function(handler)) {
- handler.apply(_this12, args);
+ if (is.array(handlers)) {
+ handlers.forEach(handler => {
+ if (is.function(handler)) {
+ handler.apply(this, args);
}
});
}
- }
- /**
- * Add event listeners
- * @param {String} event - Event type
- * @param {Function} callback - Callback for when event occurs
- * @return {Ads}
- */
+ });
- }, {
- key: "on",
- value: function on(event, callback) {
- if (!is$1.array(this.events[event])) {
+ _defineProperty$1(this, "on", (event, callback) => {
+ if (!is.array(this.events[event])) {
this.events[event] = [];
}
this.events[event].push(callback);
return this;
- }
- /**
- * Setup a safety timer for when the ad network doesn't respond for whatever reason.
- * The advertisement has 12 seconds to get its things together. We stop this timer when the
- * advertisement is playing, or when a user action is required to start, then we clear the
- * timer on ad ready
- * @param {Number} time
- * @param {String} from
- */
-
- }, {
- key: "startSafetyTimer",
- value: function startSafetyTimer(time, from) {
- var _this13 = this;
-
- this.player.debug.log("Safety timer invoked from: ".concat(from));
- this.safetyTimer = setTimeout(function () {
- _this13.cancel();
+ });
- _this13.clearSafetyTimer('startSafetyTimer()');
+ _defineProperty$1(this, "startSafetyTimer", (time, from) => {
+ this.player.debug.log(`Safety timer invoked from: ${from}`);
+ this.safetyTimer = setTimeout(() => {
+ this.cancel();
+ this.clearSafetyTimer('startSafetyTimer()');
}, time);
- }
- /**
- * Clear our safety timer(s)
- * @param {String} from
- */
+ });
- }, {
- key: "clearSafetyTimer",
- value: function clearSafetyTimer(from) {
- if (!is$1.nullOrUndefined(this.safetyTimer)) {
- this.player.debug.log("Safety timer cleared from: ".concat(from));
+ _defineProperty$1(this, "clearSafetyTimer", from => {
+ if (!is.nullOrUndefined(this.safetyTimer)) {
+ this.player.debug.log(`Safety timer cleared from: ${from}`);
clearTimeout(this.safetyTimer);
this.safetyTimer = null;
}
- }
- }, {
- key: "enabled",
- get: function get() {
- var config = this.config;
- return this.player.isHTML5 && this.player.isVideo && config.enabled && (!is$1.empty(config.publisherId) || is$1.url(config.tagUrl));
- }
- }, {
- key: "tagUrl",
- get: function get() {
- var config = this.config;
+ });
- if (is$1.url(config.tagUrl)) {
- return config.tagUrl;
- }
+ this.player = player;
+ this.config = player.config.ads;
+ this.playing = false;
+ this.initialized = false;
+ this.elements = {
+ container: null,
+ displayContainer: null
+ };
+ this.manager = null;
+ this.loader = null;
+ this.cuePoints = null;
+ this.events = {};
+ this.safetyTimer = null;
+ this.countdownTimer = null; // Setup a promise to resolve when the IMA manager is ready
- var params = {
- AV_PUBLISHERID: '58c25bb0073ef448b1087ad6',
- AV_CHANNELID: '5a0458dc28a06145e4519d21',
- AV_URL: window.location.hostname,
- cb: Date.now(),
- AV_WIDTH: 640,
- AV_HEIGHT: 480,
- AV_CDIM2: config.publisherId
- };
- var base = 'https://go.aniview.com/api/adserver6/vast/';
- return "".concat(base, "?").concat(buildUrlParams(params));
+ this.managerPromise = new Promise((resolve, reject) => {
+ // The ad is loaded and ready
+ this.on('loaded', resolve); // Ads failed
+
+ this.on('error', reject);
+ });
+ this.load();
+ }
+
+ get enabled() {
+ const {
+ config
+ } = this;
+ return this.player.isHTML5 && this.player.isVideo && config.enabled && (!is.empty(config.publisherId) || is.url(config.tagUrl));
+ }
+ /**
+ * Load the IMA SDK
+ */
+
+
+ // Build the tag URL
+ get tagUrl() {
+ const {
+ config
+ } = this;
+
+ if (is.url(config.tagUrl)) {
+ return config.tagUrl;
}
- }]);
- return Ads;
- }();
+ const params = {
+ AV_PUBLISHERID: '58c25bb0073ef448b1087ad6',
+ AV_CHANNELID: '5a0458dc28a06145e4519d21',
+ AV_URL: window.location.hostname,
+ cb: Date.now(),
+ AV_WIDTH: 640,
+ AV_HEIGHT: 480,
+ AV_CDIM2: config.publisherId
+ };
+ const base = 'https://go.aniview.com/api/adserver6/vast/';
+ return `${base}?${buildUrlParams(params)}`;
+ }
+ /**
+ * In order for the SDK to display ads for our video, we need to tell it where to put them,
+ * so here we define our ad container. This div is set up to render on top of the video player.
+ * Using the code below, we tell the SDK to render ads within that div. We also provide a
+ * handle to the content video player - the SDK will poll the current time of our player to
+ * properly place mid-rolls. After we create the ad display container, we initialize it. On
+ * mobile devices, this initialization is done as the result of a user action.
+ */
+
+
+ }
- var parseVtt = function parseVtt(vttDataString) {
- var processedList = [];
- var frames = vttDataString.split(/\r\n\r\n|\n\n|\r\r/);
- frames.forEach(function (frame) {
- var result = {};
- var lines = frame.split(/\r\n|\n|\r/);
- lines.forEach(function (line) {
- if (!is$1.number(result.startTime)) {
+ const parseVtt = vttDataString => {
+ const processedList = [];
+ const frames = vttDataString.split(/\r\n\r\n|\n\n|\r\r/);
+ frames.forEach(frame => {
+ const result = {};
+ const lines = frame.split(/\r\n|\n|\r/);
+ lines.forEach(line => {
+ if (!is.number(result.startTime)) {
// The line with start and end times on it is the first line of interest
- var matchTimes = line.match(/([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})( ?--> ?)([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})/); // Note that this currently ignores caption formatting directives that are optionally on the end of this line - fine for non-captions VTT
+ const matchTimes = line.match(/([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})( ?--> ?)([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})/); // Note that this currently ignores caption formatting directives that are optionally on the end of this line - fine for non-captions VTT
if (matchTimes) {
- result.startTime = Number(matchTimes[1] || 0) * 60 * 60 + Number(matchTimes[2]) * 60 + Number(matchTimes[3]) + Number("0.".concat(matchTimes[4]));
- result.endTime = Number(matchTimes[6] || 0) * 60 * 60 + Number(matchTimes[7]) * 60 + Number(matchTimes[8]) + Number("0.".concat(matchTimes[9]));
+ result.startTime = Number(matchTimes[1] || 0) * 60 * 60 + Number(matchTimes[2]) * 60 + Number(matchTimes[3]) + Number(`0.${matchTimes[4]}`);
+ result.endTime = Number(matchTimes[6] || 0) * 60 * 60 + Number(matchTimes[7]) * 60 + Number(matchTimes[8]) + Number(`0.${matchTimes[9]}`);
}
- } else if (!is$1.empty(line.trim()) && is$1.empty(result.text)) {
+ } else if (!is.empty(line.trim()) && is.empty(result.text)) {
// If we already have the startTime, then we're definitely up to the text line(s)
- var lineSplit = line.trim().split('#xywh=');
+ const lineSplit = line.trim().split('#xywh=');
+ [result.text] = lineSplit; // If there's content in lineSplit[1], then we have sprites. If not, then it's just one frame per image
- var _lineSplit = _slicedToArray(lineSplit, 1);
-
- result.text = _lineSplit[0];
-
- // If there's content in lineSplit[1], then we have sprites. If not, then it's just one frame per image
if (lineSplit[1]) {
- var _lineSplit$1$split = lineSplit[1].split(',');
-
- var _lineSplit$1$split2 = _slicedToArray(_lineSplit$1$split, 4);
-
- result.x = _lineSplit$1$split2[0];
- result.y = _lineSplit$1$split2[1];
- result.w = _lineSplit$1$split2[2];
- result.h = _lineSplit$1$split2[3];
+ [result.x, result.y, result.w, result.h] = lineSplit[1].split(',');
}
}
});
@@ -7192,9 +6702,9 @@ typeof navigator === "object" && (function (global, factory) {
*/
- var fitRatio = function fitRatio(ratio, outer) {
- var targetRatio = outer.width / outer.height;
- var result = {};
+ const fitRatio = (ratio, outer) => {
+ const targetRatio = outer.width / outer.height;
+ const result = {};
if (ratio > targetRatio) {
result.width = outer.width;
@@ -7207,33 +6717,14 @@ typeof navigator === "object" && (function (global, factory) {
return result;
};
- var PreviewThumbnails = /*#__PURE__*/function () {
+ class PreviewThumbnails {
/**
* PreviewThumbnails constructor.
* @param {Plyr} player
* @return {PreviewThumbnails}
*/
- function PreviewThumbnails(player) {
- _classCallCheck(this, PreviewThumbnails);
-
- this.player = player;
- this.thumbnails = [];
- this.loaded = false;
- this.lastMouseMoveTime = Date.now();
- this.mouseDown = false;
- this.loadedImages = [];
- this.elements = {
- thumb: {},
- scrubbing: {}
- };
- this.load();
- }
-
- _createClass(PreviewThumbnails, [{
- key: "load",
- value: function load() {
- var _this = this;
-
+ constructor(player) {
+ _defineProperty$1(this, "load", () => {
// Toggle the regular seek tooltip
if (this.player.elements.display.seekTooltip) {
this.player.elements.display.seekTooltip.hidden = this.enabled;
@@ -7243,73 +6734,59 @@ typeof navigator === "object" && (function (global, factory) {
return;
}
- this.getThumbnails().then(function () {
- if (!_this.enabled) {
+ this.getThumbnails().then(() => {
+ if (!this.enabled) {
return;
} // Render DOM elements
- _this.render(); // Check to see if thumb container size was specified manually in CSS
-
+ this.render(); // Check to see if thumb container size was specified manually in CSS
- _this.determineContainerAutoSizing();
-
- _this.loaded = true;
+ this.determineContainerAutoSizing();
+ this.loaded = true;
});
- } // Download VTT files and parse them
-
- }, {
- key: "getThumbnails",
- value: function getThumbnails() {
- var _this2 = this;
+ });
- return new Promise(function (resolve) {
- var src = _this2.player.config.previewThumbnails.src;
+ _defineProperty$1(this, "getThumbnails", () => {
+ return new Promise(resolve => {
+ const {
+ src
+ } = this.player.config.previewThumbnails;
- if (is$1.empty(src)) {
+ if (is.empty(src)) {
throw new Error('Missing previewThumbnails.src config attribute');
} // Resolve promise
- var sortAndResolve = function sortAndResolve() {
+ const sortAndResolve = () => {
// Sort smallest to biggest (e.g., [120p, 480p, 1080p])
- _this2.thumbnails.sort(function (x, y) {
- return x.height - y.height;
- });
-
- _this2.player.debug.log('Preview thumbnails', _this2.thumbnails);
-
+ this.thumbnails.sort((x, y) => x.height - y.height);
+ this.player.debug.log('Preview thumbnails', this.thumbnails);
resolve();
}; // Via callback()
- if (is$1.function(src)) {
- src(function (thumbnails) {
- _this2.thumbnails = thumbnails;
+ if (is.function(src)) {
+ src(thumbnails => {
+ this.thumbnails = thumbnails;
sortAndResolve();
});
} // VTT urls
else {
// If string, convert into single-element list
- var urls = is$1.string(src) ? [src] : src; // Loop through each src URL. Download and process the VTT file, storing the resulting data in this.thumbnails
+ const urls = is.string(src) ? [src] : src; // Loop through each src URL. Download and process the VTT file, storing the resulting data in this.thumbnails
- var promises = urls.map(function (u) {
- return _this2.getThumbnail(u);
- }); // Resolve
+ const promises = urls.map(u => this.getThumbnail(u)); // Resolve
Promise.all(promises).then(sortAndResolve);
}
});
- } // Process individual VTT file
-
- }, {
- key: "getThumbnail",
- value: function getThumbnail(url) {
- var _this3 = this;
+ });
- return new Promise(function (resolve) {
- fetch(url).then(function (response) {
- var thumbnail = {
+ _defineProperty$1(this, "getThumbnail", url => {
+ return new Promise(resolve => {
+ fetch(url).then(response => {
+ const thumbnail = {
frames: parseVtt(response),
height: null,
urlPrefix: ''
@@ -7322,29 +6799,26 @@ typeof navigator === "object" && (function (global, factory) {
} // Download the first frame, so that we can determine/set the height of this thumbnailsDef
- var tempImage = new Image();
+ const tempImage = new Image();
- tempImage.onload = function () {
+ tempImage.onload = () => {
thumbnail.height = tempImage.naturalHeight;
thumbnail.width = tempImage.naturalWidth;
-
- _this3.thumbnails.push(thumbnail);
-
+ this.thumbnails.push(thumbnail);
resolve();
};
tempImage.src = thumbnail.urlPrefix + thumbnail.frames[0].text;
});
});
- }
- }, {
- key: "startMove",
- value: function startMove(event) {
+ });
+
+ _defineProperty$1(this, "startMove", event => {
if (!this.loaded) {
return;
}
- if (!is$1.event(event) || !['touchmove', 'mousemove'].includes(event.type)) {
+ if (!is.event(event) || !['touchmove', 'mousemove'].includes(event.type)) {
return;
} // Wait until media has a duration
@@ -7358,8 +6832,8 @@ typeof navigator === "object" && (function (global, factory) {
this.seekTime = this.player.media.duration * (this.player.elements.inputs.seek.value / 100);
} else {
// Calculate seek hover position as approx video seconds
- var clientRect = this.player.elements.progress.getBoundingClientRect();
- var percentage = 100 / clientRect.width * (event.pageX - clientRect.left);
+ const clientRect = this.player.elements.progress.getBoundingClientRect();
+ const percentage = 100 / clientRect.width * (event.pageX - clientRect.left);
this.seekTime = this.player.media.duration * (percentage / 100);
if (this.seekTime < 0) {
@@ -7379,17 +6853,15 @@ typeof navigator === "object" && (function (global, factory) {
this.showImageAtCurrentTime();
- }
- }, {
- key: "endMove",
- value: function endMove() {
+ });
+
+ _defineProperty$1(this, "endMove", () => {
this.toggleThumbContainer(false, true);
- }
- }, {
- key: "startScrubbing",
- value: function startScrubbing(event) {
+ });
+
+ _defineProperty$1(this, "startScrubbing", event => {
// Only act on left mouse button (0), or touch device (event.button does not exist or is false)
- if (is$1.nullOrUndefined(event.button) || event.button === false || event.button === 0) {
+ if (is.nullOrUndefined(event.button) || event.button === false || event.button === 0) {
this.mouseDown = true; // Wait until media has a duration
if (this.player.media.duration) {
@@ -7399,12 +6871,9 @@ typeof navigator === "object" && (function (global, factory) {
this.showImageAtCurrentTime();
}
}
- }
- }, {
- key: "endScrubbing",
- value: function endScrubbing() {
- var _this4 = this;
+ });
+ _defineProperty$1(this, "endScrubbing", () => {
this.mouseDown = false; // Hide scrubbing preview. But wait until the video has successfully seeked before hiding the scrubbing preview
if (Math.ceil(this.lastTime) === Math.ceil(this.player.media.currentTime)) {
@@ -7412,41 +6881,29 @@ typeof navigator === "object" && (function (global, factory) {
this.toggleScrubbingContainer(false);
} else {
// The video hasn't seeked yet. Wait for that
- once.call(this.player, this.player.media, 'timeupdate', function () {
+ once.call(this.player, this.player.media, 'timeupdate', () => {
// Re-check mousedown - we might have already started scrubbing again
- if (!_this4.mouseDown) {
- _this4.toggleScrubbingContainer(false);
+ if (!this.mouseDown) {
+ this.toggleScrubbingContainer(false);
}
});
}
- }
- /**
- * Setup hooks for Plyr and window events
- */
-
- }, {
- key: "listeners",
- value: function listeners() {
- var _this5 = this;
+ });
+ _defineProperty$1(this, "listeners", () => {
// Hide thumbnail preview - on mouse click, mouse leave (in listeners.js for now), and video play/seek. All four are required, e.g., for buffering
- this.player.on('play', function () {
- _this5.toggleThumbContainer(false, true);
+ this.player.on('play', () => {
+ this.toggleThumbContainer(false, true);
});
- this.player.on('seeked', function () {
- _this5.toggleThumbContainer(false);
+ this.player.on('seeked', () => {
+ this.toggleThumbContainer(false);
});
- this.player.on('timeupdate', function () {
- _this5.lastTime = _this5.player.media.currentTime;
+ this.player.on('timeupdate', () => {
+ this.lastTime = this.player.media.currentTime;
});
- }
- /**
- * Create HTML elements for image containers
- */
+ });
- }, {
- key: "render",
- value: function render() {
+ _defineProperty$1(this, "render", () => {
// Create HTML element: plyr__preview-thumbnail-container
this.elements.thumb.container = createElement('div', {
class: this.player.config.classNames.previewThumbnails.thumbContainer
@@ -7457,14 +6914,14 @@ typeof navigator === "object" && (function (global, factory) {
});
this.elements.thumb.container.appendChild(this.elements.thumb.imageContainer); // Create HTML element, parent+span: time text (e.g., 01:32:00)
- var timeContainer = createElement('div', {
+ const timeContainer = createElement('div', {
class: this.player.config.classNames.previewThumbnails.timeContainer
});
this.elements.thumb.time = createElement('span', {}, '00:00');
timeContainer.appendChild(this.elements.thumb.time);
this.elements.thumb.container.appendChild(timeContainer); // Inject the whole thumb
- if (is$1.element(this.player.elements.progress)) {
+ if (is.element(this.player.elements.progress)) {
this.player.elements.progress.appendChild(this.elements.thumb.container);
} // Create HTML element: plyr__preview-scrubbing-container
@@ -7473,10 +6930,9 @@ typeof navigator === "object" && (function (global, factory) {
class: this.player.config.classNames.previewThumbnails.scrubbingContainer
});
this.player.elements.wrapper.appendChild(this.elements.scrubbing.container);
- }
- }, {
- key: "destroy",
- value: function destroy() {
+ });
+
+ _defineProperty$1(this, "destroy", () => {
if (this.elements.thumb.container) {
this.elements.thumb.container.remove();
}
@@ -7484,12 +6940,9 @@ typeof navigator === "object" && (function (global, factory) {
if (this.elements.scrubbing.container) {
this.elements.scrubbing.container.remove();
}
- }
- }, {
- key: "showImageAtCurrentTime",
- value: function showImageAtCurrentTime() {
- var _this6 = this;
+ });
+ _defineProperty$1(this, "showImageAtCurrentTime", () => {
if (this.mouseDown) {
this.setScrubbingContainerSize();
} else {
@@ -7498,11 +6951,9 @@ typeof navigator === "object" && (function (global, factory) {
// TODO: Handle a video longer than the thumbs where thumbNum is null
- var thumbNum = this.thumbnails[0].frames.findIndex(function (frame) {
- return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
- });
- var hasThumb = thumbNum >= 0;
- var qualityIndex = 0; // Show the thumb container if we're not scrubbing
+ const thumbNum = this.thumbnails[0].frames.findIndex(frame => this.seekTime >= frame.startTime && this.seekTime <= frame.endTime);
+ const hasThumb = thumbNum >= 0;
+ let qualityIndex = 0; // Show the thumb container if we're not scrubbing
if (!this.mouseDown) {
this.toggleThumbContainer(hasThumb);
@@ -7514,8 +6965,8 @@ typeof navigator === "object" && (function (global, factory) {
} // Check to see if we've already downloaded higher quality versions of this image
- this.thumbnails.forEach(function (thumbnail, index) {
- if (_this6.loadedImages.includes(thumbnail.frames[thumbNum].text)) {
+ this.thumbnails.forEach((thumbnail, index) => {
+ if (this.loadedImages.includes(thumbnail.frames[thumbNum].text)) {
qualityIndex = index;
}
}); // Only proceed if either thumbnum or thumbfilename has changed
@@ -7524,20 +6975,17 @@ typeof navigator === "object" && (function (global, factory) {
this.showingThumb = thumbNum;
this.loadImage(qualityIndex);
}
- } // Show the image that's currently specified in this.showingThumb
+ });
- }, {
- key: "loadImage",
- value: function loadImage() {
- var _this7 = this;
-
- var qualityIndex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var thumbNum = this.showingThumb;
- var thumbnail = this.thumbnails[qualityIndex];
- var urlPrefix = thumbnail.urlPrefix;
- var frame = thumbnail.frames[thumbNum];
- var thumbFilename = thumbnail.frames[thumbNum].text;
- var thumbUrl = urlPrefix + thumbFilename;
+ _defineProperty$1(this, "loadImage", (qualityIndex = 0) => {
+ const thumbNum = this.showingThumb;
+ const thumbnail = this.thumbnails[qualityIndex];
+ const {
+ urlPrefix
+ } = thumbnail;
+ const frame = thumbnail.frames[thumbNum];
+ const thumbFilename = thumbnail.frames[thumbNum].text;
+ const thumbUrl = urlPrefix + thumbFilename;
if (!this.currentImageElement || this.currentImageElement.dataset.filename !== thumbFilename) {
// If we're already loading a previous image, remove its onload handler - we don't want it to load after this one
@@ -7549,16 +6997,14 @@ typeof navigator === "object" && (function (global, factory) {
// images causes a flicker. Putting a new image over the top does not
- var previewImage = new Image();
+ const previewImage = new Image();
previewImage.src = thumbUrl;
previewImage.dataset.index = thumbNum;
previewImage.dataset.filename = thumbFilename;
this.showingThumbFilename = thumbFilename;
- this.player.debug.log("Loading image: ".concat(thumbUrl)); // For some reason, passing the named function directly causes it to execute immediately. So I've wrapped it in an anonymous function...
+ this.player.debug.log(`Loading image: ${thumbUrl}`); // For some reason, passing the named function directly causes it to execute immediately. So I've wrapped it in an anonymous function...
- previewImage.onload = function () {
- return _this7.showImage(previewImage, frame, qualityIndex, thumbNum, thumbFilename, true);
- };
+ previewImage.onload = () => this.showImage(previewImage, frame, qualityIndex, thumbNum, thumbFilename, true);
this.loadingImage = previewImage;
this.removeOldImages(previewImage);
@@ -7568,12 +7014,10 @@ typeof navigator === "object" && (function (global, factory) {
this.currentImageElement.dataset.index = thumbNum;
this.removeOldImages(this.currentImageElement);
}
- }
- }, {
- key: "showImage",
- value: function showImage(previewImage, frame, qualityIndex, thumbNum, thumbFilename) {
- var newImage = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true;
- this.player.debug.log("Showing thumb: ".concat(thumbFilename, ". num: ").concat(thumbNum, ". qual: ").concat(qualityIndex, ". newimg: ").concat(newImage));
+ });
+
+ _defineProperty$1(this, "showImage", (previewImage, frame, qualityIndex, thumbNum, thumbFilename, newImage = true) => {
+ this.player.debug.log(`Showing thumb: ${thumbFilename}. num: ${thumbNum}. qual: ${qualityIndex}. newimg: ${newImage}`);
this.setImageSizeAndOffset(previewImage, frame);
if (newImage) {
@@ -7589,20 +7033,16 @@ typeof navigator === "object" && (function (global, factory) {
this.preloadNearby(thumbNum, true).then(this.preloadNearby(thumbNum, false)).then(this.getHigherQuality(qualityIndex, previewImage, frame, thumbFilename));
- } // Remove all preview images that aren't the designated current image
-
- }, {
- key: "removeOldImages",
- value: function removeOldImages(currentImage) {
- var _this8 = this;
+ });
+ _defineProperty$1(this, "removeOldImages", currentImage => {
// Get a list of all images, convert it from a DOM list to an array
- Array.from(this.currentImageContainer.children).forEach(function (image) {
+ Array.from(this.currentImageContainer.children).forEach(image => {
if (image.tagName.toLowerCase() !== 'img') {
return;
}
- var removeDelay = _this8.usingSprites ? 500 : 1000;
+ const removeDelay = this.usingSprites ? 500 : 1000;
if (image.dataset.index !== currentImage.dataset.index && !image.dataset.deleting) {
// Wait 200ms, as the new image can take some time to show on certain browsers (even though it was downloaded before showing). This will prevent flicker, and show some generosity towards slower clients
@@ -7610,57 +7050,51 @@ typeof navigator === "object" && (function (global, factory) {
// eslint-disable-next-line no-param-reassign
image.dataset.deleting = true; // This has to be set before the timeout - to prevent issues switching between hover and scrub
- var currentImageContainer = _this8.currentImageContainer;
- setTimeout(function () {
+ const {
+ currentImageContainer
+ } = this;
+ setTimeout(() => {
currentImageContainer.removeChild(image);
-
- _this8.player.debug.log("Removing thumb: ".concat(image.dataset.filename));
+ this.player.debug.log(`Removing thumb: ${image.dataset.filename}`);
}, removeDelay);
}
});
- } // Preload images before and after the current one. Only if the user is still hovering/seeking the same frame
- // This will only preload the lowest quality
-
- }, {
- key: "preloadNearby",
- value: function preloadNearby(thumbNum) {
- var _this9 = this;
+ });
- var forward = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
- return new Promise(function (resolve) {
- setTimeout(function () {
- var oldThumbFilename = _this9.thumbnails[0].frames[thumbNum].text;
+ _defineProperty$1(this, "preloadNearby", (thumbNum, forward = true) => {
+ return new Promise(resolve => {
+ setTimeout(() => {
+ const oldThumbFilename = this.thumbnails[0].frames[thumbNum].text;
- if (_this9.showingThumbFilename === oldThumbFilename) {
+ if (this.showingThumbFilename === oldThumbFilename) {
// Find the nearest thumbs with different filenames. Sometimes it'll be the next index, but in the case of sprites, it might be 100+ away
- var thumbnailsClone;
+ let thumbnailsClone;
if (forward) {
- thumbnailsClone = _this9.thumbnails[0].frames.slice(thumbNum);
+ thumbnailsClone = this.thumbnails[0].frames.slice(thumbNum);
} else {
- thumbnailsClone = _this9.thumbnails[0].frames.slice(0, thumbNum).reverse();
+ thumbnailsClone = this.thumbnails[0].frames.slice(0, thumbNum).reverse();
}
- var foundOne = false;
- thumbnailsClone.forEach(function (frame) {
- var newThumbFilename = frame.text;
+ let foundOne = false;
+ thumbnailsClone.forEach(frame => {
+ const newThumbFilename = frame.text;
if (newThumbFilename !== oldThumbFilename) {
// Found one with a different filename. Make sure it hasn't already been loaded on this page visit
- if (!_this9.loadedImages.includes(newThumbFilename)) {
+ if (!this.loadedImages.includes(newThumbFilename)) {
foundOne = true;
-
- _this9.player.debug.log("Preloading thumb filename: ".concat(newThumbFilename));
-
- var urlPrefix = _this9.thumbnails[0].urlPrefix;
- var thumbURL = urlPrefix + newThumbFilename;
- var previewImage = new Image();
+ this.player.debug.log(`Preloading thumb filename: ${newThumbFilename}`);
+ const {
+ urlPrefix
+ } = this.thumbnails[0];
+ const thumbURL = urlPrefix + newThumbFilename;
+ const previewImage = new Image();
previewImage.src = thumbURL;
- previewImage.onload = function () {
- _this9.player.debug.log("Preloaded thumb filename: ".concat(newThumbFilename));
-
- if (!_this9.loadedImages.includes(newThumbFilename)) _this9.loadedImages.push(newThumbFilename); // We don't resolve until the thumb is loaded
+ previewImage.onload = () => {
+ this.player.debug.log(`Preloaded thumb filename: ${newThumbFilename}`);
+ if (!this.loadedImages.includes(newThumbFilename)) this.loadedImages.push(newThumbFilename); // We don't resolve until the thumb is loaded
resolve();
};
@@ -7674,16 +7108,12 @@ typeof navigator === "object" && (function (global, factory) {
}
}, 300);
});
- } // If user has been hovering current image for half a second, look for a higher quality one
-
- }, {
- key: "getHigherQuality",
- value: function getHigherQuality(currentQualityIndex, previewImage, frame, thumbFilename) {
- var _this10 = this;
+ });
+ _defineProperty$1(this, "getHigherQuality", (currentQualityIndex, previewImage, frame, thumbFilename) => {
if (currentQualityIndex < this.thumbnails.length - 1) {
// Only use the higher quality version if it's going to look any better - if the current thumb is of a lower pixel density than the thumbnail container
- var previewImageHeight = previewImage.naturalHeight;
+ let previewImageHeight = previewImage.naturalHeight;
if (this.usingSprites) {
previewImageHeight = frame.h;
@@ -7691,80 +7121,71 @@ typeof navigator === "object" && (function (global, factory) {
if (previewImageHeight < this.thumbContainerHeight) {
// Recurse back to the loadImage function - show a higher quality one, but only if the viewer is on this frame for a while
- setTimeout(function () {
+ setTimeout(() => {
// Make sure the mouse hasn't already moved on and started hovering at another image
- if (_this10.showingThumbFilename === thumbFilename) {
- _this10.player.debug.log("Showing higher quality thumb for: ".concat(thumbFilename));
-
- _this10.loadImage(currentQualityIndex + 1);
+ if (this.showingThumbFilename === thumbFilename) {
+ this.player.debug.log(`Showing higher quality thumb for: ${thumbFilename}`);
+ this.loadImage(currentQualityIndex + 1);
}
}, 300);
}
}
- }
- }, {
- key: "toggleThumbContainer",
- value: function toggleThumbContainer() {
- var toggle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
- var clearShowing = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- var className = this.player.config.classNames.previewThumbnails.thumbContainerShown;
+ });
+
+ _defineProperty$1(this, "toggleThumbContainer", (toggle = false, clearShowing = false) => {
+ const className = this.player.config.classNames.previewThumbnails.thumbContainerShown;
this.elements.thumb.container.classList.toggle(className, toggle);
if (!toggle && clearShowing) {
this.showingThumb = null;
this.showingThumbFilename = null;
}
- }
- }, {
- key: "toggleScrubbingContainer",
- value: function toggleScrubbingContainer() {
- var toggle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
- var className = this.player.config.classNames.previewThumbnails.scrubbingContainerShown;
+ });
+
+ _defineProperty$1(this, "toggleScrubbingContainer", (toggle = false) => {
+ const className = this.player.config.classNames.previewThumbnails.scrubbingContainerShown;
this.elements.scrubbing.container.classList.toggle(className, toggle);
if (!toggle) {
this.showingThumb = null;
this.showingThumbFilename = null;
}
- }
- }, {
- key: "determineContainerAutoSizing",
- value: function determineContainerAutoSizing() {
+ });
+
+ _defineProperty$1(this, "determineContainerAutoSizing", () => {
if (this.elements.thumb.imageContainer.clientHeight > 20 || this.elements.thumb.imageContainer.clientWidth > 20) {
// This will prevent auto sizing in this.setThumbContainerSizeAndPos()
this.sizeSpecifiedInCSS = true;
}
- } // Set the size to be about a quarter of the size of video. Unless option dynamicSize === false, in which case it needs to be set in CSS
+ });
- }, {
- key: "setThumbContainerSizeAndPos",
- value: function setThumbContainerSizeAndPos() {
+ _defineProperty$1(this, "setThumbContainerSizeAndPos", () => {
if (!this.sizeSpecifiedInCSS) {
- var thumbWidth = Math.floor(this.thumbContainerHeight * this.thumbAspectRatio);
- this.elements.thumb.imageContainer.style.height = "".concat(this.thumbContainerHeight, "px");
- this.elements.thumb.imageContainer.style.width = "".concat(thumbWidth, "px");
+ const thumbWidth = Math.floor(this.thumbContainerHeight * this.thumbAspectRatio);
+ this.elements.thumb.imageContainer.style.height = `${this.thumbContainerHeight}px`;
+ this.elements.thumb.imageContainer.style.width = `${thumbWidth}px`;
} else if (this.elements.thumb.imageContainer.clientHeight > 20 && this.elements.thumb.imageContainer.clientWidth < 20) {
- var _thumbWidth = Math.floor(this.elements.thumb.imageContainer.clientHeight * this.thumbAspectRatio);
-
- this.elements.thumb.imageContainer.style.width = "".concat(_thumbWidth, "px");
+ const thumbWidth = Math.floor(this.elements.thumb.imageContainer.clientHeight * this.thumbAspectRatio);
+ this.elements.thumb.imageContainer.style.width = `${thumbWidth}px`;
} else if (this.elements.thumb.imageContainer.clientHeight < 20 && this.elements.thumb.imageContainer.clientWidth > 20) {
- var thumbHeight = Math.floor(this.elements.thumb.imageContainer.clientWidth / this.thumbAspectRatio);
- this.elements.thumb.imageContainer.style.height = "".concat(thumbHeight, "px");
+ const thumbHeight = Math.floor(this.elements.thumb.imageContainer.clientWidth / this.thumbAspectRatio);
+ this.elements.thumb.imageContainer.style.height = `${thumbHeight}px`;
}
this.setThumbContainerPos();
- }
- }, {
- key: "setThumbContainerPos",
- value: function setThumbContainerPos() {
- var seekbarRect = this.player.elements.progress.getBoundingClientRect();
- var plyrRect = this.player.elements.container.getBoundingClientRect();
- var container = this.elements.thumb.container; // Find the lowest and highest desired left-position, so we don't slide out the side of the video container
+ });
- var minVal = plyrRect.left - seekbarRect.left + 10;
- var maxVal = plyrRect.right - seekbarRect.left - container.clientWidth - 10; // Set preview container position to: mousepos, minus seekbar.left, minus half of previewContainer.clientWidth
+ _defineProperty$1(this, "setThumbContainerPos", () => {
+ const seekbarRect = this.player.elements.progress.getBoundingClientRect();
+ const plyrRect = this.player.elements.container.getBoundingClientRect();
+ const {
+ container
+ } = this.elements.thumb; // Find the lowest and highest desired left-position, so we don't slide out the side of the video container
- var previewPos = this.mousePosX - seekbarRect.left - container.clientWidth / 2;
+ const minVal = plyrRect.left - seekbarRect.left + 10;
+ const maxVal = plyrRect.right - seekbarRect.left - container.clientWidth - 10; // Set preview container position to: mousepos, minus seekbar.left, minus half of previewContainer.clientWidth
+
+ let previewPos = this.mousePosX - seekbarRect.left - container.clientWidth / 2;
if (previewPos < minVal) {
previewPos = minVal;
@@ -7774,130 +7195,130 @@ typeof navigator === "object" && (function (global, factory) {
previewPos = maxVal;
}
- container.style.left = "".concat(previewPos, "px");
- } // Can't use 100% width, in case the video is a different aspect ratio to the video container
+ container.style.left = `${previewPos}px`;
+ });
- }, {
- key: "setScrubbingContainerSize",
- value: function setScrubbingContainerSize() {
- var _fitRatio = fitRatio(this.thumbAspectRatio, {
+ _defineProperty$1(this, "setScrubbingContainerSize", () => {
+ const {
+ width,
+ height
+ } = fitRatio(this.thumbAspectRatio, {
width: this.player.media.clientWidth,
height: this.player.media.clientHeight
- }),
- width = _fitRatio.width,
- height = _fitRatio.height;
-
- this.elements.scrubbing.container.style.width = "".concat(width, "px");
- this.elements.scrubbing.container.style.height = "".concat(height, "px");
- } // Sprites need to be offset to the correct location
+ });
+ this.elements.scrubbing.container.style.width = `${width}px`;
+ this.elements.scrubbing.container.style.height = `${height}px`;
+ });
- }, {
- key: "setImageSizeAndOffset",
- value: function setImageSizeAndOffset(previewImage, frame) {
+ _defineProperty$1(this, "setImageSizeAndOffset", (previewImage, frame) => {
if (!this.usingSprites) {
return;
} // Find difference between height and preview container height
- var multiplier = this.thumbContainerHeight / frame.h; // eslint-disable-next-line no-param-reassign
+ const multiplier = this.thumbContainerHeight / frame.h; // eslint-disable-next-line no-param-reassign
- previewImage.style.height = "".concat(previewImage.naturalHeight * multiplier, "px"); // eslint-disable-next-line no-param-reassign
+ previewImage.style.height = `${previewImage.naturalHeight * multiplier}px`; // eslint-disable-next-line no-param-reassign
- previewImage.style.width = "".concat(previewImage.naturalWidth * multiplier, "px"); // eslint-disable-next-line no-param-reassign
+ previewImage.style.width = `${previewImage.naturalWidth * multiplier}px`; // eslint-disable-next-line no-param-reassign
- previewImage.style.left = "-".concat(frame.x * multiplier, "px"); // eslint-disable-next-line no-param-reassign
+ previewImage.style.left = `-${frame.x * multiplier}px`; // eslint-disable-next-line no-param-reassign
- previewImage.style.top = "-".concat(frame.y * multiplier, "px");
- }
- }, {
- key: "enabled",
- get: function get() {
- return this.player.isHTML5 && this.player.isVideo && this.player.config.previewThumbnails.enabled;
- }
- }, {
- key: "currentImageContainer",
- get: function get() {
- if (this.mouseDown) {
- return this.elements.scrubbing.container;
- }
+ previewImage.style.top = `-${frame.y * multiplier}px`;
+ });
- return this.elements.thumb.imageContainer;
- }
- }, {
- key: "usingSprites",
- get: function get() {
- return Object.keys(this.thumbnails[0].frames[0]).includes('w');
+ this.player = player;
+ this.thumbnails = [];
+ this.loaded = false;
+ this.lastMouseMoveTime = Date.now();
+ this.mouseDown = false;
+ this.loadedImages = [];
+ this.elements = {
+ thumb: {},
+ scrubbing: {}
+ };
+ this.load();
+ }
+
+ get enabled() {
+ return this.player.isHTML5 && this.player.isVideo && this.player.config.previewThumbnails.enabled;
+ }
+
+ get currentImageContainer() {
+ if (this.mouseDown) {
+ return this.elements.scrubbing.container;
}
- }, {
- key: "thumbAspectRatio",
- get: function get() {
- if (this.usingSprites) {
- return this.thumbnails[0].frames[0].w / this.thumbnails[0].frames[0].h;
- }
- return this.thumbnails[0].width / this.thumbnails[0].height;
+ return this.elements.thumb.imageContainer;
+ }
+
+ get usingSprites() {
+ return Object.keys(this.thumbnails[0].frames[0]).includes('w');
+ }
+
+ get thumbAspectRatio() {
+ if (this.usingSprites) {
+ return this.thumbnails[0].frames[0].w / this.thumbnails[0].frames[0].h;
}
- }, {
- key: "thumbContainerHeight",
- get: function get() {
- if (this.mouseDown) {
- var _fitRatio2 = fitRatio(this.thumbAspectRatio, {
- width: this.player.media.clientWidth,
- height: this.player.media.clientHeight
- }),
- height = _fitRatio2.height;
- return height;
- } // If css is used this needs to return the css height for sprites to work (see setImageSizeAndOffset)
+ return this.thumbnails[0].width / this.thumbnails[0].height;
+ }
+ get thumbContainerHeight() {
+ if (this.mouseDown) {
+ const {
+ height
+ } = fitRatio(this.thumbAspectRatio, {
+ width: this.player.media.clientWidth,
+ height: this.player.media.clientHeight
+ });
+ return height;
+ } // If css is used this needs to return the css height for sprites to work (see setImageSizeAndOffset)
- if (this.sizeSpecifiedInCSS) {
- return this.elements.thumb.imageContainer.clientHeight;
- }
- return Math.floor(this.player.media.clientWidth / this.thumbAspectRatio / 4);
+ if (this.sizeSpecifiedInCSS) {
+ return this.elements.thumb.imageContainer.clientHeight;
}
- }, {
- key: "currentImageElement",
- get: function get() {
- if (this.mouseDown) {
- return this.currentScrubbingImageElement;
- }
- return this.currentThumbnailImageElement;
- },
- set: function set(element) {
- if (this.mouseDown) {
- this.currentScrubbingImageElement = element;
- } else {
- this.currentThumbnailImageElement = element;
- }
+ return Math.floor(this.player.media.clientWidth / this.thumbAspectRatio / 4);
+ }
+
+ get currentImageElement() {
+ if (this.mouseDown) {
+ return this.currentScrubbingImageElement;
}
- }]);
- return PreviewThumbnails;
- }();
+ return this.currentThumbnailImageElement;
+ }
- var source = {
- // Add elements to HTML5 media (source, tracks, etc)
- insertElements: function insertElements(type, attributes) {
- var _this = this;
+ set currentImageElement(element) {
+ if (this.mouseDown) {
+ this.currentScrubbingImageElement = element;
+ } else {
+ this.currentThumbnailImageElement = element;
+ }
+ }
+
+ }
- if (is$1.string(attributes)) {
+ // ==========================================================================
+ const source = {
+ // Add elements to HTML5 media (source, tracks, etc)
+ insertElements(type, attributes) {
+ if (is.string(attributes)) {
insertElement(type, this.media, {
src: attributes
});
- } else if (is$1.array(attributes)) {
- attributes.forEach(function (attribute) {
- insertElement(type, _this.media, attribute);
+ } else if (is.array(attributes)) {
+ attributes.forEach(attribute => {
+ insertElement(type, this.media, attribute);
});
}
},
+
// Update source
// Sources are not checked for support so be careful
- change: function change(input) {
- var _this2 = this;
-
+ change(input) {
if (!getDeep(input, 'sources.length')) {
this.debug.warn('Invalid source format');
return;
@@ -7906,124 +7327,122 @@ typeof navigator === "object" && (function (global, factory) {
html5.cancelRequests.call(this); // Destroy instance and re-setup
- this.destroy.call(this, function () {
+ this.destroy.call(this, () => {
// Reset quality options
- _this2.options.quality = []; // Remove elements
+ this.options.quality = []; // Remove elements
- removeElement(_this2.media);
- _this2.media = null; // Reset class name
+ removeElement(this.media);
+ this.media = null; // Reset class name
- if (is$1.element(_this2.elements.container)) {
- _this2.elements.container.removeAttribute('class');
+ if (is.element(this.elements.container)) {
+ this.elements.container.removeAttribute('class');
} // Set the type and provider
- var sources = input.sources,
- type = input.type;
-
- var _sources = _slicedToArray(sources, 1),
- _sources$ = _sources[0],
- _sources$$provider = _sources$.provider,
- provider = _sources$$provider === void 0 ? providers.html5 : _sources$$provider,
- src = _sources$.src;
-
- var tagName = provider === 'html5' ? type : 'div';
- var attributes = provider === 'html5' ? {} : {
- src: src
+ const {
+ sources,
+ type
+ } = input;
+ const [{
+ provider = providers.html5,
+ src
+ }] = sources;
+ const tagName = provider === 'html5' ? type : 'div';
+ const attributes = provider === 'html5' ? {} : {
+ src
};
- Object.assign(_this2, {
- provider: provider,
- type: type,
+ Object.assign(this, {
+ provider,
+ type,
// Check for support
- supported: support.check(type, provider, _this2.config.playsinline),
+ supported: support.check(type, provider, this.config.playsinline),
// Create new element
media: createElement(tagName, attributes)
}); // Inject the new element
- _this2.elements.container.appendChild(_this2.media); // Autoplay the new source?
-
+ this.elements.container.appendChild(this.media); // Autoplay the new source?
- if (is$1.boolean(input.autoplay)) {
- _this2.config.autoplay = input.autoplay;
+ if (is.boolean(input.autoplay)) {
+ this.config.autoplay = input.autoplay;
} // Set attributes for audio and video
- if (_this2.isHTML5) {
- if (_this2.config.crossorigin) {
- _this2.media.setAttribute('crossorigin', '');
+ if (this.isHTML5) {
+ if (this.config.crossorigin) {
+ this.media.setAttribute('crossorigin', '');
}
- if (_this2.config.autoplay) {
- _this2.media.setAttribute('autoplay', '');
+ if (this.config.autoplay) {
+ this.media.setAttribute('autoplay', '');
}
- if (!is$1.empty(input.poster)) {
- _this2.poster = input.poster;
+ if (!is.empty(input.poster)) {
+ this.poster = input.poster;
}
- if (_this2.config.loop.active) {
- _this2.media.setAttribute('loop', '');
+ if (this.config.loop.active) {
+ this.media.setAttribute('loop', '');
}
- if (_this2.config.muted) {
- _this2.media.setAttribute('muted', '');
+ if (this.config.muted) {
+ this.media.setAttribute('muted', '');
}
- if (_this2.config.playsinline) {
- _this2.media.setAttribute('playsinline', '');
+ if (this.config.playsinline) {
+ this.media.setAttribute('playsinline', '');
}
} // Restore class hook
- ui.addStyleHook.call(_this2); // Set new sources for html5
+ ui.addStyleHook.call(this); // Set new sources for html5
- if (_this2.isHTML5) {
- source.insertElements.call(_this2, 'source', sources);
+ if (this.isHTML5) {
+ source.insertElements.call(this, 'source', sources);
} // Set video title
- _this2.config.title = input.title; // Set up from scratch
+ this.config.title = input.title; // Set up from scratch
- media.setup.call(_this2); // HTML5 stuff
+ media.setup.call(this); // HTML5 stuff
- if (_this2.isHTML5) {
+ if (this.isHTML5) {
// Setup captions
if (Object.keys(input).includes('tracks')) {
- source.insertElements.call(_this2, 'track', input.tracks);
+ source.insertElements.call(this, 'track', input.tracks);
}
} // If HTML5 or embed but not fully supported, setupInterface and call ready now
- if (_this2.isHTML5 || _this2.isEmbed && !_this2.supported.ui) {
+ if (this.isHTML5 || this.isEmbed && !this.supported.ui) {
// Setup interface
- ui.build.call(_this2);
+ ui.build.call(this);
} // Load HTML5 sources
- if (_this2.isHTML5) {
- _this2.media.load();
+ if (this.isHTML5) {
+ this.media.load();
} // Update previewThumbnails config & reload plugin
- if (!is$1.empty(input.previewThumbnails)) {
- Object.assign(_this2.config.previewThumbnails, input.previewThumbnails); // Cleanup previewThumbnails plugin if it was loaded
-
- if (_this2.previewThumbnails && _this2.previewThumbnails.loaded) {
- _this2.previewThumbnails.destroy();
+ if (!is.empty(input.previewThumbnails)) {
+ Object.assign(this.config.previewThumbnails, input.previewThumbnails); // Cleanup previewThumbnails plugin if it was loaded
- _this2.previewThumbnails = null;
+ if (this.previewThumbnails && this.previewThumbnails.loaded) {
+ this.previewThumbnails.destroy();
+ this.previewThumbnails = null;
} // Create new instance if it is still enabled
- if (_this2.config.previewThumbnails.enabled) {
- _this2.previewThumbnails = new PreviewThumbnails(_this2);
+ if (this.config.previewThumbnails.enabled) {
+ this.previewThumbnails = new PreviewThumbnails(this);
}
} // Update the fullscreen support
- _this2.fullscreen.update();
+ this.fullscreen.update();
}, true);
}
+
};
/**
@@ -8038,10 +7457,7 @@ typeof navigator === "object" && (function (global, factory) {
* @returns A number in the range [min, max]
* @type Number
*/
- function clamp() {
- var input = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var min = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- var max = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 255;
+ function clamp(input = 0, min = 0, max = 255) {
return Math.min(Math.max(input, min), max);
}
@@ -8049,11 +7465,205 @@ typeof navigator === "object" && (function (global, factory) {
// const globals = new WeakMap();
// Plyr instance
- var Plyr = /*#__PURE__*/function () {
- function Plyr(target, options) {
- var _this = this;
+ class Plyr {
+ constructor(target, options) {
+ _defineProperty$1(this, "play", () => {
+ if (!is.function(this.media.play)) {
+ return null;
+ } // Intecept play with ads
+
+
+ if (this.ads && this.ads.enabled) {
+ this.ads.managerPromise.then(() => this.ads.play()).catch(() => silencePromise(this.media.play()));
+ } // Return the promise (for HTML5)
+
+
+ return this.media.play();
+ });
+
+ _defineProperty$1(this, "pause", () => {
+ if (!this.playing || !is.function(this.media.pause)) {
+ return null;
+ }
+
+ return this.media.pause();
+ });
+
+ _defineProperty$1(this, "togglePlay", input => {
+ // Toggle based on current state if nothing passed
+ const toggle = is.boolean(input) ? input : !this.playing;
+
+ if (toggle) {
+ return this.play();
+ }
+
+ return this.pause();
+ });
+
+ _defineProperty$1(this, "stop", () => {
+ if (this.isHTML5) {
+ this.pause();
+ this.restart();
+ } else if (is.function(this.media.stop)) {
+ this.media.stop();
+ }
+ });
+
+ _defineProperty$1(this, "restart", () => {
+ this.currentTime = 0;
+ });
+
+ _defineProperty$1(this, "rewind", seekTime => {
+ this.currentTime -= is.number(seekTime) ? seekTime : this.config.seekTime;
+ });
+
+ _defineProperty$1(this, "forward", seekTime => {
+ this.currentTime += is.number(seekTime) ? seekTime : this.config.seekTime;
+ });
+
+ _defineProperty$1(this, "increaseVolume", step => {
+ const volume = this.media.muted ? 0 : this.volume;
+ this.volume = volume + (is.number(step) ? step : 0);
+ });
+
+ _defineProperty$1(this, "decreaseVolume", step => {
+ this.increaseVolume(-step);
+ });
+
+ _defineProperty$1(this, "airplay", () => {
+ // Show dialog if supported
+ if (support.airplay) {
+ this.media.webkitShowPlaybackTargetPicker();
+ }
+ });
+
+ _defineProperty$1(this, "toggleControls", toggle => {
+ // Don't toggle if missing UI support or if it's audio
+ if (this.supported.ui && !this.isAudio) {
+ // Get state before change
+ const isHidden = hasClass(this.elements.container, this.config.classNames.hideControls); // Negate the argument if not undefined since adding the class to hides the controls
+
+ const force = typeof toggle === 'undefined' ? undefined : !toggle; // Apply and get updated state
+
+ const hiding = toggleClass(this.elements.container, this.config.classNames.hideControls, force); // Close menu
+
+ if (hiding && is.array(this.config.controls) && this.config.controls.includes('settings') && !is.empty(this.config.settings)) {
+ controls.toggleMenu.call(this, false);
+ } // Trigger event on change
+
+
+ if (hiding !== isHidden) {
+ const eventName = hiding ? 'controlshidden' : 'controlsshown';
+ triggerEvent.call(this, this.media, eventName);
+ }
+
+ return !hiding;
+ }
+
+ return false;
+ });
+
+ _defineProperty$1(this, "on", (event, callback) => {
+ on.call(this, this.elements.container, event, callback);
+ });
+
+ _defineProperty$1(this, "once", (event, callback) => {
+ once.call(this, this.elements.container, event, callback);
+ });
+
+ _defineProperty$1(this, "off", (event, callback) => {
+ off(this.elements.container, event, callback);
+ });
+
+ _defineProperty$1(this, "destroy", (callback, soft = false) => {
+ if (!this.ready) {
+ return;
+ }
+
+ const done = () => {
+ // Reset overflow (incase destroyed while in fullscreen)
+ document.body.style.overflow = ''; // GC for embed
+
+ this.embed = null; // If it's a soft destroy, make minimal changes
+
+ if (soft) {
+ if (Object.keys(this.elements).length) {
+ // Remove elements
+ removeElement(this.elements.buttons.play);
+ removeElement(this.elements.captions);
+ removeElement(this.elements.controls);
+ removeElement(this.elements.wrapper); // Clear for GC
+
+ this.elements.buttons.play = null;
+ this.elements.captions = null;
+ this.elements.controls = null;
+ this.elements.wrapper = null;
+ } // Callback
+
+
+ if (is.function(callback)) {
+ callback();
+ }
+ } else {
+ // Unbind listeners
+ unbindListeners.call(this); // Cancel current network requests
+
+ html5.cancelRequests.call(this); // Replace the container with the original element provided
+
+ replaceElement(this.elements.original, this.elements.container); // Event
+
+ triggerEvent.call(this, this.elements.original, 'destroyed', true); // Callback
+
+ if (is.function(callback)) {
+ callback.call(this.elements.original);
+ } // Reset state
+
- _classCallCheck(this, Plyr);
+ this.ready = false; // Clear for garbage collection
+
+ setTimeout(() => {
+ this.elements = null;
+ this.media = null;
+ }, 200);
+ }
+ }; // Stop playback
+
+
+ this.stop(); // Clear timeouts
+
+ clearTimeout(this.timers.loading);
+ clearTimeout(this.timers.controls);
+ clearTimeout(this.timers.resized); // Provider specific stuff
+
+ if (this.isHTML5) {
+ // Restore native video controls
+ ui.toggleNativeControls.call(this, true); // Clean up
+
+ done();
+ } else if (this.isYouTube) {
+ // Clear timers
+ clearInterval(this.timers.buffering);
+ clearInterval(this.timers.playing); // Destroy YouTube API
+
+ if (this.embed !== null && is.function(this.embed.destroy)) {
+ this.embed.destroy();
+ } // Clean up
+
+
+ done();
+ } else if (this.isVimeo) {
+ // Destroy Vimeo API
+ // then clean up (wait, to prevent postmessage errors)
+ if (this.embed !== null) {
+ this.embed.unload().then(done);
+ } // Vimeo does not always return
+
+
+ setTimeout(done, 200);
+ }
+ });
+
+ _defineProperty$1(this, "supports", type => support.mime.call(this, type));
this.timers = {}; // State
@@ -8065,24 +7675,24 @@ typeof navigator === "object" && (function (global, factory) {
this.media = target; // String selector passed
- if (is$1.string(this.media)) {
+ if (is.string(this.media)) {
this.media = document.querySelectorAll(this.media);
} // jQuery, NodeList or Array passed, use first element
- if (window.jQuery && this.media instanceof jQuery || is$1.nodeList(this.media) || is$1.array(this.media)) {
+ if (window.jQuery && this.media instanceof jQuery || is.nodeList(this.media) || is.array(this.media)) {
// eslint-disable-next-line
this.media = this.media[0];
} // Set config
- this.config = extend({}, defaults$1, Plyr.defaults, options || {}, function () {
+ this.config = extend({}, defaults, Plyr.defaults, options || {}, (() => {
try {
- return JSON.parse(_this.media.getAttribute('data-plyr-config'));
+ return JSON.parse(this.media.getAttribute('data-plyr-config'));
} catch (e) {
return {};
}
- }()); // Elements cache
+ })()); // Elements cache
this.elements = {
container: null,
@@ -8121,7 +7731,7 @@ typeof navigator === "object" && (function (global, factory) {
this.debug.log('Config', this.config);
this.debug.log('Support', support); // We need an element to setup
- if (is$1.nullOrUndefined(this.media) || !is$1.element(this.media)) {
+ if (is.nullOrUndefined(this.media) || !is.element(this.media)) {
this.debug.error('Setup failed: no suitable element passed');
return;
} // Bail if the element is initialized
@@ -8146,22 +7756,23 @@ typeof navigator === "object" && (function (global, factory) {
} // Cache original element state for .destroy()
- var clone = this.media.cloneNode(true);
+ const clone = this.media.cloneNode(true);
clone.autoplay = false;
this.elements.original = clone; // Set media type based on tag or data attribute
// Supported: video, audio, vimeo, youtube
- var type = this.media.tagName.toLowerCase(); // Embed properties
+ const _type = this.media.tagName.toLowerCase(); // Embed properties
- var iframe = null;
- var url = null; // Different setup based on type
- switch (type) {
+ let iframe = null;
+ let url = null; // Different setup based on type
+
+ switch (_type) {
case 'div':
// Find the frame
iframe = this.media.querySelector('iframe'); // <iframe> type
- if (is$1.element(iframe)) {
+ if (is.element(iframe)) {
// Detect provider
url = parseUrl(iframe.getAttribute('src'));
this.provider = getProviderByUrl(url.toString()); // Rework elements
@@ -8172,7 +7783,7 @@ typeof navigator === "object" && (function (global, factory) {
this.elements.container.className = ''; // Get attributes from URL and set config
if (url.search.length) {
- var truthy = ['1', 'true'];
+ const truthy = ['1', 'true'];
if (truthy.includes(url.searchParams.get('autoplay'))) {
this.config.autoplay = true;
@@ -8199,7 +7810,7 @@ typeof navigator === "object" && (function (global, factory) {
} // Unsupported or missing provider
- if (is$1.empty(this.provider) || !Object.keys(providers).includes(this.provider)) {
+ if (is.empty(this.provider) || !Object.values(providers).includes(this.provider)) {
this.debug.error('Setup failed: Invalid provider');
return;
} // Audio will come later for external providers
@@ -8210,7 +7821,7 @@ typeof navigator === "object" && (function (global, factory) {
case 'video':
case 'audio':
- this.type = type;
+ this.type = _type;
this.provider = providers.html5; // Get config from attributes
if (this.media.hasAttribute('crossorigin')) {
@@ -8256,7 +7867,7 @@ typeof navigator === "object" && (function (global, factory) {
this.media.plyr = this; // Wrap media
- if (!is$1.element(this.elements.container)) {
+ if (!is.element(this.elements.container)) {
this.elements.container = createElement('div', {
tabindex: 0
});
@@ -8271,8 +7882,8 @@ typeof navigator === "object" && (function (global, factory) {
media.setup.call(this); // Listen for events if debugging
if (this.config.debug) {
- on.call(this, this.elements.container, this.config.events.join(' '), function (event) {
- _this.debug.log("event: ".concat(event.type));
+ on.call(this, this.elements.container, this.config.events.join(' '), event => {
+ this.debug.log(`event: ${event.type}`);
});
} // Setup fullscreen
@@ -8295,9 +7906,7 @@ typeof navigator === "object" && (function (global, factory) {
if (this.isHTML5 && this.config.autoplay) {
- setTimeout(function () {
- return silencePromise(_this.play());
- }, 10);
+ this.once('canplay', () => silencePromise(this.play()));
} // Seek time will be recorded (in listeners.js) so we can prevent hiding controls for a few seconds after seek
@@ -8315,1005 +7924,695 @@ typeof navigator === "object" && (function (global, factory) {
*/
- _createClass(Plyr, [{
- key: "play",
+ get isHTML5() {
+ return this.provider === providers.html5;
+ }
- /**
- * Play the media, or play the advertisement (if they are not blocked)
- */
- value: function play() {
- var _this2 = this;
+ get isEmbed() {
+ return this.isYouTube || this.isVimeo;
+ }
- if (!is$1.function(this.media.play)) {
- return null;
- } // Intecept play with ads
+ get isYouTube() {
+ return this.provider === providers.youtube;
+ }
+ get isVimeo() {
+ return this.provider === providers.vimeo;
+ }
- if (this.ads && this.ads.enabled) {
- this.ads.managerPromise.then(function () {
- return _this2.ads.play();
- }).catch(function () {
- return silencePromise(_this2.media.play());
- });
- } // Return the promise (for HTML5)
+ get isVideo() {
+ return this.type === types.video;
+ }
+ get isAudio() {
+ return this.type === types.audio;
+ }
+ /**
+ * Play the media, or play the advertisement (if they are not blocked)
+ */
- return this.media.play();
- }
- /**
- * Pause the media
- */
- }, {
- key: "pause",
- value: function pause() {
- if (!this.playing || !is$1.function(this.media.pause)) {
- return null;
- }
+ /**
+ * Get playing state
+ */
+ get playing() {
+ return Boolean(this.ready && !this.paused && !this.ended);
+ }
+ /**
+ * Get paused state
+ */
- return this.media.pause();
- }
- /**
- * Get playing state
- */
- }, {
- key: "togglePlay",
+ get paused() {
+ return Boolean(this.media.paused);
+ }
+ /**
+ * Get stopped state
+ */
- /**
- * Toggle playback based on current status
- * @param {Boolean} input
- */
- value: function togglePlay(input) {
- // Toggle based on current state if nothing passed
- var toggle = is$1.boolean(input) ? input : !this.playing;
- if (toggle) {
- return this.play();
- }
+ get stopped() {
+ return Boolean(this.paused && this.currentTime === 0);
+ }
+ /**
+ * Get ended state
+ */
- return this.pause();
- }
- /**
- * Stop playback
- */
- }, {
- key: "stop",
- value: function stop() {
- if (this.isHTML5) {
- this.pause();
- this.restart();
- } else if (is$1.function(this.media.stop)) {
- this.media.stop();
- }
- }
- /**
- * Restart playback
- */
+ get ended() {
+ return Boolean(this.media.ended);
+ }
+ /**
+ * Toggle playback based on current status
+ * @param {Boolean} input
+ */
- }, {
- key: "restart",
- value: function restart() {
- this.currentTime = 0;
- }
- /**
- * Rewind
- * @param {Number} seekTime - how far to rewind in seconds. Defaults to the config.seekTime
- */
- }, {
- key: "rewind",
- value: function rewind(seekTime) {
- this.currentTime -= is$1.number(seekTime) ? seekTime : this.config.seekTime;
- }
- /**
- * Fast forward
- * @param {Number} seekTime - how far to fast forward in seconds. Defaults to the config.seekTime
- */
+ /**
+ * Seek to a time
+ * @param {Number} input - where to seek to in seconds. Defaults to 0 (the start)
+ */
+ set currentTime(input) {
+ // Bail if media duration isn't available yet
+ if (!this.duration) {
+ return;
+ } // Validate input
- }, {
- key: "forward",
- value: function forward(seekTime) {
- this.currentTime += is$1.number(seekTime) ? seekTime : this.config.seekTime;
- }
- /**
- * Seek to a time
- * @param {Number} input - where to seek to in seconds. Defaults to 0 (the start)
- */
- }, {
- key: "increaseVolume",
+ const inputIsValid = is.number(input) && input > 0; // Set
- /**
- * Increase volume
- * @param {Boolean} step - How much to decrease by (between 0 and 1)
- */
- value: function increaseVolume(step) {
- var volume = this.media.muted ? 0 : this.volume;
- this.volume = volume + (is$1.number(step) ? step : 0);
- }
- /**
- * Decrease volume
- * @param {Boolean} step - How much to decrease by (between 0 and 1)
- */
+ this.media.currentTime = inputIsValid ? Math.min(input, this.duration) : 0; // Logging
- }, {
- key: "decreaseVolume",
- value: function decreaseVolume(step) {
- this.increaseVolume(-step);
- }
- /**
- * Set muted state
- * @param {Boolean} mute
- */
+ this.debug.log(`Seeking to ${this.currentTime} seconds`);
+ }
+ /**
+ * Get current time
+ */
- }, {
- key: "toggleCaptions",
- /**
- * Toggle captions
- * @param {Boolean} input - Whether to enable captions
- */
- value: function toggleCaptions(input) {
- captions.toggle.call(this, input, false);
- }
- /**
- * Set the caption track by index
- * @param {Number} - Caption index
- */
+ get currentTime() {
+ return Number(this.media.currentTime);
+ }
+ /**
+ * Get buffered
+ */
- }, {
- key: "airplay",
- /**
- * Trigger the airplay dialog
- * TODO: update player with state, support, enabled
- */
- value: function airplay() {
- // Show dialog if supported
- if (support.airplay) {
- this.media.webkitShowPlaybackTargetPicker();
- }
- }
- /**
- * Toggle the player controls
- * @param {Boolean} [toggle] - Whether to show the controls
- */
+ get buffered() {
+ const {
+ buffered
+ } = this.media; // YouTube / Vimeo return a float between 0-1
- }, {
- key: "toggleControls",
- value: function toggleControls(toggle) {
- // Don't toggle if missing UI support or if it's audio
- if (this.supported.ui && !this.isAudio) {
- // Get state before change
- var isHidden = hasClass(this.elements.container, this.config.classNames.hideControls); // Negate the argument if not undefined since adding the class to hides the controls
+ if (is.number(buffered)) {
+ return buffered;
+ } // HTML5
+ // TODO: Handle buffered chunks of the media
+ // (i.e. seek to another section buffers only that section)
- var force = typeof toggle === 'undefined' ? undefined : !toggle; // Apply and get updated state
- var hiding = toggleClass(this.elements.container, this.config.classNames.hideControls, force); // Close menu
+ if (buffered && buffered.length && this.duration > 0) {
+ return buffered.end(0) / this.duration;
+ }
- if (hiding && is$1.array(this.config.controls) && this.config.controls.includes('settings') && !is$1.empty(this.config.settings)) {
- controls.toggleMenu.call(this, false);
- } // Trigger event on change
+ return 0;
+ }
+ /**
+ * Get seeking status
+ */
- if (hiding !== isHidden) {
- var eventName = hiding ? 'controlshidden' : 'controlsshown';
- triggerEvent.call(this, this.media, eventName);
- }
+ get seeking() {
+ return Boolean(this.media.seeking);
+ }
+ /**
+ * Get the duration of the current media
+ */
- return !hiding;
- }
- return false;
- }
- /**
- * Add event listeners
- * @param {String} event - Event type
- * @param {Function} callback - Callback for when event occurs
- */
+ get duration() {
+ // Faux duration set via config
+ const fauxDuration = parseFloat(this.config.duration); // Media duration can be NaN or Infinity before the media has loaded
- }, {
- key: "on",
- value: function on$1(event, callback) {
- on.call(this, this.elements.container, event, callback);
- }
- /**
- * Add event listeners once
- * @param {String} event - Event type
- * @param {Function} callback - Callback for when event occurs
- */
+ const realDuration = (this.media || {}).duration;
+ const duration = !is.number(realDuration) || realDuration === Infinity ? 0 : realDuration; // If config duration is funky, use regular duration
- }, {
- key: "once",
- value: function once$1(event, callback) {
- once.call(this, this.elements.container, event, callback);
- }
- /**
- * Remove event listeners
- * @param {String} event - Event type
- * @param {Function} callback - Callback for when event occurs
- */
+ return fauxDuration || duration;
+ }
+ /**
+ * Set the player volume
+ * @param {Number} value - must be between 0 and 1. Defaults to the value from local storage and config.volume if not set in storage
+ */
- }, {
- key: "off",
- value: function off$1(event, callback) {
- off(this.elements.container, event, callback);
- }
- /**
- * Destroy an instance
- * Event listeners are removed when elements are removed
- * http://stackoverflow.com/questions/12528049/if-a-dom-element-is-removed-are-its-listeners-also-removed-from-memory
- * @param {Function} callback - Callback for when destroy is complete
- * @param {Boolean} soft - Whether it's a soft destroy (for source changes etc)
- */
- }, {
- key: "destroy",
- value: function destroy(callback) {
- var _this3 = this;
+ set volume(value) {
+ let volume = value;
+ const max = 1;
+ const min = 0;
- var soft = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+ if (is.string(volume)) {
+ volume = Number(volume);
+ } // Load volume from storage if no value specified
- if (!this.ready) {
- return;
- }
- var done = function done() {
- // Reset overflow (incase destroyed while in fullscreen)
- document.body.style.overflow = ''; // GC for embed
+ if (!is.number(volume)) {
+ volume = this.storage.get('volume');
+ } // Use config if all else fails
- _this3.embed = null; // If it's a soft destroy, make minimal changes
- if (soft) {
- if (Object.keys(_this3.elements).length) {
- // Remove elements
- removeElement(_this3.elements.buttons.play);
- removeElement(_this3.elements.captions);
- removeElement(_this3.elements.controls);
- removeElement(_this3.elements.wrapper); // Clear for GC
-
- _this3.elements.buttons.play = null;
- _this3.elements.captions = null;
- _this3.elements.controls = null;
- _this3.elements.wrapper = null;
- } // Callback
+ if (!is.number(volume)) {
+ ({
+ volume
+ } = this.config);
+ } // Maximum is volumeMax
- if (is$1.function(callback)) {
- callback();
- }
- } else {
- // Unbind listeners
- unbindListeners.call(_this3); // Replace the container with the original element provided
+ if (volume > max) {
+ volume = max;
+ } // Minimum is volumeMin
- replaceElement(_this3.elements.original, _this3.elements.container); // Event
- triggerEvent.call(_this3, _this3.elements.original, 'destroyed', true); // Callback
+ if (volume < min) {
+ volume = min;
+ } // Update config
- if (is$1.function(callback)) {
- callback.call(_this3.elements.original);
- } // Reset state
+ this.config.volume = volume; // Set the player volume
- _this3.ready = false; // Clear for garbage collection
+ this.media.volume = volume; // If muted, and we're increasing volume manually, reset muted state
- setTimeout(function () {
- _this3.elements = null;
- _this3.media = null;
- }, 200);
- }
- }; // Stop playback
+ if (!is.empty(value) && this.muted && volume > 0) {
+ this.muted = false;
+ }
+ }
+ /**
+ * Get the current player volume
+ */
- this.stop(); // Clear timeouts
+ get volume() {
+ return Number(this.media.volume);
+ }
+ /**
+ * Increase volume
+ * @param {Boolean} step - How much to decrease by (between 0 and 1)
+ */
- clearTimeout(this.timers.loading);
- clearTimeout(this.timers.controls);
- clearTimeout(this.timers.resized); // Provider specific stuff
- if (this.isHTML5) {
- // Restore native video controls
- ui.toggleNativeControls.call(this, true); // Clean up
+ /**
+ * Set muted state
+ * @param {Boolean} mute
+ */
+ set muted(mute) {
+ let toggle = mute; // Load muted state from storage
- done();
- } else if (this.isYouTube) {
- // Clear timers
- clearInterval(this.timers.buffering);
- clearInterval(this.timers.playing); // Destroy YouTube API
+ if (!is.boolean(toggle)) {
+ toggle = this.storage.get('muted');
+ } // Use config if all else fails
- if (this.embed !== null && is$1.function(this.embed.destroy)) {
- this.embed.destroy();
- } // Clean up
+ if (!is.boolean(toggle)) {
+ toggle = this.config.muted;
+ } // Update config
- done();
- } else if (this.isVimeo) {
- // Destroy Vimeo API
- // then clean up (wait, to prevent postmessage errors)
- if (this.embed !== null) {
- this.embed.unload().then(done);
- } // Vimeo does not always return
+ this.config.muted = toggle; // Set mute on the player
- setTimeout(done, 200);
- }
- }
- /**
- * Check for support for a mime type (HTML5 only)
- * @param {String} type - Mime type
- */
+ this.media.muted = toggle;
+ }
+ /**
+ * Get current muted state
+ */
- }, {
- key: "supports",
- value: function supports(type) {
- return support.mime.call(this, type);
- }
- /**
- * Check for support
- * @param {String} type - Player type (audio/video)
- * @param {String} provider - Provider (html5/youtube/vimeo)
- * @param {Boolean} inline - Where player has `playsinline` sttribute
- */
- }, {
- key: "isHTML5",
- get: function get() {
- return this.provider === providers.html5;
- }
- }, {
- key: "isEmbed",
- get: function get() {
- return this.isYouTube || this.isVimeo;
- }
- }, {
- key: "isYouTube",
- get: function get() {
- return this.provider === providers.youtube;
- }
- }, {
- key: "isVimeo",
- get: function get() {
- return this.provider === providers.vimeo;
- }
- }, {
- key: "isVideo",
- get: function get() {
- return this.type === types.video;
- }
- }, {
- key: "isAudio",
- get: function get() {
- return this.type === types.audio;
- }
- }, {
- key: "playing",
- get: function get() {
- return Boolean(this.ready && !this.paused && !this.ended);
- }
- /**
- * Get paused state
- */
+ get muted() {
+ return Boolean(this.media.muted);
+ }
+ /**
+ * Check if the media has audio
+ */
- }, {
- key: "paused",
- get: function get() {
- return Boolean(this.media.paused);
- }
- /**
- * Get stopped state
- */
- }, {
- key: "stopped",
- get: function get() {
- return Boolean(this.paused && this.currentTime === 0);
+ get hasAudio() {
+ // Assume yes for all non HTML5 (as we can't tell...)
+ if (!this.isHTML5) {
+ return true;
}
- /**
- * Get ended state
- */
- }, {
- key: "ended",
- get: function get() {
- return Boolean(this.media.ended);
- }
- }, {
- key: "currentTime",
- set: function set(input) {
- // Bail if media duration isn't available yet
- if (!this.duration) {
- return;
- } // Validate input
+ if (this.isAudio) {
+ return true;
+ } // Get audio tracks
+
+ return Boolean(this.media.mozHasAudio) || Boolean(this.media.webkitAudioDecodedByteCount) || Boolean(this.media.audioTracks && this.media.audioTracks.length);
+ }
+ /**
+ * Set playback speed
+ * @param {Number} speed - the speed of playback (0.5-2.0)
+ */
- var inputIsValid = is$1.number(input) && input > 0; // Set
- this.media.currentTime = inputIsValid ? Math.min(input, this.duration) : 0; // Logging
+ set speed(input) {
+ let speed = null;
- this.debug.log("Seeking to ".concat(this.currentTime, " seconds"));
+ if (is.number(input)) {
+ speed = input;
}
- /**
- * Get current time
- */
- ,
- get: function get() {
- return Number(this.media.currentTime);
+
+ if (!is.number(speed)) {
+ speed = this.storage.get('speed');
}
- /**
- * Get buffered
- */
- }, {
- key: "buffered",
- get: function get() {
- var buffered = this.media.buffered; // YouTube / Vimeo return a float between 0-1
+ if (!is.number(speed)) {
+ speed = this.config.speed.selected;
+ } // Clamp to min/max
- if (is$1.number(buffered)) {
- return buffered;
- } // HTML5
- // TODO: Handle buffered chunks of the media
- // (i.e. seek to another section buffers only that section)
+ const {
+ minimumSpeed: min,
+ maximumSpeed: max
+ } = this;
+ speed = clamp(speed, min, max); // Update config
- if (buffered && buffered.length && this.duration > 0) {
- return buffered.end(0) / this.duration;
- }
+ this.config.speed.selected = speed; // Set media speed
- return 0;
- }
- /**
- * Get seeking status
- */
+ setTimeout(() => {
+ this.media.playbackRate = speed;
+ }, 0);
+ }
+ /**
+ * Get current playback speed
+ */
- }, {
- key: "seeking",
- get: function get() {
- return Boolean(this.media.seeking);
- }
- /**
- * Get the duration of the current media
- */
- }, {
- key: "duration",
- get: function get() {
- // Faux duration set via config
- var fauxDuration = parseFloat(this.config.duration); // Media duration can be NaN or Infinity before the media has loaded
+ get speed() {
+ return Number(this.media.playbackRate);
+ }
+ /**
+ * Get the minimum allowed speed
+ */
- var realDuration = (this.media || {}).duration;
- var duration = !is$1.number(realDuration) || realDuration === Infinity ? 0 : realDuration; // If config duration is funky, use regular duration
- return fauxDuration || duration;
+ get minimumSpeed() {
+ if (this.isYouTube) {
+ // https://developers.google.com/youtube/iframe_api_reference#setPlaybackRate
+ return Math.min(...this.options.speed);
}
- /**
- * Set the player volume
- * @param {Number} value - must be between 0 and 1. Defaults to the value from local storage and config.volume if not set in storage
- */
- }, {
- key: "volume",
- set: function set(value) {
- var volume = value;
- var max = 1;
- var min = 0;
+ if (this.isVimeo) {
+ // https://github.com/vimeo/player.js/#setplaybackrateplaybackrate-number-promisenumber-rangeerrorerror
+ return 0.5;
+ } // https://stackoverflow.com/a/32320020/1191319
- if (is$1.string(volume)) {
- volume = Number(volume);
- } // Load volume from storage if no value specified
+ return 0.0625;
+ }
+ /**
+ * Get the maximum allowed speed
+ */
- if (!is$1.number(volume)) {
- volume = this.storage.get('volume');
- } // Use config if all else fails
+ get maximumSpeed() {
+ if (this.isYouTube) {
+ // https://developers.google.com/youtube/iframe_api_reference#setPlaybackRate
+ return Math.max(...this.options.speed);
+ }
- if (!is$1.number(volume)) {
- volume = this.config.volume;
- } // Maximum is volumeMax
+ if (this.isVimeo) {
+ // https://github.com/vimeo/player.js/#setplaybackrateplaybackrate-number-promisenumber-rangeerrorerror
+ return 2;
+ } // https://stackoverflow.com/a/32320020/1191319
- if (volume > max) {
- volume = max;
- } // Minimum is volumeMin
+ return 16;
+ }
+ /**
+ * Set playback quality
+ * Currently HTML5 & YouTube only
+ * @param {Number} input - Quality level
+ */
- if (volume < min) {
- volume = min;
- } // Update config
+ set quality(input) {
+ const config = this.config.quality;
+ const options = this.options.quality;
+ if (!options.length) {
+ return;
+ }
- this.config.volume = volume; // Set the player volume
+ let quality = [!is.empty(input) && Number(input), this.storage.get('quality'), config.selected, config.default].find(is.number);
+ let updateStorage = true;
- this.media.volume = volume; // If muted, and we're increasing volume manually, reset muted state
+ if (!options.includes(quality)) {
+ const value = closest(options, quality);
+ this.debug.warn(`Unsupported quality option: ${quality}, using ${value} instead`);
+ quality = value; // Don't update storage if quality is not supported
- if (!is$1.empty(value) && this.muted && volume > 0) {
- this.muted = false;
- }
- }
- /**
- * Get the current player volume
- */
- ,
- get: function get() {
- return Number(this.media.volume);
- }
- }, {
- key: "muted",
- set: function set(mute) {
- var toggle = mute; // Load muted state from storage
+ updateStorage = false;
+ } // Update config
- if (!is$1.boolean(toggle)) {
- toggle = this.storage.get('muted');
- } // Use config if all else fails
+ config.selected = quality; // Set quality
- if (!is$1.boolean(toggle)) {
- toggle = this.config.muted;
- } // Update config
+ this.media.quality = quality; // Save to storage
+ if (updateStorage) {
+ this.storage.set({
+ quality
+ });
+ }
+ }
+ /**
+ * Get current quality level
+ */
- this.config.muted = toggle; // Set mute on the player
- this.media.muted = toggle;
- }
- /**
- * Get current muted state
- */
- ,
- get: function get() {
- return Boolean(this.media.muted);
- }
- /**
- * Check if the media has audio
- */
+ get quality() {
+ return this.media.quality;
+ }
+ /**
+ * Toggle loop
+ * TODO: Finish fancy new logic. Set the indicator on load as user may pass loop as config
+ * @param {Boolean} input - Whether to loop or not
+ */
- }, {
- key: "hasAudio",
- get: function get() {
- // Assume yes for all non HTML5 (as we can't tell...)
- if (!this.isHTML5) {
- return true;
- }
- if (this.isAudio) {
- return true;
- } // Get audio tracks
+ set loop(input) {
+ const toggle = is.boolean(input) ? input : this.config.loop.active;
+ this.config.loop.active = toggle;
+ this.media.loop = toggle; // Set default to be a true toggle
+ /* const type = ['start', 'end', 'all', 'none', 'toggle'].includes(input) ? input : 'toggle';
+ switch (type) {
+ case 'start':
+ if (this.config.loop.end && this.config.loop.end <= this.currentTime) {
+ this.config.loop.end = null;
+ }
+ this.config.loop.start = this.currentTime;
+ // this.config.loop.indicator.start = this.elements.display.played.value;
+ break;
+ case 'end':
+ if (this.config.loop.start >= this.currentTime) {
+ return this;
+ }
+ this.config.loop.end = this.currentTime;
+ // this.config.loop.indicator.end = this.elements.display.played.value;
+ break;
+ case 'all':
+ this.config.loop.start = 0;
+ this.config.loop.end = this.duration - 2;
+ this.config.loop.indicator.start = 0;
+ this.config.loop.indicator.end = 100;
+ break;
+ case 'toggle':
+ if (this.config.loop.active) {
+ this.config.loop.start = 0;
+ this.config.loop.end = null;
+ } else {
+ this.config.loop.start = 0;
+ this.config.loop.end = this.duration - 2;
+ }
+ break;
+ default:
+ this.config.loop.start = 0;
+ this.config.loop.end = null;
+ break;
+ } */
+ }
+ /**
+ * Get current loop state
+ */
- return Boolean(this.media.mozHasAudio) || Boolean(this.media.webkitAudioDecodedByteCount) || Boolean(this.media.audioTracks && this.media.audioTracks.length);
- }
- /**
- * Set playback speed
- * @param {Number} speed - the speed of playback (0.5-2.0)
- */
- }, {
- key: "speed",
- set: function set(input) {
- var _this4 = this;
+ get loop() {
+ return Boolean(this.media.loop);
+ }
+ /**
+ * Set new media source
+ * @param {Object} input - The new source object (see docs)
+ */
- var speed = null;
- if (is$1.number(input)) {
- speed = input;
- }
+ set source(input) {
+ source.change.call(this, input);
+ }
+ /**
+ * Get current source
+ */
- if (!is$1.number(speed)) {
- speed = this.storage.get('speed');
- }
- if (!is$1.number(speed)) {
- speed = this.config.speed.selected;
- } // Clamp to min/max
+ get source() {
+ return this.media.currentSrc;
+ }
+ /**
+ * Get a download URL (either source or custom)
+ */
- var min = this.minimumSpeed,
- max = this.maximumSpeed;
- speed = clamp(speed, min, max); // Update config
+ get download() {
+ const {
+ download
+ } = this.config.urls;
+ return is.url(download) ? download : this.source;
+ }
+ /**
+ * Set the download URL
+ */
- this.config.speed.selected = speed; // Set media speed
- setTimeout(function () {
- _this4.media.playbackRate = speed;
- }, 0);
+ set download(input) {
+ if (!is.url(input)) {
+ return;
}
- /**
- * Get current playback speed
- */
- ,
- get: function get() {
- return Number(this.media.playbackRate);
+
+ this.config.urls.download = input;
+ controls.setDownloadUrl.call(this);
+ }
+ /**
+ * Set the poster image for a video
+ * @param {String} input - the URL for the new poster image
+ */
+
+
+ set poster(input) {
+ if (!this.isVideo) {
+ this.debug.warn('Poster can only be set for video');
+ return;
}
- /**
- * Get the minimum allowed speed
- */
- }, {
- key: "minimumSpeed",
- get: function get() {
- if (this.isYouTube) {
- // https://developers.google.com/youtube/iframe_api_reference#setPlaybackRate
- return Math.min.apply(Math, _toConsumableArray(this.options.speed));
- }
+ ui.setPoster.call(this, input, false).catch(() => {});
+ }
+ /**
+ * Get the current poster image
+ */
- if (this.isVimeo) {
- // https://github.com/vimeo/player.js/#setplaybackrateplaybackrate-number-promisenumber-rangeerrorerror
- return 0.5;
- } // https://stackoverflow.com/a/32320020/1191319
+ get poster() {
+ if (!this.isVideo) {
+ return null;
+ }
- return 0.0625;
+ return this.media.getAttribute('poster') || this.media.getAttribute('data-poster');
+ }
+ /**
+ * Get the current aspect ratio in use
+ */
+
+
+ get ratio() {
+ if (!this.isVideo) {
+ return null;
}
- /**
- * Get the maximum allowed speed
- */
- }, {
- key: "maximumSpeed",
- get: function get() {
- if (this.isYouTube) {
- // https://developers.google.com/youtube/iframe_api_reference#setPlaybackRate
- return Math.max.apply(Math, _toConsumableArray(this.options.speed));
- }
+ const ratio = reduceAspectRatio(getAspectRatio.call(this));
+ return is.array(ratio) ? ratio.join(':') : ratio;
+ }
+ /**
+ * Set video aspect ratio
+ */
- if (this.isVimeo) {
- // https://github.com/vimeo/player.js/#setplaybackrateplaybackrate-number-promisenumber-rangeerrorerror
- return 2;
- } // https://stackoverflow.com/a/32320020/1191319
+ set ratio(input) {
+ if (!this.isVideo) {
+ this.debug.warn('Aspect ratio can only be set for video');
+ return;
+ }
- return 16;
+ if (!is.string(input) || !validateAspectRatio(input)) {
+ this.debug.error(`Invalid aspect ratio specified (${input})`);
+ return;
}
- /**
- * Set playback quality
- * Currently HTML5 & YouTube only
- * @param {Number} input - Quality level
- */
- }, {
- key: "quality",
- set: function set(input) {
- var config = this.config.quality;
- var options = this.options.quality;
+ this.config.ratio = reduceAspectRatio(input);
+ setAspectRatio.call(this);
+ }
+ /**
+ * Set the autoplay state
+ * @param {Boolean} input - Whether to autoplay or not
+ */
- if (!options.length) {
- return;
- }
- var quality = [!is$1.empty(input) && Number(input), this.storage.get('quality'), config.selected, config.default].find(is$1.number);
- var updateStorage = true;
+ set autoplay(input) {
+ const toggle = is.boolean(input) ? input : this.config.autoplay;
+ this.config.autoplay = toggle;
+ }
+ /**
+ * Get the current autoplay state
+ */
- if (!options.includes(quality)) {
- var value = closest$1(options, quality);
- this.debug.warn("Unsupported quality option: ".concat(quality, ", using ").concat(value, " instead"));
- quality = value; // Don't update storage if quality is not supported
- updateStorage = false;
- } // Update config
+ get autoplay() {
+ return Boolean(this.config.autoplay);
+ }
+ /**
+ * Toggle captions
+ * @param {Boolean} input - Whether to enable captions
+ */
- config.selected = quality; // Set quality
+ toggleCaptions(input) {
+ captions.toggle.call(this, input, false);
+ }
+ /**
+ * Set the caption track by index
+ * @param {Number} - Caption index
+ */
- this.media.quality = quality; // Save to storage
- if (updateStorage) {
- this.storage.set({
- quality: quality
- });
- }
- }
- /**
- * Get current quality level
- */
- ,
- get: function get() {
- return this.media.quality;
- }
- /**
- * Toggle loop
- * TODO: Finish fancy new logic. Set the indicator on load as user may pass loop as config
- * @param {Boolean} input - Whether to loop or not
- */
+ set currentTrack(input) {
+ captions.set.call(this, input, false);
+ }
+ /**
+ * Get the current caption track index (-1 if disabled)
+ */
- }, {
- key: "loop",
- set: function set(input) {
- var toggle = is$1.boolean(input) ? input : this.config.loop.active;
- this.config.loop.active = toggle;
- this.media.loop = toggle; // Set default to be a true toggle
-
- /* const type = ['start', 'end', 'all', 'none', 'toggle'].includes(input) ? input : 'toggle';
- switch (type) {
- case 'start':
- if (this.config.loop.end && this.config.loop.end <= this.currentTime) {
- this.config.loop.end = null;
- }
- this.config.loop.start = this.currentTime;
- // this.config.loop.indicator.start = this.elements.display.played.value;
- break;
- case 'end':
- if (this.config.loop.start >= this.currentTime) {
- return this;
- }
- this.config.loop.end = this.currentTime;
- // this.config.loop.indicator.end = this.elements.display.played.value;
- break;
- case 'all':
- this.config.loop.start = 0;
- this.config.loop.end = this.duration - 2;
- this.config.loop.indicator.start = 0;
- this.config.loop.indicator.end = 100;
- break;
- case 'toggle':
- if (this.config.loop.active) {
- this.config.loop.start = 0;
- this.config.loop.end = null;
- } else {
- this.config.loop.start = 0;
- this.config.loop.end = this.duration - 2;
- }
- break;
- default:
- this.config.loop.start = 0;
- this.config.loop.end = null;
- break;
- } */
- }
- /**
- * Get current loop state
- */
- ,
- get: function get() {
- return Boolean(this.media.loop);
- }
- /**
- * Set new media source
- * @param {Object} input - The new source object (see docs)
- */
- }, {
- key: "source",
- set: function set(input) {
- source.change.call(this, input);
- }
- /**
- * Get current source
- */
- ,
- get: function get() {
- return this.media.currentSrc;
- }
- /**
- * Get a download URL (either source or custom)
- */
+ get currentTrack() {
+ const {
+ toggled,
+ currentTrack
+ } = this.captions;
+ return toggled ? currentTrack : -1;
+ }
+ /**
+ * Set the wanted language for captions
+ * Since tracks can be added later it won't update the actual caption track until there is a matching track
+ * @param {String} - Two character ISO language code (e.g. EN, FR, PT, etc)
+ */
- }, {
- key: "download",
- get: function get() {
- var download = this.config.urls.download;
- return is$1.url(download) ? download : this.source;
- }
- /**
- * Set the download URL
- */
- ,
- set: function set(input) {
- if (!is$1.url(input)) {
- return;
- }
- this.config.urls.download = input;
- controls.setDownloadUrl.call(this);
- }
- /**
- * Set the poster image for a video
- * @param {String} input - the URL for the new poster image
- */
+ set language(input) {
+ captions.setLanguage.call(this, input, false);
+ }
+ /**
+ * Get the current track's language
+ */
- }, {
- key: "poster",
- set: function set(input) {
- if (!this.isVideo) {
- this.debug.warn('Poster can only be set for video');
- return;
- }
- ui.setPoster.call(this, input, false).catch(function () {});
- }
- /**
- * Get the current poster image
- */
- ,
- get: function get() {
- if (!this.isVideo) {
- return null;
- }
+ get language() {
+ return (captions.getCurrentTrack.call(this) || {}).language;
+ }
+ /**
+ * Toggle picture-in-picture playback on WebKit/MacOS
+ * TODO: update player with state, support, enabled
+ * TODO: detect outside changes
+ */
- return this.media.getAttribute('poster') || this.media.getAttribute('data-poster');
- }
- /**
- * Get the current aspect ratio in use
- */
- }, {
- key: "ratio",
- get: function get() {
- if (!this.isVideo) {
- return null;
- }
+ set pip(input) {
+ // Bail if no support
+ if (!support.pip) {
+ return;
+ } // Toggle based on current state if not passed
- var ratio = reduceAspectRatio(getAspectRatio.call(this));
- return is$1.array(ratio) ? ratio.join(':') : ratio;
- }
- /**
- * Set video aspect ratio
- */
- ,
- set: function set(input) {
- if (!this.isVideo) {
- this.debug.warn('Aspect ratio can only be set for video');
- return;
- }
- if (!is$1.string(input) || !validateRatio(input)) {
- this.debug.error("Invalid aspect ratio specified (".concat(input, ")"));
- return;
- }
+ const toggle = is.boolean(input) ? input : !this.pip; // Toggle based on current state
+ // Safari
- this.config.ratio = input;
- setAspectRatio.call(this);
- }
- /**
- * Set the autoplay state
- * @param {Boolean} input - Whether to autoplay or not
- */
+ if (is.function(this.media.webkitSetPresentationMode)) {
+ this.media.webkitSetPresentationMode(toggle ? pip.active : pip.inactive);
+ } // Chrome
- }, {
- key: "autoplay",
- set: function set(input) {
- var toggle = is$1.boolean(input) ? input : this.config.autoplay;
- this.config.autoplay = toggle;
- }
- /**
- * Get the current autoplay state
- */
- ,
- get: function get() {
- return Boolean(this.config.autoplay);
- }
- }, {
- key: "currentTrack",
- set: function set(input) {
- captions.set.call(this, input, false);
- }
- /**
- * Get the current caption track index (-1 if disabled)
- */
- ,
- get: function get() {
- var _this$captions = this.captions,
- toggled = _this$captions.toggled,
- currentTrack = _this$captions.currentTrack;
- return toggled ? currentTrack : -1;
- }
- /**
- * Set the wanted language for captions
- * Since tracks can be added later it won't update the actual caption track until there is a matching track
- * @param {String} - Two character ISO language code (e.g. EN, FR, PT, etc)
- */
- }, {
- key: "language",
- set: function set(input) {
- captions.setLanguage.call(this, input, false);
- }
- /**
- * Get the current track's language
- */
- ,
- get: function get() {
- return (captions.getCurrentTrack.call(this) || {}).language;
+ if (is.function(this.media.requestPictureInPicture)) {
+ if (!this.pip && toggle) {
+ this.media.requestPictureInPicture();
+ } else if (this.pip && !toggle) {
+ document.exitPictureInPicture();
+ }
}
- /**
- * Toggle picture-in-picture playback on WebKit/MacOS
- * TODO: update player with state, support, enabled
- * TODO: detect outside changes
- */
+ }
+ /**
+ * Get the current picture-in-picture state
+ */
- }, {
- key: "pip",
- set: function set(input) {
- // Bail if no support
- if (!support.pip) {
- return;
- } // Toggle based on current state if not passed
+ get pip() {
+ if (!support.pip) {
+ return null;
+ } // Safari
- var toggle = is$1.boolean(input) ? input : !this.pip; // Toggle based on current state
- // Safari
- if (is$1.function(this.media.webkitSetPresentationMode)) {
- this.media.webkitSetPresentationMode(toggle ? pip.active : pip.inactive);
- } // Chrome
+ if (!is.empty(this.media.webkitPresentationMode)) {
+ return this.media.webkitPresentationMode === pip.active;
+ } // Chrome
- if (is$1.function(this.media.requestPictureInPicture)) {
- if (!this.pip && toggle) {
- this.media.requestPictureInPicture();
- } else if (this.pip && !toggle) {
- document.exitPictureInPicture();
- }
- }
- }
- /**
- * Get the current picture-in-picture state
- */
- ,
- get: function get() {
- if (!support.pip) {
- return null;
- } // Safari
+ return this.media === document.pictureInPictureElement;
+ }
+ /**
+ * Trigger the airplay dialog
+ * TODO: update player with state, support, enabled
+ */
- if (!is$1.empty(this.media.webkitPresentationMode)) {
- return this.media.webkitPresentationMode === pip.active;
- } // Chrome
+ /**
+ * Check for support
+ * @param {String} type - Player type (audio/video)
+ * @param {String} provider - Provider (html5/youtube/vimeo)
+ * @param {Boolean} inline - Where player has `playsinline` sttribute
+ */
+ static supported(type, provider, inline) {
+ return support.check(type, provider, inline);
+ }
+ /**
+ * Load an SVG sprite into the page
+ * @param {String} url - URL for the SVG sprite
+ * @param {String} [id] - Unique ID
+ */
- return this.media === document.pictureInPictureElement;
- }
- }], [{
- key: "supported",
- value: function supported(type, provider, inline) {
- return support.check(type, provider, inline);
- }
- /**
- * Load an SVG sprite into the page
- * @param {String} url - URL for the SVG sprite
- * @param {String} [id] - Unique ID
- */
+ static loadSprite(url, id) {
+ return loadSprite(url, id);
+ }
+ /**
+ * Setup multiple instances
+ * @param {*} selector
+ * @param {Object} options
+ */
- }, {
- key: "loadSprite",
- value: function loadSprite$1(url, id) {
- return loadSprite(url, id);
- }
- /**
- * Setup multiple instances
- * @param {*} selector
- * @param {Object} options
- */
- }, {
- key: "setup",
- value: function setup(selector) {
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- var targets = null;
-
- if (is$1.string(selector)) {
- targets = Array.from(document.querySelectorAll(selector));
- } else if (is$1.nodeList(selector)) {
- targets = Array.from(selector);
- } else if (is$1.array(selector)) {
- targets = selector.filter(is$1.element);
- }
+ static setup(selector, options = {}) {
+ let targets = null;
- if (is$1.empty(targets)) {
- return null;
- }
+ if (is.string(selector)) {
+ targets = Array.from(document.querySelectorAll(selector));
+ } else if (is.nodeList(selector)) {
+ targets = Array.from(selector);
+ } else if (is.array(selector)) {
+ targets = selector.filter(is.element);
+ }
- return targets.map(function (t) {
- return new Plyr(t, options);
- });
+ if (is.empty(targets)) {
+ return null;
}
- }]);
- return Plyr;
- }();
+ return targets.map(t => new Plyr(t, options));
+ }
+
+ }
- Plyr.defaults = cloneDeep(defaults$1);
+ Plyr.defaults = cloneDeep(defaults);
return Plyr;
diff --git a/youtube/static/modules/plyr/plyr.min.js b/youtube/static/modules/plyr/plyr.min.js
new file mode 100644
index 0000000..08137c2
--- /dev/null
+++ b/youtube/static/modules/plyr/plyr.min.js
@@ -0,0 +1,2 @@
+"object"==typeof navigator&&function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define("Plyr",t):(e="undefined"!=typeof globalThis?globalThis:e||self).Plyr=t()}(this,(function(){"use strict";function e(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function t(e,t){for(var i=0;i<t.length;i++){var s=t[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(e,s.key,s)}}function i(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function s(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,s)}return i}function n(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){i(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var a={addCSS:!0,thumbWidth:15,watch:!0};function l(e,t){return function(){return Array.from(document.querySelectorAll(t)).includes(this)}.call(e,t)}var o=function(e){return null!=e?e.constructor:null},r=function(e,t){return!!(e&&t&&e instanceof t)},c=function(e){return null==e},h=function(e){return o(e)===Object},u=function(e){return o(e)===String},d=function(e){return Array.isArray(e)},m=function(e){return r(e,NodeList)},p=u,g=d,f=m,y=function(e){return r(e,Element)},b=function(e){return r(e,Event)},v=function(e){return c(e)||(u(e)||d(e)||m(e))&&!e.length||h(e)&&!Object.keys(e).length};function w(e,t){if(1>t){var i=function(e){var t="".concat(e).match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);return t?Math.max(0,(t[1]?t[1].length:0)-(t[2]?+t[2]:0)):0}(t);return parseFloat(e.toFixed(i))}return Math.round(e/t)*t}var T=function(){function e(t,i){(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")})(this,e),y(t)?this.element=t:p(t)&&(this.element=document.querySelector(t)),y(this.element)&&v(this.element.rangeTouch)&&(this.config=n({},a,{},i),this.init())}return function(e,i,s){i&&t(e.prototype,i),s&&t(e,s)}(e,[{key:"init",value:function(){e.enabled&&(this.config.addCSS&&(this.element.style.userSelect="none",this.element.style.webKitUserSelect="none",this.element.style.touchAction="manipulation"),this.listeners(!0),this.element.rangeTouch=this)}},{key:"destroy",value:function(){e.enabled&&(this.config.addCSS&&(this.element.style.userSelect="",this.element.style.webKitUserSelect="",this.element.style.touchAction=""),this.listeners(!1),this.element.rangeTouch=null)}},{key:"listeners",value:function(e){var t=this,i=e?"addEventListener":"removeEventListener";["touchstart","touchmove","touchend"].forEach((function(e){t.element[i](e,(function(e){return t.set(e)}),!1)}))}},{key:"get",value:function(t){if(!e.enabled||!b(t))return null;var i,s=t.target,n=t.changedTouches[0],a=parseFloat(s.getAttribute("min"))||0,l=parseFloat(s.getAttribute("max"))||100,o=parseFloat(s.getAttribute("step"))||1,r=s.getBoundingClientRect(),c=100/r.width*(this.config.thumbWidth/2)/100;return 0>(i=100/r.width*(n.clientX-r.left))?i=0:100<i&&(i=100),50>i?i-=(100-2*i)*c:50<i&&(i+=2*(i-50)*c),a+w(i/100*(l-a),o)}},{key:"set",value:function(t){e.enabled&&b(t)&&!t.target.disabled&&(t.preventDefault(),t.target.value=this.get(t),function(e,t){if(e&&t){var i=new Event(t,{bubbles:!0});e.dispatchEvent(i)}}(t.target,"touchend"===t.type?"change":"input"))}}],[{key:"setup",value:function(t){var i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},s=null;if(v(t)||p(t)?s=Array.from(document.querySelectorAll(p(t)?t:'input[type="range"]')):y(t)?s=[t]:f(t)?s=Array.from(t):g(t)&&(s=t.filter(y)),v(s))return null;var o=n({},a,{},i);if(p(t)&&o.watch){var r=new MutationObserver((function(i){Array.from(i).forEach((function(i){Array.from(i.addedNodes).forEach((function(i){y(i)&&l(i,t)&&new e(i,o)}))}))}));r.observe(document.body,{childList:!0,subtree:!0})}return s.map((function(t){return new e(t,i)}))}},{key:"enabled",get:function(){return"ontouchstart"in document.documentElement}}]),e}();const k=e=>null!=e?e.constructor:null,C=(e,t)=>Boolean(e&&t&&e instanceof t),A=e=>null==e,S=e=>k(e)===Object,E=e=>k(e)===String,P=e=>k(e)===Function,x=e=>Array.isArray(e),M=e=>C(e,NodeList),N=e=>A(e)||(E(e)||x(e)||M(e))&&!e.length||S(e)&&!Object.keys(e).length;var I=A,L=S,$=e=>k(e)===Number&&!Number.isNaN(e),_=E,O=e=>k(e)===Boolean,q=P,j=x,D=M,H=e=>null!==e&&"object"==typeof e&&1===e.nodeType&&"object"==typeof e.style&&"object"==typeof e.ownerDocument,F=e=>C(e,Event),R=e=>C(e,KeyboardEvent),V=e=>C(e,TextTrack)||!A(e)&&E(e.kind),B=e=>C(e,Promise)&&P(e.then),U=e=>{if(C(e,window.URL))return!0;if(!E(e))return!1;let t=e;e.startsWith("http://")&&e.startsWith("https://")||(t=`http://${e}`);try{return!N(new URL(t).hostname)}catch(e){return!1}},W=N;const z=(()=>{const e=document.createElement("span"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},i=Object.keys(t).find((t=>void 0!==e.style[t]));return!!_(i)&&t[i]})();function K(e,t){setTimeout((()=>{try{e.hidden=!0,e.offsetHeight,e.hidden=!1}catch(e){}}),t)}const Y={isIE:Boolean(window.document.documentMode),isEdge:window.navigator.userAgent.includes("Edge"),isWebkit:"WebkitAppearance"in document.documentElement.style&&!/Edge/.test(navigator.userAgent),isIPhone:/(iPhone|iPod)/gi.test(navigator.platform),isIos:"MacIntel"===navigator.platform&&navigator.maxTouchPoints>1||/(iPad|iPhone|iPod)/gi.test(navigator.platform)};function Q(e,t){return t.split(".").reduce(((e,t)=>e&&e[t]),e)}function X(e={},...t){if(!t.length)return e;const i=t.shift();return L(i)?(Object.keys(i).forEach((t=>{L(i[t])?(Object.keys(e).includes(t)||Object.assign(e,{[t]:{}}),X(e[t],i[t])):Object.assign(e,{[t]:i[t]})})),X(e,...t)):e}function J(e,t){const i=e.length?e:[e];Array.from(i).reverse().forEach(((e,i)=>{const s=i>0?t.cloneNode(!0):t,n=e.parentNode,a=e.nextSibling;s.appendChild(e),a?n.insertBefore(s,a):n.appendChild(s)}))}function G(e,t){H(e)&&!W(t)&&Object.entries(t).filter((([,e])=>!I(e))).forEach((([t,i])=>e.setAttribute(t,i)))}function Z(e,t,i){const s=document.createElement(e);return L(t)&&G(s,t),_(i)&&(s.innerText=i),s}function ee(e,t,i,s){H(t)&&t.appendChild(Z(e,i,s))}function te(e){D(e)||j(e)?Array.from(e).forEach(te):H(e)&&H(e.parentNode)&&e.parentNode.removeChild(e)}function ie(e){if(!H(e))return;let{length:t}=e.childNodes;for(;t>0;)e.removeChild(e.lastChild),t-=1}function se(e,t){return H(t)&&H(t.parentNode)&&H(e)?(t.parentNode.replaceChild(e,t),e):null}function ne(e,t){if(!_(e)||W(e))return{};const i={},s=X({},t);return e.split(",").forEach((e=>{const t=e.trim(),n=t.replace(".",""),a=t.replace(/[[\]]/g,"").split("="),[l]=a,o=a.length>1?a[1].replace(/["']/g,""):"";switch(t.charAt(0)){case".":_(s.class)?i.class=`${s.class} ${n}`:i.class=n;break;case"#":i.id=t.replace("#","");break;case"[":i[l]=o}})),X(s,i)}function ae(e,t){if(!H(e))return;let i=t;O(i)||(i=!e.hidden),e.hidden=i}function le(e,t,i){if(D(e))return Array.from(e).map((e=>le(e,t,i)));if(H(e)){let s="toggle";return void 0!==i&&(s=i?"add":"remove"),e.classList[s](t),e.classList.contains(t)}return!1}function oe(e,t){return H(e)&&e.classList.contains(t)}function re(e,t){const{prototype:i}=Element;return(i.matches||i.webkitMatchesSelector||i.mozMatchesSelector||i.msMatchesSelector||function(){return Array.from(document.querySelectorAll(t)).includes(this)}).call(e,t)}function ce(e){return this.elements.container.querySelectorAll(e)}function he(e){return this.elements.container.querySelector(e)}function ue(e=null,t=!1){H(e)&&(e.focus({preventScroll:!0}),t&&le(e,this.config.classNames.tabFocus))}const de={"audio/ogg":"vorbis","audio/wav":"1","video/webm":"vp8, vorbis","video/mp4":"avc1.42E01E, mp4a.40.2","video/ogg":"theora"},me={audio:"canPlayType"in document.createElement("audio"),video:"canPlayType"in document.createElement("video"),check(e,t,i){const s=Y.isIPhone&&i&&me.playsinline,n=me[e]||"html5"!==t;return{api:n,ui:n&&me.rangeInput&&("video"!==e||!Y.isIPhone||s)}},pip:!(Y.isIPhone||!q(Z("video").webkitSetPresentationMode)&&(!document.pictureInPictureEnabled||Z("video").disablePictureInPicture)),airplay:q(window.WebKitPlaybackTargetAvailabilityEvent),playsinline:"playsInline"in document.createElement("video"),mime(e){if(W(e))return!1;const[t]=e.split("/");let i=e;if(!this.isHTML5||t!==this.type)return!1;Object.keys(de).includes(i)&&(i+=`; codecs="${de[e]}"`);try{return Boolean(i&&this.media.canPlayType(i).replace(/no/,""))}catch(e){return!1}},textTracks:"textTracks"in document.createElement("video"),rangeInput:(()=>{const e=document.createElement("input");return e.type="range","range"===e.type})(),touch:"ontouchstart"in document.documentElement,transitions:!1!==z,reducedMotion:"matchMedia"in window&&window.matchMedia("(prefers-reduced-motion)").matches},pe=(()=>{let e=!1;try{const t=Object.defineProperty({},"passive",{get:()=>(e=!0,null)});window.addEventListener("test",null,t),window.removeEventListener("test",null,t)}catch(e){}return e})();function ge(e,t,i,s=!1,n=!0,a=!1){if(!e||!("addEventListener"in e)||W(t)||!q(i))return;const l=t.split(" ");let o=a;pe&&(o={passive:n,capture:a}),l.forEach((t=>{this&&this.eventListeners&&s&&this.eventListeners.push({element:e,type:t,callback:i,options:o}),e[s?"addEventListener":"removeEventListener"](t,i,o)}))}function fe(e,t="",i,s=!0,n=!1){ge.call(this,e,t,i,!0,s,n)}function ye(e,t="",i,s=!0,n=!1){ge.call(this,e,t,i,!1,s,n)}function be(e,t="",i,s=!0,n=!1){const a=(...l)=>{ye(e,t,a,s,n),i.apply(this,l)};ge.call(this,e,t,a,!0,s,n)}function ve(e,t="",i=!1,s={}){if(!H(e)||W(t))return;const n=new CustomEvent(t,{bubbles:i,detail:{...s,plyr:this}});e.dispatchEvent(n)}function we(){this&&this.eventListeners&&(this.eventListeners.forEach((e=>{const{element:t,type:i,callback:s,options:n}=e;t.removeEventListener(i,s,n)})),this.eventListeners=[])}function Te(){return new Promise((e=>this.ready?setTimeout(e,0):fe.call(this,this.elements.container,"ready",e))).then((()=>{}))}function ke(e){B(e)&&e.then(null,(()=>{}))}function Ce(e){return j(e)?e.filter(((t,i)=>e.indexOf(t)===i)):e}function Ae(e,t){return j(e)&&e.length?e.reduce(((e,i)=>Math.abs(i-t)<Math.abs(e-t)?i:e)):null}function Se(e){return!(!window||!window.CSS)&&window.CSS.supports(e)}const Ee=[[1,1],[4,3],[3,4],[5,4],[4,5],[3,2],[2,3],[16,10],[10,16],[16,9],[9,16],[21,9],[9,21],[32,9],[9,32]].reduce(((e,[t,i])=>({...e,[t/i]:[t,i]})),{});function Pe(e){if(!(j(e)||_(e)&&e.includes(":")))return!1;return(j(e)?e:e.split(":")).map(Number).every($)}function xe(e){if(!j(e)||!e.every($))return null;const[t,i]=e,s=(e,t)=>0===t?e:s(t,e%t),n=s(t,i);return[t/n,i/n]}function Me(e){const t=e=>Pe(e)?e.split(":").map(Number):null;let i=t(e);if(null===i&&(i=t(this.config.ratio)),null===i&&!W(this.embed)&&j(this.embed.ratio)&&({ratio:i}=this.embed),null===i&&this.isHTML5){const{videoWidth:e,videoHeight:t}=this.media;i=[e,t]}return xe(i)}function Ne(e){if(!this.isVideo)return{};const{wrapper:t}=this.elements,i=Me.call(this,e);if(!j(i))return{};const[s,n]=xe(i),a=100/s*n;if(Se(`aspect-ratio: ${s}/${n}`)?t.style.aspectRatio=`${s}/${n}`:t.style.paddingBottom=`${a}%`,this.isVimeo&&!this.config.vimeo.premium&&this.supported.ui){const e=100/this.media.offsetWidth*parseInt(window.getComputedStyle(this.media).paddingBottom,10),i=(e-a)/(e/50);this.fullscreen.active?t.style.paddingBottom=null:this.media.style.transform=`translateY(-${i}%)`}else this.isHTML5&&t.classList.add(this.config.classNames.videoFixedRatio);return{padding:a,ratio:i}}function Ie(e,t,i=.05){const s=e/t,n=Ae(Object.keys(Ee),s);return Math.abs(n-s)<=i?Ee[n]:[e,t]}const Le={getSources(){if(!this.isHTML5)return[];return Array.from(this.media.querySelectorAll("source")).filter((e=>{const t=e.getAttribute("type");return!!W(t)||me.mime.call(this,t)}))},getQualityOptions(){return this.config.quality.forced?this.config.quality.options:Le.getSources.call(this).map((e=>Number(e.getAttribute("data-res")))).filter(Boolean)},setup(){if(!this.isHTML5)return;const e=this;e.options.speed=e.config.speed.options,W(this.config.ratio)||Ne.call(e),Object.defineProperty(e.media,"quality",{get(){const t=Le.getSources.call(e).find((t=>t.getAttribute("src")===e.source));return t&&Number(t.getAttribute("data-res"))},set(t){if(e.quality!==t){if(e.config.quality.forced&&q(e.config.quality.onChange))e.config.quality.onChange(t);else{const i=Le.getSources.call(e).find((e=>Number(e.getAttribute("data-res"))===t));if(!i)return;const{currentTime:s,paused:n,preload:a,readyState:l,playbackRate:o}=e.media;e.media.src=i.getAttribute("src"),("none"!==a||l)&&(e.once("loadedmetadata",(()=>{e.speed=o,e.currentTime=s,n||ke(e.play())})),e.media.load())}ve.call(e,e.media,"qualitychange",!1,{quality:t})}}})},cancelRequests(){this.isHTML5&&(te(Le.getSources.call(this)),this.media.setAttribute("src",this.config.blankVideo),this.media.load(),this.debug.log("Cancelled network requests"))}};function $e(e,...t){return W(e)?e:e.toString().replace(/{(\d+)}/g,((e,i)=>t[i].toString()))}const _e=(e="",t="",i="")=>e.replace(new RegExp(t.toString().replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1"),"g"),i.toString()),Oe=(e="")=>e.toString().replace(/\w\S*/g,(e=>e.charAt(0).toUpperCase()+e.substr(1).toLowerCase()));function qe(e=""){let t=e.toString();return t=function(e=""){let t=e.toString();return t=_e(t,"-"," "),t=_e(t,"_"," "),t=Oe(t),_e(t," ","")}(t),t.charAt(0).toLowerCase()+t.slice(1)}function je(e){const t=document.createElement("div");return t.appendChild(e),t.innerHTML}const De={pip:"PIP",airplay:"AirPlay",html5:"HTML5",vimeo:"Vimeo",youtube:"YouTube"},He={get(e="",t={}){if(W(e)||W(t))return"";let i=Q(t.i18n,e);if(W(i))return Object.keys(De).includes(e)?De[e]:"";const s={"{seektime}":t.seekTime,"{title}":t.title};return Object.entries(s).forEach((([e,t])=>{i=_e(i,e,t)})),i}};class Fe{constructor(t){e(this,"get",(e=>{if(!Fe.supported||!this.enabled)return null;const t=window.localStorage.getItem(this.key);if(W(t))return null;const i=JSON.parse(t);return _(e)&&e.length?i[e]:i})),e(this,"set",(e=>{if(!Fe.supported||!this.enabled)return;if(!L(e))return;let t=this.get();W(t)&&(t={}),X(t,e),window.localStorage.setItem(this.key,JSON.stringify(t))})),this.enabled=t.config.storage.enabled,this.key=t.config.storage.key}static get supported(){try{if(!("localStorage"in window))return!1;const e="___test";return window.localStorage.setItem(e,e),window.localStorage.removeItem(e),!0}catch(e){return!1}}}function Re(e,t="text"){return new Promise(((i,s)=>{try{const s=new XMLHttpRequest;if(!("withCredentials"in s))return;s.addEventListener("load",(()=>{if("text"===t)try{i(JSON.parse(s.responseText))}catch(e){i(s.responseText)}else i(s.response)})),s.addEventListener("error",(()=>{throw new Error(s.status)})),s.open("GET",e,!0),s.responseType=t,s.send()}catch(e){s(e)}}))}function Ve(e,t){if(!_(e))return;const i=_(t);let s=!1;const n=()=>null!==document.getElementById(t),a=(e,t)=>{e.innerHTML=t,i&&n()||document.body.insertAdjacentElement("afterbegin",e)};if(!i||!n()){const n=Fe.supported,l=document.createElement("div");if(l.setAttribute("hidden",""),i&&l.setAttribute("id",t),n){const e=window.localStorage.getItem(`cache-${t}`);if(s=null!==e,s){const t=JSON.parse(e);a(l,t.content)}}Re(e).then((e=>{W(e)||(n&&window.localStorage.setItem(`cache-${t}`,JSON.stringify({content:e})),a(l,e))})).catch((()=>{}))}}const Be=e=>Math.trunc(e/60/60%60,10);function Ue(e=0,t=!1,i=!1){if(!$(e))return Ue(void 0,t,i);const s=e=>`0${e}`.slice(-2);let n=Be(e);const a=(l=e,Math.trunc(l/60%60,10));var l;const o=(e=>Math.trunc(e%60,10))(e);return n=t||n>0?`${n}:`:"",`${i&&e>0?"-":""}${n}${s(a)}:${s(o)}`}const We={getIconUrl(){const e=new URL(this.config.iconUrl,window.location).host!==window.location.host||Y.isIE&&!window.svg4everybody;return{url:this.config.iconUrl,cors:e}},findElements(){try{return this.elements.controls=he.call(this,this.config.selectors.controls.wrapper),this.elements.buttons={play:ce.call(this,this.config.selectors.buttons.play),pause:he.call(this,this.config.selectors.buttons.pause),restart:he.call(this,this.config.selectors.buttons.restart),rewind:he.call(this,this.config.selectors.buttons.rewind),fastForward:he.call(this,this.config.selectors.buttons.fastForward),mute:he.call(this,this.config.selectors.buttons.mute),pip:he.call(this,this.config.selectors.buttons.pip),airplay:he.call(this,this.config.selectors.buttons.airplay),settings:he.call(this,this.config.selectors.buttons.settings),captions:he.call(this,this.config.selectors.buttons.captions),fullscreen:he.call(this,this.config.selectors.buttons.fullscreen)},this.elements.progress=he.call(this,this.config.selectors.progress),this.elements.inputs={seek:he.call(this,this.config.selectors.inputs.seek),volume:he.call(this,this.config.selectors.inputs.volume)},this.elements.display={buffer:he.call(this,this.config.selectors.display.buffer),currentTime:he.call(this,this.config.selectors.display.currentTime),duration:he.call(this,this.config.selectors.display.duration)},H(this.elements.progress)&&(this.elements.display.seekTooltip=this.elements.progress.querySelector(`.${this.config.classNames.tooltip}`)),!0}catch(e){return this.debug.warn("It looks like there is a problem with your custom controls HTML",e),this.toggleNativeControls(!0),!1}},createIcon(e,t){const i="http://www.w3.org/2000/svg",s=We.getIconUrl.call(this),n=`${s.cors?"":s.url}#${this.config.iconPrefix}`,a=document.createElementNS(i,"svg");G(a,X(t,{"aria-hidden":"true",focusable:"false"}));const l=document.createElementNS(i,"use"),o=`${n}-${e}`;return"href"in l&&l.setAttributeNS("http://www.w3.org/1999/xlink","href",o),l.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",o),a.appendChild(l),a},createLabel(e,t={}){const i=He.get(e,this.config);return Z("span",{...t,class:[t.class,this.config.classNames.hidden].filter(Boolean).join(" ")},i)},createBadge(e){if(W(e))return null;const t=Z("span",{class:this.config.classNames.menu.value});return t.appendChild(Z("span",{class:this.config.classNames.menu.badge},e)),t},createButton(e,t){const i=X({},t);let s=qe(e);const n={element:"button",toggle:!1,label:null,icon:null,labelPressed:null,iconPressed:null};switch(["element","icon","label"].forEach((e=>{Object.keys(i).includes(e)&&(n[e]=i[e],delete i[e])})),"button"!==n.element||Object.keys(i).includes("type")||(i.type="button"),Object.keys(i).includes("class")?i.class.split(" ").some((e=>e===this.config.classNames.control))||X(i,{class:`${i.class} ${this.config.classNames.control}`}):i.class=this.config.classNames.control,e){case"play":n.toggle=!0,n.label="play",n.labelPressed="pause",n.icon="play",n.iconPressed="pause";break;case"mute":n.toggle=!0,n.label="mute",n.labelPressed="unmute",n.icon="volume",n.iconPressed="muted";break;case"captions":n.toggle=!0,n.label="enableCaptions",n.labelPressed="disableCaptions",n.icon="captions-off",n.iconPressed="captions-on";break;case"fullscreen":n.toggle=!0,n.label="enterFullscreen",n.labelPressed="exitFullscreen",n.icon="enter-fullscreen",n.iconPressed="exit-fullscreen";break;case"play-large":i.class+=` ${this.config.classNames.control}--overlaid`,s="play",n.label="play",n.icon="play";break;default:W(n.label)&&(n.label=s),W(n.icon)&&(n.icon=e)}const a=Z(n.element);return n.toggle?(a.appendChild(We.createIcon.call(this,n.iconPressed,{class:"icon--pressed"})),a.appendChild(We.createIcon.call(this,n.icon,{class:"icon--not-pressed"})),a.appendChild(We.createLabel.call(this,n.labelPressed,{class:"label--pressed"})),a.appendChild(We.createLabel.call(this,n.label,{class:"label--not-pressed"}))):(a.appendChild(We.createIcon.call(this,n.icon)),a.appendChild(We.createLabel.call(this,n.label))),X(i,ne(this.config.selectors.buttons[s],i)),G(a,i),"play"===s?(j(this.elements.buttons[s])||(this.elements.buttons[s]=[]),this.elements.buttons[s].push(a)):this.elements.buttons[s]=a,a},createRange(e,t){const i=Z("input",X(ne(this.config.selectors.inputs[e]),{type:"range",min:0,max:100,step:.01,value:0,autocomplete:"off",role:"slider","aria-label":He.get(e,this.config),"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":0},t));return this.elements.inputs[e]=i,We.updateRangeFill.call(this,i),T.setup(i),i},createProgress(e,t){const i=Z("progress",X(ne(this.config.selectors.display[e]),{min:0,max:100,value:0,role:"progressbar","aria-hidden":!0},t));if("volume"!==e){i.appendChild(Z("span",null,"0"));const t={played:"played",buffer:"buffered"}[e],s=t?He.get(t,this.config):"";i.innerText=`% ${s.toLowerCase()}`}return this.elements.display[e]=i,i},createTime(e,t){const i=ne(this.config.selectors.display[e],t),s=Z("div",X(i,{class:`${i.class?i.class:""} ${this.config.classNames.display.time} `.trim(),"aria-label":He.get(e,this.config)}),"00:00");return this.elements.display[e]=s,s},bindMenuItemShortcuts(e,t){fe.call(this,e,"keydown keyup",(i=>{if(![32,38,39,40].includes(i.which))return;if(i.preventDefault(),i.stopPropagation(),"keydown"===i.type)return;const s=re(e,'[role="menuitemradio"]');if(!s&&[32,39].includes(i.which))We.showMenuPanel.call(this,t,!0);else{let t;32!==i.which&&(40===i.which||s&&39===i.which?(t=e.nextElementSibling,H(t)||(t=e.parentNode.firstElementChild)):(t=e.previousElementSibling,H(t)||(t=e.parentNode.lastElementChild)),ue.call(this,t,!0))}}),!1),fe.call(this,e,"keyup",(e=>{13===e.which&&We.focusFirstMenuItem.call(this,null,!0)}))},createMenuItem({value:e,list:t,type:i,title:s,badge:n=null,checked:a=!1}){const l=ne(this.config.selectors.inputs[i]),o=Z("button",X(l,{type:"button",role:"menuitemradio",class:`${this.config.classNames.control} ${l.class?l.class:""}`.trim(),"aria-checked":a,value:e})),r=Z("span");r.innerHTML=s,H(n)&&r.appendChild(n),o.appendChild(r),Object.defineProperty(o,"checked",{enumerable:!0,get:()=>"true"===o.getAttribute("aria-checked"),set(e){e&&Array.from(o.parentNode.children).filter((e=>re(e,'[role="menuitemradio"]'))).forEach((e=>e.setAttribute("aria-checked","false"))),o.setAttribute("aria-checked",e?"true":"false")}}),this.listeners.bind(o,"click keyup",(t=>{if(!R(t)||32===t.which){switch(t.preventDefault(),t.stopPropagation(),o.checked=!0,i){case"language":this.currentTrack=Number(e);break;case"quality":this.quality=e;break;case"speed":this.speed=parseFloat(e)}We.showMenuPanel.call(this,"home",R(t))}}),i,!1),We.bindMenuItemShortcuts.call(this,o,i),t.appendChild(o)},formatTime(e=0,t=!1){if(!$(e))return e;return Ue(e,Be(this.duration)>0,t)},updateTimeDisplay(e=null,t=0,i=!1){H(e)&&$(t)&&(e.innerText=We.formatTime(t,i))},updateVolume(){this.supported.ui&&(H(this.elements.inputs.volume)&&We.setRange.call(this,this.elements.inputs.volume,this.muted?0:this.volume),H(this.elements.buttons.mute)&&(this.elements.buttons.mute.pressed=this.muted||0===this.volume))},setRange(e,t=0){H(e)&&(e.value=t,We.updateRangeFill.call(this,e))},updateProgress(e){if(!this.supported.ui||!F(e))return;let t=0;const i=(e,t)=>{const i=$(t)?t:0,s=H(e)?e:this.elements.display.buffer;if(H(s)){s.value=i;const e=s.getElementsByTagName("span")[0];H(e)&&(e.childNodes[0].nodeValue=i)}};if(e)switch(e.type){case"timeupdate":case"seeking":case"seeked":s=this.currentTime,n=this.duration,t=0===s||0===n||Number.isNaN(s)||Number.isNaN(n)?0:(s/n*100).toFixed(2),"timeupdate"===e.type&&We.setRange.call(this,this.elements.inputs.seek,t);break;case"playing":case"progress":i(this.elements.display.buffer,100*this.buffered)}var s,n},updateRangeFill(e){const t=F(e)?e.target:e;if(H(t)&&"range"===t.getAttribute("type")){if(re(t,this.config.selectors.inputs.seek)){t.setAttribute("aria-valuenow",this.currentTime);const e=We.formatTime(this.currentTime),i=We.formatTime(this.duration),s=He.get("seekLabel",this.config);t.setAttribute("aria-valuetext",s.replace("{currentTime}",e).replace("{duration}",i))}else if(re(t,this.config.selectors.inputs.volume)){const e=100*t.value;t.setAttribute("aria-valuenow",e),t.setAttribute("aria-valuetext",`${e.toFixed(1)}%`)}else t.setAttribute("aria-valuenow",t.value);Y.isWebkit&&t.style.setProperty("--value",t.value/t.max*100+"%")}},updateSeekTooltip(e){if(!this.config.tooltips.seek||!H(this.elements.inputs.seek)||!H(this.elements.display.seekTooltip)||0===this.duration)return;const t=`${this.config.classNames.tooltip}--visible`,i=e=>le(this.elements.display.seekTooltip,t,e);if(this.touch)return void i(!1);let s=0;const n=this.elements.progress.getBoundingClientRect();if(F(e))s=100/n.width*(e.pageX-n.left);else{if(!oe(this.elements.display.seekTooltip,t))return;s=parseFloat(this.elements.display.seekTooltip.style.left,10)}s<0?s=0:s>100&&(s=100),We.updateTimeDisplay.call(this,this.elements.display.seekTooltip,this.duration/100*s),this.elements.display.seekTooltip.style.left=`${s}%`,F(e)&&["mouseenter","mouseleave"].includes(e.type)&&i("mouseenter"===e.type)},timeUpdate(e){const t=!H(this.elements.display.duration)&&this.config.invertTime;We.updateTimeDisplay.call(this,this.elements.display.currentTime,t?this.duration-this.currentTime:this.currentTime,t),e&&"timeupdate"===e.type&&this.media.seeking||We.updateProgress.call(this,e)},durationUpdate(){if(!this.supported.ui||!this.config.invertTime&&this.currentTime)return;if(this.duration>=2**32)return ae(this.elements.display.currentTime,!0),void ae(this.elements.progress,!0);H(this.elements.inputs.seek)&&this.elements.inputs.seek.setAttribute("aria-valuemax",this.duration);const e=H(this.elements.display.duration);!e&&this.config.displayDuration&&this.paused&&We.updateTimeDisplay.call(this,this.elements.display.currentTime,this.duration),e&&We.updateTimeDisplay.call(this,this.elements.display.duration,this.duration),We.updateSeekTooltip.call(this)},toggleMenuButton(e,t){ae(this.elements.settings.buttons[e],!t)},updateSetting(e,t,i){const s=this.elements.settings.panels[e];let n=null,a=t;if("captions"===e)n=this.currentTrack;else{if(n=W(i)?this[e]:i,W(n)&&(n=this.config[e].default),!W(this.options[e])&&!this.options[e].includes(n))return void this.debug.warn(`Unsupported value of '${n}' for ${e}`);if(!this.config[e].options.includes(n))return void this.debug.warn(`Disabled value of '${n}' for ${e}`)}if(H(a)||(a=s&&s.querySelector('[role="menu"]')),!H(a))return;this.elements.settings.buttons[e].querySelector(`.${this.config.classNames.menu.value}`).innerHTML=We.getLabel.call(this,e,n);const l=a&&a.querySelector(`[value="${n}"]`);H(l)&&(l.checked=!0)},getLabel(e,t){switch(e){case"speed":return 1===t?He.get("normal",this.config):`${t}&times;`;case"quality":if($(t)){const e=He.get(`qualityLabel.${t}`,this.config);return e.length?e:`${t}p`}return Oe(t);case"captions":return Ye.getLabel.call(this);default:return null}},setQualityMenu(e){if(!H(this.elements.settings.panels.quality))return;const t="quality",i=this.elements.settings.panels.quality.querySelector('[role="menu"]');j(e)&&(this.options.quality=Ce(e).filter((e=>this.config.quality.options.includes(e))));const s=!W(this.options.quality)&&this.options.quality.length>1;if(We.toggleMenuButton.call(this,t,s),ie(i),We.checkMenu.call(this),!s)return;const n=e=>{const t=He.get(`qualityBadge.${e}`,this.config);return t.length?We.createBadge.call(this,t):null};this.options.quality.sort(((e,t)=>{const i=this.config.quality.options;return i.indexOf(e)>i.indexOf(t)?1:-1})).forEach((e=>{We.createMenuItem.call(this,{value:e,list:i,type:t,title:We.getLabel.call(this,"quality",e),badge:n(e)})})),We.updateSetting.call(this,t,i)},setCaptionsMenu(){if(!H(this.elements.settings.panels.captions))return;const e="captions",t=this.elements.settings.panels.captions.querySelector('[role="menu"]'),i=Ye.getTracks.call(this),s=Boolean(i.length);if(We.toggleMenuButton.call(this,e,s),ie(t),We.checkMenu.call(this),!s)return;const n=i.map(((e,i)=>({value:i,checked:this.captions.toggled&&this.currentTrack===i,title:Ye.getLabel.call(this,e),badge:e.language&&We.createBadge.call(this,e.language.toUpperCase()),list:t,type:"language"})));n.unshift({value:-1,checked:!this.captions.toggled,title:He.get("disabled",this.config),list:t,type:"language"}),n.forEach(We.createMenuItem.bind(this)),We.updateSetting.call(this,e,t)},setSpeedMenu(){if(!H(this.elements.settings.panels.speed))return;const e="speed",t=this.elements.settings.panels.speed.querySelector('[role="menu"]');this.options.speed=this.options.speed.filter((e=>e>=this.minimumSpeed&&e<=this.maximumSpeed));const i=!W(this.options.speed)&&this.options.speed.length>1;We.toggleMenuButton.call(this,e,i),ie(t),We.checkMenu.call(this),i&&(this.options.speed.forEach((i=>{We.createMenuItem.call(this,{value:i,list:t,type:e,title:We.getLabel.call(this,"speed",i)})})),We.updateSetting.call(this,e,t))},checkMenu(){const{buttons:e}=this.elements.settings,t=!W(e)&&Object.values(e).some((e=>!e.hidden));ae(this.elements.settings.menu,!t)},focusFirstMenuItem(e,t=!1){if(this.elements.settings.popup.hidden)return;let i=e;H(i)||(i=Object.values(this.elements.settings.panels).find((e=>!e.hidden)));const s=i.querySelector('[role^="menuitem"]');ue.call(this,s,t)},toggleMenu(e){const{popup:t}=this.elements.settings,i=this.elements.buttons.settings;if(!H(t)||!H(i))return;const{hidden:s}=t;let n=s;if(O(e))n=e;else if(R(e)&&27===e.which)n=!1;else if(F(e)){const s=q(e.composedPath)?e.composedPath()[0]:e.target,a=t.contains(s);if(a||!a&&e.target!==i&&n)return}i.setAttribute("aria-expanded",n),ae(t,!n),le(this.elements.container,this.config.classNames.menu.open,n),n&&R(e)?We.focusFirstMenuItem.call(this,null,!0):n||s||ue.call(this,i,R(e))},getMenuSize(e){const t=e.cloneNode(!0);t.style.position="absolute",t.style.opacity=0,t.removeAttribute("hidden"),e.parentNode.appendChild(t);const i=t.scrollWidth,s=t.scrollHeight;return te(t),{width:i,height:s}},showMenuPanel(e="",t=!1){const i=this.elements.container.querySelector(`#plyr-settings-${this.id}-${e}`);if(!H(i))return;const s=i.parentNode,n=Array.from(s.children).find((e=>!e.hidden));if(me.transitions&&!me.reducedMotion){s.style.width=`${n.scrollWidth}px`,s.style.height=`${n.scrollHeight}px`;const e=We.getMenuSize.call(this,i),t=e=>{e.target===s&&["width","height"].includes(e.propertyName)&&(s.style.width="",s.style.height="",ye.call(this,s,z,t))};fe.call(this,s,z,t),s.style.width=`${e.width}px`,s.style.height=`${e.height}px`}ae(n,!0),ae(i,!1),We.focusFirstMenuItem.call(this,i,t)},setDownloadUrl(){const e=this.elements.buttons.download;H(e)&&e.setAttribute("href",this.download)},create(e){const{bindMenuItemShortcuts:t,createButton:i,createProgress:s,createRange:n,createTime:a,setQualityMenu:l,setSpeedMenu:o,showMenuPanel:r}=We;this.elements.controls=null,j(this.config.controls)&&this.config.controls.includes("play-large")&&this.elements.container.appendChild(i.call(this,"play-large"));const c=Z("div",ne(this.config.selectors.controls.wrapper));this.elements.controls=c;const h={class:"plyr__controls__item"};return Ce(j(this.config.controls)?this.config.controls:[]).forEach((l=>{if("restart"===l&&c.appendChild(i.call(this,"restart",h)),"rewind"===l&&c.appendChild(i.call(this,"rewind",h)),"play"===l&&c.appendChild(i.call(this,"play",h)),"fast-forward"===l&&c.appendChild(i.call(this,"fast-forward",h)),"progress"===l){const t=Z("div",{class:`${h.class} plyr__progress__container`}),i=Z("div",ne(this.config.selectors.progress));if(i.appendChild(n.call(this,"seek",{id:`plyr-seek-${e.id}`})),i.appendChild(s.call(this,"buffer")),this.config.tooltips.seek){const e=Z("span",{class:this.config.classNames.tooltip},"00:00");i.appendChild(e),this.elements.display.seekTooltip=e}this.elements.progress=i,t.appendChild(this.elements.progress),c.appendChild(t)}if("current-time"===l&&c.appendChild(a.call(this,"currentTime",h)),"duration"===l&&c.appendChild(a.call(this,"duration",h)),"mute"===l||"volume"===l){let{volume:t}=this.elements;if(H(t)&&c.contains(t)||(t=Z("div",X({},h,{class:`${h.class} plyr__volume`.trim()})),this.elements.volume=t,c.appendChild(t)),"mute"===l&&t.appendChild(i.call(this,"mute")),"volume"===l&&!Y.isIos){const i={max:1,step:.05,value:this.config.volume};t.appendChild(n.call(this,"volume",X(i,{id:`plyr-volume-${e.id}`})))}}if("captions"===l&&c.appendChild(i.call(this,"captions",h)),"settings"===l&&!W(this.config.settings)){const s=Z("div",X({},h,{class:`${h.class} plyr__menu`.trim(),hidden:""}));s.appendChild(i.call(this,"settings",{"aria-haspopup":!0,"aria-controls":`plyr-settings-${e.id}`,"aria-expanded":!1}));const n=Z("div",{class:"plyr__menu__container",id:`plyr-settings-${e.id}`,hidden:""}),a=Z("div"),l=Z("div",{id:`plyr-settings-${e.id}-home`}),o=Z("div",{role:"menu"});l.appendChild(o),a.appendChild(l),this.elements.settings.panels.home=l,this.config.settings.forEach((i=>{const s=Z("button",X(ne(this.config.selectors.buttons.settings),{type:"button",class:`${this.config.classNames.control} ${this.config.classNames.control}--forward`,role:"menuitem","aria-haspopup":!0,hidden:""}));t.call(this,s,i),fe.call(this,s,"click",(()=>{r.call(this,i,!1)}));const n=Z("span",null,He.get(i,this.config)),l=Z("span",{class:this.config.classNames.menu.value});l.innerHTML=e[i],n.appendChild(l),s.appendChild(n),o.appendChild(s);const c=Z("div",{id:`plyr-settings-${e.id}-${i}`,hidden:""}),h=Z("button",{type:"button",class:`${this.config.classNames.control} ${this.config.classNames.control}--back`});h.appendChild(Z("span",{"aria-hidden":!0},He.get(i,this.config))),h.appendChild(Z("span",{class:this.config.classNames.hidden},He.get("menuBack",this.config))),fe.call(this,c,"keydown",(e=>{37===e.which&&(e.preventDefault(),e.stopPropagation(),r.call(this,"home",!0))}),!1),fe.call(this,h,"click",(()=>{r.call(this,"home",!1)})),c.appendChild(h),c.appendChild(Z("div",{role:"menu"})),a.appendChild(c),this.elements.settings.buttons[i]=s,this.elements.settings.panels[i]=c})),n.appendChild(a),s.appendChild(n),c.appendChild(s),this.elements.settings.popup=n,this.elements.settings.menu=s}if("pip"===l&&me.pip&&c.appendChild(i.call(this,"pip",h)),"airplay"===l&&me.airplay&&c.appendChild(i.call(this,"airplay",h)),"download"===l){const e=X({},h,{element:"a",href:this.download,target:"_blank"});this.isHTML5&&(e.download="");const{download:t}=this.config.urls;!U(t)&&this.isEmbed&&X(e,{icon:`logo-${this.provider}`,label:this.provider}),c.appendChild(i.call(this,"download",e))}"fullscreen"===l&&c.appendChild(i.call(this,"fullscreen",h))})),this.isHTML5&&l.call(this,Le.getQualityOptions.call(this)),o.call(this),c},inject(){if(this.config.loadSprite){const e=We.getIconUrl.call(this);e.cors&&Ve(e.url,"sprite-plyr")}this.id=Math.floor(1e4*Math.random());let e=null;this.elements.controls=null;const t={id:this.id,seektime:this.config.seekTime,title:this.config.title};let i=!0;q(this.config.controls)&&(this.config.controls=this.config.controls.call(this,t)),this.config.controls||(this.config.controls=[]),H(this.config.controls)||_(this.config.controls)?e=this.config.controls:(e=We.create.call(this,{id:this.id,seektime:this.config.seekTime,speed:this.speed,quality:this.quality,captions:Ye.getLabel.call(this)}),i=!1);let s;i&&_(this.config.controls)&&(e=(e=>{let i=e;return Object.entries(t).forEach((([e,t])=>{i=_e(i,`{${e}}`,t)})),i})(e)),_(this.config.selectors.controls.container)&&(s=document.querySelector(this.config.selectors.controls.container)),H(s)||(s=this.elements.container);if(s[H(e)?"insertAdjacentElement":"insertAdjacentHTML"]("afterbegin",e),H(this.elements.controls)||We.findElements.call(this),!W(this.elements.buttons)){const e=e=>{const t=this.config.classNames.controlPressed;Object.defineProperty(e,"pressed",{enumerable:!0,get:()=>oe(e,t),set(i=!1){le(e,t,i)}})};Object.values(this.elements.buttons).filter(Boolean).forEach((t=>{j(t)||D(t)?Array.from(t).filter(Boolean).forEach(e):e(t)}))}if(Y.isEdge&&K(s),this.config.tooltips.controls){const{classNames:e,selectors:t}=this.config,i=`${t.controls.wrapper} ${t.labels} .${e.hidden}`,s=ce.call(this,i);Array.from(s).forEach((e=>{le(e,this.config.classNames.hidden,!1),le(e,this.config.classNames.tooltip,!0)}))}}};function ze(e,t=!0){let i=e;if(t){const e=document.createElement("a");e.href=i,i=e.href}try{return new URL(i)}catch(e){return null}}function Ke(e){const t=new URLSearchParams;return L(e)&&Object.entries(e).forEach((([e,i])=>{t.set(e,i)})),t}const Ye={setup(){if(!this.supported.ui)return;if(!this.isVideo||this.isYouTube||this.isHTML5&&!me.textTracks)return void(j(this.config.controls)&&this.config.controls.includes("settings")&&this.config.settings.includes("captions")&&We.setCaptionsMenu.call(this));var e,t;if(H(this.elements.captions)||(this.elements.captions=Z("div",ne(this.config.selectors.captions)),e=this.elements.captions,t=this.elements.wrapper,H(e)&&H(t)&&t.parentNode.insertBefore(e,t.nextSibling)),Y.isIE&&window.URL){const e=this.media.querySelectorAll("track");Array.from(e).forEach((e=>{const t=e.getAttribute("src"),i=ze(t);null!==i&&i.hostname!==window.location.href.hostname&&["http:","https:"].includes(i.protocol)&&Re(t,"blob").then((t=>{e.setAttribute("src",window.URL.createObjectURL(t))})).catch((()=>{te(e)}))}))}const i=Ce((navigator.languages||[navigator.language||navigator.userLanguage||"en"]).map((e=>e.split("-")[0])));let s=(this.storage.get("language")||this.config.captions.language||"auto").toLowerCase();"auto"===s&&([s]=i);let n=this.storage.get("captions");if(O(n)||({active:n}=this.config.captions),Object.assign(this.captions,{toggled:!1,active:n,language:s,languages:i}),this.isHTML5){const e=this.config.captions.update?"addtrack removetrack":"removetrack";fe.call(this,this.media.textTracks,e,Ye.update.bind(this))}setTimeout(Ye.update.bind(this),0)},update(){const e=Ye.getTracks.call(this,!0),{active:t,language:i,meta:s,currentTrackNode:n}=this.captions,a=Boolean(e.find((e=>e.language===i)));this.isHTML5&&this.isVideo&&e.filter((e=>!s.get(e))).forEach((e=>{this.debug.log("Track added",e),s.set(e,{default:"showing"===e.mode}),"showing"===e.mode&&(e.mode="hidden"),fe.call(this,e,"cuechange",(()=>Ye.updateCues.call(this)))})),(a&&this.language!==i||!e.includes(n))&&(Ye.setLanguage.call(this,i),Ye.toggle.call(this,t&&a)),le(this.elements.container,this.config.classNames.captions.enabled,!W(e)),j(this.config.controls)&&this.config.controls.includes("settings")&&this.config.settings.includes("captions")&&We.setCaptionsMenu.call(this)},toggle(e,t=!0){if(!this.supported.ui)return;const{toggled:i}=this.captions,s=this.config.classNames.captions.active,n=I(e)?!i:e;if(n!==i){if(t||(this.captions.active=n,this.storage.set({captions:n})),!this.language&&n&&!t){const e=Ye.getTracks.call(this),t=Ye.findTrack.call(this,[this.captions.language,...this.captions.languages],!0);return this.captions.language=t.language,void Ye.set.call(this,e.indexOf(t))}this.elements.buttons.captions&&(this.elements.buttons.captions.pressed=n),le(this.elements.container,s,n),this.captions.toggled=n,We.updateSetting.call(this,"captions"),ve.call(this,this.media,n?"captionsenabled":"captionsdisabled")}setTimeout((()=>{n&&this.captions.toggled&&(this.captions.currentTrackNode.mode="hidden")}))},set(e,t=!0){const i=Ye.getTracks.call(this);if(-1!==e)if($(e))if(e in i){if(this.captions.currentTrack!==e){this.captions.currentTrack=e;const s=i[e],{language:n}=s||{};this.captions.currentTrackNode=s,We.updateSetting.call(this,"captions"),t||(this.captions.language=n,this.storage.set({language:n})),this.isVimeo&&this.embed.enableTextTrack(n),ve.call(this,this.media,"languagechange")}Ye.toggle.call(this,!0,t),this.isHTML5&&this.isVideo&&Ye.updateCues.call(this)}else this.debug.warn("Track not found",e);else this.debug.warn("Invalid caption argument",e);else Ye.toggle.call(this,!1,t)},setLanguage(e,t=!0){if(!_(e))return void this.debug.warn("Invalid language argument",e);const i=e.toLowerCase();this.captions.language=i;const s=Ye.getTracks.call(this),n=Ye.findTrack.call(this,[i]);Ye.set.call(this,s.indexOf(n),t)},getTracks(e=!1){return Array.from((this.media||{}).textTracks||[]).filter((t=>!this.isHTML5||e||this.captions.meta.has(t))).filter((e=>["captions","subtitles"].includes(e.kind)))},findTrack(e,t=!1){const i=Ye.getTracks.call(this),s=e=>Number((this.captions.meta.get(e)||{}).default),n=Array.from(i).sort(((e,t)=>s(t)-s(e)));let a;return e.every((e=>(a=n.find((t=>t.language===e)),!a))),a||(t?n[0]:void 0)},getCurrentTrack(){return Ye.getTracks.call(this)[this.currentTrack]},getLabel(e){let t=e;return!V(t)&&me.textTracks&&this.captions.toggled&&(t=Ye.getCurrentTrack.call(this)),V(t)?W(t.label)?W(t.language)?He.get("enabled",this.config):e.language.toUpperCase():t.label:He.get("disabled",this.config)},updateCues(e){if(!this.supported.ui)return;if(!H(this.elements.captions))return void this.debug.warn("No captions element to render to");if(!I(e)&&!Array.isArray(e))return void this.debug.warn("updateCues: Invalid input",e);let t=e;if(!t){const e=Ye.getCurrentTrack.call(this);t=Array.from((e||{}).activeCues||[]).map((e=>e.getCueAsHTML())).map(je)}const i=t.map((e=>e.trim())).join("\n");if(i!==this.elements.captions.innerHTML){ie(this.elements.captions);const e=Z("span",ne(this.config.selectors.caption));e.innerHTML=i,this.elements.captions.appendChild(e),ve.call(this,this.media,"cuechange")}}},Qe={enabled:!0,title:"",debug:!1,autoplay:!1,autopause:!0,playsinline:!0,seekTime:10,volume:1,muted:!1,duration:null,displayDuration:!0,invertTime:!0,toggleInvert:!0,ratio:null,clickToPlay:!0,hideControls:!0,resetOnEnd:!1,disableContextMenu:!0,loadSprite:!0,iconPrefix:"plyr",iconUrl:"https://cdn.plyr.io/3.6.8/plyr.svg",blankVideo:"https://cdn.plyr.io/static/blank.mp4",quality:{default:576,options:[4320,2880,2160,1440,1080,720,576,480,360,240],forced:!1,onChange:null},loop:{active:!1},speed:{selected:1,options:[.5,.75,1,1.25,1.5,1.75,2,4]},keyboard:{focused:!0,global:!1},tooltips:{controls:!1,seek:!0},captions:{active:!1,language:"auto",update:!1},fullscreen:{enabled:!0,fallback:!0,iosNative:!1},storage:{enabled:!0,key:"plyr"},controls:["play-large","play","progress","current-time","mute","volume","captions","settings","pip","airplay","fullscreen"],settings:["captions","quality","speed"],i18n:{restart:"Restart",rewind:"Rewind {seektime}s",play:"Play",pause:"Pause",fastForward:"Forward {seektime}s",seek:"Seek",seekLabel:"{currentTime} of {duration}",played:"Played",buffered:"Buffered",currentTime:"Current time",duration:"Duration",volume:"Volume",mute:"Mute",unmute:"Unmute",enableCaptions:"Enable captions",disableCaptions:"Disable captions",download:"Download",enterFullscreen:"Enter fullscreen",exitFullscreen:"Exit fullscreen",frameTitle:"Player for {title}",captions:"Captions",settings:"Settings",pip:"PIP",menuBack:"Go back to previous menu",speed:"Speed",normal:"Normal",quality:"Quality",loop:"Loop",start:"Start",end:"End",all:"All",reset:"Reset",disabled:"Disabled",enabled:"Enabled",advertisement:"Ad",qualityBadge:{2160:"4K",1440:"HD",1080:"HD",720:"HD",576:"SD",480:"SD"}},urls:{download:null,vimeo:{sdk:"https://player.vimeo.com/api/player.js",iframe:"https://player.vimeo.com/video/{0}?{1}",api:"https://vimeo.com/api/oembed.json?url={0}"},youtube:{sdk:"https://www.youtube.com/iframe_api",api:"https://noembed.com/embed?url=https://www.youtube.com/watch?v={0}"},googleIMA:{sdk:"https://imasdk.googleapis.com/js/sdkloader/ima3.js"}},listeners:{seek:null,play:null,pause:null,restart:null,rewind:null,fastForward:null,mute:null,volume:null,captions:null,download:null,fullscreen:null,pip:null,airplay:null,speed:null,quality:null,loop:null,language:null},events:["ended","progress","stalled","playing","waiting","canplay","canplaythrough","loadstart","loadeddata","loadedmetadata","timeupdate","volumechange","play","pause","error","seeking","seeked","emptied","ratechange","cuechange","download","enterfullscreen","exitfullscreen","captionsenabled","captionsdisabled","languagechange","controlshidden","controlsshown","ready","statechange","qualitychange","adsloaded","adscontentpause","adscontentresume","adstarted","adsmidpoint","adscomplete","adsallcomplete","adsimpression","adsclick"],selectors:{editable:"input, textarea, select, [contenteditable]",container:".plyr",controls:{container:null,wrapper:".plyr__controls"},labels:"[data-plyr]",buttons:{play:'[data-plyr="play"]',pause:'[data-plyr="pause"]',restart:'[data-plyr="restart"]',rewind:'[data-plyr="rewind"]',fastForward:'[data-plyr="fast-forward"]',mute:'[data-plyr="mute"]',captions:'[data-plyr="captions"]',download:'[data-plyr="download"]',fullscreen:'[data-plyr="fullscreen"]',pip:'[data-plyr="pip"]',airplay:'[data-plyr="airplay"]',settings:'[data-plyr="settings"]',loop:'[data-plyr="loop"]'},inputs:{seek:'[data-plyr="seek"]',volume:'[data-plyr="volume"]',speed:'[data-plyr="speed"]',language:'[data-plyr="language"]',quality:'[data-plyr="quality"]'},display:{currentTime:".plyr__time--current",duration:".plyr__time--duration",buffer:".plyr__progress__buffer",loop:".plyr__progress__loop",volume:".plyr__volume--display"},progress:".plyr__progress",captions:".plyr__captions",caption:".plyr__caption"},classNames:{type:"plyr--{0}",provider:"plyr--{0}",video:"plyr__video-wrapper",embed:"plyr__video-embed",videoFixedRatio:"plyr__video-wrapper--fixed-ratio",embedContainer:"plyr__video-embed__container",poster:"plyr__poster",posterEnabled:"plyr__poster-enabled",ads:"plyr__ads",control:"plyr__control",controlPressed:"plyr__control--pressed",playing:"plyr--playing",paused:"plyr--paused",stopped:"plyr--stopped",loading:"plyr--loading",hover:"plyr--hover",tooltip:"plyr__tooltip",cues:"plyr__cues",hidden:"plyr__sr-only",hideControls:"plyr--hide-controls",isIos:"plyr--is-ios",isTouch:"plyr--is-touch",uiSupported:"plyr--full-ui",noTransition:"plyr--no-transition",display:{time:"plyr__time"},menu:{value:"plyr__menu__value",badge:"plyr__badge",open:"plyr--menu-open"},captions:{enabled:"plyr--captions-enabled",active:"plyr--captions-active"},fullscreen:{enabled:"plyr--fullscreen-enabled",fallback:"plyr--fullscreen-fallback"},pip:{supported:"plyr--pip-supported",active:"plyr--pip-active"},airplay:{supported:"plyr--airplay-supported",active:"plyr--airplay-active"},tabFocus:"plyr__tab-focus",previewThumbnails:{thumbContainer:"plyr__preview-thumb",thumbContainerShown:"plyr__preview-thumb--is-shown",imageContainer:"plyr__preview-thumb__image-container",timeContainer:"plyr__preview-thumb__time-container",scrubbingContainer:"plyr__preview-scrubbing",scrubbingContainerShown:"plyr__preview-scrubbing--is-shown"}},attributes:{embed:{provider:"data-plyr-provider",id:"data-plyr-embed-id"}},ads:{enabled:!1,publisherId:"",tagUrl:""},previewThumbnails:{enabled:!1,src:""},vimeo:{byline:!1,portrait:!1,title:!1,speed:!0,transparent:!1,customControls:!0,referrerPolicy:null,premium:!1},youtube:{rel:0,showinfo:0,iv_load_policy:3,modestbranding:1,customControls:!0,noCookie:!1}},Xe="picture-in-picture",Je="inline",Ge={html5:"html5",youtube:"youtube",vimeo:"vimeo"},Ze="audio",et="video";const tt=()=>{};class it{constructor(e=!1){this.enabled=window.console&&e,this.enabled&&this.log("Debugging enabled")}get log(){return this.enabled?Function.prototype.bind.call(console.log,console):tt}get warn(){return this.enabled?Function.prototype.bind.call(console.warn,console):tt}get error(){return this.enabled?Function.prototype.bind.call(console.error,console):tt}}class st{constructor(t){e(this,"onChange",(()=>{if(!this.enabled)return;const e=this.player.elements.buttons.fullscreen;H(e)&&(e.pressed=this.active);const t=this.target===this.player.media?this.target:this.player.elements.container;ve.call(this.player,t,this.active?"enterfullscreen":"exitfullscreen",!0)})),e(this,"toggleFallback",((e=!1)=>{if(e?this.scrollPosition={x:window.scrollX||0,y:window.scrollY||0}:window.scrollTo(this.scrollPosition.x,this.scrollPosition.y),document.body.style.overflow=e?"hidden":"",le(this.target,this.player.config.classNames.fullscreen.fallback,e),Y.isIos){let t=document.head.querySelector('meta[name="viewport"]');const i="viewport-fit=cover";t||(t=document.createElement("meta"),t.setAttribute("name","viewport"));const s=_(t.content)&&t.content.includes(i);e?(this.cleanupViewport=!s,s||(t.content+=`,${i}`)):this.cleanupViewport&&(t.content=t.content.split(",").filter((e=>e.trim()!==i)).join(","))}this.onChange()})),e(this,"trapFocus",(e=>{if(Y.isIos||!this.active||"Tab"!==e.key||9!==e.keyCode)return;const t=document.activeElement,i=ce.call(this.player,"a[href], button:not(:disabled), input:not(:disabled), [tabindex]"),[s]=i,n=i[i.length-1];t!==n||e.shiftKey?t===s&&e.shiftKey&&(n.focus(),e.preventDefault()):(s.focus(),e.preventDefault())})),e(this,"update",(()=>{if(this.enabled){let e;e=this.forceFallback?"Fallback (forced)":st.native?"Native":"Fallback",this.player.debug.log(`${e} fullscreen enabled`)}else this.player.debug.log("Fullscreen not supported and fallback disabled");le(this.player.elements.container,this.player.config.classNames.fullscreen.enabled,this.enabled)})),e(this,"enter",(()=>{this.enabled&&(Y.isIos&&this.player.config.fullscreen.iosNative?this.player.isVimeo?this.player.embed.requestFullscreen():this.target.webkitEnterFullscreen():!st.native||this.forceFallback?this.toggleFallback(!0):this.prefix?W(this.prefix)||this.target[`${this.prefix}Request${this.property}`]():this.target.requestFullscreen({navigationUI:"hide"}))})),e(this,"exit",(()=>{if(this.enabled)if(Y.isIos&&this.player.config.fullscreen.iosNative)this.target.webkitExitFullscreen(),ke(this.player.play());else if(!st.native||this.forceFallback)this.toggleFallback(!1);else if(this.prefix){if(!W(this.prefix)){const e="moz"===this.prefix?"Cancel":"Exit";document[`${this.prefix}${e}${this.property}`]()}}else(document.cancelFullScreen||document.exitFullscreen).call(document)})),e(this,"toggle",(()=>{this.active?this.exit():this.enter()})),this.player=t,this.prefix=st.prefix,this.property=st.property,this.scrollPosition={x:0,y:0},this.forceFallback="force"===t.config.fullscreen.fallback,this.player.elements.fullscreen=t.config.fullscreen.container&&function(e,t){const{prototype:i}=Element;return(i.closest||function(){let e=this;do{if(re.matches(e,t))return e;e=e.parentElement||e.parentNode}while(null!==e&&1===e.nodeType);return null}).call(e,t)}(this.player.elements.container,t.config.fullscreen.container),fe.call(this.player,document,"ms"===this.prefix?"MSFullscreenChange":`${this.prefix}fullscreenchange`,(()=>{this.onChange()})),fe.call(this.player,this.player.elements.container,"dblclick",(e=>{H(this.player.elements.controls)&&this.player.elements.controls.contains(e.target)||this.player.listeners.proxy(e,this.toggle,"fullscreen")})),fe.call(this,this.player.elements.container,"keydown",(e=>this.trapFocus(e))),this.update()}static get native(){return!!(document.fullscreenEnabled||document.webkitFullscreenEnabled||document.mozFullScreenEnabled||document.msFullscreenEnabled)}get usingNative(){return st.native&&!this.forceFallback}static get prefix(){if(q(document.exitFullscreen))return"";let e="";return["webkit","moz","ms"].some((t=>!(!q(document[`${t}ExitFullscreen`])&&!q(document[`${t}CancelFullScreen`]))&&(e=t,!0))),e}static get property(){return"moz"===this.prefix?"FullScreen":"Fullscreen"}get enabled(){return(st.native||this.player.config.fullscreen.fallback)&&this.player.config.fullscreen.enabled&&this.player.supported.ui&&this.player.isVideo}get active(){if(!this.enabled)return!1;if(!st.native||this.forceFallback)return oe(this.target,this.player.config.classNames.fullscreen.fallback);const e=this.prefix?document[`${this.prefix}${this.property}Element`]:document.fullscreenElement;return e&&e.shadowRoot?e===this.target.getRootNode().host:e===this.target}get target(){return Y.isIos&&this.player.config.fullscreen.iosNative?this.player.media:this.player.elements.fullscreen||this.player.elements.container}}function nt(e,t=1){return new Promise(((i,s)=>{const n=new Image,a=()=>{delete n.onload,delete n.onerror,(n.naturalWidth>=t?i:s)(n)};Object.assign(n,{onload:a,onerror:a,src:e})}))}const at={addStyleHook(){le(this.elements.container,this.config.selectors.container.replace(".",""),!0),le(this.elements.container,this.config.classNames.uiSupported,this.supported.ui)},toggleNativeControls(e=!1){e&&this.isHTML5?this.media.setAttribute("controls",""):this.media.removeAttribute("controls")},build(){if(this.listeners.media(),!this.supported.ui)return this.debug.warn(`Basic support only for ${this.provider} ${this.type}`),void at.toggleNativeControls.call(this,!0);H(this.elements.controls)||(We.inject.call(this),this.listeners.controls()),at.toggleNativeControls.call(this),this.isHTML5&&Ye.setup.call(this),this.volume=null,this.muted=null,this.loop=null,this.quality=null,this.speed=null,We.updateVolume.call(this),We.timeUpdate.call(this),at.checkPlaying.call(this),le(this.elements.container,this.config.classNames.pip.supported,me.pip&&this.isHTML5&&this.isVideo),le(this.elements.container,this.config.classNames.airplay.supported,me.airplay&&this.isHTML5),le(this.elements.container,this.config.classNames.isIos,Y.isIos),le(this.elements.container,this.config.classNames.isTouch,this.touch),this.ready=!0,setTimeout((()=>{ve.call(this,this.media,"ready")}),0),at.setTitle.call(this),this.poster&&at.setPoster.call(this,this.poster,!1).catch((()=>{})),this.config.duration&&We.durationUpdate.call(this)},setTitle(){let e=He.get("play",this.config);if(_(this.config.title)&&!W(this.config.title)&&(e+=`, ${this.config.title}`),Array.from(this.elements.buttons.play||[]).forEach((t=>{t.setAttribute("aria-label",e)})),this.isEmbed){const e=he.call(this,"iframe");if(!H(e))return;const t=W(this.config.title)?"video":this.config.title,i=He.get("frameTitle",this.config);e.setAttribute("title",i.replace("{title}",t))}},togglePoster(e){le(this.elements.container,this.config.classNames.posterEnabled,e)},setPoster(e,t=!0){return t&&this.poster?Promise.reject(new Error("Poster already set")):(this.media.setAttribute("data-poster",e),this.elements.poster.removeAttribute("hidden"),Te.call(this).then((()=>nt(e))).catch((t=>{throw e===this.poster&&at.togglePoster.call(this,!1),t})).then((()=>{if(e!==this.poster)throw new Error("setPoster cancelled by later call to setPoster")})).then((()=>(Object.assign(this.elements.poster.style,{backgroundImage:`url('${e}')`,backgroundSize:""}),at.togglePoster.call(this,!0),e))))},checkPlaying(e){le(this.elements.container,this.config.classNames.playing,this.playing),le(this.elements.container,this.config.classNames.paused,this.paused),le(this.elements.container,this.config.classNames.stopped,this.stopped),Array.from(this.elements.buttons.play||[]).forEach((e=>{Object.assign(e,{pressed:this.playing}),e.setAttribute("aria-label",He.get(this.playing?"pause":"play",this.config))})),F(e)&&"timeupdate"===e.type||at.toggleControls.call(this)},checkLoading(e){this.loading=["stalled","waiting"].includes(e.type),clearTimeout(this.timers.loading),this.timers.loading=setTimeout((()=>{le(this.elements.container,this.config.classNames.loading,this.loading),at.toggleControls.call(this)}),this.loading?250:0)},toggleControls(e){const{controls:t}=this.elements;if(t&&this.config.hideControls){const i=this.touch&&this.lastSeekTime+2e3>Date.now();this.toggleControls(Boolean(e||this.loading||this.paused||t.pressed||t.hover||i))}},migrateStyles(){Object.values({...this.media.style}).filter((e=>!W(e)&&_(e)&&e.startsWith("--plyr"))).forEach((e=>{this.elements.container.style.setProperty(e,this.media.style.getPropertyValue(e)),this.media.style.removeProperty(e)})),W(this.media.style)&&this.media.removeAttribute("style")}};class lt{constructor(t){e(this,"firstTouch",(()=>{const{player:e}=this,{elements:t}=e;e.touch=!0,le(t.container,e.config.classNames.isTouch,!0)})),e(this,"setTabFocus",(e=>{const{player:t}=this,{elements:i}=t;if(clearTimeout(this.focusTimer),"keydown"===e.type&&9!==e.which)return;"keydown"===e.type&&(this.lastKeyDown=e.timeStamp);const s=e.timeStamp-this.lastKeyDown<=20;("focus"!==e.type||s)&&((()=>{const e=t.config.classNames.tabFocus;le(ce.call(t,`.${e}`),e,!1)})(),"focusout"!==e.type&&(this.focusTimer=setTimeout((()=>{const e=document.activeElement;i.container.contains(e)&&le(document.activeElement,t.config.classNames.tabFocus,!0)}),10)))})),e(this,"global",((e=!0)=>{const{player:t}=this;t.config.keyboard.global&&ge.call(t,window,"keydown keyup",this.handleKey,e,!1),ge.call(t,document.body,"click",this.toggleMenu,e),be.call(t,document.body,"touchstart",this.firstTouch),ge.call(t,document.body,"keydown focus blur focusout",this.setTabFocus,e,!1,!0)})),e(this,"container",(()=>{const{player:e}=this,{config:t,elements:i,timers:s}=e;!t.keyboard.global&&t.keyboard.focused&&fe.call(e,i.container,"keydown keyup",this.handleKey,!1),fe.call(e,i.container,"mousemove mouseleave touchstart touchmove enterfullscreen exitfullscreen",(t=>{const{controls:n}=i;n&&"enterfullscreen"===t.type&&(n.pressed=!1,n.hover=!1);let a=0;["touchstart","touchmove","mousemove"].includes(t.type)&&(at.toggleControls.call(e,!0),a=e.touch?3e3:2e3),clearTimeout(s.controls),s.controls=setTimeout((()=>at.toggleControls.call(e,!1)),a)}));const n=()=>{if(!e.isVimeo||e.config.vimeo.premium)return;const t=i.wrapper,{active:s}=e.fullscreen,[n,a]=Me.call(e),l=Se(`aspect-ratio: ${n} / ${a}`);if(!s)return void(l?(t.style.width=null,t.style.height=null):(t.style.maxWidth=null,t.style.margin=null));const[o,r]=[Math.max(document.documentElement.clientWidth||0,window.innerWidth||0),Math.max(document.documentElement.clientHeight||0,window.innerHeight||0)],c=o/r>n/a;l?(t.style.width=c?"auto":"100%",t.style.height=c?"100%":"auto"):(t.style.maxWidth=c?r/a*n+"px":null,t.style.margin=c?"0 auto":null)},a=()=>{clearTimeout(s.resized),s.resized=setTimeout(n,50)};fe.call(e,i.container,"enterfullscreen exitfullscreen",(t=>{const{target:s}=e.fullscreen;if(s!==i.container)return;if(!e.isEmbed&&W(e.config.ratio))return;n();("enterfullscreen"===t.type?fe:ye).call(e,window,"resize",a)}))})),e(this,"media",(()=>{const{player:e}=this,{elements:t}=e;if(fe.call(e,e.media,"timeupdate seeking seeked",(t=>We.timeUpdate.call(e,t))),fe.call(e,e.media,"durationchange loadeddata loadedmetadata",(t=>We.durationUpdate.call(e,t))),fe.call(e,e.media,"ended",(()=>{e.isHTML5&&e.isVideo&&e.config.resetOnEnd&&(e.restart(),e.pause())})),fe.call(e,e.media,"progress playing seeking seeked",(t=>We.updateProgress.call(e,t))),fe.call(e,e.media,"volumechange",(t=>We.updateVolume.call(e,t))),fe.call(e,e.media,"playing play pause ended emptied timeupdate",(t=>at.checkPlaying.call(e,t))),fe.call(e,e.media,"waiting canplay seeked playing",(t=>at.checkLoading.call(e,t))),e.supported.ui&&e.config.clickToPlay&&!e.isAudio){const i=he.call(e,`.${e.config.classNames.video}`);if(!H(i))return;fe.call(e,t.container,"click",(s=>{([t.container,i].includes(s.target)||i.contains(s.target))&&(e.touch&&e.config.hideControls||(e.ended?(this.proxy(s,e.restart,"restart"),this.proxy(s,(()=>{ke(e.play())}),"play")):this.proxy(s,(()=>{ke(e.togglePlay())}),"play")))}))}e.supported.ui&&e.config.disableContextMenu&&fe.call(e,t.wrapper,"contextmenu",(e=>{e.preventDefault()}),!1),fe.call(e,e.media,"volumechange",(()=>{e.storage.set({volume:e.volume,muted:e.muted})})),fe.call(e,e.media,"ratechange",(()=>{We.updateSetting.call(e,"speed"),e.storage.set({speed:e.speed})})),fe.call(e,e.media,"qualitychange",(t=>{We.updateSetting.call(e,"quality",null,t.detail.quality)})),fe.call(e,e.media,"ready qualitychange",(()=>{We.setDownloadUrl.call(e)}));const i=e.config.events.concat(["keyup","keydown"]).join(" ");fe.call(e,e.media,i,(i=>{let{detail:s={}}=i;"error"===i.type&&(s=e.media.error),ve.call(e,t.container,i.type,!0,s)}))})),e(this,"proxy",((e,t,i)=>{const{player:s}=this,n=s.config.listeners[i];let a=!0;q(n)&&(a=n.call(s,e)),!1!==a&&q(t)&&t.call(s,e)})),e(this,"bind",((e,t,i,s,n=!0)=>{const{player:a}=this,l=a.config.listeners[s],o=q(l);fe.call(a,e,t,(e=>this.proxy(e,i,s)),n&&!o)})),e(this,"controls",(()=>{const{player:e}=this,{elements:t}=e,i=Y.isIE?"change":"input";if(t.buttons.play&&Array.from(t.buttons.play).forEach((t=>{this.bind(t,"click",(()=>{ke(e.togglePlay())}),"play")})),this.bind(t.buttons.restart,"click",e.restart,"restart"),this.bind(t.buttons.rewind,"click",(()=>{e.lastSeekTime=Date.now(),e.rewind()}),"rewind"),this.bind(t.buttons.fastForward,"click",(()=>{e.lastSeekTime=Date.now(),e.forward()}),"fastForward"),this.bind(t.buttons.mute,"click",(()=>{e.muted=!e.muted}),"mute"),this.bind(t.buttons.captions,"click",(()=>e.toggleCaptions())),this.bind(t.buttons.download,"click",(()=>{ve.call(e,e.media,"download")}),"download"),this.bind(t.buttons.fullscreen,"click",(()=>{e.fullscreen.toggle()}),"fullscreen"),this.bind(t.buttons.pip,"click",(()=>{e.pip="toggle"}),"pip"),this.bind(t.buttons.airplay,"click",e.airplay,"airplay"),this.bind(t.buttons.settings,"click",(t=>{t.stopPropagation(),t.preventDefault(),We.toggleMenu.call(e,t)}),null,!1),this.bind(t.buttons.settings,"keyup",(t=>{const i=t.which;[13,32].includes(i)&&(13!==i?(t.preventDefault(),t.stopPropagation(),We.toggleMenu.call(e,t)):We.focusFirstMenuItem.call(e,null,!0))}),null,!1),this.bind(t.settings.menu,"keydown",(t=>{27===t.which&&We.toggleMenu.call(e,t)})),this.bind(t.inputs.seek,"mousedown mousemove",(e=>{const i=t.progress.getBoundingClientRect(),s=100/i.width*(e.pageX-i.left);e.currentTarget.setAttribute("seek-value",s)})),this.bind(t.inputs.seek,"mousedown mouseup keydown keyup touchstart touchend",(t=>{const i=t.currentTarget,s=t.keyCode?t.keyCode:t.which,n="play-on-seeked";if(R(t)&&39!==s&&37!==s)return;e.lastSeekTime=Date.now();const a=i.hasAttribute(n),l=["mouseup","touchend","keyup"].includes(t.type);a&&l?(i.removeAttribute(n),ke(e.play())):!l&&e.playing&&(i.setAttribute(n,""),e.pause())})),Y.isIos){const t=ce.call(e,'input[type="range"]');Array.from(t).forEach((e=>this.bind(e,i,(e=>K(e.target)))))}this.bind(t.inputs.seek,i,(t=>{const i=t.currentTarget;let s=i.getAttribute("seek-value");W(s)&&(s=i.value),i.removeAttribute("seek-value"),e.currentTime=s/i.max*e.duration}),"seek"),this.bind(t.progress,"mouseenter mouseleave mousemove",(t=>We.updateSeekTooltip.call(e,t))),this.bind(t.progress,"mousemove touchmove",(t=>{const{previewThumbnails:i}=e;i&&i.loaded&&i.startMove(t)})),this.bind(t.progress,"mouseleave touchend click",(()=>{const{previewThumbnails:t}=e;t&&t.loaded&&t.endMove(!1,!0)})),this.bind(t.progress,"mousedown touchstart",(t=>{const{previewThumbnails:i}=e;i&&i.loaded&&i.startScrubbing(t)})),this.bind(t.progress,"mouseup touchend",(t=>{const{previewThumbnails:i}=e;i&&i.loaded&&i.endScrubbing(t)})),Y.isWebkit&&Array.from(ce.call(e,'input[type="range"]')).forEach((t=>{this.bind(t,"input",(t=>We.updateRangeFill.call(e,t.target)))})),e.config.toggleInvert&&!H(t.display.duration)&&this.bind(t.display.currentTime,"click",(()=>{0!==e.currentTime&&(e.config.invertTime=!e.config.invertTime,We.timeUpdate.call(e))})),this.bind(t.inputs.volume,i,(t=>{e.volume=t.target.value}),"volume"),this.bind(t.controls,"mouseenter mouseleave",(i=>{t.controls.hover=!e.touch&&"mouseenter"===i.type})),t.fullscreen&&Array.from(t.fullscreen.children).filter((e=>!e.contains(t.container))).forEach((i=>{this.bind(i,"mouseenter mouseleave",(i=>{t.controls.hover=!e.touch&&"mouseenter"===i.type}))})),this.bind(t.controls,"mousedown mouseup touchstart touchend touchcancel",(e=>{t.controls.pressed=["mousedown","touchstart"].includes(e.type)})),this.bind(t.controls,"focusin",(()=>{const{config:i,timers:s}=e;le(t.controls,i.classNames.noTransition,!0),at.toggleControls.call(e,!0),setTimeout((()=>{le(t.controls,i.classNames.noTransition,!1)}),0);const n=this.touch?3e3:4e3;clearTimeout(s.controls),s.controls=setTimeout((()=>at.toggleControls.call(e,!1)),n)})),this.bind(t.inputs.volume,"wheel",(t=>{const i=t.webkitDirectionInvertedFromDevice,[s,n]=[t.deltaX,-t.deltaY].map((e=>i?-e:e)),a=Math.sign(Math.abs(s)>Math.abs(n)?s:n);e.increaseVolume(a/50);const{volume:l}=e.media;(1===a&&l<1||-1===a&&l>0)&&t.preventDefault()}),"volume",!1)})),this.player=t,this.lastKey=null,this.focusTimer=null,this.lastKeyDown=null,this.handleKey=this.handleKey.bind(this),this.toggleMenu=this.toggleMenu.bind(this),this.setTabFocus=this.setTabFocus.bind(this),this.firstTouch=this.firstTouch.bind(this)}handleKey(e){const{player:t}=this,{elements:i}=t,s=e.keyCode?e.keyCode:e.which,n="keydown"===e.type,a=n&&s===this.lastKey;if(e.altKey||e.ctrlKey||e.metaKey||e.shiftKey)return;if(!$(s))return;if(n){const n=document.activeElement;if(H(n)){const{editable:s}=t.config.selectors,{seek:a}=i.inputs;if(n!==a&&re(n,s))return;if(32===e.which&&re(n,'button, [role^="menuitem"]'))return}switch([32,37,38,39,40,48,49,50,51,52,53,54,56,57,67,70,73,75,76,77,79].includes(s)&&(e.preventDefault(),e.stopPropagation()),s){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:a||(t.currentTime=t.duration/10*(s-48));break;case 32:case 75:a||ke(t.togglePlay());break;case 38:t.increaseVolume(.1);break;case 40:t.decreaseVolume(.1);break;case 77:a||(t.muted=!t.muted);break;case 39:t.forward();break;case 37:t.rewind();break;case 70:t.fullscreen.toggle();break;case 67:a||t.toggleCaptions();break;case 76:t.loop=!t.loop}27===s&&!t.fullscreen.usingNative&&t.fullscreen.active&&t.fullscreen.toggle(),this.lastKey=s}else this.lastKey=null}toggleMenu(e){We.toggleMenu.call(this.player,e)}}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var ot=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e,t){e.exports=function(){var e=function(){},t={},i={},s={};function n(e,t){e=e.push?e:[e];var n,a,l,o=[],r=e.length,c=r;for(n=function(e,i){i.length&&o.push(e),--c||t(o)};r--;)a=e[r],(l=i[a])?n(a,l):(s[a]=s[a]||[]).push(n)}function a(e,t){if(e){var n=s[e];if(i[e]=t,n)for(;n.length;)n[0](e,t),n.splice(0,1)}}function l(t,i){t.call&&(t={success:t}),i.length?(t.error||e)(i):(t.success||e)(t)}function o(t,i,s,n){var a,l,r=document,c=s.async,h=(s.numRetries||0)+1,u=s.before||e,d=t.replace(/[\?|#].*$/,""),m=t.replace(/^(css|img)!/,"");n=n||0,/(^css!|\.css$)/.test(d)?((l=r.createElement("link")).rel="stylesheet",l.href=m,(a="hideFocus"in l)&&l.relList&&(a=0,l.rel="preload",l.as="style")):/(^img!|\.(png|gif|jpg|svg|webp)$)/.test(d)?(l=r.createElement("img")).src=m:((l=r.createElement("script")).src=t,l.async=void 0===c||c),l.onload=l.onerror=l.onbeforeload=function(e){var r=e.type[0];if(a)try{l.sheet.cssText.length||(r="e")}catch(e){18!=e.code&&(r="e")}if("e"==r){if((n+=1)<h)return o(t,i,s,n)}else if("preload"==l.rel&&"style"==l.as)return l.rel="stylesheet";i(t,r,e.defaultPrevented)},!1!==u(t,l)&&r.head.appendChild(l)}function r(e,t,i){var s,n,a=(e=e.push?e:[e]).length,l=a,r=[];for(s=function(e,i,s){if("e"==i&&r.push(e),"b"==i){if(!s)return;r.push(e)}--a||t(r)},n=0;n<l;n++)o(e[n],s,i)}function c(e,i,s){var n,o;if(i&&i.trim&&(n=i),o=(n?s:i)||{},n){if(n in t)throw"LoadJS";t[n]=!0}function c(t,i){r(e,(function(e){l(o,e),t&&l({success:t,error:i},e),a(n,e)}),o)}if(o.returnPromise)return new Promise(c);c()}return c.ready=function(e,t){return n(e,(function(e){l(t,e)})),c},c.done=function(e){a(e,[])},c.reset=function(){t={},i={},s={}},c.isDefined=function(e){return e in t},c}()}));function rt(e){return new Promise(((t,i)=>{ot(e,{success:t,error:i})}))}function ct(e){e&&!this.embed.hasPlayed&&(this.embed.hasPlayed=!0),this.media.paused===e&&(this.media.paused=!e,ve.call(this,this.media,e?"play":"pause"))}const ht={setup(){const e=this;le(e.elements.wrapper,e.config.classNames.embed,!0),e.options.speed=e.config.speed.options,Ne.call(e),L(window.Vimeo)?ht.ready.call(e):rt(e.config.urls.vimeo.sdk).then((()=>{ht.ready.call(e)})).catch((t=>{e.debug.warn("Vimeo SDK (player.js) failed to load",t)}))},ready(){const e=this,t=e.config.vimeo,{premium:i,referrerPolicy:s,...n}=t;i&&Object.assign(n,{controls:!1,sidedock:!1});const a=Ke({loop:e.config.loop.active,autoplay:e.autoplay,muted:e.muted,gesture:"media",playsinline:!this.config.fullscreen.iosNative,...n});let l=e.media.getAttribute("src");W(l)&&(l=e.media.getAttribute(e.config.attributes.embed.id));const o=W(r=l)?null:$(Number(r))?r:r.match(/^.*(vimeo.com\/|video\/)(\d+).*/)?RegExp.$2:r;var r;const c=Z("iframe"),h=$e(e.config.urls.vimeo.iframe,o,a);if(c.setAttribute("src",h),c.setAttribute("allowfullscreen",""),c.setAttribute("allow",["autoplay","fullscreen","picture-in-picture","encrypted-media","accelerometer","gyroscope"].join("; ")),W(s)||c.setAttribute("referrerPolicy",s),i||!t.customControls)c.setAttribute("data-poster",e.poster),e.media=se(c,e.media);else{const t=Z("div",{class:e.config.classNames.embedContainer,"data-poster":e.poster});t.appendChild(c),e.media=se(t,e.media)}t.customControls||Re($e(e.config.urls.vimeo.api,h)).then((t=>{!W(t)&&t.thumbnail_url&&at.setPoster.call(e,t.thumbnail_url).catch((()=>{}))})),e.embed=new window.Vimeo.Player(c,{autopause:e.config.autopause,muted:e.muted}),e.media.paused=!0,e.media.currentTime=0,e.supported.ui&&e.embed.disableTextTrack(),e.media.play=()=>(ct.call(e,!0),e.embed.play()),e.media.pause=()=>(ct.call(e,!1),e.embed.pause()),e.media.stop=()=>{e.pause(),e.currentTime=0};let{currentTime:u}=e.media;Object.defineProperty(e.media,"currentTime",{get:()=>u,set(t){const{embed:i,media:s,paused:n,volume:a}=e,l=n&&!i.hasPlayed;s.seeking=!0,ve.call(e,s,"seeking"),Promise.resolve(l&&i.setVolume(0)).then((()=>i.setCurrentTime(t))).then((()=>l&&i.pause())).then((()=>l&&i.setVolume(a))).catch((()=>{}))}});let d=e.config.speed.selected;Object.defineProperty(e.media,"playbackRate",{get:()=>d,set(t){e.embed.setPlaybackRate(t).then((()=>{d=t,ve.call(e,e.media,"ratechange")})).catch((()=>{e.options.speed=[1]}))}});let{volume:m}=e.config;Object.defineProperty(e.media,"volume",{get:()=>m,set(t){e.embed.setVolume(t).then((()=>{m=t,ve.call(e,e.media,"volumechange")}))}});let{muted:p}=e.config;Object.defineProperty(e.media,"muted",{get:()=>p,set(t){const i=!!O(t)&&t;e.embed.setVolume(i?0:e.config.volume).then((()=>{p=i,ve.call(e,e.media,"volumechange")}))}});let g,{loop:f}=e.config;Object.defineProperty(e.media,"loop",{get:()=>f,set(t){const i=O(t)?t:e.config.loop.active;e.embed.setLoop(i).then((()=>{f=i}))}}),e.embed.getVideoUrl().then((t=>{g=t,We.setDownloadUrl.call(e)})).catch((e=>{this.debug.warn(e)})),Object.defineProperty(e.media,"currentSrc",{get:()=>g}),Object.defineProperty(e.media,"ended",{get:()=>e.currentTime===e.duration}),Promise.all([e.embed.getVideoWidth(),e.embed.getVideoHeight()]).then((t=>{const[i,s]=t;e.embed.ratio=Ie(i,s),Ne.call(this)})),e.embed.setAutopause(e.config.autopause).then((t=>{e.config.autopause=t})),e.embed.getVideoTitle().then((t=>{e.config.title=t,at.setTitle.call(this)})),e.embed.getCurrentTime().then((t=>{u=t,ve.call(e,e.media,"timeupdate")})),e.embed.getDuration().then((t=>{e.media.duration=t,ve.call(e,e.media,"durationchange")})),e.embed.getTextTracks().then((t=>{e.media.textTracks=t,Ye.setup.call(e)})),e.embed.on("cuechange",(({cues:t=[]})=>{const i=t.map((e=>function(e){const t=document.createDocumentFragment(),i=document.createElement("div");return t.appendChild(i),i.innerHTML=e,t.firstChild.innerText}(e.text)));Ye.updateCues.call(e,i)})),e.embed.on("loaded",(()=>{if(e.embed.getPaused().then((t=>{ct.call(e,!t),t||ve.call(e,e.media,"playing")})),H(e.embed.element)&&e.supported.ui){e.embed.element.setAttribute("tabindex",-1)}})),e.embed.on("bufferstart",(()=>{ve.call(e,e.media,"waiting")})),e.embed.on("bufferend",(()=>{ve.call(e,e.media,"playing")})),e.embed.on("play",(()=>{ct.call(e,!0),ve.call(e,e.media,"playing")})),e.embed.on("pause",(()=>{ct.call(e,!1)})),e.embed.on("timeupdate",(t=>{e.media.seeking=!1,u=t.seconds,ve.call(e,e.media,"timeupdate")})),e.embed.on("progress",(t=>{e.media.buffered=t.percent,ve.call(e,e.media,"progress"),1===parseInt(t.percent,10)&&ve.call(e,e.media,"canplaythrough"),e.embed.getDuration().then((t=>{t!==e.media.duration&&(e.media.duration=t,ve.call(e,e.media,"durationchange"))}))})),e.embed.on("seeked",(()=>{e.media.seeking=!1,ve.call(e,e.media,"seeked")})),e.embed.on("ended",(()=>{e.media.paused=!0,ve.call(e,e.media,"ended")})),e.embed.on("error",(t=>{e.media.error=t,ve.call(e,e.media,"error")})),t.customControls&&setTimeout((()=>at.build.call(e)),0)}};function ut(e){e&&!this.embed.hasPlayed&&(this.embed.hasPlayed=!0),this.media.paused===e&&(this.media.paused=!e,ve.call(this,this.media,e?"play":"pause"))}function dt(e){return e.noCookie?"https://www.youtube-nocookie.com":"http:"===window.location.protocol?"http://www.youtube.com":void 0}const mt={setup(){if(le(this.elements.wrapper,this.config.classNames.embed,!0),L(window.YT)&&q(window.YT.Player))mt.ready.call(this);else{const e=window.onYouTubeIframeAPIReady;window.onYouTubeIframeAPIReady=()=>{q(e)&&e(),mt.ready.call(this)},rt(this.config.urls.youtube.sdk).catch((e=>{this.debug.warn("YouTube API failed to load",e)}))}},getTitle(e){Re($e(this.config.urls.youtube.api,e)).then((e=>{if(L(e)){const{title:t,height:i,width:s}=e;this.config.title=t,at.setTitle.call(this),this.embed.ratio=Ie(s,i)}Ne.call(this)})).catch((()=>{Ne.call(this)}))},ready(){const e=this,t=e.config.youtube,i=e.media&&e.media.getAttribute("id");if(!W(i)&&i.startsWith("youtube-"))return;let s=e.media.getAttribute("src");W(s)&&(s=e.media.getAttribute(this.config.attributes.embed.id));const n=W(a=s)?null:a.match(/^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|&v=)([^#&?]*).*/)?RegExp.$2:a;var a;const l=Z("div",{id:`${e.provider}-${Math.floor(1e4*Math.random())}`,"data-poster":t.customControls?e.poster:void 0});if(e.media=se(l,e.media),t.customControls){const t=e=>`https://i.ytimg.com/vi/${n}/${e}default.jpg`;nt(t("maxres"),121).catch((()=>nt(t("sd"),121))).catch((()=>nt(t("hq")))).then((t=>at.setPoster.call(e,t.src))).then((t=>{t.includes("maxres")||(e.elements.poster.style.backgroundSize="cover")})).catch((()=>{}))}e.embed=new window.YT.Player(e.media,{videoId:n,host:dt(t),playerVars:X({},{autoplay:e.config.autoplay?1:0,hl:e.config.hl,controls:e.supported.ui&&t.customControls?0:1,disablekb:1,playsinline:e.config.fullscreen.iosNative?0:1,cc_load_policy:e.captions.active?1:0,cc_lang_pref:e.config.captions.language,widget_referrer:window?window.location.href:null},t),events:{onError(t){if(!e.media.error){const i=t.data,s={2:"The request contains an invalid parameter value. For example, this error occurs if you specify a video ID that does not have 11 characters, or if the video ID contains invalid characters, such as exclamation points or asterisks.",5:"The requested content cannot be played in an HTML5 player or another error related to the HTML5 player has occurred.",100:"The video requested was not found. This error occurs when a video has been removed (for any reason) or has been marked as private.",101:"The owner of the requested video does not allow it to be played in embedded players.",150:"The owner of the requested video does not allow it to be played in embedded players."}[i]||"An unknown error occured";e.media.error={code:i,message:s},ve.call(e,e.media,"error")}},onPlaybackRateChange(t){const i=t.target;e.media.playbackRate=i.getPlaybackRate(),ve.call(e,e.media,"ratechange")},onReady(i){if(q(e.media.play))return;const s=i.target;mt.getTitle.call(e,n),e.media.play=()=>{ut.call(e,!0),s.playVideo()},e.media.pause=()=>{ut.call(e,!1),s.pauseVideo()},e.media.stop=()=>{s.stopVideo()},e.media.duration=s.getDuration(),e.media.paused=!0,e.media.currentTime=0,Object.defineProperty(e.media,"currentTime",{get:()=>Number(s.getCurrentTime()),set(t){e.paused&&!e.embed.hasPlayed&&e.embed.mute(),e.media.seeking=!0,ve.call(e,e.media,"seeking"),s.seekTo(t)}}),Object.defineProperty(e.media,"playbackRate",{get:()=>s.getPlaybackRate(),set(e){s.setPlaybackRate(e)}});let{volume:a}=e.config;Object.defineProperty(e.media,"volume",{get:()=>a,set(t){a=t,s.setVolume(100*a),ve.call(e,e.media,"volumechange")}});let{muted:l}=e.config;Object.defineProperty(e.media,"muted",{get:()=>l,set(t){const i=O(t)?t:l;l=i,s[i?"mute":"unMute"](),s.setVolume(100*a),ve.call(e,e.media,"volumechange")}}),Object.defineProperty(e.media,"currentSrc",{get:()=>s.getVideoUrl()}),Object.defineProperty(e.media,"ended",{get:()=>e.currentTime===e.duration});const o=s.getAvailablePlaybackRates();e.options.speed=o.filter((t=>e.config.speed.options.includes(t))),e.supported.ui&&t.customControls&&e.media.setAttribute("tabindex",-1),ve.call(e,e.media,"timeupdate"),ve.call(e,e.media,"durationchange"),clearInterval(e.timers.buffering),e.timers.buffering=setInterval((()=>{e.media.buffered=s.getVideoLoadedFraction(),(null===e.media.lastBuffered||e.media.lastBuffered<e.media.buffered)&&ve.call(e,e.media,"progress"),e.media.lastBuffered=e.media.buffered,1===e.media.buffered&&(clearInterval(e.timers.buffering),ve.call(e,e.media,"canplaythrough"))}),200),t.customControls&&setTimeout((()=>at.build.call(e)),50)},onStateChange(i){const s=i.target;clearInterval(e.timers.playing);switch(e.media.seeking&&[1,2].includes(i.data)&&(e.media.seeking=!1,ve.call(e,e.media,"seeked")),i.data){case-1:ve.call(e,e.media,"timeupdate"),e.media.buffered=s.getVideoLoadedFraction(),ve.call(e,e.media,"progress");break;case 0:ut.call(e,!1),e.media.loop?(s.stopVideo(),s.playVideo()):ve.call(e,e.media,"ended");break;case 1:t.customControls&&!e.config.autoplay&&e.media.paused&&!e.embed.hasPlayed?e.media.pause():(ut.call(e,!0),ve.call(e,e.media,"playing"),e.timers.playing=setInterval((()=>{ve.call(e,e.media,"timeupdate")}),50),e.media.duration!==s.getDuration()&&(e.media.duration=s.getDuration(),ve.call(e,e.media,"durationchange")));break;case 2:e.muted||e.embed.unMute(),ut.call(e,!1);break;case 3:ve.call(e,e.media,"waiting")}ve.call(e,e.elements.container,"statechange",!1,{code:i.data})}}})}},pt={setup(){this.media?(le(this.elements.container,this.config.classNames.type.replace("{0}",this.type),!0),le(this.elements.container,this.config.classNames.provider.replace("{0}",this.provider),!0),this.isEmbed&&le(this.elements.container,this.config.classNames.type.replace("{0}","video"),!0),this.isVideo&&(this.elements.wrapper=Z("div",{class:this.config.classNames.video}),J(this.media,this.elements.wrapper),this.elements.poster=Z("div",{class:this.config.classNames.poster}),this.elements.wrapper.appendChild(this.elements.poster)),this.isHTML5?Le.setup.call(this):this.isYouTube?mt.setup.call(this):this.isVimeo&&ht.setup.call(this)):this.debug.warn("No media element found!")}};class gt{constructor(t){e(this,"load",(()=>{this.enabled&&(L(window.google)&&L(window.google.ima)?this.ready():rt(this.player.config.urls.googleIMA.sdk).then((()=>{this.ready()})).catch((()=>{this.trigger("error",new Error("Google IMA SDK failed to load"))})))})),e(this,"ready",(()=>{var e;this.enabled||((e=this).manager&&e.manager.destroy(),e.elements.displayContainer&&e.elements.displayContainer.destroy(),e.elements.container.remove()),this.startSafetyTimer(12e3,"ready()"),this.managerPromise.then((()=>{this.clearSafetyTimer("onAdsManagerLoaded()")})),this.listeners(),this.setupIMA()})),e(this,"setupIMA",(()=>{this.elements.container=Z("div",{class:this.player.config.classNames.ads}),this.player.elements.container.appendChild(this.elements.container),google.ima.settings.setVpaidMode(google.ima.ImaSdkSettings.VpaidMode.ENABLED),google.ima.settings.setLocale(this.player.config.ads.language),google.ima.settings.setDisableCustomPlaybackForIOS10Plus(this.player.config.playsinline),this.elements.displayContainer=new google.ima.AdDisplayContainer(this.elements.container,this.player.media),this.loader=new google.ima.AdsLoader(this.elements.displayContainer),this.loader.addEventListener(google.ima.AdsManagerLoadedEvent.Type.ADS_MANAGER_LOADED,(e=>this.onAdsManagerLoaded(e)),!1),this.loader.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR,(e=>this.onAdError(e)),!1),this.requestAds()})),e(this,"requestAds",(()=>{const{container:e}=this.player.elements;try{const t=new google.ima.AdsRequest;t.adTagUrl=this.tagUrl,t.linearAdSlotWidth=e.offsetWidth,t.linearAdSlotHeight=e.offsetHeight,t.nonLinearAdSlotWidth=e.offsetWidth,t.nonLinearAdSlotHeight=e.offsetHeight,t.forceNonLinearFullSlot=!1,t.setAdWillPlayMuted(!this.player.muted),this.loader.requestAds(t)}catch(e){this.onAdError(e)}})),e(this,"pollCountdown",((e=!1)=>{if(!e)return clearInterval(this.countdownTimer),void this.elements.container.removeAttribute("data-badge-text");this.countdownTimer=setInterval((()=>{const e=Ue(Math.max(this.manager.getRemainingTime(),0)),t=`${He.get("advertisement",this.player.config)} - ${e}`;this.elements.container.setAttribute("data-badge-text",t)}),100)})),e(this,"onAdsManagerLoaded",(e=>{if(!this.enabled)return;const t=new google.ima.AdsRenderingSettings;t.restoreCustomPlaybackStateOnAdBreakComplete=!0,t.enablePreloading=!0,this.manager=e.getAdsManager(this.player,t),this.cuePoints=this.manager.getCuePoints(),this.manager.addEventListener(google.ima.AdErrorEvent.Type.AD_ERROR,(e=>this.onAdError(e))),Object.keys(google.ima.AdEvent.Type).forEach((e=>{this.manager.addEventListener(google.ima.AdEvent.Type[e],(e=>this.onAdEvent(e)))})),this.trigger("loaded")})),e(this,"addCuePoints",(()=>{W(this.cuePoints)||this.cuePoints.forEach((e=>{if(0!==e&&-1!==e&&e<this.player.duration){const t=this.player.elements.progress;if(H(t)){const i=100/this.player.duration*e,s=Z("span",{class:this.player.config.classNames.cues});s.style.left=`${i.toString()}%`,t.appendChild(s)}}}))})),e(this,"onAdEvent",(e=>{const{container:t}=this.player.elements,i=e.getAd(),s=e.getAdData();switch((e=>{ve.call(this.player,this.player.media,`ads${e.replace(/_/g,"").toLowerCase()}`)})(e.type),e.type){case google.ima.AdEvent.Type.LOADED:this.trigger("loaded"),this.pollCountdown(!0),i.isLinear()||(i.width=t.offsetWidth,i.height=t.offsetHeight);break;case google.ima.AdEvent.Type.STARTED:this.manager.setVolume(this.player.volume);break;case google.ima.AdEvent.Type.ALL_ADS_COMPLETED:this.player.ended?this.loadAds():this.loader.contentComplete();break;case google.ima.AdEvent.Type.CONTENT_PAUSE_REQUESTED:this.pauseContent();break;case google.ima.AdEvent.Type.CONTENT_RESUME_REQUESTED:this.pollCountdown(),this.resumeContent();break;case google.ima.AdEvent.Type.LOG:s.adError&&this.player.debug.warn(`Non-fatal ad error: ${s.adError.getMessage()}`)}})),e(this,"onAdError",(e=>{this.cancel(),this.player.debug.warn("Ads error",e)})),e(this,"listeners",(()=>{const{container:e}=this.player.elements;let t;this.player.on("canplay",(()=>{this.addCuePoints()})),this.player.on("ended",(()=>{this.loader.contentComplete()})),this.player.on("timeupdate",(()=>{t=this.player.currentTime})),this.player.on("seeked",(()=>{const e=this.player.currentTime;W(this.cuePoints)||this.cuePoints.forEach(((i,s)=>{t<i&&i<e&&(this.manager.discardAdBreak(),this.cuePoints.splice(s,1))}))})),window.addEventListener("resize",(()=>{this.manager&&this.manager.resize(e.offsetWidth,e.offsetHeight,google.ima.ViewMode.NORMAL)}))})),e(this,"play",(()=>{const{container:e}=this.player.elements;this.managerPromise||this.resumeContent(),this.managerPromise.then((()=>{this.manager.setVolume(this.player.volume),this.elements.displayContainer.initialize();try{this.initialized||(this.manager.init(e.offsetWidth,e.offsetHeight,google.ima.ViewMode.NORMAL),this.manager.start()),this.initialized=!0}catch(e){this.onAdError(e)}})).catch((()=>{}))})),e(this,"resumeContent",(()=>{this.elements.container.style.zIndex="",this.playing=!1,ke(this.player.media.play())})),e(this,"pauseContent",(()=>{this.elements.container.style.zIndex=3,this.playing=!0,this.player.media.pause()})),e(this,"cancel",(()=>{this.initialized&&this.resumeContent(),this.trigger("error"),this.loadAds()})),e(this,"loadAds",(()=>{this.managerPromise.then((()=>{this.manager&&this.manager.destroy(),this.managerPromise=new Promise((e=>{this.on("loaded",e),this.player.debug.log(this.manager)})),this.initialized=!1,this.requestAds()})).catch((()=>{}))})),e(this,"trigger",((e,...t)=>{const i=this.events[e];j(i)&&i.forEach((e=>{q(e)&&e.apply(this,t)}))})),e(this,"on",((e,t)=>(j(this.events[e])||(this.events[e]=[]),this.events[e].push(t),this))),e(this,"startSafetyTimer",((e,t)=>{this.player.debug.log(`Safety timer invoked from: ${t}`),this.safetyTimer=setTimeout((()=>{this.cancel(),this.clearSafetyTimer("startSafetyTimer()")}),e)})),e(this,"clearSafetyTimer",(e=>{I(this.safetyTimer)||(this.player.debug.log(`Safety timer cleared from: ${e}`),clearTimeout(this.safetyTimer),this.safetyTimer=null)})),this.player=t,this.config=t.config.ads,this.playing=!1,this.initialized=!1,this.elements={container:null,displayContainer:null},this.manager=null,this.loader=null,this.cuePoints=null,this.events={},this.safetyTimer=null,this.countdownTimer=null,this.managerPromise=new Promise(((e,t)=>{this.on("loaded",e),this.on("error",t)})),this.load()}get enabled(){const{config:e}=this;return this.player.isHTML5&&this.player.isVideo&&e.enabled&&(!W(e.publisherId)||U(e.tagUrl))}get tagUrl(){const{config:e}=this;if(U(e.tagUrl))return e.tagUrl;return`https://go.aniview.com/api/adserver6/vast/?${Ke({AV_PUBLISHERID:"58c25bb0073ef448b1087ad6",AV_CHANNELID:"5a0458dc28a06145e4519d21",AV_URL:window.location.hostname,cb:Date.now(),AV_WIDTH:640,AV_HEIGHT:480,AV_CDIM2:e.publisherId})}`}}const ft=e=>{const t=[];return e.split(/\r\n\r\n|\n\n|\r\r/).forEach((e=>{const i={};e.split(/\r\n|\n|\r/).forEach((e=>{if($(i.startTime)){if(!W(e.trim())&&W(i.text)){const t=e.trim().split("#xywh=");[i.text]=t,t[1]&&([i.x,i.y,i.w,i.h]=t[1].split(","))}}else{const t=e.match(/([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})( ?--> ?)([0-9]{2})?:?([0-9]{2}):([0-9]{2}).([0-9]{2,3})/);t&&(i.startTime=60*Number(t[1]||0)*60+60*Number(t[2])+Number(t[3])+Number(`0.${t[4]}`),i.endTime=60*Number(t[6]||0)*60+60*Number(t[7])+Number(t[8])+Number(`0.${t[9]}`))}})),i.text&&t.push(i)})),t},yt=(e,t)=>{const i={};return e>t.width/t.height?(i.width=t.width,i.height=1/e*t.width):(i.height=t.height,i.width=e*t.height),i};class bt{constructor(t){e(this,"load",(()=>{this.player.elements.display.seekTooltip&&(this.player.elements.display.seekTooltip.hidden=this.enabled),this.enabled&&this.getThumbnails().then((()=>{this.enabled&&(this.render(),this.determineContainerAutoSizing(),this.loaded=!0)}))})),e(this,"getThumbnails",(()=>new Promise((e=>{const{src:t}=this.player.config.previewThumbnails;if(W(t))throw new Error("Missing previewThumbnails.src config attribute");const i=()=>{this.thumbnails.sort(((e,t)=>e.height-t.height)),this.player.debug.log("Preview thumbnails",this.thumbnails),e()};if(q(t))t((e=>{this.thumbnails=e,i()}));else{const e=(_(t)?[t]:t).map((e=>this.getThumbnail(e)));Promise.all(e).then(i)}})))),e(this,"getThumbnail",(e=>new Promise((t=>{Re(e).then((i=>{const s={frames:ft(i),height:null,urlPrefix:""};s.frames[0].text.startsWith("/")||s.frames[0].text.startsWith("http://")||s.frames[0].text.startsWith("https://")||(s.urlPrefix=e.substring(0,e.lastIndexOf("/")+1));const n=new Image;n.onload=()=>{s.height=n.naturalHeight,s.width=n.naturalWidth,this.thumbnails.push(s),t()},n.src=s.urlPrefix+s.frames[0].text}))})))),e(this,"startMove",(e=>{if(this.loaded&&F(e)&&["touchmove","mousemove"].includes(e.type)&&this.player.media.duration){if("touchmove"===e.type)this.seekTime=this.player.media.duration*(this.player.elements.inputs.seek.value/100);else{const t=this.player.elements.progress.getBoundingClientRect(),i=100/t.width*(e.pageX-t.left);this.seekTime=this.player.media.duration*(i/100),this.seekTime<0&&(this.seekTime=0),this.seekTime>this.player.media.duration-1&&(this.seekTime=this.player.media.duration-1),this.mousePosX=e.pageX,this.elements.thumb.time.innerText=Ue(this.seekTime)}this.showImageAtCurrentTime()}})),e(this,"endMove",(()=>{this.toggleThumbContainer(!1,!0)})),e(this,"startScrubbing",(e=>{(I(e.button)||!1===e.button||0===e.button)&&(this.mouseDown=!0,this.player.media.duration&&(this.toggleScrubbingContainer(!0),this.toggleThumbContainer(!1,!0),this.showImageAtCurrentTime()))})),e(this,"endScrubbing",(()=>{this.mouseDown=!1,Math.ceil(this.lastTime)===Math.ceil(this.player.media.currentTime)?this.toggleScrubbingContainer(!1):be.call(this.player,this.player.media,"timeupdate",(()=>{this.mouseDown||this.toggleScrubbingContainer(!1)}))})),e(this,"listeners",(()=>{this.player.on("play",(()=>{this.toggleThumbContainer(!1,!0)})),this.player.on("seeked",(()=>{this.toggleThumbContainer(!1)})),this.player.on("timeupdate",(()=>{this.lastTime=this.player.media.currentTime}))})),e(this,"render",(()=>{this.elements.thumb.container=Z("div",{class:this.player.config.classNames.previewThumbnails.thumbContainer}),this.elements.thumb.imageContainer=Z("div",{class:this.player.config.classNames.previewThumbnails.imageContainer}),this.elements.thumb.container.appendChild(this.elements.thumb.imageContainer);const e=Z("div",{class:this.player.config.classNames.previewThumbnails.timeContainer});this.elements.thumb.time=Z("span",{},"00:00"),e.appendChild(this.elements.thumb.time),this.elements.thumb.container.appendChild(e),H(this.player.elements.progress)&&this.player.elements.progress.appendChild(this.elements.thumb.container),this.elements.scrubbing.container=Z("div",{class:this.player.config.classNames.previewThumbnails.scrubbingContainer}),this.player.elements.wrapper.appendChild(this.elements.scrubbing.container)})),e(this,"destroy",(()=>{this.elements.thumb.container&&this.elements.thumb.container.remove(),this.elements.scrubbing.container&&this.elements.scrubbing.container.remove()})),e(this,"showImageAtCurrentTime",(()=>{this.mouseDown?this.setScrubbingContainerSize():this.setThumbContainerSizeAndPos();const e=this.thumbnails[0].frames.findIndex((e=>this.seekTime>=e.startTime&&this.seekTime<=e.endTime)),t=e>=0;let i=0;this.mouseDown||this.toggleThumbContainer(t),t&&(this.thumbnails.forEach(((t,s)=>{this.loadedImages.includes(t.frames[e].text)&&(i=s)})),e!==this.showingThumb&&(this.showingThumb=e,this.loadImage(i)))})),e(this,"loadImage",((e=0)=>{const t=this.showingThumb,i=this.thumbnails[e],{urlPrefix:s}=i,n=i.frames[t],a=i.frames[t].text,l=s+a;if(this.currentImageElement&&this.currentImageElement.dataset.filename===a)this.showImage(this.currentImageElement,n,e,t,a,!1),this.currentImageElement.dataset.index=t,this.removeOldImages(this.currentImageElement);else{this.loadingImage&&this.usingSprites&&(this.loadingImage.onload=null);const i=new Image;i.src=l,i.dataset.index=t,i.dataset.filename=a,this.showingThumbFilename=a,this.player.debug.log(`Loading image: ${l}`),i.onload=()=>this.showImage(i,n,e,t,a,!0),this.loadingImage=i,this.removeOldImages(i)}})),e(this,"showImage",((e,t,i,s,n,a=!0)=>{this.player.debug.log(`Showing thumb: ${n}. num: ${s}. qual: ${i}. newimg: ${a}`),this.setImageSizeAndOffset(e,t),a&&(this.currentImageContainer.appendChild(e),this.currentImageElement=e,this.loadedImages.includes(n)||this.loadedImages.push(n)),this.preloadNearby(s,!0).then(this.preloadNearby(s,!1)).then(this.getHigherQuality(i,e,t,n))})),e(this,"removeOldImages",(e=>{Array.from(this.currentImageContainer.children).forEach((t=>{if("img"!==t.tagName.toLowerCase())return;const i=this.usingSprites?500:1e3;if(t.dataset.index!==e.dataset.index&&!t.dataset.deleting){t.dataset.deleting=!0;const{currentImageContainer:e}=this;setTimeout((()=>{e.removeChild(t),this.player.debug.log(`Removing thumb: ${t.dataset.filename}`)}),i)}}))})),e(this,"preloadNearby",((e,t=!0)=>new Promise((i=>{setTimeout((()=>{const s=this.thumbnails[0].frames[e].text;if(this.showingThumbFilename===s){let n;n=t?this.thumbnails[0].frames.slice(e):this.thumbnails[0].frames.slice(0,e).reverse();let a=!1;n.forEach((e=>{const t=e.text;if(t!==s&&!this.loadedImages.includes(t)){a=!0,this.player.debug.log(`Preloading thumb filename: ${t}`);const{urlPrefix:e}=this.thumbnails[0],s=e+t,n=new Image;n.src=s,n.onload=()=>{this.player.debug.log(`Preloaded thumb filename: ${t}`),this.loadedImages.includes(t)||this.loadedImages.push(t),i()}}})),a||i()}}),300)})))),e(this,"getHigherQuality",((e,t,i,s)=>{if(e<this.thumbnails.length-1){let n=t.naturalHeight;this.usingSprites&&(n=i.h),n<this.thumbContainerHeight&&setTimeout((()=>{this.showingThumbFilename===s&&(this.player.debug.log(`Showing higher quality thumb for: ${s}`),this.loadImage(e+1))}),300)}})),e(this,"toggleThumbContainer",((e=!1,t=!1)=>{const i=this.player.config.classNames.previewThumbnails.thumbContainerShown;this.elements.thumb.container.classList.toggle(i,e),!e&&t&&(this.showingThumb=null,this.showingThumbFilename=null)})),e(this,"toggleScrubbingContainer",((e=!1)=>{const t=this.player.config.classNames.previewThumbnails.scrubbingContainerShown;this.elements.scrubbing.container.classList.toggle(t,e),e||(this.showingThumb=null,this.showingThumbFilename=null)})),e(this,"determineContainerAutoSizing",(()=>{(this.elements.thumb.imageContainer.clientHeight>20||this.elements.thumb.imageContainer.clientWidth>20)&&(this.sizeSpecifiedInCSS=!0)})),e(this,"setThumbContainerSizeAndPos",(()=>{if(this.sizeSpecifiedInCSS){if(this.elements.thumb.imageContainer.clientHeight>20&&this.elements.thumb.imageContainer.clientWidth<20){const e=Math.floor(this.elements.thumb.imageContainer.clientHeight*this.thumbAspectRatio);this.elements.thumb.imageContainer.style.width=`${e}px`}else if(this.elements.thumb.imageContainer.clientHeight<20&&this.elements.thumb.imageContainer.clientWidth>20){const e=Math.floor(this.elements.thumb.imageContainer.clientWidth/this.thumbAspectRatio);this.elements.thumb.imageContainer.style.height=`${e}px`}}else{const e=Math.floor(this.thumbContainerHeight*this.thumbAspectRatio);this.elements.thumb.imageContainer.style.height=`${this.thumbContainerHeight}px`,this.elements.thumb.imageContainer.style.width=`${e}px`}this.setThumbContainerPos()})),e(this,"setThumbContainerPos",(()=>{const e=this.player.elements.progress.getBoundingClientRect(),t=this.player.elements.container.getBoundingClientRect(),{container:i}=this.elements.thumb,s=t.left-e.left+10,n=t.right-e.left-i.clientWidth-10;let a=this.mousePosX-e.left-i.clientWidth/2;a<s&&(a=s),a>n&&(a=n),i.style.left=`${a}px`})),e(this,"setScrubbingContainerSize",(()=>{const{width:e,height:t}=yt(this.thumbAspectRatio,{width:this.player.media.clientWidth,height:this.player.media.clientHeight});this.elements.scrubbing.container.style.width=`${e}px`,this.elements.scrubbing.container.style.height=`${t}px`})),e(this,"setImageSizeAndOffset",((e,t)=>{if(!this.usingSprites)return;const i=this.thumbContainerHeight/t.h;e.style.height=e.naturalHeight*i+"px",e.style.width=e.naturalWidth*i+"px",e.style.left=`-${t.x*i}px`,e.style.top=`-${t.y*i}px`})),this.player=t,this.thumbnails=[],this.loaded=!1,this.lastMouseMoveTime=Date.now(),this.mouseDown=!1,this.loadedImages=[],this.elements={thumb:{},scrubbing:{}},this.load()}get enabled(){return this.player.isHTML5&&this.player.isVideo&&this.player.config.previewThumbnails.enabled}get currentImageContainer(){return this.mouseDown?this.elements.scrubbing.container:this.elements.thumb.imageContainer}get usingSprites(){return Object.keys(this.thumbnails[0].frames[0]).includes("w")}get thumbAspectRatio(){return this.usingSprites?this.thumbnails[0].frames[0].w/this.thumbnails[0].frames[0].h:this.thumbnails[0].width/this.thumbnails[0].height}get thumbContainerHeight(){if(this.mouseDown){const{height:e}=yt(this.thumbAspectRatio,{width:this.player.media.clientWidth,height:this.player.media.clientHeight});return e}return this.sizeSpecifiedInCSS?this.elements.thumb.imageContainer.clientHeight:Math.floor(this.player.media.clientWidth/this.thumbAspectRatio/4)}get currentImageElement(){return this.mouseDown?this.currentScrubbingImageElement:this.currentThumbnailImageElement}set currentImageElement(e){this.mouseDown?this.currentScrubbingImageElement=e:this.currentThumbnailImageElement=e}}const vt={insertElements(e,t){_(t)?ee(e,this.media,{src:t}):j(t)&&t.forEach((t=>{ee(e,this.media,t)}))},change(e){Q(e,"sources.length")?(Le.cancelRequests.call(this),this.destroy.call(this,(()=>{this.options.quality=[],te(this.media),this.media=null,H(this.elements.container)&&this.elements.container.removeAttribute("class");const{sources:t,type:i}=e,[{provider:s=Ge.html5,src:n}]=t,a="html5"===s?i:"div",l="html5"===s?{}:{src:n};Object.assign(this,{provider:s,type:i,supported:me.check(i,s,this.config.playsinline),media:Z(a,l)}),this.elements.container.appendChild(this.media),O(e.autoplay)&&(this.config.autoplay=e.autoplay),this.isHTML5&&(this.config.crossorigin&&this.media.setAttribute("crossorigin",""),this.config.autoplay&&this.media.setAttribute("autoplay",""),W(e.poster)||(this.poster=e.poster),this.config.loop.active&&this.media.setAttribute("loop",""),this.config.muted&&this.media.setAttribute("muted",""),this.config.playsinline&&this.media.setAttribute("playsinline","")),at.addStyleHook.call(this),this.isHTML5&&vt.insertElements.call(this,"source",t),this.config.title=e.title,pt.setup.call(this),this.isHTML5&&Object.keys(e).includes("tracks")&&vt.insertElements.call(this,"track",e.tracks),(this.isHTML5||this.isEmbed&&!this.supported.ui)&&at.build.call(this),this.isHTML5&&this.media.load(),W(e.previewThumbnails)||(Object.assign(this.config.previewThumbnails,e.previewThumbnails),this.previewThumbnails&&this.previewThumbnails.loaded&&(this.previewThumbnails.destroy(),this.previewThumbnails=null),this.config.previewThumbnails.enabled&&(this.previewThumbnails=new bt(this))),this.fullscreen.update()}),!0)):this.debug.warn("Invalid source format")}};class wt{constructor(t,i){if(e(this,"play",(()=>q(this.media.play)?(this.ads&&this.ads.enabled&&this.ads.managerPromise.then((()=>this.ads.play())).catch((()=>ke(this.media.play()))),this.media.play()):null)),e(this,"pause",(()=>this.playing&&q(this.media.pause)?this.media.pause():null)),e(this,"togglePlay",(e=>(O(e)?e:!this.playing)?this.play():this.pause())),e(this,"stop",(()=>{this.isHTML5?(this.pause(),this.restart()):q(this.media.stop)&&this.media.stop()})),e(this,"restart",(()=>{this.currentTime=0})),e(this,"rewind",(e=>{this.currentTime-=$(e)?e:this.config.seekTime})),e(this,"forward",(e=>{this.currentTime+=$(e)?e:this.config.seekTime})),e(this,"increaseVolume",(e=>{const t=this.media.muted?0:this.volume;this.volume=t+($(e)?e:0)})),e(this,"decreaseVolume",(e=>{this.increaseVolume(-e)})),e(this,"airplay",(()=>{me.airplay&&this.media.webkitShowPlaybackTargetPicker()})),e(this,"toggleControls",(e=>{if(this.supported.ui&&!this.isAudio){const t=oe(this.elements.container,this.config.classNames.hideControls),i=void 0===e?void 0:!e,s=le(this.elements.container,this.config.classNames.hideControls,i);if(s&&j(this.config.controls)&&this.config.controls.includes("settings")&&!W(this.config.settings)&&We.toggleMenu.call(this,!1),s!==t){const e=s?"controlshidden":"controlsshown";ve.call(this,this.media,e)}return!s}return!1})),e(this,"on",((e,t)=>{fe.call(this,this.elements.container,e,t)})),e(this,"once",((e,t)=>{be.call(this,this.elements.container,e,t)})),e(this,"off",((e,t)=>{ye(this.elements.container,e,t)})),e(this,"destroy",((e,t=!1)=>{if(!this.ready)return;const i=()=>{document.body.style.overflow="",this.embed=null,t?(Object.keys(this.elements).length&&(te(this.elements.buttons.play),te(this.elements.captions),te(this.elements.controls),te(this.elements.wrapper),this.elements.buttons.play=null,this.elements.captions=null,this.elements.controls=null,this.elements.wrapper=null),q(e)&&e()):(we.call(this),Le.cancelRequests.call(this),se(this.elements.original,this.elements.container),ve.call(this,this.elements.original,"destroyed",!0),q(e)&&e.call(this.elements.original),this.ready=!1,setTimeout((()=>{this.elements=null,this.media=null}),200))};this.stop(),clearTimeout(this.timers.loading),clearTimeout(this.timers.controls),clearTimeout(this.timers.resized),this.isHTML5?(at.toggleNativeControls.call(this,!0),i()):this.isYouTube?(clearInterval(this.timers.buffering),clearInterval(this.timers.playing),null!==this.embed&&q(this.embed.destroy)&&this.embed.destroy(),i()):this.isVimeo&&(null!==this.embed&&this.embed.unload().then(i),setTimeout(i,200))})),e(this,"supports",(e=>me.mime.call(this,e))),this.timers={},this.ready=!1,this.loading=!1,this.failed=!1,this.touch=me.touch,this.media=t,_(this.media)&&(this.media=document.querySelectorAll(this.media)),(window.jQuery&&this.media instanceof jQuery||D(this.media)||j(this.media))&&(this.media=this.media[0]),this.config=X({},Qe,wt.defaults,i||{},(()=>{try{return JSON.parse(this.media.getAttribute("data-plyr-config"))}catch(e){return{}}})()),this.elements={container:null,fullscreen:null,captions:null,buttons:{},display:{},progress:{},inputs:{},settings:{popup:null,menu:null,panels:{},buttons:{}}},this.captions={active:null,currentTrack:-1,meta:new WeakMap},this.fullscreen={active:!1},this.options={speed:[],quality:[]},this.debug=new it(this.config.debug),this.debug.log("Config",this.config),this.debug.log("Support",me),I(this.media)||!H(this.media))return void this.debug.error("Setup failed: no suitable element passed");if(this.media.plyr)return void this.debug.warn("Target already setup");if(!this.config.enabled)return void this.debug.error("Setup failed: disabled by config");if(!me.check().api)return void this.debug.error("Setup failed: no support");const s=this.media.cloneNode(!0);s.autoplay=!1,this.elements.original=s;const n=this.media.tagName.toLowerCase();let a=null,l=null;switch(n){case"div":if(a=this.media.querySelector("iframe"),H(a)){if(l=ze(a.getAttribute("src")),this.provider=function(e){return/^(https?:\/\/)?(www\.)?(youtube\.com|youtube-nocookie\.com|youtu\.?be)\/.+$/.test(e)?Ge.youtube:/^https?:\/\/player.vimeo.com\/video\/\d{0,9}(?=\b|\/)/.test(e)?Ge.vimeo:null}(l.toString()),this.elements.container=this.media,this.media=a,this.elements.container.className="",l.search.length){const e=["1","true"];e.includes(l.searchParams.get("autoplay"))&&(this.config.autoplay=!0),e.includes(l.searchParams.get("loop"))&&(this.config.loop.active=!0),this.isYouTube?(this.config.playsinline=e.includes(l.searchParams.get("playsinline")),this.config.youtube.hl=l.searchParams.get("hl")):this.config.playsinline=!0}}else this.provider=this.media.getAttribute(this.config.attributes.embed.provider),this.media.removeAttribute(this.config.attributes.embed.provider);if(W(this.provider)||!Object.values(Ge).includes(this.provider))return void this.debug.error("Setup failed: Invalid provider");this.type=et;break;case"video":case"audio":this.type=n,this.provider=Ge.html5,this.media.hasAttribute("crossorigin")&&(this.config.crossorigin=!0),this.media.hasAttribute("autoplay")&&(this.config.autoplay=!0),(this.media.hasAttribute("playsinline")||this.media.hasAttribute("webkit-playsinline"))&&(this.config.playsinline=!0),this.media.hasAttribute("muted")&&(this.config.muted=!0),this.media.hasAttribute("loop")&&(this.config.loop.active=!0);break;default:return void this.debug.error("Setup failed: unsupported type")}this.supported=me.check(this.type,this.provider,this.config.playsinline),this.supported.api?(this.eventListeners=[],this.listeners=new lt(this),this.storage=new Fe(this),this.media.plyr=this,H(this.elements.container)||(this.elements.container=Z("div",{tabindex:0}),J(this.media,this.elements.container)),at.migrateStyles.call(this),at.addStyleHook.call(this),pt.setup.call(this),this.config.debug&&fe.call(this,this.elements.container,this.config.events.join(" "),(e=>{this.debug.log(`event: ${e.type}`)})),this.fullscreen=new st(this),(this.isHTML5||this.isEmbed&&!this.supported.ui)&&at.build.call(this),this.listeners.container(),this.listeners.global(),this.config.ads.enabled&&(this.ads=new gt(this)),this.isHTML5&&this.config.autoplay&&this.once("canplay",(()=>ke(this.play()))),this.lastSeekTime=0,this.config.previewThumbnails.enabled&&(this.previewThumbnails=new bt(this))):this.debug.error("Setup failed: no support")}get isHTML5(){return this.provider===Ge.html5}get isEmbed(){return this.isYouTube||this.isVimeo}get isYouTube(){return this.provider===Ge.youtube}get isVimeo(){return this.provider===Ge.vimeo}get isVideo(){return this.type===et}get isAudio(){return this.type===Ze}get playing(){return Boolean(this.ready&&!this.paused&&!this.ended)}get paused(){return Boolean(this.media.paused)}get stopped(){return Boolean(this.paused&&0===this.currentTime)}get ended(){return Boolean(this.media.ended)}set currentTime(e){if(!this.duration)return;const t=$(e)&&e>0;this.media.currentTime=t?Math.min(e,this.duration):0,this.debug.log(`Seeking to ${this.currentTime} seconds`)}get currentTime(){return Number(this.media.currentTime)}get buffered(){const{buffered:e}=this.media;return $(e)?e:e&&e.length&&this.duration>0?e.end(0)/this.duration:0}get seeking(){return Boolean(this.media.seeking)}get duration(){const e=parseFloat(this.config.duration),t=(this.media||{}).duration,i=$(t)&&t!==1/0?t:0;return e||i}set volume(e){let t=e;_(t)&&(t=Number(t)),$(t)||(t=this.storage.get("volume")),$(t)||({volume:t}=this.config),t>1&&(t=1),t<0&&(t=0),this.config.volume=t,this.media.volume=t,!W(e)&&this.muted&&t>0&&(this.muted=!1)}get volume(){return Number(this.media.volume)}set muted(e){let t=e;O(t)||(t=this.storage.get("muted")),O(t)||(t=this.config.muted),this.config.muted=t,this.media.muted=t}get muted(){return Boolean(this.media.muted)}get hasAudio(){return!this.isHTML5||(!!this.isAudio||(Boolean(this.media.mozHasAudio)||Boolean(this.media.webkitAudioDecodedByteCount)||Boolean(this.media.audioTracks&&this.media.audioTracks.length)))}set speed(e){let t=null;$(e)&&(t=e),$(t)||(t=this.storage.get("speed")),$(t)||(t=this.config.speed.selected);const{minimumSpeed:i,maximumSpeed:s}=this;t=function(e=0,t=0,i=255){return Math.min(Math.max(e,t),i)}(t,i,s),this.config.speed.selected=t,setTimeout((()=>{this.media.playbackRate=t}),0)}get speed(){return Number(this.media.playbackRate)}get minimumSpeed(){return this.isYouTube?Math.min(...this.options.speed):this.isVimeo?.5:.0625}get maximumSpeed(){return this.isYouTube?Math.max(...this.options.speed):this.isVimeo?2:16}set quality(e){const t=this.config.quality,i=this.options.quality;if(!i.length)return;let s=[!W(e)&&Number(e),this.storage.get("quality"),t.selected,t.default].find($),n=!0;if(!i.includes(s)){const e=Ae(i,s);this.debug.warn(`Unsupported quality option: ${s}, using ${e} instead`),s=e,n=!1}t.selected=s,this.media.quality=s,n&&this.storage.set({quality:s})}get quality(){return this.media.quality}set loop(e){const t=O(e)?e:this.config.loop.active;this.config.loop.active=t,this.media.loop=t}get loop(){return Boolean(this.media.loop)}set source(e){vt.change.call(this,e)}get source(){return this.media.currentSrc}get download(){const{download:e}=this.config.urls;return U(e)?e:this.source}set download(e){U(e)&&(this.config.urls.download=e,We.setDownloadUrl.call(this))}set poster(e){this.isVideo?at.setPoster.call(this,e,!1).catch((()=>{})):this.debug.warn("Poster can only be set for video")}get poster(){return this.isVideo?this.media.getAttribute("poster")||this.media.getAttribute("data-poster"):null}get ratio(){if(!this.isVideo)return null;const e=xe(Me.call(this));return j(e)?e.join(":"):e}set ratio(e){this.isVideo?_(e)&&Pe(e)?(this.config.ratio=xe(e),Ne.call(this)):this.debug.error(`Invalid aspect ratio specified (${e})`):this.debug.warn("Aspect ratio can only be set for video")}set autoplay(e){const t=O(e)?e:this.config.autoplay;this.config.autoplay=t}get autoplay(){return Boolean(this.config.autoplay)}toggleCaptions(e){Ye.toggle.call(this,e,!1)}set currentTrack(e){Ye.set.call(this,e,!1)}get currentTrack(){const{toggled:e,currentTrack:t}=this.captions;return e?t:-1}set language(e){Ye.setLanguage.call(this,e,!1)}get language(){return(Ye.getCurrentTrack.call(this)||{}).language}set pip(e){if(!me.pip)return;const t=O(e)?e:!this.pip;q(this.media.webkitSetPresentationMode)&&this.media.webkitSetPresentationMode(t?Xe:Je),q(this.media.requestPictureInPicture)&&(!this.pip&&t?this.media.requestPictureInPicture():this.pip&&!t&&document.exitPictureInPicture())}get pip(){return me.pip?W(this.media.webkitPresentationMode)?this.media===document.pictureInPictureElement:this.media.webkitPresentationMode===Xe:null}static supported(e,t,i){return me.check(e,t,i)}static loadSprite(e,t){return Ve(e,t)}static setup(e,t={}){let i=null;return _(e)?i=Array.from(document.querySelectorAll(e)):D(e)?i=Array.from(e):j(e)&&(i=e.filter(H)),W(i)?null:i.map((e=>new wt(e,t)))}}var Tt;return wt.defaults=(Tt=Qe,JSON.parse(JSON.stringify(Tt))),wt}));
+//# sourceMappingURL=plyr.min.js.map