mirror of
https://github.com/DIYgod/DPlayer
synced 2024-11-22 18:56:54 +00:00
fix Hls is not supported in Safari Mobile
This commit is contained in:
parent
5b9a7f106d
commit
87e137e2c3
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user