I want to stream a 360 video from YouTube in my android app in such a way that it is compatible with Google Cardboard- that is, I want the video to be streamed side by side like in CardboardView.
I have been searching the internet about this and I don't seem to have much luck with it. So any amount of help would be heavily appreciated. Thanks in advance!
CardboardView
is an extension ofGLSurfaceView
. That means that all the cardboard stuff is run directly over OpenGL (which makes sense). So probably you next step of research should be how to show videos through a OpenGL view. This maybe: #9376098 – Stiffnecked