0

我正在处理 Direct Show 示例,但遇到了问题。我想将从捕获设备接收的视频多路复用到预览和文件,但不知道如何。

我用作基础的示例是 playcap。在那里,ICaptureGraphBuilder2被使用;在其文档中是SetOutputFileName可能打开文件输出的功能。

但实际上,文件出现在文件系统中,但始终为空,并在应用程序退出时被删除。我怀疑我错误地使用了 API。

这是我正在使用的代码:

    HRESULT hr;
IBaseFilter *pSrcFilter=NULL;

// Get DirectShow interfaces
hr = GetInterfaces();
if (FAILED(hr))
{
    Msg(TEXT("Failed to get video interfaces!  hr=0x%x"), hr);
    return hr;
}

// Attach the filter graph to the capture graph
hr = g_pCapture->SetFiltergraph(g_pGraph);
if (FAILED(hr))
{
    Msg(TEXT("Failed to set capture filter graph!  hr=0x%x"), hr);
    return hr;
}

// Use the system device enumerator and class enumerator to find
// a video capture/preview device, such as a desktop USB video camera.
hr = FindCaptureDevice(&pSrcFilter);
if (FAILED(hr))
{
    // Don't display a message because FindCaptureDevice will handle it
    return hr;
}

// Add Capture filter to our graph.
hr = g_pGraph->AddFilter(pSrcFilter, L"Video Capture");
if (FAILED(hr))
{
    Msg(TEXT("Couldn't add the capture filter to the graph!  hr=0x%x\r\n\r\n") 
        TEXT("If you have a working video capture device, please make sure\r\n")
        TEXT("that it is connected and is not being used by another application.\r\n\r\n")
        TEXT("The sample will now close."), hr);
    pSrcFilter->Release();
    return hr;
}
IBaseFilter * pBaseFilter;
IFileSinkFilter  *pfSink;
// Attach the file writerto the capture graph
hr = g_pCapture->SetOutputFileName (&MEDIASUBTYPE_Avi,L"output.avi",&pBaseFilter,&pfSink);
if (FAILED(hr))
{
    Msg(TEXT("Failed to set capture filter graph!  hr=0x%x"), hr);
    return hr;
}
// Render the preview pin on the video capture filter
// Use this instead of g_pGraph->RenderFile
hr = g_pCapture->RenderStream (&PIN_CATEGORY_PREVIEW, &MEDIATYPE_Video,
                               pSrcFilter, NULL, NULL);
if (FAILED(hr))
{
    Msg(TEXT("Couldn't render the video capture stream.  hr=0x%x\r\n")
        TEXT("The capture device may already be in use by another application.\r\n\r\n")
        TEXT("The sample will now close."), hr);
    pSrcFilter->Release();
    return hr;
}
// Now that the filter has been added to the graph and we have
// rendered its stream, we can release this reference to the filter.
pSrcFilter->Release();

// Set video window style and position
hr = SetupVideoWindow();
if (FAILED(hr))
{
    Msg(TEXT("Couldn't initialize video window!  hr=0x%x"), hr);
    return hr;
}

// Add our graph to the running object table, which will allow
// the GraphEdit application to "spy" on our graph
hr = AddGraphToRot(g_pGraph, &g_dwGraphRegister);
if (FAILED(hr))
{
    Msg(TEXT("Failed to register filter graph with ROT!  hr=0x%x"), hr);
    g_dwGraphRegister = 0;
}
// Start previewing video data
hr = g_pMC->Run();
if (FAILED(hr))
{
    Msg(TEXT("Couldn't run the graph!  hr=0x%x"), hr);
    return hr;
}

// Remember current state
g_psCurrent = Running;

return S_OK;

我应该如何实现我想要的功能?

4

1 回答 1

0

在上面的代码中,您将 NULL 作为最后一个参数传递给 RenderStream。

RenderStream msdn 文档中

说明:

如果 pSink 参数为 NULL,则该方法尝试使用默认渲染器。对于视频,它使用 Video Renderer,对于音频,它使用 Audio Renderer (WaveOut) Filter。

在上面的同一个链接上,请看一下代码片段:

pBuilder->SetOutputFileName(&MEDIASUBTYPE_Avi, L"C:\\Example.avi",
    &ppf, &pSink);
pBuilder->RenderStream(&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video,
    pCaptureFilter, NULL, ppf);

您可能还想看看AmCap

于 2013-09-20T16:54:28.043 回答