Click here to Skip to main content
15,884,627 members
Articles / Desktop Programming / MFC
Article

Capture Live Video from various Video Devices.

Rate me:
Please Sign up or sign in to vote.
4.72/5 (62 votes)
20 May 2004CPOL2 min read 748.7K   45.1K   206   201
LiveVideo is an application to capture live video from various video capture devices.

Sample Image - LiveVideo.jpg

Introduction

This is an attempt to create an application which captures Live video from a Video capture device and USB attached WebCam all together in the same application. While developing my project, I needed to capture the video from various video devices including TV. Though, I found some source for capturing Video, it was not so efficient. So, that prompted me to develop my own independent application. Initially, “LiveVideo” detects the availability of the Video Capture card and whether WebCam is attached or not. Otherwise, it shows the message. Most of the API functions are used from DirectX SDK.

Steps to Use

  • Create a Dialog based application.
  • Insert a Picture control of size 320x240 pixel.
  • In the properties of the Picture control, set TYPE as ‘Rectangle’ and COLOR as ‘Black’.
  • Add the files “CaptureVideo.cpp” and “CaptureDevice.h” to your project.
  • Add “CaptureVide.h” into your implementation header file.
  • Create an Object of the class “CCaptureVideo” using Class wizard.
  • Link the libraries strmbasd.lib, wmvcore.lib, wmstub.lib in your project settings.

Now, using the object, invoke InitializeVideo(HWND hWnd) function to initialize the video.

HRESULT hr = capVideo.InitializeVideo(hWnd);

Where hWnd is the window handle of the picture control.

  • StartSVideo() - To start capturing from SVideo.
  • StartCompositeVideo() - To start capturing from Composite Video.
  • StartTVTuner() - To start capturing from TVTuner.
  • StartWebcam() - To start capturing from WebCam.

Important:

Don’t forget to uninitialize the Video by using UnInitializeVideo() before destroying your application.

Requirements:

  • Video Capture card. I’ve tested with “WinFast TV2000 XP WDM Video Capture” card. Hope it will work with all video capture cards.
  • USB Cam.
  • You need to install DirectX, which is available freely from Microsoft. You can download DirectX 9.0 from Microsoft.
  • For development, install DirectX 9.0 SDK. You can download DirectX 9.0 SDK from Microsoft.

Conclusion

I hope this article is of some use to you. I would add Configuration settings of the Video features and Video quality in my next version. Feel free to use these classes as you like. Any comments or improvements would be appreciated.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Hi Friends.,

I am DILLIP working as a Software Engineer in South Korea .

My Hobbies:

Listening to Music, Net Browsing , watching TV..

Comments and Discussions

 
QuestionConvet in C# Pin
Abu Syed Khan20-Feb-07 4:45
Abu Syed Khan20-Feb-07 4:45 
GeneralSave Image Pin
sprmat848-Feb-07 11:16
sprmat848-Feb-07 11:16 
GeneralRe: Save Image Pin
tanvon malik25-Sep-07 2:41
tanvon malik25-Sep-07 2:41 
GeneralRe: Save Image Pin
ricox7824-Mar-08 9:41
ricox7824-Mar-08 9:41 
QuestionIs it Possible in Web Applications Pin
Anandhveera24-Jan-07 18:01
Anandhveera24-Jan-07 18:01 
QuestionSave in Hard Disk Directly [abbasmoh56@yahoo.com] Pin
maghaei20-Nov-06 23:21
maghaei20-Nov-06 23:21 
QuestionSave in Hard Disk Directly Pin
maghaei20-Nov-06 23:20
maghaei20-Nov-06 23:20 
GeneralSave Captured Video Pin
shital_harode@rediffmail.com6-Nov-06 23:37
shital_harode@rediffmail.com6-Nov-06 23:37 
QuestionVideo quality issue Pin
pr0digy130-Oct-06 10:12
pr0digy130-Oct-06 10:12 
AnswerRe: Video quality issue Pin
SreerajManayath29-Mar-12 23:12
SreerajManayath29-Mar-12 23:12 
GeneralICaptureGraphBuilder2 Pin
vkvk25-Oct-06 3:09
vkvk25-Oct-06 3:09 
Generaldshow [modified] Pin
tahinn5-Oct-06 19:17
tahinn5-Oct-06 19:17 
GeneralDocuments.obj Pin
Chris J7-Sep-06 13:12
Chris J7-Sep-06 13:12 
General"fatal error LNK1136: invalid or corrupt file" Pin
Chris J6-Sep-06 8:02
Chris J6-Sep-06 8:02 
GeneralRe: "fatal error LNK1136: invalid or corrupt file" Pin
Big-Ben14-Mar-07 4:54
Big-Ben14-Mar-07 4:54 
GeneralBuilder6 please help Pin
marsianinek10-Jul-06 2:09
marsianinek10-Jul-06 2:09 
GeneralNetwork Streaming Pin
Ahmed Charfeddine23-Jun-06 22:24
Ahmed Charfeddine23-Jun-06 22:24 
GeneralWM ASF Writer Filter.... dont want to write file Pin
Andy Rama7-Jun-06 20:40
Andy Rama7-Jun-06 20:40 
GeneralWME Streaimg using DirectX (ASF Writter Filter)?, IWMWriterNetworkSink interface? [modified] Pin
Andy Rama6-Jun-06 21:39
Andy Rama6-Jun-06 21:39 
Questionerror LNK2001 and fatal error LNK1120 Pin
malgosiamarek18-May-06 10:57
malgosiamarek18-May-06 10:57 
AnswerRe: error LNK2001 and fatal error LNK1120 Pin
yaminisridaran12-Jul-07 3:08
yaminisridaran12-Jul-07 3:08 
QuestionHow to get a sample in memory Pin
maloe9-May-06 14:21
maloe9-May-06 14:21 
GeneralError after debugging Pin
Studist22-Mar-06 21:26
Studist22-Mar-06 21:26 
GeneralDoesn't work with multiport capture cards Pin
dimavs1-Mar-06 17:46
dimavs1-Mar-06 17:46 
QuestionCan it work with other USB video capture devices? Pin
_Paralax_6-Feb-06 19:36
_Paralax_6-Feb-06 19:36 

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.