这款播放器专为直播M3U8格式设计,支持手机及电脑流畅观看,提供优质的视听体验与便捷的操作界面,满足各类用户需求。
适合直播M3U8格式的手机和PC端播放器需要引入以下文件:
```html
```
初始化代码如下:
```javascript
const dp = new DPlayer({
container: document.getElementById(dplayer),
live: true,
autoplay: true,
mutex: true,
video: {
url: 任意M3U8格式的直播流地址,
type: customHls,
customType: {
customHls: function (video, player) {
const hls = new Hls();
hls.loadSource(video.src);
hls.attachMedia(video);
}
}
}
});
```
请将上述代码中的“任意M3U8格式的直播流地址”替换为实际需要播放的视频链接。