I am thinking of building ear training software for a personal project to learn Objective-C and I'd like to grab data from the mic and grab the frequency and duration to check it against the exercise.

Like play a full note c major chord in 4/4 time. (I understand this is an unsolved problem in general, but I am assuming simple clear input with a single chord at a time.)

The way I understand it is I would capture from the mic at x times per second. Receiving the frequencies and intensities at that time. Put it through an FFT to get discrete components then map those to standard musical frequencies. Then measure duration and cut off to see if everything matches.

I am not expecting this to do robust or good, just work in limited situations.

Can anyone fill in the details a little better?

Specifically, a pointer to API stuff would be really useful and a little about how I would go about setting up my FFT transformation or a tutorial about FFT for music notes? Or a basic intro to signal processing would be a step in the right direction too.

Something a little deeper than this question, but just slightly. Comparing Simple Sounds - What is the Closest Frequency

link|improve this question

1  
There are a lot of recent questions on SO about pitch detection using FFT and other methods, with some very good answers (it seems many people are writing instrument tuners and other utilities for iPhone etc). It's a complex subject (particularly for chord identification rather than just single notes), so I suggest you read the previous questions and answers and then come back with specific questions if anything is still not clear. – Paul R Mar 7 '11 at 7:53
Thanks. The pitch detection keywords were what I needed to find a decent answer. – solarmist Mar 7 '11 at 8:00
feedback

1 Answer

up vote 0 down vote accepted

NM.

This seems to be what I'm looking for right now.

FFT Algorithm: What goes IN/OUT? (re: real-time pitch detection)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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