我最近几天在Ffmpeg上工作,但无法获得任何有价值的输出。之后,我遵循下面的教程:-
http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/
根据那个教程。完成后,您应该能够找到一个文件夹$NDK/sources/ffmpeg-2.0.1/android
,其中包含"arm/lib
"one_answers"arm/include
"文件夹。但我没有在$NDK/sources/ffmpeg-2.0.1/android
中得到构建输出。请大家帮帮我。
谢谢。
在浪费了我的2天之后,我已经成功地为下面的链接编译了这个
http://www.packtpub.com/sites/default/files/downloads/Developing_Multimedia_Applications_with_NDK.pdf在您的build_android.sh中,只需将。/configure命令行设置为一个长字符串,而不是将其分解。每个选项之间的空格会干扰解析器。
#!/bin/bash
NDK=/home/hwlab/android-ndk-r9d
SYSROOT=$NDK/platforms/android-19/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64
function build_one
{
./configure --prefix=$PREFIX --enable-shared --disable-static --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-avdevice --disable-doc --disable-symver --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- --target-os=linux --arch=arm --enable-cross-compile --sysroot=$SYSROOT --extra-cflags="-Os -fpic $ADDI_CFLAGS" --extra-ldflags="$ADDI_LDFLAGS" $ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_one