这是我的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
事件的东西。
那里有类似的东西,还是我必须在后台设置我自己的间隔?