Skip to content

xiaole0310/JieCaoVideoPlayer

 
 

Repository files navigation

  • This project need translators, mother language is english, you can change everything edit readme, release note, formate variable and annotation.

Ambition is become the most widely used video playback control. Q群:490442439 验证信息:jcvd

I think the final solution for play video in android is android.media.MediaPlayer, other player is not in the trend, even if the android.media.MediaPlayer have disavantages we should make concession, if android.media.MediaPlayer have defect we will think to change other player.

中文文档 WorkPlan

Features

  1. Video fullscreen and float tiny window
  2. Completely custom ui
  3. In ListViewViewPager and ListViewViewPager and Fragment and other nested fragments and views situation, it works well
  4. Gestrues to modify progress and volume
  5. 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
  6. It will not disturb or change the playing state when entering or exiting fullscreen
  7. Gravity sensor auto fullscreen
  8. WebView with local video control
  9. Support https and rtsp
  10. Less than 100kb

Effect

jiecaovideoplayer-5.8.1.apk

Demo Screenshot

Usage

Even the custom UI, or has changed to the Library, is also the five steps to use the player.

1.Import library

compile 'fm.jiecao:jiecaovideoplayer:5.8.1'

Or download lib not recommended

2.Add JCVideoPlayer in your layout

<fm.jiecao.jcvideoplayer_lib.JCVideoPlayerStandard
    android:id="@+id/videoplayer"
    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.videoplayer);
jcVideoPlayerStandard.setUp("http://2449.vod.myqcloud.com/2449_22ca37a6ea9011e5acaaf51d105342e3.f20.mp4"
                            , JCVideoPlayerStandard.SCREEN_LAYOUT_NORMAL, "嫂子闭眼睛");
jcVideoPlayerStandard.thumbImageView.setImage("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");

4.In Activity

@Override
public void onBackPressed() {
    if (JCVideoPlayer.backPress()) {
        return;
    }
    super.onBackPressed();
}
@Override
protected void onPause() {
    super.onPause();
    JCVideoPlayer.releaseAllVideos();
}

5.In AndroidManifest.xml

<activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize|keyboardHidden"
    android:screenOrientation="portrait" /> <!-- or android:screenOrientation="landscape"-->

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.

About

Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.6%
  • HTML 0.4%