2
我正在使用以下代碼捕獲影片文件。不幸的是,它不捕獲音頻。我是否需要將麥克風路由到我的會話中作爲附加輸入?我在某個地方讀到每個會話只能有一個輸入?只是不知道如何去做這件事。使用AVFoundation的視頻捕獲不會捕獲任何音頻
// Create the session
session = [[AVCaptureSession alloc] init];
session.sessionPreset = AVCaptureSessionPresetMedium;
input = [AVCaptureDeviceInput deviceInputWithDevice:[self backFacingCamera] error:nil];
audioInput = [AVCaptureDeviceInput deviceInputWithDevice:[self backFacingCamera] error:nil];
if(!input){
NSLog(@"Couldn't create input!");
}
output= [[AVCaptureMovieFileOutput alloc] init] ;
[session addInput:input];
[session addOutput:output];
[session startRunning];
你試過我提到的嗎? – akaru 2011-05-21 06:09:12