基于IJKPlayer,实现了多功能的视频播放器。 (请仔细阅读下方各项说明,大多数问题可在下方找到解答)。
- 支持基本的拖动,声音、亮度调节。
- 支持边播边缓存,使用了AndroidVideoCache。
- 支持视频本身自带rotation的旋转。
- 增加了重力旋转与手动旋转的同步支持。
- 支持列表播放。
- 直接添加控件为封面。
- 全屏和播放等的动画效果。
- 列表的全屏效果优化,多种配置模式。
- 列表的小窗口播放,可拖动。
- 网络视频加载速度。
- 锁定/解锁全屏点击功能。
- 支持快播和慢播。
- 调整显示比例:默认、16:9、4:3。
- 暂停时前后台切换不黑屏
- 调整不同清晰度的支持。
- 支持IJKPlayer和EXOPlayer切换。
- 进度条小窗口预览(测试)。
- Https支持。
- 支持播放时旋转画面角度(0,90,180,270)。
- 连续播放一个列表的视频。
- 支持全屏与非全屏两套布局切换
- 弹幕支持
- 镜像旋转
- 完美实现播放、暂停、前后台切换、画面调整等情况不黑屏不突变
- concat、rtsp、crypto、mpeg
你可以选择下面三种的其中一种,在module下的build.gradle添加。
//完整版引入
compile 'com.shuyu:GSYVideoPlayer:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-java:2.0.2'
//根据你的需求
compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-x64:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-x86:2.0.2'
A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情况。 C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
compile 'com.shuyu:gsyVideoPlayer-java:2.0.2'
compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.2'
compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.1'
compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.1'
compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.1'
compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.1'
compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.1'
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
你可以选择下面三种的其中一种,在module下的build.gradle添加。
//完整版引入
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.2'
//根据你的需求
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.2'
A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情况。 C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.2'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.2'
- 优化了TextureView显示
- 修复SampleView的暂停问题
- 项目结构调整,增加了新的so支持。
- 修改setup的设置参数。
- 升级修改所有回调接口,回调接口中返回当前播放器。
- 修正播放本地文件错误,会错删文件问题。
- 兼容Appbar中使用,感谢@loveRose
- 非全屏播放器可获取全屏播放器对象。
/**
* 获取全屏播放器对象
*
* @return GSYVideoPlayer 如果没有则返回空。
*/
public GSYVideoPlayer getFullWindowPlayer()
更多版本请查阅:版本更新说明
提问题前可先查阅上方文档和说明,请在Demo中复现问题。
问题说明:
1、说明那个Demo中哪个页面。
2、问题显现和重现步骤。
3、补充问题的视频流url,截图。
4、补充问题的机型,android版本。
-keep class tv.danmaku.ijk.** { *; }
-dontwarn tv.danmaku.ijk.**
-keep class com.shuyu.gsyvideoplayer.** { *; }
-dontwarn com.shuyu.gsyvideoplayer.**
建议使用ndk过滤,详细参考 参考第四条 : 4、NDK的so支持
请参看IJKPlayer和AndroidVideoCache相关协议。
项目最开始是从jiecao过来的,只是后来方向不同,所以慢慢的也异化了。