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.
|
feedback
|
|
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.
| |||||||||||
feedback
|
|
Although this is an answered question (and kind of old) i have decided to post my full working code for others that found it hard to find good working (out of the box) playing and recording example - including encoded, pcm, play via speaker, write to file here it is: AudioPlayerViewController.h:
AudioPlayerViewController.m:
Hope this will help some of you guys. | |||||||||||||||||
feedback
|
|
Its really helpful. The only problem i had was the size of sound file created after recording. I needed to reduce the file size so i did some changes in settings.
File size reduced from 360kb to just 25kb (2 seconds recording). | |||||||
feedback
|
|
I have uploaded a sample project. You can take a look. | |||||||||
feedback
|
|
I've been trying to get this code to work for the last 2 hours and though it showed no error on the simulator, there was one on the device. Turns out, at least in my case that the error came from directory used (bundle) :
It was not writable or something like this... There was no error except the fact that prepareToRecord failed... I therefore replaced it by :
It now Works like a Charm. Hope this helps others. | |||||
|
feedback
|
|
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. | |||||
feedback
|
|
In the following link you can find useful info about recording with AVAudioRecording. In this link in the first part "USing Audio" there is an anchor named “Recording with the AVAudioRecorder Class.” that leads you to the example. | |||
|
feedback
|
protected by Michael Myers♦ Apr 15 '11 at 14:54
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.