NDK开发 - 视频转码压缩

我们首先需要到ffempeg官网下载然后进行编译生成相关文件,我们会有以下几个文件

image.png

image.png

我们这时候会发现源文件中很多报错了,这是因为我们没有指定路径,和链接额外的 ffmpeg 的编译.so文件,修改CMakeList.txt文件

# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
#判断编译器类型,如果是gcc编译器,则在编译选项中加入c++11支持
if(CMAKE_COMPILER_IS_GNUCXX)
    set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
    message(STATUS "optional:-std=c++11")
endif(CMAKE_COMPILER_IS_GNUCXX)

#需要引入我们头文件,以这个配置的目录为基准
include_directories(src/main/jniLibs/include)
include_directories(src/main/jniLibs/other)

# 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.
#FFMpeg配置
#FFmpeg配置目录
set(distribution_DIR ${CMAKE_SOURCE_DIR}/../../../../src/main/jniLibs)

# 编解码(最重要的库)
add_library(
            avcodec
            SHARED
            IMPORTED)
set_target_properties(
            avcodec
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libavcodec-56.so)

# 设备信息
add_library(
            avdevice
            SHARED
            IMPORTED)
set_target_properties(
            avdevice
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libavdevice-56.so)


# 滤镜特效处理库
add_library(
            avfilter
            SHARED
            IMPORTED)
set_target_properties(
            avfilter
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libavfilter-5.so)

# 封装格式处理库
add_library(
            avformat
            SHARED
            IMPORTED)
set_target_properties(
            avformat
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libavformat-56.so)

# 工具库(大部分库都需要这个库的支持)
add_library(
            avutil
            SHARED
            IMPORTED)
set_target_properties(
            avutil
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libavutil-54.so)


# 后期处理
add_library(
            postproc
            SHARED
            IMPORTED)
set_target_properties(
            postproc
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libpostproc-53.so)


# 音频采样数据格式转换库
add_library(
            swresample
            SHARED
            IMPORTED)
set_target_properties(
            swresample
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libswresample-1.so)

# 视频像素数据格式转换
add_library(
            swscale
            SHARED
            IMPORTED)
set_target_properties(
            swscale
            PROPERTIES IMPORTED_LOCATION
            ../../../../src/main/jniLibs/armeabi/libswscale-3.so)

add_library( # Sets the name of the library.
             native-lib

             # Sets the library as a shared library.
             SHARED

             # Provides a relative path to your source file(s).
             src/main/cpp/native-lib.cpp
            # 编译额外的 C 文件
            src/main/cpp/ffmpeg_filter.c
            src/main/cpp/ffmpeg_mod.c
            src/main/cpp/ffmpeg_opt.c
            src/main/cpp/cmdutils.c
              )

# 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.
               # 链接额外的 ffmpeg 的编译,.so文件
              native-lib avcodec avdevice avfilter avformat avutil postproc swresample swscale

                       # Links the target library to the log library
                       # included in the NDK.
                       ${log-lib} )

build.gradle中需要添加这行代码

    defaultConfig {
        applicationId "com.peakmain.ndk"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags ""
                //只生成aremabi
                abiFilters "armeabi"
            }
        }
    }

注意:这里有些人在程序编译的时候会报ABIs [armeabi] are not supported for platform. Supported ABIs are [armeabi-v7a, arm64-v8a, x86, x86_64].的错误,解决办法NDK降级到v16 替换AS里NDK或者修改ndk-bundle路径即可,具体的大家可以看这个博客http://blog.51cto.com/4789781/2116935

添加依赖

 implementation 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.5@aar'
 implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'

VideoCompress视频压缩java类

public class VideoCompress {
    //加载so
    static {
        System.loadLibrary("native-lib");
        // 不需要全部 load 相当于 android 调用其他方法类型,不需要全部 load
    }
    // native ffmpeg 压缩视频
    public native void compressVideo(String[] compressCommand,CompressCallback callback);

    public interface CompressCallback{
        public void onCompress(int current,int total);
    }
}

MainActivity的使用

