.net快速写个录像程序

基本在Windows下的录像程序在底层都是使用了Microsoft的DirectShow接口,对于DirectShow有一个.net的wrapper,称作DirectShowLib。但是封装地并不充分,换个角度说你还是需要知道DirectShow的API然后才能编写摄像头程序,有没有封装地更好地呢,当然有的:).我们可以使用AForge的封装在30分钟左右写出一个摄像程序。

下面是关键代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
VideoFileWriter writer = new VideoFileWriter();
VideoCaptureDevice videoSource = null;
System.Diagnostics.Stopwatch timer = null;
 
private void video_NewFrame(object sender,NewFrameEventArgs eventArgs)
{
    // get new frame
    Bitmap bitmap = eventArgs.Frame;
    //image.SetPixel(i % width, i % height, Color.Red);
    writer.WriteVideoFrame(bitmap, timer.Elapsed);
 
}
 
private void btnStart_Click(object sender, EventArgs e)
{
    VideoCaptureDeviceForm videoSettings = new VideoCaptureDeviceForm();
    var result =  videoSettings.ShowDialog(this);
    if (result == System.Windows.Forms.DialogResult.Cancel)
    {
        return;
    }
 
    // create video source
    videoSource = videoSettings.VideoDevice;
    // set NewFrame event handler
    videoSource.NewFrame += new NewFrameEventHandler(video_NewFrame);
    // start the video source
    videoSource.Start();
 
 
    var fileName = string.Format(@"C:\temp\capv\{0}.flv", Guid.NewGuid().ToString());
    FileInfo fInfo = new FileInfo(fileName);
    if (!Directory.Exists(fInfo.DirectoryName))
    {
        Directory.CreateDirectory(fInfo.DirectoryName);
    }
 
    // create new video file
    writer.Open(fileName, 640, 480, 30, VideoCodec.FLV1);
 
    //start a timer to sync the video timeline
    timer = System.Diagnostics.Stopwatch.StartNew();
 
    ShowCurrentStatus("running");
}
 
private void btnStop_Click(object sender, EventArgs e)
{
    videoSource.SignalToStop();
    videoSource.WaitForStop();
    writer.Close();
    ShowCurrentStatus("stop");
}

 

AForge不仅对DirectShow进行了封装,还提供了图片处理的函数,可以用来处理图片,比如一些滤镜。其介绍在这里文档在这里

 

源码下载

NOTE:需要注意的是源码中我使用了AForge.Video.FFMPEG的命名空间,用来保存视频编码,其在底层用了ffmpeg的类库,所以运行程序时需要avcodec-53.dll等类库在场。你可以从AForge的类库包的Externals\ffmpeg\bin中找到这些文件。

posted @   Jerry Chou  阅读(2154)  评论(6编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示