It is a lite library to render 360 degree panorama video for Android.
- OpenGLES 2.0 required
- Android 4.0.3 (Ice Cream Sandwich API-15) required
- Compatible with all Players which have
setSurface
api. - This library do nothing but render the image of video frame, so you may deal with the issues about
MediaPlayer
orIjkMediaPlayer
(e.g. play local file, rtmp, hls) by yourself; - 这个库只负责视频帧画面的渲染,所有的视频文件播放、控制的工作都交给了
MediaPlayer
或者IjkMediaPlayer
,你可能需要自己处理使用Player过程中出现的问题(比如播放本地文件、rtmp、hls).
-SNAPSHOT
2.0.3.beta
- bug fix.
- add anti-distortion support.
// init configuation
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
...
.barrelDistortionConfig(new BarrelDistortionConfig().setDefaultEnabled(true).setScale(0.95f))
.build(R.id.gl_view);
}
// setter
mVRLibrary.setAntiDistortionEnabled(true);
- hotspot and widget(which has normal/focused/checked status) supported.
// add hotspot dynamicly.
private MDPosition[] positions = new MDPosition[]{
MDPosition.newInstance().setZ(-8.0f).setYaw(-45.0f),
MDPosition.newInstance().setZ(-18.0f).setYaw(15.0f).setAngleX(15),
};
findViewById(R.id.button_add_plugin).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
final int index = (int) (Math.random() * 100) % positions.length;
MDPosition position = positions[index];
// create a hotspot builder
MDHotspotBuilder builder = MDHotspotBuilder.create()
.size(4f,4f)
.provider(0, new AndroidDrawableProvider(android.R.drawable.star_off))
.provider(1, new AndroidDrawableProvider(android.R.drawable.star_on))
.provider(10, new AndroidDrawableProvider(android.R.drawable.checkbox_off_background))
.provider(11, new AndroidDrawableProvider(android.R.drawable.checkbox_on_background))
.listenClick(new MDVRLibrary.ITouchPickListener() {
@Override
public void onHotspotHit(IMDHotspot hitHotspot, MDRay ray) {
if (hitHotspot instanceof MDWidgetPlugin){
MDWidgetPlugin widgetPlugin = (MDWidgetPlugin) hitHotspot;
widgetPlugin.setChecked(!widgetPlugin.getChecked());
}
}
})
.title("star" + index)
.position(position)
.status(0,1)
.checkedStatus(10,11);
// create a widget plugin
MDWidgetPlugin plugin = new MDWidgetPlugin(builder);
getVRLibrary().addPlugin(plugin);
Toast.makeText(MD360PlayerActivity.this, "add plugin position:" + position, Toast.LENGTH_SHORT).show();
}
});
private class AndroidDrawableProvider implements MDVRLibrary.IBitmapProvider{
private int res;
public AndroidDrawableProvider(int res) {
this.res = res;
}
@Override
public void onProvideBitmap(MD360BitmapTexture.Callback callback) {
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), this.res);
callback.texture(bitmap);
}
}
- eye picker
// setEyePickChangedListener dynamicly.
final TextView hotspotText = (TextView) findViewById(R.id.hotspot_text);
getVRLibrary().setEyePickChangedListener(new MDVRLibrary.IPickListener() {
@Override
public void onHotspotHit(IMDHotspot hotspot, long hitTimestamp) {
String text = hotspot == null ? "nop" : String.format(Locale.CHINESE, "%s %fs", hotspot.getTitle(), (System.currentTimeMillis() - hitTimestamp) / 1000.0f );
hotspotText.setText(text);
}
});
// disable the eye picker
getVRLibrary().eyePickEanbled(false);
1.5.3
- Keep the GLContext instance onPause.
- GLTextureView supported!
1.5.0
- make the switch mode public.
switchInteractiveMode(Activity activity, int mode)
,switchDisplayMode(Activity activity, int mode)
andswitchProjectionMode(Activity activity, int mode)
. - add dome support.
- add stereo support.
- add plane support.
- switch projection in runtime support.
1.4.0
- better way to render multi screen. note:Only one GLSurfaceView required now !!
.build(R.id.surface_view1,R.id.surface_view2)
=>.build(R.id.surface_view)
- add motion with touch strategy.
1.3.0
- add some reset function, such as
MDVRLibrary#resetPinch
,MDVRLibrary#resetTouch
- support sensor delay configuration in motion mode
- support sensorCallback
- fix a crucial bug: has an line in the center of the sphere
1.2.0
- pinch gesture supported
- changed the way to listen onClick event
- fix the image distortion on the polar of sphere
1.1.0
- Bitmap supported. For more info, See BitmapPlayerActivity in demo.
- Add callback if the TYPE_ROTATION_VECTOR is NOT supported.
- Use more divisions in sphere and load
.obj
file in working thread. - Bug fix: Can not drag after setOnClickListener.
- Switch to IjkMediaPlayer in demo.
1.0.0
- Motion Sensor
- Glass Mode(multi-screen)
- Fix a few bugs.
- More easier.
- Worked with MediaPlayer or ijkMediaPlayer.
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
dependencies {
compile 'com.github.ashqal:MD360Player4Android:1.5.3'
}
STEP1 Define GLSurfaceView
in the layout xml.
<android.opengl.GLSurfaceView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
STEP2 Init the MDVRLibrary
in the Activity.
public class MDVRLibraryDemoActivity extends MediaPlayerActivity {
private MDVRLibrary mVRLibrary;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_md_render);
// init VR Library
initVRLibrary();
}
private void initVRLibrary(){
// new instance
mVRLibrary = MDVRLibrary.with(this)
.displayMode(MDVRLibrary.DISPLAY_MODE_NORMAL)
.interactiveMode(MDVRLibrary.INTERACTIVE_MODE_MOTION)
.video(new MDVRLibrary.IOnSurfaceReadyCallback() {
@Override
public void onSurfaceReady(Surface surface) {
// IjkMediaPlayer or MediaPlayer
getPlayer().setSurface(surface);
}
})
.build(R.id.surface_view);
}
}
STEP3 Addition call in onTouchEvent
onResume
onPause
onDestroy
.
public class MDVRLibraryDemoActivity extends MediaPlayerActivity {
@Override
public boolean onTouchEvent(MotionEvent event) {
return mVRLibrary.handleTouchEvent(event) || super.onTouchEvent(event);
}
@Override
protected void onResume() {
super.onResume();
mVRLibrary.onResume(this);
}
@Override
protected void onPause() {
super.onPause();
mVRLibrary.onPause(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
mVRLibrary.onDestroy();
}
}
Builder#gesture
@Override
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
.....
.gesture(new MDVRLibrary.IGestureListener() {
@Override
public void onClick(MotionEvent e) {
Toast.makeText(VideoPlayerActivity.this, "onClick!", Toast.LENGTH_SHORT).show();
}
})
.build(R.id.surface_view);
}
Builder#pinchEnabled
@Override
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
.....
.pinchEnabled(true) //disable by default
.build(R.id.surface_view);
}
add ifNotSupport
to builder, e.g. VideoPlayerActivity#createVRLibrary
@Override
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
.....
.ifNotSupport(new MDVRLibrary.INotSupportCallback() {
@Override
public void onNotSupport(int mode) {
String tip = mode == MDVRLibrary.INTERACTIVE_MODE_MOTION
? "onNotSupport:MOTION" : "onNotSupport:" + String.valueOf(mode);
Toast.makeText(VideoPlayerActivity.this, tip, Toast.LENGTH_SHORT).show();
}
})
.build(R.id.surface_view);
}
@Override
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
...
.directorFactory(new DirectorFactory()) //替换默认MD360DirectorFactory
...
.build(R.id.surface_view);
}
private static class DirectorFactory extends MD360DirectorFactory{
@Override
public MD360Director createDirector(int index) {
switch (index){
// setAngle: angle to rotate in degrees
case 1: return MD360Director.builder().setAngle(20).setEyeX(-2.0f).setLookX(-2.0f).build();
default: return MD360Director.builder().setAngle(20).build();
}
}
}
- support sensor delay configuration in motion mode.
MDVRLibrary.with(this)
....
.motionDelay(SensorManager.SENSOR_DELAY_GAME)
...
.build(R.id.surface_view);
- support sensorCallback
MDVRLibrary.with(this)
....
.sensorCallback(new SensorEventListener() {
@Override
public void onSensorChanged(SensorEvent event) {
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
})
....
.build(R.id.surface_view);
// projection mode in MDVRLibrary.java
public static final int PROJECTION_MODE_SPHERE = 201;
public static final int PROJECTION_MODE_DOME180 = 202;
public static final int PROJECTION_MODE_DOME230 = 203;
public static final int PROJECTION_MODE_DOME180_UPPER = 204;
public static final int PROJECTION_MODE_DOME230_UPPER = 205;
public static final int PROJECTION_MODE_STEREO_SPHERE = 206;
public static final int PROJECTION_MODE_PLANE_FIT = 207;
public static final int PROJECTION_MODE_PLANE_CROP = 208;
public static final int PROJECTION_MODE_PLANE_FULL = 209;
// You should call MDVRLibrary#onTextureResize(float width, float height)
// If you are using DOME projection and PLANE projection.
@Override
protected MDVRLibrary createVRLibrary() {
return MDVRLibrary.with(this)
...
.projectionMode(MDVRLibrary.PROJECTION_MODE_STEREO_SPHERE)
...
.build(R.id.surface_view);
}
// switch in runtime
// MDVRLibrary#switchProjectionMode(Activity activity, int mode)
- HTY360Player(360 VR Player for iOS)
- NitroAction360(VR player for Android)
- Learn-OpenGLES-Tutorials
- ANDROID高性能图形处理之二.OPENGL ES
- Moredoo.com
- Open a new issue.
- or ashqalcn@gmail.com
- or QQ Group.
##LICENSE
Copyright 2016 Asha
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.