GSYVideoPlayer
GSYVideoPlayer官方地址
GSYVideoPlayer 一个基于IJkPlayer的播放器
支持调节声音亮度
边播边缓存 使用了AndroidVideoCache;ExoPlayer使用SimpleCache
支持多种协议h263\4\5、Https、concat、rtsp、hls、rtmp、crypto、mpeg等等
简单滤镜(马赛克、黑白、色彩过滤、高斯、模糊、模糊等等20多种)、动画、(水印、画面多重播放等)
视频第一帧、视频帧截图功能,视频生成gif功能。
调整显示比例:默认、16:9、4:3、填充;播放时旋转画面角度(0,90,180,270);镜像旋转
IJKPlayer、EXOPlayer、MediaPlayer切换、自定义内核
小窗口、多窗体下(包括桌面)的小窗口播放。
片头广告、跳过广告支持、中间插入广告功能。
暂停前后台切换不黑屏;调整不同清晰度的支持;无缝切换支持;锁定/解锁全屏点击功能;进度条小窗口预览
可自定义渲染层、自定义管理层、自定义播放层(控制层)、自定义缓存层
使用依赖
1、JCenter 引入方法(推荐)
你可以选择下面三种的其中一种,在module下的build.gradle添加。
A、直接引入
//完整版引入 implementation 'com.shuyu:GSYVideoPlayer:8.1.2'
B、添加java和你想要的so支持:
implementation 'com.shuyu:gsyVideoPlayer-java:8.1.2' //是否需要ExoPlayer模式 implementation 'com.shuyu:GSYVideoPlayer-exo2:8.1.2' //根据你的需求ijk模式的so implementation 'com.shuyu:gsyVideoPlayer-armv5:8.1.2' implementation 'com.shuyu:gsyVideoPlayer-armv7a:8.1.2' implementation 'com.shuyu:gsyVideoPlayer-arm64:8.1.2' implementation 'com.shuyu:gsyVideoPlayer-x64:8.1.2' implementation 'com.shuyu:gsyVideoPlayer-x86:8.1.2'
C、支持其他格式协议的(mpeg,rtsp, concat、crypto协议)
implementation 'com.shuyu:gsyVideoPlayer-java:8.1.2' //是否需要ExoPlayer模式 implementation 'com.shuyu:GSYVideoPlayer-exo2:8.1.2' //更多ijk的编码支持 implementation 'com.shuyu:gsyVideoPlayer-ex_so:8.1.2'
代码中的全局切换支持
//EXOPlayer内核,支持格式更多 PlayerFactory.setPlayManager(Exo2PlayerManager.class); //系统内核模式 PlayerFactory.setPlayManager(SystemPlayerManager.class); //ijk内核,默认模式 PlayerFactory.setPlayManager(IjkPlayerManager.class); //exo缓存模式,支持m3u8,只支持exo CacheFactory.setCacheManager(ExoPlayerCacheManager.class); //代理缓存模式,支持所有模式,不支持m3u8等,默认 CacheFactory.setCacheManager(ProxyCacheManager.class); //切换渲染模式 GSYVideoType.setShowType(GSYVideoType.SCREEN_MATCH_FULL); //默认显示比例 GSYVideoType.SCREEN_TYPE_DEFAULT = 0; //16:9 GSYVideoType.SCREEN_TYPE_16_9 = 1; //4:3 GSYVideoType.SCREEN_TYPE_4_3 = 2; //全屏裁减显示,为了显示正常 CoverImageView 建议使用FrameLayout作为父布局 GSYVideoType.SCREEN_TYPE_FULL = 4; //全屏拉伸显示,使用这个属性时,surface_container建议使用FrameLayout GSYVideoType.SCREEN_MATCH_FULL = -4; /*** * SCREEN_TYPE_CUSTOM 下自定义显示比例 * @param screenScaleRatio 高宽比,如 16:9 */ public static void setScreenScaleRatio(float screenScaleRatio) //切换绘制模式 GSYVideoType.setRenderType(GSYVideoType.SUFRACE); GSYVideoType.setRenderType(GSYVideoType.GLSURFACE); GSYVideoType.setRenderType(GSYVideoType.TEXTURE); //ijk关闭log IjkPlayerManager.setLogLevel(IjkMediaPlayer.IJK_LOG_SILENT); //exoplayer自定义MediaSource ExoSourceManager.setExoMediaSourceInterceptListener(new ExoMediaSourceInterceptListener() { @Override public MediaSource getMediaSource(String dataSource, boolean preview, boolean cacheEnable, boolean isLooping, File cacheDir) { //可自定义MediaSource return null; } });
自定义一个播放器
public class LiveVideo extends StandardGSYVideoPlayer { public LiveDataFullscreenButtonClick liveDataClick;//点击全屏按钮回调 /** * 恢复暂停状态 */ public void onResume() { onVideoResume(); } /** * 暂停状态 */ public void onPause() { onVideoPause(); } /** * 接口回调 * @param liveDataClick */ public void setOnFullscreenButtonClick(LiveDataFullscreenButtonClick liveDataClick) { this.liveDataClick = liveDataClick; } /* 重写方法自定义layout id与video_layout_standard.xml一致 不重新使用系统默认布局*/ @Override public int getLayoutId() { return R.layout.test; } public LiveVideo(Context context, Boolean fullFlag) { super(context, fullFlag); init(); } public LiveVideo(Context context) { super(context); init(); } public LiveVideo(Context context, AttributeSet attrs) { super(context, attrs); init(); } /* 初始化操作 */ private void init() { //EXOPlayer内核,支持格式更多 // PlayerFactory.setPlayManager(Exo2PlayerManager.class); //代理缓存模式,支持所有模式,不支持m3u8等,默认 // CacheFactory.setCacheManager(ProxyCacheManager.class); //系统内核模式 // PlayerFactory.setPlayManager(SystemPlayerManager.class); //ijk内核,默认模式 PlayerFactory.setPlayManager(IjkPlayerManager.class); settingsVideo(); } /* 一些播放器的设置 做一些UI的隐藏 可根据自己需求*/ public void settingsVideo() { GSYVideoType.enableMediaCodec();//使能硬解码,播放前设置 Debuger.enable();//打开GSY的Log //隐藏一些UI setViewShowState(mBottomContainer, VISIBLE); setViewShowState(mTopContainer, VISIBLE); setViewShowState(mLockScreen, GONE); setViewShowState(mLoadingProgressBar, GONE); setViewShowState(mTopContainer, GONE); setViewShowState(mThumbImageView, GONE); setViewShowState(mBottomProgressBar, GONE); //显示一些UI 进度 时间 当前时间 全屏 返回 加载Loading 暂停开始 setViewShowState(mStartButton, VISIBLE); setViewShowState(mLoadingProgressBar, VISIBLE); setViewShowState(mFullscreenButton, VISIBLE); setViewShowState(mBackButton, GONE); setViewShowState(mProgressBar, VISIBLE); setViewShowState(mCurrentTimeTextView, VISIBLE); setViewShowState(mTotalTimeTextView, VISIBLE); setEnlargeImageRes(R.drawable.full); setShrinkImageRes(R.drawable.full); } //拦截事件 @Override public boolean dispatchTouchEvent(MotionEvent ev) { mFullscreenButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { liveDataClick.onClick(); } }); return super.dispatchTouchEvent(ev); } /* 取消 双击暂停 */ @Override protected void touchDoubleUp() { // super.touchDoubleUp(); } public interface LiveDataFullscreenButtonClick { void onClick(); } }
api
/** * 设置播放URL * * @param url 播放url * @param cacheWithPlay 是否边播边缓存 * @param title title * @return */ video.setUp("url", false, "");//设置播放路径 video.startPlayLogic();//开始播放
到此这篇关于Android GSYVideoPlayer视频播放器功能的实现的文章就介绍到这了,更多相关Android GSYVideoPlayer视频播放器内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!