Skip to content

Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen

License

Notifications You must be signed in to change notification settings

lovecode2011/JiaoZiVideoPlayer

 
 

Repository files navigation

周一到周三每天上午10:00开始直播写代码,回答大家的使用问题,请大家进入直播间后提问,直播期间不再手动打字回复

完美的列表滑动的检测,一行代码将系统的播放器换成Ijkplayer Exoplayer Vitamio等

Q群:490442439 验证信息:jzvd

中文文档 WorkPlan 微博 视频教程

Features

  1. You can completely customize the UI and any function
  2. One line of code to switch the playback engine, supported video formats and protocols depends on the playback engine,android.media.MediaPlayer ijkplayer
  3. Perfect detection list sliding
  4. Full screen and small window option available
  5. Full-screen works in multiple nested modes like ListView, ViewPager and ListView, ViewPager and Fragment
  6. Can load, pause, play and other normal state into the full screen and exit full screen
  7. A variety of video adaptation screen mode, can be covered full screen, you can cut full screen
  8. Ability to enter full-screen automatically using gravity sensing
  9. Change progress and volume right from full screen mode
  10. Home key to exit the interface to suspend the playback, return to the interface to continue playing
  11. WebView Nested Local Video Controls

A demo showing available effects

jiaozivideoplayer-6.2.3.apk

Demo Screenshot

List sliding automatically into the small window effect

Usage

Only five steps to use the player.

1.Import library

compile 'cn.jzvd:jiaozivideoplayer:6.2.3'

Or download lib (not recommended)

2.Add JZVideoPlayer in your layout

<cn.jzvd.JZVideoPlayerStandard
    android:id="@+id/videoplayer"
    android:layout_width="match_parent"
    android:layout_height="200dp"/>

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

JZVideoPlayerStandard jzVideoPlayerStandard = (JZVideoPlayerStandard) findViewById(R.id.videoplayer);
jzVideoPlayerStandard.setUp("http://jzvd.nathen.cn/c6e3dc12a1154626b3476d9bf3bd7266/6b56c5f0dc31428083757a45764763b0-5287d2089db37e62345123a1be272f8b.mp4"
                            , JZVideoPlayerStandard.SCREEN_WINDOW_NORMAL, "饺子闭眼睛");
jzVideoPlayerStandard.thumbImageView.setImage("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");

4.In Activity

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

5.In AndroidManifest.xml

<activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize|keyboardHidden"
    android:screenOrientation="portrait" /> <!-- or android:screenOrientation="landscape"-->
  • Simple use
  1. QuickStart
  2. In ListView
  3. Tiny window
  4. Directly fullscreen
  5. API
  • Customize
  1. Custom code
  2. Custom code sample
  3. Custom UI
  4. Custom UI sample

Common problem

Need translator to make English native.

  1. 熊晓清 QQ:137048616
  2. Lionet QQ:2950527715
  3. montauk QQ:958489121
  4. 张展硕 QQ:229431468
  1. 熊晓清 QQ:137048616
  2. の伤也快乐 QQ:466278628

Need translator to make English native.

This project is dedicated to small and medium-sized app integrated video playback, greatly reducing development costs, if you save a ton of time, the proposed retail price: reward 76 USD. (Not expensive you brothers, get two years of the project than the female anchor song song it)

Reward

License MIT

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.

About

Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.7%
  • HTML 0.3%