转载地址:https://github.com/lipangit/JiaoZiVideoPlayer
参考视频:http://ke.atguigu.com/course/149/learn#lesson/1978
立志成为Android平台使用最广泛的视频播放控件 Q群:490442439 验证信息:jzvd
目前认为安卓中视频点播的终极状态是系统的MediaPlayer,其他的播放引擎并不是未来的趋势,虽然系统的MediaPlayer也有缺点我认为我们应该做出一些让步,如果系统的MediaPlayer没有重大缺陷将不会考虑替换它。
英文文档 工作计划
ListView
、ViewPager
和ListView
、ViewPager
和Fragment
等多重嵌套模式下全屏工作jiaozivideoplayer-6.0.0.apk
即便是自定义UI,或者对Library有过修改,也是这五步骤来使用播放器。
1.添加类库
compile 'cn.jzvd:jiaozivideoplayer:6.0.0'
或直接下载jar包 不建议
2.添加布局
3.设置视频地址、缩略图地址、标题
JZVideoPlayerStandard jzVideoPlayerStandard = (JZVideoPlayerStandard) findViewById(R.id.videoplayer); jzVideoPlayerStandard.setUp("http://jzvd.nathen.cn/c6e3dc12a1154626b3476d9bf3bd7266/6b56c5f0dc31428083757a45764763b0-5287d2089db37e62345123a1be272f8b.mp4" , JZVideoPlayerStandard.SCREEN_LAYOUT_NORMAL, "嫂子闭眼睛"); jzVideoPlayerStandard.thumbImageView.setImage("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");
4.在Activity
中
@Override public void onBackPressed() { if (JZVideoPlayer.backPress()) { return; } super.onBackPressed(); } @Override protected void onPause() { super.onPause(); JZVideoPlayer.releaseAllVideos(); }
5.在AndroidManifest.xml
中
android:name=".MainActivity"
android:configChanges="orientation|screenSize|keyboardHidden"
android:screenOrientation="portrait" />
常见问题
老臣精力能力有限,希望和志同道合的朋友一起把项目做好,感兴趣的同学随时和我报名
熊晓清 QQ:137048616
Lionet QQ:2950527715
montauk QQ:958489121
张展硕 QQ:229431468
熊晓清 QQ:137048616
wiki整理
发版
这项目是专门给中小app集成视频播放的,极大降低开发成本,如果给您节省了成吨的时间,建议零售价:打赏500元。(不贵吧兄弟们,弄了两年的项目不比女主播唱首歌值钱吧)
Copyright (c) 2015-2016 李盼 Nathen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.