From 68872bea2bc32f1b2d4641e05bbc2e5d5ce56d6d Mon Sep 17 00:00:00 2001 From: guoshuyu Date: Wed, 22 Aug 2018 13:59:32 +0800 Subject: [PATCH] prepare release --- README.md | 29 ++++++++----- doc/DEPENDENCIES.md | 83 ++++++++----------------------------- gsyVideoPlayer/build.gradle | 2 +- 3 files changed, 36 insertions(+), 78 deletions(-) diff --git a/README.md b/README.md index c5161092f..4fafb1765 100644 --- a/README.md +++ b/README.md @@ -45,21 +45,24 @@ #### A、直接引入 ``` //完整版引入 -compile 'com.shuyu:GSYVideoPlayer:5.0.2' +implementation 'com.shuyu:GSYVideoPlayer:6.0.0-beta' ``` #### B、添加java和你想要的so支持: ``` -compile 'com.shuyu:gsyVideoPlayer-java:5.0.2' +implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta' -//根据你的需求 -compile 'com.shuyu:gsyVideoPlayer-armv5:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-armv7a:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-arm64:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-x64:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-x86:5.0.2' +//是否需要ExoPlayer模式 +implementation 'com.shuyu:gsyVideoPlayer-exo2:6.0.0-beta' + +//根据你的需求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' ``` @@ -69,9 +72,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情 C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。 ``` -compile 'com.shuyu:gsyVideoPlayer-java:5.0.2' +implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta' + +//是否需要ExoPlayer模式 +implementation 'com.shuyu:gsyVideoPlayer-exo2:6.0.0-beta' -compile 'com.shuyu:gsyVideoPlayer-ex_so:5.0.2' +//更多ijk的编码支持 +implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.0-beta' ``` @@ -127,7 +134,7 @@ compile 'com.shuyu:gsyVideoPlayer-ex_so:5.0.2' ## 五、近期版本 -### 6.0.0-beta (2018-xx-xx) +### 6.0.0-beta (2018-08-22) * 升级 ExoPlayer 到 2.8.4。 * 修复代理缓存时头部信息不存在问题。 * 调整代码结构,移除 GSYVideoType 中的内核切换,直接通过 PlayerFactory 装载。 diff --git a/doc/DEPENDENCIES.md b/doc/DEPENDENCIES.md index 4649f9b10..015582f17 100644 --- a/doc/DEPENDENCIES.md +++ b/doc/DEPENDENCIES.md @@ -7,21 +7,24 @@ #### A、直接引入 ``` //完整版引入 -compile 'com.shuyu:GSYVideoPlayer:5.0.0-beta' +implementation 'com.shuyu:GSYVideoPlayer:6.0.0-beta' ``` #### B、添加java和你想要的so支持: ``` -compile 'com.shuyu:gsyVideoPlayer-java:5.0.2' +implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta' -//根据你的需求 -compile 'com.shuyu:gsyVideoPlayer-armv5:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-armv7a:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-arm64:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-x64:5.0.2' -compile 'com.shuyu:gsyVideoPlayer-x86:5.0.2' +//是否需要ExoPlayer模式 +implementation 'com.shuyu:gsyVideoPlayer-exo2:6.0.0-beta' + +//根据你的需求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' ``` @@ -31,70 +34,18 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情 C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。 ``` -compile 'com.shuyu:gsyVideoPlayer-java:5.0.2' - -compile 'com.shuyu:gsyVideoPlayer-ex_so:5.0.2' +implementation 'com.shuyu:gsyVideoPlayer-java:6.0.0-beta' -``` +//是否需要ExoPlayer模式 +implementation 'com.shuyu:gsyVideoPlayer-exo2:6.0.0-beta' -#### D、支持使用ijkPlayer的so +//更多ijk的编码支持 +implementation 'com.shuyu:gsyVideoPlayer-ex_so:6.0.0-beta' -``` -compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.8' -compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.8' -compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.8' -compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.8' -compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.8' ``` -------------------------------------------------------------------------------- ### 2、JitPack引入方法 -#### First、在project下的build.gradle添加 -``` -allprojects { - repositories { - ... - maven { url 'https://jitpack.io' } - } -} -``` - -#### Sencond、在module下的build.gradle添加 - -**你可以选择下面三种的其中一种,在module下的build.gradle添加。** - -#### A、直接引入 -``` -//完整版引入 -compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v5.0.2' - -``` - -#### B、添加java和你想要的so支持: - -``` - -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v5.0.2' - -//根据你的需求 -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v5.0.2' -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v5.0.2' -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v5.0.2' -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v5.0.2' -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v5.0.2' - -``` - -#### C、支持其他格式协议的(mpeg,rtsp, concat、crypto协议) - -A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情况。 -C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。 - -``` -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v5.0.2' - -compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v5.0.2' - -``` +Not Support after 6.x.x \ No newline at end of file diff --git a/gsyVideoPlayer/build.gradle b/gsyVideoPlayer/build.gradle index c6565ae30..de3cc412a 100644 --- a/gsyVideoPlayer/build.gradle +++ b/gsyVideoPlayer/build.gradle @@ -57,7 +57,7 @@ dependencies { //compile fileTree(dir: 'libs', include: ['*.jar']) //compile "com.shuyu:gsyVideoPlayer-java:$gsyVideoVersion" - //compile "com.shuyu:GSYVideoPlayer-exo2:$gsyVideoVersion" + //compile "com.shuyu:gsyVideoPlayer-exo2:$gsyVideoVersion" //compile "com.shuyu:gsyVideoPlayer-armv5:$gsyVideoVersion" //compile "com.shuyu:gsyVideoPlayer-armv7a:$gsyVideoVersion" //compile "com.shuyu:gsyVideoPlayer-arm64:$gsyVideoVersion"