- This project need translators, mother language is english, you can change everything edit readme, release note, formate variable and annotation.
- Now the research target is android.media.MediaPlayer setSurface by more surfaces the video is always continuous.
Android truly full-screen capabilities, the Android platform to become the most widely used video playback controls. Q Group:490442439
- Launching new Fullscreen Activity when playing video in fullscreen mode
- Completely custom ui
- In
ListView
、ViewPager
andListView
、ViewPager
andFragment
and other nested fragments and views situation, it works well - Gestrues to modify progress and volume
- Adaptive to the screen size, where at least the width or length of the video is adaptive while the other is centered on the screen
- It will not disturb or change the playing state when entering or exiting fullscreen
- Support hls,rtsp
- Put head data
jiecaovideoplayer-4.0_beta-demo.apk
1.Import library
compile 'fm.jiecao:jiecaovideoplayer:4.0_beta'
Or download lib
- jiecaovideoplayer-4.0_beta.aar
- jiecaovideoplayer-4.0_beta-javadoc.jar
- jiecaovideoplayer-4.0_beta-sources.jar
2.Add JCVideoPlayer in your layout
<fm.jiecao.jcvideoplayer_lib.JCVideoPlayerStandard
android:id="@+id/custom_videoplayer_standard"
android:layout_width="match_parent"
android:layout_height="200dp"/>
3.Set the video uri, video thumb url and video title
JCVideoPlayerStandard jcVideoPlayerStandard = (JCVideoPlayerStandard) findViewById(R.id.custom_videoplayer_standard);
jcVideoPlayerStandard.setUp("http://2449.vod.myqcloud.com/2449_bfbbfa3cea8f11e5aac3db03cda99974.f20.mp4"
, "嫂子想我没");
jcVideoPlayerStandard.thumbImageView.setThumbInCustomProject("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");
4.Remember to invoke JCVideoPlayer.releaseAllVideos();
in onPause()
of Fragment
or Activity
Invoke JCFullScreenActivity.startActivity(...)
to enter fullscreen directly.
JCFullScreenActivity.startActivity(this,
"http://video.jiecao.fm/5/1/%E8%87%AA%E5%8F%96%E5%85%B6%E8%BE%B1.mp4",
JCVideoPlayerStandard.class,
"嫂子别摸我");
Control play button,if state is normal it will play, if state is playing it will pause
jcVideoPlayerStandard.startButton.performClick();
ProGuard
Need nothing
##Contributors
Nathen Derlio zhangzzqq carmelo-ruota wxxsw Miguel Aragues
Copyright (c) 2015-2016 节操精选 http://jiecao.fm
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.