录像(ArkTS)
在开发相机应用时,需要先申请相关权限。
相机应用可通过调用和控制相机设备,完成预览、拍照和录像等基础操作。
录像也是相机应用的最重要功能之一,录像是循环帧的捕获。对于录像的自定义配置,开发者可以参考拍照中的步骤4,设置分辨率、闪光灯、焦距、照片质量及旋转角度等信息。
开发步骤
详细的API说明请参考@ohos.multimedia.camera (相机管理)。
-
导入media模块。
创建录像输出流的SurfaceId以及录像输出的数据,都需要用到系统提供的media接口@ohos.multimedia.media (媒体服务)能力,导入media接口的方法如下。
import { BusinessError } from '@kit.BasicServicesKit';import { camera } from '@kit.CameraKit';import { media } from '@kit.MediaKit'; -
创建Surface。
系统提供的media接口可以创建一个录像AVRecorder实例,通过该实例的getInputSurface方法获取SurfaceId,与录像输出流做关联,处理录像输出流输出的数据。
async function getVideoSurfaceId(aVRecorderConfig: media.AVRecorderConfig): Promise<string | undefined> { // aVRecorderConfig可参考步骤3.创建录像输出流。let avRecorder: media.AVRecorder | undefined = undefined;let videoSurfaceId: string | undefined = undefined;try {avRecorder = await media.createAVRecorder();if (avRecorder === undefined) {return videoSurfaceId;}await avRecorder.prepare(aVRecorderConfig);videoSurfaceId = await avRecorder.getInputSurface();} catch (error) {let err = error as BusinessError;console.error(`createAVRecorder call failed. error code: ${err.code}`);}return videoSurfaceId;} -
创建录像输出流。
通过CameraOutputCapability中的videoProfiles属性,可获取当前设备支持的录像输出流。然后,定义创建录像的参数,通过createVideoOutput方法创建录像输出流。
1.预览流与录像输出流的分辨率的宽高比要保持一致,如示例代码中宽高比为640:480 = 4:3,则需要预览流中的分辨率的宽高比也为4:3,如分辨率选择640:480,或960:720,或1440:1080,以此类推。
2.在设置预览输出流的分辨率宽高前,需要先通过AVRecorderProfile查询视频帧支持可配置的宽高范围。
3.获取录像旋转角度的方法:通过VideoOutput中的getVideoRotation方法获取rotation实际的值。
4.录像输出流帧率通过CameraOutputCapability中的videoProfiles属性,选择VideoProfile中frameRateRange满足实际业务需求的录像输出流videoProfile。
async function getVideoOutput(cameraManager: camera.CameraManager, videoSurfaceId: string, cameraOutputCapability: camera.CameraOutputCapability): Promise<camera.VideoOutput | undefined> {if (!cameraManager || !videoSurfaceId || !cameraOutputCapability || !cameraOutputCapability.videoProfiles) {return;}let videoProfilesArray: Array<camera.VideoProfile> = cameraOutputCapability.videoProfiles;if (!videoProfilesArray || videoProfilesArray.length === 0) {console.error("videoProfilesArray is null or []");return undefined;}// AVRecorderProfile。let aVRecorderProfile: media.AVRecorderProfile = {fileFormat : media.ContainerFormatType.CFT_MPEG_4, // 视频文件封装格式,只支持MP4。videoBitrate : 100000, // 视频比特率。videoCodec : media.CodecMimeType.VIDEO_AVC, // 视频文件编码格式,支持avc格式。videoFrameWidth : 640, // 视频分辨率的宽。videoFrameHeight : 480, // 视频分辨率的高。videoFrameRate : 30 // 视频帧率。};// 创建视频录制的参数,预览流与录像输出流的分辨率的宽(videoFrameWidth)高(videoFrameHeight)比要保持一致。let avMetadata: media.AVMetadata = {videoOrientation: '90' // rotation的值90,是通过getVideoRotation接口获取到的值,具体请参考说明中获取录像旋转角度的方法。}let aVRecorderConfig: media.AVRecorderConfig = {videoSourceType: media.VideoSourceType.VIDEO_SOURCE_TYPE_SURFACE_YUV,profile: aVRecorderProfile,url: 'fd://35', // 此处为样例示范,需要根据开发需求填写实际的路径。metadata: avMetadata};// 创建avRecorder,设置视频录制的参数。let avRecorder: media.AVRecorder | undefined = undefined;try {avRecorder = await media.createAVRecorder();if (avRecorder === undefined) {return undefined;}await avRecorder.prepare(aVRecorderConfig);} catch (error) {let err = error as BusinessError;console.error(`createAVRecorder call failed. error code: ${err.code}`);await avRecorder?.release();return;}// 创建VideoOutput对象。let videoOutput: camera.VideoOutput | undefined = undefined;// createVideoOutput传入的videoProfile对象的宽高需要和aVRecorderProfile保持一致。let videoProfile: undefined | camera.VideoProfile = videoProfilesArray.find((profile: camera.VideoProfile) => {return profile.size.width === aVRecorderProfile.videoFrameWidth && profile.size.height === aVRecorderProfile.videoFrameHeight;});if (!videoProfile) {console.error('videoProfile is not found');await avRecorder.release();return undefined;}try {videoOutput = cameraManager.createVideoOutput(videoProfile, videoSurfaceId);} catch (error) {let err = error as BusinessError;console.error('Failed to create the videoOutput instance. errorCode = ' + err.code);await avRecorder.release();}return videoOutput;} -
开始录像。
- 在设置预览流帧率时,需要先通过getActiveFrameRate查询当前录像流的帧率。
- 当录像流已设置过范围帧率时,预览流帧率必须设置与其相同的范围帧率。
- 当录像流已设置过固定帧率时,预览流帧率要设置成录像帧率的约数,且必须也为固定帧率。
先通过videoOutput的start方法启动录像输出流,再通过avRecorder的start方法开始录像。
async function startVideo(videoOutput: camera.VideoOutput, avRecorder: media.AVRecorder): Promise<void> {try {await videoOutput.start();} catch (error) {let err = error as BusinessError;console.error(`start videoOutput failed, error: ${err.code}`);}avRecorder.start(async (err: BusinessError) => {if (err) {console.error(`Failed to start the video output ${err.message}`);return;}console.info('Callback invoked to indicate the video output start success.');});} -
停止录像。
先通过avRecorder的stop方法停止录像,再通过videoOutput的stop方法停止录像输出流。
async function stopVideo(videoOutput: camera.VideoOutput, avRecorder: media.AVRecorder): Promise<void> {avRecorder.stop((err: BusinessError) => {if (err) {console.error(`Failed to stop the video output ${err.message}`);return;}console.info('Callback invoked to indicate the video output stop success.');});await videoOutput.stop();}
状态监听
在相机应用开发过程中,可以随时监听录像输出流状态,包括录像开始、录像结束、录像流输出的错误。
-
通过注册固定的frameStart回调函数获取监听录像开始结果,videoOutput创建成功时即可监听,录像第一次曝光时触发,有该事件返回结果则认为录像开始。
function onVideoOutputFrameStart(videoOutput: camera.VideoOutput): void {videoOutput.on('frameStart', (err: BusinessError) => {if (err !== undefined && err.code !== 0) {return;}console.info('Video frame started');});} -
通过注册固定的frameEnd回调函数获取监听录像结束结果,videoOutput创建成功时即可监听,录像完成最后一帧时触发,有该事件返回结果则认为录像流已结束。
function onVideoOutputFrameEnd(videoOutput: camera.VideoOutput): void {videoOutput.on('frameEnd', (err: BusinessError) => {if (err !== undefined && err.code !== 0) {return;}console.info('Video frame ended');});} -
通过注册固定的error回调函数获取监听录像输出错误结果,callback返回预览输出接口使用错误时对应的错误码,错误码类型参见CameraErrorCode。
function onVideoOutputError(videoOutput: camera.VideoOutput): void {videoOutput.on('error', (error: BusinessError) => {console.error(`Video output error code: ${error.code}`);});}