Chrome [HTML5] Video Tag does not allow to control a video
BoQsc opened this issue · 4 comments
Low importance issue.
[issue's title says it all, look up the video below.]
Somehow I suspect that this has to do with the Web Server. (DaNode)
Haven't tested on Apache or other Web Servers yet.
But it (HTML video tag) seems to work perfectly for everyone else that do not use DaNode.
2021-12-20.14-36-27.mp4
Guide to reproduce
Temporary live version. (1-2 days)
- This is what I've used.
<video width="320" height="240" controls>
<source src="1.mp4" type="video/mp4">
<source src="1.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
- Now place a video .mp4 file named 1.mp4 in the same folder alongside.
- Place it in the DaNode www/*/ folder
- Test things out and see that you can't control the video.
Probably has something to do with the player requesting the file in chunks.
In theory the browser asks for Transfer-Encoding field set to "chunked", the server currently doesn't do chunked (it could though).
DaNode should respond appropriately I guess.
Could you capture some of the HTML requests ?
Could you capture some of the HTML requests ?
HTML requests
Below this image there are exact values.
Values from the image above in the same order:
GET | Response |
---|---|
|
|
|
|
Note: Capture software
Probably due to the
Range: bytes=0-
Header set/requested, I cannot reproduce it under Firefox, .mp4 seems to play well and can be skipped
Header set/requested, I cannot reproduce it under Firefox, .mp4 seems to play well and can be skipped
That's true, Firefox does do everything properly. Only Chrome seemingly affected