DPlayer文档:http://dplayer.js.org
- 导入依赖
yarn add dplayer hls.js
- 在头部引入依赖
import DPlayer from 'dplayer'
const Hls = require('hls.js')
- 新建一个div
<div id="video"></div>
- 初始化播放器
componentDidMount(){
video = new DPlayer({
container: document.getElementById('video'), // 注意:这里一定要写div的dom
lang: 'zh-cn',
video: {
url: 'https://test.com/text.m3u8', // 这里填写.m3u8视频连接
type: 'customHls',
customType: {
customHls: function(video) {
const hls = new Hls()
hls.loadSource(video.src)
hls.attachMedia(video)
}
}
}
})
video.play() // 播放
video.on('ended', function() {
// 监听函数
})
}