How can I get the current sound level of the current audio output device?

后端 未结 1 1617
执念已碎
执念已碎 2021-02-06 10:38

I\'m looking for a way to tap into the current audio output on a Mac, then return a value representing the current sound level.

By sound level, I mean the amount of nois

1条回答
  •  无人共我
    2021-02-06 11:43

    the following code is pulled from Apple's Sample AVRecorder … this particular bit of code acquires a set of connections from this class's movieFileOutput's connections methods, gets the AVCaptureAudioChannel for each connection, and calculates decibel power based upon that. i would presume that if you are looking for an output "noise level", you would be able to capture similar information. if you are looking for something lower level than this, try the HAL (Hardware Abstraction Layer) framework.

    - (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)];
    }
    

    0 讨论(0)
提交回复
热议问题