<视频>当源是 http 流时,标签在 Chrome 中不起作用

发布于 2025-01-07 15:35:35 字数 572 浏览 0 评论 0原文

目前,我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文