vote up 2 vote down star

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?

flag

2 Answers

vote up 1 vote down check

I recommend the Theora video format.
Here are the benefits:

  • Totally open, free and patent-unencoumbered specification
  • Free working library implementation (encoder/decoder) and source-code examples, available under a BSD-style license
  • Not too shabby documentation.
  • Portable

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.

link|flag
vote up 4 vote down

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.

link|flag
Good answer, impressive demo, but our company is looking to avoid QT. – Kevin Laity Oct 29 at 15:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.