为什么我的 YouTube 嵌入式 JWPLAYER OnSeek 活动在我的网站上不起作用 (JWplayer7)



我的网站使用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");
} );

相关内容

  • 没有找到相关文章

最新更新