Files
nothoughts/node_modules/pixi.js/lib/assets/detections/utils/testVideoFormat.mjs
2025-08-04 18:57:35 +02:00

13 lines
367 B
JavaScript

"use strict";
const inWorker = "WorkerGlobalScope" in globalThis && globalThis instanceof globalThis.WorkerGlobalScope;
function testVideoFormat(mimeType) {
if (inWorker) {
return false;
}
const video = document.createElement("video");
return video.canPlayType(mimeType) !== "";
}
export { testVideoFormat };
//# sourceMappingURL=testVideoFormat.mjs.map