<视频>当源是 http 流时,标签在 Chrome 中不起作用视频>
目前,我有 VLC 媒体播放器通过端口 8082 上的 http 流式传输视频文件。我有一个网络服务器,运行一个包含以下代码的页面:
<!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>
此代码适用于 Firefox。我可以看到 VLC 发送的流在浏览器中播放,有 5 秒的延迟。然而,这段代码在 Chrome 中不起作用。我也尝试过 mp4 流,但也不起作用。
我想知道这里有什么问题。 Chrome 支持对我们来说至关重要。 Chrome 不支持 的 http 流吗?
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>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论