I have a built a streaming web server for loading a video. I have also setup a simple html page with a video tag that requests the video content.
The initial request has a header like as:
Range:bytes=0-
On my server I am setting the end of the range to:
Range:bytes=0-100000
This works and the html player requests the next part of the content with the header of:
Range:bytes=100001-
Which then returns the rest of the content.
How do I get the html video tag to request the correct ranges.