[安卓/flutter]给Media3.exoplayer编译扩展ffmpeg解码器

/ 1,651评论 / 11685阅读 / 2点赞

前言

引用文档

准备

配置NDK 、cmdtools、SDKManager

cd {你想放NDK的目录}
wget {官网复制Linux版的下载链接}
unzip {刚刚下载的zip文件}
cd {cmdline-tools目录}/bin
sudo ./sdkmanager --licenses --sdk_root={你的NDK的根目录}

编译ffmpge

NDK_PATH="$(pwd)"
cd {你想放Media3.decoder_ffmpeg的目录}
git clone https://github.com/androidx/media --depth 1
cd media
FFMPEG_MODULE_PATH="$(pwd)/libraries/decoder_ffmpeg/src/main"
Lunux执行:
HOST_PLATFORM="linux-x86_64"

MacOX执行:
HOST_PLATFORM="darwin-x86_64"
ANDROID_ABI=21
cd {你想放ffmpge源码的目录}
git clone git://source.ffmpeg.org/ffmpeg && \ cd ffmpeg && \ git checkout release/6.0 && \ FFMPEG_PATH="$(pwd)"
ENABLED_DECODERS=(vorbis opus flac alac pcm_mulaw pcm_alaw mp3 amrnb amrwb aac ac3 eac3 dca mlp truehd)
cd "${FFMPEG_MODULE_PATH}/jni"
ln -s "$FFMPEG_PATH" ffmpeg
./build_ffmpeg.sh \ "${FFMPEG_MODULE_PATH}" "${NDK_PATH}" "${HOST_PLATFORM}" "${ANDROID_ABI}" "${ENABLED_DECODERS[@]}"
cd {开头放Media3.decoder_ffmpeg的目录}
./gradlew lib-decoder-ffmpeg:assembleRelease

项目引入ffmpge的aar包


dependencies {
    implementation(fileTree('libs'))
}
import java.util.zip.ZipEntry
import java.util.zip.ZipFile

// 把aar拷贝进入主项目的方法 com.example.android_control换成你自己的插件包名
// * 只修改下面这一行的参数就可以了
copyAar2Host('com.example.android_control')

// 拷贝aar的方法
static aarFileCopy(String srcPath,String desPath) {
    System.out.println("copy aar from <<${srcPath}>> to <<${desPath}>>")
    try {
        FileInputStream fis = new FileInputStream(srcPath)
        FileOutputStream fos = new FileOutputStream(desPath)
        byte[] data = new byte[1024*8]
        int len = 0
        while ((len = fis.read(data))!=-1) {
            fos.write(data,0,len)
        }
        fis.close()
        fos.close()
    }catch(Exception e) {
        e.printStackTrace()
    }
}

void copyAar2Host(String pluginGroup) {
    Project currentProject = null
    Project appProject = null
    rootProject.allprojects.each {
        p->
            boolean  isApp = p.plugins.hasPlugin("com.android.application")
            println("<<${p.name}>> isHost ? ${isApp}")
            if (p.group == pluginGroup) {
                currentProject = p
                println("Plugin project name is $currentProject")
            }
            if(isApp) {
                appProject = p
                println("Host project name is <<${p.name}>>")
            }
    }
    Set<File> aarFiles = new HashSet<File>()
    if (appProject != null && currentProject != null) {
        File libs = new File("${currentProject.projectDir}","libs")
        if(libs.isDirectory()) {
            libs.listFiles().each {
                f->
                    if(f.name.endsWith(".aar")) {
                        println("The aar file name to be copied is <<${f.name}>>")
                        aarFiles.add(f)
                    }

            }
        }
        if (!aarFiles.isEmpty()) {
            File applibs = new File("${appProject.projectDir}${File.separator}libs")
            if(!applibs.isDirectory()) {
                applibs.mkdirs()
            }
            aarFiles.each {
                f->
                    File copyAar = new File("${appProject.projectDir}${File.separator}libs",f.name)
                    if(!copyAar.exists()) {
                        copyAar.createNewFile()
                        aarFileCopy(f.path,copyAar.path)
                    } else {

                    }
            }
            appProject.dependencies {
                implementation fileTree(dir:"${appProject.projectDir}${File.separator}libs",include:["*.jar","*.aar"])
            }
        }
    }
}

