本文介绍了重复和慢动作视频场景的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
寻找一些应用。支持实时流式摄像机/ DV /的实时流式传输的时移,可能有重复的视频场景和慢动作。例如,来自sport / gol的一个有趣的场景/我想放慢速度并重复现场
谢谢
looking for some app. that supports time shifting of live streaming of live camcorder /DV/ with the possibility of a repeat video scene and slow motion. for example, an interesting scene from the sport / gol / I would like to slow down and repeat the scene
Thanks
推荐答案
private void timercheckbox_Tick(object sender, EventArgs e)
{
int nStream = -1;
CInputDevInfo pFileInfo = (CInputDevInfo)GetCurFileInfo();
if (pFileInfo != null) nStream = pFileInfo.m_nStream;
{
m_objVideoMixer.SoftPlay(nStream);
m_objVideoMixer.SoftPause(nStream);
}
}
private void button1_CheckedChanged(object sender, EventArgs e)
{
if (timercheckbox.Enabled == true)
{
timercheckbox.Enabled = false;
button1.Text = "Start Slow Motion";
m_objVideoMixer.SoftPlay(0);
}
else
{
//intervall play/stop
timercheckbox.Interval = (int)numericSceneChnageTime20.Value;
timercheckbox.Enabled = true;
m_objVideoMixer.SoftPlay(0);
button1.Text = "Stop Slow Motion";
}
}
这篇关于重复和慢动作视频场景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!