WPF 录屏软件研发心得及思路分享

Posted 毁歌掌萌人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 录屏软件研发心得及思路分享相关的知识,希望对你有一定的参考价值。

    最近由于工程需要开始研发基于Windows的自动录屏软件,很多细节很多功能需要处理,毕竟一个完美的录屏软件不是你随随便便就可以写出来的。首先参考了大部分的录屏软件,在研发的过程中遇到了很多的问题;比如-视频加载、麦克风加载、麦克风音量调节、视频播放进度控、视频音量控制、等等很多细节部分都需要好好规划才能开始做。录屏采用的是视频帧的思维逻辑进行编写的。

   目前已经基本上成型,基于WPF采用了Model - View框架进行动态加载,每个线程与线程之间采用Async异步执行,并使用线程等待;录屏基本功能包含了(展示历史录屏记录、删除、录屏、视频编码、视频播放及删除、麦克风调用(音量调节-跟随系统)、加载视频(拖拉-旋转)、系统遮罩 等);编码的核心是采用FFMPEG(这个工具真的非常强大);

这边提供几个核心代码仅供参考:

1-难点:系统遮罩核心方法(使用Windows API):

 1         /// <summary>
 2         /// 视图模型属性改变
 3         /// </summary>
 4         /// <param name="sender">
 5         /// The sender.
 6         /// </param>
 7         /// <param name="propertyChangedEventArgs">
 8         /// 属性改变事件参数
 9         /// </param>
10         private void ViewModelOnPropertyChanged(object sender, PropertyChangedEventArgs propertyChangedEventArgs)
11         {
12             if (propertyChangedEventArgs.PropertyName == "IsRecording")
13             {
14                 this.Locked = this.ViewModel.IsRecording;
15                 if (this.ViewModel.IsRecording)
16                 {
17                    var hwnd = new WindowInteropHelper(this).Handle;
18                     NativeWindowHelper.SetWindowExTransparent(hwnd);
19                 }
20             }
21 
22             if (propertyChangedEventArgs.PropertyName == "IsFullScreen")
23             {
24                 this.IsFullScreen = this.ViewModel.IsFullScreen;
25             }
26         }
改变属性的时候触发
 1         #region Constants
 2 
 3         /// <summary>
 4         ///     The gw l_ exstyle.
 5         /// </summary>
 6         [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1310:FieldNamesMustNotContainUnderscore", 
 7             Justification = "Reviewed. Suppression is OK here.")]
 8         private const int GWL_EXSTYLE = -20;
 9 
10         /// <summary>
11         ///     The w s_ e x_ transparent.
12         /// </summary>
13         [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1310:FieldNamesMustNotContainUnderscore", 
14             Justification = "Reviewed. Suppression is OK here.")]
15         private const int WS_EX_TRANSPARENT = 0x00000020;
16 
17 
18 
19 
20         #endregion
21 
22         #region Public Methods and Operators
23 
24         /// <summary>
25         /// 窗口前置透明设置命令
26         /// </summary>
27         /// <param name="hwnd">
28         /// The hwnd.
29         /// </param>
30         public static void SetWindowExTransparent(IntPtr hwnd)
31         {
32             var extendedStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
33             SetWindowLong(hwnd, GWL_EXSTYLE, extendedStyle | WS_EX_TRANSPARENT);
34         }
35 
36         #endregion
37 
38         #region Methods
39 
40         /// <summary>
41         /// The get window long.
42         /// </summary>
43         /// <param name="hwnd">
44         /// The hwnd.
45         /// </param>
46         /// <param name="index">
47         /// The index.
48         /// </param>
49         /// <returns>
50         /// The <see cref="int"/>.
51         /// </returns>
52         [DllImport("user32.dll")]
53         private static extern int GetWindowLong(IntPtr hwnd, int index);
54 
55         /// <summary>
56         /// The set window long.
57         /// </summary>
58         /// <param name="hwnd">
59         /// The hwnd.
60         /// </param>
61         /// <param name="index">
62         /// The index.
63         /// </param>
64         /// <param name="newStyle">
65         /// The new style.
66         /// </param>
67         /// <returns>
68         /// The <see cref="int"/>.
69         /// </returns>
70         [DllImport("user32.dll")]
71         private static extern int SetWindowLong(IntPtr hwnd, int index, int newStyle);
72 
73         #endregion
API方法

2-难点:麦克风获取及控制

<Slider x:Name="volumeSlider" Grid.Column="7" Grid.ColumnSpan="3" Grid.Row="1" Width="100" Height="20" Minimum="0" Maximum="100" Value="100" VerticalAlignment="Center" />
 1  //定义一个获取之前拉动时候的value值,然后跟当前的value对比,选择触发
 2         private bool isUserChangeVolume = true;
 3         private VolumeControl volumeControl;
 4         //private DispatcherTimer volumeControlTimer;
 5 
 6         /// <summary>
 7         /// 加载拖动条的事件
 8         /// </summary>
 9         /// <param name="sender"></param>
