Click here to Skip to main content
6,630,586 members and growing! (18,020 online)
Email Password   helpLost your password?
Multimedia » Audio and Video » DirectShow     Intermediate

Extracting bitmaps from movies using DirectShow

By Markus Axelsson

An article showing how to extract a frame from a movie using DirectShow
VC6, Windows, MFC, Dev
Posted:4 Sep 2001
Views:303,268
Bookmarked:90 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
33 votes for this article.
Popularity: 5.81 Rating: 3.82 out of 5
3 votes, 13.0%
1

2
4 votes, 17.4%
3
5 votes, 21.7%
4
11 votes, 47.8%
5

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

About the Author

Markus Axelsson


Member

Location: Sweden Sweden

Other popular Audio and Video articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 151 (Total in Forum: 151) (Refresh)FirstPrevNext
Generalerror C2504: 'IDXEffect' and error C2787: 'IVideoWindow' : PinmemberVirex_A15:54 30 Oct '08  
Generalcan't grub from the "*.mp4" Pinmemberlaguna_leo6:23 27 Sep '08  
Generalto all - if doesn't run DX9 Pinmembergrandmasta11:20 26 Aug '07  
QuestionUrgent Problem... PinmemberTushar Jadhav20:22 22 Jun '07  
Generalimage won't fit to picturebox(CStatic) PinmemberEd_lon21:49 17 May '07  
Generalhi Pinmembervikram panwar0:54 27 Mar '07  
GeneralRe: hi Pinmemberrajendra@yahoo.com22:07 27 Mar '07  
GeneralIt Does not run in Win2k Pinmemberrajendra@yahoo.com7:45 22 Mar '07  
QuestionThe other way around Pinmembershfnet5:29 13 Mar '07  
AnswerRe: The other way around Pinmembertanvon malik18:57 21 Nov '07  
Generalhow vedio file(mpeg4) is streamed Pinmember19:38 15 Feb '07  
GeneralProblem opening file with bad indexes PinmemberSbarBaz7:07 29 Sep '06  
GeneralConflict between directshow and wmplayer. Help! Pinmemberaritosteles13:13 10 Sep '06  
GeneralError when compiling Pinmemberarindam_stcet5:19 3 May '06  
GeneralError: Could not grab the frame. PinmemberVenu Gopal Lolla20:09 13 Feb '06  
GeneralRe: Error: Could not grab the frame. Pinmemberbeatbox3:50 24 Mar '06  
QuestionTheoretical misunderstanding of a process Pinmemberwhitesail14:25 6 Dec '05  
Generalcouldnt compile PinmemberUsman mani23:50 16 Mar '05  
GeneralError saving the grabbed frame to bmp file PinmemberA. Asif Raza11:38 15 Mar '05  
Generalhow to grab images from .mov files Pinmembersrkrishna5:23 25 Jan '05  
GeneralNo Video and Audio Pinmemberbozitaai20:32 11 Jan '05  
Generali got this error while building this project Pinmemberslucky16:19 18 Dec '04  
GeneralRe: i got this error while building this project PinmemberJohn4421:59 20 Dec '04  
GeneralRe: i got this error while building this project Pinmemberpig head xiaoma18:38 8 Jun '05  
GeneralRe: i got this error while building this project PinmemberJohn440:36 10 Jun '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 4 Sep 2001
Editor: Chris Maunder
Copyright 2001 by Markus Axelsson
Everything else Copyright © CodeProject, 1999-2009
Web09 | Advertise on the Code Project