如何捕获转发的秒数或在HTML视频中重新加入秒数?
class test:
def __init__(self):
self.only_map = { 'a' : 1 }
def run (self):
print 'start'
print self.__dict__
self.only_map['c'] = self.only_map['a'] + self.only_map['b']
print 'done'
obj = test()
obj.run()
例如视频播放时间为45秒,我将视频重新录制为20秒。我需要知道区别:$('#match').on('timeupdate',function(event) {
// convert time to HH:MM:SS
//playing = true;
});
= 45-20
我有什么方法可以做到这一点吗?
答案 0 :(得分:0)
你可以在回调中保持最新的当前时间,当差异不是+1时,处理它:
last_current_time = 0;
$('#match').on('timeupdate',function(event) {
var new_current_time = this.currentTime;
var difference = new_current_time - last_current_time;
if (difference != 1) {
// Handle seeks here.
}
last_current_time = new_current_time;
});