FFMpeg在Android中的应用(一)

一、准备工作(基于Mac电脑开发)

1、下载ffmpeg3.4.6版本,http://ffmpeg.org/releases/ffmpeg-3.4.6.tar.gz,解压到/Users/xxx/Downloads/FFMpeg
2、下载NDK,版本r15c,解压放入/Users/xxx/Downloads/NDK/android-ndk-r15c
注意:版本最好一致,不然可能很多坑,高手随意,可自行填坑

二、编译ffmpeg,得到android上能使用的动态库so文件

1、打开终端,进入ffmpeg根目录
2、终端输入:vim configure,然后直接输入:?build setting,可以直接找到需要修改的地方,默认ffmpeg编译出来的库文件是给linux使用的,
我们需要修改为android能使用的so后缀名,点击键盘上的i键切换为输入模式,改好后,输入:wq,回车保存
替换前

SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'

替换后

SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
LIB_INSTALL_EXTRA_CMD='$$(RANLIB)"$(LIBDIR)/$(LIBNAME)"'
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
SLIB_INSTALL_LINKS='$(SLIBNAME)'

3、编写脚本文件,可以自己新建一个文件,也可以使用命令行,终端进入ffmpeg根目录,输入
touch build_android_armv7.sh
然后
vim build_android_armv7.sh打开,
把下面的内容复制进去,保存,然后给可执行权限:
chmod 777 build_android_armv7.sh
最后执行./build_android_armv7.sh
回车等待最后编译完成
完成后会在ffmpeg根目录下生成android/armv7-a文件夹,include和lib就是我们所需要的

#!/bin/bash
rm -rf android/armv7-a
NDK=/Users/xxx/Downloads/NDK/android-ndk-r15c
NDK_VERSION=android-14
ARCH=arm
SYSROOT=$NDK/platforms/$NDK_VERSION/arch-$ARCH
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
CROSS_COMPILE=$TOOLCHAIN/bin/arm-linux-androideabi-
CPU=armv7-a
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-march=$CPU -mfloat-abi=softfp -mfpu=neon"
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--disable-symver \
--cross-prefix=$CROSS_COMPILE \
--target-os=android \
--arch=$ARCH \
--cpu=armv7-a \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
make clean
make -j8
make install
}
build_one

4、Android中的使用
1)打开AS,新建项目,把创建C++选项勾上,然后next到完成
2)把自动生成的main下面的cpp目录删除,新建jni目录(也可不删,我比较喜欢使用jni目录),同时新建jniLibs目录
3)把上面生成的include整个复制到jni目录下,把lib目录下的so文件复制到jniLibs/armeabi-v7a下
目录结构如下图


WX20191107-213501@2x.png

4)CMakeLists.txt文件的编写

#CMake最低版本要求
cmake_minimum_required(VERSION 3.4.1)

add_library( # Sets the name of the library.
        ffmpegutil

        #共享库
        SHARED

        # Provides a relative path to your source file(s).
        src/main/jni/ffmpegutil.c)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

#引入ffmepg的头文件
include_directories(${CMAKE_SOURCE_DIR}/src/main/jni/include)

add_library(avcodec
        SHARED #这个表明是动态库
        IMPORTED)
set_target_properties( avcodec
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavcodec.so)

add_library(avdevice SHARED IMPORTED)
set_target_properties( avdevice
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavdevice.so)

add_library(avformat SHARED IMPORTED)
set_target_properties( avformat
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavformat.so)

add_library(avfilter SHARED IMPORTED)
set_target_properties( avfilter
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavfilter.so )

add_library(avutil SHARED IMPORTED)
set_target_properties( avutil
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavutil.so )

add_library(swresample SHARED IMPORTED)
set_target_properties( swresample
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libswresample.so )

add_library(swscale SHARED IMPORTED)
set_target_properties( swscale
        PROPERTIES IMPORTED_LOCATION
        ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libswscale.so )
#


# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

find_library( # Sets the name of the path variable.
        log-lib

        # Specifies the name of the NDK library that
        # you want CMake to locate.
        log)

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

