JavaScriptでhtml5ビデオを制御しようとしています。私が欲しいのは、ユーザーがボタンをクリックすると、ビデオが別のフレームにジャンプし、そこから再生し続けることです。私の現在のコードでは、再生は常にシーク後に停止します。
function jumpToTime(){
var video = $("video")[0];
video.currentTime = 160;
document.getElementbyId("videoclip").play(); //not working
};
//the following code is probably not really related to the question:
var endtimeoffset = 2000;
video.addEventListener("timeupdate", function() {
if (video.currentTime >= endtimeoffset) {
video.pause();
}
}, false);