我的网站使用jwplayer嵌入了自托管视频和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");
} );

关于youtube - 为什么我的YouTube嵌入式jw播放器onseek事件在我的网站上不起作用(jwplayer 7),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32424735/

10-11 14:19