Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Yang authored Jun 13, 2017
1 parent becedbd commit 2cef025
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,22 @@ epEditor.merge(epVideos, outputOption, new OnEditorListener() {
}
});
```
* 无损合并视频(对视频格式严格,需要分辨率,帧率,码率都相同)
```Java
ArrayList<EpVideo> epVideos = new ArrayList<>();
epVideos.add(new EpVideo(url));//视频1
epVideos.add(new EpVideo(url2));//视频2
epVideos.add(new EpVideo(url3));//视频3
EpEditor epEditor = new EpEditor(this);
epEditor.mergeByLc(epVideos, new EpEditor.OutputOption(outFile), new OnEditorListener() {
@Override
public void onSuccess() {

}

@Override
public void onFailure() {

}
});
```

0 comments on commit 2cef025

Please sign in to comment.