Currently I have VLC media player streaming a video file out through http on port 8082. I have a webserver running a page with the below code:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<video id="video" autoplay="true" controls="controls">
<source src="http://localhost:8082/stream.ogg">
</video>
</body>
</html>
This code works with Firefox. I can see the stream that VLC is sending out playing in the browser with a 5 second delay. However, this code does not work in Chrome. I have also tried a mp4 stream and that does not work either.
I am wondering what the issue is here. Chrome support is vital for us. Does chrome not support http streams for <video>
?