splash精简播放器,开源,支持IJKExo

时间:2023-11-09 12:48:01/人气:192 ℃

一飞开源,介绍创意、新奇、有趣、实用的免费开源应用、系统、软件、硬件及技术,一个探索、发现、分享、使用与互动交流的开源技术社区平台。致力于打造活力开源社区,共建开源新生态!

一、开源项目简介

支持IJKPlayer、ExoPlayer、MediaPlayer和其它更多*********切换、支持静音、镜像、渲染模式、倍速设置等功能的轻便级播放器,支持自定义*********、控制器、UI交互组件和悬浮窗播放能力等

二、开源协议

使用Apache-2.0开源协议

三、界面展示SDK及Demo部分功能预览

四、功能概述SDK基础功能:五、技术选型播放器框架结构图

SDK集成1、项目根build.gradle及模块build.gradle配置

//1.在你的根build.gradle中添加: allprojects { repositories { maven { url 'https://jitpack.io' } } } //2.在你的模块build.gradle中添加: dependencies { //播放器 implementation 'com.github.hty527.iPlayer:iplayer:2.0.4.1' //ijk音视频*********,根据需要使用 //implementation 'com.github.hty527.iPlayer:ijk:2.0.4.1' //exo音视频*********,根据需要使用 //implementation 'com.github.hty527.iPlayer:exo:2.0.4.1' //音视频预缓存 边播边存,根据需要使用 //implementation 'com.github.hty527.iPlayer:cache:2.0.4.1' }2、在需要播放视频的xml中添加如下代码,或在适合的位置new VideoPlayer()

<com.android.iplayer.widget.VideoPlayer android:id="@ id/video_player" android:layout_width="match_parent" android:layout_height="200dp"/>3、播放器准备及开始播放

mVideoPlayer = (VideoPlayer) findViewById(R.id.video_player); mVideoPlayer.getLayoutParams().height= getResources().getDisplayMetrics().widthPixels * 9 /16;//固定播放器高度,或高度设置为:match_parent //使用SDK自带控制器 各UI交互组件 VideoController controller = mVideoPlayer.initController(); //设置视频标题(仅横屏状态可见) controller.setTitle("测试地址播放"); //设置播放源 mVideoPlayer.setDataSource("https://upload.dongfeng-nissan.com.cn/nissan/video/202204/4cfde6f0-bf80-11ec-95c3-214c38efbbc8.mp4"); //异步开始准备播放 mVideoPlayer.prepareAsync();4、生命周期处理

@Override protected void onResume() { super.onResume(); mVideoPlayer.onResume(); } @Override protected void onPause() { super.onPause(); mVideoPlayer.onPause(); } @Override public void onBackPressed() { if(mVideoPlayer.isBackPressed()){ super.onBackPressed(); } } @Override protected void onDestroy() { super.onDestroy(); mVideoPlayer.onDestroy(); }5、常用API、更换*********、自定义*********、UI交互组件和悬浮窗口播放等功能请阅读wiki六、源码地址

访问一飞开源:https://code.exmay.com/

推荐

  • 1浓烈的近义词是什么及造句417
  • 2幼师实习个人工作总结相关范文优选475
  • 3经济厅厅长竞聘演讲辞256
  • 4哄孩子睡觉的方法138
  • 5酒店行业劳动合同书174
  • 6南昌房地产发展现状428
  • 7退伍军人的求职信范文120
  • 8中秋节浪漫温馨的祝福短信238
  • 9为辛苦劳作清洁工人点赞:用生命在干活的清洁工377
  • 10鬼灭之刃祢豆子壁纸1080,鬼灭之刃灶门祢豆子壁纸特辑444
  • 首页/电脑版/地图
    © 2024 OONiu.Com All Rights Reserved.