Create an instance of the ltmfCapture class. This is accomplished using the Win32 CoCreateInstance function, as follows:
//C SourceIltmfCapture* pCapture;CoCreateInstance(&CLSID_ltmfCapture, NULL, CLSCTX_INPROC_SERVER,&IID_IltmfCapture,(void**) &pCapture);//C++ SourceIltmfCapture* pCapture;CoCreateInstance(&CLSID_ltmfCapture, NULL, CLSCTX_INPROC_SERVER,&IID_IltmfCapture, (void**) &pCapture);
Define the notification window, which receives the capture status notifications:
//C SourceHWND hwndNotify;#define WM_CAPTURENOTIFY (WM_USER + 1000)IltmfCapture_SetNotifyWindow(pCapture, (long)hwndNotify, WM_CAPTURENOTIFY);// C++ SourceHWND hwndNotify;#define WM_CAPTURENOTIFY (WM_USER + 1000)pCapture->SetNotifyWindow((long)hwndNotify, WM_CAPTURENOTIFY);
✎ NOTE
A capture can be accomplished without using a notification window, but the user would be required to poll the objects state to determine when the capture has finished.
Define a frame window for the video preview:
//C SourceHWND hwndFrame;IltmfCapture_put_VideoWindowFrame(pCapture, (long)hwndFrame);// C++ SourceHWND hwndFrame;pCapture->put_VideoWindowFrame((long)hwndFrame);
The user is required to create the window that serves as the video frame. ltmfCapture will subclass this window, so there is no need to forward any messages to the ltmfCapture object. By default, ltmfCapture will automatically maximize the video within the frame window. The video will automatically resize when the frame window size changes.
✎ NOTE
The notification window and the video frame window can be the same.
Set the Target file:
//C SourceBSTR bstr;bstr = SysAllocString(L"c:\\captured.wmv");IltmfCapture_put_Target// C++ SourceBSTR bstr;::SysAllocString(L"c:\\captured.wmv");pCapture->put_TargetFile(bstr);::SysFreeString(bstr);
Set the video device:
//C SourceIltmfDevices* devices;IltmfCapture_get_VideoDevices(pCapture, &devices);IltmfDevices_put_Selection(devices, 0);IltmfDevices_Release(devices);// C++ SourceIltmfDevices* devices;pCapture->get_VideoDevices(&devices);devices->put_Selection(0);devices->Release();
Set the audio device:
//C SourceHIltmfDevices* devices;IltmfCapture_get_AudioDevices(pCapture, &devices);IltmfDevices_put_Selection(devices, 0);IltmfDevices_Release(devices);//C++ SourceIltmfDevices* devices;pCapture->get_AudioDevices(&devices);devices->put_Selection(0);devices->Release();
Set the target format :
//C SourceIltmfCapture_put_TargetFormat(pCapture, ltmfCapture_TargetFormat_WMV);//C++ SourcepCapture->put_TargetFormat(ltmfCapture_TargetFormat_WMV);
To start capturing, call the StartCapture function as follows:
//C SourceIltmfCapture_StartCapture(pCapture, ltmfCapture_Mode_VideoAndAudio)//C++ SourcepCapture->StartCapture(ltmfCapture_Mode_VideoAndAudio);
To stop capturing, call the StopCapture function as follows:
//C SourceIltmfCapture_StopCapture(pCapture);//C++ SourcepCapture->StopCapture();
Release the capture object (and all active objects) when you are done.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
