提交 84fc399c 编写于 作者: S shuyu

prepare 6.0.1

上级 c53b7bed
......@@ -45,24 +45,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer:6.0.1'
```
#### B、添加java和你想要的so支持:
```
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.1'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.1'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-arm64:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-x64:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-x86:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-armv5:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-arm64:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-x64:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-x86:6.0.1'
```
......@@ -72,13 +72,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.1'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.1'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.1'
```
......@@ -134,7 +134,7 @@ implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.0-beta'
## 五、近期版本
### 6.0.1 (未发布)
### 6.0.1 (2018-10-14)
* 正式发布6.0版本,调整player和cache加载模式。
```
......
......@@ -7,24 +7,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer:6.0.1'
```
#### B、添加java和你想要的so支持:
```
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.1'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.1'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-arm64:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-x64:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-x86:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-armv5:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-arm64:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-x64:6.0.1'
implementation 'com.shuyu:gsyVideoPlayer-x86:6.0.1'
```
......@@ -34,13 +34,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-java:6.0.1'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.0-beta'
implementation 'com.shuyu:GSYVideoPlayer-exo2:6.0.1'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.0-beta'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.1'
```
......
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 6.0.1 (2018-10-14)
* 正式发布6.0版本,调整player和cache加载模式。
```
PlayerFactory.setPlayManager(Exo2PlayerManager.class);//EXO模式
PlayerFactory.setPlayManager(SystemPlayerManager.class);//系统模式
PlayerFactory.setPlayManager(IjkPlayerManager.class);//ijk模式
CacheFactory.setCacheManager(ExoPlayerCacheManager.class);//exo缓存模式,支持m3u8,只支持exo
CacheFactory.setCacheManager(ProxyCacheManager.class);//代理缓存模式,支持所有模式,不支持m3u8等
```
* 修复 ProxyCacheManager header设置无效问题。
* 去除无用资源。
* 修复某种场景下的内存泄漏问题。
### 6.0.0-beta (2018-08-22)
* 升级 ExoPlayer 到 2.8.4。
......
......@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=6.0.0-beta
PROJ_VERSION=6.0.1
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.
先完成此消息的编辑!
想要评论请 注册