@wdelen; Internet Explorer'ın desteklendiğini sanmıyorum. Yine de kontrol edeyim.
Uzun uğraşlar sonucu şöyle bir kodu oluşturdum.Gayet başarılı çalışıyor ama yine explorer dışında.Fakat anlamadığım şey bu explorer javascript temi çalıştırmıyor

ne kadar saçma..Sizde bu koddan yararlanabilirsiniz hocam.
<!doctype html>
<html lang="tr">
<body>
<button onClick="playVideo()" type="button">Başlat</button>
<video id="myVideo" width="320" height="176" controls>
<source src="dosyalar/videolar/adolf.MP4" type="video/mp4">
</video>
<script>
function playVideo(){
var starttime=10;
var endtime=12;
var video = document.getElementById('myVideo');
video.addEventListener("timeupdate",function(){
if(this.currentTime >= endtime){
this.pause();
}
},false);
video.load();
video.play();
try{
video.currentTime = starttime;
} catch(ex) {
}
}
</script>
</body>
</html>