3

我正在使用 The Amazing Audio Engine 类 AERecorder 来录制来自内置麦克风的音频。我已经检查了下载附带的示例项目。我还实现了 TAAE文档中提供的用于使用 AERecorder 的代码

据我所知,我拥有录制音频所需的一切。唉,文件已创建,标题在那里,但没有音频数据。我所能想到的只是 AEAudioController 或我的 Xcode 项目中的某些设置有问题。

作为参考,我的项目正在使用 ARC,我相信我按照文档中的说明将-fno-objc-arc编译器标志添加到导入的任何源中。

有没有其他人遇到过这个问题,如果有,是如何解决的?

我本来想在 TAAE 论坛上问这个问题,但我无法注册。

这是任何不愿意关注该链接的人的代码。

编辑:下面的代码已更新以显示以前缺少的细节。

- (void)viewDidLoad
{
   [super viewDidLoad]
   self.audioController = [[AEAudioController alloc] 
                       initWithAudioDescription:[AEAudioController nonInterleavedFloatStereoAudioDescription] 
                                   inputEnabled:YES];
   //************************
   // This is the crucial bit of code that was missing
   NSError *error;
   [audioController start:&error];
   //************************
}

- (void)beginRecording {
   // Init recorder
   self.recorder = [[AERecorder alloc] initWithAudioController:_audioController];
   NSString *documentsFolder = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) 
                               objectAtIndex:0];
   NSString *filePath = [documentsFolder stringByAppendingPathComponent:@"Recording.aiff"];
   // Start the recording process
   NSError *error = NULL;
   if ( ![_recorder beginRecordingToFileAtPath:filePath 
                                     fileType:kAudioFileAIFFType 
                                        error:&error] ) {
      // Report error
      return;
   }
   // Receive both audio input and audio output. Note that if you're using
   // AEPlaythroughChannel, mentioned above, you may not need to receive the input again.
   [_audioController addInputReceiver:_recorder];
   [_audioController addOutputReceiver:_recorder];
}
-(void)stopRecording
{
    [_recorder finishRecording];
    [_audioController removeInputReceiver:_recorder];
    [_audioController removeOutputReceiver:_recorder];
    self.recorder = nil;
}
4

1 回答 1

2

我已经找出了问题所在,这应该是显而易见的。我没有[audioController start:&error]在我的代码中调用任何地方。现在它就像一个魅力。希望这可以帮助某人。不得不说,这是一款非常不错的软件。

于 2013-08-29T19:43:35.293 回答