0

Direct Show サンプルの作業を行っていますが、問題が発生しました。キャプチャデバイスから受信したビデオをプレビューとファイルの両方に多重化したいのですが、方法がわかりません。

ベースとして使用するサンプルは playcap です。そこに、ICaptureGraphBuilder2使われている・・・。そのドキュメントにはSetOutputFileName、おそらくファイル出力をオンにする関数があります。

ただし、実際には、file はファイル システムに表示されますが、常に空であり、アプリケーションが終了すると削除されます。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 に答える