无法使用 AVCaptureSession 获得任何视频预览

发布于 2024-12-12 06:37:11 字数 1130 浏览 0 评论 0原文

我像这样设置了我的 AVCaptureSession:

AVCaptureSession *newSession = [[AVCaptureSession alloc] init];
AVCaptureDevice *camera = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

NSError *error = nil;

AVCaptureDeviceInput *newInput = [[AVCaptureDeviceInput alloc] initWithDevice:camera error:&error];


if(error) {
    NSLog([error localizedDescription]);

}

AVCaptureMovieFileOutput *newOutput = [[AVCaptureMovieFileOutput alloc] init];


if([newSession canAddInput:newInput])
    [newSession addInput:newInput];
if ([newSession canAddOutput:newOutput])
    [newSession addOutput:newOutput];

[self setSession:newSession];
[self setInput:newInput];
[self setOutput:newOutput];

然后我向我的视图添加了一个预览层:

AVCaptureVideoPreviewLayer *layer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:[recorder session]];

[layer setBounds:[recordingView bounds]];
[layer setVideoGravity:AVLayerVideoGravityResizeAspectFill];

[[recordingView layer] insertSublayer:layer above:[recordingView layer]];

但我不会得到任何预览。

我使用的是 IOS 5 和第 4 代 iPod Touch。

谢谢。

I set up my AVCaptureSessionlike so:

AVCaptureSession *newSession = [[AVCaptureSession alloc] init];
AVCaptureDevice *camera = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

NSError *error = nil;

AVCaptureDeviceInput *newInput = [[AVCaptureDeviceInput alloc] initWithDevice:camera error:&error];


if(error) {
    NSLog([error localizedDescription]);

}

AVCaptureMovieFileOutput *newOutput = [[AVCaptureMovieFileOutput alloc] init];


if([newSession canAddInput:newInput])
    [newSession addInput:newInput];
if ([newSession canAddOutput:newOutput])
    [newSession addOutput:newOutput];

[self setSession:newSession];
[self setInput:newInput];
[self setOutput:newOutput];

And then I added a preview layer to my view:

AVCaptureVideoPreviewLayer *layer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:[recorder session]];

[layer setBounds:[recordingView bounds]];
[layer setVideoGravity:AVLayerVideoGravityResizeAspectFill];

[[recordingView layer] insertSublayer:layer above:[recordingView layer]];

But I wont get any preview.

I'm on IOS 5 with an iPod Touch 4th Gen.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能怎样 2024-12-19 06:37:11

首先,你的recordingView是如何定义的?
第二,

[[recordingView layer] insertSublayer:layer above:[recordingView layer]];

没有意义。 (您正在尝试在自己的图层内部添加一个图层在自己的图层之上 -> 呃?)
请尝试使用 [recordingView.layer addSublayer:layer]; 代替。

您在评论中发布的项目使用将弱指针归零。相反,将您的属性标记为强大,一切正常。

First of all, how is your recordingView defined?
Second,

[[recordingView layer] insertSublayer:layer above:[recordingView layer]];

makes no sense. (you are trying to add a layer above the own layer inside the own layer ->duh?)
Try [recordingView.layer addSublayer:layer]; instead.

Your posted project in the comments uses zeroing weak pointers. mark your properties strong instead and everything works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文