2012-10-23 142 views

回答

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> 

有俩都oggmp4版本同时支持铬/ Safari和Firefox。

+0

嘿感谢回应,但我的问题其实是这样的:http://stackoverflow.com/questions/13029666/http-video-streaming-in-rails-3。这是一个非常低级的HTTP网络问题。可悲的是,它不像简单的URL插入那么简单 –