1
0
Fork 0

Fix HLS player on mobile

This commit is contained in:
Chocobozzz 2023-07-13 11:42:58 +02:00
parent 9bb541bec7
commit 930e1b939a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,8 @@ type Metadata = {
type HookFn = (player: videojs.Player, hljs: Hlsjs) => void
let alreadyRegistered = false
const registerSourceHandler = function (vjs: typeof videojs) {
if (!Hlsjs.isSupported()) {
logger.warn('Hls.js is not supported in this browser!')
@ -33,8 +35,9 @@ const registerSourceHandler = function (vjs: typeof videojs) {
return
}
// Already registered
if ((html5 as any).canPlaySource({ type: 'application/x-mpegURL' })) return
if (alreadyRegistered) return
alreadyRegistered = true;
// FIXME: typings
(html5 as any).registerSourceHandler({