Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have read about AVaudioRecorder from apple documentation http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/MultimediaPG/UsingAudio/UsingAudio.html#//apple_ref/doc/uid/TP40009767-CH2-SW6

and i found a function Which records sound. but my code is crashing on

[soundRecorder prepareToRecord]; 

i googled for this so much.But i found no solution. i also found some other source codes.but they also have same problem (crashing on prepareToRecord). can anybody help me please...

hare is my IBAction

- (IBAction) recordOrStop: (id) sender {

if (recording) {

    [soundRecorder stop];
    recording = NO;
    self.soundRecorder = nil;

    [recordOrStopButton setTitle: @"Record" forState:
     UIControlStateNormal];
    [recordOrStopButton setTitle: @"Record" forState:
     UIControlStateHighlighted];
    [[AVAudioSession sharedInstance] setActive: NO error: nil];

} else {

    [[AVAudioSession sharedInstance]
     setCategory: AVAudioSessionCategoryRecord
     error: nil];

    NSDictionary *recordSettings =
    [[NSDictionary alloc] initWithObjectsAndKeys:
     [NSNumber numberWithFloat: 44100.0], AVSampleRateKey,
     [NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
     [NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
     [NSNumber numberWithInt: AVAudioQualityMax],
     AVEncoderAudioQualityKey,
     nil];
    AVAudioRecorder *newRecorder =
    [[AVAudioRecorder alloc] initWithURL: soundFileURL
                                settings: recordSettings
                                   error: nil];



    self.soundRecorder = newRecorder;

    soundRecorder.delegate = self;
    [soundRecorder prepareToRecord];
    [soundRecorder record];
    [recordOrStopButton setTitle: @"Stop" forState: UIControlStateNormal];
    [recordOrStopButton setTitle: @"Stop" forState: UIControlStateHighlighted];

    recording = YES;
}

}

My .h file

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <CoreAudio/CoreAudioTypes.h>
#import "MBProgressHUD.h"

@interface LyricsController : UIViewController<AVAudioSessionDelegate,AVAudioRecorderDelegate, MBProgressHUDDelegate>{

IBOutlet UITextView *LyricsView;
MBProgressHUD *HUD;
AVAudioRecorder * soundRecorder;
NSURL *soundFileURL;  

BOOL recording;
BOOL playing;

__weak IBOutlet UIButton *recordOrStopButton;
}@property(strong,nonatomic)NSURL *soundFileURL;
@property(nonatomic,strong)AVAudioRecorder * soundRecorder;
share|improve this question
My PrepareToRecord sometime works and sometime not. why is this happning – ankush_k_kushwaha May 23 '12 at 12:30
[soundRecorder record] is only one line after [soundRecorder prepareToRecord]. Maybe the buffer is not ready. Make a new button labeled "Ready to record" attached to a new IBAction "Record". There put the [soundRecorder record] – Teofilo Israel Vizcaino Rodrig May 23 '12 at 12:58
but execution of code has been done only on the [soundRecorder prepareToRecord] by Compiler. Compiler do not even start compiling [soundRecorder record]. I have Put Sleep(2) between [soundRecorder prepareToRecord] and [soundRecorder record] statements to increase time for Buffer To Be ready but again same crash happening. – ankush_k_kushwaha May 25 '12 at 8:06
1  
hey guys my app is not crashing on Device it is crashing just on simulator.Then I Have reset simulator and Clean The Xcode (products->Clean). then it again running on simulator perfectly. hope it will not crash again. – ankush_k_kushwaha May 25 '12 at 8:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.