MacBook の内蔵 iSight カメラからビデオをキャプチャする簡単なアプリを構築しようとしています。私は開発者サイトでいくつかのサンプル プロジェクトを見て、次のチュートリアルに従っています: Apple の AVFoundation ガイド。
AVCaptureMovieFileOutput を壊し続けるたびに、キャッチされない例外が発生します - アクティブ/有効な接続がありません。私は AV フレームワークを初めて使用するので、iSight を認識し、それをセッションに入力し、セッションのムービー出力を作成できるのに、接続がないと言われる理由がわかりません。どのような接続を探していますか? (注:ビューコントローラーにはまだQTMovieViewがありませんが、記録ではなく再生にのみ必要だと思いました)。
最近Skypeで使用したばかりなので、iSightが機能していることはわかっています。
関連するコードは次のとおりです。
thisSession = [[AVCaptureSession alloc] init];
//set presets for this session
if ([thisSession canSetSessionPreset:AVCaptureSessionPreset640x480]) {
thisSession.sessionPreset = AVCaptureSessionPreset640x480;
NSLog(@"Session Preset: OK");
//capture a device - captures all the devices, microphone, camera, etc.
NSArray *devices = [AVCaptureDevice devices];
//this will hold our decvice
AVCaptureDevice* iSightCamera;
for (AVCaptureDevice *device in devices) {
//we only want to work with the internal camera
if ([[device localizedName] isEqualToString:@"Built-in iSight"]) {
iSightCamera = device;
//creating an input of the device for the session
NSError *error = nil;
AVCaptureDeviceInput* iSightCameraInput =
[AVCaptureDeviceInput deviceInputWithDevice:iSightCamera error:&error];
if (!iSightCameraInput) {
NSLog(@"Error creating device input: %@", error);
} else {
NSLog(@"iSight device input created!");
//adding the device input to the session
if ([thisSession canAddInput:iSightCameraInput]) {
[thisSession addInput:iSightCameraInput];
NSLog(@"iSight input added to session!");
//add the output to the session
AVCaptureMovieFileOutput *movieOutput = [[AVCaptureMovieFileOutput alloc] init];
if ([thisSession canAddOutput:movieOutput]) {
[thisSession beginConfiguration];
[thisSession addOutput:movieOutput];
[thisSession commitConfiguration];
NSLog(@"Movie output added to the session!");
//start writing the movie
NSURL *movieFolder = [NSURL fileURLWithPath:[@"~/Movies" stringByExpandingTildeInPath]];
[movieOutput startRecordingToOutputFileURL:movieFolder recordingDelegate:self];
}
else {
NSLog(@"Error: Could not add movie output to the session.");
}
}
else {
NSLog(@"Error: Could not add iSight to session.");
}
}
}
}