通过AVAudioRecorder录制声音

时间:2013-03-14 09:49:08

标签: iphone ios avaudioplayer avaudiorecorder

我想录制声音,并希望将录制的文件保存到文档目录中: - 做过像: -

[[AVAudioSession sharedInstance]
         setCategory: AVAudioSessionCategoryRecord
         error: nil];
    NSMutableDictionary *recordSetting = [[NSMutableDictionary alloc] init];
    [recordSetting setValue :[NSNumber numberWithInt:kAudioFormatAppleIMA4] forKey:AVFormatIDKey];
    [recordSetting setValue:[NSNumber numberWithFloat:16000.0] forKey:AVSampleRateKey];
    [recordSetting setValue:[NSNumber numberWithInt: 1] forKey:AVNumberOfChannelsKey];

        recorderFilePath = [[NSString stringWithFormat:@"%@/Audio.caf", DOCUMENTS_FOLDER] retain];
        NSURL *soundFileURL=[NSURL URLWithString:recorderFilePath];

    recorderFilePath = [[NSString stringWithFormat:@"%@/Audio.caf", DOCUMENTS_FOLDER] retain];

    NSURL *soundFileURL = [NSURL fileURLWithPath:recorderFilePath];


        NSLog(@"str==>%@ soundurl==>%@",recorderFilePath,soundFileURL);
        AVAudioRecorder *newRecorder =
        [[AVAudioRecorder alloc] initWithURL: url
                                    settings: settings
                                       error: nil];

 newRecorder.delegate = self;
        [newRecorder prepareToRecord];
        [newRecorder record];

和[记录器停止];停止录音时。

看过这个: - this

并相应编码..但我仍然无法在文档文件夹中创建任何.caf文件。

1 个答案:

答案 0 :(得分:1)

一旦浏览下面的代码,它可能会对您有所帮助。 首先将AVAudioRecorder的对象作为AVAudioRecorder * audioRecorder;

-(void)viewWillAppear:(BOOL)animated{

    NSArray *dirPaths;
    NSString *docsDir;

    dirPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    //here i took cache directory as saved directory you can also take   NSDocumentDirectory
    docsDir = [dirPaths objectAtIndex:0];

    NSString *soundFilePath = [docsDir stringByAppendingPathComponent:@"sound.caf"];//at this path your recorded audio will be saved

    NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

    NSDictionary *recordSettings = [NSDictionary dictionaryWithObjectsAndKeys:

                                                    [NSNumber numberWithInt:AVAudioQualityMin],
                                                    AVEncoderAudioQualityKey,

                                                    [NSNumber numberWithInt:16], 
                                                    AVEncoderBitRateKey,

                                                    [NSNumber numberWithInt: 2], 
                                                    AVNumberOfChannelsKey,

                                                    [NSNumber numberWithFloat:44100.0], 
                                                    AVSampleRateKey,
                                                    nil];

    NSError *error = nil;
    audioRecorder = [[AVAudioRecorder alloc]initWithURL:soundFileURL settings:recordSettings error:&error];

    if( !audioRecorder ) {

        UIAlertView *alert  =
        [[UIAlertView alloc] initWithTitle: @"Warning" message: [error localizedDescription] delegate: nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alert show];
        return;

    }

    if ( error )
    {
        NSLog( @"error: %@", [error localizedDescription] );
    }
    else {
        [audioRecorder prepareToRecord];
        [self recordAudio];//Mehod to Record Audio
    }

}

现在定义录制音频的方法,

 -(void) recordAudio
 {
     if (!audioRecorder.recording)
      {
       audioRecorder.delegate = self;
      [audioRecorder recordForDuration:10];//Here i took record duration as 10 secs 

     }

}

现在您可以将AvAudio记录DelegateMethods编写为

-(void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:      (BOOL)flag
 {
  //Your code after sucessful recording;
 }
-(void)audioRecorderEncodeErrorDidOccur:(AVAudioRecorder *)recorder error:(NSError *)error
 {
NSLog(@"Encode Error occurred");
}
希望它对你有帮助......