Bilibili/ijkplayer 编译解析

Bilibili ijkplayer 编译出so文件。花费了我2天的时间不断的研究,得出结果

我用的mac电脑,所以blablabla...

1.准备

       下载ijkPlayer源码,下载地址:https://github.com/Bilibili/ijkplayer
 编译之前 首先查看一下是否安装了NDK,没有的请自行安装,下载地址:
  https://developer.android.com/ndk/downloads/index.html?hl=zh-cn
 编译需要的 NDK 最小版本支持 10e,另外作者貌似还没有对NDK15支持  所以 最好是 14e
 安装NDK之后,要记得在.bash_profile配置 
 export ANDROID_SDK="SDK路径"  
 export ANDROID_NDK="NDK路径" 
    (使用open .bash_profile 打开 配置文件)

2.安装前需要准备的工具

            homebrew   git 和yasm
            可自行百度 mac 如何安装 homebrew

3.配置文件(终端进入ijkPlayer工程根目录)

 有三种文件可供选择

       • If you prefer more codec/format 
              cd config
              rm module.sh
              ln -s module-default.sh module.sh

      • If you prefer less codec/format for smaller binary size (include hevc function)
              cd config
              rm module.sh
              ln -s module-lite-hevc.sh module.sh
      
      • If you prefer less codec/format for smaller binary size (by default) 
              cd config
              rm module.sh
              ln -s module-lite.sh module.sh

本来想使用第一种配置文件,支持的类型还多一些,但打出来的so文件11M多,太大了,最后选择了第三种配置文件,打出来so 4M左右.

4.初始化openssl、ffmpeg(根目录)

              ./init-android.sh
            按照 github的步骤走

5.编译

      切换到android/contrib目录下(cd android/contrib),执行如下命令 编译so文件
                  ./compile-ffmpeg.sh clean
                  ./compile-ffmpeg.sh all

      其中all 代表所有平台,如果只想编译指定的平台,比如编译armv5 ,则将all改为armv5 (本人使用的是armv7a)

6.生成 so文件
切换到android目录下(cd ..),执行如下命令 生成so文件

       ./compile-ijk.sh all
        上面使用的是armv7a,这里的all 也要使用 armv7a

生成的so文件在android /ijkplayer /ijkplayer-armv7a/src/main/libs 里面

  1. 遇到的问题

    1、android NDK = 空
       你需要打开你的.bash_profile 配置文件 
       cd ~ 进入根目录 在 open .bash_profile 命令打开。设置你的 ndk路径,最好从google上下载 14e。目前的16 不支持,15 没试过。
    
    2、IJK_NDK_REL=空
         打开 do-detect-env.sh 文件  添加 IJK_NDK_REL增加 14*
         简单看一下code 可以找到,详情看github中的issue
    
    3、ERROR: Failed to create toolchain
         有些code比较老了,版本不支持,所以本人当时退回到使用            
         ndk14e。并且只生成了armv7a的so文件
    

编译之后的demo地址链接 :https://github.com/bushe-coffee/dkplayer
此链接是具体的使用的例子。学习的话可以看看。

你可能感兴趣的:(Bilibili/ijkplayer 编译解析)