@@ -23,7 +23,7 @@ This project uses FFmpeg version 4.2.2.
23
23
24
24
Key Features:
25
25
* ARMv7, x86, x86_64 and ARM_64 support (Note: ARM and MIPS aren't supported as of version 1.0.14)
26
- * Support for API 12 +
26
+ * Support for API 14 +
27
27
* URL support (Unlike MediaMetadataRetriever, see: http://code.google.com/p/android/issues/detail?id=35794 )
28
28
29
29
Supported protocols:
@@ -46,23 +46,23 @@ Using FMMR in your application (Android Studio)
46
46
Add the following maven dependency to your project's ` build.gradle ` file:
47
47
48
48
dependencies {
49
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.17 '
50
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native:1.0.17 '
49
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.18 '
50
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native:1.0.18 '
51
51
}
52
52
53
53
Optionally, to support individual ABIs:
54
54
55
55
dependencies {
56
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.17 '
57
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-armeabi-v7a:1.0.17 '
58
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-x86:1.0.17 '
59
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-x86_64:1.0.17 '
60
- implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-arm64-v8a:1.0.17 '
56
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.18 '
57
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-armeabi-v7a:1.0.18 '
58
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-x86:1.0.18 '
59
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-x86_64:1.0.18 '
60
+ implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native-arm64-v8a:1.0.18 '
61
61
}
62
62
63
63
or, if your application supports individual architectures extract the appropriate AAR file into you projects "libs" folder:
64
64
65
- [ Prebuilt AARs] ( https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.17 /prebuilt-aars.zip )
65
+ [ Prebuilt AARs] ( https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.18 /prebuilt-aars.zip )
66
66
67
67
Demo Application
68
68
------------
@@ -75,7 +75,7 @@ Installation
75
75
FFmpegMediaMetadataRetriever relies on FFmpeg and native code. The build process
76
76
is complex and may be confusing for those unfamiliar the Android NDK. For this
77
77
reason I've precompiled AARs created by the build process and checked them
78
- in [ here] ( https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.17 /prebuilt-aars.zip ) .
78
+ in [ here] ( https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.18 /prebuilt-aars.zip ) .
79
79
The modules are also included with the library. If you don't want to build the modules
80
80
you can simple unzip the prebuilt ones and copy them to your projects "libs" folder. (Note:
81
81
copy them to YOUR projects "libs" folder, NOT the "libs" folder located in
0 commit comments