如何通过 HTML5 流式传输视频?
我需要通过 HTML5 流式传输视频。这可能吗?是否有任何免费资源可以在我自己的应用程序中尝试这一点? 谢谢!
I need to stream videos through HTML5. Is that possible, are there any free sources to try that into my own application?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的意思只是像 Youtube 或任何其他视频网站一样传送视频,则只需使用
元素来传送它。它非常类似于显示图像 (JPEG)。它只是逐步下载到用户的浏览器。有关深入了解 HTML5 中的视频的更多详细信息。
但是,如果您的意思是实时流式传输或流式传输给用户,使其并未真正下载,我确信到目前为止,如果不使用带有流式传输服务器后端的 Flash Player 客户端等解决方案,还没有办法做到这一点 - Flash Media Server、WowzaMedia、Red5 等
If you mean just deliver video like Youtube or any other video site, you just use the
<video>
element to deliver it. Its pretty much like displaying an image (JPEG). Its just progressively downloaded to the user's browser. More details about Video at Dive into HTML5.However, if you mean live-stream or streamed to a user such that its not really downloaded, I'm sure there are no way so far to do that without using a solution like a Flash Player client with a streaming server back-end - Flash Media Server, WowzaMedia, Red5, etc, etc.
是的,您可以通过
标签流式传输实时视频,但仅现代浏览器支持。因此,请查看 HTTP Live Streaming 检查浏览器/设备是否正确支持 HLS 或回退 以了解如果您希望定位的浏览器支持直播
Yes, you can stream live video through
<video>
tag but it is supported to modern browsers only. so, Have a look at HTTP Live Streaming checks if browsers/devices support HLS or fallback correctly to see if live streamming is supported on broswers you are wishing to target