From 892ed87999be3cd19ffe46fc446786f65ed24eb4 Mon Sep 17 00:00:00 2001 From: liyiming Date: Sat, 15 Jul 2023 19:49:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0videoRecorder=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E9=85=8D=E7=BD=AE=E6=98=AF=E5=90=A6=E5=BF=85=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liyiming --- zh-cn/application-dev/reference/apis/js-apis-media.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-media.md b/zh-cn/application-dev/reference/apis/js-apis-media.md index ab85032419..6ff30b9bcd 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-media.md +++ b/zh-cn/application-dev/reference/apis/js-apis-media.md @@ -3354,12 +3354,13 @@ videoRecorder.on('error', (error) => { // 设 | 名称 | 类型 | 必填 | 说明 | | --------------- | ---------------------------------------------- | ---- | ------------------------------------------------------------ | -| audioSourceType | [AudioSourceType](#audiosourcetype9) | 是 | 视频录制的音频源类型。 | +| audioSourceType | [AudioSourceType](#audiosourcetype9) | 否 | 视频录制的音频源类型,选择音频录制时必填。 | | videoSourceType | [VideoSourceType](#videosourcetype9) | 是 | 视频录制的视频源类型。 | | profile | [VideoRecorderProfile](#videorecorderprofile9) | 是 | 视频录制的profile。 | | rotation | number | 否 | 录制视频的旋转角度。 | | location | [Location](#location) | 否 | 录制视频的地理位置。 | | url | string | 是 | 视频输出URL:fd://xx (fd number)
![](figures/zh-cn_image_url.png) | +通过audioSourceType和videoSourceType区分纯视频录制和音视频录制(纯音频录制请使用[AVRecorder](#avrecorder9)或[AudioRecorder](#audiorecorderdeprecated))。纯视频录制时,仅需要设置videoSourceType;音视频录制时,audioSourceType和videoSourceType均需要设置。 ## VideoRecorderProfile9+ @@ -3371,10 +3372,10 @@ videoRecorder.on('error', (error) => { // 设 | 名称 | 类型 | 必填 | 说明 | | ---------------- | -------------------------------------------- | ---- | ---------------- | -| audioBitrate | number | 是 | 音频编码比特率。 | -| audioChannels | number | 是 | 音频采集声道数。 | -| audioCodec | [CodecMimeType](#codecmimetype8) | 是 | 音频编码格式。 | -| audioSampleRate | number | 是 | 音频采样率。 | +| audioBitrate | number | 否 | 音频编码比特率,选择音频录制时必填。 | +| audioChannels | number | 否 | 音频采集声道数,选择音频录制时必填。 | +| audioCodec | [CodecMimeType](#codecmimetype8) | 否 | 音频编码格式,选择音频录制时必填。 | +| audioSampleRate | number | 否 | 音频采样率,选择音频录制时必填。 | | fileFormat | [ContainerFormatType](#containerformattype8) | 是 | 文件的容器格式。 | | videoBitrate | number | 是 | 视频编码比特率。 | | videoCodec | [CodecMimeType](#codecmimetype8) | 是 | 视频编码格式。 | -- GitLab