在 Java 中使用 Xuggle 转码和流式传输视频/音频
我创建了一个 HTTP 流媒体服务器,但客户端无法播放所有视频格式,所以我的问题是,是否有一种方法,在服务器中使用 xuggle 以特定格式对视频进行转码并直接即时流式传输。
我的意思是,不必等待完成转码然后开始 http 流。我的意思是,我有一个循环,每次都会获取一些转码字节并将它们写入套接字。
I create an HTTP streaming server, but the clients can not play all video formats, so my question is, if there is a way, using xuggle in the server to transcode the video in a specific format and streaming it directly, on the fly.
I mean, not have to wait to finish the transcoding and then start the http streaming. I mean that I have a loop for example and get everytime a number of transcoded bytes and writes them to the socket.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但是......
我不建议采取这种方法。视频编码通常非常消耗 CPU 资源。解决这个问题的普遍接受的方法是将视频文件离线转码并存储在流媒体服务器上。是的,这意味着同一视频有几个不同的媒体文件,但它可以更好地缩放muuuuuuuuch。大多数(全部?)成功的流媒体服务器都是这样做的。
Yes, but...
I'd not recommend taking this approach. Encoding videos is generally very CPU intensive. The generally accepted aproach to solving this problem is to transcode the video file off-line and store on the streaming server. Yes, that means a couple of different media files with the same video, but it scales muuuuuuuuch better. Most (all?) successful streaming servers do it this way.