I am using Tao framework and I have a simple opengl control.
How can I record a video from this control and save it to a file?

link|improve this question

Is there any example? I can take pictures but how convert them to a video file? – mrbm Feb 17 at 7:51
1  
Perhaps this is helpful: stackoverflow.com/questions/539257/… – Bart Feb 17 at 8:03
@Bart : Good, but is there any better way? I mean without taking pictures. – mrbm Feb 17 at 8:10
feedback

2 Answers

up vote 1 down vote accepted

See here for a link that mentions both Bitmap screen capture in C# and starts to describe the AVI conversion.

For further information about the library used to in the first link to make an avi file from a collection of bitmap images see here.

See here for an example that uses the Media Player Encoder in order record the screen.

The more complicated and direct way would be to either use a video capture card or write a software device that emulates one and feed that source to DirectShow filter using DirectShow.Net or Pinvoking other DirectShow libaries directly.

link|improve this answer
feedback

How can I record a video from this control and save it to a file?

Use glReadPixels to get the pixel data. Feed the pixel data into a video encoder (e.g. a DirectShow filter graph, or through ffmpeg/libavcodec or sump the images into files and encode them to video later).

link|improve this answer
Yes, I used Gl.glReadPixels to capture an image, but I'm looking for a better way to record video, but it seems there is not and I have to use something like ffmpeg – mrbm Feb 17 at 14:16
feedback

Your Answer

 
or
required, but never shown

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