Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The microphone's gain property is default at 50 and ranges from 0 to 100, It boosts the signal from the microphone.

The microphone activityLevel property also ranges from 0 to 100, and describes the volume of the recorded mic audio.

I need to know the correlation between boosting the signal and the activity level, which does have an effect on each other that I have tested. What does a gain of 100 mean?

share|improve this question

1 Answer

The activityLevel property defines the sensitivity of the microphone - the range of sounds it will pick up. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/Microphone.html#activityLevel

Gain is the strength of the amplification of the microphone's sound - 100 is the most, 0 is the least. Turning the gain up makes sound quality deteriorate (Depending on quality of equipment), while whatever it is picking up(activityLevel) gets louder. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/Microphone.html#gain

share|improve this answer
This is all good but not discrete. I've made a script where I make the user say something specific into the microphone and press stop when he is done saying it. After the recording, I grab the average mic activity level, and based on this average I want to amplify the mic. Right now if the average is below 1, I set the gain to 100. What is the formula that relates the two – Prasad Aug 18 '11 at 16:49
Anyway, <forums.adobe.com/message/1049449>; has a suggestion for normalizing audio on flex, and really the gain is just a coefficient modifier for the current input. If the activityLevel(which is a relative value of how much input there is) is 0, 100 gain isn't really going to help amplify no sound. – SQLiteNoob Aug 19 '11 at 0:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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