views:

28

answers:

1

I'm want to make a test app to record some sound and then modify the pitch.

Anybody able to gimme some advice what technologies on the iphone are the best (and simplest) to record some sound, and then after the recording I want to be able to pitch shift the sound to make it sound deeper. It doesn't need to be fast. The processing will not be done in realtime.

Can iphone record sound and save to WAV format?

I've never worked with sounds before, so this is all very new to me.

Many Thanks, -Code

A: 

You really want to read the Core Audio guide. This framework is really powerful and includes the AUPitch audio unit (I don’t know if this is available on iOS though) which does exactly what you want. But Core Audio is rather complex, so I can’t explain it all here. Read the guide, look at the sample code and try it yourself. If you have any concrete questions then they most likely will get answered quicker.

Sven