流媒体视频、云服务器和 videojs
我有兴趣使用 videojs 设置流媒体视频服务器(可能在云端服务器上)。我知道 Flash 视频可以进行流式传输,但是,是否可以使用 videojs 和不同的编解码器来流式传输视频? (如 h246)。我尝试浏览 videojs 文档和论坛,但没有找到任何其他信息。
I'm interested in setting up a streaming video server (perhaps on a cloudfront server) with videojs. I understand that flash video can be streamed, however, is it possible to stream video using videojs and a different codec? (like h246). I tried looking through the videojs documentation and forums but did not find any additional info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Video.js 对 Flash 中的 RTMP 流式传输的支持有限,但希望在接下来的几个月中提供更多支持。
HTTP Live Streaming (HLS) 是 HTML5(iOS、Safari、最新 Android)最受支持的流媒体格式。 Video.js 可以在原生支持 HLS 的设备上支持该功能。
Video.js has limited support for RTMP streaming in Flash, but hopefully more in the next few months.
HTTP Live Streaming (HLS) is the most supported streaming format for HTML5 (iOS, Safari, latest Android). Video.js can support that on the devices that support HLS natively.
我认为您必须即时转码 h264 文件才能获得您想要的效果。 Subsonic 是一个程序,它将读取您的文件结构,在 WebUI 中显示您的视频和音乐,对音频/视频进行转码并进行流式传输 - 但它使用 jwplayer,而不是 videojs。
然而,它是开源的,所以如果你想尝试修改它,我相信这是可能的。
I think you would have to transcode the h264 file on the fly to get the effect you want. Subsonic is a program which will read your file structure, display your videos and music in a webui, transcode the audio/video and stream it--but it uses jwplayer, not videojs.
However, it is opensource, so if you want to try to modify that, I'm sure it would be possible.