The following method for C++ shows how to get the DVR Sink object from the ltmmPlayControl object and use it to copy DVR buffered data to a new file.
void PlayerDVRCopyToFile(IltmmPlay *pPlay)
{
IUnknown *punk = NULL;
HRESULT hr = pPlay->GetSubObject(ltmmPlay_Object_SourceFilter, &punk);
if(SUCCEEDED(hr) && NULL != punk)
{
ILMDVRSink *pDvrSink;
hr = punk->QueryInterface(IID_ILMDVRSink, (LPVOID*)&pDvrSink);
punk->Release();
if (SUCCEEDED(hr))
{
double start, stop, total;
// Get available range to copy
pDvrSink->GetAvailabilityInfo(&start, &stop, &total);
// Copy the data to the new file
pDvrSink->CopyBufferToFile(L"C:\\Temp\\DVR\\Copied_Capture.mpg", start, stop);
// Release the interface and free string data
pDvrSink->Release();
}
}
}
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