Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / MFC
Article

A class to easily generate AVI video with OpenGL and Video for Windows

Rate me:
Please Sign up or sign in to vote.
4.92/5 (33 votes)
26 Oct 20023 min read 441.1K   13.8K   124   92
If you want to generate an AVI video from your OpenGL application, this is the class you need.

Sample Image - AviGenerator.jpg

Introduction

CAviGenerator is a simple wrapper for the Video For Windows (VFW) library. In the back, it takes care of a numerous initialization for you and hides the library function calls so that the user can start generating movies in a minimal number of line of code and without having much knowledge about VFW.

The class main features are:

  • generation of AVI movies with any codec installed on your machine
  • no need of generating thousands of separate images,
  • simplicity of use

The class CAVIGenerator takes it's inspiration from MSDN example writeavi.c.

CAVIGenerator: A AVI Video wrapper

A simple class that make creation of AVI video easy.

Attributes

Each object contains general characteristics of the movie such as

  • the file name,
  • the frame rate, (fps)
  • the image description: BITMAPINFOHEADER
These members are declared as protected and are accessible by Set methods.

It contains also private members that are used to handle the "Video for Windows" AVI engine.

Constructors

CAVIGenerator();

Default constructor, default file name is "Untitled.avi", frame rate is 30 fps.

CAVIGenerator(LPCTSTR sFileName, CView* pView, DWORD dwRate);

In-place constructor with CView. See SetBitmapHeader(CView* pView).

CAVIGenerator(LPCTSTR sFileName, LPBITMAPINFOHEADER lpbih, DWORD dwRate);

In-place constructor with BITMAPINFOHEADER. See SetBitmapHeader(LPBITMAPINFOHEADER lpbih)

Setters and Getters

void SetFileName(const CString& _sFileName)

SetFileName sets the name of the output file. The filename extension should be .avi otherwize the creation of the AVI won't work. Checking of .avi extension is left to the user.

void SetRate(DWORD dwRate)

SetRate sets the frame rate (fps).

void SetBitmapHeader(CView* pView);

SetBitmapHeader fills in the information about the bitmap in m_bih using using from the view the view pView the width, height, 24 bit/color, and BRG. It makes sure that the width and height are both multiple of 4.

void SetBitmapHeader(LPBITMAPINFOHEADER lpbih);

SetBitmapHeader sets the bitmap info as in lpbih. It supposes that the user knows what he's doing.

LPBITMAPINFOHEADER GetBitmapHeader()

GetBitmapHeader returns a pointer to bitmap info header structure.

AVI creation Functions

HRESULT InitEngine();

InitEngine initializes the VFW engine and chooses a codec. This function has to be called before starting to grab frames. Some asserts are made to check that bitmap info has been properly initialized. It returns the last HRESULT. If something fails, the error message can be retreived using GetLastErrorMessage().

CAviGenerator avi;
HRESULT hr;

hr=avi.InitEngine();
if (FAILED(hr))
{
    AfxMessageBox(avi.GetLastErrorMessage());
    ...
}
HRESULT AddFrame(BYTE* bmBits);

AddFrame adds a frame to the movie. The data pointed by bmBits should be compatible with the bitmap description made by SetBitmapHeader. Typically with OpenGL, bmBits is the buffer read when using glReadPixels. As for InitEnginge, it returns the HRESULT.

void ReleaseEngine();

ReleaseEngine releases ressources allocated for movie and close the file.

Using CAVIGenerator

You have to follow these steps:

  1. Set the file name (optional), frame rate (optional) and bitmap info (required). If you want to grab an OpenGL screen, just send a pointer of the CView object to the SetBitmapHeader function. Alternative, the user can fill in the BITMAPINFOHEADER structure himself. Make sure that dimension of bitmap are a multiple of 4.
  2. Initialize the AVI engine calling InitEngine. A dialog box will popup to choose and fill in the parameters of the codec.
  3. For each frame: Do the drawing stuff, fill the image buffer with BRG ordering and send it to the AVI engine using AddFrame.
  4. Release ressources and close file by calling ReleaseEngine.

And you're are done! Here's some demo pseudo-code:

CAVIGenerator AviGen;	// generator
BYTE* bmBits;	// image buffer
HRESULT hr;

AviGen.SetRate(20);	// set 20fps
AviGen.SetBitmapHeader(GetActiveView());	// get bitmap info out of the view
hr=AviGen.InitEngine()	// start engine
if (FAILED(hr))
{
    AfxMessageBox(avi.GetLastErrorMessage());
    goto Cleaning;
}

LPBITMAPINFOHEADER lpbih=AviGen.GetBitmapInfo(); // getting bitmap info

// allocating memory for bmBits
bmBits=new BYTE[3 /* BRG*/ * lpbih->biWidth* lpbih->biHeight];	
for (int i=0;i<100;i++)	// make 100 frames
{
	// TODO pust your draw code here.	
	 /* Draw code where bmBits is filled. 
	 For example, to read OpenGL buffer, put 
	 glReadPixels(0,0,lpbih->biWidth,lpbih->biHeight, 
                       GL_BGR_EXT,GL_UNSIGNED_BYTE,bmBits); */ 

	// adding frame and continue if OK
	hr=AviGen.AddFrame(bmBits);
	if (FAILED(hr))
	{
	    AfxMessageBox(avi.GetLastErrorMessage());
	    goto Cleaning;
	}
}
	
