I am trying to load an mp4 video file into a tag.
<!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"> $(document).ready(function(){ }); </script> </head> <body> <video src="video2.mp4" autoplay="true" controls="true"></video> </body> </html>
The problem is that I returned 206 partial content and I canβt see anything. What could be the problem?
Video: http://michelepierri.it/examples/video/video2.mp4
Thanks.
source share