directshow摄像头录像代码

本文档详细介绍了使用DirectShow进行摄像头录像的C++代码实现过程,包括设置CaptureGraphBuilder2,找到捕获设备,添加过滤器,设置输出文件以及连接源过滤器和渲染过滤器的步骤。在运行过程中,如果捕获设备已被其他应用使用,会给出相应错误提示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 HRESULT Cvp::RecordPlay(CString szFile)
{
 if(isStop!=m_status) Stop();
 HRESULT hr;
 CHECK_ERROR( GetInterfaces(),"GetInterfaces failed." );
 CHECK_ERROR( CoCreateInstance (CLSID_CaptureGraphBuilder2 , NULL, CLSCTX_INPROC,
  IID_ICaptureGraphBuilder2, (void **) &m_pC) ,"CoCreateInstan ICaptureGraphBuilder2 failed:");
 CHECK_ERROR( m_pC->SetFiltergraph(m_pG),"Failed to set capture filter graph.");
 
 hr = FindCaptureDevice(&m_pBF);
    if (FAILED(hr))
      return hr;
   
 if(m_pBF) hr=m_pG->AddFilter(m_pBF,L"Video Capture");
 if(hr!=NOERROR)
 {
  MessageBox(m_hWnd,"Cannot add vidcap to filtergraph./r/n/r/n"
        "If you have a working video capture device, please make sure/r/n"
        "that it is connected and is not being used by another application./r/n"
        "The application will now close.","Error",MB_OK);
  return hr;
 }

 IBaseFilter* pASFWriter = 0;
 CHECK_ERROR( m_pC->SetOutputFileName(&MEDIASUBTYPE_Avi,CA2W(szFile),&pASFWriter,NULL),"Failed to setOutputFile");
 //connect source filter with render filter
  CHECK_ERROR( m_pC->RenderStream (&PIN_CATEGORY_PREVIEW, &MEDIATYPE_Video,m_pBF, NULL, NULL),
               "Couldn't render the video capture stream./r/n"
               "The capture device may already be in use by another application./r/n"
               "The sample will now close.");
    CHECK_ERROR( m_pC->RenderStream (&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video,m_pBF, NULL, pASFWriter),
               "Couldn't render the video capture stream./r/n"
               "The capture device may already be in use by another application./r/n"
               "The sample will now close.");
 
 HELPER_RELEASE(m_pBF);
 DisplayVideoWin();
 CHECK_ERROR(m_pM->Run(),"Failed to run:");
 m_status=isRecord;
 return hr;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值