HTML5とjQueryを使用してビデオイベントを取得することは可能ですか?
次のようなイベント:
あなたはここでイベントを見つけることができます: http://www.w3.org/2010/05/video/mediaevents.html
例:
$("video").on("pause", function (e) {
console.debug("Video paused. Current time of videoplay: " + e.target.currentTime );
});