iphone使用音频队列服务录制时捕获图像

时间:2011-11-11 08:23:54

标签: iphone uiimagepickercontroller

我有一个录音程序,它是使用音频队列服务实现的。它通过

捕获了音频数据
void AudioOutputCallback(void* inUserData,
             AudioQueueRef outAQ,
             AudioQueueBufferRef outBuffer)

方法。但我的目标是在录制音频文件时捕捉图像。然后我将UIImagePickerController集成到同一个ViewController中,以启动图像捕获过程。

-(IBAction)captureImage:(id)sender{
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.allowsEditing = NO;
    picker.sourceType = UIImagePickerControllerSourceTypeCamera;
    [self presentModalViewController:picker animated:YES];
}

但问题是当我触发captureImage方法时,录音过程停止了。 请解释一下,这是否是一项可能的任务。有没有其他方法可以实现这一目标。

0 个答案:

没有答案