Click here to Skip to main content
15,885,214 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
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
Posted

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
 
Share this answer
 
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

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


           }
       }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900