Is there any C or Objective-C library that I can use to detect sound patterns on the Mac (e.g. clap of hands)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, if you use
CoreAudio, it has a few libraries hidden inside that do some pattern recognition.But in any case, if you have no previous samples to go by, I would recommend something where you sample a clap, and then compare the questionable samples with your samples, allowing some deviation in both the x and y, and then add any successful detections to your sample list and decrease the allowable deviation.
This is a very slow method, but, in my experience, one of the most reliable for recognizing any sound, especially with a large number of starting samples.