javascript, jquery
videojs - loadedmetadata 사용법
디츠
2018. 6. 19. 14:21
videojs('video', {}, function() {
this.on('loadedmetadata', function() {
var pos = 0;
if (pos) {
player.currentTime(pos);
}
});
});