禁用暂停和寻找视频- jwplayer 8.21



嗨,我使用jwplayer(8.21)为我的角项目。我需要禁用暂停或寻找视频,这是我的代码:

let currentTime = 0;
jwplayer('player')
.setup({
file: 'https://cph-p2p-msl.akamaized.net/hls/live/2000341/test/master.m3u8',
autostart: 'true',
width: '100%'
})
.on('pause', function () {
this.play();
})
.on('displayClick', function () {
alert('haha');
this.play();
})
.on('seek', function (event) {
currentTime = event.position;
seeking = true;
})
.on('seeked', function () {
this.seek(currentTime);
seeking = false;
});

请帮帮我

我只需要为直播流做这个。实现它的方法是添加css规则。

.jw-display-container {
display: none;
}
.jw-media {
pointer-events: none;
}
.jw-slider-horizontal {
display: none;
}

相关内容

  • 没有找到相关文章

最新更新