在C#中显示Windows窗体的图片框中的视频

时间:2013-12-23 10:51:48

标签: c# windows winforms video aforge

我想从源中显示pictureBox1中的视频。我尝试了很多东西,但仍然无法正常工作。我的代码如下,但没有输出。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AForge.Video.FFMPEG;
using AForge.Video.VFW;

namespace SampleCode
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            AVIReader reader = new AVIReader();
            reader.Open("D:\roadtest.avi");           // path of .avi file

            while (reader.Position - reader.Start < reader.Length)
            {
                // get next frame
                Bitmap image = reader.GetNextFrame();
                pictureBox1.Image = image;
            }

            reader.Close();
        }
    }
}

可能出现什么问题?

0 个答案:

没有答案