如何在ffmpeg中使用librtmp?

时间:2012-12-11 08:52:29

标签: ios ffmpeg rtmp

我找到了一个可以使用ffmpeg流式传输rtmp protocal的lib,然后用--enable-librtmp编译了ffmpeg。但下一步将会是什么?我找不到使用此功能的任何示例?

1 个答案:

答案 0 :(得分:4)

现在您可以通过抽象的ffmpeg界面打开rtmp URL:

AVFormatContext *s = NULL;
int ret = avformat_open_input(&s, "rtmp://server[:port][/app][/playpath][ keyword=value]...", NULL, NULL);