// cleaning memory	
Cleaning:
AviGen.ReleaseEngine(); // releasing ressources
delete[] bmBits;	// release ressources

Adding CAVIGenerator to your project

  1. Add AVIGenerator.h and AVIGenerator.cpp to your project.

Non-MFC Applications

If you want to use CAviGenerator without MFC, undefine _AVIGENERATOR_MFC in AviGenerator.h. It will disable MFC function calls.

Demo project

A simple MFC SDI application that shows a cube and triangle rotating using OpenGL. When selecting the menu item Avi Generation->Generate..., you start to create a 100 frames AVI movie.

OpenGL drawing code is copy-pasted from lesson 5 of NeHe Productions.

Update History

  • 21.10.2002 Ported to non-MFC application, added HRESULT handling
  • 11.8.2001 Other bug fixed. Thanks to Dick W Augustsson.
  • 11.2.2001 Bug fixed in setting bitmap header biSizeImage field. Thanks to David.
  • 10.8.2001 Bug fixed in ~CAviGenerator and in example above (LPBITMAPINFOHEADER lpbih not initialized).
  • 10.5.2001 Bug fixed in CAVIGenerator::SetBitmapHeader(LPBITMAPINFOHEADER lpbih) function. Thanks to Lori Gardi.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions

 
QuestionExcellent article! However I need some extra .... Pin
pani6828-Dec-13 20:46
pani6828-Dec-13 20:46 
GeneralMy vote of 5 Pin
Manmohan2929-Aug-12 4:50
Manmohan2929-Aug-12 4:50 
GeneralMy vote of 5 Pin
bwrtjhp27-Jul-10 16:27
bwrtjhp27-Jul-10 16:27 
GeneralMy vote of 5 Pin
Nickolas10119-Jul-10 16:16
Nickolas10119-Jul-10 16:16 
QuestionSET DEFAULT COMPRESS SETTING Pin
Darvox3-Dec-08 1:08
Darvox3-Dec-08 1:08 
GeneralThanks Pin
Nathan Cramp28-Sep-08 0:35
Nathan Cramp28-Sep-08 0:35 
QuestionHow to make it work for DivX6.6.1 Codec ? Pin
Skywalker200824-May-07 6:51
Skywalker200824-May-07 6:51 
Questioncan i use avigenerator in my opengl program? Pin
leekeng8224-Apr-06 21:25
leekeng8224-Apr-06 21:25 
Generalwhat's the differences between AVICOMPRESSOPTIONS and COMPVARS Pin
sthugo13-Oct-05 15:53
sthugo13-Oct-05 15:53 
GeneralWorking with Dev-C++ Pin
benthurston30-Sep-05 11:09
benthurston30-Sep-05 11:09 
GeneralTerrain engine recording Pin
Nishant2724-Jul-05 3:28
Nishant2724-Jul-05 3:28 
GeneralRe: Terrain engine recording Pin
Vertexwahn17-Apr-06 12:39
Vertexwahn17-Apr-06 12:39 
Generalusing AviGenerator with GLUT Pin
salva230-May-05 11:10
salva230-May-05 11:10 
GeneralRe: using AviGenerator with GLUT Pin
seboeh8-Jun-05 4:07
seboeh8-Jun-05 4:07 
GeneralIts real COOL!!! Pin
arm2arm28-Mar-05 23:26
arm2arm28-Mar-05 23:26 
GeneralGuidance Pin
Chivalrous13-Apr-04 19:23
Chivalrous13-Apr-04 19:23 
GeneralRe: Guidance Pin
Jonathan de Halleux15-Apr-04 22:27
Jonathan de Halleux15-Apr-04 22:27 
Generalurgent: Generating AVI in C# using VFW Pin
Mr.Naveed21-Mar-04 23:54
Mr.Naveed21-Mar-04 23:54 
GeneralRe: urgent: Generating AVI in C# using VFW Pin
cadessi2-Jun-04 23:29
cadessi2-Jun-04 23:29 
hi,
take a look at this article, it's in vb.net but should help you:

http://www.xaml.net/articles/webcam-video-capture-art7-3.asp
QuestionHow to add a sound to AVI stream? Pin
Hanney Wang15-Feb-04 15:32
Hanney Wang15-Feb-04 15:32 
AnswerRe: How to add a sound to AVI stream? Pin
Member 450778120-Sep-07 10:17
Member 450778120-Sep-07 10:17 
Questionhow to use one copression manually? Pin
philmus2522-Jan-04 8:30
philmus2522-Jan-04 8:30 
AnswerRe: how to use one copression manually? Pin
Jonathan de Halleux25-Jan-04 8:24
Jonathan de Halleux25-Jan-04 8:24 
GeneralRe: how to use one copression manually? Pin
Brandybuck27-Aug-04 3:42
Brandybuck27-Aug-04 3:42 
GeneralMSVC 6 Pin
mansour_ahmadian8-Jan-04 3:54
mansour_ahmadian8-Jan-04 3:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.