Skip to content

Commit 5183391

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 9594cef + 0f578f6 commit 5183391

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ AudioTool - an android library that provides useful audio processing functions.
4848
<li>generateWaveform(. . .) - generate image waveform (png)</li>
4949
<li>getMaxLevelData(. . .) - retrive audio max level data (data can be used to draw waveform)</li>
5050
<li>getDuration(. . .) - retrive audio duration</li>
51-
<li>executeFFmpeg(. . .) - execute ffmpeg command</li>
52-
<li>executeFFprobe(. . .) - execute ffprobe command</li>
5351
</ul>
5452
</li>
5553
</ul>
@@ -110,6 +108,8 @@ AudioTool.getInstance(this)
110108
/* calls */
111109
.release(); // Always call this function
112110
```
111+
# FFmpeg
112+
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!
113113

114114
# Download
115115
## Gradle
@@ -122,7 +122,8 @@ allprojects {
122122
```
123123
``` groovy
124124
dependencies {
125-
implementation 'com.github.lincollincol:AudioTool:1.1'
125+
implementation 'com.github.lincollincol:AudioTool:1.2'
126+
implementation 'com.arthenica:mobile-ffmpeg-full:4.3.1.LTS'
126127
}
127128
```
128129

@@ -139,7 +140,7 @@ dependencies {
139140
<dependency>
140141
<groupId>com.github.lincollincol</groupId>
141142
<artifactId>AudioTool</artifactId>
142-
<version>1.1</version>
143+
<version>1.2</version>
143144
</dependency>
144145
```
145146
## Permissions

0 commit comments

Comments
 (0)