重复和慢动作视频场景 [英] repeat and slowmotion video scene

查看:88
本文介绍了重复和慢动作视频场景的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

寻找一些应用。支持实时流式摄像机/ 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

推荐答案

这是一个广泛的问题。你有没有尝试过什么?



这个文章关于运动检测我刚发现应该向您展示如何在屏幕上输入视频。至于慢动作......当你有视频输入时,请问这个问题
This is a bit of a broad question. What have you tried already?

This Article on motion detection I just found should show you how to get a video input on your screen. As for slow motion... Well ask about that when you have video input


完全如此。我使用MVdelay,但是那里的慢动作不能用......



最后,我正在处理视频文件,因为直播视频我没有发现任何说明......

我通过停止和玩耍做慢动作。这是非常原始的,它的工作原理



我正在使用videomixer.dll



Exactly so. I MVdelay use, but the slowmotion there can not be used...

Finally, I am working with video files because the live video I found no instructions ...
I'm doing slowmotion through stop and play. It is very primitive and it works

I am working with videomixer.dll

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";


           }
       }


这篇关于重复和慢动作视频场景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