5

What frameworks are required to detect how loud someone is talking into a microphone... Also, can anyone tell me what to search for in the documentation or google so I can create some code... What line of code would be commonly used when detecting volume levels of noise through the microphone? Thanks!

EmptyStack
  • 51,274
  • 23
  • 147
  • 178
Albert Renshaw
  • 17,282
  • 18
  • 107
  • 195

1 Answers1

15

This seems to be a duplicate of:

Realtime microphone sound level monitoring

However, that question is old and the accepted answer links to a deprecated library. They now recommend that you instead use AVAudioRecorder. They suggest this tutorial and it seems to be what you are looking for.

General Failure
  • 2,421
  • 4
  • 23
  • 49
Erik B
  • 40,889
  • 25
  • 119
  • 135
  • Thankyou!!!! Just what I was looking for! "AVAudioRecorder" is the type of think I was asking for that I can google! Thanks again!!!!! – Albert Renshaw May 31 '11 at 23:43
  • 1
    @Albert You're welcome. I see that you haven't accepted any answers. You do so by clicking on the green check mark right next to the answer that helped you the most. This lets people know what answer is correct and you and the answerer earns reputation. You can (and should) also upvote answers (and questions) that you like. Just click the up arrow next to the post. – Erik B Jun 01 '11 at 06:44