$(document).ready(function(){
$("#video-active").on(
"timeupdate",
function(event){
console.log(this.currentTime);
console.log(this.duration);
if(this.currentTime=='10'){
//alert('start sound');
}
});
});