Now that iPhone 3.0 sdk is public, I think I can ask this question for those of you that have already been playing with the 3.0 sdk. I want to record audio in my application, but I want to use AVAudioRecorder and not the older way of recording like the example SpeakHere shows. There are not any examples of how to best do this in the iPhone Dev Center and only reference to the classes. I am a newbie at iPhone development, so I am looking for a simple sample to get me started. Thanks in advance.
|
|
Actually, there are no examples at all. Here is my working code. Recording is triggered by the user pressing a button on the navBar. The recording uses cd quality (44100 samples), stereo (2 channels) linear pcm. Beware: if you want to use a different format, especially an encoded one, make sure you fully understand how to set the AVAudioRecorder settings (read carefully the audio types documentation), otherwise you will never be able to initialize it correctly. One more thing. In the code, I am not showing how to handle metering data, but you can figure it out easily. Finally, note that the AVAudioRecorder method deleteRecording as of this writing crashes your application. This is why I am removing the recorded file through the File Manager. When recording is done, I save the recorded audio as NSData in the currently edited object using KVC.
}
}
{
} |
||||||||||
|
|
|
Ok so the answer I got helped me in the right direction and I am very thankful. It helped me figure out how to actually record on the iPhone, but I thought I would also include some helpful code I got from the iPhone Reference Library: I used this code and added it to the avTouch example fairly easily. With the above code sample and the sample from the reference library, I was able to get this to work pretty good. |
||
|
|
|
|
how to Record and play sound i need help semple code AVAudioRecorder plizz
[myAudio play];
[myAudio play];
[myAudio play]; |
||
|
|
|
|
hi unforgiven. that's a great post, thank you for that. i have set up all the code for recording (start and stop) as well as playing (start and stop). But, i am keep getting Linking errors regarding the AV recorder and player objects. the error goes something like that: _AVFormatIDKey, referenced from: _AVFormatIDKey$non_lazy_ptr in FirstViewController.o i have tried to find something regarding this error, but couldn't find anything. please help me, thanks RonB |
||
|
|
|
|
hi jim, i wanted to compile the avTouch project from apple's developer site, but got errors in these lines:
and i did not chance anything inside the code! could you please tell me what is wrong there? greetings blacksheep |
||
|
|
