我想用NOVOCAINE计算dB,所以我的问题是我可以通过计算RMS来测量分贝。实际上我想将iphone的麦克风作为输入并监控周围的噪音。 我无法解决这个问题。请帮忙。
请举出任何例子
答案 0 :(得分:1)
基本上,这是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];