js-apis-audio.md 194.1 KB
Newer Older
Z
zengyawen 已提交
1
# 音频管理
2

J
jiao_yanlin 已提交
3
音频管理提供管理音频的一些基础能力,包括对音频音量、音频设备的管理,以及对音频数据的采集和渲染等。 
Z
zengyawen 已提交
4 5 6 7

该模块提供以下音频相关的常用功能:

- [AudioManager](#audiomanager):音频管理。
L
lwx1059628 已提交
8
- [AudioRenderer](#audiorenderer8):音频渲染,用于播放PCM(Pulse Code Modulation)音频数据。
9
- [AudioCapturer](#audiocapturer8):音频采集,用于录制PCM音频数据。
Z
zengyawen 已提交
10

11 12 13
>  **说明:**
>  本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

Z
zengyawen 已提交
14
## 导入模块
M
mamingshuai 已提交
15

J
jiao_yanlin 已提交
16
```js
M
mamingshuai 已提交
17 18 19
import audio from '@ohos.multimedia.audio';
```

20 21
## 常量

22
**系统接口:** 该接口为系统接口
23 24

**系统能力:** SystemCapability.Multimedia.Audio.Device
25

26 27 28 29 30 31 32 33 34 35 36
| 名称  | 类型                     | 可读 | 可写 | 说明               |
| ----- | -------------------------- | ---- | ---- | ------------------ |
| LOCAL_NETWORK_ID<sup>9+</sup> | string | 是   | 否   | 本地设备网络id。 |

**示例:**

```js
import audio from '@ohos.multimedia.audio';

const localNetworkId = audio.LOCAL_NETWORK_ID;
```
Z
zengyawen 已提交
37

Z
zengyawen 已提交
38
## audio.getAudioManager
Z
zengyawen 已提交
39 40

getAudioManager(): AudioManager
M
mamingshuai 已提交
41 42 43

获取音频管理器。

Z
zengyawen 已提交
44 45
**系统能力:** SystemCapability.Multimedia.Audio.Core

M
mamingshuai 已提交
46
**返回值:**
47

Z
zengyawen 已提交
48 49
| 类型                          | 说明         |
| ----------------------------- | ------------ |
Z
zengyawen 已提交
50
| [AudioManager](#audiomanager) | 音频管理类。 |
M
mamingshuai 已提交
51 52

**示例:**
J
jiao_yanlin 已提交
53
```js
M
mamingshuai 已提交
54 55 56
var audioManager = audio.getAudioManager();
```

Z
zengyawen 已提交
57 58
## audio.createAudioRenderer<sup>8+</sup>

M
magekkkk 已提交
59
createAudioRenderer(options: AudioRendererOptions, callback: AsyncCallback\<AudioRenderer>): void
Z
zengyawen 已提交
60

61
获取音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
62 63 64

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

65
**参数:**
Z
zengyawen 已提交
66

H
update  
HelloCrease 已提交
67 68 69
| 参数名   | 类型                                            | 必填 | 说明             |
| -------- | ----------------------------------------------- | ---- | ---------------- |
| options  | [AudioRendererOptions](#audiorendereroptions8)  | 是   | 配置渲染器。     |
M
magekkkk 已提交
70
| callback | AsyncCallback<[AudioRenderer](#audiorenderer8)> | 是   | 音频渲染器对象。 |
L
lwx1059628 已提交
71 72 73

**示例:**

J
jiao_yanlin 已提交
74
```js
L
lwx1059628 已提交
75
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
76
var audioStreamInfo = {
J
jiao_yanlin 已提交
77 78 79 80
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
81 82 83
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
84 85
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
86
  rendererFlags: 0
L
lwx1059628 已提交
87 88 89
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
90 91
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
L
lwx1059628 已提交
92 93 94
}

audio.createAudioRenderer(audioRendererOptions,(err, data) => {
J
jiao_yanlin 已提交
95
  if (err) {
96
    console.error(`AudioRenderer Created: Error: ${err}`);
J
jiao_yanlin 已提交
97
  } else {
98
    console.info('AudioRenderer Created: Success: SUCCESS');
J
jiao_yanlin 已提交
99 100
    let audioRenderer = data;
  }
L
lwx1059628 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
});
```

## audio.createAudioRenderer<sup>8+</sup>

createAudioRenderer(options: AudioRendererOptions): Promise<AudioRenderer\>

获取音频渲染器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名  | 类型                                           | 必填 | 说明         |
| :------ | :--------------------------------------------- | :--- | :----------- |
| options | [AudioRendererOptions](#audiorendereroptions8) | 是   | 配置渲染器。 |

**返回值:**

| 类型                                      | 说明             |
| ----------------------------------------- | ---------------- |
122
| Promise<[AudioRenderer](#audiorenderer8)> | 音频渲染器对象。 |
Z
zengyawen 已提交
123 124 125

**示例:**

J
jiao_yanlin 已提交
126
```js
L
lwx1059628 已提交
127 128
import audio from '@ohos.multimedia.audio';

Z
zengyawen 已提交
129
var audioStreamInfo = {
J
jiao_yanlin 已提交
130 131 132 133
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
Z
zengyawen 已提交
134 135 136
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
137 138
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
139
  rendererFlags: 0
Z
zengyawen 已提交
140 141 142
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
143 144
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
Z
zengyawen 已提交
145 146
}

L
lwx1059628 已提交
147 148
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
149
  audioRenderer = data;
150
  console.info('AudioFrameworkRenderLog: AudioRenderer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
151
}).catch((err) => {
152
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created : ERROR : ${err}`);
L
lwx1059628 已提交
153
});
Z
zengyawen 已提交
154
```
Z
zengyawen 已提交
155

L
lwx1059628 已提交
156 157 158 159 160 161 162 163 164 165
## audio.createAudioCapturer<sup>8+</sup>

createAudioCapturer(options: AudioCapturerOptions, callback: AsyncCallback<AudioCapturer\>): void

获取音频采集器。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

H
update  
HelloCrease 已提交
166 167
| 参数名   | 类型                                            | 必填 | 说明             |
| :------- | :---------------------------------------------- | :--- | :--------------- |
Z
zengyawen 已提交
168
| options  | [AudioCapturerOptions](#audiocaptureroptions8)  | 是   | 配置音频采集器。 |
M
magekkkk 已提交
169
| callback | AsyncCallback<[AudioCapturer](#audiocapturer8)> | 是   | 音频采集器对象。 |
L
lwx1059628 已提交
170 171 172

**示例:**

J
jiao_yanlin 已提交
173
```js
L
lwx1059628 已提交
174
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
175
var audioStreamInfo = {
J
jiao_yanlin 已提交
176 177 178 179
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
180 181 182
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
183
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
184
  capturerFlags: 0
L
lwx1059628 已提交
185 186 187
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
188 189
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
190 191
}

J
jiao_yanlin 已提交
192
audio.createAudioCapturer(audioCapturerOptions, (err, data) => {
J
jiao_yanlin 已提交
193
  if (err) {
194
    console.error(`AudioCapturer Created : Error: ${err}`);
J
jiao_yanlin 已提交
195
  } else {
196
    console.info('AudioCapturer Created : Success : SUCCESS');
J
jiao_yanlin 已提交
197 198
    let audioCapturer = data;
  }
L
lwx1059628 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211
});
```

## audio.createAudioCapturer<sup>8+</sup>

createAudioCapturer(options: AudioCapturerOptions): Promise<AudioCapturer\>

获取音频采集器。使用promise 方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

Z
zengyawen 已提交
212 213 214
| 参数名  | 类型                                           | 必填 | 说明             |
| :------ | :--------------------------------------------- | :--- | :--------------- |
| options | [AudioCapturerOptions](#audiocaptureroptions8) | 是   | 配置音频采集器。 |
L
lwx1059628 已提交
215 216 217 218 219

**返回值:**

| 类型                                      | 说明           |
| ----------------------------------------- | -------------- |
M
magekkkk 已提交
220
| Promise<[AudioCapturer](#audiocapturer8)> | 音频采集器对象 |
L
lwx1059628 已提交
221 222 223

**示例:**

J
jiao_yanlin 已提交
224
```js
L
lwx1059628 已提交
225 226
import audio from '@ohos.multimedia.audio';

L
lwx1059628 已提交
227
var audioStreamInfo = {
J
jiao_yanlin 已提交
228 229 230 231
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
232 233 234
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
235
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
236
  capturerFlags: 0
L
lwx1059628 已提交
237 238 239
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
240 241
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
242 243
}

L
lwx1059628 已提交
244
var audioCapturer;
R
rahul 已提交
245
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
246
  audioCapturer = data;
247
  console.info('AudioCapturer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
248
}).catch((err) => {
249
  console.error(`AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
250
});
L
lwx1059628 已提交
251 252
```

Z
zengyawen 已提交
253
## AudioVolumeType
M
mamingshuai 已提交
254

255
枚举,音频流类型。
M
mamingshuai 已提交
256

Z
zengyawen 已提交
257 258 259 260 261 262 263 264
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称                         | 默认值 | 描述       |
| ---------------------------- | ------ | ---------- |
| VOICE_CALL<sup>8+</sup>      | 0      | 语音电话。 |
| RINGTONE                     | 2      | 铃声。     |
| MEDIA                        | 3      | 媒体。     |
| VOICE_ASSISTANT<sup>8+</sup> | 9      | 语音助手。 |
265
| ALL<sup>9+</sup>             | 100    | 所有公共音频流。<br/>此接口为系统接口,三方应用不支持调用。|
Z
zengyawen 已提交
266

267
## InterruptMode<sup>9+</sup>
268

269
枚举,焦点模型。
270

271
**系统能力:** SystemCapability.Multimedia.Audio.Core
272 273 274

| 名称                         | 默认值 | 描述       |
| ---------------------------- | ------ | ---------- |
275 276
| SHARE_MODE      | 0      | 共享焦点模式。 |
| INDEPENDENT_MODE| 1      | 独立焦点模式。     |
277

Z
zengyawen 已提交
278
## DeviceFlag
M
mamingshuai 已提交
279

280
枚举,可获取的设备种类。
M
mamingshuai 已提交
281

Z
zengyawen 已提交
282 283
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

284 285
| 名称                            | 默认值  | 描述                                              |
| ------------------------------- | ------ | ------------------------------------------------- |
286 287 288 289 290 291 292
| NONE_DEVICES_FLAG<sup>9+</sup>  | 0      | 无 <br/>此接口为系统接口,三方应用不支持调用。        |
| OUTPUT_DEVICES_FLAG             | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG              | 2      | 输入设备。 |
| ALL_DEVICES_FLAG                | 3      | 所有设备。 |
| DISTRIBUTED_OUTPUT_DEVICES_FLAG<sup>9+</sup> | 4   | 分布式输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| DISTRIBUTED_INPUT_DEVICES_FLAG<sup>9+</sup>  | 8   | 分布式输入设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| ALL_DISTRIBUTED_DEVICES_FLAG<sup>9+</sup>    | 12  | 分布式输入和输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
Z
zengyawen 已提交
293 294 295


## DeviceRole
M
mamingshuai 已提交
296

297
枚举,设备角色。
M
mamingshuai 已提交
298

Z
zengyawen 已提交
299 300 301 302 303 304
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称          | 默认值 | 描述           |
| ------------- | ------ | -------------- |
| INPUT_DEVICE  | 1      | 输入设备角色。 |
| OUTPUT_DEVICE | 2      | 输出设备角色。 |
M
mamingshuai 已提交
305 306


Z
zengyawen 已提交
307 308 309
## DeviceType

枚举,设备类型。
M
magekkkk 已提交
310

Z
zengyawen 已提交
311 312
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

313 314 315 316 317 318 319 320 321 322 323 324
| 名称                 | 默认值 | 描述                                                      |
| ---------------------| ------ | --------------------------------------------------------- |
| INVALID              | 0      | 无效设备。                                                |
| EARPIECE             | 1      | 听筒。                                                    |
| SPEAKER              | 2      | 扬声器。                                                  |
| WIRED_HEADSET        | 3      | 有线耳机,带麦克风。                                      |
| WIRED_HEADPHONES     | 4      | 有线耳机,无麦克风。                                      |
| BLUETOOTH_SCO        | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。      |
| BLUETOOTH_A2DP       | 8      | 蓝牙设备A2DP(Advanced Audio Distribution Profile)连接。 |
| MIC                  | 15     | 麦克风。                                                  |
| USB_HEADSET          | 22     | USB耳机,带麦克风。                                       |
| DEFAULT<sup>9+</sup> | 1000   | 默认设备类型。                                            |
M
magekkkk 已提交
325

Z
zengyawen 已提交
326
## ActiveDeviceType
M
magekkkk 已提交
327

Z
zengyawen 已提交
328
枚举,活跃设备类型。
M
magekkkk 已提交
329

Z
zengyawen 已提交
330 331 332 333 334 335
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称          | 默认值 | 描述                                                 |
| ------------- | ------ | ---------------------------------------------------- |
| SPEAKER       | 2      | 扬声器。                                             |
| BLUETOOTH_SCO | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。 |
M
mamingshuai 已提交
336

Z
zengyawen 已提交
337
## AudioRingMode
338 339 340

枚举,铃声模式。

Z
zengyawen 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Communication

| 名称                | 默认值 | 描述       |
| ------------------- | ------ | ---------- |
| RINGER_MODE_SILENT  | 0      | 静音模式。 |
| RINGER_MODE_VIBRATE | 1      | 震动模式。 |
| RINGER_MODE_NORMAL  | 2      | 响铃模式。 |

## AudioSampleFormat<sup>8+</sup>

枚举,音频采样格式。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

355 356 357 358 359 360 361 362
| 名称                                | 默认值 | 描述                       |
| ---------------------------------- | ------ | -------------------------- |
| SAMPLE_FORMAT_INVALID              | -1     | 无效格式。                 |
| SAMPLE_FORMAT_U8                   | 0      | 无符号8位整数。            |
| SAMPLE_FORMAT_S16LE                | 1      | 带符号的16位整数,小尾数。 |
| SAMPLE_FORMAT_S24LE                | 2      | 带符号的24位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_S32LE                | 3      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_F32LE<sup>9+</sup>   | 4      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
Z
zengyawen 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405

## AudioChannel<sup>8+</sup>

枚举, 音频声道。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称      | 默认值   | 描述     |
| --------- | -------- | -------- |
| CHANNEL_1 | 0x1 << 0 | 单声道。 |
| CHANNEL_2 | 0x1 << 1 | 双声道。 |

## AudioSamplingRate<sup>8+</sup>

枚举,音频采样率。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称              | 默认值 | 描述            |
| ----------------- | ------ | --------------- |
| SAMPLE_RATE_8000  | 8000   | 采样率为8000。  |
| SAMPLE_RATE_11025 | 11025  | 采样率为11025。 |
| SAMPLE_RATE_12000 | 12000  | 采样率为12000。 |
| SAMPLE_RATE_16000 | 16000  | 采样率为16000。 |
| SAMPLE_RATE_22050 | 22050  | 采样率为22050。 |
| SAMPLE_RATE_24000 | 24000  | 采样率为24000。 |
| SAMPLE_RATE_32000 | 32000  | 采样率为32000。 |
| SAMPLE_RATE_44100 | 44100  | 采样率为44100。 |
| SAMPLE_RATE_48000 | 48000  | 采样率为48000。 |
| SAMPLE_RATE_64000 | 64000  | 采样率为64000。 |
| SAMPLE_RATE_96000 | 96000  | 采样率为96000。 |

## AudioEncodingType<sup>8+</sup>

枚举,音频编码类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称                  | 默认值 | 描述      |
| --------------------- | ------ | --------- |
| ENCODING_TYPE_INVALID | -1     | 无效。    |
| ENCODING_TYPE_RAW     | 0      | PCM编码。 |

L
lwx1059628 已提交
406
## ContentType
Z
zengyawen 已提交
407 408 409 410 411

枚举,音频内容类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

L
lwx1059628 已提交
412 413 414 415 416 417 418 419
| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| CONTENT_TYPE_UNKNOWN               | 0      | 未知类型。 |
| CONTENT_TYPE_SPEECH                | 1      | 语音。     |
| CONTENT_TYPE_MUSIC                 | 2      | 音乐。     |
| CONTENT_TYPE_MOVIE                 | 3      | 电影。     |
| CONTENT_TYPE_SONIFICATION          | 4      | 加密类型。 |
| CONTENT_TYPE_RINGTONE<sup>8+</sup> | 5      | 铃声。     |
Z
zengyawen 已提交
420

L
lwx1059628 已提交
421
## StreamUsage
Z
zengyawen 已提交
422 423 424 425 426 427 428 429 430 431

枚举,音频流使用类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| STREAM_USAGE_UNKNOWN               | 0      | 未知类型。 |
| STREAM_USAGE_MEDIA                 | 1      | 音频。     |
| STREAM_USAGE_VOICE_COMMUNICATION   | 2      | 语音通信。 |
L
lwx1059628 已提交
432
| STREAM_USAGE_NOTIFICATION_RINGTONE | 6      | 通知铃声。 |
Z
zengyawen 已提交
433

434
## FocusType<sup>9+</sup>
435

436
表示焦点类型的枚举。
437

438 439
**系统接口:** 该接口为系统接口

440
**系统能力:**: SystemCapability.Multimedia.Audio.Core
441

442 443 444
| 名称                               | 默认值  | 描述                            |
| ---------------------------------- | ------ | ------------------------------- |
| FOCUS_TYPE_RECORDING               | 0      |  在录制场景使用,可打断其他音频。  |
445 446


Z
zengyawen 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
## AudioState<sup>8+</sup>

枚举,音频状态。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称           | 默认值 | 描述             |
| -------------- | ------ | ---------------- |
| STATE_INVALID  | -1     | 无效状态。       |
| STATE_NEW      | 0      | 创建新实例状态。 |
| STATE_PREPARED | 1      | 准备状态。       |
| STATE_RUNNING  | 2      | 可运行状态。     |
| STATE_STOPPED  | 3      | 停止状态。       |
| STATE_RELEASED | 4      | 释放状态。       |
| STATE_PAUSED   | 5      | 暂停状态。       |

## AudioRendererRate<sup>8+</sup>

L
lwx1059628 已提交
465
枚举,音频渲染速度。
Z
zengyawen 已提交
466 467 468 469 470 471 472 473 474

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

| 名称               | 默认值 | 描述       |
| ------------------ | ------ | ---------- |
| RENDER_RATE_NORMAL | 0      | 正常速度。 |
| RENDER_RATE_DOUBLE | 1      | 2倍速。    |
| RENDER_RATE_HALF   | 2      | 0.5倍数。  |

L
lwx1059628 已提交
475
## InterruptType
Z
zengyawen 已提交
476 477 478 479

枚举,中断类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
480

Z
zengyawen 已提交
481 482 483 484 485
| 名称                 | 默认值 | 描述                   |
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
486
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
487 488 489 490 491 492 493 494 495 496

枚举,强制打断类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

| 名称            | 默认值 | 描述                                 |
| --------------- | ------ | ------------------------------------ |
| INTERRUPT_FORCE | 0      | 由系统进行操作,强制打断音频播放。   |
| INTERRUPT_SHARE | 1      | 由应用进行操作,可以选择打断或忽略。 |

L
lwx1059628 已提交
497
## InterruptHint
Z
zengyawen 已提交
498 499 500 501 502

枚举,中断提示。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

L
lwx1059628 已提交
503 504 505 506 507 508 509 510
| 名称                               | 默认值 | 描述                                         |
| ---------------------------------- | ------ | -------------------------------------------- |
| INTERRUPT_HINT_NONE<sup>8+</sup>   | 0      | 无提示。                                     |
| INTERRUPT_HINT_RESUME              | 1      | 提示音频恢复。                               |
| INTERRUPT_HINT_PAUSE               | 2      | 提示音频暂停。                               |
| INTERRUPT_HINT_STOP                | 3      | 提示音频停止。                               |
| INTERRUPT_HINT_DUCK                | 4      | 提示音频躲避。(躲避:音量减弱,而不会停止) |
| INTERRUPT_HINT_UNDUCK<sup>8+</sup> | 5      | 提示音量恢复。                               |
Z
zengyawen 已提交
511

512 513 514 515 516 517
## InterruptActionType

枚举,中断事件返回类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

H
update  
HelloCrease 已提交
518 519 520 521
| 名称           | 默认值 | 描述               |
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
522

Z
zengyawen 已提交
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
## AudioStreamInfo<sup>8+</sup>

音频流信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

| 名称         | 类型                                     | 必填 | 说明               |
| ------------ | ---------------------------------------- | ---- | ------------------ |
| samplingRate | [AudioSamplingRate](#audiosamplingrate8) | 是   | 音频文件的采样率。 |
| channels     | [AudioChannel](#audiochannel8)           | 是   | 音频文件的通道数。 |
| sampleFormat | [AudioSampleFormat](#audiosampleformat8) | 是   | 音频采样格式。     |
| encodingType | [AudioEncodingType](#audioencodingtype8) | 是   | 音频编码格式。     |

## AudioRendererInfo<sup>8+</sup>

L
lwx1059628 已提交
538
音频渲染器信息。
Z
zengyawen 已提交
539 540 541

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

L
lwx1059628 已提交
542 543
| 名称          | 类型                        | 必填 | 说明             |
| ------------- | --------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
544
| content       | [ContentType](#contenttype) | 是   | 媒体类型。       |
L
lwx1059628 已提交
545 546
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
547 548 549

## AudioRendererOptions<sup>8+</sup>

L
lwx1059628 已提交
550
音频渲染器选项信息。
Z
zengyawen 已提交
551 552 553 554 555 556

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

| 名称         | 类型                                     | 必填 | 说明             |
| ------------ | ---------------------------------------- | ---- | ---------------- |
| streamInfo   | [AudioStreamInfo](#audiostreaminfo8)     | 是   | 表示音频流信息。 |
L
lwx1059628 已提交
557
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) | 是   | 表示渲染器信息。 |
Z
zengyawen 已提交
558

L
lwx1059628 已提交
559
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
560 561 562 563 564 565 566

播放中断时,应用接收的中断事件。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

| 名称      | 类型                                       | 必填 | 说明                                 |
| --------- | ------------------------------------------ | ---- | ------------------------------------ |
L
lwx1059628 已提交
567 568 569
| eventType | [InterruptType](#interrupttype)            | 是   | 中断事件类型,开始或是结束。         |
| forceType | [InterruptForceType](#interruptforcetype9) | 是   | 操作是由系统执行或是由应用程序执行。 |
| hintType  | [InterruptHint](#interrupthint)            | 是   | 中断提示。                           |
Z
zengyawen 已提交
570

571 572 573 574 575 576
## AudioInterrupt

音频监听事件传入的参数。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

H
update  
HelloCrease 已提交
577 578 579 580 581
| 名称            | 类型                        | 必填 | 说明                                                         |
| --------------- | --------------------------- | ---- | ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是   | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是   | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是   | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
582 583 584 585 586 587 588

## InterruptAction

音频打断/获取焦点事件的回调方法。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

H
update  
HelloCrease 已提交
589 590 591 592
| 名称       | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontype) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。 |
| type       | [InterruptType](#interrupttype)             | 否   | 打断事件类型。                                               |
Z
zengyawen 已提交
593
| hint       | [InterruptHint](#interrupthint)              | 否   | 打断事件提示。                                               |
H
update  
HelloCrease 已提交
594
| activated  | boolean                                     | 否   | 获得/释放焦点。true表示焦点获取/释放成功,false表示焦点获得/释放失败。 |
595

Z
zengyawen 已提交
596 597 598 599
## VolumeEvent<sup>8+</sup>

音量改变时,应用接收的事件。

600
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
601

Z
zengyawen 已提交
602 603 604 605 606 607 608
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称       | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| updateUi   | boolean                             | 是   | 在UI中显示音量变化。                                     |
W
wangtao 已提交
609 610 611 612 613 614 615
| volumeGroupId<sup>9+</sup>   | number            | 是   | 音量组id。可用于getGroupManager入参                      |
| networkId<sup>9+</sup>    | string               | 是   | 网络id。                                                |

## ConnectType<sup>9+</sup>

枚举,设备连接类型。

J
jiao_yanlin 已提交
616 617
**系统接口:** 该接口为系统接口

W
wangtao 已提交
618 619 620 621 622 623 624 625 626 627 628
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称                            | 默认值 | 描述                   |
| :------------------------------ | :----- | :--------------------- |
| CONNECT_TYPE_LOCAL              | 1      | 本地设备。         |
| CONNECT_TYPE_DISTRIBUTED        | 2      | 分布式设备。            |

## VolumeGroupInfo<sup>9+</sup>

音量组信息。

629
**系统接口:** 该接口为系统接口
W
wangtao 已提交
630 631 632 633 634 635 636 637 638

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称                        | 类型                       | 可读 | 可写 | 说明       |
| -------------------------- | -------------------------- | ---- | ---- | ---------- |
| networkId<sup>9+</sup>     | string                     | 是   | 否   | 组网络id。  |
| groupId<sup>9+</sup>       | number                     | 是   | 否   | 组设备组id。 |
| mappingId<sup>9+</sup>     | number                     | 是   | 否   | 组映射id。 |
| groupName<sup>9+</sup>     | number                     | 是   | 否   | 组名。 |
639
| type<sup>9+</sup>          | [ConnectType](#connecttype9)| 是   | 否   | 连接设备类型。 |
W
wangtao 已提交
640 641 642 643 644

## VolumeGroupInfos<sup>9+</sup>

音量组信息,数组类型,为[VolumeGroupInfo](#volumegroupinfo9)的数组,只读。

645
**系统接口:** 该接口为系统接口
W
wangtao 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**示例:**

```js
import audio from '@ohos.multimedia.audio';

async function getVolumeGroupInfos(){
  let volumegroupinfos = await audio.getAudioManager().getVolumeGroups(audio.LOCAL_NETWORK_ID);
  console.info('Promise returned to indicate that the volumeGroup list is obtained.'+JSON.stringify(volumegroupinfos))
}
getVolumeGroupInfos();
```
Z
zengyawen 已提交
660

L
lwx1059628 已提交
661 662 663 664
## DeviceChangeAction

描述设备连接状态变化和设备信息。

665
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
666 667 668

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
669 670
| type              | [DeviceChangeType](#devicechangetype)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#audiodevicedescriptors) | 是   | 设备信息。         |
L
lwx1059628 已提交
671 672 673 674 675 676 677 678 679 680 681 682

## DeviceChangeType

枚举,设备连接状态变化。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称       | 默认值 | 描述           |
| :--------- | :----- | :------------- |
| CONNECT    | 0      | 设备连接。     |
| DISCONNECT | 1      | 断开设备连接。 |

Z
zengyawen 已提交
683 684 685 686 687 688 689 690 691
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Capturer

| 名称         | 类型                                    | 必填 | 说明             |
| ------------ | --------------------------------------- | ---- | ---------------- |
| streamInfo   | [AudioStreamInfo](#audiostreaminfo8)    | 是   | 表示音频流信息。 |
Z
zengyawen 已提交
692
| capturerInfo | [AudioCapturerInfo](#audiocapturerinfo) | 是   | 表示采集器信息。 |
Z
zengyawen 已提交
693

L
lwx1059628 已提交
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
## AudioCapturerInfo<sup>8+</sup><a name="audiocapturerinfo"></a>

描述音频采集器信息。

**系统能力:** SystemCapability.Multimedia.Audio.Core

| 名称          | 类型                      | 必填 | 说明             |
| :------------ | :------------------------ | :--- | :--------------- |
| source        | [SourceType](#sourcetype) | 是   | 音源类型。       |
| capturerFlags | number                    | 是   | 音频采集器标志。 |

## SourceType<sup>8+</sup><a name="sourcetype"></a>

枚举,音源类型。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Core

Z
update  
zengyawen 已提交
711 712 713 714 715
| 名称                            | 默认值 | 描述                   |
| :------------------------------ | :----- | :--------------------- |
| SOURCE_TYPE_INVALID             | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                 | 0      | Mic音频源。            |
| SOURCE_TYPE_VOICE_COMMUNICATION | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
716 717 718 719 720 721 722

## AudioScene<sup>8+</sup><a name="audioscene"></a>

枚举,音频场景。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Communication

Z
zengyawen 已提交
723 724 725
| 名称                   | 默认值 | 描述                                          |
| :--------------------- | :----- | :-------------------------------------------- |
| AUDIO_SCENE_DEFAULT    | 0      | 默认音频场景。                                |
726 727
| AUDIO_SCENE_RINGING    | 1      | 响铃模式。<br/>此接口为系统接口,三方应用不支持调用。 |
| AUDIO_SCENE_PHONE_CALL | 2      | 电话模式。<br/>此接口为系统接口,三方应用不支持调用。 |
Z
zengyawen 已提交
728
| AUDIO_SCENE_VOICE_CHAT | 3      | 语音聊天模式。                                |
L
lwx1059628 已提交
729

W
wangtao 已提交
730

Z
zengyawen 已提交
731
## AudioManager
M
mamingshuai 已提交
732

Z
zengyawen 已提交
733
管理音频音量和音频设备。在调用AudioManager的接口前,需要先通过[getAudioManager](#audiogetaudiomanager)创建实例。
M
mamingshuai 已提交
734

735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
### getRoutingManager<sup>9+</sup>

getRoutingManager(callback: AsyncCallback&lt;AudioRoutingManager&gt;): void

获取AudioRoutingManager对象,使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名     | 类型                                                              | 必填 | 说明                               |
| ---------- | ---------------------------------------------------------------- | ---- | --------------------------------- |
| callback   | AsyncCallback&lt;[AudioRoutingManager](#audioroutingmanager9)&gt; | 是   | 回调,返回AudioRoutingManager对象。 |

**示例:**
```js
751
await audioManager.getRoutingManager((err, callback) => {
752
  if (err) {
753
    console.error(`Result ERROR: ${err}`);
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
  }
  console.info('getRoutingManager Callback SUCCESS.');
  var audioRoutingManager;
  audioRoutingManager = callback;
});
```

### getRoutingManager<sup>9+</sup>

getRoutingManager(): Promise&lt;AudioRoutingManager&gt;

获取AudioRoutingManager对象,使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**返回值:**

| 类型                                                        | 说明                                    |
| ----------------------------------------------------------- | --------------------------------------- |
| Promise&lt;[AudioRoutingManager](#audioroutingmanager9)&gt;  | Promise回调返回AudioRoutingManager对象。 |

**示例:**
```js
J
jiao_yanlin 已提交
777 778 779 780 781 782 783 784 785
var audioManager = audio.getAudioManager();
async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    var routingManager = value;
    console.info('getRoutingManager Promise SUCCESS.');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
  });
}
786 787
```

Z
zengyawen 已提交
788 789 790
### setVolume

setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback&lt;void&gt;): void
M
mamingshuai 已提交
791

Z
zengyawen 已提交
792
设置指定流的音量,使用callback方式异步返回结果。
M
mamingshuai 已提交
793

794 795 796
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
797

Z
zengyawen 已提交
798 799
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
800 801
**参数:**

Z
zengyawen 已提交
802 803 804 805 806
| 参数名     | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                                   |
807

M
mamingshuai 已提交
808 809
**示例:**

J
jiao_yanlin 已提交
810
```js
L
lwx1059628 已提交
811
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
J
jiao_yanlin 已提交
812
  if (err) {
813
    console.error(`Failed to set the volume. ${err}`);
J
jiao_yanlin 已提交
814 815
    return;
  }
816
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
817
});
M
mamingshuai 已提交
818 819
```

Z
zengyawen 已提交
820 821 822
### setVolume

setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;
M
mamingshuai 已提交
823

Z
zengyawen 已提交
824
设置指定流的音量,使用Promise方式异步返回结果。
M
mamingshuai 已提交
825

826 827 828
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
829

Z
zengyawen 已提交
830 831
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
832 833
**参数:**

Z
zengyawen 已提交
834 835 836 837
| 参数名     | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
M
mamingshuai 已提交
838 839 840

**返回值:**

Z
zengyawen 已提交
841 842
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
843
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
M
mamingshuai 已提交
844 845 846

**示例:**

J
jiao_yanlin 已提交
847
```js
A
AOL 已提交
848
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
849
  console.info('Promise returned to indicate a successful volume setting.');
L
lwx1059628 已提交
850
});
M
mamingshuai 已提交
851 852
```

Z
zengyawen 已提交
853 854 855
### getVolume

getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
M
mamingshuai 已提交
856

Z
zengyawen 已提交
857
获取指定流的音量,使用callback方式异步返回结果。
M
mamingshuai 已提交
858

Z
zengyawen 已提交
859 860
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
861 862
**参数:**

Z
zengyawen 已提交
863 864 865 866
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |
867

M
mamingshuai 已提交
868 869
**示例:**

J
jiao_yanlin 已提交
870
```js
871
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
872
  if (err) {
873
    console.error(`Failed to obtain the volume. ${err}`);
J
jiao_yanlin 已提交
874 875
    return;
  }
876
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
877
});
M
mamingshuai 已提交
878 879
```

Z
zengyawen 已提交
880 881 882
### getVolume

getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
M
mamingshuai 已提交
883

Z
zengyawen 已提交
884
获取指定流的音量,使用Promise方式异步返回结果。
M
mamingshuai 已提交
885

Z
zengyawen 已提交
886 887
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
888 889
**参数:**

Z
zengyawen 已提交
890 891 892
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
893 894 895

**返回值:**

Z
zengyawen 已提交
896 897
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
898
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
M
mamingshuai 已提交
899 900 901

**示例:**

J
jiao_yanlin 已提交
902
```js
A
AOL 已提交
903
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
904
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
905
});
M
mamingshuai 已提交
906 907
```

Z
zengyawen 已提交
908 909 910
### getMinVolume

getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
M
mamingshuai 已提交
911

Z
zengyawen 已提交
912
获取指定流的最小音量,使用callback方式异步返回结果。
M
mamingshuai 已提交
913

Z
zengyawen 已提交
914 915
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
916 917
**参数:**

Z
zengyawen 已提交
918 919 920 921
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |
922

M
mamingshuai 已提交
923 924
**示例:**

J
jiao_yanlin 已提交
925
```js
Z
zengyawen 已提交
926
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
927
  if (err) {
928
    console.error(`Failed to obtain the minimum volume. ${err}`);
J
jiao_yanlin 已提交
929 930
    return;
  }
931
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
932
});
M
mamingshuai 已提交
933 934
```

Z
zengyawen 已提交
935 936 937
### getMinVolume

getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
M
mamingshuai 已提交
938

Z
zengyawen 已提交
939
获取指定流的最小音量,使用Promise方式异步返回结果。
M
mamingshuai 已提交
940

Z
zengyawen 已提交
941 942
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
943 944
**参数:**

Z
zengyawen 已提交
945 946 947
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
948 949 950

**返回值:**

Z
zengyawen 已提交
951 952
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
953
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
M
mamingshuai 已提交
954 955 956

**示例:**

J
jiao_yanlin 已提交
957
```js
A
AOL 已提交
958
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
959
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
960
});
M
mamingshuai 已提交
961 962
```

Z
zengyawen 已提交
963 964 965
### getMaxVolume

getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
M
mamingshuai 已提交
966

Z
zengyawen 已提交
967
获取指定流的最大音量,使用callback方式异步返回结果。
M
mamingshuai 已提交
968

Z
zengyawen 已提交
969 970
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
971 972
**参数:**

Z
zengyawen 已提交
973 974 975 976
| 参数名     | 类型                                | 必填 | 说明                   |
| ---------- | ----------------------------------- | ---- | ---------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。           |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最大音量大小。 |
977

M
mamingshuai 已提交
978 979
**示例:**

J
jiao_yanlin 已提交
980
```js
981
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
982
  if (err) {
983
    console.error(`Failed to obtain the maximum volume. ${err}`);
J
jiao_yanlin 已提交
984 985
    return;
  }
986
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
L
lwx1059628 已提交
987
});
M
mamingshuai 已提交
988 989
```

Z
zengyawen 已提交
990 991 992
### getMaxVolume

getMaxVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
M
mamingshuai 已提交
993

Z
zengyawen 已提交
994
获取指定流的最大音量,使用Promise方式异步返回结果。
M
mamingshuai 已提交
995

Z
zengyawen 已提交
996 997
**系统能力:** SystemCapability.Multimedia.Audio.Volume

M
mamingshuai 已提交
998 999
**参数:**

Z
zengyawen 已提交
1000 1001 1002
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
1003 1004 1005

**返回值:**

Z
zengyawen 已提交
1006 1007
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
Z
zengyawen 已提交
1008
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
M
mamingshuai 已提交
1009 1010 1011

**示例:**

J
jiao_yanlin 已提交
1012
```js
A
AOL 已提交
1013
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
1014
  console.info('Promised returned to indicate that the maximum volume is obtained.');
L
lwx1059628 已提交
1015
});
Z
zengyawen 已提交
1016 1017
```

Z
zengyawen 已提交
1018
### mute
Z
zengyawen 已提交
1019 1020

mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1021

Z
zengyawen 已提交
1022
设置指定音量流静音,使用callback方式异步返回结果。
Z
zengyawen 已提交
1023

1024 1025 1026
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
1027

Z
zengyawen 已提交
1028 1029
**系统能力:** SystemCapability.Multimedia.Audio.Volume

Z
zengyawen 已提交
1030 1031
**参数:**

Z
zengyawen 已提交
1032 1033 1034 1035 1036
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                |
1037

Z
zengyawen 已提交
1038 1039
**示例:**

J
jiao_yanlin 已提交
1040
```js
1041
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
1042
  if (err) {
1043
    console.error(`Failed to mute the stream. ${err}`);
J
jiao_yanlin 已提交
1044 1045
    return;
  }
1046
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
1047
});
1048 1049
```

Z
zengyawen 已提交
1050
### mute
Z
zengyawen 已提交
1051 1052

mute(volumeType: AudioVolumeType, mute: boolean): Promise&lt;void&gt;
1053

Z
zengyawen 已提交
1054
设置指定音量流静音,使用Promise方式异步返回结果。
1055

1056 1057 1058
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
1059

Z
zengyawen 已提交
1060 1061
**系统能力:** SystemCapability.Multimedia.Audio.Volume

1062 1063
**参数:**

Z
zengyawen 已提交
1064 1065 1066 1067
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
1068 1069 1070

**返回值:**

Z
zengyawen 已提交
1071 1072
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
1073
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1074 1075 1076

**示例:**

Z
zengyawen 已提交
1077

J
jiao_yanlin 已提交
1078
```js
A
AOL 已提交
1079
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
1080
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
1081
});
1082 1083 1084
```


Z
zengyawen 已提交
1085
### isMute
1086

Z
zengyawen 已提交
1087
isMute(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
1088

Z
zengyawen 已提交
1089
获取指定音量流是否被静音,使用callback方式异步返回结果。
1090

Z
zengyawen 已提交
1091 1092
**系统能力:** SystemCapability.Multimedia.Audio.Volume

Z
zengyawen 已提交
1093
**参数:**
1094

Z
zengyawen 已提交
1095 1096 1097 1098
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
1099 1100 1101

**示例:**

J
jiao_yanlin 已提交
1102
```js
1103
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1104
  if (err) {
1105
    console.error(`Failed to obtain the mute status. ${err}`);
J
jiao_yanlin 已提交
1106 1107
    return;
  }
1108
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
1109
});
Z
zengyawen 已提交
1110 1111
```

Z
zengyawen 已提交
1112

Z
zengyawen 已提交
1113
### isMute
Z
zengyawen 已提交
1114 1115

isMute(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
Z
zengyawen 已提交
1116

Z
zengyawen 已提交
1117
获取指定音量流是否被静音,使用Promise方式异步返回结果。
Z
zengyawen 已提交
1118

Z
zengyawen 已提交
1119 1120
**系统能力:** SystemCapability.Multimedia.Audio.Volume

Z
zengyawen 已提交
1121 1122
**参数:**

Z
zengyawen 已提交
1123 1124 1125
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
Z
zengyawen 已提交
1126 1127 1128

**返回值:**

Z
zengyawen 已提交
1129 1130
| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
Z
zengyawen 已提交
1131
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |
M
mamingshuai 已提交
1132

Z
zengyawen 已提交
1133 1134
**示例:**

J
jiao_yanlin 已提交
1135
```js
A
AOL 已提交
1136
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
1137
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1138
});
Z
zengyawen 已提交
1139 1140
```

Z
zengyawen 已提交
1141
### isActive
Z
zengyawen 已提交
1142 1143

isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
Z
zengyawen 已提交
1144

Z
zengyawen 已提交
1145
获取指定音量流是否为活跃状态,使用callback方式异步返回结果。
1146

Z
zengyawen 已提交
1147 1148
**系统能力:** SystemCapability.Multimedia.Audio.Volume

1149 1150
**参数:**

Z
zengyawen 已提交
1151 1152 1153 1154
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
1155 1156 1157

**示例:**

J
jiao_yanlin 已提交
1158
```js
1159
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1160
  if (err) {
1161
    console.error(`Failed to obtain the active status of the stream. ${err}`);
J
jiao_yanlin 已提交
1162 1163
    return;
  }
1164
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1165
});
1166 1167
```

Z
zengyawen 已提交
1168
### isActive
Z
zengyawen 已提交
1169 1170

isActive(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
1171

Z
zengyawen 已提交
1172
获取指定音量流是否为活跃状态,使用Promise方式异步返回结果。
1173

Z
zengyawen 已提交
1174 1175
**系统能力:** SystemCapability.Multimedia.Audio.Volume

1176 1177
**参数:**

Z
zengyawen 已提交
1178 1179 1180
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
1181 1182 1183

**返回值:**

Z
zengyawen 已提交
1184 1185
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
Z
zengyawen 已提交
1186
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
Z
zengyawen 已提交
1187

1188 1189
**示例:**

J
jiao_yanlin 已提交
1190
```js
A
AOL 已提交
1191
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
1192
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1193
});
1194 1195
```

Z
zengyawen 已提交
1196
### setRingerMode
Z
zengyawen 已提交
1197 1198

setRingerMode(mode: AudioRingMode, callback: AsyncCallback&lt;void&gt;): void
1199

Z
zengyawen 已提交
1200
设置铃声模式,使用callback方式异步返回结果。
1201

1202 1203 1204
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅在静音和非静音状态切换时需要该权限。
1205

Z
zengyawen 已提交
1206 1207
**系统能力:** SystemCapability.Multimedia.Audio.Communication

1208 1209
**参数:**

Z
zengyawen 已提交
1210 1211 1212 1213
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1214 1215 1216

**示例:**

J
jiao_yanlin 已提交
1217
```js
1218
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
J
jiao_yanlin 已提交
1219
  if (err) {
1220
    console.error(`Failed to set the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1221 1222
    return;
  }
1223
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1224
});
1225 1226
```

Z
zengyawen 已提交
1227
### setRingerMode
Z
zengyawen 已提交
1228 1229

setRingerMode(mode: AudioRingMode): Promise&lt;void&gt;
1230

Z
zengyawen 已提交
1231
设置铃声模式,使用Promise方式异步返回结果。
1232

1233 1234 1235
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅在静音和非静音状态切换时需要该权限。
1236

Z
zengyawen 已提交
1237 1238
**系统能力:** SystemCapability.Multimedia.Audio.Communication

1239 1240
**参数:**

Z
zengyawen 已提交
1241 1242 1243
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1244 1245 1246

**返回值:**

Z
zengyawen 已提交
1247 1248
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1249
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1250 1251 1252

**示例:**

J
jiao_yanlin 已提交
1253
```js
A
AOL 已提交
1254
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
1255
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1256
});
1257 1258 1259
```


Z
zengyawen 已提交
1260
### getRingerMode
1261

Z
zengyawen 已提交
1262
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
1263

Z
zengyawen 已提交
1264
获取铃声模式,使用callback方式异步返回结果。
1265

Z
zengyawen 已提交
1266 1267
**系统能力:** SystemCapability.Multimedia.Audio.Communication

Z
zengyawen 已提交
1268
**参数:**
1269

Z
zengyawen 已提交
1270 1271 1272
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1273 1274 1275

**示例:**

J
jiao_yanlin 已提交
1276
```js
1277
audioManager.getRingerMode((err, value) => {
J
jiao_yanlin 已提交
1278
  if (err) {
1279
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1280 1281
    return;
  }
1282
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1283
});
1284 1285 1286
```


Z
zengyawen 已提交
1287
### getRingerMode
1288

Z
zengyawen 已提交
1289
getRingerMode(): Promise&lt;AudioRingMode&gt;
1290

Z
zengyawen 已提交
1291
获取铃声模式,使用Promise方式异步返回结果。
1292

Z
zengyawen 已提交
1293 1294
**系统能力:** SystemCapability.Multimedia.Audio.Communication

1295 1296
**返回值:**

Z
zengyawen 已提交
1297 1298
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
1299
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1300 1301 1302

**示例:**

J
jiao_yanlin 已提交
1303
```js
A
AOL 已提交
1304
audioManager.getRingerMode().then((value) => {
1305
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1306
});
1307 1308
```

Z
zengyawen 已提交
1309
### setAudioParameter
Z
zengyawen 已提交
1310 1311

setAudioParameter(key: string, value: string, callback: AsyncCallback&lt;void&gt;): void
1312

Z
zengyawen 已提交
1313
音频参数设置,使用callback方式异步返回结果。
1314

1315
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码内使用样例参数,实际支持的音频配置参数见具体设备平台的资料描述。
1316

1317 1318
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

Z
zengyawen 已提交
1319 1320
**系统能力:** SystemCapability.Multimedia.Audio.Core

1321 1322
**参数:**

Z
zengyawen 已提交
1323 1324 1325 1326 1327
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
1328 1329 1330

**示例:**

J
jiao_yanlin 已提交
1331
```js
1332
audioManager.setAudioParameter('key_example', 'value_example', (err) => {
J
jiao_yanlin 已提交
1333
  if (err) {
1334
    console.error(`Failed to set the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1335 1336
    return;
  }
1337
  console.info('Callback invoked to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1338
});
1339 1340
```

Z
zengyawen 已提交
1341
### setAudioParameter
Z
zengyawen 已提交
1342 1343

setAudioParameter(key: string, value: string): Promise&lt;void&gt;
1344

Z
zengyawen 已提交
1345
音频参数设置,使用Promise方式异步返回结果。
1346

1347
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码内使用样例参数,实际支持的音频配置参数见具体设备平台的资料描述。
1348

1349 1350
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

Z
zengyawen 已提交
1351 1352
**系统能力:** SystemCapability.Multimedia.Audio.Core

1353 1354
**参数:**

Z
zengyawen 已提交
1355 1356 1357 1358
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
1359 1360 1361

**返回值:**

Z
zengyawen 已提交
1362 1363
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1364
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1365 1366 1367

**示例:**

J
jiao_yanlin 已提交
1368
```js
1369
audioManager.setAudioParameter('key_example', 'value_example').then(() => {
1370
  console.info('Promise returned to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1371
});
1372 1373
```

Z
zengyawen 已提交
1374
### getAudioParameter
Z
zengyawen 已提交
1375 1376

getAudioParameter(key: string, callback: AsyncCallback&lt;string&gt;): void
1377

Z
zengyawen 已提交
1378
获取指定音频参数值,使用callback方式异步返回结果。
1379

1380
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码内使用样例参数,实际支持的音频配置参数见具体设备平台的资料描述。
1381

Z
zengyawen 已提交
1382 1383
**系统能力:** SystemCapability.Multimedia.Audio.Core

1384 1385
**参数:**

Z
zengyawen 已提交
1386 1387 1388 1389
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
1390 1391 1392

**示例:**

J
jiao_yanlin 已提交
1393
```js
1394
audioManager.getAudioParameter('key_example', (err, value) => {
J
jiao_yanlin 已提交
1395
  if (err) {
1396
    console.error(`Failed to obtain the value of the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1397 1398
    return;
  }
1399
  console.info(`Callback invoked to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1400
});
1401 1402
```

Z
zengyawen 已提交
1403
### getAudioParameter
Z
zengyawen 已提交
1404 1405

getAudioParameter(key: string): Promise&lt;string&gt;
1406

Z
zengyawen 已提交
1407
获取指定音频参数值,使用Promise方式异步返回结果。
1408

1409
本接口的使用场景为根据硬件设备支持能力扩展音频配置。在不同的设备平台上,所支持的音频参数会存在差异。示例代码内使用样例参数,实际支持的音频配置参数见具体设备平台的资料描述。
1410

Z
zengyawen 已提交
1411 1412
**系统能力:** SystemCapability.Multimedia.Audio.Core

1413 1414
**参数:**

Z
zengyawen 已提交
1415 1416 1417
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
1418 1419 1420

**返回值:**

Z
zengyawen 已提交
1421 1422
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
Z
zengyawen 已提交
1423
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
1424 1425 1426

**示例:**

J
jiao_yanlin 已提交
1427
```js
1428
audioManager.getAudioParameter('key_example').then((value) => {
1429
  console.info(`Promise returned to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1430
});
1431 1432
```

Z
zengyawen 已提交
1433 1434 1435
### getDevices

getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void
1436

Z
zengyawen 已提交
1437
获取音频设备列表,使用callback方式异步返回结果。
1438

Z
zengyawen 已提交
1439 1440
**系统能力:** SystemCapability.Multimedia.Audio.Device

1441 1442
**参数:**

Z
zengyawen 已提交
1443 1444 1445 1446
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
1447 1448

**示例:**
J
jiao_yanlin 已提交
1449
```js
A
AOL 已提交
1450
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
J
jiao_yanlin 已提交
1451
  if (err) {
1452
    console.error(`Failed to obtain the device list. ${err}`);
J
jiao_yanlin 已提交
1453 1454
    return;
  }
1455
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
1456
});
1457 1458
```

Z
zengyawen 已提交
1459 1460
### getDevices

A
AOL 已提交
1461
getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;
1462

Z
zengyawen 已提交
1463
获取音频设备列表,使用Promise方式异步返回结果。
1464

Z
zengyawen 已提交
1465 1466
**系统能力:** SystemCapability.Multimedia.Audio.Device

1467 1468
**参数:**

Z
zengyawen 已提交
1469 1470 1471
| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
1472 1473 1474

**返回值:**

Z
zengyawen 已提交
1475 1476
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
Z
zengyawen 已提交
1477
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
1478 1479 1480

**示例:**

J
jiao_yanlin 已提交
1481
```js
A
AOL 已提交
1482
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
1483
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
1484
});
1485 1486
```

Z
zengyawen 已提交
1487
### setDeviceActive
Z
zengyawen 已提交
1488

A
AOL 已提交
1489
setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
1490

Z
zengyawen 已提交
1491
设置设备激活状态,使用callback方式异步返回结果。
1492

Z
zengyawen 已提交
1493 1494
**系统能力:** SystemCapability.Multimedia.Audio.Device

1495 1496
**参数:**

H
update  
HelloCrease 已提交
1497 1498 1499 1500 1501
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
1502 1503 1504

**示例:**

J
jiao_yanlin 已提交
1505
```js
R
rahul 已提交
1506
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true, (err) => {
J
jiao_yanlin 已提交
1507
  if (err) {
1508
    console.error(`Failed to set the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1509 1510
    return;
  }
1511
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1512
});
1513 1514
```

Z
zengyawen 已提交
1515
### setDeviceActive
Z
zengyawen 已提交
1516

A
AOL 已提交
1517
setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise&lt;void&gt;
1518

Z
zengyawen 已提交
1519
设置设备激活状态,使用Promise方式异步返回结果。
1520

Z
zengyawen 已提交
1521 1522
**系统能力:** SystemCapability.Multimedia.Audio.Device

1523 1524
**参数:**

H
update  
HelloCrease 已提交
1525 1526
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1527
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
H
update  
HelloCrease 已提交
1528
| active     | boolean                               | 是   | 设备激活状态。     |
1529 1530 1531

**返回值:**

Z
zengyawen 已提交
1532 1533
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1534
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1535 1536 1537

**示例:**

Z
zengyawen 已提交
1538

J
jiao_yanlin 已提交
1539
```js
R
rahul 已提交
1540
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
1541
  console.info('Promise returned to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1542
});
1543 1544
```

Z
zengyawen 已提交
1545
### isDeviceActive
Z
zengyawen 已提交
1546

A
AOL 已提交
1547
isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
1548

Z
zengyawen 已提交
1549
获取指定设备的激活状态,使用callback方式异步返回结果。
1550

Z
zengyawen 已提交
1551 1552
**系统能力:** SystemCapability.Multimedia.Audio.Device

1553 1554
**参数:**

H
update  
HelloCrease 已提交
1555 1556 1557 1558
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
1559 1560 1561

**示例:**

J
jiao_yanlin 已提交
1562
```js
R
rahul 已提交
1563
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER, (err, value) => {
J
jiao_yanlin 已提交
1564
  if (err) {
1565
    console.error(`Failed to obtain the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1566 1567
    return;
  }
1568
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
1569
});
1570 1571
```

Z
zengyawen 已提交
1572

Z
zengyawen 已提交
1573
### isDeviceActive
Z
zengyawen 已提交
1574

A
AOL 已提交
1575
isDeviceActive(deviceType: ActiveDeviceType): Promise&lt;boolean&gt;
1576

Z
zengyawen 已提交
1577
获取指定设备的激活状态,使用Promise方式异步返回结果。
1578

Z
zengyawen 已提交
1579 1580
**系统能力:** SystemCapability.Multimedia.Audio.Device

1581 1582
**参数:**

H
update  
HelloCrease 已提交
1583 1584
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1585
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
1586 1587 1588

**返回值:**

Z
zengyawen 已提交
1589 1590
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
Z
zengyawen 已提交
1591
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1592 1593 1594

**示例:**

J
jiao_yanlin 已提交
1595
```js
R
rahul 已提交
1596
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER).then((value) => {
1597
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
L
lwx1059628 已提交
1598
});
1599 1600
```

Z
zengyawen 已提交
1601
### setMicrophoneMute
Z
zengyawen 已提交
1602 1603

setMicrophoneMute(mute: boolean, callback: AsyncCallback&lt;void&gt;): void
1604

Z
zengyawen 已提交
1605
设置麦克风静音状态,使用callback方式异步返回结果。
1606

1607 1608
**需要权限:** ohos.permission.MICROPHONE

Z
zengyawen 已提交
1609 1610
**系统能力:** SystemCapability.Multimedia.Audio.Device

1611 1612
**参数:**

Z
zengyawen 已提交
1613 1614 1615 1616
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
1617 1618 1619

**示例:**

J
jiao_yanlin 已提交
1620
```js
1621
audioManager.setMicrophoneMute(true, (err) => {
J
jiao_yanlin 已提交
1622
  if (err) {
1623
    console.error(`Failed to mute the microphone. ${err}`);
J
jiao_yanlin 已提交
1624 1625
    return;
  }
1626
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
1627
});
1628 1629
```

Z
zengyawen 已提交
1630
### setMicrophoneMute
Z
zengyawen 已提交
1631 1632

setMicrophoneMute(mute: boolean): Promise&lt;void&gt;
1633

Z
zengyawen 已提交
1634
设置麦克风静音状态,使用Promise方式异步返回结果。
1635

1636 1637
**需要权限:** ohos.permission.MICROPHONE

Z
zengyawen 已提交
1638 1639
**系统能力:** SystemCapability.Multimedia.Audio.Device

1640 1641
**参数:**

Z
zengyawen 已提交
1642 1643 1644
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
1645 1646 1647

**返回值:**

Z
zengyawen 已提交
1648 1649
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1650
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1651 1652 1653

**示例:**

J
jiao_yanlin 已提交
1654
```js
A
AOL 已提交
1655
audioManager.setMicrophoneMute(true).then(() => {
1656
  console.info('Promise returned to indicate that the microphone is muted.');
L
lwx1059628 已提交
1657
});
1658 1659
```

Z
zengyawen 已提交
1660
### isMicrophoneMute
Z
zengyawen 已提交
1661 1662

isMicrophoneMute(callback: AsyncCallback&lt;boolean&gt;): void
1663

Z
zengyawen 已提交
1664
获取麦克风静音状态,使用callback方式异步返回结果。
1665

1666 1667
**需要权限:** ohos.permission.MICROPHONE

Z
zengyawen 已提交
1668 1669
**系统能力:** SystemCapability.Multimedia.Audio.Device

1670 1671
**参数:**

Z
zengyawen 已提交
1672 1673 1674
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1675 1676 1677

**示例:**

J
jiao_yanlin 已提交
1678
```js
1679
audioManager.isMicrophoneMute((err, value) => {
J
jiao_yanlin 已提交
1680
  if (err) {
1681
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
J
jiao_yanlin 已提交
1682 1683
    return;
  }
1684
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1685
});
1686 1687
```

Z
zengyawen 已提交
1688
### isMicrophoneMute
1689

Z
zengyawen 已提交
1690
isMicrophoneMute(): Promise&lt;boolean&gt;
1691

Z
zengyawen 已提交
1692
获取麦克风静音状态,使用Promise方式异步返回结果。
1693

1694 1695
**需要权限:** ohos.permission.MICROPHONE

Z
zengyawen 已提交
1696 1697
**系统能力:** SystemCapability.Multimedia.Audio.Device

1698 1699
**返回值:**

Z
zengyawen 已提交
1700 1701
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
Z
zengyawen 已提交
1702
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1703 1704 1705

**示例:**

Z
zengyawen 已提交
1706

J
jiao_yanlin 已提交
1707
```js
A
AOL 已提交
1708
audioManager.isMicrophoneMute().then((value) => {
1709
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1710
});
1711 1712
```

L
lwx1059628 已提交
1713
### on('volumeChange')<sup>8+</sup>
Z
zengyawen 已提交
1714 1715 1716 1717 1718

on(type: 'volumeChange', callback: Callback\<VolumeEvent>): void

监听系统音量变化事件。

1719
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1720

1721 1722
目前此订阅接口在单进程多AudioManager实例的使用场景下,仅最后一个实例的订阅生效,其他实例的订阅会被覆盖(即使最后一个实例没有进行订阅),因此推荐使用单一AudioManager实例进行开发。

Z
zengyawen 已提交
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'volumeChange'(系统音量变化事件,检测到系统音量改变时,触发该事件)。 |
| callback | Callback<[VolumeEvent](#volumeevent8)> | 是   | 回调方法。                                                   |

**示例:**

J
jiao_yanlin 已提交
1734
```js
Z
zengyawen 已提交
1735
audioManager.on('volumeChange', (volumeEvent) => {
1736 1737 1738
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
L
lwx1059628 已提交
1739
});
Z
zengyawen 已提交
1740 1741
```

L
lwx1059628 已提交
1742
### on('ringerModeChange')<sup>8+</sup>
Z
zengyawen 已提交
1743

A
AOL 已提交
1744
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
Z
zengyawen 已提交
1745 1746 1747

监听铃声模式变化事件。

1748
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1749

Z
zengyawen 已提交
1750 1751 1752 1753 1754 1755 1756 1757
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                    | 是   | 事件回调类型,支持的事件为:'ringerModeChange'(铃声模式变化事件,检测到铃声模式改变时,触发该事件)。 |
| callback | Callback<[AudioRingMode](#audioringmode)> | 是   | 回调方法。                                                   |
Z
zengyawen 已提交
1758

L
lwx1059628 已提交
1759 1760
**示例:**

J
jiao_yanlin 已提交
1761
```js
L
lwx1059628 已提交
1762
audioManager.on('ringerModeChange', (ringerMode) => {
1763
  console.info(`Updated ringermode: ${ringerMode}`);
L
lwx1059628 已提交
1764 1765 1766
});
```

L
lwx1059628 已提交
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
### on('deviceChange')

on(type: 'deviceChange', callback: Callback<DeviceChangeAction\>): void

设备更改。音频设备连接状态变化。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
1780
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |
L
lwx1059628 已提交
1781 1782 1783

**示例:**

J
jiao_yanlin 已提交
1784
```js
L
lwx1059628 已提交
1785
audioManager.on('deviceChange', (deviceChanged) => {
1786 1787 1788 1789
  console.info(`device change type : ${deviceChanged.type} `);
  console.info(`device descriptor size : ${deviceChanged.deviceDescriptors.length} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceRole} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceType} `);
L
lwx1059628 已提交
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805
});
```

### off('deviceChange')

off(type: 'deviceChange', callback?: Callback<DeviceChangeAction\>): void

取消订阅音频设备连接变化事件。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
1806
| callback | Callback<[DeviceChangeAction](#devicechangeaction)> | 否   | 获取设备更新详情。                         |
L
lwx1059628 已提交
1807 1808 1809

**示例:**

J
jiao_yanlin 已提交
1810
```js
L
lwx1059628 已提交
1811
audioManager.off('deviceChange', (deviceChanged) => {
1812
  console.info('Should be no callback.');
L
lwx1059628 已提交
1813 1814 1815
});
```

1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
### on('interrupt')

on(type: 'interrupt', interrupt: AudioInterrupt, callback: Callback\<InterruptAction>): void

请求焦点并开始监听音频打断事件(当应用程序的音频被另一个播放事件中断,回调通知此应用程序)

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

H
update  
HelloCrease 已提交
1826 1827 1828 1829 1830
| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 是   | 音频打断事件回调方法。                                       |
1831 1832 1833

**示例:**

J
jiao_yanlin 已提交
1834
```js
1835
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1836 1837 1838
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1839
};
R
rahul 已提交
1840
audioManager.on('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1841
  if (InterruptAction.actionType === 0) {
1842 1843
    console.info('An event to gain the audio focus starts.');
    console.info(`Focus gain event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1844 1845
  }
  if (InterruptAction.actionType === 1) {
1846 1847
    console.info('An audio interruption event starts.');
    console.info(`Audio interruption event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1848
  }
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
});
```

### off('interrupt')

off(type: 'interrupt', interrupt: AudioInterrupt, callback?: Callback\<InterruptAction>): void

取消监听音频打断事件(删除监听事件,取消打断)

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

H
update  
HelloCrease 已提交
1862 1863 1864 1865 1866
| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 否   | 音频打断事件回调方法。                                       |
1867 1868 1869

**示例:**

J
jiao_yanlin 已提交
1870
```js
1871
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1872 1873 1874
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1875
};
R
rahul 已提交
1876
audioManager.off('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1877
  if (InterruptAction.actionType === 0) {
1878 1879
      console.info('An event to release the audio focus starts.');
      console.info(`Focus release event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1880
  }
1881 1882 1883
});
```

L
lwx1059628 已提交
1884 1885 1886 1887 1888 1889
### setAudioScene<sup>8+</sup>

setAudioScene\(scene: AudioScene, callback: AsyncCallback<void\>\): void

设置音频场景模式,使用callback方式异步返回结果。

1890
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902

**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

| 参数名   | 类型                                 | 必填 | 说明                 |
| :------- | :----------------------------------- | :--- | :------------------- |
| scene    | <a href="#audioscene">AudioScene</a> | 是   | 音频场景模式。       |
| callback | AsyncCallback<void\>                 | 是   | 用于返回结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
1903
```js
J
jiao_yanlin 已提交
1904
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
1905
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
J
jiao_yanlin 已提交
1906
  if (err) {
1907
    console.error(`Failed to set the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
1908 1909
    return;
  }
1910
  console.info('Callback invoked to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
1911 1912 1913 1914 1915 1916 1917 1918 1919
});
```

### setAudioScene<sup>8+</sup>

setAudioScene\(scene: AudioScene\): Promise<void\>

设置音频场景模式,使用Promise方式返回异步结果。

1920
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1921

Z
zengyawen 已提交
1922
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
1923

Z
zengyawen 已提交
1924
**参数:**
L
lwx1059628 已提交
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937

| 参数名 | 类型                                 | 必填 | 说明           |
| :----- | :----------------------------------- | :--- | :------------- |
| scene  | <a href="#audioscene">AudioScene</a> | 是   | 音频场景模式。 |

**返回值:**

| 类型           | 说明                 |
| :------------- | :------------------- |
| Promise<void\> | 用于返回结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
1938
```js
J
jiao_yanlin 已提交
1939
var audioManager = audio.getAudioManager();
R
rahul 已提交
1940
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL).then(() => {
1941
  console.info('Promise returned to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
1942
}).catch ((err) => {
1943
  console.error(`Failed to set the audio scene mode ${err}`);
L
lwx1059628 已提交
1944 1945 1946 1947 1948 1949 1950 1951 1952
});
```

### getAudioScene<sup>8+</sup>

getAudioScene\(callback: AsyncCallback<AudioScene\>\): void

获取音频场景模式,使用callback方式返回异步结果。

Z
zengyawen 已提交
1953
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
1954 1955 1956 1957 1958 1959 1960 1961 1962

**参数:**

| 参数名   | 类型                                                | 必填 | 说明                         |
| :------- | :-------------------------------------------------- | :--- | :--------------------------- |
| callback | AsyncCallback<<a href="#audioscene">AudioScene</a>> | 是   | 用于返回音频场景模式的回调。 |

**示例:**

J
jiao_yanlin 已提交
1963
```js
J
jiao_yanlin 已提交
1964
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
1965
audioManager.getAudioScene((err, value) => {
J
jiao_yanlin 已提交
1966
  if (err) {
1967
    console.error(`Failed to obtain the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
1968 1969
    return;
  }
1970
  console.info(`Callback invoked to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
});
```


### getAudioScene<sup>8+</sup>

getAudioScene\(\): Promise<AudioScene\>

获取音频场景模式,使用Promise方式返回异步结果。

**系统能力:** SystemCapability.Multimedia.Audio.Communication

**返回值:**

| 类型                                          | 说明                         |
| :-------------------------------------------- | :--------------------------- |
| Promise<<a href="#audioscene">AudioScene</a>> | 用于返回音频场景模式的回调。 |

**示例:**

J
jiao_yanlin 已提交
1991
```js
J
jiao_yanlin 已提交
1992
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
1993
audioManager.getAudioScene().then((value) => {
1994
  console.info(`Promise returned to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
1995
}).catch ((err) => {
1996
  console.error(`Failed to obtain the audio scene mode ${err}`);
L
lwx1059628 已提交
1997 1998 1999
});
```

W
wangtao 已提交
2000 2001 2002 2003 2004 2005
### getVolumeGroups<sup>9+</sup>

getVolumeGroups(networkId: string, callback: AsyncCallback<VolumeGroupInfos\>\): void

获取音量组信息列表,使用callback方式异步返回结果。

2006
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID ,也可以通过getRoutingManager().getDevices()获取全部networkId。    |
| callback   | AsyncCallback&lt;[VolumeGroupInfos](#volumegroupinfos9)&gt; | 是   | 回调,返回音量组信息列表。 |

**示例:**
```js
J
jiao_yanlin 已提交
2019
var audioManager = audio.getAudioManager();
W
wangtao 已提交
2020 2021
audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID, (err, value) => {
  if (err) {
2022
    console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034
    return;
  }
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
});
```

### getVolumeGroups<sup>9+</sup>

getVolumeGroups(networkId: string\): Promise<VolumeGroupInfos\>

获取音量组信息列表,使用promise方式异步返回结果。

2035
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2036 2037 2038 2039 2040 2041 2042 2043 2044

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID ,也可以通过getRoutingManager().getDevices()获取全部networkId。    |

2045 2046 2047 2048 2049 2050
**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;[VolumeGroupInfos](#volumegroupinfos9)&gt; | 音量组信息列表。 |

W
wangtao 已提交
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
**示例:**

```js
async function getVolumeGroupInfos(){
  let volumegroupinfos = await audio.getAudioManager().getVolumeGroups(audio.LOCAL_NETWORK_ID);
  console.info('Promise returned to indicate that the volumeGroup list is obtained.'+JSON.stringify(volumegroupinfos))
}
```

### getGroupManager<sup>9+</sup>

getGroupManager(groupId: number, callback: AsyncCallback<AudioGroupManager\>\): void

获取音频组管理器,使用callback方式异步返回结果。

2066
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2067 2068 2069 2070 2071 2072 2073

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
J
jiao_yanlin 已提交
2074
| groupId    | number                                    | 是   | 音量组id。     |
2075
| callback   | AsyncCallback&lt; [AudioGroupManager](#audiogroupmanager9) &gt; | 是   | 回调,返回一个音量组实例。 |
W
wangtao 已提交
2076 2077 2078 2079

**示例:**

```js
J
jiao_yanlin 已提交
2080
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2081
var audioGroupManager;
W
wangtao 已提交
2082 2083 2084 2085 2086 2087
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
2088
        console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}
```

### getGroupManager<sup>9+</sup>

getGroupManager(groupId: number\): Promise<AudioGroupManager\>

获取音频组管理器,使用promise方式异步返回结果。

2104
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2105 2106 2107 2108 2109

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

2110
| 参数名     | 类型                                      | 必填 | 说明              |
2111
| ---------- | ---------------------------------------- | ---- | ---------------- |
J
jiao_yanlin 已提交
2112
| groupId    | number                                   | 是   | 音量组id。     |
W
wangtao 已提交
2113

2114 2115 2116 2117 2118 2119
**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt; [AudioGroupManager](#audiogroupmanager9) &gt; | 音量组实例。 |

W
wangtao 已提交
2120 2121 2122
**示例:**

```js
J
jiao_yanlin 已提交
2123
var audioManager = audio.getAudioManager();
W
wangtao 已提交
2124 2125 2126 2127
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
J
jiao_yanlin 已提交
2128
    let audioGroupManager = await audioManager.getGroupManager(groupid)
W
wangtao 已提交
2129 2130 2131 2132
    console.info('Callback invoked to indicate that the volume group infos list is obtained.');
  }
}
```
J
jiao_yanlin 已提交
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150

### getStreamManager<sup>9+</sup>

getStreamManager(callback: AsyncCallback\<AudioStreamManager>): void

获取音频流管理器实例。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Core

**参数:**

| 参数名   | 类型                                                       | 必填 | 说明             |
| -------- | --------------------------------------------------------- | ---- | ---------------- |
| callback | AsyncCallback<[AudioStreamManager](#audiostreammanager9)> | 是   | 返回音频流管理器实例。 |

**示例:**

```js
J
jiao_yanlin 已提交
2151 2152
var audioManager = audio.getAudioManager();
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
  if (err) {
    console.error(`getStreamManager : Error: ${err}`);
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    let audioStreamManager = data;
  }
});
```

### getStreamManager<sup>9+</sup>

getStreamManager(): Promise<AudioStreamManager\>

获取音频流管理器实例。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Core

**返回值:**

| 类型                                                | 说明             |
| ---------------------------------------------------- | ---------------- |
| Promise<[AudioStreamManager](#audiostreammanager9)> | 返回音频流管理器实例。 |

**示例:**

```js
J
jiao_yanlin 已提交
2179
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2180
var audioStreamManager;
J
jiao_yanlin 已提交
2181
audioManager.getStreamManager().then((data) => {
J
jiao_yanlin 已提交
2182 2183 2184 2185 2186 2187 2188 2189
  audioStreamManager = data;
  console.info('getStreamManager: Success!');
}).catch((err) => {
  console.error(`getStreamManager: ERROR : ${err}`);
});

```

2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
### requestIndependentInterrupt<sup>9+</sup>

requestIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolean\>\): void

申请独立焦点,获取独立SessionID,使用callback方式异步返回结果。

**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名    | 类型                          | 必填 | 说明               |
| -------- | ----------------------------- | ---- | -----------------  |
2204
| focusType | [FocusType](#focustype)      | 是   | 焦点类型。     |
2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
| callback  | AsyncCallback&lt;boolean&gt; | 是   | 回调,返回焦点申请成功/失败状态。 |

**示例:**

```js
async function requestIndependentInterrupt(){
  let value = await audioManager.requestIndependentInterrupt(audio.FocusType.FOCUS_TYPE_RECORDING);
  if (value) {
    console.info('requestIndependentInterrupt interface for result callback: SUCCESS');
  } else {
    console.error('Result ERROR');
  }
}
```
### requestIndependentInterrupt<sup>9+</sup>

J
jiao_yanlin 已提交
2221
requestIndependentInterrupt(focusType: FocusType): Promise<boolean\>
2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232

申请独立焦点,获取独立SessionID,使用promise方式异步返回结果。

**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- |
2233
| focusType | [FocusType](#focustype)    | 是   | 焦点类型。  |
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265

**返回值:**

| 类型                                                      | 说明         |
| --------------------------------------------------------- | ------------ |
| Promise&lt;boolean&gt; | 返回申请焦点成功/失败状态。 |

**示例:**

```js
async function requestIndependentInterrupt(){
  audioManager.requestIndependentInterrupt(audio.FocusType.FOCUS_TYPE_RECORDING).then((value) => {
    console.info('Promise returned to succeed ');
  }).catch ((err) => {
    console.error('Failed to requestIndependentInterrupt');
  });
}
```
### abandonIndependentInterrupt<sup>9+</sup>

abandonIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolean\>\): void

废除独立焦点,使用callback方式异步返回结果。

**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名    | 类型                          | 必填 | 说明               |
| -------- | ----------------------------- | ---- | -----------------  |
2266
| focusType | [FocusType](#focustype)      | 是   | 焦点类型。     |
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
| callback  | AsyncCallback&lt;boolean&gt; | 是   | 回调,返回废除焦点成功/失败状态。 |

**示例:**

```js
async function abandonIndependentInterrupt(){
  let value = await audioManager.abandonIndependentInterrupt(audio.FocusType.FOCUS_TYPE_RECORDING);
  if (value) {
    console.info('abandonIndependentInterrupt interface for result callback: SUCCESS');
  } else {
    console.error('Result ERROR');
  }
}
```
### abandonIndependentInterrupt<sup>9+</sup>

J
jiao_yanlin 已提交
2283
abandonIndependentInterrupt(focusType: FocusType): Promise<boolean\>
W
wangtao 已提交
2284

2285 2286 2287 2288 2289 2290 2291 2292 2293 2294
废除独立焦点,使用promise方式异步返回结果。

**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- |
2295
| focusType | [FocusType](#focustype)    | 是   | 焦点类型。  |
2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313

**返回值:**

| 类型                                                      | 说明         |
| --------------------------------------------------------- | ------------ |
| Promise&lt;boolean&gt; | 返回废除焦点成功/失败状态。 |

**示例:**

```js
async function abandonIndependentInterrupt(){
  audioManager.abandonIndependentInterrupt(audio.FocusType.FOCUS_TYPE_RECORDING).then((value) => {
    console.info('Promise returned to succeed');
  }).catch ((err) => {
    console.error('Failed to abandonIndependentInterrupt');
  });
}
```
W
wangtao 已提交
2314 2315 2316
## AudioGroupManager<sup>9+</sup>
管理音频组音量。在调用AudioGroupManager的接口前,需要先通过 [getGroupManager](#getgroupmanager9) 创建实例。

2317
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2318 2319 2320 2321 2322 2323 2324 2325 2326

**系统能力:** SystemCapability.Multimedia.Audio.Volume

### setVolume<sup>9+</sup>

setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback&lt;void&gt;): void

设置指定流的音量,使用callback方式异步返回结果。

2327 2328 2329
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2330

J
jiao_yanlin 已提交
2331 2332
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                                   |

**示例:**

```js
J
jiao_yanlin 已提交
2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2363 2364
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
2365
    console.error(`Failed to set the volume. ${err}`);
W
wangtao 已提交
2366 2367
    return;
  }
2368
  console.info('Callback invoked to indicate a successful volume setting.');
W
wangtao 已提交
2369 2370 2371 2372 2373 2374 2375 2376 2377
});
```

### setVolume<sup>9+</sup>

setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;

设置指定流的音量,使用Promise方式异步返回结果。

2378 2379 2380
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2381

J
jiao_yanlin 已提交
2382 2383
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |

**示例:**

```js
J
jiao_yanlin 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419

var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2420
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
2421
  console.info('Promise returned to indicate a successful volume setting.');
W
wangtao 已提交
2422 2423 2424 2425 2426 2427 2428 2429 2430
});
```

### getVolume<sup>9+</sup>

getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void

获取指定流的音量,使用callback方式异步返回结果。

J
jiao_yanlin 已提交
2431 2432
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |

**示例:**

```js
J
jiao_yanlin 已提交
2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2462 2463
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2464
    console.error(`Failed to obtain the volume. ${err}`);
W
wangtao 已提交
2465 2466
    return;
  }
2467
  console.info('Callback invoked to indicate that the volume is obtained.');
W
wangtao 已提交
2468 2469 2470 2471 2472 2473 2474 2475 2476
});
```

### getVolume<sup>9+</sup>

getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;

获取指定流的音量,使用Promise方式异步返回结果。

J
jiao_yanlin 已提交
2477 2478
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |

**返回值:**

| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |

**示例:**

```js
J
jiao_yanlin 已提交
2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2513
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2514
  console.info(`Promise returned to indicate that the volume is obtained ${value}.`);
W
wangtao 已提交
2515 2516 2517 2518 2519 2520 2521 2522 2523
});
```

### getMinVolume<sup>9+</sup>

getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void

获取指定流的最小音量,使用callback方式异步返回结果。

J
jiao_yanlin 已提交
2524 2525
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |

**示例:**

```js
J
jiao_yanlin 已提交
2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2555 2556
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2557
    console.error(`Failed to obtain the minimum volume. ${err}`);
W
wangtao 已提交
2558 2559
    return;
  }
2560
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
W
wangtao 已提交
2561 2562 2563 2564 2565 2566 2567 2568 2569
});
```

### getMinVolume<sup>9+</sup>

getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;

获取指定流的最小音量,使用Promise方式异步返回结果。

J
jiao_yanlin 已提交
2570 2571
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |

**返回值:**

| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |

**示例:**

```js
J
jiao_yanlin 已提交
2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2606
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2607
  console.info(`Promised returned to indicate that the minimum volume is obtained ${value}.`);
W
wangtao 已提交
2608 2609 2610 2611 2612 2613 2614 2615 2616
});
```

### getMaxVolume<sup>9+</sup>

getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void

获取指定流的最大音量,使用callback方式异步返回结果。

J
jiao_yanlin 已提交
2617 2618
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                   |
| ---------- | ----------------------------------- | ---- | ---------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。           |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最大音量大小。 |

**示例:**

```js
J
jiao_yanlin 已提交
2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2648 2649
audioGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2650
    console.error(`Failed to obtain the maximum volume. ${err}`);
W
wangtao 已提交
2651 2652
    return;
  }
2653
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
W
wangtao 已提交
2654 2655 2656 2657 2658 2659 2660 2661 2662
});
```

### getMaxVolume<sup>9+</sup>

getMaxVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;

获取指定流的最大音量,使用Promise方式异步返回结果。

J
jiao_yanlin 已提交
2663 2664
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |

**返回值:**

| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |

**示例:**

```js
J
jiao_yanlin 已提交
2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2699
audioGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
2700
  console.info('Promised returned to indicate that the maximum volume is obtained.');
W
wangtao 已提交
2701 2702 2703 2704 2705 2706 2707 2708 2709
});
```

### mute<sup>9+</sup>

mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback&lt;void&gt;): void

设置指定音量流静音,使用callback方式异步返回结果。

2710 2711 2712
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2713

J
jiao_yanlin 已提交
2714 2715
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                |

**示例:**

```js
J
jiao_yanlin 已提交
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2746 2747
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
  if (err) {
2748
    console.error(`Failed to mute the stream. ${err}`);
W
wangtao 已提交
2749 2750
    return;
  }
2751
  console.info('Callback invoked to indicate that the stream is muted.');
W
wangtao 已提交
2752 2753 2754 2755 2756 2757 2758 2759 2760
});
```

### mute<sup>9+</sup>

mute(volumeType: AudioVolumeType, mute: boolean): Promise&lt;void&gt;

设置指定音量流静音,使用Promise方式异步返回结果。

2761 2762 2763
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2764

J
jiao_yanlin 已提交
2765 2766
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |

**示例:**

```js
J
jiao_yanlin 已提交
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2802
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
2803
  console.info('Promise returned to indicate that the stream is muted.');
W
wangtao 已提交
2804 2805 2806 2807 2808 2809 2810 2811 2812
});
```

### isMute<sup>9+</sup>

isMute(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void

获取指定音量流是否被静音,使用callback方式异步返回结果。

J
jiao_yanlin 已提交
2813 2814
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |

**示例:**

```js
J
jiao_yanlin 已提交
2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2844 2845
audioGroupManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2846
    console.error(`Failed to obtain the mute status. ${err}`);
W
wangtao 已提交
2847 2848
    return;
  }
2849
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained ${value}.`);
W
wangtao 已提交
2850 2851 2852 2853 2854 2855 2856 2857 2858
});
```

### isMute<sup>9+</sup>

isMute(volumeType: AudioVolumeType): Promise&lt;boolean&gt;

获取指定音量流是否被静音,使用Promise方式异步返回结果。

J
jiao_yanlin 已提交
2859 2860
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |

**返回值:**

| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |

**示例:**

```js
J
jiao_yanlin 已提交
2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894
var audioManager = audio.getAudioManager();
var audioGroupManager;
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the volume group infos list. ${err}`);
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}

W
wangtao 已提交
2895
audioGroupManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
2896
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
W
wangtao 已提交
2897 2898 2899
});
```

2900 2901
## AudioStreamManager<sup>9+</sup>

J
jiao_yanlin 已提交
2902
管理音频流。在使用AudioStreamManager的API前,需要使用[getStreamManager](#getstreammanager9)获取AudioStreamManager实例。
2903 2904 2905

### getCurrentAudioRendererInfoArray<sup>9+</sup>

2906
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void
2907

2908
获取当前音频渲染器的信息。使用callback异步回调。
2909 2910 2911

**系统能力**: SystemCapability.Multimedia.Audio.Renderer

2912
**参数:**
2913 2914 2915

| 名称     | 类型                                 | 必填     | 说明                         |
| -------- | ----------------------------------- | -------- | --------------------------- |
2916
| callback | AsyncCallback<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)> | 是     |  回调函数,返回当前音频渲染器的信息。 |
2917

2918
**示例:**
J
jiao_yanlin 已提交
2919 2920

```js
J
jiao_yanlin 已提交
2921
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2922
let audioStreamManager;
J
jiao_yanlin 已提交
2923
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
2924
  if (err) {
2925
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2926 2927 2928 2929 2930 2931
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2932
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
2933
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2934
  if (err) {
2935
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
2936 2937 2938
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2939
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2940 2941 2942 2943 2944 2945
        console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
        console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
        console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
        console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
        console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
J
jiao_yanlin 已提交
2946
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
2947 2948 2949 2950 2951 2952 2953 2954
          console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
2955
        }
J
jiao_yanlin 已提交
2956
      }
2957
    }
J
jiao_yanlin 已提交
2958
  }
2959 2960 2961 2962 2963
});
```

### getCurrentAudioRendererInfoArray<sup>9+</sup>

2964
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
2965

2966
获取当前音频渲染器的信息。使用Promise异步回调。
2967

2968
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
2969

2970
**返回值:**
2971 2972 2973

| 类型                                                                              | 说明                                    |
| ---------------------------------------------------------------------------------| --------------------------------------- |
2974
| Promise<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)>          | Promise对象,返回当前音频渲染器信息。      |
2975

2976
**示例:**
J
jiao_yanlin 已提交
2977 2978

```js
J
jiao_yanlin 已提交
2979
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2980
let audioStreamManager;
J
jiao_yanlin 已提交
2981
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
2982
  if (err) {
2983
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2984 2985 2986 2987 2988 2989
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2990
await audioStreamManager.getCurrentAudioRendererInfoArray().then( function (AudioRendererChangeInfoArray) {
2991
  console.info(`getCurrentAudioRendererInfoArray ######### Get Promise is called ##########`);
J
jiao_yanlin 已提交
2992 2993
  if (AudioRendererChangeInfoArray != null) {
    for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2994
      let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009
      console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
      console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
      console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
      console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
      console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
      console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
      for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
        console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
        console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
        console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
        console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
        console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
        console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
        console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
        console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
3010
      }
3011
    }
J
jiao_yanlin 已提交
3012
  }
3013
}).catch((err) => {
3014
  console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
3015 3016 3017 3018 3019
});
```

### getCurrentAudioCapturerInfoArray<sup>9+</sup>

3020
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
3021

3022
获取当前音频采集器的信息。使用callback异步回调。
3023

3024
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3025

3026
**参数:**
3027 3028 3029

| 名称       | 类型                                 | 必填      | 说明                                                      |
| ---------- | ----------------------------------- | --------- | -------------------------------------------------------- |
3030
| callback   | AsyncCallback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是    | 回调函数,返回当前音频采集器的信息。 |
3031

3032
**示例:**
J
jiao_yanlin 已提交
3033 3034

```js
J
jiao_yanlin 已提交
3035
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3036
let audioStreamManager;
J
jiao_yanlin 已提交
3037
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3038
  if (err) {
3039
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3040 3041 3042 3043 3044 3045
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3046
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
3047
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
3048
  if (err) {
3049
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
3050
  } else {
J
jiao_yanlin 已提交
3051 3052
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3053 3054 3055 3056 3057
        console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
        console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
        console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
        console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
J
jiao_yanlin 已提交
3058
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3059 3060 3061 3062 3063 3064 3065 3066
          console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
3067
        }
J
jiao_yanlin 已提交
3068
      }
3069
    }
J
jiao_yanlin 已提交
3070
  }
3071 3072 3073 3074 3075
});
```

### getCurrentAudioCapturerInfoArray<sup>9+</sup>

3076
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
3077

3078
获取当前音频采集器的信息。使用Promise异步回调。
3079

3080
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3081

3082
**返回值:**
3083

3084 3085 3086
| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
3087

3088
**示例:**
J
jiao_yanlin 已提交
3089 3090

```js
J
jiao_yanlin 已提交
3091
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3092
let audioStreamManager;
J
jiao_yanlin 已提交
3093
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3094
  if (err) {
3095
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3096 3097 3098 3099 3100 3101
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3102
await audioStreamManager.getCurrentAudioCapturerInfoArray().then( function (AudioCapturerChangeInfoArray) {
3103
  console.info('getCurrentAudioCapturerInfoArray **** Get Promise Called ****');
J
jiao_yanlin 已提交
3104 3105
  if (AudioCapturerChangeInfoArray != null) {
    for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3106 3107 3108 3109 3110
      console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
      console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
      console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
      console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
      console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
J
jiao_yanlin 已提交
3111
      for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3112 3113 3114 3115 3116 3117 3118 3119
        console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
        console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
        console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
        console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
        console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
        console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
        console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
        console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
3120
      }
3121
    }
J
jiao_yanlin 已提交
3122
  }
3123
}).catch((err) => {
3124
  console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
3125 3126 3127 3128 3129
});
```

### on('audioRendererChange')<sup>9+</sup>

3130
on(type: "audioRendererChange", callback: Callback&lt;AudioRendererChangeInfoArray&gt;): void
3131 3132 3133

监听音频渲染器更改事件。

3134
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3135

3136
**参数:**
3137

3138 3139 3140
| 名称     | 类型        | 必填      | 说明                                                                     |
| -------- | ---------- | --------- | ------------------------------------------------------------------------ |
| type     | string     | 是        | 事件类型,支持的事件`'audioRendererChange'`:当音频渲染器发生更改时触发。     |
3141
| callback | Callback<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)> | 是  |  回调函数。        |
3142

3143
**示例:**
J
jiao_yanlin 已提交
3144 3145

```js
J
jiao_yanlin 已提交
3146
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3147
let audioStreamManager;
J
jiao_yanlin 已提交
3148
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3149
  if (err) {
3150
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3151 3152 3153 3154 3155 3156
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3157
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3158
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
3159
    let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
    console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
    console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
    console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
    for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
      console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
3176
    }
J
jiao_yanlin 已提交
3177
  }
3178 3179 3180 3181 3182 3183 3184
});
```

### off('audioRendererChange')<sup>9+</sup>

off(type: "audioRendererChange");

3185
取消监听音频渲染器更改事件。
3186

3187
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3188

3189
**参数:**
3190 3191 3192

| 名称     | 类型     | 必填 | 说明              |
| -------- | ------- | ---- | ---------------- |
3193
| type     | string  | 是   | 事件类型,支持的事件`'audioRendererChange'`:音频渲染器更改事件。 |
3194

3195
**示例:**
J
jiao_yanlin 已提交
3196 3197

```js
J
jiao_yanlin 已提交
3198
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3199
let audioStreamManager;
J
jiao_yanlin 已提交
3200
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3201
  if (err) {
3202
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3203 3204 3205 3206 3207 3208
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3209
audioStreamManager.off('audioRendererChange');
3210
console.info('######### RendererChange Off is called #########');
3211 3212 3213 3214
```

### on('audioCapturerChange')<sup>9+</sup>

3215
on(type: "audioCapturerChange", callback: Callback&lt;AudioCapturerChangeInfoArray&gt;): void
3216

3217
监听音频采集器更改事件。
3218

3219
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
3220

3221
**参数:**
3222 3223

| 名称     | 类型     | 必填      | 说明                                                                                           |
3224
| -------- | ------- | --------- | ----------------------------------------------------------------------- |
3225
| type     | string  | 是        | 事件类型,支持的事件`'audioCapturerChange'`:当音频采集器发生更改时触发。     |
3226
| callback | Callback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是     | 回调函数。   |
3227

3228
**示例:**
J
jiao_yanlin 已提交
3229 3230

```js
J
jiao_yanlin 已提交
3231
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3232
let audioStreamManager;
J
jiao_yanlin 已提交
3233
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3234
  if (err) {
3235
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3236 3237 3238 3239 3240 3241
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3242
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3243
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3244
    console.info(`## CapChange on is called for element ${i} ##`);
3245 3246 3247 3248 3249 3250
    console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3251
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3252 3253 3254 3255 3256 3257 3258 3259
      console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
3260
    }
J
jiao_yanlin 已提交
3261
  }
3262 3263 3264 3265 3266 3267 3268
});
```

### off('audioCapturerChange')<sup>9+</sup>

off(type: "audioCapturerChange");

3269
取消监听音频采集器更改事件。
3270

3271
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
3272

3273
**参数:**
3274

3275 3276 3277
| 名称      | 类型     | 必填 | 说明                                                          |
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |
3278

3279
**示例:**
J
jiao_yanlin 已提交
3280 3281

```js
J
jiao_yanlin 已提交
3282
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3283
let audioStreamManager;
J
jiao_yanlin 已提交
3284
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3285
  if (err) {
3286
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
3287 3288 3289 3290 3291 3292
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3293
audioStreamManager.off('audioCapturerChange');
3294
console.info('######### CapturerChange Off is called #########');
3295 3296

```
3297 3298 3299 3300
## AudioRoutingManager<sup>9+</sup>

音频路由管理。在使用AudioRoutingManager的接口前,需要使用[getRoutingManager](#getroutingmanager9)获取AudioRoutingManager实例。

3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318
### getDevices<sup>9+</sup>

getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void

获取音频设备列表,使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |

**示例:**

```js
J
jiao_yanlin 已提交
3319
var audioManager = audio.getAudioManager();
3320 3321
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3322
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
J
jiao_yanlin 已提交
3323
  } else {
3324 3325
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
      if (err) {
3326
        console.error(`Failed to obtain the device list. ${err}`);
3327 3328
        return;
      }
3329
      console.info('Callback invoked to indicate that the device list is obtained.');
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357
    });
  }
})
```

### getDevices<sup>9+</sup>

getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;

获取音频设备列表,使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |

**返回值:**

| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |

**示例:**

```js
J
jiao_yanlin 已提交
3358
var audioManager = audio.getAudioManager();
3359 3360
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3361
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3362 3363 3364
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
3365
      console.info('Promise returned to indicate that the device list is obtained.');
3366 3367 3368 3369 3370 3371 3372
    });
  }
});
```

### on<sup>9+</sup>

3373
on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback<DeviceChangeAction\>): void
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389

设备更改。音频设备连接状态变化。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |

**示例:**

```js
J
jiao_yanlin 已提交
3390
var audioManager = audio.getAudioManager();
3391 3392
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3393
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424
  }
  else {
    AudioRoutingManager.on('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
      console.info('device change type : ' + deviceChanged.type);
      console.info('device descriptor size : ' + deviceChanged.deviceDescriptors.length);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceRole);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceType);
    });
  }
});
```

### off<sup>9+</sup>

off(type: 'deviceChange', callback?: Callback<DeviceChangeAction\>): void

取消订阅音频设备连接变化事件。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)> | 否   | 获取设备更新详情。                         |

**示例:**

```js
J
jiao_yanlin 已提交
3425
var audioManager = audio.getAudioManager();
3426 3427
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3428
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3429 3430 3431
  }
  else {
    AudioRoutingManager.off('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
3432
      console.info('Should be no callback.');
3433 3434 3435 3436 3437
    });
  }
});
```

3438 3439
### selectOutputDevice<sup>9+</sup>

3440
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3441

3442
选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
3443

3444
**系统接口:** 该接口为系统接口
3445

3446 3447 3448 3449 3450 3451
**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3452
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3453 3454 3455 3456
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
J
jiao_yanlin 已提交
3457
var audioManager = audio.getAudioManager();
3458 3459 3460 3461 3462 3463
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3464 3465 3466 3467 3468 3469 3470 3471 3472 3473

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
      if (err) {
        console.error(`Result ERROR: ${err}`);
      } else {
        console.info('Select output devices result callback: SUCCESS'); }
    });
3474
  });
J
jiao_yanlin 已提交
3475
}
3476 3477 3478 3479
```

