/jiecaovideoplayer

android videoplayer videoview fullscreen video player 安卓视频播放器 全屏 播放器列表全屏 仿今日头条UI

Primary LanguageJavaMIT LicenseMIT

Jiecao Video Player

Platform Maven Central Licenses Android Arsenal GitHub stars

This is the real android video player view with fullscreen function, we are dedicated to make it to be the most popular video play widget on android. Branch develop is the latest version, although it is not stable for now.

中文文档

Features

  1. Launching new Fullscreen Activity when playing video in fullscreen mode
  2. Even in ListViewViewPager and ListViewViewPager and Fragment and other nested fragments and views situation, it works well
  3. Video will be reset(pause) when it's scrolled out of the screen in ListView and ViewPager
  4. 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
  5. It will not disturb or change the playing state when entering or exiting fullscreen
  6. Support to customize view controller’s skin
  7. Support to display thumbnails when playing mp3
  8. With limited storage, less than 50 kb

Effect

jiecaovideoplayer-2.0_preview-demo.apk

Demo Screenshot

Demo video : http://v.youku.com/v_show/id_XMTQ2NzUwOTcyNA==.html

Usage

1.Import library

compile 'fm.jiecao:jiecaovideoplayer:2.0_preview'

Or download lib

2.Add JCVideoPlayer in your layout

<fm.jiecao.jcvideoplayer_lib.JCVideoPlayer
    android:id="@+id/videocontroller1"
    android:layout_width="match_parent"
    android:layout_height="200dp" />

3.Set the video uri, video thumb url and video title

JCVideoPlayer jCVideoPlayer = (JCVideoPlayer) findViewById(R.id.videocontroller);
videoController.setUp("http://2449.vod.myqcloud.com/2449_43b6f696980311e59ed467f22794e792.f20.mp4","嫂子别摸我");
videoController.ivThumb.setThumbInCustomProject("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");

4.Remember to invoke JCVideoPlayer.releaseAllVideos(); in onPause() of Fragment or Activity

Other APIs

Modify the thumb image view's scaleType property, default value is fitCenter. There will be black padding if the size of thumb is not compatible with screen size, try to use fitXY or other scaleType.

JCVideoPlayer.setThumbImageViewScalType(ImageView.ScaleType.FIT_XY);

Invoke JCFullScreenActivity.toActivity(...) to enter fullscreen directly.

JCFullScreenActivity.toActivity(this,
    "http://2449.vod.myqcloud.com/2449_43b6f696980311e59ed467f22794e792.f20.mp4",
    "嫂子别摸我");

Show title after fullscreen

jCVideoPlayer.setUp("http://2449.vod.myqcloud.com/2449_ded7b566b37911e5942f0b208e48548d.f20.mp4",
    "嫂子还摸我", false);
If videoview move out from screen in ListView or ViewPager,there will onDetachedFromWindow() reset the videoplayer.
The goal is to add just outside the library layout, adding configuration, other problems in judgment and library operations.

ProGuard

Need nothing

####Contributors

节操精选Android小组(Nathen Derlio) zhangzzqq carmelo-ruota

License MIT

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.