一些进一步的注意事项:这在30次通话中大概发生一次.由于我的应用程序未启动,它只在一个设备上进行测试:运行7.1.2的iPhone 5
解决方法 这里是文档的引用(对canAddOutput的讨论:)You cannot add an output that reads from a track of an asset other than the asset used to initialize the receiver.
解释这将有助于您(请检查您的代码是否与本指南匹配,如果您做的很好,不应该触发错误,因为基本上canAddOuput:检查兼容性).
AVCaptureSession
用于组织Device input和Output之间的连接,类似于DShow的连接过滤器.如果可以连接输入和输出,启动后,数据将从输入读取.
几个要点:
a)AVCaptureDevice,设备的定义,两个摄像头设备.
b)AVCaptureinput
c)AVCaptureOutput
输入和输出不是一对一的,如视频输出,而视频音频输入.
切换相机之前和之后:
AVCaptureSession * session = <# A capture session #>; [session beginConfiguration]; [session removeinput: frontFacingCameraDeviceinput]; [session addinput: backFacingCameraDeviceinput]; [session commitConfiguration];
添加捕捉input:
要将捕获设备添加到捕获会话中,可以使用AVCaptureDeviceinput的实例(具体实现)
抽象AVCaptureinput类的子类).捕获设备输入管理设备的端口.
NSError * error = nil; AVCaptureDeviceinput * input = [AVCaptureDeviceinput deviceinputWithDevice: device error: & error]; if (input) { // Handle the error appropriately. }
添加输出,输出分类:
要从捕获会话获取输出,您添加一个或多个输出.输出是具体的实例
AVCaptureOutput的子类
你用:
AVCaptureMovIEfileOutput输出到电影文件
AVCaptureVIDeoDataOutput如果要从捕获的视频处理帧
AVCaptureAudioDataOutput如果要处理正在捕获的音频数据
AVCaptureStillimageOutput如果要捕获带有附带元数据的静态图像
您可以使用addOutput:将输出添加到捕获会话.
您检查捕获输出是否兼容
与现有会话使用canAddOutput :.
您可以根据需要添加和删除输出
会话正在运行.
AVCaptureSession * captureSession = <# Get a capture session #>; AVCaptureMovIEfileOutput * movIEinput = <# Create and configure a movIE output #>; if ([captureSession canAddOutput: movIEinput]) { [captureSession addOutput: movIEinput]; } else { // Handle the failure. }
保存视频文件,添加视频文件输出:
使用AVCaptureMovIEfileOutput对象将影片数据保存到文件. (AVCaptureMovIEfileOutput
是AVCapturefileOutput的具体子类,它定义了大部分的基本行为.)您可以配置
电影文件输出的各个方面,如记录的最大持续时间,或最大文件
尺寸.如果剩余的磁盘空间少于一定数量,您也可以禁止录制.
AVCaptureMovIEfileOutput * aMovIEfileOutput = [[AVCaptureMovIEfileOutput alloc] init]; CMTime maxDuration = <# Create a CMTime to represent the maximum duration #>; aMovIEfileOutput.maxRecordedDuration = maxDuration; aMovIEfileOutput.minFreediskSpacelimit = <# An appropriate minimum given the quality of the movIE format and the duration #>;
处理预览视频帧数据,每个帧查看器数据可用于后续的高级处理,如人脸检测等.
AVCaptureVIDeoDataOutput对象使用委托来销售视频帧.
你设置委托使用
setSampleBufferDelegate:queue :.
除了代表之外,您还可以指定一个串行队列
委托方法被调用.您必须使用串行队列来确保将帧传递给委托
按正确的顺序.
你不应该传递由dispatch_get_current_queue返回的队列
不能保证当前队列正在运行的线程.您可以使用队列来修改
优先考虑交付和处理视频帧.
对于帧的数据处理,对于大小(图像大小)和处理时间限制必须有限制,如果处理时间太长,底层传感器将不会向布局者发送数据和回调.
您应该将会话输出设置为应用程序的最低实际分辨率.
设置输出
达到比所需废物处理循环更高的分辨率,并且不必要地消耗功率.
你必须确保你的执行
captureOutput:dIDOutputSampleBuffer:fromConnection:能够在其中处理一个示例缓冲区
分配给框架的时间量.如果需要太长时间,并且您按住视频帧AVFoundation
将停止传送框架,而不仅是您的代表,还有其他输出,如预览图层.
处理捕获过程:
AVCaptureStillimageOutput * stillimageOutput = [[AVCaptureStillimageOutput alloc] init]; NSDictionary * outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys: AVVIDeoCodecJPEG,AVVIDeoCodecKey,nil]; [StillimageOutput setoutputSettings: outputSettings];
能支持不同的格式也支持直接生成jpg流.
如果要捕获JPEG图像,则通常不应指定您自己的压缩格式.代替,
您应该让静态图像输出为您做压缩,因为它的压缩是硬件加速的.
如果需要图像的数据表示,可以使用jpegStillimageNSDataRepresentation:to
即使修改了图像的元数据,也可以获取一个NSData对象,而不需要重新压缩数据.
相机预览显示:
您可以向用户提供使用AVCaptureVIDeoPrevIEwLayer进行录制的预览
目的. AVCaptureVIDeoPrevIEwLayer是CALayer的子类(请参阅Core Animation Programming GuIDe),您不需要任何输出来显示预览.
AVCaptureSession * captureSession = <# Get a capture session #>; CALayer * vIEwLayer = <# Get a layer from the vIEw in which you want to present the The prevIEw #>; AVCaptureVIDeoPrevIEwLayer * captureVIDeoPrevIEwLayer = [[AVCaptureVIDeoPrevIEwLayer alloc] initWithSession: captureSession]; [vIEwLayer addSublayer: captureVIDeoPrevIEwLayer];
通常,预览图层的行为与渲染树中的任何其他CALayer对象(请参阅Core Animation)编程指南).您可以像您一样缩放图像并执行转换,旋转等会有任何层.一个区别是,您可能需要设置图层的方向属性来指定如何它应该旋转来自相机的图像.此外,在iPhone 4上,预览图层支持镜像(这是预览前置摄像头时的默认设置).
总结以上是内存溢出为你收集整理的ios – `[AVCaptureSession canAddOutput:output]`间歇地返回NO.我能找出原因吗全部内容,希望文章能够帮你解决ios – `[AVCaptureSession canAddOutput:output]`间歇地返回NO.我能找出原因吗所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)