### selectOutputDevice<sup>9+</sup>

3480 3481
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

3482
**系统接口:** 该接口为系统接口
3483

3484
选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
3485 3486 3487 3488 3489 3490 3491

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3492
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3493 3494 3495 3496 3497 3498 3499 3500 3501 3502

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |

**示例:**

```js
J
jiao_yanlin 已提交
3503
var audioManager = audio.getAudioManager();
3504 3505 3506 3507 3508 3509
let outputAudioDeviceDescriptor =[{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3510 3511 3512 3513 3514 3515 3516 3517 3518

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
      console.info('Select output devices result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    });
3519
  });
J
jiao_yanlin 已提交
3520
}
3521 3522 3523 3524
```

### selectOutputDeviceByFilter<sup>9+</sup>

3525
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3526

3527
**系统接口:** 该接口为系统接口
3528

3529
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
3530 3531 3532 3533 3534 3535 3536

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3537
| filter                      | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
3538
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3539 3540 3541 3542
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
J
jiao_yanlin 已提交
3543
var audioManager = audio.getAudioManager();
3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3557 3558 3559 3560 3561 3562 3563 3564 3565 3566

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor, (err) => {
      if (err) {
        console.error(`Result ERROR: ${err}`);
      } else {
        console.info('Select output devices by filter result callback: SUCCESS'); }
    });