#链接
target_link_libraries( # Specifies the target library.
        ffmpegutil  #这里的名字要与add_library里面的名称一致
        avcodec
        avdevice
        avformat
        avfilter
        avutil
        swresample
        swscale
        # Links the target library to the log library
        # included in the NDK.
        ${log-lib}
        )

5、编写代码进行测试
1)新建一个FFMpegUtil类

public class FFMpegUtil {
    static {
        System.loadLibrary("avcodec");
        System.loadLibrary("avdevice");
        System.loadLibrary("avfilter");
        System.loadLibrary("avformat");
        System.loadLibrary("avutil");
        System.loadLibrary("swresample");
        System.loadLibrary("swscale");
        System.loadLibrary("ffmpegutil");
    }
  //获取视频文件的角度
    public static native int getRotation(String path);
}

2)这时候会看到方法getRotation为红色,鼠标点击该方法,按下快捷键alt+enter,AS会帮我们新建一个c文件,改名字为ffmpegutil.c,里面的内容如下:

JNIEXPORT jint JNICALL
Java_com_dh_ffmpegproject_utils_FFMpegUtil_getRotation(JNIEnv *env, jclass type, jstring path_) {
    const char *path = (*env)->GetStringUTFChars(env, path_, 0);

    // TODO

    (*env)->ReleaseStringUTFChars(env, path_, path);
}

3)然后我们加入获取视频角度的代码

JNIEXPORT jint JNICALL
Java_com_dh_ffmpegproject_utils_FFMpegUtil_getRotation(JNIEnv *env, jclass type, jstring path_) {
//    const char *path = (*env)->GetStringUTFChars(env, path_, 0);

//    avformat_network_init();
//    注册协议,确保所有的格式和编解码器都被注册到FFMpeg框架中
    av_register_all();
    int angle = -1;
//    jni-->c
    const char *filePath = (*env)->GetStringUTFChars(env, path_, NULL);
    //封装格式上下文
    AVFormatContext *avFormatContext = avformat_alloc_context();
    //打开
    if (avformat_open_input(&avFormatContext, filePath, NULL, NULL) != 0) {
        LOGE("%s", "无法打开视频文件");
        return -1;
    }
    //读取
    if (avformat_find_stream_info(avFormatContext, NULL) < 0) {
        LOGE("%s", "无法获取视频信息");
        return -1;
    }
    //寻找视频流
    //获取视频流的索引位置
    int v_stream_idx = -1;
    int a_stream_idx = -1;
    for (int i = 0; i < avFormatContext->nb_streams; ++i) {
        AVStream *stream = avFormatContext->streams[i];
        if (AVMEDIA_TYPE_VIDEO == stream->codecpar->codec_type) {
            //视频流
            v_stream_idx = i;
        } else if (AVMEDIA_TYPE_AUDIO == stream->codecpar->codec_type) {
            //音频流
            a_stream_idx = i;
        }
    }
    if (v_stream_idx == -1) {
        LOGE("%s", "没有找到视频流");
        return -1;
    }
    //获取视频的元数据
    const AVDictionaryEntry *tag = NULL;
    tag = av_dict_get(avFormatContext->streams[v_stream_idx]->metadata, "rotate", tag, 0);
    if (tag != NULL) {
        angle = atoi(tag->value);
    }
    return angle;
}

4)在MainActivity中调用

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        object : Thread() {
            override fun run() {
                val path = Environment.getExternalStorageDirectory().absolutePath + File.separator + "test.mp4"
                Log.d("dh", "path:$path")
                val rotation = FFMpegUtil.getRotation(path)
                Log.d("dh", "ratation:$rotation")
            }
        }.start()
    }
}

5)修改app目录下的build.gradle文件

android {
    defaultConfig {
        ...
        externalNativeBuild {
            cmake {
                cppFlags ""
            }
            ndk {
                abiFilters "armeabi-v7a"//, "x86"//, "arm64-v8a"
            }
        }
    }
}

6)运行项目查看结果

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容