We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b8d92a commit 79937fbCopy full SHA for 79937fb
1 file changed
README.md
@@ -10,6 +10,24 @@ Supported Architecture
10
* armv7-neon
11
* x86
12
13
+## Adding Library to Project
14
+* TODO : I am still working to push this library to maven central repo
15
+* Download [AAR File](https://github.com/hiteshsondhi88/ffmpeg-android-java/releases/download/v0.1.0/FFmpegAndroid.aar)
16
+* Copy FFmpegAndroid.aar to app/libs
17
+* In your app/build.gradle add
18
+```groovy
19
+repositories {
20
+ flatDir {
21
+ dirs 'libs'
22
+ }
23
+}
24
+
25
+dependencies {
26
+ compile(name:'FFmpegAndroid', ext:'aar')
27
28
+```
29
+* Use the library
30
31
## Usage
32
33
### Load Binary
0 commit comments