3567
  });
J
jiao_yanlin 已提交
3568
}
3569 3570 3571 3572
```

### selectOutputDeviceByFilter<sup>9+</sup>

3573
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
3574

3575
**系统接口:** 该接口为系统接口
3576

3577
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
3578 3579 3580 3581 3582

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

3583 3584 3585 3586
| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| filter                | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices    | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3587 3588 3589 3590 3591 3592 3593 3594 3595 3596

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |

**示例:**

```js
J
jiao_yanlin 已提交
3597
var audioManager = audio.getAudioManager();
3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor).then(() => {
      console.info('Select output devices by filter result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    })
  });
}
3622 3623
```

3624 3625 3626 3627 3628 3629 3630 3631 3632
## AudioRendererChangeInfo<sup>9+</sup>

描述音频渲染器更改信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
J
jiao_yanlin 已提交
3633
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
3634
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
J
jiao_yanlin 已提交
3635
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3636

3637 3638 3639 3640
## AudioRendererChangeInfoArray<sup>9+</sup>

AudioRenderChangeInfo数组,只读。

3641
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3642

3643 3644
**示例:**

J
jiao_yanlin 已提交
3645
```js
3646 3647 3648 3649
import audio from '@ohos.multimedia.audio';

var audioStreamManager;
var audioStreamManagerCB;
3650
var resultFlag = false;
3651

