Skip to content

Commit 7265660

Browse files
committed
Merge remote-tracking branch 'origin/master' into master
2 parents c4e009a + 40841b7 commit 7265660

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,22 @@ AudioTool.getInstance(this)
9595
.saveCurrentTo("/storage/emulated/0/Music/NewAudio.mp3") // Audio file with echo and without vocal
9696
.release();
9797
```
98+
#### If don't need result from callbacks, you can pass null as a parameter
99+
``` java
100+
AudioTool.getInstance(this)
101+
.withAudio(new File("/storage/emulated/0/Music/Linc - AudioTool.mp3"))
102+
.removeVocal(null) // It's ok.
103+
.saveCurrentTo("/storage/emulated/0/Music/Instrumental.mp3") // Save audio without vocal to local file
104+
.release();
105+
```
98106
#### Also, don't forget to call release() function when you finish work with AudioTool. The function remove buffer files from storage and clear other resources.
99107
``` java
100108
AudioTool.getInstance(this)
101109
.withAudio(new File("/storage/emulated/0/Music/Linc - AudioTool.mp3"))
102110
/* calls */
103111
.release(); // Always call this function
104112
```
113+
105114
# Download
106115
## Gradle
107116
``` groovy

0 commit comments

Comments
 (0)