Skip to content

Commit f2060c6

Browse files
committed
v1.0.13
1 parent 6c3be9d commit f2060c6

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Overview
2020
FFmpegMediaMetadataRetriever is a reimplementation of Android's MediaMetadataRetriever class. The FFmpegMediaMetadataRetriever class provides a unified interface for retrieving frame and meta data from an input media file and uses FFmpeg as its backend.
2121

2222
Key Features:
23-
* ARM, ARMv7, x86, x86_64 and MIPS support
23+
* ARM, ARMv7, x86, x86_64, MIPS and ARM_64 support
2424
* Support for API 12+
2525
* URL support (Unlike MediaMetadataRetriever, see: http://code.google.com/p/android/issues/detail?id=35794)
2626

@@ -39,12 +39,12 @@ Using FMMR in your application (Android Studio)
3939
Add the following maven dependency to your project's `build.gradle` file:
4040

4141
dependencies {
42-
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.12'
42+
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.13'
4343
}
4444

4545
or, if your application supports individual architectures extract the appropriate AAR file into you projects "libs" folder:
4646

47-
[Prebuilt AARs] (https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.12/prebuilt-aars.zip)
47+
[Prebuilt AARs] (https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.13/prebuilt-aars.zip)
4848

4949
(with HTTPS support)
5050

@@ -61,7 +61,7 @@ Installation
6161
FFmpegMediaMetadataRetriever relies on FFmpeg and native code. The build process
6262
is complex and may be confusing for those unfamiliar the Android NDK. For this
6363
reason I've precompiled AARs created by the build process and checked them
64-
in [here] (https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.11/prebuilt-aars.zip).
64+
in [here] (https://github.com/wseemann/FFmpegMediaMetadataRetriever/releases/download/v1.0.13/prebuilt-aars.zip).
6565
The modules are also included with the library. If you don't want to build the modules
6666
you can simple unzip the prebuilt ones and copy them to your projects "libs" folder. (Note:
6767
copy them to YOUR projects "libs" folder, NOT the "libs" folder located in

gradle/fmmr-library/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
POM_NAME=FFmpegMediaMetadataRetriever
2121
POM_ARTIFACT_ID=FFmpegMediaMetadataRetriever
2222
POM_PACKAGING=aar
23-
VERSION_NAME=1.0.12
24-
VERSION_CODE=13
23+
VERSION_NAME=1.0.13
24+
VERSION_CODE=14
2525
GROUP=com.github.wseemann
2626

2727
POM_DESCRIPTION=FFmpegMediaMetadataRetriever library
@@ -42,5 +42,5 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots
4242
RELEASE_REPOSITORY_URL=https://oss.sonatype.org/service/local/staging/deploy/maven2
4343

4444
signing.keyId=94F92DAB
45-
signing.password=Xxxxxxx55
45+
signing.password=Xxxxxxxx55
4646
signing.secretKeyRingFile=/Users/wseemann/.gnupg/secring.gpg

gradle/fmmr-library/library/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
android {
44
android.packageBuildConfig = false
55

6-
compileSdkVersion 23
6+
compileSdkVersion 25
77
buildToolsVersion "21.1.2"
88

99
def mkfile = "NDK_APPLICATION_MK=Application.mk"
@@ -29,10 +29,11 @@ android {
2929

3030
defaultConfig {
3131
minSdkVersion 12
32-
targetSdkVersion 23
33-
versionCode 13
34-
versionName "1.0.12"
32+
targetSdkVersion 25
33+
versionCode 14
34+
versionName "1.0.13"
3535
}
36+
3637
buildTypes {
3738
release {
3839
//minifyEnabled false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# build with android-ndk-r9
22

3-
APP_ABI := arm64
3+
APP_ABI := arm64-v8a

0 commit comments

Comments
 (0)