码迷,mamicode.com
首页 > Windows程序 > 详细

C#获取话筒主峰值(实时音频输出分贝量)

时间:2019-08-29 09:22:33      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:添加   bsp   value   rpe   def   info   int   tde   efault   

1.引用类库NAudio,Git地址 https://github.com/naudio/NAudio

2.添加如下代码和引用:

public float GetVoicePeakValue()
{
var enumerator = new MMDeviceEnumerator();
var CaptureDevices = enumerator.EnumerateAudioEndPoints(DataFlow.Capture, DeviceState.Active).ToArray();
var defaultDevice = enumerator.GetDefaultAudioEndpoint(DataFlow.Capture, Role.Console);
var selectedDevice = CaptureDevices.FirstOrDefault(c => c.ID == defaultDevice.ID);
return selectedDevice.AudioMeterInformation.MasterPeakValue;
}

 

C#获取话筒主峰值(实时音频输出分贝量)

标签:添加   bsp   value   rpe   def   info   int   tde   efault   

原文地址:https://www.cnblogs.com/Khan-Sadas/p/11427678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!