J
jiao_yanlin 已提交
3652 3653 3654 3655 3656 3657 3658 3659
async function getStreamManager(){
  await audioManager.getStreamManager().then(async function (data) {
    audioStreamManager = data;
    console.info('Get AudioStream Manager : Success');
  }).catch((err) => {
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
  });
}
3660 3661

audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3662
  if (err) {
3663
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
J
jiao_yanlin 已提交
3664
  } else {
J
jiao_yanlin 已提交
3665
    audioStreamManagerCB = data;
3666
    console.info('Get AudioStream Manager : Success');
J
jiao_yanlin 已提交
3667 3668
  }
});
3669 3670

audioStreamManagerCB.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3671
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
3672 3673 3674 3675 3676 3677 3678
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfoArray[i].clientUid}`);
    console.info(`Content for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.content}`);
    console.info(`Stream for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.rendererFlags}`);
    console.info(`State for ${i} is: ${AudioRendererChangeInfoArray[i].rendererState}`);
J
jiao_yanlin 已提交
3679
  	var devDescriptor = AudioRendererChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3680
  	for (let j = 0; j < AudioRendererChangeInfoArray[i].deviceDescriptors.length; j++) {
3681 3682 3683 3684 3685 3686 3687 3688
  	  console.info(`Id: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].id}`);
  	  console.info(`Type: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
  	  console.info(`Role: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
  	  console.info(`Name: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].name}`);
  	  console.info(`Addr: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].address}`);
  	  console.info(`SR: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
  	  console.info(`C ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
  	  console.info(`CM: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
3689 3690 3691
  	}
    if (AudioRendererChangeInfoArray[i].rendererState == 1 && devDescriptor != null) {
      resultFlag = true;
3692
      console.info(`ResultFlag for ${i} is: ${resultFlag}`);
3693
    }
J
jiao_yanlin 已提交
3694
  }
3695 3696 3697 3698 3699
});
```

## AudioCapturerChangeInfo<sup>9+</sup>

3700
描述音频采集器更改信息。
3701 3702 3703 3704 3705 3706

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Capturer

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
3707 3708
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)   | 是   | 否   | 音频采集器信息。               |
J
jiao_yanlin 已提交
3709
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3710

3711 3712 3713 3714 3715 3716
## AudioCapturerChangeInfoArray<sup>9+</sup>

AudioCapturerChangeInfo数组,只读。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

3717 3718
**示例:**

J
jiao_yanlin 已提交
3719
```js
3720 3721 3722
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
3723
var resultFlag = false;
3724
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3725
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3726 3727 3728 3729 3730 3731
    console.info(`## CapChange on is called for element ${i} ##`);
    console.info(`StrId for  ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`CUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Src for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);
J
jiao_yanlin 已提交
3732
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3733
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3734 3735 3736 3737 3738 3739 3740 3741
      console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
      console.info(`Addr: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
      console.info(`SR: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
      console.info(`C ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
      console.info(`CM ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
3742
    }
J
jiao_yanlin 已提交
3743 3744
    if (AudioCapturerChangeInfoArray[i].capturerState == 1 && devDescriptor != null) {
      resultFlag = true;
3745 3746
      console.info(`ResultFlag for element ${i} is: ${resultFlag}`);
    }
J
jiao_yanlin 已提交
3747
  }
3748 3749 3750
});
```

Z
zengyawen 已提交
3751
## AudioDeviceDescriptor
3752 3753 3754

描述音频设备。

Z
zengyawen 已提交
3755
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device
Z
zengyawen 已提交
3756

3757 3758 3759 3760 3761 3762 3763 3764 3765 3766
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| deviceRole                    | [DeviceRole](#devicerole)  | 是   | 否   | 设备角色。 |
| deviceType                    | [DeviceType](#devicetype)  | 是   | 否   | 设备类型。 |
| id<sup>9+</sup>               | number                     | 是   | 否   | 设备id。  |
| name<sup>9+</sup>             | string                     | 是   | 否   | 设备名称。 |
| address<sup>9+</sup>          | string                     | 是   | 否   | 设备地址。 |
| sampleRates<sup>9+</sup>      | Array&lt;number&gt;        | 是   | 否   | 支持的采样率。 |
| channelCounts<sup>9+</sup>    | Array&lt;number&gt;        | 是   | 否   | 支持的通道数。 |
| channelMasks<sup>9+</sup>     | Array&lt;number&gt;        | 是   | 否   | 支持的通道掩码。 |
3767 3768 3769
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
Z
zengyawen 已提交
3770 3771

## AudioDeviceDescriptors
M
mamingshuai 已提交
3772

H
update  
HelloCrease 已提交
3773
设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。
Z
zengyawen 已提交
3774 3775 3776

**示例:**

J
jiao_yanlin 已提交
3777
```js
L
lwx1059628 已提交
3778 3779 3780
import audio from '@ohos.multimedia.audio';

function displayDeviceProp(value) {
J
jiao_yanlin 已提交
3781 3782
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
Z
zengyawen 已提交
3783 3784
}

