Click here to Skip to main content
15,885,537 members
Articles / Desktop Programming / MFC
Article

Extracting bitmaps from movies using DirectShow

Rate me:
Please Sign up or sign in to vote.
4.41/5 (25 votes)
4 Sep 20011 min read 632.9K   11.8K   114   153
An article showing how to extract a frame from a movie using DirectShow

Sample Image - FrameGrabberDemo.gif

Introduction

This article explains how to use the ISampleGrabber interface to grab a frame from a movie. We'll add the SampleGrabber filter to the graphbuilders filter list and use it to extract the bitmap. It'll show the necessary steps how to create the filter, create the graph, start it upp and grab the frame.

Setup the enviroment, we are using ATL smartpointers and DirectShow

#include "AtlBase.h"	// For atl smart pointers
#include "dShow.h"	// DirectShow header
#include "Qedit.h"	// SampleGrabber filter

The project has to be linked with Strmbase.lib

Since we're using COM we have to call CoInitialize() and CoUninitialize() in InitInstance, make sure the dialog destructor is called before CoUninitialize is called.

BOOL CFrameGrabberApp::InitInstance()
{
...
...
	CoInitialize(NULL);
	{
		CFrameGrabberDemoDlg dlg;
		m_pMainWnd = &dlg;
		int nResponse = dlg.DoModal();
	}
	CoUninitialize();
...
...
}

Step 1: Create the GraphBuilder

CComPtr<IGraphBuilder> pGraphBuilder;
HRESULT hr = ::CoCreateInstance(CLSID_FilterGraph, NULL, 
              CLSCTX_INPROC_SERVER,IID_IGraphBuilder,(void**)&pGraphBuilder);

Step 2: Create the Grabber filter and add it to the graph builder

CComPtr<IBaseFilter> pGrabberBaseFilter;
CComPtr<ISampleGrabber> pSampleGrabber;
AM_MEDIA_TYPE mt;
hr = ::CoCreateInstance(CLSID_SampleGrabber, NULL, CLSCTX_INPROC_SERVER,
                        IID_IBaseFilter, (LPVOID *)&pGrabberBaseFilter);
if (FAILED(hr))
	return hr;
pGrabberBaseFilter->QueryInterface(IID_ISampleGrabber, (void**)&pSampleGrabber);
if (pSampleGrabber == NULL)
	return E_NOINTERFACE;
hr = pGraphBuilder->AddFilter(pGrabberBaseFilter,L"Grabber");
if (FAILED(hr))
	return hr;

Step 3: Setup the media type we're interrested in and render the file. The graph builder will now setup all the filters it needs to render the movie including the sample grabber we added.

ZeroMemory(&mt,sizeof(AM_MEDIA_TYPE));
mt.majortype = MEDIATYPE_Video;
mt.subtype = MEDIASUBTYPE_RGB24;
mt.formattype = FORMAT_VideoInfo; 
hr = pSampleGrabber->SetMediaType(&mt);
if (FAILED(hr)) 
	return hr;
hr = pGraphBuilder->RenderFile(wFile,NULL); 
if (FAILED(hr)) 
	return hr;

Now when the graph is created we need to tell the sample grabber to stop the graph after receiving one sample, we also tell it to copy the sample data into it's internal buffer.

hr = pSampleGrabber->SetBufferSamples(TRUE);
if (FAILED(hr)) 
	return hr; 
hr = pSampleGrabber->SetOneShot(TRUE); 
if (FAILED(hr)) 
return hr;

Step 4: Now we run the graph and collects the data from the sample grabber.

hr = pMediaControl->Run();
if (FAILED(hr)) 
	return hr; 
long evCode;
hr = pMediaEventEx->WaitForCompletion(INFINITE, &evCode); 
if (FAILED(hr)) 
	return hr; 
AM_MEDIA_TYPE MediaType; 
ZeroMemory(&MediaType,sizeof(MediaType)); 
hr = pSampleGrabber->GetConnectedMediaType(&MediaType); 
if (FAILED(hr)) 
	return hr; 
// Get a pointer to the video header. 
VIDEOINFOHEADER *pVideoHeader = (VIDEOINFOHEADER*)MediaType.pbFormat; 
if (pVideoHeader == NULL) 
	return E_FAIL; 
// The video header contains the bitmap information. 
// Copy it into a BITMAPINFO structure. 
BITMAPINFO BitmapInfo; 
ZeroMemory(&BitmapInfo, sizeof(BitmapInfo)); 
CopyMemory(&BitmapInfo.bmiHeader, &(pVideoHeader->bmiHeader), 
           sizeof(BITMAPINFOHEADER)); 

// Create a DIB from the bitmap header, and get a pointer to the buffer. 
void *buffer = NULL; 
HBITMAP hBitmap = ::CreateDIBSection(0, &BitmapInfo, DIB_RGB_COLORS, &buffer, 
                                     NULL, 0); 
