使用 ffmpeg 解码 TCP 流
我正在编写的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您无法直接通过 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.