Parth Bhatt
Parth Bhatt

Reputation: 19469

How to record audio through an iPhone app?

I want to record audio in my iPhone app and once the audio is recorded I want a dialog box to open which asks for the filename.

And then I want to save the audio with that filename into my app. How can I do so?

Upvotes: 2

Views: 15681

Answers (3)

shantrip
shantrip

Reputation: 41

try using AVAudioPlayer and AVAudioRecorder classes for audio recording and playback.Initially you have to establish an audio session using AVAudio session class

AVAudioSession *audioS =[AVAudioSession sharedInstance];
[audioS setCategory:AVAudioSessionCategoryPlayAndRecord error:&error];
[audioS setActive:YES error:&error];

NSURL *url = [NSURL fileURLWithPath:@"/dev/null"];

NSDictionary *settings = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithFloat: 44100.0],AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
[NSNumber numberWithInt: 2],AVNumberOfChannelsKey,[NSNumber numberWithInt: AVAudioQualityMax],         AVEncoderAudioQualityKey,
                          nil];

and then initialize the recorder and player classes...Hope this helps

Upvotes: 4

Abdullah Md. Zubair
Abdullah Md. Zubair

Reputation: 3324

you can see this question How do I record audio on iPhone with AVAudioRecorder? , which is pretty similar to your question or watch this sample code from apple http://developer.apple.com/library/ios/#samplecode/SpeakHere/Introduction/Intro.html

Upvotes: 2

hotpaw2
hotpaw2

Reputation: 70693

Look at Apple's SpeakHere sample app, available on their iOS developer site.

Upvotes: 2

Related Questions