L
lwx1059628 已提交
3785 3786 3787 3788
var deviceRoleValue = null;
var deviceTypeValue = null;
const promise = audio.getAudioManager().getDevices(1);
promise.then(function (value) {
3789
  console.info('AudioFrameworkTest: Promise: getDevices OUTPUT_DEVICES_FLAG');
J
jiao_yanlin 已提交
3790 3791
  value.forEach(displayDeviceProp);
  if (deviceTypeValue != null && deviceRoleValue != null){
3792
    console.info('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  PASS');
J
jiao_yanlin 已提交
3793
  } else {
3794
    console.error('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  FAIL');
J
jiao_yanlin 已提交
3795
  }
L
lwx1059628 已提交
3796
});
Z
zengyawen 已提交
3797 3798
```

3799 3800 3801 3802
## AudioRendererFilter<sup>9+</sup>

过滤条件类。在调用selectOutputDeviceByFilter接口前,需要先创建AudioRendererFilter实例。

3803
**系统接口:** 该接口为系统接口
3804

3805 3806
| 名称          | 类型                                     | 必填  | 说明          |
| -------------| ---------------------------------------- | ---- | -------------- |
J
jiao_yanlin 已提交
3807 3808 3809
| uid          | number                                   |  是  | 表示应用ID。<br> **系统能力:** SystemCapability.Multimedia.Audio.Core|
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822

**示例:**

```js
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
```

Z
zengyawen 已提交
3823 3824
## AudioRenderer<sup>8+</sup>

L
lwx1059628 已提交
3825 3826
提供音频渲染的相关接口。在调用AudioRenderer的接口前,需要先通过[createAudioRenderer](#audiocreateaudiorenderer8)创建实例。

3827
### 属性
Z
zengyawen 已提交
3828

3829
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3830

3831
| 名称  | 类型                     | 可读 | 可写 | 说明               |
Z
zengyawen 已提交
3832
| ----- | -------------------------- | ---- | ---- | ------------------ |
3833
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
3834 3835 3836

**示例:**

J
jiao_yanlin 已提交
3837
```js
Z
zengyawen 已提交
3838 3839 3840 3841 3842 3843 3844
var state = audioRenderer.state;
```

### getRendererInfo<sup>8+</sup>

getRendererInfo(callback: AsyncCallback<AudioRendererInfo\>): void

L
lwx1059628 已提交
3845
获取当前被创建的音频渲染器的信息,使用callback方式异步返回结果。
Z
zengyawen 已提交
3846

3847
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3848 3849 3850

**参数:**

L
lwx1059628 已提交
3851 3852 3853
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
3854 3855 3856

**示例:**

J
jiao_yanlin 已提交
3857
```js
L
lwx1059628 已提交
3858
audioRenderer.getRendererInfo((err, rendererInfo) => {
3859 3860 3861 3862
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`);
L
lwx1059628 已提交
3863
});
Z
zengyawen 已提交
3864 3865 3866 3867 3868 3869
```

### getRendererInfo<sup>8+</sup>

getRendererInfo(): Promise<AudioRendererInfo\>

L
lwx1059628 已提交
3870
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
3871

3872
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3873 3874 3875 3876 3877

**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
L
lwx1059628 已提交
3878
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
Z
zengyawen 已提交
3879 3880 3881

**示例:**

J
jiao_yanlin 已提交
3882
```js
L
lwx1059628 已提交
3883
audioRenderer.getRendererInfo().then((rendererInfo) => {
3884 3885 3886 3887
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`)
L
lwx1059628 已提交
3888
}).catch((err) => {
3889
  console.error(`AudioFrameworkRenderLog: RendererInfo :ERROR: ${err}`);
L
lwx1059628 已提交
3890
});
Z
zengyawen 已提交
3891 3892 3893 3894 3895 3896 3897 3898
```

### getStreamInfo<sup>8+</sup>

getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void

获取音频流信息,使用callback方式异步返回结果。

3899
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3900 3901 3902 3903 3904 3905 3906 3907 3908

**参数:**

| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 回调返回音频流信息。 |

**示例:**

J
jiao_yanlin 已提交
3909
```js
L
lwx1059628 已提交
3910
audioRenderer.getStreamInfo((err, streamInfo) => {
3911 3912 3913 3914 3915
  console.info('Renderer GetStreamInfo:');
  console.info(`Renderer sampling rate: ${streamInfo.samplingRate}`);
  console.info(`Renderer channel: ${streamInfo.channels}`);
  console.info(`Renderer format: ${streamInfo.sampleFormat}`);
  console.info(`Renderer encoding type: ${streamInfo.encodingType}`);
L
lwx1059628 已提交
3916
});
Z
zengyawen 已提交
3917 3918 3919 3920 3921 3922 3923 3924
```

### getStreamInfo<sup>8+</sup>

getStreamInfo(): Promise<AudioStreamInfo\>

获取音频流信息,使用Promise方式异步返回结果。

3925
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3926 3927 3928 3929 3930 3931 3932 3933 3934

**返回值:**

| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | Promise返回音频流信息. |

**示例:**

J
jiao_yanlin 已提交
3935
```js
L
lwx1059628 已提交
3936
audioRenderer.getStreamInfo().then((streamInfo) => {
3937 3938 3939 3940 3941
  console.info('Renderer GetStreamInfo:');
  console.info(`Renderer sampling rate: ${streamInfo.samplingRate}`);
  console.info(`Renderer channel: ${streamInfo.channels}`);
  console.info(`Renderer format: ${streamInfo.sampleFormat}`);
  console.info(`Renderer encoding type: ${streamInfo.encodingType}`);
L
lwx1059628 已提交
3942
}).catch((err) => {
3943
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3944
});
Z
zengyawen 已提交
3945 3946 3947 3948 3949 3950
```

### start<sup>8+</sup>

start(callback: AsyncCallback<void\>): void

L
lwx1059628 已提交
3951
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3952

3953
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3954 3955 3956 3957 3958 3959 3960 3961 3962

**参数:**

| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |

**示例:**

J
jiao_yanlin 已提交
3963
```js
L
lwx1059628 已提交
3964
audioRenderer.start((err) => {
J
jiao_yanlin 已提交
3965
  if (err) {
3966
    console.error('Renderer start failed.');
J
jiao_yanlin 已提交
3967
  } else {
3968
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3969
  }
L
lwx1059628 已提交
3970
});
Z
zengyawen 已提交
3971 3972 3973 3974 3975 3976
```

### start<sup>8+</sup>

start(): Promise<void\>

L
lwx1059628 已提交
3977
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3978

3979
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3980 3981 3982 3983 3984 3985 3986 3987 3988

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
3989
```js
L
lwx1059628 已提交
3990
audioRenderer.start().then(() => {
3991
  console.info('Renderer started');
L
lwx1059628 已提交
3992
}).catch((err) => {
3993
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3994
});
Z
zengyawen 已提交
3995 3996 3997 3998 3999 4000
```

### pause<sup>8+</sup>

pause(callback: AsyncCallback\<void>): void

L
lwx1059628 已提交
4001
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
4002

4003
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4004 4005 4006 4007 4008 4009 4010 4011 4012

**参数:**

| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |

**示例:**

J
jiao_yanlin 已提交
4013
```js
L
lwx1059628 已提交
4014
audioRenderer.pause((err) => {
J
jiao_yanlin 已提交
4015
  if (err) {
4016
    console.error('Renderer pause failed');
J
jiao_yanlin 已提交
4017
  } else {
4018
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
4019
  }
L
lwx1059628 已提交
4020
});
Z
zengyawen 已提交
4021 4022 4023 4024 4025 4026
```

### pause<sup>8+</sup>

pause(): Promise\<void>

L
lwx1059628 已提交
4027
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4028

4029
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4030 4031 4032 4033 4034 4035 4036 4037 4038

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4039
```js
L
lwx1059628 已提交
4040
audioRenderer.pause().then(() => {
4041
  console.info('Renderer paused');
L
lwx1059628 已提交
4042
}).catch((err) => {
4043
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4044
});
Z
zengyawen 已提交
4045 4046 4047 4048 4049 4050
```

### drain<sup>8+</sup>

drain(callback: AsyncCallback\<void>): void

L
lwx1059628 已提交
4051
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
4052

4053
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4054 4055 4056 4057 4058 4059 4060 4061 4062

**参数:**

| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |

**示例:**

J
jiao_yanlin 已提交
4063
```js
L
lwx1059628 已提交
4064
audioRenderer.drain((err) => {
J
jiao_yanlin 已提交
4065
  if (err) {
4066
    console.error('Renderer drain failed');
J
jiao_yanlin 已提交
4067
  } else {
4068
    console.info('Renderer drained.');
J
jiao_yanlin 已提交
4069
  }
L
lwx1059628 已提交
4070
});
Z
zengyawen 已提交
4071 4072 4073 4074 4075 4076
```

### drain<sup>8+</sup>

drain(): Promise\<void>

L
lwx1059628 已提交
4077
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4078

4079
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4080 4081 4082 4083 4084 4085 4086 4087 4088

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4089
```js
L
lwx1059628 已提交
4090
audioRenderer.drain().then(() => {
4091
  console.info('Renderer drained successfully');
L
lwx1059628 已提交
4092
}).catch((err) => {
4093
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4094
});
Z
zengyawen 已提交
4095 4096 4097 4098 4099 4100
```

### stop<sup>8+</sup>

stop(callback: AsyncCallback\<void>): void

L
lwx1059628 已提交
4101
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
4102

4103
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4104 4105 4106 4107 4108 4109 4110 4111 4112

**参数:**

| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |

**示例:**

J
jiao_yanlin 已提交
4113
```js
L
lwx1059628 已提交
4114
audioRenderer.stop((err) => {
J
jiao_yanlin 已提交
4115
  if (err) {
4116
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
4117
  } else {
4118
    console.info('Renderer stopped.');
J
jiao_yanlin 已提交
4119
  }
L
lwx1059628 已提交
4120
});
Z
zengyawen 已提交
4121 4122 4123 4124 4125 4126
```

### stop<sup>8+</sup>

stop(): Promise\<void>

L
lwx1059628 已提交
4127
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4128

4129
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4130 4131 4132 4133 4134 4135 4136 4137 4138

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4139
```js
L
lwx1059628 已提交
4140
audioRenderer.stop().then(() => {
4141
  console.info('Renderer stopped successfully');
L
lwx1059628 已提交
4142
}).catch((err) => {
4143
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4144
});
Z
zengyawen 已提交
4145 4146 4147 4148 4149 4150
```

### release<sup>8+</sup>

release(callback: AsyncCallback\<void>): void

L
lwx1059628 已提交
4151
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4152

4153
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4154 4155 4156 4157 4158 4159 4160 4161 4162

**参数:**

| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |

**示例:**

J
jiao_yanlin 已提交
4163
```js
L
lwx1059628 已提交
4164
audioRenderer.release((err) => {
J
jiao_yanlin 已提交
4165
  if (err) {
4166
    console.error('Renderer release failed');
J
jiao_yanlin 已提交
4167
  } else {
4168
    console.info('Renderer released.');
J
jiao_yanlin 已提交
4169
  }
L
lwx1059628 已提交
4170
});
Z
zengyawen 已提交
4171 4172 4173 4174 4175 4176 4177 4178
```

### release<sup>8+</sup>

release(): Promise\<void>

释放渲染器。使用Promise方式异步返回结果。

4179
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4180 4181 4182 4183 4184 4185 4186 4187 4188

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4189
```js
L
lwx1059628 已提交
4190
audioRenderer.release().then(() => {
4191
  console.info('Renderer released successfully');
L
lwx1059628 已提交
4192
}).catch((err) => {
4193
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4194
});
Z
zengyawen 已提交
4195 4196 4197 4198 4199 4200 4201 4202
```

### write<sup>8+</sup>

write(buffer: ArrayBuffer, callback: AsyncCallback\<number>): void

写入缓冲区。使用callback方式异步返回结果。

4203
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4204 4205 4206 4207 4208 4209 4210 4211 4212 4213

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                                |
| -------- | ---------------------- | ---- | --------------------------------------------------- |
| buffer   | ArrayBuffer            | 是   | 要写入缓冲区的数据。                                |
| callback | AsyncCallback\<number> | 是   | 回调如果成功,返回写入的字节数,否则返回errorcode。 |

**示例:**

J
jiao_yanlin 已提交
4214
```js
L
lwx1059628 已提交
4215 4216
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
4217
import featureAbility from '@ohos.ability.featureAbility'
L
lwx1059628 已提交
4218

R
rahul 已提交
4219
var audioStreamInfo = {
J
jiao_yanlin 已提交
4220 4221 4222 4223
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
4224 4225 4226
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
4227
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
4228
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
4229
  rendererFlags: 0
R
rahul 已提交
4230 4231 4232
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
4233 4234
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
4235 4236 4237
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data)=> {
J
jiao_yanlin 已提交
4238
  audioRenderer = data;
4239
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
4240
  }).catch((err) => {
4241
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
4242
  });
R
rahul 已提交
4243 4244
var bufferSize;
audioRenderer.getBufferSize().then((data)=> {
4245
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4246 4247
  bufferSize = data;
  }).catch((err) => {
4248
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4249
  });
4250
console.info(`Buffer size: ${bufferSize}`);
R
rahul 已提交
4251
var context = featureAbility.getContext();
J
jiao_yanlin 已提交
4252 4253 4254 4255
var path;
async function getCacheDir(){
  path = await context.getCacheDir();
}
4256
var filePath = path + '/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
4257 4258 4259
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
4260
audioRenderer.write(buf, (err, writtenbytes) => {
J
jiao_yanlin 已提交
4261
  if (writtenbytes < 0) {
4262
    console.error('write failed.');
J
jiao_yanlin 已提交
4263
  } else {
4264
    console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
4265
  }
L
lwx1059628 已提交
4266
});
Z
zengyawen 已提交
4267 4268 4269 4270 4271 4272 4273 4274
```

### write<sup>8+</sup>

write(buffer: ArrayBuffer): Promise\<number>

写入缓冲区。使用Promise方式异步返回结果。

4275
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4276 4277 4278 4279 4280 4281 4282 4283 4284

**返回值:**

| 类型             | 说明                                                         |
| ---------------- | ------------------------------------------------------------ |
| Promise\<number> | Promise返回结果,如果成功,返回写入的字节数,否则返回errorcode。 |

**示例:**

J
jiao_yanlin 已提交
4285
```js
L
lwx1059628 已提交
4286 4287
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
4288 4289 4290
import featureAbility from '@ohos.ability.featureAbility'

var audioStreamInfo = {
J
jiao_yanlin 已提交
4291 4292 4293 4294
  samplingRate:audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels:audio.AudioChannel.CHANNEL_2,
  sampleFormat:audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType:audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
4295 4296 4297
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
4298 4299
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
4300
  rendererFlags: 0
R
rahul 已提交
4301
}
L
lwx1059628 已提交
4302

R
rahul 已提交
4303
var audioRendererOptions = {
J
jiao_yanlin 已提交
4304 4305
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
4306 4307 4308
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
4309
  audioRenderer = data;
4310
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
4311
  }).catch((err) => {
4312
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
4313
  });
R
rahul 已提交
4314 4315
var bufferSize;
audioRenderer.getBufferSize().then((data) => {
4316
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4317 4318
  bufferSize = data;
  }).catch((err) => {
4319
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4320
  });
4321
console.info(`BufferSize: ${bufferSize}`);
R
rahul 已提交
4322
var context = featureAbility.getContext();
J
jiao_yanlin 已提交
4323 4324 4325
async function getCacheDir(){
  path = await context.getCacheDir();
}
L
lwx1059628 已提交
4326
var filePath = 'data/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
4327 4328 4329
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
4330
audioRenderer.write(buf).then((writtenbytes) => {
J
jiao_yanlin 已提交
4331
  if (writtenbytes < 0) {
4332
      console.error('write failed.');
J
jiao_yanlin 已提交
4333
  } else {
4334
      console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
4335
  }
L
lwx1059628 已提交
4336
}).catch((err) => {
4337
    console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4338
});
Z
zengyawen 已提交
4339 4340 4341 4342 4343 4344
```

### getAudioTime<sup>8+</sup>

getAudioTime(callback: AsyncCallback\<number>): void

L
lwx1059628 已提交
4345
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
4346

4347
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4348 4349 4350 4351 4352 4353 4354 4355 4356

**参数:**

| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |

**示例:**

J
jiao_yanlin 已提交
4357
```js
L
lwx1059628 已提交
4358
audioRenderer.getAudioTime((err, timestamp) => {
4359
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4360
});
Z
zengyawen 已提交
4361 4362 4363 4364 4365 4366
```

### getAudioTime<sup>8+</sup>

getAudioTime(): Promise\<number>

L
lwx1059628 已提交
4367
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4368

4369
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4370 4371 4372 4373 4374 4375 4376 4377 4378

**返回值:**

| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |

**示例:**

J
jiao_yanlin 已提交
4379
```js
L
lwx1059628 已提交
4380
audioRenderer.getAudioTime().then((timestamp) => {
4381
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4382
}).catch((err) => {
4383
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4384
});
Z
zengyawen 已提交
4385 4386 4387 4388 4389 4390
```

### getBufferSize<sup>8+</sup>

getBufferSize(callback: AsyncCallback\<number>): void

L
lwx1059628 已提交
4391
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
Z
zengyawen 已提交
4392

4393
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4394 4395 4396 4397 4398 4399 4400 4401 4402

**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
4403
```js
R
rahul 已提交
4404
var bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
J
jiao_yanlin 已提交
4405
  if (err) {
4406
    console.error('getBufferSize error');
J
jiao_yanlin 已提交
4407
  }
L
lwx1059628 已提交
4408
});
Z
zengyawen 已提交
4409 4410 4411 4412 4413 4414
```

### getBufferSize<sup>8+</sup>

getBufferSize(): Promise\<number>

L
lwx1059628 已提交
4415
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4416

4417
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4418 4419 4420 4421 4422 4423 4424 4425 4426

**返回值:**

| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
4427
```js
R
rahul 已提交
4428 4429 4430 4431
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
4432 4433 4434 4435
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
4436 4437 4438
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
4439 4440
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
4441
  rendererFlags: 0
R
rahul 已提交
4442 4443 4444
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
4445 4446
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
4447 4448 4449
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
4450 4451 4452
  audioRenderer = data;
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
  }).catch((err) => {
4453
  console.info(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
4454
  });
R
rahul 已提交
4455
var bufferSize;
R
rahul 已提交
4456
audioRenderer.getBufferSize().then((data) => {
4457
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4458
  bufferSize = data;
L
lwx1059628 已提交
4459
}).catch((err) => {
4460
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
L
lwx1059628 已提交
4461
});
Z
zengyawen 已提交
4462 4463 4464 4465 4466 4467
```

### setRenderRate<sup>8+</sup>

setRenderRate(rate: AudioRendererRate, callback: AsyncCallback\<void>): void

L
lwx1059628 已提交
4468
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4469

4470
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4471 4472 4473 4474 4475

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
L
lwx1059628 已提交
4476
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
Z
zengyawen 已提交
4477 4478 4479 4480
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
4481
```js
L
lwx1059628 已提交
4482
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err) => {
J
jiao_yanlin 已提交
4483
  if (err) {
4484
    console.error('Failed to set params');
J
jiao_yanlin 已提交
4485
  } else {
4486
    console.info('Callback invoked to indicate a successful render rate setting.');
J
jiao_yanlin 已提交
4487
  }
L
lwx1059628 已提交
4488
});
Z
zengyawen 已提交
4489 4490 4491 4492 4493 4494
```

### setRenderRate<sup>8+</sup>

setRenderRate(rate: AudioRendererRate): Promise\<void>

L
lwx1059628 已提交
4495
设置音频渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4496

4497
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4498 4499 4500 4501 4502

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
L
lwx1059628 已提交
4503
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
Z
zengyawen 已提交
4504 4505 4506 4507 4508 4509 4510 4511 4512

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |

**示例:**

J
jiao_yanlin 已提交
4513
```js
L
lwx1059628 已提交
4514
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
4515
  console.info('setRenderRate SUCCESS');
L
lwx1059628 已提交
4516
}).catch((err) => {
4517
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4518
});
Z
zengyawen 已提交
4519 4520 4521 4522 4523 4524
```

### getRenderRate<sup>8+</sup>

getRenderRate(callback: AsyncCallback\<AudioRendererRate>): void

L
lwx1059628 已提交
4525
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4526

4527
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4528 4529 4530 4531 4532

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
L
lwx1059628 已提交
4533
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
4534 4535 4536

**示例:**

J
jiao_yanlin 已提交
4537
```js
L
lwx1059628 已提交
4538
audioRenderer.getRenderRate((err, renderrate) => {
4539
  console.info(`getRenderRate: ${renderrate}`);
L
lwx1059628 已提交
4540
});
Z
zengyawen 已提交
4541 4542 4543 4544 4545 4546
```

### getRenderRate<sup>8+</sup>

getRenderRate(): Promise\<AudioRendererRate>

L
lwx1059628 已提交
4547
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4548

4549
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4550 4551 4552 4553 4554

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
L
lwx1059628 已提交
4555
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
4556 4557 4558

**示例:**

J
jiao_yanlin 已提交
4559
```js
L
lwx1059628 已提交
4560
audioRenderer.getRenderRate().then((renderRate) => {
4561
  console.info(`getRenderRate: ${renderRate}`);
L
lwx1059628 已提交
4562
}).catch((err) => {
4563
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4564
});
Z
zengyawen 已提交
4565
```
4566 4567
### setInterruptMode<sup>9+</sup>

4568
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
4569

4570
设置应用的焦点模型。使用Promise异步回调。
4571 4572 4573 4574 4575

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

4576 4577
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
4578
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
4579 4580 4581 4582 4583

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
4584
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
4585 4586

**示例:**
Z
zengyawen 已提交
4587

J
jiao_yanlin 已提交
4588
```js
J
jiao_yanlin 已提交
4589
var audioStreamInfo = {
J
jiao_yanlin 已提交
4590 4591 4592 4593
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
J
jiao_yanlin 已提交
4594 4595
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4596 4597 4598
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4599 4600
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4601 4602
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4603
}
J
jiao_yanlin 已提交
4604 4605 4606 4607 4608
let audioRenderer;
async function createAudioRenderer(){
  audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
}

J
jiao_yanlin 已提交
4609 4610
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
4611 4612
  console.info('setInterruptMode Success!');
}).catch((err) => {
4613
  console.error(`setInterruptMode Fail: ${err}`);
4614
});
Z
zhujie81 已提交
4615 4616 4617
```
### setInterruptMode<sup>9+</sup>

4618
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
Z
zhujie81 已提交
4619

Z
zhujie81 已提交
4620
设置应用的焦点模型。使用Callback回调返回执行结果。
Z
zhujie81 已提交
4621 4622 4623 4624

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**
4625

4626 4627
| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
4628
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
4629
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|
Z
zengyawen 已提交
4630

Z
zhujie81 已提交
4631 4632
**示例:**

J
jiao_yanlin 已提交
4633
```js
J
jiao_yanlin 已提交
4634
var audioStreamInfo = {
J
jiao_yanlin 已提交
4635 4636 4637 4638
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
J
jiao_yanlin 已提交
4639 4640
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4641 4642 4643
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4644 4645
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4646 4647
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4648
}
J
jiao_yanlin 已提交
4649 4650 4651 4652 4653 4654

let audioRenderer;
async function createAudioRenderer(){
  audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
}

