Giter Site home page Giter Site logo

msoftware / jiecaovideoplayer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lipangit/jiaozivideoplayer

0.0 2.0 0.0 23.23 MB

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

License: MIT License

Java 100.00%

jiecaovideoplayer's Introduction

Jiecao Video Player

Platform Maven Central Licenses GitHub stars Android Arsenal

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. It will not disturb or change the playing state when entering or exiting fullscreen
  5. Support to custom view controller's skin
  6. Support to display the thumb when playing mp3 audio

Demo Screenshot

Demo Screenshot

Demo video : http://v.youku.com/v_show/id_XMTQ2NzUwOTcyNA==.html?firsttime=0&from=y1.4-2

Usage

1.Add the library in build.gradle

compile 'fm.jiecao:jiecaovideoplayer:1.7'

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 videoController = (JCVideoPlayer) findViewById(R.id.videocontroller);
videoController.setUp("http://2449.vod.myqcloud.com/2449_43b6f696980311e59ed467f22794e792.f20.mp4",
    "http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640",
    "嫂子别摸我");

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

Other APIs

Set up the video player appearance, you can set the current video player's skin or set the global skin. Priority: some video player instance skin > global skin > default skin

JCVideoPlayer.setGlobleSkin();//set up global skin
videoController.setSkin();//set up some video player instance skin

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 FullScreenActivity.toActivity(...) to enter fullscreen directly.

FullScreenActivity.toActivity(this,
    "http://2449.vod.myqcloud.com/2449_43b6f696980311e59ed467f22794e792.f20.mp4",
    "http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640",//此时的缩略图地址可以为空
    "嫂子别摸我");

ProGuard

##Eventbus
-keepclassmembers class ** {
    public void onEvent*(***);
}
# Only required if you use AsyncExecutor
-keepclassmembers class * extends de.greenrobot.event.util.ThrowableFailureEvent {
    public <init>(java.lang.Throwable);
}
# Don't warn for missing support classes
-dontwarn de.greenrobot.event.util.*$Support
-dontwarn de.greenrobot.event.util.*$SupportManagerFragment

Downloads

jiecaovideoplayer's People

Contributors

derlio avatar

Watchers

Michael jentsch avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.