问题:在通过http传输音频后无法录制声音。
我遇到的问题是,在使用本指南播放mp3后我无法再录制声音:http://cocoawithlove.com/2008/09/streaming-and-playing-live-mp3-stream.html
在播放任何mp3之前,我可以完美地录制声音。只有在我使用指南流式传输mp3后,我的ios应用程序才能再录制声音。
我想知道你们之前是否有人遇到过这个问题,或者为什么会出现这个问题?我会继续发布我的代码进行录制,以防你们中的任何人需要查看它。
在播放任何mp3之前,audioRecorderDidFinishRecording会在录制完成后始终触发。
在我流式传输mp3后,audioRecorderDidFinishRecording在记录完成后从未触发过。
提前感谢您的帮助。
// #########################
NSURL *soundFileUrl = [NSURL fileURLWithPath:self.recordFilePath];
NSDictionary *recordSettings = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
[NSNumber numberWithInt:AVAudioQualityMax], AVEncoderAudioQualityKey,
[NSNumber numberWithInt:24], AVEncoderBitRateKey,
[NSNumber numberWithInt:1], AVNumberOfChannelsKey,
[NSNumber numberWithFloat:22050.0f], AVSampleRateKey,
nil];
NSError *error = nil;
self.recorder = [[AVAudioRecorder alloc] initWithURL:soundFileUrl settings:recordSettings error:&error];
if (error) {
NSLog(@"%@", error);
} else{
self.recorder.delegate = self;
[self.recorder prepareToRecord];
[self.recorder record];
self.recordCountdown = [NSTimer scheduledTimerWithTimeInterval:(1.0/1.0) target:self selector:@selector(updateLabelCountdown) userInfo:nil repeats:YES];
}
// delegate for finish recording with success and failure
- (void) audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag {
NSLog(@"record did finish flag - %d", flag);
}
- (void) audioRecorderEncodeErrorDidOccur:(AVAudioRecorder *)recorder error:(NSError *)error {
NSLog(@"error record - %@", [error localizedDescription]);
}
答案 0 :(得分:0)
试试这个
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
参考iPhone SDK: AVAudioRecorder will not record after calling [AVPlayer play]