2012-10-23 192 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插入那麼簡單 –