在 Java 中使用 Xuggle 转码和流式传输视频/音频

发布于 2024-10-17 23:34:14 字数 164 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月竹挽风 2024-10-24 23:34:14

是的,但是......

我不建议采取这种方法。视频编码通常非常消耗 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文