Does anyone know of a way to play video files in opengl? I guess I have to start by decoding a file, which JMF does, but I don't know how to get any kind of object, like a plain pixel array to dump in a texture, that would be usable in opengl.
I used gstreamer to play videos - there is a Java wrapper available. It will supply the decoded images in a ByteBuffer which can be uploaded to OpenGL.
Also see xuggle with ffmeg.
Cas :)