提交 955c95f4 编写于 作者: S shuyu

4.0.0-beat1

上级 d85b2a05
......@@ -52,21 +52,21 @@
#### A、直接引入
```
//完整版引入
compile 'com.shuyu:GSYVideoPlayer:4.0.0'
compile 'com.shuyu:GSYVideoPlayer:4.0.0-beat1'
```
#### B、添加java和你想要的so支持:
```
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0-beat1'
//根据你的需求
compile 'com.shuyu:gsyVideoPlayer-armv5:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-armv7a:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-arm64:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-x64:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-x86:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-armv5:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-armv7a:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-arm64:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-x64:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-x86:4.0.0-beat1'
```
......@@ -76,9 +76,9 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-ex_so:4.0.0'
compile 'com.shuyu:gsyVideoPlayer-ex_so:4.0.0-beat1'
```
......@@ -129,7 +129,7 @@ compile 'com.shuyu:gsyVideoPlayer-ex_so:4.0.0'
## 五、近期版本
### 4.0.0(2018-xx-xx
### 4.0.0-beat1(2018-02-06
* 1、新增简单片头广告支持。
`GSYSampleADVideoPlayer 与 DetailADPlayer`
* 2、优化了ListGSYVideoPlayer、增加`playNext()`接口。
......
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 4.0.0-beat1(2018-02-06)
* 1、新增简单片头广告支持。
`GSYSampleADVideoPlayer 与 DetailADPlayer`
* 2、优化了ListGSYVideoPlayer、增加`playNext()`接口。
* 3、优化代码结构,调整部分API接口(稍微调整下,偶尔有和旧版本不兼容的,参考源码和demo修改下方法名即可)。
* 4、增加GSYVideoHelper视频帮助类,更加节省资源。
* 5、增加GSYSampleCallBack节省继承,优化GSYVideoProgressListener的回调。
* 6、增加GSYVideoViewBridge、重载`getGSYVideoManager()`方法实现自己的Manager。
* 7、支持自定义渲染层,demo中`CustomRenderVideoPlayer`演示如何设置自定义渲染层。
* 8、`ListMultiVideoActivity``MultiSampleVideo`演示如何同时播放多个视频。
* 9、`DetailADPlayer2``ListADVideoActivity`演示广告与中间插入广告支持。
* 10、增加音频焦点方法。
```
/**
* 长时间失去音频焦点,暂停播放器
*
* @param releaseWhenLossAudio 默认true,false的时候只会暂停
*/
public void setReleaseWhenLossAudio(boolean releaseWhenLossAudio)
```
### 3.0.0(2018-01-14)
1、增肌PlayerManager,更新为ExoPlayer2,优化对ExoPlayer2的支持。
......
......@@ -23,12 +23,11 @@ ext {
floatWindow = '1.0.6'
//DataLibraries
videocache = '2.1.1'
leakcanary = '1.5'
imageLoader = '4.0.0'
gsyVideoVersion = '3.0.0'
gsyVideoVersion = '4.0.0-beat1'
exo_player2 = '2.6.1'
......@@ -64,7 +63,7 @@ ext {
]
dataDependencies = [
videocache: "com.shuyu:gsyvideoplayer-androidvideocache:${videocache}",
videocache: "com.shuyu:gsyvideoplayer-androidvideocache:${gsyVideoVersion}",
leakcanary: "com.squareup.leakcanary:leakcanary-android:${leakcanary}",
]
}
......@@ -7,21 +7,21 @@
#### A、直接引入
```
//完整版引入
compile 'com.shuyu:GSYVideoPlayer:3.0.0'
compile 'com.shuyu:GSYVideoPlayer:4.0.0-beat1'
```
#### B、添加java和你想要的so支持:
```
compile 'com.shuyu:gsyVideoPlayer-java:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0-beat1'
//根据你的需求
compile 'com.shuyu:gsyVideoPlayer-armv5:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-armv7a:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-arm64:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-x64:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-x86:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-armv5:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-armv7a:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-arm64:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-x64:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-x86:4.0.0-beat1'
```
......@@ -31,9 +31,9 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
compile 'com.shuyu:gsyVideoPlayer-java:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-java:4.0.0-beat1'
compile 'com.shuyu:gsyVideoPlayer-ex_so:3.0.0'
compile 'com.shuyu:gsyVideoPlayer-ex_so:4.0.0-beat1'
```
......@@ -49,7 +49,7 @@ compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.4'
--------------------------------------------------------------------------------
### 2、JitPack引入方法 (3.0.0开始目前不支持)
### 2、JitPack引入方法 (4.0.0-beat1开始目前不支持)
#### First、在project下的build.gradle添加
```
......@@ -68,7 +68,7 @@ allprojects {
#### A、直接引入
```
//完整版引入
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v4.0.0-beat1'
```
......@@ -76,14 +76,14 @@ compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v3.0.0'
```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v4.0.0-beat1'
//根据你的需求
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v4.0.0-beat1'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v4.0.0-beat1'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v4.0.0-beat1'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v4.0.0-beat1'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v4.0.0-beat1'
```
......@@ -93,8 +93,8 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v4.0.0-beat1'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v3.0.0'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v4.0.0-beat1'
```
......@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx1536m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=3.0.0
PROJ_VERSION=4.0.0-beat1
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
PROJ_VCSURL=git@github.com:CarGuo/GSYVideoPlayer.git
......
......@@ -37,9 +37,9 @@ dependencies {
api viewDependencies.ijkplayer_java
api viewDependencies.ijkplayer_exo
api viewDependencies.transitionseverywhere
//api dataDependencies.videocache
api dataDependencies.videocache
api "com.shuyu:GSYVideoPlayer-exo2:$gsyVideoVersion"
api project(':gsyvideoplayer-androidvideocache')
//api project(':gsyvideoplayer-androidvideocache')
//api project(':gsyvideoplayer-exo2')
......
......@@ -31,7 +31,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api project(':gsyVideoPlayer-java')
//api project(':gsyVideoPlayer-java')
//api project(':gsyVideoPlayer-armv5')
//api project(':gsyVideoPlayer-armv7a')
//api project(':gsyVideoPlayer-armv64')
......@@ -41,8 +41,9 @@ dependencies {
//更多配置版so,增加了concat,rtsp,mpeg,crypto
//api project(':gsyVideoPlayer-ex_so')
//api "com.shuyu:gsyVideoPlayer-java:$gsyVideoVersion"
api "com.shuyu:GSYVideoPlayer:$gsyVideoVersion"
//api "com.shuyu:gsyVideoPlayer-java:$gsyVideoVersion"
//api "com.shuyu:gsyVideoPlayer-armv5:$gsyVideoVersion"
//api "com.shuyu:gsyVideoPlayer-armv7a:$gsyVideoVersion"
//api "com.shuyu:gsyVideoPlayer-arm64:$gsyVideoVersion"
......@@ -50,7 +51,7 @@ dependencies {
//api "com.shuyu:gsyVideoPlayer-x86:$gsyVideoVersion"
//更多配置版so,增加了concat,rtsp,mpeg,crypto
api "com.shuyu:gsyVideoPlayer-ex_so:$gsyVideoVersion"
//api "com.shuyu:gsyVideoPlayer-ex_so:$gsyVideoVersion"
//compile fileTree(dir: 'libs', include: ['*.jar'])
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册