gpt4 book ai didi

java - Android AudioConverter 和 FFMPEG 错误 gradle 初始化

转载 作者:行者123 更新时间:2023-12-04 23:25:38 26 4
gpt4 key购买 nike

我正在尝试使用 Android AudioConverter (https://github.com/adrielcafe/AndroidAudioConverter) 将 .AAC 文件转换为 .WAV。问题是,当我尝试运行我的应用程序时,出现此错误:

Error:Execution failed for task ':app:transformNativeLibsWithMergeJniLibsForDebug'.
> More than one file was found with OS independent path 'lib/armeabi-v7a/libARM_ARCH.so'

这是我的gradle文件:
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.example.a49164.teachmi"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
maven {
url "https://jitpack.io"
}
flatDir {
dirs '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.4.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.volley:volley:1.0.0'
compile 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
compile(name:'FFmpegAndroid', ext:'aar')
}

如果我删除这一行:
    compile(name:'FFmpegAndroid', ext:'aar')

然后该应用程序无法工作,因为 Android AudioConverter 需要 ffmpeg 才能工作。我应该怎么办 ?谢谢。

最佳答案

好吧,最后我没有使用 ffpmeg,而是使用 audiorecorder 记录原始数据并从中创建一个 wav 文件。

关于java - Android AudioConverter 和 FFMPEG 错误 gradle 初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49352896/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com