README.md 9.2 KB
Newer Older
S
readme  
shuyu 已提交
1

G
readme  
guoshuyu 已提交
2
![](https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/home_logo.png)
S
readme  
shuyu 已提交
3

S
Shuyu Guo 已提交
4
## 基于[IJKPlayer](https://github.com/Bilibili/ijkplayer)(兼容系统MediaPlayer与EXOPlayer2),实现了多功能的视频播放器。 (请仔细阅读下方各项说明,大多数问题可在下方找到解答)。
S
Shuyu Guo 已提交
5

S
Shuyu Guo 已提交
6
状态 | 功能
S
Shuyu Guo 已提交
7
-------- | ---
G
readme  
guoshuyu 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20
**缓存**|**边播边缓存,使用了[AndroidVideoCache](https://github.com/danikula/AndroidVideoCache);ExoPlayer使用SimpleCache。**
**协议**|**h263\4\5、Https、concat、rtsp、hls、rtmp、crypto、mpeg等等。**
**滤镜**|**简单滤镜(马赛克、黑白、色彩过滤、高斯、模糊、模糊等等20多种)、动画、(水印、画面多重播放等)。**
**帧图**|**视频第一帧、视频帧截图功能,视频生成gif功能。**
**播放**|**列表播放、列表连续播放、重力旋转与手动旋转、视频本身rotation旋转属性、快播和慢播、网络视频加载速度。**
**画面**|**调整显示比例:默认、16:9、4:3、填充;播放时旋转画面角度(0,90,180,270);镜像旋转。**
**内核**|**IJKPlayer、EXOPlayer、MediaPlayer切换、自定义内核**
**布局**|**全屏与非全屏两套布局切换、没有任何操作控件的纯播放支持、弹幕功能、继承自定义任何布局。**
**播放**|**单例播放、多个同时播放、视频列表滑动自动播放。**
**窗口**|**小窗口、多窗体下(包括桌面)的小窗口播放。**
**广告**|**片头广告、跳过广告支持、中间插入广告功能。**
**更多**|**暂停前后台切换不黑屏;调整不同清晰度的支持;无缝切换支持;锁定/解锁全屏点击功能;进度条小窗口预览(测试)。**
**自定义**|**可自定义渲染层、自定义管理层、自定义播放层(控制层)、自定义缓存层。**
G
readme  
guoshuyu 已提交
21

S
readme  
shuyu 已提交
22

S
shuyu 已提交
23
[![](https://jitpack.io/v/CarGuo/GSYVideoPlayer.svg)](https://jitpack.io/#CarGuo/GSYVideoPlayer)
S
shuyu 已提交
24
[ ![Download](https://api.bintray.com/packages/carguo/GSYVideoPlayer/gsyVideoPlayer/images/download.svg) ](https://bintray.com/carguo/GSYVideoPlayer/gsyVideoPlayer/_latestVersion)
S
readme  
shuyu 已提交
25
[![Build Status](https://travis-ci.org/CarGuo/GSYVideoPlayer.svg?branch=master)](https://travis-ci.org/CarGuo/GSYVideoPlayer)
S
shuyu 已提交
26

S
Shuyu Guo 已提交
27 28 29 30 31 32
[]()
[![GitHub stars](https://img.shields.io/github/stars/CarGuo/GSYVideoPlayer.svg)](https://github.com/CarGuo/GSYVideoPlayer/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/CarGuo/GSYVideoPlayer.svg)](https://github.com/CarGuo/GSYVideoPlayer/network)
[![GitHub issues](https://img.shields.io/github/issues/CarGuo/GSYVideoPlayer.svg)](https://github.com/CarGuo/GSYVideoPlayer/issues)
[![GitHub license](https://img.shields.io/github/license/CarGuo/GSYVideoPlayer.svg)](https://github.com/CarGuo/GSYVideoPlayer/blob/master/LICENSE)

G
readme  
guoshuyu 已提交
33
### [微信赞赏链接](https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/thanks.jpg)
G
readme  
guoshuyu 已提交
34

S
Shuyu Guo 已提交
35 36
### [Demo APK 下载地址](https://github.com/CarGuo/GSYVideoPlayer/releases)

S
Shuyu Guo 已提交
37
## 一、使用依赖
S
readme  
shuyu 已提交
38

S
shuyu 已提交
39
##### 新版本调整了代码结构,如更新后显示类路径错误,参考demo调整包路径即可。
40

41
### 1、JCenter 引入方法(推荐)
S
shuyu 已提交
42

S
Shuyu Guo 已提交
43
**你可以选择下面三种的其中一种,在module下的build.gradle添加。**
44

S
shuyu 已提交
45
#### A、直接引入
S
shuyu 已提交
46
```
S
shuyu 已提交
47
//完整版引入
S
shuyu 已提交
48
compile 'com.shuyu:GSYVideoPlayer:5.0.0-beta'
S
readme  
shuyu 已提交
49

S
shuyu 已提交
50 51
```

S
shuyu 已提交
52
#### B、添加java和你想要的so支持:
53 54

```
S
shuyu 已提交
55
compile 'com.shuyu:gsyVideoPlayer-java:5.0.0-beta'
56 57

//根据你的需求
S
shuyu 已提交
58 59 60 61 62
compile 'com.shuyu:gsyVideoPlayer-armv5:5.0.0-beta'
compile 'com.shuyu:gsyVideoPlayer-armv7a:5.0.0-beta'
compile 'com.shuyu:gsyVideoPlayer-arm64:5.0.0-beta'
compile 'com.shuyu:gsyVideoPlayer-x64:5.0.0-beta'
compile 'com.shuyu:gsyVideoPlayer-x86:5.0.0-beta'
63 64 65

```

S
shuyu 已提交
66
#### C、支持其他格式协议的(mpeg,rtsp, concat、crypto协议)
67

S
Shuyu Guo 已提交
68 69
A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情况。
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
70 71
 
```
S
shuyu 已提交
72
compile 'com.shuyu:gsyVideoPlayer-java:5.0.0-beta'
73

S
shuyu 已提交
74
compile 'com.shuyu:gsyVideoPlayer-ex_so:5.0.0-beta'
75 76 77

```

G
readme  
guoshuyu 已提交
78
### [--- 更多依赖方式请点击 - ](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/DEPENDENCIES.md)
S
Shuyu Guo 已提交
79

S
Shuyu Guo 已提交
80
## 二、其他推荐
S
Shuyu Guo 已提交
81

S
Shuyu Guo 已提交
82
### * QQ群,有兴趣的欢迎(平时吹水吐槽多,因为人数饱和,目前开启付费入群):174815284 。
S
readme  
shuyu 已提交
83
### * [React Native Github客户端](https://github.com/CarGuo/GSYGithubAPP) 、 [Weex Github客户端](https://github.com/CarGuo/GSYGithubAPPWeex)
S
Shuyu Guo 已提交
84 85
### * [RickText](https://github.com/CarGuo/RickText)
### * [LazyRecyclerAdapter](https://github.com/CarGuo/LazyRecyclerAdapter)
S
Shuyu Guo 已提交
86

S
Shuyu Guo 已提交
87
## 三、文档Wiki
S
readme  
shuyu 已提交
88

G
readme  
guoshuyu 已提交
89 90 91 92 93 94 95 96 97
文档 | 传送门
-------- | ---
项目解析说明|**[--- 项目解析说明、包含项目架构和解析](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/GSYVIDEO_PLAYER_PROJECT_INFO.md)**
接口文档入口|**[--- 使用说明、接口文档 - 入口](https://github.com/CarGuo/GSYVideoPlayer/wiki)**
问题集锦入口|**[--- 问题集锦 - 入口(大部分你遇到的问题都在这里解决) ](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/QUESTION.md)**
IJK编码格式|**[--- 项目支持视频格式(如果遇上黑屏,没声音)](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/DECODERS.md)**
编译自定义SO|**[--- IJKPlayer编译自定义SO - 入口](http://www.jianshu.com/p/bd289e25d272)**
版本更新说明|**[--- 版本更新说明 - 入口](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/UPDATE_VERSION.md)**

S
readme  
shuyu 已提交
98

G
readme  
guoshuyu 已提交
99
![框架图](https://raw.githubusercontent.com/CarGuo/GSYVideoPlayer/master/img/StructureChart2.jpg)
G
guoshuyu 已提交
100

S
Shuyu Guo 已提交
101
## 四、运行效果
S
readme  
shuyu 已提交
102

S
Shuyu Guo 已提交
103
* ### 1、打开一个播放(旋转、镜像、填充)
G
readme  
guoshuyu 已提交
104
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/11.gif" width="240px" height="426px"/>
S
1.1.5  
shuyu 已提交
105

S
Shuyu Guo 已提交
106
* ### 2、列表/详情模式(动画、旋转、小窗体)
S
Shuyu Guo 已提交
107 108

<div>
G
readme  
guoshuyu 已提交
109 110 111
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/22.gif" width="240px" height="426px"/>
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/33.gif" width="240px" height="426px"/>
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/44.gif" width="240px" height="426px"/>
S
Shuyu Guo 已提交
112
</div>
S
shuyu 已提交
113

S
shuyu 已提交
114
* ### 3、弹幕
G
readme  
guoshuyu 已提交
115
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/55.gif" width="240px" height="426px"/>
S
shuyu 已提交
116

G
guoshuyu 已提交
117
* ### 4、滤镜和GL动画
G
readme  
guoshuyu 已提交
118
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/09.gif"/>
G
guoshuyu 已提交
119

G
readme  
guoshuyu 已提交
120 121
* ### 6、背景铺满模糊播放

G
readme  
guoshuyu 已提交
122
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/99.png" width="426px" height="240px"/>
G
readme  
guoshuyu 已提交
123 124

* ### 7、进度条小窗口预览
G
readme  
guoshuyu 已提交
125
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/07.gif" height="240px"/>
S
shuyu 已提交
126

S
Shuyu Guo 已提交
127
## 五、近期版本
S
shuyu 已提交
128 129

### 5.0.0-beta(2018-05-24)
S
shuyu 已提交
130
* 调整cache机制,抽离cache管理器。
G
readme  
guoshuyu 已提交
131
* update ExoPlayer to 2.8.0,全面针对ExoPlayer进行优化
G
readme  
guoshuyu 已提交
132 133 134
* 优化ExoPlayer的问题
* 增加ExoPlayer循环播放支持
* 增加ExoPlayer自定义DEMO,演示ExoPlayer实现无缝切换
G
fix exo  
guoshuyu 已提交
135
* ijk的`logLevel``ijkLibLoader`直接通过IJKPlayerManager静态方法设置
G
readme  
guoshuyu 已提交
136
* 进一步调整框架结构和内部耦合度
S
shuyu 已提交
137

G
readme  
guoshuyu 已提交
138

G
guoshuyu 已提交
139

G
readme  
guoshuyu 已提交
140
### 更多版本请查阅:[版本更新说明](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/UPDATE_VERSION.md)
S
readme  
shuyu 已提交
141

S
Shuyu Guo 已提交
142
## 六、关于Issues
S
shuyu 已提交
143 144 145 146 147 148 149 150 151 152 153 154

```
提问题前可先查阅上方文档和说明,请在Demo中复现问题。

问题说明:

1、说明那个Demo中哪个页面。
2、问题显现和重现步骤。
3、补充问题的视频流url,截图。
4、补充问题的机型,android版本。
```

S
Shuyu Guo 已提交
155
## 七、混淆
S
shuyu 已提交
156

S
shuyu 已提交
157
```
G
guoshuyu 已提交
158 159 160 161 162 163
-keep class com.shuyu.gsyvideoplayer.video.** { *; }
-dontwarn com.shuyu.gsyvideoplayer.video.**
-keep class com.shuyu.gsyvideoplayer.video.base.** { *; }
-dontwarn com.shuyu.gsyvideoplayer.video.base.**
-keep class com.shuyu.gsyvideoplayer.utils.** { *; }
-dontwarn com.shuyu.gsyvideoplayer.utils.**
S
shuyu 已提交
164 165
-keep class tv.danmaku.ijk.** { *; }
-dontwarn tv.danmaku.ijk.**
G
guoshuyu 已提交
166 167 168 169 170 171 172 173

-keep public class * extends android.view.View{
    *** get*();
    void set*(***);
    public <init>(android.content.Context);
    public <init>(android.content.Context, android.util.AttributeSet);
    public <init>(android.content.Context, android.util.AttributeSet, int);
}
S
todo  
shuyu 已提交
174
```
175

S
Shuyu Guo 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
## 温馨提示

```
关于自定义和出现问题的请先看问题集锦、demo、issue。

多了解一些音视频的基础常识,对容器,音视频编码,ffmpeg先做一些了解,以及mediacodec等的不同。
尽量少出现为什么别的能播的问题哟。

播放器的可自定义还是挺高的,定制请参考demo,多看源码。现在的功能有些多,demo也在不断的更新。

一些新功能和项目结构也在不断的调整。

欢迎提出问题,谢谢。

```

S
Shuyu Guo 已提交
192
## 依赖大小参考
S
Shuyu Guo 已提交
193
建议使用ndk过滤,详细参考 [参考第四条 : 4、NDK的so支持](http://www.jianshu.com/p/86e4b336c17d)
S
Shuyu Guo 已提交
194 195 196
![](https://ooo.0o0.ooo/2017/06/15/5941f343a39f5.png)


G
readme  
guoshuyu 已提交
197 198 199 200
## 非常感谢您的支持

#### 撸码不易,如果对你有所帮助,欢迎您的赞赏

G
readme  
guoshuyu 已提交
201 202
##### 微信赞赏码

G
readme  
guoshuyu 已提交
203
<img src="https://github.com/CarGuo/GSYVideoPlayer/blob/master/img/thanks.jpg" height="400px" width="400px"/>
G
readme  
guoshuyu 已提交
204 205


206 207 208 209
## License

```
请参看IJKPlayer和AndroidVideoCache相关协议。
G
readme  
guoshuyu 已提交
210 211
项目最开始是从jiecao过来的,改着改着直接重构了。
偶尔有一变量和方法名可能还有点jiaozi的影子,但是基本是一个新项目。
S
Shuyu Guo 已提交
212
```