Skip to content

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.

中文文档

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. Support hls,rtsp
  8. Put head data
  9. Gravity sensor auto fullscreen

Effect

jiecaovideoplayer-4.6.3-demo.apk

Demo Screenshot

Usage

1.Import library

compile 'fm.jiecao:jiecaovideoplayer:4.6.3'

Or download lib

2.Add JCVideoPlayer in your layout

<JCVideoPlayerStandardandroid: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

JCVideoPlayerStandardjcVideoPlayerStandard = (JCVideoPlayerStandard) findViewById(R.id.custom_videoplayer_standard);
jcVideoPlayerStandard.setUp("http://2449.vod.myqcloud.com/2449_22ca37a6ea9011e5acaaf51d105342e3.f20.mp4"
, JCVideoPlayerStandard.SCREEN_LAYOUT_LIST, "嫂子闭眼睛");
jcVideoPlayerStandard.thumbImageView.setThumbInCustomProject("http://p.qpic.cn/videoyun/0/2449_43b6f696980311e59ed467f22794e792_1/640");

4.In Activity

@OverridepublicvoidonBackPressed() {
if (JCVideoPlayer.backPress()) {
return;
}
super.onBackPressed();
}
@OverrideprotectedvoidonPause() {
super.onPause();
JCVideoPlayer.releaseAllVideos();
}

Other APIs

Start fullscreen directly.

JCVideoPlayerStandard.startFullscreen(this, JCVideoPlayerStandard.class, "http://2449.vod.myqcloud.com/2449_22ca37a6ea9011e5acaaf51d105342e3.f20.mp4", "嫂子辛苦了");

Gravity sensor auto fullscreen

JCVideoPlayer.JCAutoFullscreenListenersensorEventListener;
SensorManagersensorManager;
@OverrideprotectedvoidonCreate(@NullableBundlesavedInstanceState) {
super.onCreate(savedInstanceState);
sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
sensorEventListener = newJCVideoPlayer.JCAutoFullscreenListener();
}
@OverrideprotectedvoidonResume() {
super.onResume();
SensoraccelerometerSensor = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
sensorManager.registerListener(sensorEventListener, accelerometerSensor, SensorManager.SENSOR_DELAY_NORMAL);
}
@OverrideprotectedvoidonPause() {
super.onPause();
sensorManager.unregisterListener(sensorEventListener);
}

ProGuard

-keep class tv.danmaku.ijk.** { *; }
-dontwarn tv.danmaku.ijk.**

Play video in assets you should copy to local path first.Try by myself like thistextureview will stop on first frame and error on logcat

##Custom UI

##Contributors

NathenDerliozhangzzqqcarmelo-ruotawxxswMiguel Araguese16din

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

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages