C#视频监控系统(提供源码分享)
  去过⼯⼚或者仓库的都知道,在⼯⼚或仓库⾥⾯,会有很多不同的流⽔线,⼤部分的⼯⼚或仓库,都会在不同流⽔线的不同⼯位旁边安装⼀台电脑,⼀⽅⾯便于⼯位上的师傅把产品的重要信息录⼊系统,便于公司系统数据采集分析。另⼀⽅⾯严谨的⼯⼚或仓库也会在每个⼯位上安装摄像头,⽤于采集或监控流⽔线上⼯⼈的操(是)作(否)习(偷)惯(懒)。
  好了,闲话少说,咱们直⼊主题吧!
  Talk is cheap,show me the code!
  系统初始化时,⾸先检查⼯位的机台是否开启了摄像头,具体检测代码如下:
///<summary>
///监控bind
///</summary>
private void bind()
{
try
{
FilterInfoCollection videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
if (videoDevices.Count <= 0)
{
MessageBox.Show("请连接摄像头");
return;
}
else
{
CloseCaptureDevice();
if (!Directory.Exists(path)) Directory.CreateDirectory(path);
videoSource = new VideoCaptureDevice(videoDevices[0].MonikerString);
videoSource.VideoResolution = videoSource.VideoCapabilities[0];
sourcePlayer.VideoSource = videoSource;
sourcePlayer.Start();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
  好了,摄像头没问题,咱在检查⽹络是否正常(这事⼉可以交给运维,当然也可以通过程序控制,具体校验⽹络代码⽐⽐皆是,此处忽略,如有兴趣的朋友可以在Call我⼀起探讨),⾄于为什么要校验⽹络,⼀部分是⽤于机台系统的数据采集,另⼀部分就是录制的视频⽂件不可能存储在⼯位机台上,不然流⽔线和⼯位⾜够多,岂不是⼀个⼯位⼀个⼏天的查看视频监控嘛!咱这都是智能化时代,录制的视频可以保存在本地,不过为了⽅便起见,需要定时清理,定时上传到服务器便于领导审查。视频上传到服务器⼀般⽤到最多的莫⾮两种情况,1.⽹络⾜够稳定,⾜够快的可以直接和服务器开个磁盘映射(共享⽬录),视频录制完后系统直接剪切到服务器保存即可。2.把不同时段录制的视频先存储到本地,然后单独开发个定时任务FTP定时上传即可。今天先跟⼤家分享下第⼀种⽅法,第⼆种⽅法也⽐较简单,有兴趣的朋友可以call我⼀起探讨。
  不知不觉⼜扯了⼀堆废话,都是实在⼈,直接上源码吧:
///<summary>
///开启或者关闭程序后将多余⽂件copy到相应⽬录,并开启磁盘映射上传到共享⽬录
/
//</summary>
private void CopyFilesToServer()
{
try
{
//遍历当前PC⽂件夹外是否存在视频⽂件,如存在,移动到⽬标⽬录
string newPath = path + MacAddressPath + @"-Video\";
if (!Directory.Exists(newPath)) Directory.CreateDirectory(newPath);
//将上⼀次最后⼀个视频⽂件转⼊⽬录
var files = Directory.GetFiles(path, "*.wmv");
foreach (var file in files)
{
FileInfo fi = new FileInfo(file);
string filesName = file.Split(new string[] { "\\" }, StringSplitOptions.RemoveEmptyEntries).LastOrDefault();
fi.MoveTo(newPath + filesName);
}
}
catch (Exception ex)
{
//TODO:异常抛出
}
finally
{
uint state = 0;
if (!Directory.Exists("Z:"))
{
//计算机名
string computerName = System.Net.Dns.GetHostName();
//为⽹络共享⽬录添加磁盘映射
state = WNetHelper.WNetAddConnection(computerName + @"\" + netWorkUser, netWorkPwd, netWorkPath, "Z:");
}
if (state.Equals(0))
{
//本地磁盘视频⽂件copy到⽹络共享⽬录
CopyFolder(path + MacAddressPath + @"-Video\", zPath);
}
else
{
WNetHelper.WinExec("NET USE * /DELETE /Y", 0);
throw new Exception("添加⽹络驱动器错误,错误号:" + state.ToString());
}
}
}
  其中CopyFolder⽅法代码如下:
#region通过共享⽹络磁盘映射的⽅式,讲⽂件copy到指定⽹盘
///<summary>
///通过共享⽹络磁盘映射的⽅式,讲⽂件copy到指定⽹盘
///</summary>
///<param name="strFromPath"></param>
///<param name="strToPath"></param>
public static void CopyFolder(string strFromPath, string strToPath)
{
//如果源⽂件夹不存在,则创建
if (!Directory.Exists(strFromPath))
{
Directory.CreateDirectory(strFromPath);
}
if (!Directory.Exists(strToPath))
{
Directory.CreateDirectory(strToPath);
}
//直接剪切moveto,本地不留副本
string[] strFiles = Directory.GetFiles(strFromPath);
//循环剪切⽂件,此处循环是考虑每⽇⼯作站最后⼀个⽂件⽆法存储到根⽬录,导致出现两个视频⽂件的问题
for (int i = 0; i < strFiles.Length; i++)
{
//取得⽂件名,只取⽂件名,地址截掉。
string strFileName = strFiles[i].Substring(strFiles[i].LastIndexOf("\\") + 1, strFiles[i].Length - strFiles[i].LastIndexOf("\\") - 1);
File.Move(strFiles[i], strToPath + "DT-" + strFileName);
}
}
#endregion
  做完机台检查⼯作,也做好了视频传输的⼯作,接下来就是视频录制的主⾓戏了,完整录制视频源码如下(有疑问的朋友可以-联系我⼀起探讨):
///<summary>
/// videosouceplayer 录像
///</summary>
///<param name="sender"></param>
///<param name="image"></param>
private void sourcePlayer_NewFrame(object sender, ref Bitmap image)
{
try
{
//写到屏幕上的时间
g = Graphics.FromImage(image);
SolidBrush drawBrush = new SolidBrush(Color.Yellow);
Font drawFont = new Font("Arial", 6, System.Drawing.FontStyle.Bold, GraphicsUnit.Millimeter);
int xPos = image.Width - (image.Width - 15);
int yPos = 10;
string drawDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
g.DrawString(drawDate, drawFont, drawBrush, xPos, yPos);
//save content
string videoFileName = dt.ToString("yyyy-MM-dd HHmm") + ".wmv";
if (TestDriveInfo(videoFileName)) //检测硬盘空间⾜够
{
if (!stopREC)
{
stopREC = true;
createNewFile = true; //这⾥要设置为true表⽰要创建新⽂件
if (videoWriter != null) videoWriter.Close();
}
else
{
//开始录像
if (createNewFile)
{
//第⼆次录像不⼀定是第⼆次开启软件时间(⽐如:连续多⼩时录制),所以应该重新给新录制视频⽂件重新赋值命名
dt = DateTime.Now;
videoFileFullPath = path + dt.ToString("yyyy-MM-dd HHmm") + ".wmv";//videoFileName;
createNewFile = false;
if (videoWriter != null)
{
videoWriter.Close();
videoWriter.Dispose();
}
videoWriter = new VideoFileWriter();
//这⾥必须是全路径,否则会默认保存到程序运⾏根据录下了
videoWriter.Open(videoFileFullPath, image.Width, image.Height, 30, VideoCodec.WMV1);
videoWriter.WriteVideoFrame(image);
}
else
{
if (videoWriter.IsOpen)
{
videoWriter.WriteVideoFrame(image);
}
if (dt.AddMinutes(1) <= DateTime.Now)
{
createNewFile = true;
//modify by stephen,每次写⼊视频⽂件后,即刻更新结束时间戳,并存⼊指定⽂件夹(⽬的:如果只有关闭的时候处理此操作,就会出现⼤于1⼩时的视频⽂件⽆法更新结束时间戳,且⽆法转⼊指定⽂件夹) if (videoWriter != null)
{
免费分享网站源码
videoWriter.Close();
videoWriter.Dispose();
}
string newPath = path + MacAddressPath + @"-Video\";
if (!Directory.Exists(newPath)) Directory.CreateDirectory(newPath);
string newStr = newPath + dt.ToString("yyyyMMddHHmm") + "-" + DateTime.Now.ToString("yyyyMMddHHmm") + ".wmv";
FileInfo fi = new FileInfo(videoFileFullPath);
fi.MoveTo(newStr);
////转移到⽹路⽬录
//CopyFilesToServer();
}
}
}
}
}
catch (Exception ex)
{
videoWriter.Close();
videoWriter.Dispose();
}
finally
{
if (this.g != null) Dispose();
}
}
  其中TestDriveInfo⽅法是⽤来获取保存视频的磁盘信息的,具体代码如下:
#region获取保存视频的磁盘信息
///<summary>
///获取保存视频的磁盘信息
///</summary>
bool TestDriveInfo(string n)
{
try
{
DriveInfo D = DriveInfo.GetDrives().Where(a => a.Name == path.Substring(0, 3).ToUpper()).FirstOrDefault();
Int64 i = D.TotalFreeSpace, ti = unchecked(50 * 1024 * 1024 * 1024);
if (i < ti)
{
DirectoryInfo folder = new DirectoryInfo(path + MacAddressPath + @"-Video\");
//modify by stephen,验证当前指定⽂件夹是否存在元素
if (folder.Exists)
{
var fisList = folder.GetFiles("*.wmv").OrderBy(a => a.CreationTime);
if (fisList.Any())
{
List<FileInfo> fis = fisList.ToList();
if (fis.Count > 0 && fis[0].Name != n)
{
File.Delete(fis[0].FullName);
}
}
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "处理硬盘信息出错");
return false;
}
return true;
}
#endregion
  当然,如果⼯位师傅录⼊产品信息有疑问的话,也可以利⽤系统截图来保留证据,这个是我⾃⼰画蛇添⾜的功能,反正是为了⽅便嘛,别耽误了⼯位师傅的办事效率,利⽤摄像头截图代码如下: try
{
string pathp = $@"{Environment.GetFolderPath(Environment.SpecialFolder.MyPictures)}\";
if (!Directory.Exists(pathp)) Directory.CreateDirectory(pathp);
if (sourcePlayer.IsRunning)
{
BitmapSource bitmapSource = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
sourcePlayer.GetCurrentVideoFrame().GetHbitmap(),
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());
PngBitmapEncoder pE = new PngBitmapEncoder();
pE.Frames.Add(BitmapFrame.Create(bitmapSource));
string picName = $"{pathp}{DateTime.Now.ToString("yyyyMMddHHmmssffffff")}.jpg";
if (File.Exists(picName))
{
File.Delete(picName);
}
using (Stream stream = File.Create(picName))
{
pE.Save(stream);
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
  代码⽐较简单,就不写备注了。当然部署系统的时候也不是⼀帆风顺,有的⼯⼚或者仓库会购买第三⽅的摄像头,碍于⼯位环境,摄像头有可能与机台⾓度偏差较⼤,所以我⼜画蛇添⾜的了校验摄像头的⼩功能,可以左右90°上下180°画⾯翻转,具体代码如下:
#region设置摄像头旋转调整
if (image != null)
{
RotateFlipType pType = RotateFlipType.RotateNoneFlipNone;
if (dAngle == 0)
{
pType = RotateFlipType.RotateNoneFlipNone;
}
else if (dAngle == 90)
{
pType = RotateFlipType.Rotate90FlipNone;
}
else if (dAngle == 180)
{
pType = RotateFlipType.Rotate180FlipNone;
}
else if (dAngle == 270)
{
pType = RotateFlipType.Rotate270FlipNone;
}
// 实时按⾓度绘制
image.RotateFlip(pType);
}
#endregion
  当然,站在公司⾓度,为了防⽌⼯位师傅⼿误(诚⼼)关掉视频监控程序,我们也可以从程序的⾓度来防患于未然,⽐如禁⽤程序的关闭按钮,禁⽤⼯具栏右键程序图标关闭程序的操作。
  我们可以重写窗⼝句柄来防⽌,具体代码如下:
#region窗⼝句柄重写,禁⽤窗体的关闭按钮
private const int CP_NOCLOSE_BUTTON = 0x200;
protected override CreateParams CreateParams
{
get
{
CreateParams myCp = base.CreateParams;
myCp.ClassStyle = myCp.ClassStyle | CP_NOCLOSE_BUTTON;
return myCp;
}
}
  ⾄此,系统代码告⼀段路,⼀起来看看软件效果吧!(请⾃动忽略视频内容,以及笔记本摄像头带来的渣渣像素)
  最后,由于系统引⽤⽂件较多,压缩后源码⽂件仍然很⼤,如果有需要源码的朋友,可以联系博主,源码可以免费赠予~!有疑问的也可以CALL我⼀起探讨,最最后,如果觉得本篇博⽂对您或
者⾝边朋友有帮助的,⿇烦点个关注!赠⼈玫瑰,⼿留余⾹,您的⽀持就是我写作最⼤的动⼒,感谢您的关注,期待和您⼀起探讨!再会!(回复:视频或者监控获取源码)
隐藏代码
原始版本代码:
修改部分代码:
=========================================================
基于C#的录制框架(基于AForge),⽀持录制桌⾯,多屏,声⾳,摄像头,某个应⽤程序的界⾯
1.安装
使⽤此框架需要安装扩展包Kogel.Record,可以Nuget上搜索
或者使⽤Nuget命令
Install-Package Kogel.Record
安装完成包后会出现⼀个DLL⽂件夹,⾥⾯会有⼀些依赖的DLL
选中全部后右击-属性,设置复制到输出⽬录-始终复制
2.定义
需要在应⽤程序的主⼊⼝点初始化下全局配置
//初始化DLL配置
Global.InitDllPath();
还需要在fig中设置兼容.NetFramework2.0
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
<supportedRuntime version="v2.0.50727"/>
</startup>
3.录制桌⾯
使⽤ScreenRecorder类
⾸先创建桌⾯录制类对象
//视频存放路径
string recorderPath = AppDomain.CurrentDomain.BaseDirectory + DateTime.Now.ToString("MMddHHmmss") + ".avi"; //初始化录制器(第⼀个参数是路径,第⼆个参数是帧数,第三个参数是是否录制声⾳)
var recorder = new ScreenRecorder(recorderPath, 10, true);
还可以设置画质(第四个参数)Raw为原画画质,建议不要使⽤(⼀分钟⼏个G),默认为MSMPEG4v2(⾼清,标清)recorder = new ScreenRecorder(recorderPath, 10, true, AForge.Video.FFMPEG.VideoCodec.Raw);
开始录制
//开始并设置每帧回调
recorder.Start(VideoStreamer_NewFrame);
///<summary>
///每帧录制帧数回调
///</summary>
///<param name="sender"></param>
///<param name="eventArgs"></param>
private void VideoStreamer_NewFrame(object sender, NewFrameEventArgs eventArgs)
{
//显⽰图⽚流
this.picScreen.Image = (Bitmap)eventArgs.Frame.Clone();
}
暂停录制
recorder.Pause();
结束录制
recorder.End();
第⼀次使⽤此框架VS可能会弹出警告
选中“从以下位置引发时除外”和取消选中“引发此异常类型时中断”,此问题后续就不会再出现
4.Demo⽰例
此框架还⽀持录制桌⾯,多屏,声⾳,摄像头,某个程序的界⾯
框架开源,完整Demo可以去Github上下载:
如有问题也可以加QQ讨论:
技术 710217654

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。