i will like to measure the sound volume of the surrounding, not too sure if i'm doing the right thing.

i will like to create a VU meter of a range of 0(quiet) to 120(very noisy).

i gotten the Peak and Avg power but are very high in normal quiet enviroment. do give me some pointer.

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.


    //creating an audio CAF file in the temporary directory, this isn’t ideal but it’s the only way to get this class functioning (the temporary directory is erased once the app quits). Here we also specifying a sample rate of 44.1kHz (which is capable of representing 22 kHz of sound frequencies according to the Nyquist theorem), and 1 channel (we do not need stereo to measure noise).

    NSDictionary* recorderSettings = [NSDictionary dictionaryWithObjectsAndKeys:
                                      [NSNumber numberWithInt:kAudioFormatLinearPCM],AVFormatIDKey,
                                      [NSNumber numberWithInt:44100],AVSampleRateKey,
                                      [NSNumber numberWithInt:1],AVNumberOfChannelsKey,
                                      [NSNumber numberWithInt:16],AVLinearPCMBitDepthKey,
                                      [NSNumber numberWithBool:NO],AVLinearPCMIsBigEndianKey,
                                      [NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,
                                      nil];
    NSError* error;

    NSURL *url = [NSURL fileURLWithPath:@"/dev/null"];
    recorder = [[AVAudioRecorder alloc] initWithURL:url settings:recorderSettings error:&error];

    //enable measuring
    //tell the recorder to start recording:
    [recorder record];

    if (recorder) {
        [recorder prepareToRecord];
        recorder.meteringEnabled = YES;
        [recorder record];
        levelTimer = [NSTimer scheduledTimerWithTimeInterval: 0.01 target: self selector: @selector(levelTimerCallback:) userInfo: nil repeats: YES];

    } else
    {
        NSLog(@"%@",[error description]);
    }        
}

- (void)levelTimerCallback:(NSTimer *)timer {
    [recorder updateMeters];

    const double ALPHA = 0.05;
    double peakPowerForChannel = pow(10, (0.05 * [recorder averagePowerForChannel:0]));
    lowPassResults = ALPHA * peakPowerForChannel + (1.0 - ALPHA) * lowPassResults;     

    NSLog(@"Average input: %f Peak input: %f Low pass results: %f", [recorder averagePowerForChannel:0], [recorder peakPowerForChannel:0], lowPassResults);

    float tavgPow =[recorder averagePowerForChannel:0] + 120.0;
    float tpPow = [recorder peakPowerForChannel:0] + 120.0;

    float avgPow = tavgPow;//(float)abs([recorder averagePowerForChannel:0]);
    float pPow = tpPow;//(float)abs([recorder peakPowerForChannel:0]);

    NSString *tempAvg = [NSString stringWithFormat:@"%0.2f",avgPow];
        NSString *temppeak = [NSString stringWithFormat:@"%0.2f",pPow];
    [avg setText:tempAvg];
        [peak setText:temppeak];
    NSLog(@"Average input: %f Peak input: %f Low pass results: %f", avgPow,pPow , lowPassResults);
}   
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The formula for converting a linear amplitude to decibels when you want to use 1.0 as your reference (for 0db), is

20 * log10(amp);

So I'm not sure about the intent from looking at your code, but you probably want

float db = 20 * log10([recorder averagePowerForChannel:0]);

This will go from -infinity at an amplitude of zero, to 0db at an amplitude of 1. If you really need it to go up to between 0 and 120 you can add 120 and use a max function at zero.

So, after the above line:

db += 120;
db = db < 0 ? 0 : db;

The formula you are using appears to be the formula for converting DB to amp, which I think is the opposite of what you want.

Edit: I reread and it seems you may already have the decibel value.

If this is the case, just don't convert to amplitude and add 120.

So Change

double peakPowerForChannel = pow(10, (0.05 * [recorder averagePowerForChannel:0]));

to

double peakPowerForChannel = [recorder averagePowerForChannel:0];

and you should be okay to go.

link|improve this answer
Hi Michael, thanks for the reply. i believe that the averagePowerForChannel are the decibel value in -x will like to convert it to 0 - 120 value – Desmond Feb 12 at 8:50
1  
@Desmond: Ok, so do the last step I suggest to change peakPowerForChannel to use the decibel value directly. You are adding 120 later. You will also need to make sure it is not less than zero by using a max(0, db) like how I did with 'db = db < 0 ? 0 : db;' – Michael Chinen Feb 12 at 9:20
thanks Michael, however the decibel are very very high in a quiet room....i download an decibel10 app to check against it the decibel different are huge. The app show about 40db,mine shows 70db. my main goal here are to check if the user are making noise. if it exceed the threshold will trigger something. – Desmond Feb 12 at 9:39
1  
That's probably because db is referential. The other app is probably using a reference less than 1.0, and you are using 1.0. You will need to find a new reference and divide your amplitude by the reference before doing the conversion to DB (This is done in code that you haven't shown us yet). The sound pressure level change of a pin drop is often used as the reference - you some how need to figure out how much that means in your amplitude. If you trust the other app, you can guess and check until the dbs align. – Michael Chinen Feb 12 at 19:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.