0

我希望有人能够帮助我解决我的问题。我想在特定时间索引处截取视频,但是当我尝试更改时间时,我得到的只是一个空白的黑屏。我添加了播放和暂停按钮,它允许我播放和暂停视频,如果我这样做然后更改时间索引,我会得到一个图像。我对为什么它不能使用代码工作感到困惑。我什至预制 btnplay.PeformClick(); 播放视频,当我执行 btnpause.PerformClick() 暂停视频时,它不会。

如果我必须物理地点击播放然后暂停我的表单上的按钮,我似乎只能获得视频的图像,我试图使用代码来实现这一点

private void Form1_Load(object sender, EventArgs e)
        {
           


            ////////////////////LC4 VLC Settings///////////////////////////////////////////////////////////////////////////////////////////

            control = new VlcControl();
            var currentAssembly = Assembly.GetEntryAssembly();
            var currentDirectory = new FileInfo(currentAssembly.Location).DirectoryName;
            var libDirectory = new DirectoryInfo(Path.Combine(currentDirectory, "libvlc", IntPtr.Size == 4 ? "win-x86" : "win-x64"));
            control.BeginInit();
            control.VlcLibDirectory = libDirectory;
            control.Dock = DockStyle.Fill;
            control.EndInit();
            panel1.Controls.Add(control);
            
            main_form_LC4_data();
        }
        
         void main_form_LC4_data()
        {
        long vOut3 = 20;
        playfile("path to file");
        First_Frame(vOut3);
        }
        
          void playfile(string final)
        {
           control.SetMedia(new Uri(final).AbsoluteUri);
            control.Time = 0;
            control.Update();
            
        }
        
         void First_Frame(long vOut3)
        {
            control.Time = vOut3;

        }
        
          private void button9_Click(object sender, EventArgs e)
        {
            control.Play();
            Console.WriteLine("PLAY");
        }

        private void button8_Click(object sender, EventArgs e)
        {
           
            control.Pause();
            Console.WriteLine("PAUSE");
        }

以上是我的代码

我试过这样的事情

private void button10_Click(object sender, EventArgs e)
        {
           First_Frame(first_frame); // jump to index
        }

然后打电话,button10.PerformClick();但它似乎不起作用。如果我再次点击表单上的按钮,它可以完美地工作,但不是以编码方式。

举个例子 :

  1. play.PeformClick();
  2. Pause.PeformClick();
  3. 时间 = vOut3;

我确实希望这不会让我感到困惑,我真的卡住了,我仍然希望有人可以帮助我

谢谢

4

1 回答 1

0

一些东西:

control.Update();

这没有任何作用。

设置时间后需要等待Playing事件引发,否则libvlc没有时间解码帧并显示(设置时间是异步的)

于 2020-09-09T09:55:25.460 回答