0

Is there any way to add callback function for player.sendEvent() in jwplayer.

function timeseek(obj){
        seek_position = obj.position ;
        player.sendEvent('PLAY',false);//pause video
        updateT(logid,seek_position,1);//update db with current paused value
        player.sendEvent('SEEK ',seek_position);//seek to position
        player.sendEvent('PLAY',true);//Play video
            }

i want to do actions in above function one after the other.

4

1 回答 1

1

我不是 JWPlayer 专家,但是,如果我正确理解了这个问题,并且我对 sendEvent 所做的假设是正确的,那么我会尝试以下操作:

player.onPlay(function(e) {
  // do something...
});

player.onSeek(function(e) {
   // do something
});

因为 JWPlayer 是事件驱动的,你可以监听事件和状态变化,当你关心的事情发生时,你会在你的事件处理程序中做出反应。如果你确切地解释了在特定事件之后你想做什么,我可以提供一个更具体的例子。

有关更多信息,请参阅JWPlayer 事件文档

于 2012-10-05T12:45:49.717 回答