鉴于另一台服务器将向我发送视频 http 数据包,而我只需要将它们流式传输到客户端,如何在我的 Rails 应用程序中添加视频流功能?任何指导?教程有帮助吗?
问问题
952 次
1 回答
1
好吧,我相信 html5 标签应该可以解决问题。因为你不需要转换任何东西,并且有一个服务器可以为你的视频流提供服务,你可以简单地使用类似的东西:
<video width="100" height="50" controls="controls" autobuffer="autobuffer">
<source src="http://streaming-server.com/videos/video.ogg" type="video/ogg" />
<source src="http://streaming-server.com/videos/video.mp4" type="video/mp4" />
</video>
有两个版本都支持 chrome/safari 和 firefox ogg
。mp4
于 2012-10-23T13:16:59.860 回答