使用NOVOCAINE计算dB

时间:2015-01-14 11:26:23

标签: ios signal-processing core-audio audio-recording

我想用NOVOCAINE计算dB,所以我的问题是我可以通过计算RMS来测量分贝。实际上我想将iphone的麦克风作为输入并监控周围的噪音。 我无法解决这个问题。请帮忙。

请举出任何例子

1 个答案:

答案 0 :(得分:1)

基本上,这是dB满量程背后的数学:

Math behind dB fullscale

其中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 SPLdB SIL