两种方式
- 使用高度封装的类
UIImagePickerController
- 使用
AVFoundation
框架
方式一:UIImagePickerController
特点: 可用于从相簿中选取照片、拍照、录制视频,使用简便,提供的配置有录制视频的质量、前后置摄像头、闪光灯。缺点是由于它的高度封装性,要进行某些自定义的工作比较复杂。录制的视频格式为MOV,可使用
AVAssetExportSession
进行视频转码为MP4格式。
使用UIImagePickerController
来拍照或者录制视频通常可以分为如下步骤:
- 创建
UIImagePickerController
对象 - 指定拾取源,录制视频需要指定为摄像头类型
- 指定摄像头,前置摄像头或者后置摄像头
- 设置媒体类型
mediaType
- 指定捕获模式
- 展示
UIImagePickerController
- 录制视频结束后在代理方法中展示/保存视频
方式二:AVFoundation
AVFoundation框架用于创建和播放基于时间的影音媒体,可用来体验、创建、编辑媒体文件,也可以获取设备的输入流并在实时捕获和回放期间操作视频。
视频捕获
为了管理来自设备的捕获,例如相机和麦克风,可以组装对象来代表输入和输出,并使用AVCaptureSession
实例对象来调配影音输入与输出之间的数据流。需要以下几点:
-
AVCaptureDevice
实例来代表输入设备,例如相机或麦克风。 -
AVCaptureInput
具体子类的实例来从输入设备配置端口。 -
AVCaptureOutput
具体子类的实例来管理输出成视频文件或照片。 -
AVCaptureSession
实例来协调从输入到输出的数据流。 -
AVCaptureVideoPreviewLayer
图层实例来显示用户的预览视频记录。
可以配置多个输入和输出,通过一个单独的会话session
来协调,如下图所示:
AVCaptureConnect
对象代表捕获会话中捕获输入和捕获输出之间的连接。
AVCaptureInput
捕获输入有一个或多个端口AVCaptureInputPort
。
AVCaptureOutput
捕获输出可以从一个或多个源处接收数据,例如AVCaptureMovieFileOutput
对象可以接收视频和音频数据。
当添加一个输入和输出到一个会话中时,会话在所有兼容的输入端口和输出端口形成一个连接。如图所示:
可以使用捕获连接来使给定的输入或输出的数据流可用或失效。也可以用来监控音频频道的平均波值和波峰值。
使用捕获会话来协调数据流
AVFoundation
中关于视频捕获的主要的类是AVCaptureSession
。它负责调配影音输入与输出之间的数据流:
使用一个 capture session
,需要先实例化,添加输入与输出,接着启动从输入到输出之间的数据流:
AVCaptureSession *captureSession = [AVCaptureSession new];
AVCaptureDeviceInput *cameraDeviceInput = …
AVCaptureDeviceInput *micDeviceInput = …
AVCaptureMovieFileOutput *movieFileOutput = …
if ([captureSession canAddInput:cameraDeviceInput]) {
[captureSession addInput:cameraDeviceInput];
}
if ([captureSession canAddInput:micDeviceInput]) {
[captureSession addInput:micDeviceInput];
}
if ([captureSession canAddOutput:movieFileOutput]) {
[captureSession addOutput:movieFileOutput];
}
[captureSession startRunning];
配置会话
使用一个预设的会话来指定想要的图像质量和分辨率。预设是一个常量来标识可能配置的数字之一。有些情况下特定设备的实际配置如下:
符号 | 分辨率 | 注解 |
---|---|---|
AVCaptureSessionPresetHigh |
高 | 最高质量录制,各个设备不同 |
AVCaptureSessionPresetMedium |
中 | 适用Wi-Fi共享,真实的值可能改变 |
AVCaptureSessionPresetLow |
低 | 适用3G共享,真实的值可能改变 |
AVCaptureSessionPreset640x480 |
640x480 | VGA |
AVCaptureSessionPreset1280x720 |
1280x720 | 720p高清 |
AVCaptureSessionPresetPhoto |
图片 | 完整的图片分辨率,不支持视频输出 |
若要设置媒体帧指定大小的配置,应该在设置之前先检查是否支持,如下:
if ([session canSetSessionPreset:AVCaptureSessionPreset1280x720]) {
session.sessionPreset = AVCaptureSessionPreset1280x720;
} else {
// Handle the failure
}
如果需要调整会话参数,修改的代码应该写在beginConfiguration
和commitConfiguration
方法之间。如下:
[session beginConfiguration];
// 移除已经存在的捕获设备
// 添加新的捕获设备
// 重置预设
[session commitConfiguration];
监测捕获会话状态
捕获会话会在开始运行、停止运行或中断运行时发出通知。可以注册接收AVCaptureSessionRuntimeErrorNotification
通知来接收运行时错误。可以调用会话的running
属性来查看是否在运行,调用会话的interrupted
属性来查看是否被中断。另外,running
和interrupted
属性的KVO和通知都是在主线程执行。
输入
一个AVCaptureDevice
对象代表一个输入设备对象,这些对象通过 AVCaptureDeviceInput
连接上 capture session
。
可使用AVCaptureDevice
的类方法devices
和devicesWithMediaType:
来查看哪些捕获设备当前可用。以iPhone 6s为例:
(
"",// 后置摄像头
"",// 前置摄像头
""// 麦克风
)
设备特征
- 可以使用
hasMediaType:
方法来测试是否提供一个特定的媒体类型 - 可以使用
supportsAVCaptureSessionPreset:
方法来测试是否支持给定的捕获会话预设
摄像头的位置区分
- 后置摄像头:
AVCaptureDevicePositionBack
- 前置摄像头:
AVCaptureDevicePositionFront
聚焦模式
-
AVCaptureFocusModeLocked
: 焦点的位置固定。适用于当想要用户组合场景然后锁定焦点时。 -
AVCaptureFocusModeAutoFocus
: 相机执行单个扫描对焦,然后还原到锁定。适用于想要选择要聚焦的特定项目,然后将焦点保持在该项目上的情况,即使它不是场景的中心。 -
AVCaptureFocusModeContinuousAutoFocus
: 相机会根据需要不断自动对焦。
可以使用
isFocusModeSupported:
方法查看设备是否支持一个给定的模式,然后再设置focusMode
属性。
另外,设备可能支持关注焦点。使用focusPointOfInterestSupported
方法来测试是否支持。如果支持,可以调用focusPointOfInterest:
方法来设置焦点。{0, 0}代表图片区域的左上角, {1, 1}代表手机的右下角。
if ([currentDevice isFocusModeSupported:AVCaptureFocusModeContinuousAutoFocus]) {
CGPoint autofocusPoint = CGPointMake(0.5f, 0.5f);
[currentDevice setFocusPointOfInterest:autofocusPoint];
[currentDevice setFocusMode:AVCaptureFocusModeContinuousAutoFocus];
}
曝光模式
-
AVCaptureExposureModeContinuousAutoExposure
: 设备根据需要自动调整曝光级别 -
AVCaptureExposureModeLocked
: 曝光级别固定在当前级别
可以使用
isExposureModeSupport:
方法查看设备是否支持给定的曝光模式,然后再使用exposureMode
设置模式。
另外,设备可能支持关注点曝光。使用exposurePointOfInterestSupported
方法测试是否支持。若支持,可以使用exposurePointOfInterest:
方法设置曝光点。{0,0}代表图片区域的左上角,{1,1}代表图片区域的右下角。
可以使用adjustExposure
属性来确定设备当前是否正在更改其曝光设置。可以使用KVO来观察曝光设置的开始和停止。
if ([currentDevice isExposureModeSupported:AVCaptureExposureModeContinuousAutoExposure]) {
CGPoint exposurePoint = CGPointMake(0.5f, 0.5f);
[currentDevice setExposurePointOfInterest:exposurePoint];
[currentDevice setExposureMode:AVCaptureExposureModeContinuousAutoExposure];
}
闪光模式
-
AVCaptureFlashModeOff
: 闪光灯将永远不会闪光 -
AVCaptureFlashModeOn
: 闪光灯将一直闪光 -
AVCaptureFlashModeAuto
: 闪光灯将依赖环境光线条件决定是否闪光
使用
hasFlash
来确定设备是否有闪光灯。若返回YES,再使用isFlashModeSupported:
方法,确定其是否支持给定闪光模式,若支持,再设置flashMode
属性。
手电筒模式
-
AVCaptureTorchModeOff
: 手电筒总是关闭 -
AVCaptureTorchModeOn
: 手电筒总是开启 -
AVCaptureTorchModeAuto
: 手电筒根据需要自动开启和关闭
使用
hasTorch
确定设备是否有手电筒,如果有,再使用isTorchModeSupported:
方法来确定设备是否支持给定的手电筒模式,若支持,再设置torchMode
模式。
对于有手电筒的设备,如果设备与正在运行的捕获会话相关联,则手电筒才会打开。
白平衡模式
-
AVCaptureWhiteBalanceModeLocked
: 白平衡固定 -
AVCaptureWhiteBalanceModeContinuousAutoWhiteBalance
: 相机根据需要自动调节白平衡
可以使用
isWhiteBalanceModeSupported:
方法来确定设备是否支持给定的白平衡,若支持,再设置whiteBalanceMode
属性
可以使用adjustingWhiteBalance
属性来确定设备当前是否改变了白平衡设置。可以使用KVO来观察改变白平衡设置的开始和停止。
配置设备
设置设备的捕获属性时,先使用
lockForConfiguration:
方法获取配置锁。避免与其他应用的设置冲突。配置完之后需要unlock。
if ([device isFocusModeSupported:AVCaptureFocusModeLocked]) {
NSError *error = nil;
if ([device lockForConfiguration:&error]) {
device.focusMode = AVCaptureFocusModeLocked;
[device unlockForConfiguration];
}
else {
// respond to the failure as appropriate
}
}
设备间切换
有的时候想要允许用户去切换输入设备,比如切换前置和后置摄像头。应使用
beginConfiguration
和commitConfiguration
来支持配置更改:
AVCaptureSession *session = <#A capture session#>;
[session beginConfiguration];
[session removeInput:frontFacingCameraDeviceInput];
[session addInput:backFacingCameraDeviceInput];
[session commitConfiguration];
视频防抖
视频防抖 是在 iOS 6 和 iPhone 4S 发布时引入的功能。到了 iPhone 6,增加了更强劲和流畅的防抖模式,被称为影院级的视频防抖动。相关的 API 也有所改动 (目前为止并没有在文档中反映出来,不过可以查看头文件)。防抖并不是在捕获设备上配置的,而是在 AVCaptureConnection 上设置。由于不是所有的设备格式都支持全部的防抖模式,所以在实际应用中应事先确认具体的防抖模式是否支持:
AVCaptureConnection *connection = ...;
AVCaptureVideoStabilizationMode stabilizationMode = AVCaptureVideoStabilizationModeCinematic;
if ([device.activeFormat isVideoStabilizationModeSupported:stabilizationMode]) {
[connection setPreferredVideoStabilizationMode:stabilizationMode];
}
iPhone 6 的另一个新特性就是视频 HDR (高动态范围图像),它是“高动态范围的视频流,与传统的将不同曝光度的静态图像合成成一张高动态范围图像的方法完全不同”,它是内建在传感器中的。有两种方法可以配置视频 HDR:直接将
capture device
的videoHDREnabled
设置为启用或禁用,或者使用automaticallyAdjustsVideoHDREnabled
属性来留给系统处理。
使用捕获输入添加捕获设备到会话
捕获设备输入使用
AVCaptureDeviceInput
实例,它是抽象类AVCaptureInput
的子类。捕获设备输入管理设备的端口。
NSError *error;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if (!input) {
// handle the error appropriately.
}
使用
session
的addInput:
方法添加输入之前,最好先调用canAddInput:
方法检查捕获输入是否存在.
AVCaptureSession *captureSession = <#Get a capture session#>;
AVCaptureDeviceInput *captureDeviceInput = <#Get a capture device input#>;
if ([captureSession canAddInput:captureDeviceInput]) {
[captureSession addInput:captureDeviceInput];
}
else {
// handle the failure;
}
使用捕获输出从会话获取输出
输出是抽象类AVCaptureOutput的实例,应使用:
-
AVCaptureMovieFileOutput
来输出一个影音文件。 -
AVCaptureVideoDataOutput
,如果想要从被捕获的视频获取进程帧,比如来创建自定义视图图层。 -
AVCaptureAudioDataOutput
,如果想要被捕获音频数据的过程 -
AVCaptureStillImageOutput
,如果要使用伴随的元数据捕获静态图像
使用
addOutput:
方法添加输出到捕获会话中,先使用canAddOutput:
方法检查输出是否存在。
AVCaptureSession *captureSession = <#Get a capture session#>;
AVCaptureMovieFileOutput *movieOutput = <#Create and configure a movie output#>;
if ([captureSession canAddOutput:movieOutput]) {
[captureSession addOutput:movieOutput];
}
else {
// handle the failure;
}
保存成影音文件
使用
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#>;
开始录制
使用
startRecordingToOutputFileURL:recordingDelegate:
方法开始录制QuickTime
影片,需要提供基于文件的URL和代理。代理对象必须遵守AVCaptureFileOutputRecordingDelegate
协议,并实现captureOutput:didFinishRecordingToOutputFileAtURL:fromConnections:error
方法,将影片结果写入到相簿中。
AVCaptureMovieFileOutput *aMovieFileOutput = <#Get a movie output#>;
NSURL *fileURL = <#A file URL that identifies the output location#>;
[aMovieFileOutput startRecordingToOutputFileURL:fileURL recordingDelegate:<#The delegate#>];
确保文件被写入成功
不仅可以使用
captureOutput:didFinishRecordingToOutputFileAtURL:fromConnnections:error:
方法的实现内部检查文件是否被写入成功,也可以使用error
的userInfo
字典里的AVErrorRecordingSuccessfullyFinishedKey
的值来检查。
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL fromConnections:(NSArray *)connections error:(NSError *)error {
BOOL recordedSuccessfully = YES;
if ([error code] != noErr) {
// a problem occurred: Find out if the recording was successful.
id value = [[error userInfo] objectForKey:AVErrorRecordingSuccessfullyFinishedKey];
if (value) {
recordedSuccessfully = [value boolValue];
}
}
}
- 磁盘已满 -
AVErrorDiskFull
- 录制设备断开连接 -
AVErrorDeviceWasDisconnected
- 会话中断(比如有电话打进来) -
AVErrorSessionWasInterrupted
实时预览
当使用 AVFoundation 来做图像捕获时,我们必须提供一套自定义的用户界面。其中一个关键的相机交互组件是实时预览图。最简单的实现方式是通过把 AVCaptureVideoPreviewLayer 对象作为一个 sublayer 加到相机图层上去:
AVCaptureVideoPreviewLayer *previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:captureSession];
UIView *cameraView = ...;
previewLayer.frame = cameraView.bounds;
[cameraView.layer addSublayer:previewLayer];
创建并配置捕获会话
AVCaptureSession *session = [[AVCaptureSession alloc] init];
session.sessionPreset = AVCaptureSessionPresetMedium;
创建并配置设备和设备输入
捕获设备用
AVCaptureDevice
对象,设备有一个或多个端口,使用AVCaptureInput
对象的子类配置。
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
NSError *error = nil;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if (!input) {
// handle the error appropriately.
}
[session addInput:input];
创建并配置视频数据输出
使用
AVCaptureVideoDataOutput
对象处理被捕获的视频中的未压缩帧。例如,可以使用videoSettings
属性设置视频的像素格式,使用minFrameDuration
属性设置上限帧率。
AVCaptureVideoDataOutput *output = [[AVCaptureVideoDataOutput alloc] init];
[session addOutput:output];
output.videoSetting = @{(NSString *)kCVPixelBufferPixelFormatTypeKey : @(kCVPixelFormatType_32BGRA)};
output.minFrameDuration = CMTimeMake(1, 15);
数据输出对象使用委托模式来管理视频帧,代理必须采纳
AVCaptureVideoDataOutputSampleBufferDelegate
协议,当设置数据输出对象的代理时,必须提供一个应该调用回调的队列。
dispatch_queue_t queue = dispatch_queue_create("MyQueue", NULL);
[output setSampleBufferDelegate:self queue:queue];
dispatch_release(queue);
在代理类中,实现
captureOutput:didOutputSampleBuffer:fromConnectin:
方法,这个方法会在样本缓冲区被写入时调用。视频数据输出将帧作为CMSampleBuffer
不透明类型传递,所以需要转换为UIImge
对象。
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
UIImage *image = imageFromSampleBuffer(sampleBuffer);
// add your code here that uses the image.
}
开始和停止数据流
配置捕获会话后,应确保相机具有根据用户喜好进行录制的权限
NSString *mediaType = AVMediaTypeVideo;
[AVCaptureDevice requestAccessForMediaType:mediaType completionHandler:^(BOOL granted) {
if (granted) {
// Granted access to mediaType
[self setDeviceAuthorized:YES];
}
else {
// Not granted access to mediaType
dispatch_async(dispatch_get_main_queue(), ^{
[[[UIAlertView alloc] initWithTitle:@"AVCam!" message:@"AVCam doesn't have permission to use Camera, please change privacy settings" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[self setDeviceAuthorized:NO];
}
}
}
如果相机会话已经配置了并且用户有权限访问相机,可发送
startRunning
消息来开始数据流,发送stopRunning
消息来停止数据流。
访问权限
访问相机和麦克风需要先获得用户授权。相关权限需要在info.plist文件中添加如下key:
-
Privacy - Microphone Usage Description
需要您的同意,才能访问麦克风 -
Privacy - Camera Usage Description
需要您的同意,才能访问相机 -
Privacy - Photo Library Usage Description
需要您的同意,才能访问相册
使用AVFoundation拍照和录制视频的一般步骤如下:
- 创建
AVCaptureSession
对象。 - 使用
AVCaptureDevice
的静态方法获得需要使用的设备,例如拍照和录像就需要获得摄像头设备,录音就要获得麦克风设备。 - 利用输入设备
AVCaptureDevice
初始化AVCaptureDeviceInput
对象。 - 初始化输出数据管理对象,如果要拍照就初始化
AVCaptureStillImageOutput
对象;如果拍摄视频就初始化AVCaptureMovieFileOutput
对象。 - 将数据输入对象
AVCaptureDeviceInput
、数据输出对象AVCaptureOutput
添加到媒体会话管理对象AVCaptureSession
中。 - 创建视频预览图层
AVCaptureVideoPreviewLayer
并指定媒体会话,添加图层到显示容器中,调用AVCaptureSession
的startRuning
方法开始捕获。 - 将捕获的音频或视频数据输出到指定文件。
Reference
- iOS开发系列--音频播放、录音、视频播放、拍照、视频录制
- Capturing Video on iOS
- AVFoundation Programming Guide