Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ea49779d
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ea49779d
编写于
6月 25, 2022
作者:
M
magekkkk
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
optimize reference and example code for set/get param
Signed-off-by:
N
magekkkk
<
lixin113@huawei.com
>
上级
ce5e0325
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
12 addition
and
12 deletion
+12
-12
en/application-dev/reference/apis/js-apis-audio.md
en/application-dev/reference/apis/js-apis-audio.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-audio.md
zh-cn/application-dev/reference/apis/js-apis-audio.md
+8
-8
未找到文件。
en/application-dev/reference/apis/js-apis-audio.md
浏览文件 @
ea49779d
...
@@ -1159,7 +1159,7 @@ Sets an audio parameter. This API uses an asynchronous callback to return the re
...
@@ -1159,7 +1159,7 @@ Sets an audio parameter. This API uses an asynchronous callback to return the re
**Example**
**Example**
```
```
audioManager.setAudioParameter('
PBits per sample', '8 bit
', (err) => {
audioManager.setAudioParameter('
key_example', 'value_example
', (err) => {
if (err) {
if (err) {
console.error('Failed to set the audio parameter. ${err.message}');
console.error('Failed to set the audio parameter. ${err.message}');
return;
return;
...
@@ -1192,7 +1192,7 @@ Sets an audio parameter. This API uses a promise to return the result.
...
@@ -1192,7 +1192,7 @@ Sets an audio parameter. This API uses a promise to return the result.
**Example**
**Example**
```
```
audioManager.setAudioParameter('
PBits per sample', '8 bit
').then(() => {
audioManager.setAudioParameter('
key_example', 'value_example
').then(() => {
console.log('Promise returned to indicate a successful setting of the audio parameter.');
console.log('Promise returned to indicate a successful setting of the audio parameter.');
});
});
```
```
...
@@ -1215,7 +1215,7 @@ Obtains the value of an audio parameter. This API uses an asynchronous callback
...
@@ -1215,7 +1215,7 @@ Obtains the value of an audio parameter. This API uses an asynchronous callback
**Example**
**Example**
```
```
audioManager.getAudioParameter('
PBits per s
ample', (err, value) => {
audioManager.getAudioParameter('
key_ex
ample', (err, value) => {
if (err) {
if (err) {
console.error('Failed to obtain the value of the audio parameter. ${err.message}');
console.error('Failed to obtain the value of the audio parameter. ${err.message}');
return;
return;
...
@@ -1247,7 +1247,7 @@ Obtains the value of an audio parameter. This API uses a promise to return the r
...
@@ -1247,7 +1247,7 @@ Obtains the value of an audio parameter. This API uses a promise to return the r
**Example**
**Example**
```
```
audioManager.getAudioParameter('
PBits per s
ample').then((value) => {
audioManager.getAudioParameter('
key_ex
ample').then((value) => {
console.log('Promise returned to indicate that the value of the audio parameter is obtained.' + value);
console.log('Promise returned to indicate that the value of the audio parameter is obtained.' + value);
});
});
```
```
...
...
zh-cn/application-dev/reference/apis/js-apis-audio.md
浏览文件 @
ea49779d
...
@@ -1146,7 +1146,7 @@ setAudioParameter(key: string, value: string, callback: AsyncCallback<void>
...
@@ -1146,7 +1146,7 @@ setAudioParameter(key: string, value: string, callback: AsyncCallback<void>
音频参数设置,使用callback方式异步返回结果。
音频参数设置,使用callback方式异步返回结果。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
也仅以标准系统开发板为例
,实际支持的音频配置参数见具体设备平台的资料描述。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
内使用样例参数
,实际支持的音频配置参数见具体设备平台的资料描述。
**系统能力:**
SystemCapability.Multimedia.Audio.Core
**系统能力:**
SystemCapability.Multimedia.Audio.Core
...
@@ -1161,7 +1161,7 @@ setAudioParameter(key: string, value: string, callback: AsyncCallback<void>
...
@@ -1161,7 +1161,7 @@ setAudioParameter(key: string, value: string, callback: AsyncCallback<void>
**示例:**
**示例:**
```
```
audioManager.setAudioParameter('
PBits per sample', '8 bit
', (err) => {
audioManager.setAudioParameter('
key_example', 'value_example
', (err) => {
if (err) {
if (err) {
console.error('Failed to set the audio parameter. ${err.message}');
console.error('Failed to set the audio parameter. ${err.message}');
return;
return;
...
@@ -1176,7 +1176,7 @@ setAudioParameter(key: string, value: string): Promise<void>
...
@@ -1176,7 +1176,7 @@ setAudioParameter(key: string, value: string): Promise<void>
音频参数设置,使用Promise方式异步返回结果。
音频参数设置,使用Promise方式异步返回结果。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
也仅以标准系统开发板为例
,实际支持的音频配置参数见具体设备平台的资料描述。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
内使用样例参数
,实际支持的音频配置参数见具体设备平台的资料描述。
**系统能力:**
SystemCapability.Multimedia.Audio.Core
**系统能力:**
SystemCapability.Multimedia.Audio.Core
...
@@ -1196,7 +1196,7 @@ setAudioParameter(key: string, value: string): Promise<void>
...
@@ -1196,7 +1196,7 @@ setAudioParameter(key: string, value: string): Promise<void>
**示例:**
**示例:**
```
```
audioManager.setAudioParameter('
PBits per sample', '8 bit
').then(() => {
audioManager.setAudioParameter('
key_example', 'value_example
').then(() => {
console.log('Promise returned to indicate a successful setting of the audio parameter.');
console.log('Promise returned to indicate a successful setting of the audio parameter.');
});
});
```
```
...
@@ -1207,7 +1207,7 @@ getAudioParameter(key: string, callback: AsyncCallback<string>): void
...
@@ -1207,7 +1207,7 @@ getAudioParameter(key: string, callback: AsyncCallback<string>): void
获取指定音频参数值,使用callback方式异步返回结果。
获取指定音频参数值,使用callback方式异步返回结果。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
也仅以标准系统开发板为例
,实际支持的音频配置参数见具体设备平台的资料描述。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
内使用样例参数
,实际支持的音频配置参数见具体设备平台的资料描述。
**系统能力:**
SystemCapability.Multimedia.Audio.Core
**系统能力:**
SystemCapability.Multimedia.Audio.Core
...
@@ -1221,7 +1221,7 @@ getAudioParameter(key: string, callback: AsyncCallback<string>): void
...
@@ -1221,7 +1221,7 @@ getAudioParameter(key: string, callback: AsyncCallback<string>): void
**示例:**
**示例:**
```
```
audioManager.getAudioParameter('
PBits per s
ample', (err, value) => {
audioManager.getAudioParameter('
key_ex
ample', (err, value) => {
if (err) {
if (err) {
console.error('Failed to obtain the value of the audio parameter. ${err.message}');
console.error('Failed to obtain the value of the audio parameter. ${err.message}');
return;
return;
...
@@ -1236,7 +1236,7 @@ getAudioParameter(key: string): Promise<string>
...
@@ -1236,7 +1236,7 @@ getAudioParameter(key: string): Promise<string>
获取指定音频参数值,使用Promise方式异步返回结果。
获取指定音频参数值,使用Promise方式异步返回结果。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
也仅以标准系统开发板为例
,实际支持的音频配置参数见具体设备平台的资料描述。
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码
内使用样例参数
,实际支持的音频配置参数见具体设备平台的资料描述。
**系统能力:**
SystemCapability.Multimedia.Audio.Core
**系统能力:**
SystemCapability.Multimedia.Audio.Core
...
@@ -1255,7 +1255,7 @@ getAudioParameter(key: string): Promise<string>
...
@@ -1255,7 +1255,7 @@ getAudioParameter(key: string): Promise<string>
**示例:**
**示例:**
```
```
audioManager.getAudioParameter('
PBits per s
ample').then((value) => {
audioManager.getAudioParameter('
key_ex
ample').then((value) => {
console.log('Promise returned to indicate that the value of the audio parameter is obtained.' + value);
console.log('Promise returned to indicate that the value of the audio parameter is obtained.' + value);
});
});
```
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录