public class MainActivity extends AppCompatActivity {
    private File mInFile = new File(Environment.getExternalStorageDirectory()+"/视频/", "test.mp4");
    private File mOutFile = new File(Environment.getExternalStorageDirectory()+"/视频/", "out.mp4");

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Log.e("TAG",mInFile.exists()+"");
        TextView tv = (TextView) findViewById(R.id.sample_text);
        // ffmpeg -i test.mp4 -b:v 1024k out.mp4
        // -b:v 码率是什么? 码率越高视频越清晰,而且视频越大
        // 1M  1024K
        // test.mp4 需要压缩的视频路径
        // out.mp4 压缩后的路径


    }

    public void compressVideo(View view) {
        RxPermissions rxPermissions = new RxPermissions(this);
        rxPermissions.request(Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE)
                .subscribe(new Consumer<Boolean>() {
                    @Override
                    public void accept(Boolean aBoolean) throws Exception {
                        if (aBoolean) {
                            compressVideo();
                        }
                    }
                });
    }

    private void compressVideo() {
        String[] compressCommand = {"ffmpeg", "-i", mInFile.getAbsolutePath(), "-b:v", "1024k", mOutFile.getAbsolutePath()};

        Observable.just(compressCommand)
                .map(new Function<String[], File>() {
                    @Override
                    public File apply(String[] compressCommand) throws Exception {
                        // 压缩是耗时的,子线程,处理权限
                        VideoCompress videoCompress = new VideoCompress();
                        videoCompress.compressVideo(compressCommand, new VideoCompress.CompressCallback() {
                            @Override
                            public void onCompress(int current, int total) {
                                Log.e("TAG","压缩进度:"+current+"/"+total);
                            }
                        });
                        return mOutFile;
                    }
                }).subscribeOn(Schedulers.io())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(new Consumer<File>() {
                    @Override
                    public void accept(File file) throws Exception {
                        // 压缩完成
                        Log.e("TAG","压缩完成");
                    }
                });
    }
}

native-lib的代码实现

#include <jni.h>
#include <string>
#include <malloc.h>
#include <android/log.h>

#define TAG "JNI_TAG"
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,TAG,__VA_ARGS__)
extern "C" {
JNIEXPORT void JNICALL
Java_com_peakmain_ndk_VideoCompress_compressVideo(JNIEnv *env, jclass type,
                                                  jobjectArray
                                                  compressCommand, jobject callback);
// 声明方法(实现的方式就是基于命令,windows )
// argc 命令的个数
// char **argv 二维数组
int ffmpegmain(int argc, char **argv, void(call_back)(int, int));
}
static jobject call_back_jobj;
static JNIEnv *mEnv;
//回调函数
void call_back(int current, int total) {
    //LOGE("压缩进度:%d/%d",current,total);
    // 把进度回调出去 对象是 jobject callback
    if(call_back_jobj != NULL && mEnv != NULL){
        jclass j_clazz = mEnv->GetObjectClass(call_back_jobj);
        // javap 命令也能打印
        jmethodID j_mid = mEnv->GetMethodID(j_clazz,"onCompress","(II)V");
        mEnv->CallVoidMethod(call_back_jobj,j_mid,current,total);
    }
};


JNIEXPORT void JNICALL
Java_com_peakmain_ndk_VideoCompress_compressVideo(JNIEnv *env, jclass type,
                                                  jobjectArray compressCommand, jobject callback) {
    call_back_jobj = env->NewGlobalRef(callback);
    mEnv=env;
    //ffmpeg处理视频的压缩
    //aremabi这个里面的so都是用来处理音视频,include都是头文件
    //还有几个没有被打包编译成.so文件,因为这些不算是音视频的处理代码,只是我们现在支持命令(封装)
    //1.获取命令行的个数
    int argc = env->GetArrayLength(compressCommand);
    //2.给char **argv填充数据
    char **argv = (char **) malloc(sizeof(char *) * argc);
    for (int i = 0; i < argc; i++) {
        jstring j_params = (jstring) (env->GetObjectArrayElement(compressCommand, i));
        argv[i] = (char *) (env->GetStringUTFChars(j_params, NULL));
        LOGE("参数:%s", argv[i]);
    }
    //3.调用命令去压缩
    ffmpegmain(argc, argv, call_back);
    //4.释放内存
    for (int i = 0; i < argc; ++i) {
        free(argv[i]);
    }
    free(argv);
    env->DeleteGlobalRef(call_back_jobj);
}

注意:我们源码中是没有回调方法的,这时候我们需要修改下ffempeg_mode.c源码

int ffmpegmain(int argc, char **argv,void(call_back)(int,int))
{
if (transcode(call_back) < 0){   
     ffmpeg_cleanup(1);  return 1;}
}
static int transcode(void(call_back)(int,int)){
  print_report(0, timer_start, cur_time,call_back);
}
static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time,void(call_back)(int,int))
{
   // __android_log_print(ANDROID_LOG_ERROR,"TAG","当前帧:%d",frame_number);
            int total_frame_number = input_files[0]->ctx->streams[0]->nb_frames;
            call_back(frame_number,total_frame_number);
}

为了方便知道在哪里添加这行,我截了图


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

推荐阅读更多精彩内容