3

これは私の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]);
    });

現在、同じインターフェイスを使用するフラッシュフォールバックを実装しているため、ビデオ要素の動作を再現する必要があります。しかし、flowplayer は、timeupdateイベントの近くで何も起動していないようです。

そのようなものはありますか、それともバックグラウンドで独自の間隔を設定する必要がありますか?

4

0 に答える 0