Bootstrap

声音分贝测试软件源码,C# 电脑录音 实例源码(根据声音分贝大小自动录制)

【实例简介】

【实例截图】

60a0eec9c7d232f701723a04b83ec0f5.png

【核心代码】

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using Oraycn.MCapture;

using Oraycn.MFile;

using System.Configuration;

namespace IntelligentRecord

{

public partial class Form1 : Form

{

private IMicrophoneCapturer microphoneCapturer;

private MyaudioFileMaker audioFileMaker = new MyaudioFileMaker(); //录制器

private accumulater lowDBFrameCounter = new accumulater();//低分贝计数器

private accumulater frameCounter = new accumulater();//帧数计数器

/*【大致思路】

*

;