2

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

4

1 回答 1

4

现在您可以通过抽象 ffmpeg 接口打开 rtmp URL:

AVFormatContext *s = NULL;
int ret = avformat_open_input(&s, "rtmp://server[:port][/app][/playpath][ keyword=value]...", NULL, NULL);
于 2012-12-11T09:04:06.057 回答