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 0898dfb5987bcc3cb0628e614ed3d1b5478e0682..038f252320905b5cec7f19be422206231e4cfc19 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-media.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-media.md
@@ -1743,14 +1743,15 @@ audioRecorder.prepare(); // pre
| 名称 | 参数类型 | 必填 | 说明 |
| --------------------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
-| audioEncoder | [AudioEncoder](#audioencoder) | 否 | 音频编码格式,默认设置为AAC_LC。 |
+| audioEncoder(deprecated) | [AudioEncoder](#audioencoder) | 否 | 音频编码格式,默认设置为AAC_LC。
**说明:** 从API Version 8 开始废弃,建议使用audioEncoderMime替代。 |
| audioEncodeBitRate | number | 否 | 音频编码比特率,默认值为48000。 |
| audioSampleRate | number | 否 | 音频采集采样率,默认值为48000。 |
| numberOfChannels | number | 否 | 音频采集声道数,默认值为2。 |
-| format | [AudioOutputFormat](#audiooutputformat) | 否 | 音频输出封装格式,默认设置为MPEG_4。 |
+| format(deprecated) | [AudioOutputFormat](#audiooutputformat) | 否 | 音频输出封装格式,默认设置为MPEG_4。
**说明:** 从API Version 8 开始废弃,建议使用fileFormat替代。 |
| location | [Location](#location) | 否 | 音频采集的地理位置。 |
-| uri | string | 是 | 音频输出URI:fd://xx (fd number)

文件需要由调用者创建,并赋予适当的权限。 |
-| audioEncoderMime | [CodecMimeType](#codecmimetype8) | 否 | 音频编码格式。 |
+| uri | string | 是 | 音频输出URI:fd://xx (fd number)

文件需要由调用者创建,并赋予适当的权限。 |
+| audioEncoderMime8+ | [CodecMimeType](#codecmimetype8) | 否 | 音频编码格式。 |
+| fileFormat8+ | [ContainerFormatType](#containerformattype8) | 否 | 音频编码格式。 |
## AudioEncoder(deprecated)