OStack程序员社区-中国程序员成长平台

标题: ios - 使用 NOVOCAINE 计算 dB [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:50
标题: ios - 使用 NOVOCAINE 计算 dB

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

请举个例子



Best Answer-推荐答案


基本上,这是 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 .

关于ios - 使用 NOVOCAINE 计算 dB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27941808/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4