--- a/wp/wp-includes/js/mediaelement/mediaelement.js Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-includes/js/mediaelement/mediaelement.js Fri Sep 05 18:40:08 2025 +0200
@@ -1018,7 +1018,7 @@
var mejs = {};
-mejs.version = '4.2.16';
+mejs.version = '4.2.17';
mejs.html5media = {
properties: ['volume', 'src', 'currentTime', 'muted', 'duration', 'paused', 'ended', 'buffered', 'error', 'networkState', 'readyState', 'seeking', 'seekable', 'currentSrc', 'preload', 'bufferedBytes', 'bufferedTime', 'initialTime', 'startOffsetTime', 'defaultPlaybackRate', 'playbackRate', 'played', 'autoplay', 'loop', 'controls'],
@@ -2962,6 +2962,7 @@
videoId: videoId,
height: height,
width: width,
+ host: youtube.options.youtube && youtube.options.youtube.nocookie ? 'https://www.youtube-nocookie.com' : undefined,
playerVars: Object.assign({
controls: 0,
rel: 0,
@@ -3772,8 +3773,10 @@
var mime = 'video/mp4';
if (normalizedExt) {
- if (~['mp4', 'm4v', 'ogg', 'ogv', 'webm', 'flv', 'mpeg', 'mov'].indexOf(normalizedExt)) {
+ if (~['mp4', 'm4v', 'ogg', 'ogv', 'webm', 'flv', 'mpeg'].indexOf(normalizedExt)) {
mime = 'video/' + normalizedExt;
+ } else if ('mov' === normalizedExt) {
+ mime = 'video/quicktime';
} else if (~['mp3', 'oga', 'wav', 'mid', 'midi'].indexOf(normalizedExt)) {
mime = 'audio/' + normalizedExt;
}