EDIT: In the end I used exactly as I explained below, AVRecorder for recording the speech and openAL for the pitch shift and playback. It worked out quite well :) But for his detailed answer that I just didn't have the time/brains to implement I awarded @my fat llama the answer points :D
I got a question regarding recording, modifying and playing back audio. I asked a similar question before ( iphone record, modify pitch and play back audio in real time ) but I now have more information and could do with some further advice please.
So firstly this is what I am trying to do (on a separate thread to the main thread):
- monitor the iphone mic
- check for sound greater than a certain volume
- if above threshold start recording e.g. person starts talking
- continue to record until volume drops below threshold e.g. person stops talking
- modify pitch of recorded sound.
- playback sound
I was thinking of using the AVRecorder to monitor and record the sound, good tutorial here: http://mobileorchard.com/tutorial-detecting-when-a-user-blows-into-the-mic/
and I was thinking of using openAL to modify the pitch of the recorded audio.
So my question is, is my thinking correct in the list of points above, am I missing something or is there a better/easier way to do it. Can I avoid mixing audio libraries and just use AVFoundation to change the pitch too?
Many thanks for any advice.