Is there a good solution for playing a compressed video in OpenGL?
It needs to
- Be cross-platform (Windows and MacOSX)
- Render to a texture (preferably but not 100% needed)
- Cost less than Bink
Any ideas?
|
|
|
|
|
|
|
I recommend the Theora video format.
The decoder lets you decode to R'G'B', which can easily be uploaded with an OpenGL buffer object and fetched in a shader via a sampler. |
||
|
|
|
|
Qt can be used to render widgets (including a video player) in an OpenGL scene. It has a multimedia framework called phonon that can play video and audio. See this demo video. Qt is cross-platform and is now licensed under LGPL. |
||
|