GdiFlush(); 
// Copy the image into the buffer. 
long size = 0; 
hr = pSampleGrabber->GetCurrentBuffer(&size,(long *)buffer);   
if (FAILED(hr)) 
	return  hr;

Now we have the bitmap handle, the demo program takes the sample one second in the movie and displays it to the user using an picture box.

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
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionselect output device Pin Pin
kinani11-Aug-11 6:32
kinani11-Aug-11 6:32 
GeneralThank you Pin
Xiaohu Shao26-Jul-10 17:08
Xiaohu Shao26-Jul-10 17:08 
Generalerror C2504: 'IDXEffect' and error C2787: 'IVideoWindow' : Pin
Virex_A30-Oct-08 14:54
Virex_A30-Oct-08 14:54 
Generalcan't grub from the "*.mp4" Pin
laguna_leo27-Sep-08 5:23
laguna_leo27-Sep-08 5:23 
Generalto all - if doesn't run DX9 Pin
Taulie26-Aug-07 0:20
Taulie26-Aug-07 0:20 
change from:
hr = pGraphBuilder->RenderFile(wFile,NULL);
if (FAILED(hr))
return hr;

// QueryInterface for some basic interfaces
pGraphBuilder->QueryInterface(IID_IMediaControl, (void **)&pMediaControl);
pGraphBuilder->QueryInterface(IID_IMediaEvent, (void **)&pMediaEventEx);

if (pMediaControl == NULL || pMediaEventEx == NULL)
return E_NOINTERFACE;

change to:

// QueryInterface for some basic interfaces
pGraphBuilder->QueryInterface(IID_IMediaControl, (void **)&pMediaControl);
pGraphBuilder->QueryInterface(IID_IMediaEvent, (void **)&pMediaEventEx);

if (pMediaControl == NULL || pMediaEventEx == NULL)
return E_NOINTERFACE;

hr = pGraphBuilder->RenderFile(wFile,NULL);
if (FAILED(hr))
return hr;
QuestionUrgent Problem... Pin
Tushar Jadhav22-Jun-07 19:22
Tushar Jadhav22-Jun-07 19:22 
Generalimage won't fit to picturebox(CStatic) Pin
Ed_Lon17-May-07 20:49
Ed_Lon17-May-07 20:49 
Generalhi Pin
vikram panwar26-Mar-07 23:54
vikram panwar26-Mar-07 23:54 
GeneralRe: hi Pin
rajendra@yahoo.com27-Mar-07 21:07
rajendra@yahoo.com27-Mar-07 21:07 
GeneralIt Does not run in Win2k Pin
rajendra@yahoo.com22-Mar-07 6:45
rajendra@yahoo.com22-Mar-07 6:45 
QuestionThe other way around Pin
shfnet13-Mar-07 4:29
shfnet13-Mar-07 4:29 
AnswerRe: The other way around Pin
tanvon malik21-Nov-07 17:57
tanvon malik21-Nov-07 17:57 
Questionhow vedio file(mpeg4) is streamed Pin
Member 248359415-Feb-07 18:38
Member 248359415-Feb-07 18:38 
GeneralProblem opening file with bad indexes Pin
Paolo Bozzoli29-Sep-06 6:07
professionalPaolo Bozzoli29-Sep-06 6:07 
GeneralConflict between directshow and wmplayer. Help! Pin
aritosteles10-Sep-06 12:13
aritosteles10-Sep-06 12:13 
GeneralError when compiling Pin
arindam_stcet3-May-06 4:19
arindam_stcet3-May-06 4:19 
GeneralError: Could not grab the frame. Pin
Venu Gopal Lolla13-Feb-06 19:09
Venu Gopal Lolla13-Feb-06 19:09 
GeneralRe: Error: Could not grab the frame. Pin
beatbox24-Mar-06 2:50
beatbox24-Mar-06 2:50 
QuestionTheoretical misunderstanding of a process Pin
whitesail6-Dec-05 13:25
whitesail6-Dec-05 13:25 
Generalcouldnt compile Pin
Member 175102016-Mar-05 22:50
Member 175102016-Mar-05 22:50 
GeneralError saving the grabbed frame to bmp file Pin
Agha Asif Raza15-Mar-05 10:38
Agha Asif Raza15-Mar-05 10:38 
Questionhow to grab images from .mov files Pin
srkrishna25-Jan-05 4:23
srkrishna25-Jan-05 4:23 
GeneralNo Video and Audio Pin
bozitaai11-Jan-05 19:32
bozitaai11-Jan-05 19:32 
Generali got this error while building this project Pin
slucky18-Dec-04 15:19
slucky18-Dec-04 15:19 
GeneralRe: i got this error while building this project Pin
John4420-Dec-04 20:59
John4420-Dec-04 20:59 

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.