Flowplayer:html5“timeupdate”事件是否有等价物?

时间:2012-07-11 17:14:20

标签: javascript jquery html5 flowplayer

这是我的html5方法:

bindProgressUpdate: function() {
    var self = this;
    $(this.video).on('timeupdate', function() {
        var progressInPercent = self.video.currentTime / self.video.duration * 100;
        progressInPercent = Math.round(progressInPercent * 100) / 100;

        $(document).trigger('update_progress', [progressInPercent, self.video.currentTime, self.video.duration]);
    });

现在我正在实现一个使用相同接口的flashfallback,所以我需要重现video-element的行为。然而,流媒体播放器似乎没有触发任何远离timeupdate事件的东西。

那里有类似的东西,还是我必须在后台设置我自己的间隔?

0 个答案:

没有答案