Skip to content Skip to sidebar Skip to footer

Ffmpeg Commands Isn't Working In Android Q

Try this command for merge two audio files, but its not working in Android 10.0(Q) while targeting sdk 29. But, this command is completely working on targeting sdk 24 to 28. I am u

Solution 1:

Now If You Guys Looking For FFMPEG for ANDROID Q Here is link use below FFMPEG Build. Include this to your app/build.gradle

Min SDK 24

  dependencies {
        implementation 'com.arthenica:mobile-ffmpeg-full:4.3'
    }

Min SDK 16

dependencies {
    implementation 'com.arthenica:mobile-ffmpeg-full:4.2.2.LTS'
}

tested in OnePlus 7TAndroid Q

Solution 2:

For this library is only support maximum sdk 28 see the below link:

https://github.com/bravobit/FFmpeg-Android/blob/master/android-ffmpeg/build.gradle

So,In this library not run in SDK 29 because the targetSdkVersion 28 and compileSdkVersion 28 . If you want to change this thing, it'll work for you. I hope it will help you..!

Post a Comment for "Ffmpeg Commands Isn't Working In Android Q"