使用librtmp为android构建FFMPEG

时间:2012-03-09 13:02:28

标签: android configuration android-ndk ffmpeg rtmp

我正在尝试使用NDK r7b构建FFMPEG的一体化静态二进制文件,一切正常,直到我尝试使用RTMP支持构建它。

我是https://github.com/guardianproject/android-ffmpeg使用librtmp2.4和自定义配置的来源

.configure \
--target-os=linux \
--cross-prefix=arm-linux-androideabi- \
--arch=arm \
--sysroot=/home/andrey/android-ndk-r7b/platforms/android-3/arch-arm \
--enable-static \
--disable-shared \
--disable-symver \
--enable-small \
--disable-devices \
--disable-avdevice \
--enable-gpl \
--enable-librtmp \
--prefix=../build/ffmpeg/armeabi \
--extra-cflags=-I../rtmpdump/librtmp \
--extra-ldflags=-L../rtmpdump/librtmp \

和rtmpdump目录与ffmpeg位于同一级别。 据我所知,我的配置中的最后两个字符串说明编译器可能找到librtmp的来源。 但我得到的只是ERROR: librtmp not found

我没有接受过NDK,而且我很遗憾地错过了一些重要的部分,但我自己却找不到它。

1 个答案:

答案 0 :(得分:10)

这很有挑战性,但我认为我有一个解决方案。配置时的问题是FFmpeg想要通过pkg-config管理系统检测正确的librtmp安装。

我假设你已经成功地在../rtmpdump引用的目录中交叉编译了librtmp。编辑FFmpeg配置脚本并搜索以下行:

enabled librtmp    && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket

注释掉(在行的前面加上'#')。现在,重新运行configure,只进行以下修改:

--extra-cflags="-I/full/path/to/rtmpdump"

这里有一条绝对路径可能会有所帮助。另外,最后省略/ librtmp /,因为#include指令已经使用librtmp /前缀头文件。下一个:

--extra-ldflags="-L/full/path/to/rtmpdump -lrtmp"

再次,绝对路径,并指定要链接的库,因为我们通过configure注释了该逻辑。

现在,配置应该成功,交叉编译也应该很开心。最终的ffmpeg二进制文件应该在协议下报告RTMP模块系列:

ffmpeg -protocols
[...]
rtmp
rtmpe
rtmps
rtmpt
rtmpte

请注意,我没有NDK开发环境来测试它。但我通过编译librtmp(没有通过pkg-config安装软件包)在我的桌面Ubuntu系统上测试,然后执行上述步骤。