repositories{
    flatDir {
        dirs 'libs'
    }
}
apply plugin: 'com.android.library'
// 在这里插入下面这一行
apply from: './aar_tools.gradle'

// 然后找到dependencies块,
dependencies {
    // 这一行导入刚刚libs目录内的ffmpge的arr包

    compileOnly(fileTree("libs"))
    // 这里用于解决用android studio打开项目的android目录时里面的java/kotlin文件的import都是灰色的问题
    compileOnly files("$flutterRoot/bin/cache/artifacts/engine/android-arm/flutter.jar")
    compileOnly("androidx.annotation:annotation:1.3.0")
}

在代码里引入ffmpeg


import androidx.media3.decoder.ffmpeg.FfmpegAudioRenderer;

class FfmpegRenderersFactory extends DefaultRenderersFactory {
    public FfmpegRenderersFactory(Context context) {
        super(context);
        setExtensionRendererMode(DefaultRenderersFactory.EXTENSION_RENDERER_MODE_ON);
    }

    @Override
    protected void buildAudioRenderers(Context context, int extensionRendererMode, MediaCodecSelector mediaCodecSelector, boolean enableDecoderFallback, AudioSink audioSink, Handler eventHandler, AudioRendererEventListener eventListener, ArrayList<Renderer> out) {
        out.add(new FfmpegAudioRenderer(eventHandler, eventListener, audioSink));
        super.buildAudioRenderers(context, extensionRendererMode, mediaCodecSelector, enableDecoderFallback, audioSink, eventHandler, eventListener, out);
    }
}

ExoPlayer.Builder builder = new ExoPlayer.Builder(context);
// 添加ffmpeg

