소스 검색

fix Hls is not supported in Safari Mobile

DIYgod 7 년 전
부모
커밋
87e137e2c3
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/js/player.js

+ 4 - 0
src/js/player.js

@@ -333,6 +333,10 @@ class DPlayer {
                 }
             }
 
+            if (this.type === 'hls' && (video.canPlayType('application/x-mpegURL') || video.canPlayType('application/vnd.apple.mpegURL'))) {
+                this.type = 'normal';
+            }
+
             switch (this.type) {
             // https://github.com/video-dev/hls.js
             case 'hls':