I am trying to load in a video tag an mp4 file.
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Video</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<!--script type="text/javascript" src="app.js"></script-->
<script type="text/javascript">
$(document).ready(function(){
});
</script>
</head>
<body>
<video src="video2.mp4" autoplay="true" controls="true"></video>
</body>
</html>
The problem is that I have returned 206 partial content and I am not be able to see anything. What may be the problem?
The video url is: http://michelepierri.it/examples/video/video2.mp4
Thank you.