提交 ade19d63 编写于 作者: S shuyu

prepare 7.1.0

上级 7d012040
......@@ -45,24 +45,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer:7.1.0'
```
#### B、添加java和你想要的so支持:
```
implementation 'com.shuyu:gsyVideoPlayer-java:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.0'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.1.0'
```
......@@ -72,13 +72,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
implementation 'com.shuyu:gsyVideoPlayer-java:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.0'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.1.0'
```
......
......@@ -10,24 +10,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer:7.1.0'
```
#### B、添加java和你想要的so支持:
```
implementation 'com.shuyu:gsyVideoPlayer-java:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.0'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.1.0'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.1.0'
```
......@@ -37,13 +37,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
implementation 'com.shuyu:gsyVideoPlayer-java:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.0.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.0'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.0.2'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.1.0'
```
......
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 7.1.0(2019-09-01)
* update ExoPlayer to 2.10.4
* 添加沉浸式支持
* 增加 IPlayerInitSuccessListener 播放器初始化成果回调
```
GSYVideoManager
.instance()
.setPlayerInitSuccessListener(new IPlayerInitSuccessListener() {
///播放器初始化成果回调,可用于播放前的自定义设置
@Override
public void onPlayerInitSuccess(IMediaPlayer player, GSYModel model) {
if (player instanceof IjkExo2MediaPlayer) {
((IjkExo2MediaPlayer) player).setTrackSelector(new DefaultTrackSelector());
((IjkExo2MediaPlayer) player).setLoadControl(new DefaultLoadControl());
}
}
});
```
* fix #2142
* 增加硬解码不花屏幕 [RecyclerView3Activity](https://github.com/CarGuo/GSYVideoPlayer/blob/master/app/src/main/java/com/example/gsyvideoplayer/RecyclerView3Activity.java)
### 7.0.2(2019-07-01)
* update ExoPlayer 到 2.10.0
......
......@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=7.0.2
PROJ_VERSION=7.1.0
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
PROJ_VCSURL=git@github.com:CarGuo/GSYVideoPlayer.git
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册