10         /// <param name="e"></param>
11         private void volumeSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
12         {
13             if (isUserChangeVolume)
14             {
15                 volumeControl.MasterVolume = volumeSlider.Value;
16             }
17         }
18 
19         private void InitializeAudioControl()
20         {
21             volumeControl = VolumeControl.Instance;
22             volumeControl.OnAudioNotification += volumeControl_OnAudioNotification;
23             volumeControl_OnAudioNotification(null, new AudioNotificationEventArgs() { MasterVolume = volumeControl.MasterVolume });
24 
25             //volumeControlTimer = new DispatcherTimer();
26             //volumeControlTimer.Interval = TimeSpan.FromTicks(150);
27             //volumeControlTimer.Tick += volumeControlTimer_Tick;
28         }
29 
30         void volumeControl_OnAudioNotification(object sender, AudioNotificationEventArgs e)
31         {
32             this.isUserChangeVolume = false;
33             try
34             {
35                 this.Dispatcher.Invoke(new Action(() => { volumeSlider.Value = e.MasterVolume; }));
36             }
37             catch { }
38             this.isUserChangeVolume = true;
39         }
40 
41         void volumeControlTimer_Tick(object sender, EventArgs e)
42         {
43             //获取系统主声道、左声道、右声道音量值
44             //double[] information = volumeControl.AudioMeterInformation;
45             //mMasterPBar.Value = information[0];
46             //mLeftPBar.Value = information[1];
47             //mRightPBar.Value = information[2];
48         }

3-难点:系统遮罩(其实也不能算难点,这个是API调用的时候颜色控制);

4-难点:视频旋转核心代码(已更新为方法8)

 1  /// <summary>
 2         /// 旋转视频
 3         /// </summary>
 4         /// <param name="sender"></param>
 5         /// <param name="e"></param>
 6         private void RotateCamera_bt(object sender, RoutedEventArgs e)
 7         {
 8             if (AnAngle > 360 || AnAngle == 0)
 9             {
10                 AnAngle = 90;
11             }
12             TransformGroup transformGroup = new TransformGroup();
13 
14             ScaleTransform scaleTransform = new ScaleTransform();
15             scaleTransform.ScaleX = -1;
16             transformGroup.Children.Add(scaleTransform);
17 
18             RotateTransform rotateTransform = new RotateTransform(AnAngle);
19             transformGroup.Children.Add(rotateTransform);
20             videoPlayer.RenderTransform = transformGroup;
21             AnAngle += 90;
22         }
旋转视频代码

5-难点:录屏核心代码(这部分代码视频格式可以自行调整,颜色代码原理已经理解。)--已更新为方法10

 1  /// <summary>
 2         ///     Starts the recording.
 3         /// </summary>
 4         public void StartRecording()
 5         {
 6             this.notifyIcon.HideBalloonTip();
 7             this.IsRecording = true;
 8 
 9 
10             var fileName = string.Format("Recording {0}.mp4", DateTime.Now.ToString("yy-MM-dd HH-mm-ss"));
11             var outputFilePath = Path.Combine(this.settings.StoragePath, fileName);
12             this.fileViewModel = new ScreenGunFileViewModel(outputFilePath, RecordingStage.DoingNothing);
13 
14             var opts = new ScreenRecorderOptions(this.RecordingRegion)
15             {
16                 DeleteMaterialWhenDone = true,
17                 OutputFilePath = outputFilePath,
18                 RecordMicrophone = this.UseMicrophone,
19                 AudioRecordingDeviceNumber = this.settings.RecordingDeviceNumber
20             };
21 
22             var progress = new Progress<RecorderState>(state => this.fileViewModel.RecordingStage = state.Stage);
23             this.recorder.Start(opts, progress);
24         }
录屏代码

 

6-难点:屏幕画框代码(采集X,Y坐标及遮幕的宽,高)

 1  /// <summary>
 2         ///     设置初始区域
 3         /// </summary>
 4         private void SetupInitialRegion()
 5         {
 6             var cursorPos = System.Windows.Forms.Cursor.Position;
 7             foreach (var screen in Screen.AllScreens)
 8             {
 9                 if (screen.Bounds.Contains(cursorPos) == false)
10                 {
11                     continue;
12                 }
13 
14                 var regionWidth = (double)screen.Bounds.Width / 2;
15                 var regionHeight = (double)screen.Bounds.Height / 2;
16                 double x = ((double)screen.Bounds.Width / 2) - (regionWidth / 2);
17                 double y = ((double)screen.Bounds.Height / 2) - (regionHeight / 2);
18                 x -= this.virtualScreen.X - screen.Bounds.X;
19                 y -= this.virtualScreen.Y - screen.Bounds.Y;
20 
21                 this.startPosition = new Point(x, y);
22                 this.endPosition = new Point(x + regionWidth, y + regionHeight);
23                 this.UpdatePosition();
24                 break;
25             }
26         }

