Html5 html tag and http 206 partial content

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" 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 returned 206 partial content and I can’t see anything. What could be the problem?

Video: http://michelepierri.it/examples/video/video2.mp4

Thanks.

+6
source share

Source: https://habr.com/ru/post/958271/


All Articles