博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.net快速写个录像程序
阅读量:5014 次
发布时间:2019-06-12

本文共 1898 字,大约阅读时间需要 6 分钟。

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

下面是关键代码:

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等类库在场。你可以从的Externals\ffmpeg\bin中找到这些文件。

转载于:https://www.cnblogs.com/Jerry-Chou/archive/2012/03/30/2425163.html

你可能感兴趣的文章
java===单类设计模式之饿汉式与懒汉式
查看>>
BZOJ 1083: [SCOI2005]繁忙的都市
查看>>
Maven 编译
查看>>
《学习之道》第十章学习方法29还记得散步的好处嘛
查看>>
Git常用命令总结
查看>>
iOS获取设备IP地址
查看>>
JavaSE| String常用方法
查看>>
NRF51822配对绑定要点
查看>>
C语言博客作业—数据类型
查看>>
python-闭包
查看>>
HTML5
查看>>
Activity的生命之路
查看>>
LeetCode --- 60. Permutation Sequence
查看>>
Bash脚本中的操作符
查看>>
日记——2019-03-14
查看>>
python模块 ---logging模块
查看>>
一个购物车的写法
查看>>
常用前端代码资源
查看>>
eval函数
查看>>
多线程、进程、并发、并行、同步、异步、伪并发、真并发
查看>>