功能简介
阿里云 RTC 提供一系列摄像头管理方法,包括切换前后置摄像头、缩放镜头、曝光设置和对焦功能,您可以在加入频道前进行设置,帮助您在通话时使成像更清晰、大小与亮度更适宜。
实现方法
在实现该功能之前,需要您已经搭建 AppServer、实现基本功能等操作。详情请参见入门概述。
具体实现方法如下所示。
- switchCamera:切换前后摄像头。
- (int)switchCamera;
- 该方法返回 0 为切换成功,其他为切换失败。
- setCameraZoom:设置摄像头参数。
- (int)setCameraZoom:(float)zoom flash:(BOOL)flash autoFocus:(BOOL)autoFocus;
- 参数:
参数 | 类型 | 描述 |
zoom | float | 变焦的级别。取值:-3~3,默认为 1.0。 |
flash | BOOL | 是否打开闪光灯。取值:YES|NO。 |
autoFocus | BOOL | 是否打开自动对焦。取值:YES|NO。 |
- 该方法返回 0 表示设置成功,其他表示设置失败。
- isCameraOn:检查摄像头是否打开。
- (BOOL)isCameraOn;
- 该方法返回 YES 表示摄像头已打开,NO 表示摄像头没有打开
- isCameraFocusPointSupported:查看摄像头是否支持手动聚焦。
- (BOOL)isCameraFocusPointSupported;
- 该方法返回 YES 表示支持,NO 表示不支持。
- isCameraExposurePointSupported:查看摄像头是否支持设置曝光区域。
- (BOOL)isCameraExposurePointSupported;
- 该方法返回 YES 表示支持,NO 表示不支持。
- setCameraFocusPoint:设置摄像头手动聚焦。
- (int)setCameraFocusPoint:(CGPoint)point;
- 参数:
参数 | 类型 | 描述 |
point | CGPoint | 聚焦点坐标 |
- 该方法返回 0 表示成功,其他表示失败。
- setCameraExposurePoint:设置摄像头曝光点。
- (int)setCameraExposurePoint:(CGPoint)point;
- 该方法返回 0 表示成功,其他表示失败。
参数:
参数 | 类型 | 描述 |
point | CGPoint | 曝光点坐标 |
获得更多功能实现方法,请参见 AliRtcEngine 接口。
「视频云技术」你最值得关注的音视频技术公众号,每周推送来自阿里云一线的实践技术文章,在这里与音视频领域一流工程师交流切磋。