fix Hls is not supported in Safari Mobile

This commit is contained in:
DIYgod 2018-06-14 00:00:19 +08:00
parent 5b9a7f106d
commit 87e137e2c3
No known key found for this signature in database
GPG Key ID: EC0B76A252D3EF67

View File

@ -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':