C# 视频监控系列(13):H264播放器——控制播放和截图
2009-04-08 08:23:29 来源:WEB开发网代码说明:
1. 关于变量PORT、m_strPlayFileName和方法OpenFile可以看上篇文章的代码。
2. 注意Hik_PlayM4_Pause的第二个参数用法。
1.2 快进/慢进
VC++ Code:
//////////////////////////////////////////////////////////////////////////////
//Funtion: Fast
//////////////////////////////////////////////////////////////////////////////
void CPlayerDlg::OnFastForward()
{
// TODO: Add your control notification handler code here
//Throw B-Frame ,improve the performance;
if(Hik_PlayM4_Fast(PORT))
{
m_nSpeed++;
if(m_nSpeed>0)
OnThrow2();
SetFastForwardState();
}
}
//////////////////////////////////////////////////////////////////////////////
//Funtion: Slow;
//////////////////////////////////////////////////////////////////////////////
void CPlayerDlg::OnFastBackward()
{
// TODO: Add your control notification handler code here
if(Hik_PlayM4_Slow(PORT))
{
m_nSpeed--;
if(m_nSpeed<=0)
OnThrow0();
SetFastBackWardState();
}
}
更多精彩
赞助商链接