WorryFree Computers   »   [go: up one dir, main page]

#dev 2024-06-14

2024-06-14 UTC
#
pcarrier[d]
my http server is definitely messing up video files in major browsers, including Firefox. I don't understand what could be wrong. https://wtf.madethis.site/test.html showcases 2 videos not loading including https://ia800106.us.archive.org/25/items/archive-video-files/test.mp4
#
pcarrier[d]
if anybody has any clue what could be wrong, I'd welcome notes…
#
[Joe_Crawford]
You're doing `<video />` (self-closing) but you want to do a closing tag `<video></video>` - whatever is inside the tag is the fallback content.
#
gRegor
Hm, not sure, but when I open /test.mp4 directly, I see two requests in the network tab. Both have content-type: video/mp4 but the second one has `content-range: bytes 2097152-2107841/2107842` which seems off
#
gRegor
(Firefox on Windows btw)
#
gRegor
Content area shows broken file with message "No video with supported format and MIME type found"
#
gRegor
Unless Firefox is collapsing the different content-range responses, it looks like the server is only returning the last chunk of the video
geoffo joined the channel