使用 ffmpeg 解码 TCP 流

发布于 2024-11-30 16:13:27 字数 197 浏览 1 评论 0原文

我正在编写的 Android 应用程序中使用 Ffmpeg 库。我已经编写了打开本地文件并使用 avformat_open_input() 对其进行解码的代码。但是我需要使用 Ffmpeg 通过 TCP 读取视频流。我在 Ffmpeg 中发现了一些东西,例如 libavcodec/tcp.h,但我无法确定如何实际打开 TCP 流到解码器中。

任何建议将不胜感激。

I am using the Ffmpeg library in an Android application I am writing. I have written the code to open up a local file and decode that using avformat_open_input(). However I need to use Ffmpeg to read in a video stream over TCP. I have found a few things within Ffmpeg such as libavcodec/tcp.h but I can't establish how to actually open up a TCP stream into the decoder.

Any suggestions would be really appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

场罚期间 2024-12-07 16:13:27

如果您无法直接通过 ffmpeg api 连接,您可以在外部建立连接并将入站数据写入管道。 ffmpeg 库应该能够像普通文件一样从该管道中读取。

有关如何设置管道的信息,请参阅此讨论

If you are not able to connect directly through the ffmpeg api you might be able to set up a connection externally and write the inbound data to a pipe. The ffmpeg library should be able to read from this pipe as you would a normal file.

See this discussion regarding how to set up the pipe.

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