builder.setRenderersFactory(new FfmpegRenderersFactory(context));
ExoPlayer player = builder.build();
  1. Arnoldscava说道:

    buying prescription drugs in mexico online pharmacies in mexico that ship to usa buying prescription drugs in mexico online

  2. Arnoldscava说道:

    mexico drug stores pharmacies mexican border pharmacies shipping to usa purple pharmacy mexico price list

  3. Waynetar说道:

    п»їbest mexican online pharmacies: mexican mail order pharmacies – mexico drug stores pharmacies

  4. Waynetar说道:

    mexican drugstore online: п»їbest mexican online pharmacies – medicine in mexico pharmacies

  5. DominicHOr说道:

    medication from mexico pharmacy: buying prescription drugs in mexico – mexican border pharmacies shipping to usa

  6. DominicHOr说道:

    mexico drug stores pharmacies: pharmacies in mexico that ship to usa – mexico pharmacies prescription drugs

  7. Arnoldscava说道:

    purple pharmacy mexico price list buying prescription drugs in mexico buying from online mexican pharmacy

  8. NelsonSaIlk说道:

    п»їbest mexican online pharmacies: п»їbest mexican online pharmacies – mexican mail order pharmacies

  9. NelsonSaIlk说道:

    mexican online pharmacies prescription drugs: medicine in mexico pharmacies – purple pharmacy mexico price list

  10. Arnoldscava说道:

    reputable mexican pharmacies online mexican online pharmacies prescription drugs buying prescription drugs in mexico online

  11. Waynetar说道:

    pharmacies in mexico that ship to usa: purple pharmacy mexico price list – mexico drug stores pharmacies

  12. DominicHOr说道:

    best online pharmacies in mexico: п»їbest mexican online pharmacies – reputable mexican pharmacies online

  13. Waynetar说道:

    mexican border pharmacies shipping to usa: mexican pharmaceuticals online – mexican pharmaceuticals online

  14. DominicHOr说道:

    mexico pharmacies prescription drugs: medicine in mexico pharmacies – mexican drugstore online

  15. temp mail space说道:

    Temp Mail I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  16. NelsonSaIlk说道:

    buying prescription drugs in mexico online: mexican online pharmacies prescription drugs – mexican border pharmacies shipping to usa

  17. NelsonSaIlk说道:

    buying from online mexican pharmacy: п»їbest mexican online pharmacies – mexican border pharmacies shipping to usa

  18. Arnoldscava说道:

    mexico pharmacy mexico pharmacy mexican online pharmacies prescription drugs

  19. Arnoldscava说道:

    buying prescription drugs in mexico mexican drugstore online buying prescription drugs in mexico online

  20. Waynetar说道:

    mexican rx online: mexican pharmaceuticals online – mexican drugstore online

  21. DominicHOr说道:

    reputable mexican pharmacies online: mexican drugstore online – medication from mexico pharmacy

  22. Waynetar说道:

    best online pharmacies in mexico: mexican border pharmacies shipping to usa – buying prescription drugs in mexico

  23. DominicHOr说道:

    mexican online pharmacies prescription drugs: mexican mail order pharmacies – best online pharmacies in mexico

  24. Arnoldscava说道:

    buying from online mexican pharmacy reputable mexican pharmacies online buying prescription drugs in mexico

  25. NelsonSaIlk说道:

    buying from online mexican pharmacy: mexican online pharmacies prescription drugs – mexican online pharmacies prescription drugs

  26. NelsonSaIlk说道:

    mexican mail order pharmacies: п»їbest mexican online pharmacies – mexican rx online

  27. Arnoldscava说道:

    п»їbest mexican online pharmacies mexican pharmacy п»їbest mexican online pharmacies

  28. DominicHOr说道:

    reputable mexican pharmacies online: medicine in mexico pharmacies – п»їbest mexican online pharmacies

  29. Waynetar说道:

    mexico drug stores pharmacies: purple pharmacy mexico price list – pharmacies in mexico that ship to usa

  30. DominicHOr说道:

    buying from online mexican pharmacy: pharmacies in mexico that ship to usa – buying from online mexican pharmacy

  31. NelsonSaIlk说道:

    best online pharmacies in mexico: purple pharmacy mexico price list – mexico drug stores pharmacies

  32. NelsonSaIlk说道:

    mexican online pharmacies prescription drugs: medication from mexico pharmacy – mexico drug stores pharmacies

  33. Arnoldscava说道:

    medicine in mexico pharmacies mexican pharmacy purple pharmacy mexico price list

  34. Arnoldscava说道:

    mexican pharmaceuticals online mexico drug stores pharmacies mexico pharmacies prescription drugs

  35. Waynetar说道:

    mexican border pharmacies shipping to usa: best online pharmacies in mexico – best online pharmacies in mexico

  36. DominicHOr说道:

    medicine in mexico pharmacies: mexican online pharmacies prescription drugs – mexican pharmaceuticals online

  37. Waynetar说道:

    best online pharmacies in mexico: mexico pharmacies prescription drugs – best online pharmacies in mexico

  38. DominicHOr说道:

    pharmacies in mexico that ship to usa: reputable mexican pharmacies online – buying prescription drugs in mexico online

  39. Arnoldscava说道:

    mexican border pharmacies shipping to usa medication from mexico pharmacy mexican online pharmacies prescription drugs

  40. Your blog is a constant source of inspiration for me. Your passion for your subject matter shines through in every post, and it’s clear that you genuinely care about making a positive impact on your readers.

  41. NelsonSaIlk说道:

    best online pharmacies in mexico: mexican border pharmacies shipping to usa – buying prescription drugs in mexico

  42. NelsonSaIlk说道:

    medication from mexico pharmacy: purple pharmacy mexico price list – mexico pharmacies prescription drugs

  43. Arnoldscava说道:

    mexico pharmacy best online pharmacies in mexico reputable mexican pharmacies online

  44. RichardMonge说道:

    https://mexicandeliverypharma.com/# buying prescription drugs in mexico

  45. DominicHOr说道:

    mexican mail order pharmacies: pharmacies in mexico that ship to usa – best online pharmacies in mexico

  46. DominicHOr说道:

    mexico pharmacies prescription drugs: medicine in mexico pharmacies – mexican mail order pharmacies

  47. NelsonSaIlk说道:

    buying prescription drugs in mexico: mexican border pharmacies shipping to usa – buying from online mexican pharmacy

  48. NelsonSaIlk说道:

    mexican drugstore online: mexican online pharmacies prescription drugs – mexican drugstore online

  49. magzineusa说道:

    Hi i think that i saw you visited my web site thus i came to Return the favore I am attempting to find things to improve my web siteI suppose its ok to use some of your ideas

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注