Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Yang authored Aug 7, 2017
1 parent 80b5802 commit 3c5861c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,22 @@ epEditor.music(videoPath, audioPath, outfilePath, 1, 0.7, new OnEditorListener()
}
});
```
* 分离音视频
```Java
EpEditor epEditor = new EpEditor(this);
//参数分别是视频路径,输出路径,输出类型
epEditor.demuxer(videoPath, outfilePath,EpEditor.Format.MP3, new OnEditorListener() {
@Override
public void onSuccess() {

}

@Override
public void onFailure() {

}
});
```
## 多个视频处理&合并
* 合并视频
```Java
Expand Down

0 comments on commit 3c5861c

Please sign in to comment.