我的网站使用jwplayer嵌入self-host视频和youtube视频,
暂停,播放事件在这两种情况下都可以正常工作,但是即使寻找也只能通过自宿主视频捕获。
两种情况使用相同的代码。
谁能告诉我我该怎么做才能修好它?下面是我的代码:playerInstance = jwplayer("player");
playerInstance.setup({
modes: [
file: '<{$youtuve_url}>',
width: $('#video').width(),
height: $('#video').height(),
autostart: false
});
playerInstance.on('seek',function(event){
console.log("seek");
} );
删除modes:[
playerInstance = jwplayer("player");
playerInstance.setup({
file: '<{$youtuve_url}>',
width: $('#video').width(),
height: $('#video').height(),
autostart: false
});
playerInstance.on('seek',function(event){
console.log("seek");
} );