Apple のAVScreenShack サンプル プロジェクトを OS X 10.8.2 で実行しようとしています。
アプリケーションを実行して記録をトリガーすると ( を呼び出しstartRecording
ます)、奇妙な一連のイベントが続きます。
- アプリケーションは引き続き最大 40% の CPU を使用します (おそらく、アプリケーション ウィンドウにビデオ プレビューを表示するために必要です)。
- デリゲート メソッド
captureOutput:didStartRecordingToOutputFileAtURL:fromConnections:
が呼び出されることはありません
トリガーするとstopRecording
:
- アプリケーションは約 40% の CPU を使用し続けます
- 「停止しようとしている」という
NSLog
呼び出しは、captureMovieFileOutput
オブジェクトが有効なファイル URL (デスクトップ上の一時ファイルを指している) を持っていることを示しています。 - デリゲート メソッド
captureOutput:didFinishRecordingToOutputFileAtURL:fromConnections:error:
が呼び出されることはありません - 数分経ってもデスクトップにファイルが作成されない
出力コンソールにエラーは表示されません。これをさらに効果的にデバッグできる方法はありますか?
関連するコードは次のとおりです。私はそれを変更していません (ただし、ここでは不要な部分を省略しています)。
- (BOOL)createCaptureSession:(NSError **)outError
{
NSLog(@"createCaptureSession start");
/* Create a capture session. */
self.captureSession = [[AVCaptureSession alloc] init];
// ...
/* Add the main display as a capture input. */
display = CGMainDisplayID();
self.captureScreenInput = [[AVCaptureScreenInput alloc]
initWithDisplayID:display];
if ([self.captureSession canAddInput:self.captureScreenInput]) {
[self.captureSession addInput:self.captureScreenInput];
} else {
return NO;
}
/* Add a movie file output + delegate. */
captureMovieFileOutput = [[AVCaptureMovieFileOutput alloc] init];
[captureMovieFileOutput setDelegate:self];
if ([self.captureSession canAddOutput:captureMovieFileOutput]) {
[self.captureSession addOutput:captureMovieFileOutput];
} else {
return NO;
}
/* Register for notifications of errors during the capture session so we
can display an alert. */
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(captureSessionRuntimeErrorDidOccur:)
name:AVCaptureSessionRuntimeErrorNotification
object:self.captureSession];
NSLog(@"createCaptureSession finish w/o errors");
return YES;
}
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput
didStartRecordingToOutputFileAtURL:(NSURL *)fileURL
fromConnections:(NSArray *)connections {
NSLog(@"starting output");
NSLog(@"%@", captureMovieFileOutput.outputFileURL);
}
/* Informs the delegate when all pending data has been written to the output file. */
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL fromConnections:(NSArray *)connections error:(NSError *)error
{
NSLog(@"didFinish");
if (error)
{
[self presentError:error];
return;
}
[[NSWorkspace sharedWorkspace] openURL:outputFileURL];
}
- (void)windowControllerDidLoadNib:(NSWindowController *)aController
{
[super windowControllerDidLoadNib:aController];
NSLog(@"about to start running the session %@", self.captureSession);
/* Start the capture session running. */
[self.captureSession startRunning];
}
/* Called when the user presses the 'Start' button to start a recording. */
- (IBAction)startRecording:(id)sender
{
NSLog(@"startRecording");
char *tempNameBytes = tempnam([[@"~/Desktop/" stringByStandardizingPath]
fileSystemRepresentation], "AVScreenShack_");
NSString *tempName = [[NSString alloc]
initWithBytesNoCopy:tempNameBytes
length:strlen(tempNameBytes)
encoding:NSUTF8StringEncoding
freeWhenDone:YES];
/* Starts recording to a given URL. */
[captureMovieFileOutput
startRecordingToOutputFileURL:[NSURL fileURLWithPath:[tempName stringByAppendingPathExtension:@"mov"]]
recordingDelegate:self];
}
/* Called when the user presses the 'Stop' button to stop a recording. */
- (IBAction)stopRecording:(id)sender
{
NSLog(@"about to stop from URL: %@", captureMovieFileOutput.outputFileURL);
[captureMovieFileOutput stopRecording];
}
/* Called when the document is closed. */
- (void)close
{
NSLog(@"about to stop from URL: %@", captureMovieFileOutput.outputFileURL);
/* Stop the capture session running. */
[self.captureSession stopRunning];
[super close];
}
上記のプログラムからのログ出力は次のとおりです。「didFinish」ログ呼び出しも、「開始出力」も行われていないことに注意してください。
2013-04-20 16:00:01.908 AVScreenShack[8950:303] createCaptureSession start
2013-04-20 16:00:01.912 AVScreenShack[8950:303] createCaptureSession finish w/o errors
2013-04-20 16:00:02.131 AVScreenShack[8950:303] about to start running the session <AVCaptureSession: 0x100618e70 [AVCaptureSessionPresetHigh]>
2013-04-20 16:00:10.936 AVScreenShack[8950:303] startRecording
2013-04-20 16:00:10.936 AVScreenShack[8950:303] Minimum Frame Duration: 0.066667, Crop Rect: {{0, 0}, {0, 0}}, Scale Factor: 1.000000, Capture Mouse Clicks: No, Capture Mouse Cursor: Yes, Remove Duplicate Frames: Yes
2013-04-20 16:00:15.648 AVScreenShack[8950:303] about to stop from URL: file://localhost/Users/jon/Desktop/AVScreenShack_Y2DUaA.mov