Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
lincollincol committed Mar 26, 2021
2 parents 9594cef + 0f578f6 commit 5183391
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ AudioTool - an android library that provides useful audio processing functions.
<li>generateWaveform(. . .) - generate image waveform (png)</li>
<li>getMaxLevelData(. . .) - retrive audio max level data (data can be used to draw waveform)</li>
<li>getDuration(. . .) - retrive audio duration</li>
<li>executeFFmpeg(. . .) - execute ffmpeg command</li>
<li>executeFFprobe(. . .) - execute ffprobe command</li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -110,6 +108,8 @@ AudioTool.getInstance(this)
/* calls */
.release(); // Always call this function
```
# FFmpeg
When you add AudioTool to your project, you also should implement <a href="https://github.com/tanersener/mobile-ffmpeg">tanersener mobile-ffmpeg library</a> which provides you full access to ffmpeg funcitons!

# Download
## Gradle
Expand All @@ -122,7 +122,8 @@ allprojects {
```
``` groovy
dependencies {
implementation 'com.github.lincollincol:AudioTool:1.1'
implementation 'com.github.lincollincol:AudioTool:1.2'
implementation 'com.arthenica:mobile-ffmpeg-full:4.3.1.LTS'
}
```

Expand All @@ -139,7 +140,7 @@ dependencies {
<dependency>
<groupId>com.github.lincollincol</groupId>
<artifactId>AudioTool</artifactId>
<version>1.1</version>
<version>1.2</version>
</dependency>
```
## Permissions
Expand Down

0 comments on commit 5183391

Please sign in to comment.