使用 ijkplayer 播放MP4视频黑屏

编译环境 mac ox

问题

我在测试的时候有部分 MP4 的视频播放时只有声音没有画面。

查找原因

https://github.com/bilibili/ijkplayer/issues/2541

上面找到说添加这个 add -enable-decoder=mpeg4

ijkplayer 官方的依赖库只为了展示,满足基本需求,所以并不是所有格式都支持的

dependencies {
    # required, enough for most devices.
    compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'
    compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.8'

    # Other ABIs: optional
    compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.8'
    compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.8'
    compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.8'
    compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.8'

    # ExoPlayer as IMediaPlayer: optional, experimental
    compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.8'
}

具体可以看 config/module-lite.sh 里面可以配置支持的格式,config/module.sh 是相对全一点的配置。

问题找到了,解决方法修改配置module-lite.sh ,重新生成 so 库。

重新编译 ijkplayer 步骤

安装软件homebrew、git、yasm

安装 homebrew
ruby -e "$(curl-fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)"

安装 git 和 yasm

brew install git
brew install yasm
环境配置

下载 ndk r10e (注意下这个版本,我开始由于下载最新版本编译无法通过)

ndk 环境变量配置

  1. open -e .bash_profile

    打开环境

  2. 添加环境
    export PATH=$PATH:你的ndk路径

    ANDROID_NDK=你的ndk路径

    export ANDROID_NDK

  3. source .bash_profie
    保存环境

编译源码

下载源码
  1. git clone [email protected]:bilibili/ijkplayer.git
  2. git checkout -B latest k0.8.8 {0.8.8 对应最新的版本号}
  3. 将 config/module.sh 里面的内容复制替换到 config/module-lite.sh
    保证 module-lite 有export COMMON_FF_CFG_FLAGS="$COMMON_FF_CFG_FLAGS --enable-decoder=mpeg4"
初始化
./init-android.sh
编译
cd android/contrib
./compile-ffmpeg.sh clean
./compile-ffmpeg.sh all
编译ijkplayer
cd ..
./compile-ijk.sh all

到这就操作完了,看ijkplayer/android/… 这里面的文件就是编译生成的文件

导入项目中

导入项目我们只需要把 so 文件拷贝进去就行

image.png

app 的 build.gradle 配置,看中文相关的部分进行配置即可

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.qinlei.myapplication"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        ndk {
            //过滤你不需要的 abi
            abiFilters /*"armeabi",*/ "armeabi-v7a"/*, 'x86_64'*/
//            , "arm64-v8a", "x86", 'mips', 'mips64'
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    //需要添加的配置,帮助编译器查找 so 文件
    sourceSets {
        main {
            jniLibs.srcDir 'libs'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8'
    testCompile 'junit:junit:4.12'

    //这个依然引用官方的依赖,我们只需提供 so 即可
    compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'
        //可选的如果使用到了
    compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.8'
}

如有问题,欢迎交流

参考

如何编译ijkplayer

你可能感兴趣的:(使用 ijkplayer 播放MP4视频黑屏)