6

我正在寻找一种方法来利用 Mac 上的当前音频输出,然后返回一个表示当前声级的值。

声级是指输出产生的噪音量。我不是在问如何获得输出设备的当前音量。

4

1 回答 1

17

以下代码是从Apple 的 SampleAVRecorder中提取的……这段特殊的代码从此类的 movieFileOutput 的连接方法中获取一组连接,获取每个连接的 AVCaptureAudioChannel,并据此计算分贝功率。我假设如果您正在寻找输出“噪声级别”,您将能够捕获类似的信息。如果您正在寻找比这更低级别的东西,请尝试 HAL(硬件抽象层)框架。

- (void)updateAudioLevels:(NSTimer *)timer
{
    NSInteger channelCount = 0;
    float decibels = 0.f;

    // Sum all of the average power levels and divide by the number of channels
    for (AVCaptureConnection *connection in [[self movieFileOutput] connections]) {
        for (AVCaptureAudioChannel *audioChannel in [connection audioChannels]) {
            decibels += [audioChannel averagePowerLevel];
            channelCount += 1;
        }
    }

    decibels /= channelCount;

    [[self audioLevelMeter] setFloatValue:(pow(10.f, 0.05f * decibels) * 20.0f)];
}
于 2012-08-13T05:37:10.940 回答