我在"Eclipse"中使用了FFmpegMediaMetadataRetriever和fmmr.jar文件,它运行良好,但现在我已经在"Android Studio"中迁移了我的项目。我在build.gradle文件中使用了以下依赖项。
dependencies {
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.5'
}
但是我发现以下错误
03-30 16:07:10.030: E/AndroidRuntime(7763): java.lang.UnsatisfiedLinkError: dlopen failed: could not load library "libavutil.so.54" needed by "libswscale.so"; caused by library "libavutil.so.54" not found
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.Runtime.loadLibrary(Runtime.java:365)
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.System.loadLibrary(System.java:526)
03-30 16:07:10.030: E/AndroidRuntime(7763): at wseemann.media.FFmpegMediaMetadataRetriever.<clinit>(FFmpegMediaMetadataRetriever.java:124)
请建议我如何解决这个错误。
此问题已在1.0.9:版本中解决
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.9'