J
jiao_yanlin 已提交
4655
let mode = 1;
J
jiao_yanlin 已提交
4656
audioRenderer.setInterruptMode(mode, (err, data)=>{
J
jiao_yanlin 已提交
4657
  if(err){
4658
    console.error(`setInterruptMode Fail: ${err}`);
J
jiao_yanlin 已提交
4659
  }
4660
  console.info('setInterruptMode Success!');
4661
});
4662
```
L
lwx1059628 已提交
4663
### on('interrupt')<sup>9+</sup>
Z
zengyawen 已提交
4664 4665 4666 4667 4668

on(type: 'interrupt', callback: Callback\<InterruptEvent>): void

监听音频中断事件。使用callback获取中断事件。

4669
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4670 4671 4672 4673 4674 4675

**参数:**

| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'interrupt'(中断事件被触发,音频播放被中断。) |
L
lwx1059628 已提交
4676
| callback | Callback<[InterruptEvent](#interruptevent9)> | 是   | 被监听的中断事件的回调。                                     |
Z
zengyawen 已提交
4677 4678 4679

**示例:**

J
jiao_yanlin 已提交
4680
```js
R
rahul 已提交
4681 4682 4683
var isPlay;
var started;
audioRenderer.on('interrupt', async(interruptEvent) => {
J
jiao_yanlin 已提交
4684 4685 4686
  if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4687
        console.info('Force paused. Stop writing');
J
jiao_yanlin 已提交
4688 4689 4690
        isPlay = false;
        break;
      case audio.InterruptHint.INTERRUPT_HINT_STOP:
4691
        console.info('Force stopped. Stop writing');
J
jiao_yanlin 已提交
4692 4693 4694 4695 4696 4697
        isPlay = false;
        break;
    }
  } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_RESUME:
4698
        console.info('Resume force paused renderer or ignore');
J
jiao_yanlin 已提交
4699
        await audioRenderer.start().then(async function () {
4700
          console.info('AudioInterruptMusic: renderInstant started :SUCCESS ');
J
jiao_yanlin 已提交
4701 4702
          started = true;
        }).catch((err) => {
4703
          console.error(`AudioInterruptMusic: renderInstant start :ERROR : ${err}`);
J
jiao_yanlin 已提交
4704 4705 4706 4707
          started = false;
        });
        if (started) {
          isPlay = true;
4708
          console.info(`AudioInterruptMusic Renderer started : isPlay : ${isPlay}`);
J
jiao_yanlin 已提交
4709
        } else {
4710
          console.error('AudioInterruptMusic Renderer start failed');
Z
zengyawen 已提交
4711
        }
J
jiao_yanlin 已提交
4712 4713
        break;
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4714
        console.info('Choose to pause or ignore');
J
jiao_yanlin 已提交
4715 4716
        if (isPlay == true) {
          isPlay == false;
4717
          console.info('AudioInterruptMusic: Media PAUSE : TRUE');
J
jiao_yanlin 已提交
4718
        } else {
J
jiao_yanlin 已提交
4719
          isPlay = true;
4720
          console.info('AudioInterruptMusic: Media PLAY : TRUE');
Z
zengyawen 已提交
4721
        }
J
jiao_yanlin 已提交
4722
        break;
Z
zengyawen 已提交
4723
    }
J
jiao_yanlin 已提交
4724
  }
L
lwx1059628 已提交
4725
});
Z
zengyawen 已提交
4726 4727
```

L
lwx1059628 已提交
4728 4729
### on('markReach')<sup>8+</sup>

J
jiao_yanlin 已提交
4730
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741

订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被调用。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
4742
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                    |
L
lwx1059628 已提交
4743 4744 4745

**示例:**

J
jiao_yanlin 已提交
4746
```js
L
lwx1059628 已提交
4747
audioRenderer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4748
  if (position == 1000) {
4749
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4750
  }
L
lwx1059628 已提交
4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770
});
```


### off('markReach') <sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记事件。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |

**示例:**

J
jiao_yanlin 已提交
4771
```js
L
lwx1059628 已提交
4772 4773 4774 4775
audioRenderer.off('markReach');
```

### on('periodReach') <sup>8+</sup>
Z
zengyawen 已提交
4776

J
jiao_yanlin 已提交
4777
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4778

L
lwx1059628 已提交
4779 4780 4781 4782 4783 4784 4785 4786 4787 4788
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被循环调用。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
4789
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                      |
L
lwx1059628 已提交
4790 4791 4792

**示例:**

J
jiao_yanlin 已提交
4793
```js
L
lwx1059628 已提交
4794
audioRenderer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
4795
  if (position == 1000) {
4796
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4797
  }
L
lwx1059628 已提交
4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816
});
```

### off('periodReach') <sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记事件。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |

**示例:**

J
jiao_yanlin 已提交
4817
```js
L
lwx1059628 已提交
4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833
audioRenderer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
4834
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
4835 4836 4837

**示例:**

J
jiao_yanlin 已提交
4838
```js
L
lwx1059628 已提交
4839
audioRenderer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
4840
  if (state == 1) {
4841
    console.info('audio renderer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
4842 4843
  }
  if (state == 2) {
4844
    console.info('audio renderer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
4845
  }
L
lwx1059628 已提交
4846 4847 4848 4849 4850 4851 4852
});
```

## AudioCapturer<sup>8+</sup>

提供音频采集的相关接口。在调用AudioCapturer的接口前,需要先通过[createAudioCapturer](#audiocreateaudiocapturer8)创建实例。

4853
### 属性
L
lwx1059628 已提交
4854 4855 4856

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

4857
| 名称  | 类型                     | 可读 | 可写 | 说明             |
L
lwx1059628 已提交
4858
| :---- | :------------------------- | :--- | :--- | :--------------- |
4859
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
L
lwx1059628 已提交
4860 4861 4862

**示例:**

J
jiao_yanlin 已提交
4863
```js
L
lwx1059628 已提交
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882
var state = audioCapturer.state;
```

### getCapturerInfo<sup>8+</sup>

getCapturerInfo(callback: AsyncCallback<AudioCapturerInfo\>): void

获取采集器信息。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                              | 必填 | 说明                                 |
| :------- | :-------------------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<AudioCapturerInfo\> | 是   | 使用callback方式异步返回采集器信息。 |

**示例:**

J
jiao_yanlin 已提交
4883
```js
L
lwx1059628 已提交
4884
audioCapturer.getCapturerInfo((err, capturerInfo) => {
J
jiao_yanlin 已提交
4885
  if (err) {
4886
    console.error('Failed to get capture info');
J
jiao_yanlin 已提交
4887
  } else {
4888 4889 4890
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
J
jiao_yanlin 已提交
4891
  }
L
lwx1059628 已提交
4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911
});
```


### getCapturerInfo<sup>8+</sup>

getCapturerInfo(): Promise<AudioCapturerInfo\>

获取采集器信息。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型                                              | 说明                                |
| :------------------------------------------------ | :---------------------------------- |
| Promise<[AudioCapturerInfo](#audiocapturerinfo)\> | 使用Promise方式异步返回采集器信息。 |

**示例:**

J
jiao_yanlin 已提交
4912
```js
L
lwx1059628 已提交
4913
audioCapturer.getCapturerInfo().then((audioParamsGet) => {
J
jiao_yanlin 已提交
4914
  if (audioParamsGet != undefined) {
4915 4916 4917
    console.info('AudioFrameworkRecLog: Capturer CapturerInfo:');
    console.info(`AudioFrameworkRecLog: Capturer SourceType: ${audioParamsGet.source}`);
    console.info(`AudioFrameworkRecLog: Capturer capturerFlags: ${audioParamsGet.capturerFlags}`);
J
jiao_yanlin 已提交
4918
  } else {
4919 4920
    console.info(`AudioFrameworkRecLog: audioParamsGet is : ${audioParamsGet}`);
    console.info('AudioFrameworkRecLog: audioParams getCapturerInfo are incorrect');
J
jiao_yanlin 已提交
4921
  }
L
lwx1059628 已提交
4922
}).catch((err) => {
4923
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936
});
```

### getStreamInfo<sup>8+</sup>

getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void

获取采集器流信息。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

Z
zengyawen 已提交
4937 4938 4939
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
L
lwx1059628 已提交
4940 4941 4942

**示例:**

J
jiao_yanlin 已提交
4943
```js
L
lwx1059628 已提交
4944
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4945
  if (err) {
4946
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4947
  } else {
4948 4949 4950 4951 4952
    console.info('Capturer GetStreamInfo:');
    console.info(`Capturer sampling rate: ${streamInfo.samplingRate}`);
    console.info(`Capturer channel: ${streamInfo.channels}`);
    console.info(`Capturer format: ${streamInfo.sampleFormat}`);
    console.info(`Capturer encoding type: ${streamInfo.encodingType}`);
J
jiao_yanlin 已提交
4953
  }
L
lwx1059628 已提交
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966
});
```

### getStreamInfo<sup>8+</sup>

getStreamInfo(): Promise<AudioStreamInfo\>

获取采集器流信息。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

Z
zengyawen 已提交
4967 4968 4969
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
L
lwx1059628 已提交
4970 4971 4972

**示例:**

J
jiao_yanlin 已提交
4973
```js
L
lwx1059628 已提交
4974
audioCapturer.getStreamInfo().then((audioParamsGet) => {
4975 4976 4977 4978 4979
  console.info('getStreamInfo:');
  console.info(`sampleFormat: ${audioParamsGet.sampleFormat}`);
  console.info(`samplingRate: ${audioParamsGet.samplingRate}`);
  console.info(`channels: ${audioParamsGet.channels}`);
  console.info(`encodingType: ${audioParamsGet.encodingType}`);
L
lwx1059628 已提交
4980
}).catch((err) => {
4981
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992
});
```

### start<sup>8+</sup>

start(callback: AsyncCallback<void\>): void

启动音频采集器。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

4993
**参数:**
L
lwx1059628 已提交
4994 4995 4996 4997 4998 4999 5000

| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5001
```js
L
lwx1059628 已提交
5002
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
5003
  if (err) {
5004
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
5005
  } else {
5006
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
5007
  }
L
lwx1059628 已提交
5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027
});
```


### start<sup>8+</sup>

start(): Promise<void\>

启动音频采集器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5028
```js
R
rahul 已提交
5029 5030 5031 5032
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
5033 5034 5035 5036
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
5037 5038 5039
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
5040
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
5041
  capturerFlags: 0
R
rahul 已提交
5042 5043 5044 5045
}

var audioCapturer;
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
5046
  audioCapturer = data;
5047
  console.info('AudioFrameworkRecLog: AudioCapturer Created: SUCCESS');
J
jiao_yanlin 已提交
5048
  }).catch((err) => {
5049
  console.info(`AudioFrameworkRecLog: AudioCapturer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
5050
  });
L
lwx1059628 已提交
5051
audioCapturer.start().then(() => {
5052 5053 5054 5055
  console.info('AudioFrameworkRecLog: ---------START---------');
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer: STATE: ${audioCapturer.state}`);
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
J
jiao_yanlin 已提交
5056
  if ((audioCapturer.state == audio.AudioState.STATE_RUNNING)) {
5057
    console.info('AudioFrameworkRecLog: AudioCapturer is in Running State');
J
jiao_yanlin 已提交
5058
  }
L
lwx1059628 已提交
5059
}).catch((err) => {
5060
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
L
lwx1059628 已提交
5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079
});
```

### stop<sup>8+</sup>

stop(callback: AsyncCallback<void\>): void

停止采集。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5080
```js
L
lwx1059628 已提交
5081
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
5082
  if (err) {
5083
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
5084
  } else {
5085
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
5086
  }
L
lwx1059628 已提交
5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106
});
```


### stop<sup>8+</sup>

stop(): Promise<void\>

停止采集。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5107
```js
L
lwx1059628 已提交
5108
audioCapturer.stop().then(() => {
5109 5110
  console.info('AudioFrameworkRecLog: ---------STOP RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer stopped: SUCCESS');
J
jiao_yanlin 已提交
5111
  if ((audioCapturer.state == audio.AudioState.STATE_STOPPED)){
5112
    console.info('AudioFrameworkRecLog: State is Stopped:');
J
jiao_yanlin 已提交
5113
  }
L
lwx1059628 已提交
5114
}).catch((err) => {
5115
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134
});
```

### release<sup>8+</sup>

release(callback: AsyncCallback<void\>): void

释放采集器。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
| callback | AsyncCallback<void\> | 是   | Callback used to return the result. |

**示例:**

J
jiao_yanlin 已提交
5135
```js
L
lwx1059628 已提交
5136
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
5137
  if (err) {
5138
    console.error('capturer release failed');
J
jiao_yanlin 已提交
5139
  } else {
5140
    console.info('capturer released.');
J
jiao_yanlin 已提交
5141
  }
L
lwx1059628 已提交
5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161
});
```


### release<sup>8+</sup>

release(): Promise<void\>

释放采集器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5162
```js
J
jiao_yanlin 已提交
5163
var stateFlag;
L
lwx1059628 已提交
5164
audioCapturer.release().then(() => {
5165 5166 5167 5168
  console.info('AudioFrameworkRecLog: ---------RELEASE RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer release : SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer : STATE : ${audioCapturer.state}`);
  console.info(`AudioFrameworkRecLog: stateFlag : ${stateFlag}`);
L
lwx1059628 已提交
5169
}).catch((err) => {
5170
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182
});
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void

读入缓冲区。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

5183
**参数:**
L
lwx1059628 已提交
5184 5185 5186 5187 5188 5189 5190 5191 5192

| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |

**示例:**

J
jiao_yanlin 已提交
5193
```js
R
rahul 已提交
5194 5195
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
5196
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
5197 5198
  bufferSize = data;
  }).catch((err) => {
叫我胖子 已提交
5199
    console.error(`AudioFrameworkRecLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
5200
  });
L
lwx1059628 已提交
5201
audioCapturer.read(bufferSize, true, async(err, buffer) => {
J
jiao_yanlin 已提交
5202
  if (!err) {
5203
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
5204
  }
J
jiao_yanlin 已提交
5205
});
L
lwx1059628 已提交
5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>

读入缓冲区。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |

**返回值:**

| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |

**示例:**

J
jiao_yanlin 已提交
5232
```js
R
rahul 已提交
5233 5234
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
5235
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
5236 5237
  bufferSize = data;
  }).catch((err) => {
5238
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
J
jiao_yanlin 已提交
5239
  });
5240
console.info(`Buffer size: ${bufferSize}`);
L
lwx1059628 已提交
5241
audioCapturer.read(bufferSize, true).then((buffer) => {
5242
  console.info('buffer read successfully');
L
lwx1059628 已提交
5243
}).catch((err) => {
5244
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264
});
```


### getAudioTime<sup>8+</sup>

getAudioTime(callback: AsyncCallback<number\>): void

获取时间戳(从1970年1月1日开始),单位为纳秒。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5265
```js
L
lwx1059628 已提交
5266
audioCapturer.getAudioTime((err, timestamp) => {
5267
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287
});
```


### getAudioTime<sup>8+</sup>

getAudioTime(): Promise<number\>

获取时间戳(从1970年1月1日开始),单位为纳秒。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
5288
```js
L
lwx1059628 已提交
5289
audioCapturer.getAudioTime().then((audioTime) => {
5290
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
5291
}).catch((err) => {
5292
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312
});
```


### getBufferSize<sup>8+</sup>

getBufferSize(callback: AsyncCallback<number\>): void

获取采集器合理的最小缓冲区大小。使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                 |
| :------- | :--------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
5313
```js
L
lwx1059628 已提交
5314
audioCapturer.getBufferSize((err, bufferSize) => {
J
jiao_yanlin 已提交
5315
  if (!err) {
5316
    console.info(`BufferSize : ${bufferSize}`);
J
jiao_yanlin 已提交
5317
    audioCapturer.read(bufferSize, true).then((buffer) => {
5318
      console.info(`Buffer read is ${buffer}`);
J
jiao_yanlin 已提交
5319
    }).catch((err) => {
5320
      console.error(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
J
jiao_yanlin 已提交
5321 5322
    });
  }
L
lwx1059628 已提交
5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342
});
```


### getBufferSize<sup>8+</sup>

getBufferSize(): Promise<number\>

获取采集器合理的最小缓冲区大小。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**返回值:**

| 类型             | 说明                                |
| :--------------- | :---------------------------------- |
| Promise<number\> | 使用Promise方式异步返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
5343
```js
R
rahul 已提交
5344 5345
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
5346
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
J
jiao_yanlin 已提交
5347
  bufferSize = data;
R
rahul 已提交
5348
}).catch((err) => {
5349
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err}`);
L
lwx1059628 已提交
5350 5351 5352 5353 5354 5355
});
```


### on('markReach')<sup>8+</sup>

J
jiao_yanlin 已提交
5356
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
5357 5358 5359 5360 5361 5362 5363

订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

5364 5365 5366 5367
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
5368
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
L
lwx1059628 已提交
5369 5370 5371

**示例:**

J
jiao_yanlin 已提交
5372
```js
L
lwx1059628 已提交
5373
audioCapturer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
5374
  if (position == 1000) {
5375
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5376
  }
L
lwx1059628 已提交
5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395
});
```

### off('markReach')<sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记到达的事件。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |

**示例:**

J
jiao_yanlin 已提交
5396
```js
L
lwx1059628 已提交
5397 5398 5399 5400 5401
audioCapturer.off('markReach');
```

### on('periodReach')<sup>8+</sup>

J
jiao_yanlin 已提交
5402
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413

订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,回调被循环调用。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
5414
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
L
lwx1059628 已提交
5415 5416 5417

**示例:**

J
jiao_yanlin 已提交
5418
```js
L
lwx1059628 已提交
5419
audioCapturer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
5420
  if (position == 1000) {
5421
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5422
  }
L
lwx1059628 已提交
5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437
});
```

### off('periodReach')<sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记到达的事件。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
5438
| type   | string | 是  | 取消事件回调类型,支持的事件为:'periodReach'。 |
L
lwx1059628 已提交
5439 5440 5441

**示例:**

J
jiao_yanlin 已提交
5442
```js
L
lwx1059628 已提交
5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458
audioCapturer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
5459
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
5460 5461 5462

**示例:**

J
jiao_yanlin 已提交
5463
```js
L
lwx1059628 已提交
5464
audioCapturer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
5465
  if (state == 1) {
5466
    console.info('audio capturer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
5467 5468
  }
  if (state == 2) {
5469
    console.info('audio capturer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
5470
  }
L
lwx1059628 已提交
5471
});
5472
```