我想使用 NOVOCAINE 计算 dB所以我的问题是我可以通过计算 RMS 来测量分贝吗?实际上我想要 iphone 的麦克风作为输入并监控周围的噪音。
我无法破解它。请帮忙。
请举个例子
Best Answer-推荐答案 strong>
基本上,这是 dB 满量程背后的数学:
其中 b 是位深度,在 iOS b = 16 上。 More on Wikipedia .
这可以通过如下方式实现:
const float min = 20.0f*log10f(powf(2, 15)); // the "most silent" sample
Novocaine *audioManager = [Novocaine audioManager];
[audioManager setInputBlock:^(float *newAudio, UInt32 numSamples, UInt32 numChannels)
{
float f = 0.0f;
for (int i = 0; i<numSamples; i++)
{
f += fabsf(newAudio[i]); // we are only interested in non-imaginary values
}
f /= numSamples; // kind of a poor averaging...
float value_dB = 20.0f*log10f(f) - min; // dB in full scale
NSLog(@"%f dB for %f", value_dB, f); // or do whatever you want to do...
}];
[audioManager play];
但您应该考虑一下采样频率并记住这是 dB 满量程,而不是 dB SPL或 dB SIL .
关于ios - 使用 NOVOCAINE 计算 dB,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27941808/
|