Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
97f50b0f
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看板
未验证
提交
97f50b0f
编写于
4月 07, 2023
作者:
O
openharmony_ci
提交者:
Gitee
4月 07, 2023
浏览文件
操作
浏览文件
下载
差异文件
!16878 fix bug for audio prefer output device interface is inconsistent with SDK
Merge pull request !16878 from wangtao/master
上级
82b8bc7d
c55dca78
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
35 addition
and
9 deletion
+35
-9
zh-cn/application-dev/reference/apis/js-apis-audio.md
zh-cn/application-dev/reference/apis/js-apis-audio.md
+35
-9
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-audio.md
浏览文件 @
97f50b0f
...
...
@@ -3918,20 +3918,20 @@ getPreferOutputDeviceForRendererInfo(rendererInfo: AudioRendererInfo, callback:
let
rendererInfo
=
{
content
:
audio
.
ContentType
.
CONTENT_TYPE_MUSIC
,
usage
:
audio
.
StreamUsage
.
STREAM_USAGE_MEDIA
,
rendererFlags
:
0
}
;
rendererFlags
:
0
}
async
function
getPreferOutputDevice
()
{
audioRoutingManager
.
getPreferOutputDeviceForRendererInfo
(
rendererInfo
,
(
err
,
desc
)
=>
{
if
(
err
)
{
console
.
error
(
`Result ERROR:
${
JSON
.
stringify
(
err
)
}
`
);
console
.
error
(
`Result ERROR:
${
err
}
`
);
}
else
{
console
.
info
(
'
device descriptor:
'
+
JSON
.
stringify
(
desc
)
);
console
.
info
(
`device descriptor:
${
desc
}
`
);
}
});
}
```
### getPreferOutputDeviceForRendererInfo<sup>
9
+</sup>
### getPreferOutputDeviceForRendererInfo<sup>
10
+</sup>
getPreferOutputDeviceForRendererInfo(rendererInfo: AudioRendererInfo): Promise
<
AudioDeviceDescriptors
>
根据音频信息,返回优先级最高的输出设备,使用promise方式异步返回结果。
...
...
@@ -3950,19 +3950,27 @@ getPreferOutputDeviceForRendererInfo(rendererInfo: AudioRendererInfo): Promise&l
| --------------------- | --------------------------- |
| Promise
<
[AudioDeviceDescriptors](#audiodevicedescriptors)
>
| Promise返回优先级最高的输出设备信息。 |
**错误码:**
以下错误码的详细介绍请参见
[
音频错误码
](
../errorcodes/errorcode-audio.md
)
。
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error |
**示例:**
```
js
let
rendererInfo
=
{
content
:
audio
.
ContentType
.
CONTENT_TYPE_MUSIC
,
usage
:
audio
.
StreamUsage
.
STREAM_USAGE_MEDIA
,
rendererFlags
:
0
}
;
rendererFlags
:
0
}
async
function
getPreferOutputDevice
()
{
audioRoutingManager
.
getPreferOutputDeviceForRendererInfo
(
rendererInfo
).
then
((
desc
)
=>
{
console
.
info
(
'
device descriptor:
'
+
JSON
.
stringify
(
desc
)
);
console
.
info
(
`device descriptor:
${
desc
}
`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`Result ERROR:
${
JSON
.
stringify
(
err
)
}
`
);
console
.
error
(
`Result ERROR:
${
err
}
`
);
})
}
```
...
...
@@ -3973,6 +3981,8 @@ on(type: 'preferOutputDeviceChangeForRendererInfo', rendererInfo: AudioRendererI
订阅最高优先级输出设备变化事件,使用callback获取最高优先级输出设备。
**系统能力:**
SystemCapability.Multimedia.Audio.Device
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -3981,16 +3991,24 @@ on(type: 'preferOutputDeviceChangeForRendererInfo', rendererInfo: AudioRendererI
| rendererInfo |
[
AudioRendererInfo
](
#audiorendererinfo8
)
| 是 | 表示渲染器信息。 |
| callback | Callback<
[
AudioDeviceDescriptors
](
#audiodevicedescriptors
)
\>
| 是 | 获取优先级最高的输出设备信息。 |
**错误码:**
以下错误码的详细介绍请参见
[
音频错误码
](
../errorcodes/errorcode-audio.md
)
。
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error |
**示例:**
```
js
let
rendererInfo
=
{
content
:
audio
.
ContentType
.
CONTENT_TYPE_MUSIC
,
usage
:
audio
.
StreamUsage
.
STREAM_USAGE_MEDIA
,
rendererFlags
:
0
}
;
rendererFlags
:
0
}
audioRoutingManager
.
on
(
'
preferOutputDeviceChangeForRendererInfo
'
,
rendererInfo
,
(
desc
)
=>
{
console
.
info
(
'
device descriptor:
'
+
JSON
.
stringify
(
desc
)
);
console
.
info
(
`device descriptor:
${
desc
}
`
);
});
```
...
...
@@ -4009,6 +4027,14 @@ off(type: 'preferOutputDeviceChangeForRendererInfo', callback?: Callback<AudioDe
| type | string | 是 | 订阅的事件的类型。支持事件:'preferOutputDeviceChangeForRendererInfo' |
| callback | Callback
<
[
AudioDeviceDescriptors
](
#audiodevicedescriptors
)
>
| 否 | 监听方法的回调函数。 |
**错误码:**
以下错误码的详细介绍请参见
[
音频错误码
](
../errorcodes/errorcode-audio.md
)
。
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error |
**示例:**
```
js
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录