I'm trying to get the decibel of noise being recored from mic on Android phone. I can get amplitude value and looking for the formula to convert it into decibel.

I use following function of MediaRecorder to get amplitude.

mediaRecorder.getMaxAmplitude() ;

In another question I found the following formula.

power_db = 20 * log10(amp / amp_ref);

amp is amplitude but not sure what's amp_ref.

Is there anyone knows the correct formula?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 0 down vote accepted

i think that is the correct formula. amp_ref is reference amplitude

link|improve this answer
and how to get amp_ref? – Sharj Sep 23 '11 at 2:00
its something you define yourself. you just need a value to compare to (like a base value). read this, might be clearer: ccrma.stanford.edu/~jos/st/DB_Display.html – Kevin Qiu Sep 23 '11 at 5:17
feedback

Your Answer

 
or
required, but never shown

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