7-放大缩小(根据屏幕大小范围随意拉伸缩小)  核心代码如下:

当你有摄像头长跟宽不一样的时候,旋转-缩小-放大然后根据给定的边缘坐标是一个非常头疼的事情,单单这个问题就使我加班到凌晨4点了,不过最终还是解决了;

  1   void resizer_Resize(object sender, ControlResizeEventArgs e)
  2         {
  3             if (!this.RectangleU.IsMouseCaptured) return;
  4             if (AnAngle == 180 || AnAngle == 360)
  5             {
  6                 #region --竖直拉伸--
  7                 double Image_xx = 0;
  8                 double Image_yy = 0;
  9                 double point_xx = 0;
 10                 double point_yy = 0;
 11                 double point_center = Math.Abs(this.MainGrid.Width / 2 - this.MainGrid.Height / 2);//当前中心点值
 12                 double actual_center = Math.Abs(this.videoPlayer.MinWidth / 2 - this.videoPlayer.MinHeight / 2);//实际中心点,用于比较初始值
 13 
 14                 if (Math.Abs(Image_PointX) == 0)
 15                 {
 16                     point_xx = -25;//初始化原点未动
 17                 }
 18                 else
 19                 {
 20                     //拖动到其他位置时偏移量(必须是固定值)
 21                     if (Image_PointX < -25)
 22                     {
 23                         point_xx = -25;
 24                     }
 25                     else
 26                     {
 27                         point_xx = Image_PointX;
 28                     }
 29                 }
 30 
 31                 if (Math.Abs(Image_PointY) == 0)
 32                 {
 33                     point_yy = -25;//初始化原点未动
 34                 }
 35                 else
 36                 {
 37                     //拖动到其他位置时偏移量(必须是固定值)
 38                     if (Image_PointY < -25)
 39                     {
 40                         point_yy = -25;
 41                     }
 42                     else
 43                     {
 44                         point_yy = Image_PointY;
 45                     }
 46 
 47                 }
 48                 if (Math.Abs(point_xx) == 25)
 49                 {
 50                     Image_xx = videoPlayer.ActualHeight;
 51                 }
 52                 else
 53                 {
 54                     Image_xx = videoPlayer.ActualHeight + Math.Abs(Image_PointX) - 25;
 55                 }
 56                 if (Math.Abs(point_yy) == 25)
 57                 {
 58                     Image_yy = videoPlayer.ActualWidth;
 59                 }
 60                 else
 61                 {
 62                     Image_yy = Math.Abs(Image_PointY) + videoPlayer.ActualWidth - 25;
 63                 }
 64 
 65                 //左右拉伸(只能往右拉伸)
 66                 if (e.LeftDirection.HasValue)
 67                 {
 68                     var value = videoPlayer.Height + e.HorizontalChange;
 69                     if (value > videoPlayer.MinHeight)
 70                     {
 71                         videoPlayer.Height = value;
 72                         MainGrid.Height = value;
 73                         if (videoPlayer.ActualHeight < value)
 74                         {
 75                             MainGrid.Height = videoPlayer.ActualHeight;
 76                         }
 77                         if (Image_xx >= RecordingArea.Width)
 78                         {
 79                             MainGrid.Height = videoPlayer.ActualHeight;
 80                             videoPlayer.Height = videoPlayer.ActualHeight;
 81                         }
 82                     }
 83                 }
 84                 //上下拉伸(只能往上拉伸)
 85                 if (e.TopDirection.HasValue)
 86                 {
 87                     var value = videoPlayer.Width + e.VerticalChange;
 88                     if (value > videoPlayer.MinWidth)
 89                     {
 90                         videoPlayer.Width = value;
 91                         MainGrid.Width = value;
 92                         if (videoPlayer.ActualWidth < value)
 93                         {
 94                             MainGrid.Width = videoPlayer.ActualWidth;
 95                         }
 96 
 97                         if (Image_yy >= RecordingArea.Height)
 98                         {
 99                             MainGrid.Width = videoPlayer.ActualWidth;
100                             videoPlayer.Width = videoPlayer.ActualWidth;
101                         }
102 
103                     }
104                 }
105 
106                 #region 调整位置
107 
108                 Matrix m = MainGrid.RenderTransform.Value;
109 
110 
111                 //初始值(-25,-25)-->(x,y)
112                 if ((Image_xx >= RecordingArea.Width) || Image_yy >= RecordingArea.Height)
113                 {
114 
115                 }
116                 else
117                 {
118                     if (point_center >= actual_center)
119                     {
120                         // (point_center - actual_center)为x-y轴偏移量
121                         刚接触Cognos报表 分享一下大家学习Cognos的心得,我现在思路不是很清晰呢……

电脑自动录屏软件哪个好用 电脑自动录屏怎么设置

高频交易算法研发心得--RSI指标及应用

安卓手机录制屏幕视频小妙招

从零到壹-API研发管理心得分享

从零到壹-API研发管理心得分享