How to generate movies...

Hi,

do you know an easy way to generate movies from OpenGL animation ?
Do you know where I could find examples ?

Thanks a lot
Mat

??? “OpenGL animation” ???
OpenGL doesn’t support any type of animations, it’s a low level API, you know.

You want to use animated textures?

BlackJack

Go to nehe.gamedev.net, there’s a tutorial on how to load an AVI format movie. Maybe it’ll help.

Hi,

in fact I do not know how to describe it. I am new in OpenGL world.

Just like you have a cube and you make a rotation on this cube… Then you want to generate a movie from this…

Mat

glReadPixels(…) at each frame and save the data in an appropriate format, i.e. bmp, tga or whatever. so you get frame01.bmp and so on. Use other software to create the movie. Or maybe look at something such as the quicktime libraries, which may do this sort of thing.

http://developer.apple.com/products/qt4sdk.html

Thanks !!

I will try this

Mat

Hi,

Your request is how to make AVI movies …

Here’s a useful ref to some code to do
just this … uncompressed, cross platform
stuff.
http://cs.anu.edu.au/people/Hugh.Fisher/3dstuff/index.html

Enjoy!

Rob.

Thanks !!!