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

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

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

- [AudioManager](#audiomanager):音频管理。
L
lwx1059628 已提交
8
- [AudioRenderer](#audiorenderer8):音频渲染,用于播放PCM(Pulse Code Modulation)音频数据。
9
- [AudioCapturer](#audiocapturer8):音频采集,用于录制PCM音频数据。
10
- [TonePlayer](#toneplayer9):用于管理和播放DTMF(Dual Tone Multi Frequency,双音多频)音调,如拨号音、通话回铃音等。
Z
zengyawen 已提交
11

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

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

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

21 22
## 常量

23 24
| 名称                                    | 类型      | 可读  | 可写 | 说明               |
| --------------------------------------- | ----------| ---- | ---- | ------------------ |
25
| LOCAL_NETWORK_ID<sup>9+</sup>           | string    | 是   | 否   | 本地设备网络id。<br/>此接口为系统接口。<br> **系统能力:** SystemCapability.Multimedia.Audio.Device  |
26
| DEFAULT_VOLUME_GROUP_ID<sup>9+</sup>    | number    | 是   | 否   | 默认音量组id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Volume       |
27
| DEFAULT_INTERRUPT_GROUP_ID<sup>9+</sup> | number    | 是   | 否   | 默认音频中断组id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Interrupt       |
28 29 30 31 32 33 34

**示例:**

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

const localNetworkId = audio.LOCAL_NETWORK_ID;
35 36 37 38
const defaultVolumeGroupId = audio.DEFAULT_VOLUME_GROUP_ID;
const defaultInterruptGroupId = audio.DEFAULT_INTERRUPT_GROUP_ID;
```

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

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

获取音频管理器。

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

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

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

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

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

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

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

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

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

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

**示例:**

J
jiao_yanlin 已提交
75
```js
76 77
import featureAbility from '@ohos.ability.featureAbility';
import fileio from '@ohos.fileio';
L
lwx1059628 已提交
78
import audio from '@ohos.multimedia.audio';
79

J
jiao_yanlin 已提交
80
let audioStreamInfo = {
J
jiao_yanlin 已提交
81 82 83 84
  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 已提交
85 86
}

J
jiao_yanlin 已提交
87
let audioRendererInfo = {
J
jiao_yanlin 已提交
88 89
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
90
  rendererFlags: 0
L
lwx1059628 已提交
91 92
}

J
jiao_yanlin 已提交
93
let audioRendererOptions = {
J
jiao_yanlin 已提交
94 95
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
L
lwx1059628 已提交
96 97 98
}

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

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

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

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

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

**参数:**

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

**返回值:**

| 类型                                      | 说明             |
| ----------------------------------------- | ---------------- |
126
| Promise<[AudioRenderer](#audiorenderer8)> | 音频渲染器对象。 |
Z
zengyawen 已提交
127 128 129

**示例:**

J
jiao_yanlin 已提交
130
```js
131 132
import featureAbility from '@ohos.ability.featureAbility';
import fileio from '@ohos.fileio';
L
lwx1059628 已提交
133 134
import audio from '@ohos.multimedia.audio';

J
jiao_yanlin 已提交
135
let audioStreamInfo = {
J
jiao_yanlin 已提交
136 137 138 139
  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 已提交
140 141
}

J
jiao_yanlin 已提交
142
let audioRendererInfo = {
J
jiao_yanlin 已提交
143 144
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
145
  rendererFlags: 0
Z
zengyawen 已提交
146 147
}

J
jiao_yanlin 已提交
148
let audioRendererOptions = {
J
jiao_yanlin 已提交
149 150
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
Z
zengyawen 已提交
151 152
}

J
jiao_yanlin 已提交
153
let audioRenderer;
L
lwx1059628 已提交
154
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
155
  audioRenderer = data;
156
  console.info('AudioFrameworkRenderLog: AudioRenderer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
157
}).catch((err) => {
158
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created : ERROR : ${err}`);
L
lwx1059628 已提交
159
});
Z
zengyawen 已提交
160
```
Z
zengyawen 已提交
161

L
lwx1059628 已提交
162 163 164 165 166 167 168 169
## audio.createAudioCapturer<sup>8+</sup>

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

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

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

J
jiao_yanlin 已提交
170 171
**需要权限:** ohos.permission.MICROPHONE

L
lwx1059628 已提交
172 173
**参数:**

H
update  
HelloCrease 已提交
174 175
| 参数名   | 类型                                            | 必填 | 说明             |
| :------- | :---------------------------------------------- | :--- | :--------------- |
Z
zengyawen 已提交
176
| options  | [AudioCapturerOptions](#audiocaptureroptions8)  | 是   | 配置音频采集器。 |
M
magekkkk 已提交
177
| callback | AsyncCallback<[AudioCapturer](#audiocapturer8)> | 是   | 音频采集器对象。 |
L
lwx1059628 已提交
178 179 180

**示例:**

J
jiao_yanlin 已提交
181
```js
L
lwx1059628 已提交
182
import audio from '@ohos.multimedia.audio';
J
jiao_yanlin 已提交
183
let audioStreamInfo = {
J
jiao_yanlin 已提交
184 185 186 187
  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 已提交
188 189
}

J
jiao_yanlin 已提交
190
let audioCapturerInfo = {
J
jiao_yanlin 已提交
191
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
192
  capturerFlags: 0
L
lwx1059628 已提交
193 194
}

J
jiao_yanlin 已提交
195
let audioCapturerOptions = {
J
jiao_yanlin 已提交
196 197
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
198 199
}

J
jiao_yanlin 已提交
200
audio.createAudioCapturer(audioCapturerOptions, (err, data) => {
J
jiao_yanlin 已提交
201
  if (err) {
202
    console.error(`AudioCapturer Created : Error: ${err}`);
J
jiao_yanlin 已提交
203
  } else {
204
    console.info('AudioCapturer Created : Success : SUCCESS');
J
jiao_yanlin 已提交
205 206
    let audioCapturer = data;
  }
L
lwx1059628 已提交
207 208 209 210 211 212 213 214 215 216 217
});
```

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

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

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

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

J
jiao_yanlin 已提交
218 219
**需要权限:** ohos.permission.MICROPHONE

L
lwx1059628 已提交
220 221
**参数:**

Z
zengyawen 已提交
222 223 224
| 参数名  | 类型                                           | 必填 | 说明             |
| :------ | :--------------------------------------------- | :--- | :--------------- |
| options | [AudioCapturerOptions](#audiocaptureroptions8) | 是   | 配置音频采集器。 |
L
lwx1059628 已提交
225 226 227 228 229

**返回值:**

| 类型                                      | 说明           |
| ----------------------------------------- | -------------- |
M
magekkkk 已提交
230
| Promise<[AudioCapturer](#audiocapturer8)> | 音频采集器对象 |
L
lwx1059628 已提交
231 232 233

**示例:**

J
jiao_yanlin 已提交
234
```js
L
lwx1059628 已提交
235 236
import audio from '@ohos.multimedia.audio';

J
jiao_yanlin 已提交
237
let audioStreamInfo = {
J
jiao_yanlin 已提交
238 239 240 241
  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 已提交
242 243
}

J
jiao_yanlin 已提交
244
let audioCapturerInfo = {
J
jiao_yanlin 已提交
245
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
246
  capturerFlags: 0
L
lwx1059628 已提交
247 248
}

J
jiao_yanlin 已提交
249
let audioCapturerOptions = {
J
jiao_yanlin 已提交
250 251
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
252 253
}

J
jiao_yanlin 已提交
254
let audioCapturer;
R
rahul 已提交
255
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
256
  audioCapturer = data;
257
  console.info('AudioCapturer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
258
}).catch((err) => {
259
  console.error(`AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
260
});
L
lwx1059628 已提交
261 262
```

263 264 265 266
## audio.createTonePlayer<sup>9+</sup>

createTonePlayer(options: AudioRendererInfo, callback: AsyncCallback&lt;TonePlayer&gt;): void

267
创建DTMF播放器。使用callback方式异步返回结果。
268 269 270

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

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

273
**参数:**
274 275 276

| 参数名   | 类型                                             | 必填 | 说明            |
| -------- | ----------------------------------------------- | ---- | -------------- |
277 278
| options  | [AudioRendererInfo](#audiorendererinfo8)        | 是   | 配置音频渲染器信息。|
| callback | AsyncCallback<[TonePlayer](#toneplayer9)>       | 是   | 回调函数,回调返回音频渲染器对象。|
279 280 281 282 283 284

**示例:**

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

J
jiao_yanlin 已提交
285
let audioRendererInfo = {
J
jiao_yanlin 已提交
286
  content : audio.ContentType.CONTENT_TYPE_SONIFICATION,
J
jiao_yanlin 已提交
287 288
  usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags : 0
289
}
J
jiao_yanlin 已提交
290
let tonePlayer;
291

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
audio.createTonePlayer(audioRendererInfo, (err, data) => {
  console.info(`callback call createTonePlayer: audioRendererInfo: ${audioRendererInfo}`);
  if (err) {
    console.error(`callback call createTonePlayer return error: ${err.message}`);
  } else {
    console.info(`callback call createTonePlayer return data: ${data}`);
    tonePlayer = data;
  }
});
```

## audio.createTonePlayer<sup>9+</sup>

createTonePlayer(options: AudioRendererInfo): Promise&lt;TonePlayer&gt;

307
创建DTMF播放器。使用Promise方式异步返回结果。
308 309 310

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

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

313 314 315 316 317 318 319 320
**参数:**

| 参数名  | 类型                                           | 必填 | 说明         |
| :------ | :---------------------------------------------| :--- | :----------- |
| options | [AudioRendererInfo](#audiorendererinfo8)      | 是   | 配置音频渲染器信息。 |

**返回值:**

321 322 323
| 类型                                      | 说明                             |
| ----------------------------------------- | -------------------------------- |
| Promise<[TonePlayer](#toneplayer9)>       | Promise对象,返回音频渲染器对象。   |
324 325 326 327 328

**示例:**

```js
import audio from '@ohos.multimedia.audio';
329
let tonePlayer;
330
async function createTonePlayerBefore(){
J
jiao_yanlin 已提交
331
  let audioRendererInfo = {
J
jiao_yanlin 已提交
332 333
    content : audio.ContentType.CONTENT_TYPE_SONIFICATION,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
334
    rendererFlags : 0
335
  }
J
jiao_yanlin 已提交
336
  tonePlayer = await audio.createTonePlayer(audioRendererInfo);
337
}
338 339
```

Z
zengyawen 已提交
340
## AudioVolumeType
M
mamingshuai 已提交
341

342
枚举,音频流类型。
M
mamingshuai 已提交
343

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

346
| 名称                         | 值      | 说明       |
Z
zengyawen 已提交
347 348 349 350 351
| ---------------------------- | ------ | ---------- |
| VOICE_CALL<sup>8+</sup>      | 0      | 语音电话。 |
| RINGTONE                     | 2      | 铃声。     |
| MEDIA                        | 3      | 媒体。     |
| VOICE_ASSISTANT<sup>8+</sup> | 9      | 语音助手。 |
352
| ALL<sup>9+</sup>             | 100    | 所有公共音频流。<br/>此接口为系统接口。|
Z
zengyawen 已提交
353

354 355 356 357 358 359 360 361
## InterruptRequestResultType<sup>9+</sup>

枚举,音频中断请求结果类型。

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

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

362
| 名称                         | 值      | 说明       |
363 364 365 366
| ---------------------------- | ------ | ---------- |
| INTERRUPT_REQUEST_GRANT      | 0      | 请求音频中断成功。 |
| INTERRUPT_REQUEST_REJECT     | 1      | 请求音频中断失败,可能具有较高优先级类型。 |

367
## InterruptMode<sup>9+</sup>
368

369
枚举,焦点模型。
370

371
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
372

373
| 名称                         | 值      | 说明       |
374
| ---------------------------- | ------ | ---------- |
375 376
| SHARE_MODE                   | 0      | 共享焦点模式。 |
| INDEPENDENT_MODE             | 1      | 独立焦点模式。 |
377

Z
zengyawen 已提交
378
## DeviceFlag
M
mamingshuai 已提交
379

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

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

384
| 名称                            |  值     | 说明                                              |
385
| ------------------------------- | ------ | ------------------------------------------------- |
386
| NONE_DEVICES_FLAG<sup>9+</sup>  | 0      | 无 <br/>此接口为系统接口。        |
387 388 389
| OUTPUT_DEVICES_FLAG             | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG              | 2      | 输入设备。 |
| ALL_DEVICES_FLAG                | 3      | 所有设备。 |
390 391 392
| 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 已提交
393 394

## DeviceRole
M
mamingshuai 已提交
395

396
枚举,设备角色。
M
mamingshuai 已提交
397

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

400
| 名称          |  值    | 说明           |
Z
zengyawen 已提交
401 402 403
| ------------- | ------ | -------------- |
| INPUT_DEVICE  | 1      | 输入设备角色。 |
| OUTPUT_DEVICE | 2      | 输出设备角色。 |
M
mamingshuai 已提交
404

Z
zengyawen 已提交
405 406 407
## DeviceType

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

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

411
| 名称                 | 值     | 说明                                                      |
412 413 414 415 416 417 418 419 420 421 422
| ---------------------| ------ | --------------------------------------------------------- |
| 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 已提交
423

424
## CommunicationDeviceType<sup>9+</sup>
425 426 427 428 429

枚举,用于通信的可用设备类型。

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

430
| 名称          | 值     | 说明          |
431 432 433
| ------------- | ------ | -------------|
| SPEAKER       | 2      | 扬声器。      |

Z
zengyawen 已提交
434
## AudioRingMode
435 436 437

枚举,铃声模式。

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

440
| 名称                |  值    | 说明       |
Z
zengyawen 已提交
441 442 443 444 445 446 447 448 449 450 451
| ------------------- | ------ | ---------- |
| RINGER_MODE_SILENT  | 0      | 静音模式。 |
| RINGER_MODE_VIBRATE | 1      | 震动模式。 |
| RINGER_MODE_NORMAL  | 2      | 响铃模式。 |

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

枚举,音频采样格式。

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

452
| 名称                                |  值    | 说明                       |
453 454 455 456 457 458 459
| ---------------------------------- | ------ | -------------------------- |
| 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 已提交
460

461 462 463 464 465 466
## AudioErrors<sup>9+</sup>

枚举,音频错误码。

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

467 468 469 470 471 472 473
| 错误信息              | 错误码   | 错误描述          |
| ---------------------| --------| ----------------- |
| ERROR_INVALID_PARAM  | 6800101 | 无效入参。         |
| ERROR_NO_MEMORY      | 6800102 | 分配内存失败。     |
| ERROR_ILLEGAL_STATE  | 6800103 | 状态不支持。       |
| ERROR_UNSUPPORTED    | 6800104 | 参数选项不支持。    |
| ERROR_TIMEOUT        | 6800105 | 处理超时。         |
474
| ERROR_STREAM_LIMIT   | 6800201 | 音频流数量达到限制。|
475
| ERROR_SYSTEM         | 6800301 | 系统处理异常。     |
476

Z
zengyawen 已提交
477 478 479 480 481 482
## AudioChannel<sup>8+</sup>

枚举, 音频声道。

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

483
| 名称      |  值       | 说明     |
Z
zengyawen 已提交
484 485 486 487 488 489
| --------- | -------- | -------- |
| CHANNEL_1 | 0x1 << 0 | 单声道。 |
| CHANNEL_2 | 0x1 << 1 | 双声道。 |

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

490
枚举,音频采样率,具体设备支持的采样率规格可能不同。
Z
zengyawen 已提交
491 492 493

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

494
| 名称              |  值    | 说明            |
Z
zengyawen 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
| ----------------- | ------ | --------------- |
| 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

514
| 名称                  |  值    | 说明      |
Z
zengyawen 已提交
515 516 517 518
| --------------------- | ------ | --------- |
| ENCODING_TYPE_INVALID | -1     | 无效。    |
| ENCODING_TYPE_RAW     | 0      | PCM编码。 |

L
lwx1059628 已提交
519
## ContentType
Z
zengyawen 已提交
520 521 522 523 524

枚举,音频内容类型。

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

525
| 名称                               |  值    | 说明       |
L
lwx1059628 已提交
526 527 528 529 530 531 532
| ---------------------------------- | ------ | ---------- |
| 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 已提交
533

L
lwx1059628 已提交
534
## StreamUsage
Z
zengyawen 已提交
535 536 537 538 539

枚举,音频流使用类型。

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

540
| 名称                                      |  值    | 说明       |
541 542 543 544 545 546
| ------------------------------------------| ------ | ---------- |
| STREAM_USAGE_UNKNOWN                      | 0      | 未知类型。 |
| STREAM_USAGE_MEDIA                        | 1      | 音频。     |
| STREAM_USAGE_VOICE_COMMUNICATION          | 2      | 语音通信。 |
| STREAM_USAGE_VOICE_ASSISTANT<sup>9+</sup> | 3      | 语音播报。 |
| STREAM_USAGE_NOTIFICATION_RINGTONE        | 6      | 通知铃声。 |
Z
zengyawen 已提交
547

548
## InterruptRequestType<sup>9+</sup>
549

550
枚举,音频中断请求类型。
551

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

554
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
555

556
| 名称                               |  值     | 说明                       |
557 558
| ---------------------------------- | ------ | ------------------------- |
| INTERRUPT_REQUEST_TYPE_DEFAULT     | 0      |  默认类型,可中断音频请求。  |
559

Z
zengyawen 已提交
560 561 562 563 564 565
## AudioState<sup>8+</sup>

枚举,音频状态。

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

566
| 名称           | 值     | 说明             |
Z
zengyawen 已提交
567 568 569 570 571 572 573 574 575 576 577
| -------------- | ------ | ---------------- |
| 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 已提交
578
枚举,音频渲染速度。
Z
zengyawen 已提交
579 580 581

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

582
| 名称               | 值     | 说明       |
Z
zengyawen 已提交
583 584 585 586 587
| ------------------ | ------ | ---------- |
| RENDER_RATE_NORMAL | 0      | 正常速度。 |
| RENDER_RATE_DOUBLE | 1      | 2倍速。    |
| RENDER_RATE_HALF   | 2      | 0.5倍数。  |

L
lwx1059628 已提交
588
## InterruptType
Z
zengyawen 已提交
589 590 591 592

枚举,中断类型。

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

594
| 名称                 |  值     | 说明                   |
Z
zengyawen 已提交
595 596 597 598
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
599
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
600 601 602 603 604

枚举,强制打断类型。

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

605
| 名称            |  值    | 说明                                 |
Z
zengyawen 已提交
606 607 608 609
| --------------- | ------ | ------------------------------------ |
| INTERRUPT_FORCE | 0      | 由系统进行操作,强制打断音频播放。   |
| INTERRUPT_SHARE | 1      | 由应用进行操作,可以选择打断或忽略。 |

L
lwx1059628 已提交
610
## InterruptHint
Z
zengyawen 已提交
611 612 613 614 615

枚举,中断提示。

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

616
| 名称                               |  值     | 说明                                         |
L
lwx1059628 已提交
617 618 619 620 621 622 623
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
624 625 626 627 628 629 630

## AudioStreamInfo<sup>8+</sup>

音频流信息。

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

631 632 633 634 635 636
| 名称         | 类型                                               | 必填 | 说明               |
| ------------ | ------------------------------------------------- | ---- | ------------------ |
| samplingRate | [AudioSamplingRate](#audiosamplingrate8)          | 是   | 音频文件的采样率。 |
| channels     | [AudioChannel](#audiochannel8)                    | 是   | 音频文件的通道数。 |
| sampleFormat | [AudioSampleFormat](#audiosampleformat8)          | 是   | 音频采样格式。     |
| encodingType | [AudioEncodingType](#audioencodingtype8)          | 是   | 音频编码格式。     |
Z
zengyawen 已提交
637 638 639

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

L
lwx1059628 已提交
640
音频渲染器信息。
Z
zengyawen 已提交
641 642 643

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

644
| 名称          | 类型                        | 必填  | 说明             |
L
lwx1059628 已提交
645
| ------------- | --------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
646
| content       | [ContentType](#contenttype) | 是   | 媒体类型。       |
L
lwx1059628 已提交
647 648
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
649

650 651 652 653 654 655 656 657 658 659 660 661 662
## InterruptResult<sup>9+</sup>

音频中断结果。

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

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

| 名称          | 类型                                                            | 必填 | 说明             |
| --------------| -------------------------------------------------------------- | ---- | ---------------- |
| requestResult | [InterruptRequestResultType](#interruptrequestresulttype9)     | 是   | 表示音频请求中断类型。 |
| interruptNode | number                                                         | 是   | 音频请求中断的节点。 |

Z
zengyawen 已提交
663 664
## AudioRendererOptions<sup>8+</sup>

L
lwx1059628 已提交
665
音频渲染器选项信息。
Z
zengyawen 已提交
666 667 668

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

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

L
lwx1059628 已提交
674
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
675 676 677 678 679

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

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

680
| 名称      | 类型                                       |必填   | 说明                                 |
Z
zengyawen 已提交
681
| --------- | ------------------------------------------ | ---- | ------------------------------------ |
L
lwx1059628 已提交
682 683 684
| eventType | [InterruptType](#interrupttype)            | 是   | 中断事件类型,开始或是结束。         |
| forceType | [InterruptForceType](#interruptforcetype9) | 是   | 操作是由系统执行或是由应用程序执行。 |
| hintType  | [InterruptHint](#interrupthint)            | 是   | 中断提示。                           |
Z
zengyawen 已提交
685 686 687 688 689

## VolumeEvent<sup>8+</sup>

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

690
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
691

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

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

Z
zengyawen 已提交
702 703 704 705 706 707 708
## MicStateChangeEvent<sup>9+</sup>

麦克风状态变化时,应用接收的事件。

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

| 名称       | 类型                                | 必填 | 说明                                                     |
Z
zengyawen 已提交
709
| ---------- | ----------------------------------- | ---- |-------------------------------------------------------- |
Z
zengyawen 已提交
710 711
| mute | boolean | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。          |

W
wangtao 已提交
712 713 714 715
## ConnectType<sup>9+</sup>

枚举,设备连接类型。

J
jiao_yanlin 已提交
716 717
**系统接口:** 该接口为系统接口

718
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
719

720
| 名称                            |  值     | 说明                   |
W
wangtao 已提交
721 722 723 724
| :------------------------------ | :----- | :--------------------- |
| CONNECT_TYPE_LOCAL              | 1      | 本地设备。         |
| CONNECT_TYPE_DISTRIBUTED        | 2      | 分布式设备。            |

725 726 727 728 729 730 731 732
## VolumeGroupInfos<sup>9+</sup>

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

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

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

W
wangtao 已提交
733 734 735 736
## VolumeGroupInfo<sup>9+</sup>

音量组信息。

737
**系统接口:** 该接口为系统接口
W
wangtao 已提交
738 739 740 741 742 743 744 745

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

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

L
lwx1059628 已提交
749 750 751 752
## DeviceChangeAction

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

753
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
754 755 756

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
757 758
| type              | [DeviceChangeType](#devicechangetype)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#audiodevicedescriptors) | 是   | 设备信息。         |
L
lwx1059628 已提交
759 760 761 762 763 764 765

## DeviceChangeType

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

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

766
| 名称       |  值     | 说明           |
L
lwx1059628 已提交
767 768 769 770
| :--------- | :----- | :------------- |
| CONNECT    | 0      | 设备连接。     |
| DISCONNECT | 1      | 断开设备连接。 |

Z
zengyawen 已提交
771 772 773 774 775 776 777 778 779
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

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

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

L
lwx1059628 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
## 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

799
| 名称                                         |  值     | 说明                   |
800 801 802 803 804
| :------------------------------------------- | :----- | :--------------------- |
| SOURCE_TYPE_INVALID                          | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                              | 0      | Mic音频源。            |
| SOURCE_TYPE_VOICE_RECOGNITION<sup>9+</sup>   | 1      | 语音识别源。        |
| SOURCE_TYPE_VOICE_COMMUNICATION              | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
805 806 807 808 809 810 811

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

枚举,音频场景。

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

812
| 名称                   |  值     | 说明                                          |
Z
zengyawen 已提交
813 814
| :--------------------- | :----- | :-------------------------------------------- |
| AUDIO_SCENE_DEFAULT    | 0      | 默认音频场景。                                |
815 816
| AUDIO_SCENE_RINGING    | 1      | 响铃模式。<br/>此接口为系统接口。 |
| AUDIO_SCENE_PHONE_CALL | 2      | 电话模式。<br/>此接口为系统接口。 |
Z
zengyawen 已提交
817
| AUDIO_SCENE_VOICE_CHAT | 3      | 语音聊天模式。                                |
L
lwx1059628 已提交
818

Z
zengyawen 已提交
819
## AudioManager
M
mamingshuai 已提交
820

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

823
### setAudioParameter
M
mamingshuai 已提交
824

825
setAudioParameter(key: string, value: string, callback: AsyncCallback&lt;void&gt;): void
M
mamingshuai 已提交
826

827
音频参数设置,使用callback方式异步返回结果。
828

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

831
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS
832

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

M
mamingshuai 已提交
835 836
**参数:**

837 838 839 840 841
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
842

M
mamingshuai 已提交
843 844
**示例:**

J
jiao_yanlin 已提交
845
```js
846
audioManager.setAudioParameter('key_example', 'value_example', (err) => {
J
jiao_yanlin 已提交
847
  if (err) {
848
    console.error(`Failed to set the audio parameter. ${err}`);
J
jiao_yanlin 已提交
849 850
    return;
  }
851
  console.info('Callback invoked to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
852
});
M
mamingshuai 已提交
853 854
```

855
### setAudioParameter
M
mamingshuai 已提交
856

857
setAudioParameter(key: string, value: string): Promise&lt;void&gt;
M
mamingshuai 已提交
858

859
音频参数设置,使用Promise方式异步返回结果。
860

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

863
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS
864

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

M
mamingshuai 已提交
867 868
**参数:**

869 870 871 872
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
M
mamingshuai 已提交
873 874 875

**返回值:**

876 877 878
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
M
mamingshuai 已提交
879 880 881

**示例:**

J
jiao_yanlin 已提交
882
```js
883 884
audioManager.setAudioParameter('key_example', 'value_example').then(() => {
  console.info('Promise returned to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
885
});
M
mamingshuai 已提交
886 887
```

888
### getAudioParameter
Z
zengyawen 已提交
889

890
getAudioParameter(key: string, callback: AsyncCallback&lt;string&gt;): void
M
mamingshuai 已提交
891

892
获取指定音频参数值,使用callback方式异步返回结果。
M
mamingshuai 已提交
893

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

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

M
mamingshuai 已提交
898 899
**参数:**

900 901 902 903
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
904

M
mamingshuai 已提交
905 906
**示例:**

J
jiao_yanlin 已提交
907
```js
908
audioManager.getAudioParameter('key_example', (err, value) => {
J
jiao_yanlin 已提交
909
  if (err) {
910
    console.error(`Failed to obtain the value of the audio parameter. ${err}`);
J
jiao_yanlin 已提交
911 912
    return;
  }
913
  console.info(`Callback invoked to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
914
});
M
mamingshuai 已提交
915 916
```

917
### getAudioParameter
Z
zengyawen 已提交
918

919
getAudioParameter(key: string): Promise&lt;string&gt;
M
mamingshuai 已提交
920

921
获取指定音频参数值,使用Promise方式异步返回结果。
M
mamingshuai 已提交
922

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

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

M
mamingshuai 已提交
927 928
**参数:**

929 930 931
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
M
mamingshuai 已提交
932 933 934

**返回值:**

935 936 937
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
M
mamingshuai 已提交
938 939 940

**示例:**

J
jiao_yanlin 已提交
941
```js
942 943
audioManager.getAudioParameter('key_example').then((value) => {
  console.info(`Promise returned to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
944
});
M
mamingshuai 已提交
945 946
```

947
### setAudioScene<sup>8+</sup>
Z
zengyawen 已提交
948

949
setAudioScene\(scene: AudioScene, callback: AsyncCallback<void\>\): void
M
mamingshuai 已提交
950

951
设置音频场景模式,使用callback方式异步返回结果。
M
mamingshuai 已提交
952

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

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

M
mamingshuai 已提交
957 958
**参数:**

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

M
mamingshuai 已提交
964 965
**示例:**

J
jiao_yanlin 已提交
966
```js
967
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
J
jiao_yanlin 已提交
968
  if (err) {
969
    console.error(`Failed to set the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
970 971
    return;
  }
972
  console.info('Callback invoked to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
973
});
M
mamingshuai 已提交
974 975
```

976
### setAudioScene<sup>8+</sup>
Z
zengyawen 已提交
977

978
setAudioScene\(scene: AudioScene\): Promise<void\>
M
mamingshuai 已提交
979

980
设置音频场景模式,使用Promise方式返回异步结果。
M
mamingshuai 已提交
981

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

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

M
mamingshuai 已提交
986 987
**参数:**

988 989 990
| 参数名 | 类型                                 | 必填 | 说明           |
| :----- | :----------------------------------- | :--- | :------------- |
| scene  | <a href="#audioscene">AudioScene</a> | 是   | 音频场景模式。 |
M
mamingshuai 已提交
991 992 993

**返回值:**

994 995 996
| 类型           | 说明                 |
| :------------- | :------------------- |
| Promise<void\> | 用于返回结果的回调。 |
M
mamingshuai 已提交
997 998 999

**示例:**

J
jiao_yanlin 已提交
1000
```js
1001 1002 1003 1004
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL).then(() => {
  console.info('Promise returned to indicate a successful setting of the audio scene mode.');
}).catch ((err) => {
  console.error(`Failed to set the audio scene mode ${err}`);
L
lwx1059628 已提交
1005
});
M
mamingshuai 已提交
1006 1007
```

1008
### getAudioScene<sup>8+</sup>
M
mamingshuai 已提交
1009

1010
getAudioScene\(callback: AsyncCallback<AudioScene\>\): void
M
mamingshuai 已提交
1011

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

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

M
mamingshuai 已提交
1016 1017
**参数:**

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

M
mamingshuai 已提交
1022 1023
**示例:**

J
jiao_yanlin 已提交
1024
```js
1025
audioManager.getAudioScene((err, value) => {
J
jiao_yanlin 已提交
1026
  if (err) {
1027
    console.error(`Failed to obtain the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
1028 1029
    return;
  }
1030
  console.info(`Callback invoked to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
1031
});
M
mamingshuai 已提交
1032 1033
```

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

1036
getAudioScene\(\): Promise<AudioScene\>
Z
zengyawen 已提交
1037

1038
获取音频场景模式,使用Promise方式返回异步结果。
M
mamingshuai 已提交
1039

1040
**系统能力:** SystemCapability.Multimedia.Audio.Communication
M
mamingshuai 已提交
1041 1042 1043

**返回值:**

1044 1045 1046
| 类型                                          | 说明                         |
| :-------------------------------------------- | :--------------------------- |
| Promise<<a href="#audioscene">AudioScene</a>> | 用于返回音频场景模式的回调。 |
M
mamingshuai 已提交
1047 1048 1049

**示例:**

J
jiao_yanlin 已提交
1050
```js
1051 1052 1053 1054
audioManager.getAudioScene().then((value) => {
  console.info(`Promise returned to indicate that the audio scene mode is obtained ${value}.`);
}).catch ((err) => {
  console.error(`Failed to obtain the audio scene mode ${err}`);
L
lwx1059628 已提交
1055
});
Z
zengyawen 已提交
1056 1057
```

1058
### getVolumeManager<sup>9+</sup>
1059

1060
getVolumeManager(): AudioVolumeManager
1061

1062
获取音频音量管理器。
1063

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

Z
zengyawen 已提交
1066 1067
**示例:**

J
jiao_yanlin 已提交
1068
```js
1069
let audioVolumeManager = audioManager.getVolumeManager();
1070 1071
```

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

1074
getStreamManager(): AudioStreamManager
1075

1076
获取音频流管理器。
1077

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

1080
**示例:**
1081

1082 1083 1084
```js
let audioStreamManager = audioManager.getStreamManager();
```
Z
zengyawen 已提交
1085

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

1088
getRoutingManager(): AudioRoutingManager
1089

1090
获取音频路由设备管理器。
1091

1092
**系统能力:** SystemCapability.Multimedia.Audio.Device
1093 1094 1095

**示例:**

J
jiao_yanlin 已提交
1096
```js
1097
let audioRoutingManager = audioManager.getRoutingManager();
1098 1099
```

1100
## AudioVolumeManager<sup>9+</sup>
1101

1102
音量管理。在使用AudioVolumeManager的接口前,需要使用[getVolumeManager](#getvolumemanager9)获取AudioVolumeManager实例。
1103

1104
### getVolumeGroupInfos<sup>9+</sup>
1105

1106 1107 1108 1109 1110
getVolumeGroupInfos(networkId: string, callback: AsyncCallback<VolumeGroupInfos\>\): void

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

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

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

Z
zengyawen 已提交
1114
**参数:**
1115

1116 1117 1118 1119
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID。    |
| callback  | AsyncCallback&lt;[VolumeGroupInfos](#volumegroupinfos9)&gt; | 是   | 回调,返回音量组信息列表。 |
1120 1121

**示例:**
J
jiao_yanlin 已提交
1122
```js
1123
audioVolumeManager.getVolumeGroupInfos(audio.LOCAL_NETWORK_ID, (err, value) => {
J
jiao_yanlin 已提交
1124
  if (err) {
1125
    console.error(`Failed to obtain the volume group infos list. ${err}`);
J
jiao_yanlin 已提交
1126 1127
    return;
  }
1128
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
L
lwx1059628 已提交
1129
});
Z
zengyawen 已提交
1130 1131
```

1132
### getVolumeGroupInfos<sup>9+</sup>
Z
zengyawen 已提交
1133

1134
getVolumeGroupInfos(networkId: string\): Promise<VolumeGroupInfos\>
Z
zengyawen 已提交
1135

1136
获取音量组信息列表,使用promise方式异步返回结果。
Z
zengyawen 已提交
1137

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

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

Z
zengyawen 已提交
1142 1143
**参数:**

1144 1145 1146
| 参数名     | 类型               | 必填 | 说明                 |
| ---------- | ------------------| ---- | -------------------- |
| networkId | string             | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID。   |
Z
zengyawen 已提交
1147 1148 1149

**返回值:**

1150 1151 1152
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;[VolumeGroupInfos](#volumegroupinfos9)&gt; | 音量组信息列表。 |
M
mamingshuai 已提交
1153

Z
zengyawen 已提交
1154 1155
**示例:**

J
jiao_yanlin 已提交
1156
```js
1157
async function getVolumeGroupInfos(){
1158
  let volumegroupinfos = await audio.getAudioManager().getVolumeManager().getVolumeGroupInfos(audio.LOCAL_NETWORK_ID);
1159 1160
  console.info('Promise returned to indicate that the volumeGroup list is obtained.'+JSON.stringify(volumegroupinfos))
}
Z
zengyawen 已提交
1161 1162
```

1163
### getVolumeGroupManager<sup>9+</sup>
Z
zengyawen 已提交
1164

1165
getVolumeGroupManager(groupId: number, callback: AsyncCallback<AudioVolumeGroupManager\>\): void
1166

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

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

1171 1172
**参数:**

1173 1174 1175
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| groupId    | number                                    | 是   | 音量组id。     |
1176
| callback   | AsyncCallback&lt;[AudioVolumeGroupManager](#audiovolumegroupmanager9)&gt; | 是   | 回调,返回一个音量组实例。 |
1177 1178 1179

**示例:**

J
jiao_yanlin 已提交
1180
```js
1181 1182
let groupid = audio.DEFAULT_VOLUME_GROUP_ID;
audioVolumeManager.getVolumeGroupManager(groupid, (err, value) => {
J
jiao_yanlin 已提交
1183
  if (err) {
1184
    console.error(`Failed to obtain the volume group infos list. ${err}`);
J
jiao_yanlin 已提交
1185 1186
    return;
  }
1187
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
L
lwx1059628 已提交
1188
});
1189

1190
```
Z
zengyawen 已提交
1191

1192
### getVolumeGroupManager<sup>9+</sup>
1193

1194
getVolumeGroupManager(groupId: number\): Promise<AudioVolumeGroupManager\>
1195

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

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

1200 1201
**参数:**

1202 1203 1204
| 参数名     | 类型                                      | 必填 | 说明              |
| ---------- | ---------------------------------------- | ---- | ---------------- |
| groupId    | number                                   | 是   | 音量组id。     |
1205 1206 1207

**返回值:**

1208 1209 1210
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt; [AudioVolumeGroupManager](#audiovolumegroupmanager9) &gt; | 音量组实例。 |
Z
zengyawen 已提交
1211

1212 1213
**示例:**

J
jiao_yanlin 已提交
1214
```js
1215
let groupid = audio.DEFAULT_VOLUME_GROUP_ID;
1216 1217 1218 1219 1220 1221 1222
let audioVolumeGroupManager;
getVolumeGroupManager();
async function getVolumeGroupManager(){
  audioVolumeGroupManager = await audioVolumeManager.getVolumeGroupManager(groupid);
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
}

1223 1224
```

1225
### on('volumeChange')<sup>9+</sup>
Z
zengyawen 已提交
1226

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

1229
监听系统音量变化事件,使用callback方式异步返回结果。
1230

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

1233
**参数:**
1234

1235 1236 1237 1238
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'volumeChange'。 |
| callback | Callback<[VolumeEvent](#volumeevent8)> | 是   | 回调方法。                                                   |
1239

1240
**错误码:**
Z
zengyawen 已提交
1241

1242
以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)
1243

1244 1245
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1246
| 6800101 | if input parameter value error              |
1247 1248 1249

**示例:**

J
jiao_yanlin 已提交
1250
```js
1251 1252 1253 1254
audioVolumeManager.on('volumeChange', (volumeEvent) => {
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
L
lwx1059628 已提交
1255
});
1256 1257
```

1258
## AudioVolumeGroupManager<sup>9+</sup>
Z
zengyawen 已提交
1259

1260
管理音频组音量。在调用AudioVolumeGroupManager的接口前,需要先通过 [getVolumeGroupManager](#getvolumegroupmanager9) 创建实例。
1261

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

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

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

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

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

1272
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1273

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

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

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

Z
zengyawen 已提交
1280
**参数:**
1281

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

**示例:**

J
jiao_yanlin 已提交
1290
```js
1291
audioVolumeGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
J
jiao_yanlin 已提交
1292
  if (err) {
1293
    console.error(`Failed to set the volume. ${err}`);
J
jiao_yanlin 已提交
1294 1295
    return;
  }
1296
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
1297
});
1298 1299
```

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

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

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

1306
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1307

1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。

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

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

**参数:**

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

1321 1322
**返回值:**

1323 1324 1325
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1326 1327 1328

**示例:**

J
jiao_yanlin 已提交
1329
```js
1330 1331
audioVolumeGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.info('Promise returned to indicate a successful volume setting.');
L
lwx1059628 已提交
1332
});
1333 1334
```

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

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

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

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

1343 1344
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1352
```js
1353
audioVolumeGroupManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1354
  if (err) {
1355
    console.error(`Failed to obtain the volume. ${err}`);
J
jiao_yanlin 已提交
1356 1357
    return;
  }
1358
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
1359
});
1360 1361
```

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

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

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

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

1370 1371
**参数:**

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

**返回值:**

1378 1379 1380
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
1381 1382 1383

**示例:**

J
jiao_yanlin 已提交
1384
```js
1385 1386
audioVolumeGroupManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value}.`);
L
lwx1059628 已提交
1387
});
1388 1389
```

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

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

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

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

1398 1399
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1407
```js
1408
audioVolumeGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1409
  if (err) {
1410
    console.error(`Failed to obtain the minimum volume. ${err}`);
J
jiao_yanlin 已提交
1411 1412
    return;
  }
1413
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1414
});
1415 1416
```

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

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

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

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

1425 1426
**参数:**

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

**返回值:**

1433 1434 1435
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
1436 1437 1438

**示例:**

J
jiao_yanlin 已提交
1439
```js
1440 1441
audioVolumeGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained ${value}.`);
L
lwx1059628 已提交
1442
});
1443 1444
```

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

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

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

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

1453 1454
**参数:**

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

**示例:**
1461

J
jiao_yanlin 已提交
1462
```js
1463
audioVolumeGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1464
  if (err) {
1465
    console.error(`Failed to obtain the maximum volume. ${err}`);
J
jiao_yanlin 已提交
1466 1467
    return;
  }
1468
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
L
lwx1059628 已提交
1469
});
1470 1471
```

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

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

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

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

1480 1481
**参数:**

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

**返回值:**

1488 1489 1490
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
1491 1492 1493

**示例:**

J
jiao_yanlin 已提交
1494
```js
1495 1496
audioVolumeGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
  console.info('Promised returned to indicate that the maximum volume is obtained.');
L
lwx1059628 已提交
1497
});
1498 1499
```

1500
### mute<sup>9+</sup>
Z
zengyawen 已提交
1501

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

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

1506
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1507

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

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

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

1514 1515
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1524
```js
1525
audioVolumeGroupManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
1526
  if (err) {
1527
    console.error(`Failed to mute the stream. ${err}`);
J
jiao_yanlin 已提交
1528 1529
    return;
  }
1530
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
1531
});
1532 1533
```

1534
### mute<sup>9+</sup>
Z
zengyawen 已提交
1535

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

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

1540
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1541

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

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

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

1548 1549
**参数:**

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

**返回值:**

1557 1558 1559
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1560 1561 1562

**示例:**

J
jiao_yanlin 已提交
1563
```js
1564 1565
audioVolumeGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
1566
});
1567 1568
```

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

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

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

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

1577 1578
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1586
```js
1587
audioVolumeGroupManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1588
  if (err) {
1589
    console.error(`Failed to obtain the mute status. ${err}`);
J
jiao_yanlin 已提交
1590 1591
    return;
  }
1592
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1593
});
1594 1595
```

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

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

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

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

1604 1605
**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1618
```js
1619 1620
audioVolumeGroupManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1621
});
1622 1623
```

1624
### setRingerMode<sup>9+</sup>
Z
zengyawen 已提交
1625

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

1628
设置铃声模式,使用callback方式异步返回结果。
1629

1630
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1631

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

1634 1635 1636
**系统接口:** 该接口为系统接口

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

1638 1639
**参数:**

1640 1641 1642 1643
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1644 1645 1646

**示例:**

J
jiao_yanlin 已提交
1647
```js
1648
audioVolumeGroupManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
J
jiao_yanlin 已提交
1649
  if (err) {
1650
    console.error(`Failed to set the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1651 1652
    return;
  }
1653
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1654
});
1655 1656
```

1657
### setRingerMode<sup>9+</sup>
Z
zengyawen 已提交
1658

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

1661
设置铃声模式,使用Promise方式异步返回结果。
1662

1663
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
1664

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

1667 1668 1669
**系统接口:** 该接口为系统接口

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

1671 1672
**参数:**

1673 1674 1675
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1676 1677 1678

**返回值:**

Z
zengyawen 已提交
1679 1680
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1681
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1682 1683 1684

**示例:**

J
jiao_yanlin 已提交
1685
```js
1686 1687
audioVolumeGroupManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1688
});
1689 1690
```

1691
### getRingerMode<sup>9+</sup>
1692

1693
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
1694

1695
获取铃声模式,使用callback方式异步返回结果。
1696

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

1699 1700
**参数:**

1701 1702 1703
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1704 1705 1706

**示例:**

J
jiao_yanlin 已提交
1707
```js
1708
audioVolumeGroupManager.getRingerMode((err, value) => {
J
jiao_yanlin 已提交
1709
  if (err) {
1710
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1711 1712
    return;
  }
1713
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1714
});
1715 1716
```

1717
### getRingerMode<sup>9+</sup>
1718

1719
getRingerMode(): Promise&lt;AudioRingMode&gt;
1720

1721
获取铃声模式,使用Promise方式异步返回结果。
1722

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

1725 1726
**返回值:**

1727 1728 1729
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1730 1731 1732

**示例:**

J
jiao_yanlin 已提交
1733
```js
1734 1735
audioVolumeGroupManager.getRingerMode().then((value) => {
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1736
});
1737 1738
```

1739
### on('ringerModeChange')<sup>9+</sup>
Z
zengyawen 已提交
1740

1741
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
1742

1743
监听铃声模式变化事件。
Z
zengyawen 已提交
1744 1745 1746 1747 1748

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

**参数:**

1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                    | 是   | 事件回调类型,支持的事件为:'ringerModeChange'(铃声模式变化事件,检测到铃声模式改变时,触发该事件)。 |
| callback | Callback<[AudioRingMode](#audioringmode)> | 是   | 回调方法。                                                   |

**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1760
| 6800101 | if input parameter value error              |
Z
zengyawen 已提交
1761 1762 1763

**示例:**

J
jiao_yanlin 已提交
1764
```js
1765 1766
audioVolumeGroupManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
L
lwx1059628 已提交
1767
});
Z
zengyawen 已提交
1768
```
1769
### setMicrophoneMute<sup>9+</sup>
Z
zengyawen 已提交
1770

1771
setMicrophoneMute(mute: boolean, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1772

1773
设置麦克风静音状态,使用callback方式异步返回结果。
1774

1775
**需要权限:** ohos.permission.MANAGE_AUDIO_CONFIG
L
lwx1059628 已提交
1776

1777
**系统能力:** SystemCapability.Multimedia.Audio.Volume
Z
zengyawen 已提交
1778 1779 1780

**参数:**

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

L
lwx1059628 已提交
1786 1787
**示例:**

J
jiao_yanlin 已提交
1788
```js
1789 1790 1791 1792 1793 1794
audioVolumeGroupManager.setMicrophoneMute(true, (err) => {
  if (err) {
    console.error(`Failed to mute the microphone. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
1795 1796 1797
});
```

1798
### setMicrophoneMute<sup>9+</sup>
L
lwx1059628 已提交
1799

1800
setMicrophoneMute(mute: boolean): Promise&lt;void&gt;
L
lwx1059628 已提交
1801

1802
设置麦克风静音状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
1803

1804
**需要权限:** ohos.permission.MANAGE_AUDIO_CONFIG
1805

1806
**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
1807 1808 1809

**参数:**

1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |

**返回值:**

| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |

**示例:**
L
lwx1059628 已提交
1821

J
jiao_yanlin 已提交
1822
```js
1823 1824
audioVolumeGroupManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
L
lwx1059628 已提交
1825 1826 1827
});
```

1828
### isMicrophoneMute<sup>9+</sup>
L
lwx1059628 已提交
1829

1830
isMicrophoneMute(callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
1831

1832
获取麦克风静音状态,使用callback方式异步返回结果。
1833

1834
**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
1835 1836 1837

**参数:**

1838 1839 1840
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
1841 1842 1843

**示例:**

J
jiao_yanlin 已提交
1844
```js
1845 1846 1847 1848 1849 1850
audioVolumeGroupManager.isMicrophoneMute((err, value) => {
  if (err) {
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
    return;
  }
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1851 1852 1853
});
```

1854
### isMicrophoneMute<sup>9+</sup>
1855

1856
isMicrophoneMute(): Promise&lt;boolean&gt;
1857

1858
获取麦克风静音状态,使用Promise方式异步返回结果。
1859

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

1862
**返回值:**
1863

1864 1865 1866
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1867 1868 1869

**示例:**

J
jiao_yanlin 已提交
1870
```js
1871 1872
audioVolumeGroupManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
1873 1874 1875
});
```

1876
### on('micStateChange')<sup>9+</sup>
1877

1878
on(type: 'micStateChange', callback: Callback&lt;MicStateChangeEvent&gt;): void
1879

1880
监听系统麦克风状态更改事件。
1881

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

1884
**系统能力:** SystemCapability.Multimedia.Audio.Volume
1885 1886 1887

**参数:**

1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'micStateChange'(系统麦克风状态变化事件,检测到系统麦克风状态改变时,触发该事件)。 |
| callback | Callback<[MicStateChangeEvent](#micstatechangeevent9)> | 是   | 回调方法,返回变更后的麦克风状态。                                                   |

**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1899
| 6800101 | if input parameter value error              |
1900 1901 1902

**示例:**

J
jiao_yanlin 已提交
1903
```js
1904 1905
audioVolumeGroupManager.on('micStateChange', (micStateChange) => {
  console.info(`Current microphone status is: ${micStateChange.mute} `);
1906 1907 1908
});
```

1909
## AudioStreamManager<sup>9+</sup>
L
lwx1059628 已提交
1910

1911
管理音频流。在使用AudioStreamManager的API前,需要使用[getStreamManager](#getstreammanager9)获取AudioStreamManager实例。
L
lwx1059628 已提交
1912

1913
### getCurrentAudioRendererInfoArray<sup>9+</sup>
L
lwx1059628 已提交
1914

1915
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void
L
lwx1059628 已提交
1916

1917 1918 1919
获取当前音频渲染器的信息。使用callback异步回调。

**系统能力**: SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
1920 1921 1922

**参数:**

Z
zengyawen 已提交
1923
| 参数名     | 类型                                 | 必填     | 说明                         |
1924 1925
| -------- | ----------------------------------- | -------- | --------------------------- |
| callback | AsyncCallback<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)> | 是     |  回调函数,返回当前音频渲染器的信息。 |
L
lwx1059628 已提交
1926 1927 1928

**示例:**

J
jiao_yanlin 已提交
1929
```js
1930 1931
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
1932
  if (err) {
1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[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}`);
        }
      }
    }
J
jiao_yanlin 已提交
1956
  }
L
lwx1059628 已提交
1957 1958 1959
});
```

1960
### getCurrentAudioRendererInfoArray<sup>9+</sup>
L
lwx1059628 已提交
1961

1962
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
L
lwx1059628 已提交
1963

1964
获取当前音频渲染器的信息。使用Promise异步回调。
L
lwx1059628 已提交
1965

1966
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
1967 1968 1969

**返回值:**

1970 1971 1972
| 类型                                                                              | 说明                                    |
| ---------------------------------------------------------------------------------| --------------------------------------- |
| Promise<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)>          | Promise对象,返回当前音频渲染器信息。      |
L
lwx1059628 已提交
1973 1974 1975

**示例:**

J
jiao_yanlin 已提交
1976
```js
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
async function getCurrentAudioRendererInfoArray(){
  await audioStreamManager.getCurrentAudioRendererInfoArray().then( function (AudioRendererChangeInfoArray) {
    console.info(`getCurrentAudioRendererInfoArray ######### Get Promise is called ##########`);
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[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}`);
        }
      }
    }
  }).catch((err) => {
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
  });
}
L
lwx1059628 已提交
2005 2006
```

2007
### getCurrentAudioCapturerInfoArray<sup>9+</sup>
L
lwx1059628 已提交
2008

2009
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
L
lwx1059628 已提交
2010

2011
获取当前音频采集器的信息。使用callback异步回调。
L
lwx1059628 已提交
2012

2013
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
2014 2015 2016

**参数:**

Z
zengyawen 已提交
2017
| 参数名        | 类型                                 | 必填      | 说明                                                      |
2018 2019
| ---------- | ----------------------------------- | --------- | -------------------------------------------------------- |
| callback   | AsyncCallback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是    | 回调函数,返回当前音频采集器的信息。 |
L
lwx1059628 已提交
2020 2021 2022

**示例:**

J
jiao_yanlin 已提交
2023
```js
2024 2025
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2026
  if (err) {
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
  } else {
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
        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}`);  
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
          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}`);
        }
      }
    }
  }
L
lwx1059628 已提交
2049 2050 2051
});
```

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

2054
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
2055

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

2058 2059 2060 2061 2062 2063 2064
**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**返回值:**

| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
2065 2066 2067 2068

**示例:**

```js
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
async function getCurrentAudioCapturerInfoArray(){
  await audioStreamManager.getCurrentAudioCapturerInfoArray().then( function (AudioCapturerChangeInfoArray) {
    console.info('getCurrentAudioCapturerInfoArray **** Get Promise Called ****');
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
        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}`);  
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
          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}`);
        }
      }
    }
  }).catch((err) => {
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
  });
}
2095 2096
```

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

2099
on(type: "audioRendererChange", callback: Callback&lt;AudioRendererChangeInfoArray&gt;): void
2100

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

2103 2104 2105 2106
**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

Z
zengyawen 已提交
2107
| 参数名      | 类型        | 必填      | 说明                                                                     |
2108 2109 2110 2111 2112 2113 2114 2115 2116 2117
| -------- | ---------- | --------- | ------------------------------------------------------------------------ |
| type     | string     | 是        | 事件类型,支持的事件`'audioRendererChange'`:当音频渲染器发生更改时触发。     |
| callback | Callback<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)> | 是  |  回调函数。        |

**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
2118
| 6800101 | if input parameter value error              |
2119 2120 2121 2122

**示例:**

```js
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
    let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
    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}`);
    }
  }
});
2145 2146
```

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

2149
off(type: "audioRendererChange"): void
2150

2151
取消监听音频渲染器更改事件。
2152

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

2155
**参数:**
2156

Z
zengyawen 已提交
2157
| 参数名     | 类型     | 必填 | 说明              |
2158 2159
| -------- | ------- | ---- | ---------------- |
| type     | string  | 是   | 事件类型,支持的事件`'audioRendererChange'`:音频渲染器更改事件。 |
2160

2161
**错误码:**
W
wangtao 已提交
2162

2163
以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)
2164

2165 2166
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
2167
| 6800101 | if input parameter value error              |
2168

2169
**示例:**
W
wangtao 已提交
2170

2171 2172 2173 2174
```js
audioStreamManager.off('audioRendererChange');
console.info('######### RendererChange Off is called #########');
```
W
wangtao 已提交
2175

2176
### on('audioCapturerChange')<sup>9+</sup>
W
wangtao 已提交
2177

2178 2179 2180 2181 2182
on(type: "audioCapturerChange", callback: Callback&lt;AudioCapturerChangeInfoArray&gt;): void

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

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
W
wangtao 已提交
2183 2184 2185

**参数:**

Z
zengyawen 已提交
2186
| 参数名     | 类型     | 必填      | 说明                                                                                           |
2187 2188 2189
| -------- | ------- | --------- | ----------------------------------------------------------------------- |
| type     | string  | 是        | 事件类型,支持的事件`'audioCapturerChange'`:当音频采集器发生更改时触发。     |
| callback | Callback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是     | 回调函数。   |
W
wangtao 已提交
2190

2191 2192 2193 2194 2195 2196 2197 2198
**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |

W
wangtao 已提交
2199
**示例:**
2200

W
wangtao 已提交
2201
```js
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
    console.info(`## CapChange on is called for element ${i} ##`);
    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}`);  
    let devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
      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}`);
    }
W
wangtao 已提交
2221 2222 2223 2224
  }
});
```

2225
### off('audioCapturerChange')<sup>9+</sup>
W
wangtao 已提交
2226

2227
off(type: "audioCapturerChange"): void;
W
wangtao 已提交
2228

2229
取消监听音频采集器更改事件。
W
wangtao 已提交
2230

2231
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
W
wangtao 已提交
2232 2233 2234

**参数:**

Z
zengyawen 已提交
2235
| 参数名       | 类型     | 必填 | 说明                                                          |
2236 2237
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |
2238

2239 2240 2241 2242 2243 2244 2245 2246
**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |

W
wangtao 已提交
2247 2248 2249
**示例:**

```js
2250 2251 2252
audioStreamManager.off('audioCapturerChange');
console.info('######### CapturerChange Off is called #########');

W
wangtao 已提交
2253 2254
```

2255
### isActive<sup>9+</sup>
W
wangtao 已提交
2256

2257
isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
W
wangtao 已提交
2258

Z
zengyawen 已提交
2259
获取指定音频流是否为活跃状态,使用callback方式异步返回结果。
W
wangtao 已提交
2260

2261
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
W
wangtao 已提交
2262 2263 2264

**参数:**

2265 2266
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
Z
zengyawen 已提交
2267
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音频流类型。                                      |
2268
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
W
wangtao 已提交
2269 2270 2271 2272

**示例:**

```js
2273
audioStreamManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
2274
  if (err) {
2275
    console.error(`Failed to obtain the active status of the stream. ${err}`);
2276
    return;
W
wangtao 已提交
2277
  }
2278
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
2279
});
W
wangtao 已提交
2280 2281
```

2282
### isActive<sup>9+</sup>
W
wangtao 已提交
2283

2284
isActive(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
W
wangtao 已提交
2285

Z
zengyawen 已提交
2286
获取指定音频流是否为活跃状态,使用Promise方式异步返回结果。
W
wangtao 已提交
2287

2288
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
W
wangtao 已提交
2289 2290 2291

**参数:**

2292 2293
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
Z
zengyawen 已提交
2294
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音频流类型。 |
W
wangtao 已提交
2295

2296 2297
**返回值:**

2298 2299 2300
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
2301

W
wangtao 已提交
2302 2303 2304
**示例:**

```js
2305 2306 2307
audioStreamManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
});
W
wangtao 已提交
2308
```
J
jiao_yanlin 已提交
2309

2310
## AudioRoutingManager<sup>9+</sup>
J
jiao_yanlin 已提交
2311

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

2314
### getDevices<sup>9+</sup>
J
jiao_yanlin 已提交
2315

2316
getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void
J
jiao_yanlin 已提交
2317

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

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

2322
**参数:**
2323

2324 2325 2326 2327
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
J
jiao_yanlin 已提交
2328 2329 2330 2331

**示例:**

```js
2332
audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
2333
  if (err) {
2334 2335
    console.error(`Failed to obtain the device list. ${err}`);
    return;
2336
  }
2337 2338
  console.info('Callback invoked to indicate that the device list is obtained.');
});
J
jiao_yanlin 已提交
2339 2340
```

2341
### getDevices<sup>9+</sup>
J
jiao_yanlin 已提交
2342

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

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

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

2349
**参数:**
2350

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

2355
**返回值:**
2356

2357 2358 2359
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
2360 2361 2362 2363

**示例:**

```js
2364 2365
audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
2366
});
2367 2368
```

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

2371
on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback<DeviceChangeAction\>): void
2372

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

2375
**系统能力:** SystemCapability.Multimedia.Audio.Device
2376 2377 2378

**参数:**

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

2385
**错误码:**
2386

2387 2388 2389 2390
以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
2391
| 6800101 | if input parameter value error              |
2392 2393 2394 2395

**示例:**

```js
2396 2397 2398 2399 2400
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);
2401
});
2402 2403
```

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

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

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

2410
**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2411 2412 2413

**参数:**

2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)> | 否   | 获取设备更新详情。                         |

**错误码:**

以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
2425
| 6800101 | if input parameter value error              |
W
wangtao 已提交
2426 2427 2428 2429

**示例:**

```js
2430 2431
audioRoutingManager.off('deviceChange', (deviceChanged) => {
  console.info('Should be no callback.');
W
wangtao 已提交
2432 2433 2434
});
```

2435
### selectInputDevice<sup>9+</sup>
W
wangtao 已提交
2436

2437
selectInputDevice(inputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
W
wangtao 已提交
2438

2439
选择音频输入设备,当前只能选择一个输入设备,使用callback方式异步返回结果。
W
wangtao 已提交
2440

2441
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2442

2443
**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2444

2445
**参数:**
W
wangtao 已提交
2446

2447 2448 2449 2450
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| inputAudioDevices           | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输入设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回选择输入设备结果。 |
W
wangtao 已提交
2451 2452 2453

**示例:**
```js
2454
let inputAudioDeviceDescriptor = [{
2455 2456 2457 2458
  deviceRole : audio.DeviceRole.INPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
2459

2460 2461 2462 2463 2464 2465
async function selectInputDevice(){
  audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select input devices result callback: SUCCESS'); }
2466 2467
  });
}
W
wangtao 已提交
2468 2469
```

2470
### selectInputDevice<sup>9+</sup>
W
wangtao 已提交
2471

2472
selectInputDevice(inputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
W
wangtao 已提交
2473

2474
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2475

2476 2477 2478
选择音频输入设备,当前只能选择一个输入设备,使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2479 2480 2481

**参数:**

2482 2483 2484 2485 2486 2487 2488 2489 2490
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| inputAudioDevices           | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输入设备类。               |

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输入设备结果。 |
W
wangtao 已提交
2491 2492 2493 2494

**示例:**

```js
2495
let inputAudioDeviceDescriptor =[{
2496 2497 2498 2499
  deviceRole : audio.DeviceRole.INPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
W
wangtao 已提交
2500

2501 2502 2503 2504 2505 2506 2507
async function getRoutingManager(){
    audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor).then(() => {
      console.info('Select input devices result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    });
}
W
wangtao 已提交
2508 2509
```

2510
### setCommunicationDevice<sup>9+</sup>
W
wangtao 已提交
2511

2512
setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
W
wangtao 已提交
2513

2514
设置通信设备激活状态,使用callback方式异步返回结果。
W
wangtao 已提交
2515

2516
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2517 2518 2519

**参数:**

2520 2521 2522 2523 2524
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
W
wangtao 已提交
2525 2526 2527 2528

**示例:**

```js
2529
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true, (err) => {
W
wangtao 已提交
2530
  if (err) {
2531
    console.error(`Failed to set the active status of the device. ${err}`);
W
wangtao 已提交
2532 2533
    return;
  }
2534
  console.info('Callback invoked to indicate that the device is set to the active status.');
W
wangtao 已提交
2535 2536 2537
});
```

2538
### setCommunicationDevice<sup>9+</sup>
W
wangtao 已提交
2539

2540
setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean): Promise&lt;void&gt;
W
wangtao 已提交
2541

2542
设置通信设备激活状态,使用Promise方式异步返回结果。
W
wangtao 已提交
2543

2544
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2545 2546 2547

**参数:**

2548 2549 2550 2551
| 参数名     | 类型                                                   | 必填 | 说明               |
| ---------- | ----------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9)  | 是   | 活跃音频设备类型。 |
| active     | boolean                                               | 是   | 设备激活状态。     |
W
wangtao 已提交
2552 2553 2554

**返回值:**

2555 2556 2557
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
W
wangtao 已提交
2558 2559 2560 2561

**示例:**

```js
2562
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true).then(() => {
2563
  console.info('Promise returned to indicate that the device is set to the active status.');
W
wangtao 已提交
2564 2565 2566
});
```

2567
### isCommunicationDeviceActive<sup>9+</sup>
2568

2569
isCommunicationDeviceActive(deviceType: CommunicationDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
W
wangtao 已提交
2570

2571
获取指定通信设备的激活状态,使用callback方式异步返回结果。
J
jiao_yanlin 已提交
2572

2573
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2574 2575 2576

**参数:**

2577 2578 2579 2580
| 参数名     | 类型                                                  | 必填 | 说明                     |
| ---------- | ---------------------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;                         | 是   | 回调返回设备的激活状态。 |
W
wangtao 已提交
2581 2582 2583 2584

**示例:**

```js
2585
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER, (err, value) => {
W
wangtao 已提交
2586
  if (err) {
2587
    console.error(`Failed to obtain the active status of the device. ${err}`);
W
wangtao 已提交
2588 2589
    return;
  }
2590
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
W
wangtao 已提交
2591 2592 2593
});
```

2594
### isCommunicationDeviceActive<sup>9+</sup>
2595

2596
isCommunicationDeviceActive(deviceType: CommunicationDeviceType): Promise&lt;boolean&gt;
W
wangtao 已提交
2597

2598
获取指定通信设备的激活状态,使用Promise方式异步返回结果。
J
jiao_yanlin 已提交
2599

2600
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2601 2602 2603

**参数:**

2604 2605 2606
| 参数名     | 类型                                                  | 必填 | 说明               |
| ---------- | ---------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。 |
W
wangtao 已提交
2607 2608 2609

**返回值:**

2610 2611 2612
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
W
wangtao 已提交
2613 2614 2615 2616

**示例:**

```js
2617
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER).then((value) => {
2618
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
W
wangtao 已提交
2619 2620 2621
});
```

2622
### selectOutputDevice<sup>9+</sup>
W
wangtao 已提交
2623

2624
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
W
wangtao 已提交
2625

2626
选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
W
wangtao 已提交
2627

2628 2629 2630
**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2631 2632 2633

**参数:**

2634 2635 2636 2637
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |
W
wangtao 已提交
2638 2639 2640

**示例:**
```js
2641
let outputAudioDeviceDescriptor = [{
2642 2643 2644 2645
  deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
2646 2647 2648 2649 2650 2651
async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select output devices result callback: SUCCESS'); }
2652 2653
  });
}
W
wangtao 已提交
2654 2655
```

2656
### selectOutputDevice<sup>9+</sup>
W
wangtao 已提交
2657

2658
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
W
wangtao 已提交
2659

2660
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2661

2662 2663 2664
选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2665 2666 2667

**参数:**

2668 2669 2670
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
W
wangtao 已提交
2671 2672 2673

**返回值:**

2674 2675 2676
| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |
W
wangtao 已提交
2677 2678 2679 2680

**示例:**

```js
2681
let outputAudioDeviceDescriptor =[{
2682 2683 2684 2685
  deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
2686

2687 2688 2689 2690 2691
async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices result promise: SUCCESS');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
2692 2693 2694
  });
}
```
2695

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

2698
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
2699 2700 2701

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

2702 2703 2704
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device
2705 2706 2707

**参数:**

2708 2709 2710 2711 2712
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| filter                      | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |
2713 2714 2715

**示例:**
```js
2716
let outputAudioRendererFilter = {
2717 2718 2719 2720 2721 2722
  uid : 20010041,
  rendererInfo : {
    contentType : audio.ContentType.CONTENT_TYPE_MUSIC,
    streamUsage : audio.StreamUsage.STREAM_USAGE_MEDIA,
    rendererFlags : 0 },
  rendererId : 0 };
2723
let outputAudioDeviceDescriptor = [{
2724 2725 2726 2727
  deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
2728

2729 2730 2731 2732 2733 2734
async function selectOutputDeviceByFilter(){
  audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select output devices by filter result callback: SUCCESS'); }
2735 2736 2737
  });
}
```
2738

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

2741
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
2742 2743 2744

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

2745 2746 2747
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Device
2748 2749 2750

**参数:**

2751 2752 2753 2754
| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| filter                | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices    | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
2755 2756 2757

**返回值:**

2758 2759 2760
| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |
2761 2762 2763 2764

**示例:**

```js
2765
let outputAudioRendererFilter = {
2766 2767 2768 2769 2770 2771
  uid : 20010041,
  rendererInfo : {
    contentType : audio.ContentType.CONTENT_TYPE_MUSIC,
    streamUsage : audio.StreamUsage.STREAM_USAGE_MEDIA,
    rendererFlags : 0 },
  rendererId : 0 };
2772
let outputAudioDeviceDescriptor = [{
2773 2774 2775 2776
  deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
  networkId : audio.LOCAL_NETWORK_ID,
  interruptGroupId : 1,
  volumeGroupId : 1 }];
2777

2778 2779 2780 2781 2782 2783
async function selectOutputDeviceByFilter(){
  audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices by filter result promise: SUCCESS');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
  })
2784
}
2785 2786
```

2787 2788 2789 2790 2791 2792
## AudioRendererChangeInfoArray<sup>9+</sup>

数组类型,AudioRenderChangeInfo数组,只读。

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

2793
## AudioRendererChangeInfo<sup>9+</sup>
2794

2795
描述音频渲染器更改信息。
2796

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

2799 2800 2801
| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
2802
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口。 |
2803
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
2804
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
2805 2806 2807 2808

**示例:**

```js
2809 2810 2811 2812
let audioStreamManager;
let resultFlag = false;

audioManager.getStreamManager((err, data) => {
2813
  if (err) {
2814 2815 2816 2817
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
  } else {
    audioStreamManager = data;
    console.info('Get AudioStream Manager : Success');
2818 2819 2820
  }
});

2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
    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}`);
  	let devDescriptor = AudioRendererChangeInfoArray[i].deviceDescriptors;
  	for (let j = 0; j < AudioRendererChangeInfoArray[i].deviceDescriptors.length; j++) {
  	  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}`);
  	}
    if (AudioRendererChangeInfoArray[i].rendererState == 1 && devDescriptor != null) {
      resultFlag = true;
      console.info(`ResultFlag for ${i} is: ${resultFlag}`);
    }
  }
2846 2847 2848
});
```

2849 2850 2851 2852 2853 2854 2855

## AudioCapturerChangeInfoArray<sup>9+</sup>

数组类型,AudioCapturerChangeInfo数组,只读。

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

2856
## AudioCapturerChangeInfo<sup>9+</sup>
2857

2858
描述音频采集器更改信息。
2859

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

2862 2863 2864
| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
2865
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口。 |
2866
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)  | 是   | 否   | 音频采集器信息。               |
2867
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
2868 2869 2870 2871

**示例:**

```js
2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
let audioStreamManager;
audioManager.getStreamManager((err, data) => {
  if (err) {
    console.error(`getStreamManager : Error: ${err}`);
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

let resultFlag = false;
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
    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}`);
    let devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
      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}`);
    }
    if (AudioCapturerChangeInfoArray[i].capturerState == 1 && devDescriptor != null) {
      resultFlag = true;
      console.info(`ResultFlag for element ${i} is: ${resultFlag}`);
    }
  }
2910 2911 2912
});
```

2913 2914 2915 2916
## AudioDeviceDescriptors

设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。

2917
## AudioDeviceDescriptor
2918

2919
描述音频设备。
2920

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

2923 2924 2925 2926 2927 2928 2929 2930 2931 2932
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| 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;        | 是   | 否   | 支持的通道掩码。 |
2933 2934 2935
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口。 |
2936 2937 2938 2939

**示例:**

```js
2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956
import audio from '@ohos.multimedia.audio';

function displayDeviceProp(value) {
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
}

let deviceRoleValue = null;
let deviceTypeValue = null;
const promise = audio.getAudioManager().getDevices(1);
promise.then(function (value) {
  console.info('AudioFrameworkTest: Promise: getDevices OUTPUT_DEVICES_FLAG');
  value.forEach(displayDeviceProp);
  if (deviceTypeValue != null && deviceRoleValue != null){
    console.info('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  PASS');
  } else {
    console.error('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  FAIL');
2957 2958 2959 2960
  }
});
```

2961
## AudioRendererFilter<sup>9+</sup>
2962

2963
过滤条件类。在调用selectOutputDeviceByFilter接口前,需要先创建AudioRendererFilter实例。
2964

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

2967
| 名称          | 类型                                     | 必填 | 说明          |
2968 2969 2970 2971
| -------------| ---------------------------------------- | ---- | -------------- |
| uid          | number                                   |  是  | 表示应用ID。<br> **系统能力:** SystemCapability.Multimedia.Audio.Core|
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
2972 2973 2974 2975

**示例:**

```js
2976 2977 2978 2979 2980 2981 2982
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
2983 2984
```

2985
## AudioRenderer<sup>8+</sup>
2986

2987
提供音频渲染的相关接口。在调用AudioRenderer的接口前,需要先通过[createAudioRenderer](#audiocreateaudiorenderer8)创建实例。
2988

2989
### 属性
2990

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

2993 2994 2995
| 名称  | 类型                     | 可读 | 可写 | 说明               |
| ----- | -------------------------- | ---- | ---- | ------------------ |
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
2996 2997 2998 2999

**示例:**

```js
3000
let state = audioRenderer.state;
3001 3002
```

3003
### getRendererInfo<sup>8+</sup>
3004

3005
getRendererInfo(callback: AsyncCallback<AudioRendererInfo\>): void
3006

3007
获取当前被创建的音频渲染器的信息,使用callback方式异步返回结果。
3008

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

3011
**参数:**
3012

3013 3014 3015
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
3016 3017 3018 3019

**示例:**

```js
3020 3021 3022 3023 3024
audioRenderer.getRendererInfo((err, rendererInfo) => {
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`);
3025 3026 3027
});
```

3028
### getRendererInfo<sup>8+</sup>
3029

3030
getRendererInfo(): Promise<AudioRendererInfo\>
3031

3032
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
3033

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

3036 3037 3038 3039 3040
**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
3041 3042 3043 3044

**示例:**

```js
3045 3046 3047 3048 3049 3050 3051
audioRenderer.getRendererInfo().then((rendererInfo) => {
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`)
}).catch((err) => {
  console.error(`AudioFrameworkRenderLog: RendererInfo :ERROR: ${err}`);
3052 3053 3054
});
```

3055
### getStreamInfo<sup>8+</sup>
3056

3057
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
3058

3059
获取音频流信息,使用callback方式异步返回结果。
3060

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

3063
**参数:**
3064

3065 3066 3067
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 回调返回音频流信息。 |
3068

3069
**示例:**
J
jiao_yanlin 已提交
3070 3071

```js
3072 3073 3074 3075 3076 3077
audioRenderer.getStreamInfo((err, streamInfo) => {
  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}`);
3078 3079 3080
});
```

3081
### getStreamInfo<sup>8+</sup>
3082

3083
getStreamInfo(): Promise<AudioStreamInfo\>
3084

3085
获取音频流信息,使用Promise方式异步返回结果。
3086

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

3089
**返回值:**
3090

3091 3092 3093
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | Promise返回音频流信息. |
3094

3095
**示例:**
J
jiao_yanlin 已提交
3096 3097

```js
3098 3099 3100 3101 3102 3103 3104 3105 3106
audioRenderer.getStreamInfo().then((streamInfo) => {
  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}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3107 3108
```

3109
### getAudioStreamId<sup>9+</sup>
3110

3111
getAudioStreamId(callback: AsyncCallback<number\>): void
3112

3113
获取音频流id,使用callback方式异步返回结果。
3114

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

3117
**参数:**
3118

3119 3120 3121
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
3122

3123
**示例:**
J
jiao_yanlin 已提交
3124 3125

```js
3126 3127
audioRenderer.getAudioStreamId((err, streamid) => {
  console.info(`Renderer GetStreamId: ${streamid}`);
3128 3129 3130
});
```

3131
### getAudioStreamId<sup>9+</sup>
3132

3133
getAudioStreamId(): Promise<number\>
3134

3135
获取音频流id,使用Promise方式异步返回结果。
3136

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

3139
**返回值:**
3140

3141 3142 3143
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
3144

3145
**示例:**
J
jiao_yanlin 已提交
3146 3147

```js
3148 3149 3150 3151 3152
audioRenderer.getAudioStreamId().then((streamid) => {
  console.info(`Renderer getAudioStreamId: ${streamid}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3153 3154
```

3155
### start<sup>8+</sup>
3156

3157
start(callback: AsyncCallback<void\>): void
3158

3159
启动音频渲染器。使用callback方式异步返回结果。
3160

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

3163
**参数:**
3164

3165 3166 3167
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
3168

3169
**示例:**
J
jiao_yanlin 已提交
3170 3171

```js
3172 3173 3174 3175 3176
audioRenderer.start((err) => {
  if (err) {
    console.error('Renderer start failed.');
  } else {
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3177
  }
3178 3179 3180
});
```

3181
### start<sup>8+</sup>
3182

3183
start(): Promise<void\>
3184

3185
启动音频渲染器。使用Promise方式异步返回结果。
3186

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

3189
**返回值:**
3190

3191 3192 3193
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3194

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

```js
3198 3199 3200 3201 3202
audioRenderer.start().then(() => {
  console.info('Renderer started');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3203 3204
```

3205
### pause<sup>8+</sup>
3206

3207
pause(callback: AsyncCallback\<void>): void
3208

3209
暂停渲染。使用callback方式异步返回结果。
3210

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

3213
**参数:**
3214

3215 3216 3217
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3218

3219
**示例:**
J
jiao_yanlin 已提交
3220 3221

```js
3222 3223 3224 3225 3226
audioRenderer.pause((err) => {
  if (err) {
    console.error('Renderer pause failed');
  } else {
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
3227
  }
3228 3229 3230
});
```

3231
### pause<sup>8+</sup>
3232

3233
pause(): Promise\<void>
3234

3235
暂停渲染。使用Promise方式异步返回结果。
3236

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

3239
**返回值:**
3240

3241 3242 3243
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3244 3245 3246 3247

**示例:**

```js
3248 3249 3250 3251 3252
audioRenderer.pause().then(() => {
  console.info('Renderer paused');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3253 3254
```

3255
### drain<sup>8+</sup>
3256

3257
drain(callback: AsyncCallback\<void>): void
3258

3259
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
3260

3261
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3262 3263 3264

**参数:**

3265 3266 3267
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3268 3269 3270 3271

**示例:**

```js
3272
audioRenderer.drain((err) => {
3273
  if (err) {
3274 3275 3276
    console.error('Renderer drain failed');
  } else {
    console.info('Renderer drained.');
3277 3278 3279 3280
  }
});
```

3281
### drain<sup>8+</sup>
3282

3283
drain(): Promise\<void>
3284

3285
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
3286

3287
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3288 3289 3290

**返回值:**

3291 3292 3293
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3294 3295 3296 3297

**示例:**

```js
3298 3299 3300 3301
audioRenderer.drain().then(() => {
  console.info('Renderer drained successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3302 3303 3304
});
```

3305
### stop<sup>8+</sup>
3306

3307
stop(callback: AsyncCallback\<void>): void
3308

3309
停止渲染。使用callback方式异步返回结果。
3310

3311
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3312 3313 3314

**参数:**

3315 3316 3317
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3318 3319 3320 3321

**示例:**

```js
3322
audioRenderer.stop((err) => {
3323
  if (err) {
3324
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
3325
  } else {
3326
    console.info('Renderer stopped.');
3327
  }
3328
});
3329 3330
```

3331
### stop<sup>8+</sup>
3332

3333
stop(): Promise\<void>
3334

3335
停止渲染。使用Promise方式异步返回结果。
3336

3337
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3338 3339 3340

**返回值:**

3341 3342 3343
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3344 3345 3346 3347

**示例:**

```js
3348 3349 3350 3351
audioRenderer.stop().then(() => {
  console.info('Renderer stopped successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3352 3353 3354
});
```

3355
### release<sup>8+</sup>
3356

3357
release(callback: AsyncCallback\<void>): void
3358

3359
释放音频渲染器。使用callback方式异步返回结果。
3360

3361
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3362 3363 3364

**参数:**

3365 3366 3367
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3368

3369 3370 3371
**示例:**

```js
3372
audioRenderer.release((err) => {
3373
  if (err) {
3374 3375 3376
    console.error('Renderer release failed');
  } else {
    console.info('Renderer released.');
3377 3378 3379 3380
  }
});
```

3381
### release<sup>8+</sup>
3382

3383
release(): Promise\<void>
3384

3385
释放渲染器。使用Promise方式异步返回结果。
3386

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

3389
**返回值:**
3390

3391 3392 3393
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3394

3395 3396 3397
**示例:**

```js
3398 3399 3400 3401
audioRenderer.release().then(() => {
  console.info('Renderer released successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3402 3403 3404
});
```

3405
### write<sup>8+</sup>
3406

3407
write(buffer: ArrayBuffer, callback: AsyncCallback\<number>): void
3408

3409
写入缓冲区。使用callback方式异步返回结果。
3410

3411
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3412 3413 3414

**参数:**

3415 3416 3417 3418
| 参数名   | 类型                   | 必填 | 说明                                                |
| -------- | ---------------------- | ---- | --------------------------------------------------- |
| buffer   | ArrayBuffer            | 是   | 要写入缓冲区的数据。                                |
| callback | AsyncCallback\<number> | 是   | 回调如果成功,返回写入的字节数,否则返回errorcode。 |
3419 3420 3421

**示例:**

3422 3423 3424 3425 3426 3427 3428
```js
let bufferSize;
audioRenderer.getBufferSize().then((data)=> {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3429
  });
3430 3431 3432 3433 3434
console.info(`Buffer size: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
3435
}
3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446
let filePath = path + '/StarWars10s-2C-48000-4SW.wav';
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
audioRenderer.write(buf, (err, writtenbytes) => {
  if (writtenbytes < 0) {
    console.error('write failed.');
  } else {
    console.info(`Actual written bytes: ${writtenbytes}`);
  }
});
3447 3448
```

3449
### write<sup>8+</sup>
3450

3451
write(buffer: ArrayBuffer): Promise\<number>
3452

3453
写入缓冲区。使用Promise方式异步返回结果。
3454

3455
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3456 3457 3458

**返回值:**

3459 3460 3461
| 类型             | 说明                                                         |
| ---------------- | ------------------------------------------------------------ |
| Promise\<number> | Promise返回结果,如果成功,返回写入的字节数,否则返回errorcode。 |
3462 3463 3464 3465

**示例:**

```js
3466 3467 3468 3469 3470 3471
let bufferSize;
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3472
  });
3473 3474 3475 3476 3477
console.info(`BufferSize: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
3478
}
3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491
let filePath = path + '/StarWars10s-2C-48000-4SW.wav';
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
audioRenderer.write(buf).then((writtenbytes) => {
  if (writtenbytes < 0) {
      console.error('write failed.');
  } else {
      console.info(`Actual written bytes: ${writtenbytes}`);
  }
}).catch((err) => {
    console.error(`ERROR: ${err}`);
});
3492 3493
```

3494
### getAudioTime<sup>8+</sup>
3495

3496
getAudioTime(callback: AsyncCallback\<number>): void
3497

3498
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
3499

3500
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3501 3502 3503

**参数:**

3504 3505 3506
| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |
3507 3508 3509 3510

**示例:**

```js
3511 3512
audioRenderer.getAudioTime((err, timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
3513 3514 3515
});
```

3516
### getAudioTime<sup>8+</sup>
3517

3518
getAudioTime(): Promise\<number>
3519

3520
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
3521

3522
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3523 3524 3525

**返回值:**

3526 3527 3528
| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |
3529 3530 3531 3532

**示例:**

```js
3533 3534 3535 3536
audioRenderer.getAudioTime().then((timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3537 3538 3539
});
```

3540
### getBufferSize<sup>8+</sup>
3541

3542
getBufferSize(callback: AsyncCallback\<number>): void
3543

3544
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
3545

3546
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3547 3548 3549

**参数:**

3550 3551 3552
| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |
3553 3554 3555 3556

**示例:**

```js
3557
let bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
3558
  if (err) {
3559
    console.error('getBufferSize error');
3560 3561 3562 3563
  }
});
```

3564
### getBufferSize<sup>8+</sup>
3565

3566
getBufferSize(): Promise\<number>
3567

3568
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
3569

3570
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3571 3572 3573

**返回值:**

3574 3575 3576
| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |
3577 3578 3579 3580

**示例:**

```js
3581 3582 3583 3584 3585 3586
let bufferSize;
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
}).catch((err) => {
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3587 3588 3589
});
```

3590
### setRenderRate<sup>8+</sup>
3591

3592
setRenderRate(rate: AudioRendererRate, callback: AsyncCallback\<void>): void
3593

3594
设置音频渲染速率。使用callback方式异步返回结果。
3595

3596
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3597 3598 3599

**参数:**

3600 3601 3602 3603
| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |
J
jiao_yanlin 已提交
3604

3605
**示例:**
3606

3607 3608 3609 3610 3611 3612 3613 3614 3615
```js
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err) => {
  if (err) {
    console.error('Failed to set params');
  } else {
    console.info('Callback invoked to indicate a successful render rate setting.');
  }
});
```
3616

3617
### setRenderRate<sup>8+</sup>
3618

3619
setRenderRate(rate: AudioRendererRate): Promise\<void>
3620

3621
设置音频渲染速率。使用Promise方式异步返回结果。
3622

3623
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3624 3625 3626

**参数:**

3627 3628 3629
| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
3630 3631 3632

**返回值:**

3633 3634 3635
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |
3636 3637 3638 3639

**示例:**

```js
3640 3641 3642 3643 3644
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
  console.info('setRenderRate SUCCESS');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3645 3646
```

3647
### getRenderRate<sup>8+</sup>
3648

3649
getRenderRate(callback: AsyncCallback\<AudioRendererRate>): void
3650

3651
获取当前渲染速率。使用callback方式异步返回结果。
3652

3653
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3654 3655 3656

**参数:**

3657 3658 3659
| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
3660 3661

**示例:**
J
jiao_yanlin 已提交
3662

3663 3664 3665 3666
```js
audioRenderer.getRenderRate((err, renderrate) => {
  console.info(`getRenderRate: ${renderrate}`);
});
3667 3668
```

3669
### getRenderRate<sup>8+</sup>
3670

3671
getRenderRate(): Promise\<AudioRendererRate>
3672

3673
获取当前渲染速率。使用Promise方式异步返回结果。
3674

3675
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3676 3677 3678

**返回值:**

3679 3680 3681
| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
3682 3683 3684 3685

**示例:**

```js
3686 3687 3688 3689 3690
audioRenderer.getRenderRate().then((renderRate) => {
  console.info(`getRenderRate: ${renderRate}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3691
```
3692
### setInterruptMode<sup>9+</sup>
3693

3694
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
3695

3696
设置应用的焦点模型。使用Promise异步回调。
3697

3698
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
3699

3700
**参数:**
3701

3702 3703 3704
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
3705

3706
**返回值:**
3707

3708 3709 3710
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3711

3712 3713
**示例:**

J
jiao_yanlin 已提交
3714
```js
3715 3716 3717 3718 3719 3720 3721 3722
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
  console.info('setInterruptMode Success!');
}).catch((err) => {
  console.error(`setInterruptMode Fail: ${err}`);
});
```
### setInterruptMode<sup>9+</sup>
3723

3724
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
3725

3726
设置应用的焦点模型。使用Callback回调返回执行结果。
3727

3728
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743

**参数:**

| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|

**示例:**

```js
let mode = 1;
audioRenderer.setInterruptMode(mode, (err, data)=>{
  if(err){
    console.error(`setInterruptMode Fail: ${err}`);
J
jiao_yanlin 已提交
3744
  }
3745
  console.info('setInterruptMode Success!');
3746 3747 3748
});
```

3749 3750 3751
### setVolume<sup>9+</sup>

setVolume(volume: number): Promise&lt;void&gt;
3752

3753
设置应用的音量。使用Promise异步回调。
3754

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

3757
**参数:**
3758

3759 3760 3761
| 参数名     | 类型     | 必填   | 说明        |
| ---------- | ------- | ------ | ---------- |
| volume     | number  | 是     | 音量值。  |
3762

3763
**返回值:**
3764

3765 3766 3767
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3768

3769 3770
**示例:**

J
jiao_yanlin 已提交
3771
```js
3772 3773 3774 3775
audioRenderer.setVolume(10).then(data=>{
  console.info('setVolume Success!');
}).catch((err) => {
  console.error(`setVolume Fail: ${err}`);
J
jiao_yanlin 已提交
3776
});
3777 3778
```
### setVolume<sup>9+</sup>
J
jiao_yanlin 已提交
3779

3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
setVolume(volume: number, callback: AsyncCallback\<void>): void

设置应用的音量。使用Callback回调返回执行结果。

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

**参数:**

| 参数名   | 类型       | 必填   | 说明            |
| ------- | -----------| ------ | -------------- |
|volume   | number     | 是     | 音量值。|
|callback | AsyncCallback\<void> | 是     |回调返回执行结果。|

**示例:**

```js
audioRenderer.setVolume(10, (err, data)=>{
  if(err){
    console.error(`setVolume Fail: ${err}`);
J
jiao_yanlin 已提交
3799
  }
3800
  console.info('setVolume Success!');
3801 3802 3803
});
```

3804
### on('audioInterrupt')<sup>9+</sup>
3805

3806
on(type: 'audioInterrupt', callback: Callback\<InterruptEvent>): void
3807

3808
监听音频中断事件。使用callback获取中断事件。
Z
zengyawen 已提交
3809

3810
[on('interrupt')](#oninterruptdeprecated)一致,该接口在AudioRenderer对象start、pause、stop等事件发生前已经主动获取焦点,不需要开发者主动发起焦点申请。
3811

3812
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
Z
zengyawen 已提交
3813

3814
**参数:**
M
mamingshuai 已提交
3815

3816 3817 3818 3819
| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'audioInterrupt'(中断事件被触发,音频播放被中断。) |
| callback | Callback<[InterruptEvent](#interruptevent9)> | 是   | 被监听的中断事件的回调。                                     |
Z
zengyawen 已提交
3820

3821
**错误码:**
Z
zengyawen 已提交
3822

3823
以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)
L
lwx1059628 已提交
3824

3825 3826
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
3827
| 6800101 | if input parameter value error              |
Z
zengyawen 已提交
3828

3829 3830 3831 3832 3833
**示例:**

```js
let isPlay;
let started;
3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880
onAudioInterrupt();

async function onAudioInterrupt(){
  audioRenderer.on('audioInterrupt', async(interruptEvent) => {
    if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
      switch (interruptEvent.hintType) {
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
          console.info('Force paused. Stop writing');
          isPlay = false;
          break;
        case audio.InterruptHint.INTERRUPT_HINT_STOP:
          console.info('Force stopped. Stop writing');
          isPlay = false;
          break;
      }
    } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
      switch (interruptEvent.hintType) {
        case audio.InterruptHint.INTERRUPT_HINT_RESUME:
          console.info('Resume force paused renderer or ignore');
          await audioRenderer.start().then(async function () {
            console.info('AudioInterruptMusic: renderInstant started :SUCCESS ');
            started = true;
          }).catch((err) => {
            console.error(`AudioInterruptMusic: renderInstant start :ERROR : ${err}`);
            started = false;
          });
          if (started) {
            isPlay = true;
            console.info(`AudioInterruptMusic Renderer started : isPlay : ${isPlay}`);
          } else {
            console.error('AudioInterruptMusic Renderer start failed');
          }
          break;
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
          console.info('Choose to pause or ignore');
          if (isPlay == true) {
            isPlay == false;
            console.info('AudioInterruptMusic: Media PAUSE : TRUE');
          } else {
            isPlay = true;
            console.info('AudioInterruptMusic: Media PLAY : TRUE');
          }
          break;
      }
   }
  });
}
Z
zengyawen 已提交
3881 3882
```

3883
### on('markReach')<sup>8+</sup>
3884

3885
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
3886

3887
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被调用。
3888

3889 3890 3891 3892 3893 3894 3895 3896 3897
**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                    |
3898 3899 3900 3901

**示例:**

```js
3902 3903 3904 3905 3906
audioRenderer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
  }
});
3907 3908
```

Z
zengyawen 已提交
3909

3910
### off('markReach') <sup>8+</sup>
L
lwx1059628 已提交
3911

3912 3913 3914
off(type: 'markReach'): void

取消订阅标记事件。
Z
zengyawen 已提交
3915

3916
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3917

3918 3919 3920 3921 3922
**参数:**

| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |
Z
zengyawen 已提交
3923 3924 3925

**示例:**

J
jiao_yanlin 已提交
3926
```js
3927
audioRenderer.off('markReach');
Z
zengyawen 已提交
3928 3929
```

3930
### on('periodReach') <sup>8+</sup>
Z
zengyawen 已提交
3931

3932
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
3933

3934
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,触发回调并返回设定的值。
Z
zengyawen 已提交
3935

3936
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3937 3938 3939

**参数:**

3940 3941 3942 3943 3944
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                      |
Z
zengyawen 已提交
3945 3946 3947

**示例:**

J
jiao_yanlin 已提交
3948
```js
3949 3950 3951 3952
audioRenderer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
  }
L
lwx1059628 已提交
3953
});
Z
zengyawen 已提交
3954 3955
```

3956
### off('periodReach') <sup>8+</sup>
Z
zengyawen 已提交
3957

3958
off(type: 'periodReach'): void
Z
zengyawen 已提交
3959

3960
取消订阅标记事件。
Z
zengyawen 已提交
3961

3962
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3963

3964
**参数:**
Z
zengyawen 已提交
3965

3966 3967 3968
| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |
Z
zengyawen 已提交
3969 3970 3971

**示例:**

J
jiao_yanlin 已提交
3972
```js
3973
audioRenderer.off('periodReach')
Z
zengyawen 已提交
3974 3975
```

3976
### on('stateChange') <sup>8+</sup>
Z
zengyawen 已提交
3977

3978
on(type: 'stateChange', callback: Callback<AudioState\>): void
Z
zengyawen 已提交
3979

3980
订阅监听状态变化。
Z
zengyawen 已提交
3981

3982
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3983 3984 3985

**参数:**

3986 3987 3988 3989
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
Z
zengyawen 已提交
3990 3991 3992

**示例:**

J
jiao_yanlin 已提交
3993
```js
3994 3995 3996 3997 3998 3999 4000
audioRenderer.on('stateChange', (state) => {
  if (state == 1) {
    console.info('audio renderer state is: STATE_PREPARED');
  }
  if (state == 2) {
    console.info('audio renderer state is: STATE_RUNNING');
  }
L
lwx1059628 已提交
4001
});
Z
zengyawen 已提交
4002 4003
```

4004
## AudioCapturer<sup>8+</sup>
Z
zengyawen 已提交
4005

4006
提供音频采集的相关接口。在调用AudioCapturer的接口前,需要先通过[createAudioCapturer](#audiocreateaudiocapturer8)创建实例。
Z
zengyawen 已提交
4007

4008
### 属性
Z
zengyawen 已提交
4009

4010
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4011

4012 4013 4014
| 名称  | 类型                     | 可读 | 可写 | 说明             |
| :---- | :------------------------- | :--- | :--- | :--------------- |
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
Z
zengyawen 已提交
4015 4016 4017

**示例:**

J
jiao_yanlin 已提交
4018
```js
4019
let state = audioCapturer.state;
Z
zengyawen 已提交
4020 4021
```

4022
### getCapturerInfo<sup>8+</sup>
4023

4024
getCapturerInfo(callback: AsyncCallback<AudioCapturerInfo\>): void
4025

4026
获取采集器信息。使用callback方式异步返回结果。
4027

4028
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4029 4030 4031

**参数:**

4032 4033 4034
| 参数名   | 类型                              | 必填 | 说明                                 |
| :------- | :-------------------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<AudioCapturerInfo\> | 是   | 使用callback方式异步返回采集器信息。 |
4035 4036 4037 4038

**示例:**

```js
4039 4040 4041 4042 4043 4044 4045 4046
audioCapturer.getCapturerInfo((err, capturerInfo) => {
  if (err) {
    console.error('Failed to get capture info');
  } else {
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
  }
4047 4048 4049 4050
});
```


4051
### getCapturerInfo<sup>8+</sup>
4052

4053
getCapturerInfo(): Promise<AudioCapturerInfo\>
4054

4055 4056 4057
获取采集器信息。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4058 4059 4060

**返回值:**

4061 4062 4063
| 类型                                              | 说明                                |
| :------------------------------------------------ | :---------------------------------- |
| Promise<[AudioCapturerInfo](#audiocapturerinfo)\> | 使用Promise方式异步返回采集器信息。 |
4064 4065 4066 4067

**示例:**

```js
4068 4069 4070 4071 4072 4073 4074 4075 4076
audioCapturer.getCapturerInfo().then((audioParamsGet) => {
  if (audioParamsGet != undefined) {
    console.info('AudioFrameworkRecLog: Capturer CapturerInfo:');
    console.info(`AudioFrameworkRecLog: Capturer SourceType: ${audioParamsGet.source}`);
    console.info(`AudioFrameworkRecLog: Capturer capturerFlags: ${audioParamsGet.capturerFlags}`);
  } else {
    console.info(`AudioFrameworkRecLog: audioParamsGet is : ${audioParamsGet}`);
    console.info('AudioFrameworkRecLog: audioParams getCapturerInfo are incorrect');
  }
4077
}).catch((err) => {
4078
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
4079 4080 4081
});
```

4082
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4083

4084
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
Z
zengyawen 已提交
4085

4086
获取采集器流信息。使用callback方式异步返回结果。
Z
zengyawen 已提交
4087

4088
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4089 4090 4091

**参数:**

4092 4093 4094
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
Z
zengyawen 已提交
4095 4096 4097

**示例:**

J
jiao_yanlin 已提交
4098
```js
4099
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4100
  if (err) {
4101
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4102
  } else {
4103 4104 4105 4106 4107
    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 已提交
4108
  }
L
lwx1059628 已提交
4109
});
Z
zengyawen 已提交
4110 4111
```

4112
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4113

4114
getStreamInfo(): Promise<AudioStreamInfo\>
Z
zengyawen 已提交
4115

4116
获取采集器流信息。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4117

4118
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4119 4120 4121

**返回值:**

4122 4123 4124
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
Z
zengyawen 已提交
4125 4126 4127

**示例:**

J
jiao_yanlin 已提交
4128
```js
4129 4130 4131 4132 4133 4134
audioCapturer.getStreamInfo().then((audioParamsGet) => {
  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 已提交
4135
}).catch((err) => {
4136
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4137
});
Z
zengyawen 已提交
4138 4139
```

4140
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4141

4142
getAudioStreamId(callback: AsyncCallback<number\>): void
Z
zengyawen 已提交
4143

4144
获取音频流id,使用callback方式异步返回结果。
Z
zengyawen 已提交
4145

4146
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4147 4148 4149

**参数:**

4150 4151 4152
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
Z
zengyawen 已提交
4153 4154 4155

**示例:**

J
jiao_yanlin 已提交
4156
```js
4157 4158
audioCapturer.getAudioStreamId((err, streamid) => {
  console.info(`audioCapturer GetStreamId: ${streamid}`);
L
lwx1059628 已提交
4159
});
Z
zengyawen 已提交
4160 4161
```

4162
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4163

4164
getAudioStreamId(): Promise<number\>
Z
zengyawen 已提交
4165

4166
获取音频流id,使用Promise方式异步返回结果。
Z
zengyawen 已提交
4167

4168
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4169 4170 4171

**返回值:**

4172 4173 4174
| 类型             | 说明                   |
| :----------------| :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
Z
zengyawen 已提交
4175 4176 4177

**示例:**

J
jiao_yanlin 已提交
4178
```js
4179 4180
audioCapturer.getAudioStreamId().then((streamid) => {
  console.info(`audioCapturer getAudioStreamId: ${streamid}`);
L
lwx1059628 已提交
4181
}).catch((err) => {
4182
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4183
});
Z
zengyawen 已提交
4184 4185
```

4186
### start<sup>8+</sup>
Z
zengyawen 已提交
4187

4188
start(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4189

4190
启动音频采集器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4191

4192
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4193 4194 4195

**参数:**

4196 4197 4198
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4199 4200 4201

**示例:**

J
jiao_yanlin 已提交
4202
```js
4203
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
4204
  if (err) {
4205
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
4206
  } else {
4207
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
4208
  }
L
lwx1059628 已提交
4209
});
Z
zengyawen 已提交
4210 4211 4212
```


4213
### start<sup>8+</sup>
Z
zengyawen 已提交
4214

4215
start(): Promise<void\>
Z
zengyawen 已提交
4216

4217 4218 4219
启动音频采集器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4220 4221 4222

**返回值:**

4223 4224 4225
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4226 4227 4228

**示例:**

J
jiao_yanlin 已提交
4229
```js
4230 4231 4232 4233 4234 4235 4236 4237
audioCapturer.start().then(() => {
  console.info('AudioFrameworkRecLog: ---------START---------');
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer: STATE: ${audioCapturer.state}`);
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
  if ((audioCapturer.state == audio.AudioState.STATE_RUNNING)) {
    console.info('AudioFrameworkRecLog: AudioCapturer is in Running State');
  }
L
lwx1059628 已提交
4238
}).catch((err) => {
4239
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
L
lwx1059628 已提交
4240
});
Z
zengyawen 已提交
4241 4242 4243 4244
```

### stop<sup>8+</sup>

4245
stop(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4246

4247
停止采集。使用callback方式异步返回结果。
Z
zengyawen 已提交
4248

4249
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4250 4251 4252

**参数:**

4253 4254 4255
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4256 4257 4258

**示例:**

J
jiao_yanlin 已提交
4259
```js
4260
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
4261
  if (err) {
4262
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
4263
  } else {
4264
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
4265
  }
L
lwx1059628 已提交
4266
});
Z
zengyawen 已提交
4267 4268
```

4269

Z
zengyawen 已提交
4270 4271
### stop<sup>8+</sup>

4272
stop(): Promise<void\>
Z
zengyawen 已提交
4273

4274
停止采集。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4275

4276
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4277 4278 4279

**返回值:**

4280 4281 4282
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4283 4284 4285

**示例:**

J
jiao_yanlin 已提交
4286
```js
4287 4288 4289 4290 4291 4292
audioCapturer.stop().then(() => {
  console.info('AudioFrameworkRecLog: ---------STOP RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer stopped: SUCCESS');
  if ((audioCapturer.state == audio.AudioState.STATE_STOPPED)){
    console.info('AudioFrameworkRecLog: State is Stopped:');
  }
L
lwx1059628 已提交
4293
}).catch((err) => {
4294
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4295
});
Z
zengyawen 已提交
4296 4297 4298 4299
```

### release<sup>8+</sup>

4300
release(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4301

4302
释放采集器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4303

4304
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4305 4306 4307

**参数:**

4308 4309 4310
| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
| callback | AsyncCallback<void\> | 是   | Callback used to return the result. |
Z
zengyawen 已提交
4311 4312 4313

**示例:**

J
jiao_yanlin 已提交
4314
```js
4315
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
4316
  if (err) {
4317
    console.error('capturer release failed');
J
jiao_yanlin 已提交
4318
  } else {
4319
    console.info('capturer released.');
J
jiao_yanlin 已提交
4320
  }
L
lwx1059628 已提交
4321
});
Z
zengyawen 已提交
4322 4323
```

4324

Z
zengyawen 已提交
4325 4326
### release<sup>8+</sup>

4327
release(): Promise<void\>
Z
zengyawen 已提交
4328

4329
释放采集器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4330

4331
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4332 4333 4334

**返回值:**

4335 4336 4337
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4338 4339 4340

**示例:**

J
jiao_yanlin 已提交
4341
```js
4342 4343 4344 4345 4346 4347
let stateFlag;
audioCapturer.release().then(() => {
  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 已提交
4348
}).catch((err) => {
4349
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4350
});
Z
zengyawen 已提交
4351 4352
```

4353
### read<sup>8+</sup>
Z
zengyawen 已提交
4354

4355
read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void
Z
zengyawen 已提交
4356

4357
读入缓冲区。使用callback方式异步返回结果。
Z
zengyawen 已提交
4358

4359
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4360 4361 4362

**参数:**

4363 4364 4365 4366 4367
| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |
Z
zengyawen 已提交
4368 4369 4370

**示例:**

J
jiao_yanlin 已提交
4371
```js
J
jiao_yanlin 已提交
4372
let bufferSize;
4373 4374
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4375 4376
  bufferSize = data;
  }).catch((err) => {
4377
    console.error(`AudioFrameworkRecLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4378
  });
4379 4380 4381
audioCapturer.read(bufferSize, true, async(err, buffer) => {
  if (!err) {
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
4382
  }
L
lwx1059628 已提交
4383
});
Z
zengyawen 已提交
4384 4385
```

4386
### read<sup>8+</sup>
Z
zengyawen 已提交
4387

4388
read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>
Z
zengyawen 已提交
4389

4390
读入缓冲区。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4391

4392 4393 4394 4395 4396 4397 4398 4399
**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |
Z
zengyawen 已提交
4400 4401 4402

**返回值:**

4403 4404 4405
| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |
Z
zengyawen 已提交
4406 4407 4408

**示例:**

J
jiao_yanlin 已提交
4409
```js
J
jiao_yanlin 已提交
4410
let bufferSize;
4411 4412
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4413 4414
  bufferSize = data;
  }).catch((err) => {
4415
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
J
jiao_yanlin 已提交
4416
  });
4417 4418 4419
console.info(`Buffer size: ${bufferSize}`);
audioCapturer.read(bufferSize, true).then((buffer) => {
  console.info('buffer read successfully');
L
lwx1059628 已提交
4420
}).catch((err) => {
4421
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
4422
});
Z
zengyawen 已提交
4423 4424 4425 4426
```

### getAudioTime<sup>8+</sup>

4427
getAudioTime(callback: AsyncCallback<number\>): void
Z
zengyawen 已提交
4428

4429
获取时间戳(从1970年1月1日开始),单位为纳秒。使用callback方式异步返回结果。
Z
zengyawen 已提交
4430

4431
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4432 4433 4434

**参数:**

4435 4436 4437
| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4438 4439 4440

**示例:**

J
jiao_yanlin 已提交
4441
```js
4442
audioCapturer.getAudioTime((err, timestamp) => {
4443
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4444
});
Z
zengyawen 已提交
4445 4446 4447 4448
```

### getAudioTime<sup>8+</sup>

4449
getAudioTime(): Promise<number\>
Z
zengyawen 已提交
4450

4451
获取时间戳(从1970年1月1日开始),单位为纳秒。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4452

4453
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4454 4455 4456

**返回值:**

4457 4458 4459
| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4460 4461 4462

**示例:**

J
jiao_yanlin 已提交
4463
```js
4464 4465
audioCapturer.getAudioTime().then((audioTime) => {
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4466
}).catch((err) => {
4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
});
```

### getBufferSize<sup>8+</sup>

getBufferSize(callback: AsyncCallback<number\>): void

获取采集器合理的最小缓冲区大小。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                 |
| :------- | :--------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回缓冲区大小。 |

**示例:**

```js
audioCapturer.getBufferSize((err, bufferSize) => {
  if (!err) {
    console.info(`BufferSize : ${bufferSize}`);
    audioCapturer.read(bufferSize, true).then((buffer) => {
      console.info(`Buffer read is ${buffer}`);
    }).catch((err) => {
      console.error(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
    });
  }
});
```

### getBufferSize<sup>8+</sup>

getBufferSize(): Promise<number\>

获取采集器合理的最小缓冲区大小。使用Promise方式异步返回结果。

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

**返回值:**

| 类型             | 说明                                |
| :--------------- | :---------------------------------- |
| Promise<number\> | 使用Promise方式异步返回缓冲区大小。 |

**示例:**

```js
let bufferSize;
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
  bufferSize = data;
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err}`);
L
lwx1059628 已提交
4523
});
Z
zengyawen 已提交
4524 4525
```

4526
### on('markReach')<sup>8+</sup>
Z
zengyawen 已提交
4527

4528
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4529

4530
订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。
Z
zengyawen 已提交
4531

4532
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4533 4534 4535

**参数:**

4536 4537 4538 4539 4540
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
Z
zengyawen 已提交
4541 4542 4543

**示例:**

J
jiao_yanlin 已提交
4544
```js
4545 4546 4547
audioCapturer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4548
  }
L
lwx1059628 已提交
4549
});
Z
zengyawen 已提交
4550 4551
```

4552
### off('markReach')<sup>8+</sup>
Z
zengyawen 已提交
4553

4554
off(type: 'markReach'): void
Z
zengyawen 已提交
4555

4556
取消订阅标记到达的事件。
Z
zengyawen 已提交
4557

4558
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4559

4560
**参数:**
Z
zengyawen 已提交
4561

4562 4563 4564
| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |
Z
zengyawen 已提交
4565 4566 4567

**示例:**

J
jiao_yanlin 已提交
4568
```js
4569
audioCapturer.off('markReach');
Z
zengyawen 已提交
4570 4571
```

4572
### on('periodReach')<sup>8+</sup>
Z
zengyawen 已提交
4573

4574
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4575

4576
订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,触发回调并返回设定的值。
Z
zengyawen 已提交
4577

4578
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4579 4580 4581

**参数:**

4582 4583 4584 4585 4586
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
Z
zengyawen 已提交
4587 4588 4589

**示例:**

J
jiao_yanlin 已提交
4590
```js
4591 4592 4593
audioCapturer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4594
  }
L
lwx1059628 已提交
4595
});
Z
zengyawen 已提交
4596 4597
```

4598
### off('periodReach')<sup>8+</sup>
Z
zengyawen 已提交
4599

4600
off(type: 'periodReach'): void
Z
zengyawen 已提交
4601

4602
取消订阅标记到达的事件。
Z
zengyawen 已提交
4603

4604
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4605 4606 4607

**参数:**

4608 4609 4610
| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
| type   | string | 是  | 取消事件回调类型,支持的事件为:'periodReach'。 |
Z
zengyawen 已提交
4611 4612 4613

**示例:**

J
jiao_yanlin 已提交
4614
```js
4615
audioCapturer.off('periodReach')
Z
zengyawen 已提交
4616 4617
```

4618
### on('stateChange') <sup>8+</sup>
Z
zengyawen 已提交
4619

4620
on(type: 'stateChange', callback: Callback<AudioState\>): void
Z
zengyawen 已提交
4621

4622
订阅监听状态变化。
Z
zengyawen 已提交
4623

4624
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4625 4626 4627

**参数:**

4628 4629 4630 4631
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
Z
zengyawen 已提交
4632 4633 4634

**示例:**

J
jiao_yanlin 已提交
4635
```js
4636 4637 4638 4639 4640 4641 4642
audioCapturer.on('stateChange', (state) => {
  if (state == 1) {
    console.info('audio capturer state is: STATE_PREPARED');
  }
  if (state == 2) {
    console.info('audio capturer state is: STATE_RUNNING');
  }
L
lwx1059628 已提交
4643
});
Z
zengyawen 已提交
4644 4645
```

4646
## ToneType<sup>9+</sup>
Z
zengyawen 已提交
4647

4648
枚举,播放器的音调类型。
Z
zengyawen 已提交
4649

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

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

4654
| 名称                                              |  值    | 说明                          |
4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682
| :------------------------------------------------ | :----- | :----------------------------|
| TONE_TYPE_DIAL_0                                  | 0      | 键0的DTMF音。                 |
| TONE_TYPE_DIAL_1                                  | 1      | 键1的DTMF音。                 |
| TONE_TYPE_DIAL_2                                  | 2      | 键2的DTMF音。                 |
| TONE_TYPE_DIAL_3                                  | 3      | 键3的DTMF音。                 |
| TONE_TYPE_DIAL_4                                  | 4      | 键4的DTMF音。                 |
| TONE_TYPE_DIAL_5                                  | 5      | 键5的DTMF音。                 |
| TONE_TYPE_DIAL_6                                  | 6      | 键6的DTMF音。                 |
| TONE_TYPE_DIAL_7                                  | 7      | 键7的DTMF音。                 |
| TONE_TYPE_DIAL_8                                  | 8      | 键8的DTMF音。                 |
| TONE_TYPE_DIAL_9                                  | 9      | 键9的DTMF音。                 |
| TONE_TYPE_DIAL_S                                  | 10     | 键*的DTMF音。                 |
| TONE_TYPE_DIAL_P                                  | 11     | 键#的DTMF音。                 |
| TONE_TYPE_DIAL_A                                  | 12     | 键A的DTMF音。                 |
| TONE_TYPE_DIAL_B                                  | 13     | 键B的DTMF音。                 |
| TONE_TYPE_DIAL_C                                  | 14     | 键C的DTMF音。                 |
| TONE_TYPE_DIAL_D                                  | 15     | 键D的DTMF音。                 |
| TONE_TYPE_COMMON_SUPERVISORY_DIAL                 | 100    | 呼叫监管音调,拨号音。          |
| TONE_TYPE_COMMON_SUPERVISORY_BUSY                 | 101    | 呼叫监管音调,忙。              |
| TONE_TYPE_COMMON_SUPERVISORY_CONGESTION           | 102    | 呼叫监管音调,拥塞。            |
| TONE_TYPE_COMMON_SUPERVISORY_RADIO_ACK            | 103    | 呼叫监管音调,无线电 ACK。      |
| TONE_TYPE_COMMON_SUPERVISORY_RADIO_NOT_AVAILABLE  | 104    | 呼叫监管音调,无线电不可用。     |
| TONE_TYPE_COMMON_SUPERVISORY_CALL_WAITING         | 106    | 呼叫监管音调,呼叫等待。        |
| TONE_TYPE_COMMON_SUPERVISORY_RINGTONE             | 107    | 呼叫监管音调,铃声。            |
| TONE_TYPE_COMMON_PROPRIETARY_BEEP                 | 200    | 专有声调,一般蜂鸣声。          |
| TONE_TYPE_COMMON_PROPRIETARY_ACK                  | 201    | 专有声调,ACK。                |
| TONE_TYPE_COMMON_PROPRIETARY_PROMPT               | 203    | 专有声调,PROMPT。             |
| TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP          | 204    | 专有声调,双重蜂鸣声。          |
Z
zengyawen 已提交
4683

4684
## TonePlayer<sup>9+</sup>
Z
zengyawen 已提交
4685

4686 4687 4688 4689 4690 4691 4692 4693 4694 4695
提供播放和管理DTMF(Dual Tone Multi Frequency,双音多频)音调的方法,包括各种系统监听音调、专有音调,如拨号音、通话回铃音等。

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

### load<sup>9+</sup>

load(type: ToneType, callback: AsyncCallback&lt;void&gt;): void

加载DTMF音调配置。使用callback方式异步返回结果。

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

4698 4699 4700 4701 4702 4703
**系统能力:** SystemCapability.Multimedia.Audio.Tone

**参数:**

| 参数名          | 类型                        | 必填  | 说明                            |
| :--------------| :-------------------------- | :-----| :------------------------------ |
4704
| type           | [ToneType](#tonetype9)       | 是    | 配置的音调类型。                 |
4705
| callback       | AsyncCallback<void\>        | 是    | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4706 4707 4708

**示例:**

J
jiao_yanlin 已提交
4709
```js
4710 4711 4712 4713 4714 4715 4716
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_5, (err) => {
  if (err) {
    console.error(`callback call load failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call load success');
  }
L
lwx1059628 已提交
4717
});
Z
zengyawen 已提交
4718
```
4719

4720
### load<sup>9+</sup>
4721

4722
load(type: ToneType): Promise&lt;void&gt;
4723

4724 4725
加载DTMF音调配置。使用Promise方式异步返回结果。

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

4728
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4729 4730 4731

**参数:**

4732 4733
| 参数名         | 类型                    | 必填  |  说明             |
| :------------- | :--------------------- | :---  | ---------------- |
4734
| type           | [ToneType](#tonetype9)   | 是    | 配置的音调类型。  |
4735 4736 4737

**返回值:**

4738 4739 4740
| 类型            | 说明                        |
| :--------------| :-------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4741 4742

**示例:**
Z
zengyawen 已提交
4743

J
jiao_yanlin 已提交
4744
```js
4745 4746 4747 4748
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_1).then(() => {
  console.info('promise call load ');
}).catch(() => {
  console.error('promise call load fail');
4749
});
Z
zhujie81 已提交
4750 4751
```

4752
### start<sup>9+</sup>
Z
zhujie81 已提交
4753

4754
start(callback: AsyncCallback&lt;void&gt;): void
Z
zhujie81 已提交
4755

4756 4757
启动DTMF音调播放。使用callback方式异步返回结果。

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

4760
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zhujie81 已提交
4761 4762

**参数:**
4763

4764 4765 4766
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4767

Z
zhujie81 已提交
4768 4769
**示例:**

J
jiao_yanlin 已提交
4770
```js
4771 4772 4773 4774 4775 4776
tonePlayer.start((err) => {
  if (err) {
    console.error(`callback call start failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call start success');
J
jiao_yanlin 已提交
4777
  }
4778
});
4779
```
Z
zengyawen 已提交
4780

4781
### start<sup>9+</sup>
4782

4783
start(): Promise&lt;void&gt;
4784

4785
启动DTMF音调播放。使用Promise方式异步返回结果。
4786

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

4789
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4790 4791 4792

**返回值:**

4793 4794 4795
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4796 4797 4798 4799

**示例:**

```js
4800 4801 4802 4803
tonePlayer.start().then(() => {
  console.info('promise call start');
}).catch(() => {
  console.error('promise call start fail');
4804 4805 4806
});
```

4807
### stop<sup>9+</sup>
4808

4809
stop(callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
4810

4811 4812
停止当前正在播放的音调。使用callback方式异步返回结果。

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

4815
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zengyawen 已提交
4816 4817 4818

**参数:**

4819 4820 4821
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
4822 4823 4824 4825

**示例:**

```js
4826 4827 4828 4829 4830 4831
tonePlayer.stop((err) => {
  if (err) {
    console.error(`callback call stop error: ${err.message}`);
    return;
  } else {
    console.error('callback call stop success ');
4832 4833 4834 4835
  }
});
```

4836
### stop<sup>9+</sup>
4837

4838
stop(): Promise&lt;void&gt;
4839

4840
停止当前正在播放的音调。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4841

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

4844
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4845

4846
**返回值:**
4847

4848 4849 4850
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4851

Z
zengyawen 已提交
4852 4853
**示例:**

J
jiao_yanlin 已提交
4854
```js
4855 4856 4857 4858
tonePlayer.stop().then(() => {
  console.info('promise call stop finish');
}).catch(() => {
  console.error('promise call stop fail');
L
lwx1059628 已提交
4859
});
Z
zengyawen 已提交
4860 4861
```

4862
### release<sup>9+</sup>
L
lwx1059628 已提交
4863

4864
release(callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
4865

G
gloria 已提交
4866
释放与此TonePlayer对象关联的资源。使用callback方式异步返回结果。
L
lwx1059628 已提交
4867

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

4870
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4871 4872 4873

**参数:**

4874 4875 4876
| 参数名   | 类型                 | 必填 | 说明                            |
| :------- | :------------------- | :--- | :---------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。  |
L
lwx1059628 已提交
4877 4878 4879

**示例:**

J
jiao_yanlin 已提交
4880
```js
4881 4882 4883 4884 4885 4886
tonePlayer.release((err) => {
  if (err) {
    console.error(`callback call release failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call release success ');
J
jiao_yanlin 已提交
4887
  }
L
lwx1059628 已提交
4888 4889 4890
});
```

4891
### release<sup>9+</sup>
L
lwx1059628 已提交
4892

4893
release(): Promise&lt;void&gt;
L
lwx1059628 已提交
4894

G
gloria 已提交
4895
释放与此TonePlayer对象关联的资源。使用Promise方式异步返回结果。
L
lwx1059628 已提交
4896

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

4899
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4900

4901
**返回值:**
L
lwx1059628 已提交
4902

4903 4904 4905
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
4906 4907 4908

**示例:**

J
jiao_yanlin 已提交
4909
```js
4910 4911 4912 4913 4914
tonePlayer.release().then(() => {
  console.info('promise call release');
}).catch(() => {
  console.error('promise call release fail');
});
L
lwx1059628 已提交
4915 4916
```

4917
## ActiveDeviceType<sup>(deprecated)</sup>
Z
zengyawen 已提交
4918

4919
枚举,活跃设备类型。
Z
zengyawen 已提交
4920

4921 4922
> **说明:**
> 从 API version 9 开始废弃,建议使用[CommunicationDeviceType](#communicationdevicetype9)替代。
L
lwx1059628 已提交
4923

4924
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
4925

4926
| 名称          |  值     | 说明                                                 |
4927 4928 4929
| ------------- | ------ | ---------------------------------------------------- |
| SPEAKER       | 2      | 扬声器。                                             |
| BLUETOOTH_SCO | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。 |
L
lwx1059628 已提交
4930

4931
## InterruptActionType<sup>(deprecated)</sup>
L
lwx1059628 已提交
4932

4933
枚举,中断事件返回类型。
L
lwx1059628 已提交
4934

4935 4936
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
4937

4938
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
4939

4940
| 名称           |  值     | 说明               |
4941 4942 4943
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
L
lwx1059628 已提交
4944

4945
## AudioInterrupt<sup>(deprecated)</sup>
L
lwx1059628 已提交
4946

4947 4948
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
4949

4950
音频监听事件传入的参数。
L
lwx1059628 已提交
4951

4952
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
4953

4954
| 名称            | 类型                        | 必填 | 说明                                                         |
4955 4956 4957 4958
| --------------- | --------------------------- | ----| ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是  | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是  | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是  | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
L
lwx1059628 已提交
4959

4960
## InterruptAction<sup>(deprecated)</sup>
L
lwx1059628 已提交
4961

4962 4963
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
4964

4965
音频打断/获取焦点事件的回调方法。
L
lwx1059628 已提交
4966

4967
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
4968

4969 4970 4971 4972
| 名称       | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontype) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。 |
| type       | [InterruptType](#interrupttype)             | 否   | 打断事件类型。                                               |
4973
| hint       | [InterruptHint](#interrupthint)             | 否   | 打断事件提示。                                               |
4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989
| activated  | boolean                                     | 否   | 获得/释放焦点。true表示焦点获取/释放成功,false表示焦点获得/释放失败。 |

### setVolume<sup>(deprecated)</sup>

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

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

> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
4990 4991 4992

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
5001
```js
5002 5003 5004 5005
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
    console.error(`Failed to set the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5006
  }
5007
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
5008 5009 5010
});
```

5011
### setVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5012

5013
setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;
L
lwx1059628 已提交
5014

5015
设置指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5016

5017 5018
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代。
L
lwx1059628 已提交
5019

5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

**参数:**

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

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
L
lwx1059628 已提交
5038 5039 5040

**示例:**

J
jiao_yanlin 已提交
5041
```js
5042 5043 5044
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.info('Promise returned to indicate a successful volume setting.');
});
L
lwx1059628 已提交
5045 5046
```

5047
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5048

5049
getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5050

5051
获取指定流的音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5052

5053 5054 5055 5056
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5057 5058 5059

**参数:**

5060 5061 5062 5063
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |
L
lwx1059628 已提交
5064 5065 5066

**示例:**

J
jiao_yanlin 已提交
5067
```js
5068
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5069
  if (err) {
5070 5071
    console.error(`Failed to obtain the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5072
  }
5073
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
5074 5075 5076
});
```

5077
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5078

5079
getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5080

5081
获取指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5082

5083 5084
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。
L
lwx1059628 已提交
5085

5086 5087 5088 5089 5090 5091 5092
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5093 5094 5095

**返回值:**

5096 5097 5098
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
L
lwx1059628 已提交
5099 5100 5101

**示例:**

J
jiao_yanlin 已提交
5102
```js
5103 5104
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
5105 5106 5107
});
```

5108
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5109

5110
getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5111

5112
获取指定流的最小音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5113

5114 5115 5116 5117
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5118 5119 5120

**参数:**

5121 5122 5123 5124
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |
L
lwx1059628 已提交
5125 5126 5127

**示例:**

J
jiao_yanlin 已提交
5128
```js
5129
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5130
  if (err) {
5131 5132
    console.error(`Failed to obtain the minimum volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5133
  }
5134
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5135 5136 5137
});
```

5138
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5139

5140
getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5141

5142
获取指定流的最小音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5143

5144 5145 5146 5147 5148 5149 5150 5151 5152 5153
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

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

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5154 5155 5156

**返回值:**

5157 5158 5159
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
L
lwx1059628 已提交
5160 5161 5162

**示例:**

J
jiao_yanlin 已提交
5163
```js
5164 5165
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5166 5167 5168
});
```

5169
### getMaxVolume<sup>(deprecated)</sup>
5170

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

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

5175 5176 5177 5178
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5179 5180 5181

**参数:**

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

**示例:**

```js
5190 5191 5192 5193 5194 5195
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the maximum volume. ${err}`);
    return;
  }
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
5196 5197 5198
});
```

5199
### getMaxVolume<sup>(deprecated)</sup>
5200

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

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

5205 5206 5207 5208 5209 5210 5211 5212 5213 5214
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

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

**参数:**

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

**返回值:**

5218 5219 5220
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
5221 5222 5223 5224

**示例:**

```js
5225 5226
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
  console.info('Promised returned to indicate that the maximum volume is obtained.');
5227 5228 5229
});
```

5230
### mute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5231

5232
mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5233

5234
设置指定音量流静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5235

5236 5237 5238 5239 5240 5241 5242 5243
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[mute](#mute9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5244

5245
**参数:**
L
lwx1059628 已提交
5246

5247 5248 5249 5250 5251
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                |
L
lwx1059628 已提交
5252 5253 5254

**示例:**

J
jiao_yanlin 已提交
5255
```js
5256
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
5257
  if (err) {
5258 5259
    console.error(`Failed to mute the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5260
  }
5261
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
5262 5263 5264
});
```

5265 5266 5267 5268 5269 5270 5271 5272
### mute<sup>(deprecated)</sup>

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

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

> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[mute](#mute9)替代。
L
lwx1059628 已提交
5273

5274
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
L
lwx1059628 已提交
5275

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

5278
**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5279

5280 5281 5282 5283 5284 5285
**参数:**

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

**返回值:**

5289 5290 5291
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
L
lwx1059628 已提交
5292 5293 5294

**示例:**

5295

J
jiao_yanlin 已提交
5296
```js
5297 5298
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
5299 5300 5301
});
```

5302
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5303

5304
isMute(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5305

5306
获取指定音量流是否被静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5307

5308 5309 5310 5311
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5312 5313 5314

**参数:**

5315 5316 5317 5318
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5319 5320 5321

**示例:**

J
jiao_yanlin 已提交
5322
```js
5323
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5324
  if (err) {
5325 5326
    console.error(`Failed to obtain the mute status. ${err}`);
    return;
J
jiao_yanlin 已提交
5327
  }
5328
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
5329 5330 5331
});
```

5332
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5333

5334
isMute(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5335

5336
获取指定音量流是否被静音,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5337

5338 5339
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。
L
lwx1059628 已提交
5340

5341 5342 5343 5344 5345 5346 5347
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5348 5349 5350

**返回值:**

5351 5352 5353
| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5354 5355 5356

**示例:**

J
jiao_yanlin 已提交
5357
```js
5358 5359
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
5360 5361 5362
});
```

5363
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5364

5365
isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5366

5367
获取指定音量流是否为活跃状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5368

5369 5370 5371 5372
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5373 5374 5375

**参数:**

5376 5377 5378 5379
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5380 5381 5382

**示例:**

J
jiao_yanlin 已提交
5383
```js
5384
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5385
  if (err) {
5386 5387
    console.error(`Failed to obtain the active status of the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5388
  }
5389
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
5390 5391 5392
});
```

5393
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5394

5395
isActive(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5396

5397
获取指定音量流是否为活跃状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5398

5399 5400
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。
L
lwx1059628 已提交
5401

5402 5403 5404 5405 5406 5407 5408
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5409 5410 5411

**返回值:**

5412 5413 5414
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5415 5416 5417

**示例:**

J
jiao_yanlin 已提交
5418
```js
5419 5420
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
5421 5422 5423
});
```

5424
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5425

5426
setRingerMode(mode: AudioRingMode, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5427

5428
设置铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5429

5430 5431 5432 5433 5434 5435 5436 5437
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5438

5439
**参数:**
L
lwx1059628 已提交
5440

5441 5442 5443 5444
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5445 5446 5447

**示例:**

J
jiao_yanlin 已提交
5448
```js
5449 5450 5451 5452
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
  if (err) {
    console.error(`Failed to set the ringer mode.​ ${err}`);
    return;
J
jiao_yanlin 已提交
5453
  }
5454
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
J
jiao_yanlin 已提交
5455
});
L
lwx1059628 已提交
5456 5457
```

5458
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5459

5460
setRingerMode(mode: AudioRingMode): Promise&lt;void&gt;
L
lwx1059628 已提交
5461

5462
设置铃声模式,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5463

5464 5465 5466 5467 5468 5469 5470 5471
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5472 5473 5474

**参数:**

5475 5476 5477
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
L
lwx1059628 已提交
5478 5479 5480

**返回值:**

5481 5482 5483
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5484 5485 5486

**示例:**

J
jiao_yanlin 已提交
5487
```js
5488 5489
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
5490 5491 5492
});
```

5493
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5494

5495
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
L
lwx1059628 已提交
5496

5497
获取铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5498

5499 5500 5501 5502
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5503 5504 5505

**参数:**

5506 5507 5508
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5509 5510 5511

**示例:**

J
jiao_yanlin 已提交
5512
```js
5513 5514 5515 5516 5517 5518
audioManager.getRingerMode((err, value) => {
  if (err) {
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
    return;
  }
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
5519 5520 5521
});
```

5522
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5523

5524
getRingerMode(): Promise&lt;AudioRingMode&gt;
L
lwx1059628 已提交
5525

5526 5527 5528 5529
获取铃声模式,使用Promise方式异步返回结果。

> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。
L
lwx1059628 已提交
5530

5531
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5532 5533 5534

**返回值:**

5535 5536 5537
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5538 5539 5540

**示例:**

J
jiao_yanlin 已提交
5541
```js
5542 5543
audioManager.getRingerMode().then((value) => {
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
5544 5545 5546
});
```

5547
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5548

5549
getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void
L
lwx1059628 已提交
5550

5551
获取音频设备列表,使用callback方式异步返回结果。
L
lwx1059628 已提交
5552

5553 5554 5555 5556
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5557 5558 5559

**参数:**

5560 5561 5562 5563
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
L
lwx1059628 已提交
5564 5565

**示例:**
J
jiao_yanlin 已提交
5566
```js
5567 5568 5569 5570
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the device list. ${err}`);
    return;
J
jiao_yanlin 已提交
5571
  }
5572
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
5573 5574 5575
});
```

5576
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5577

5578
getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;
L
lwx1059628 已提交
5579

5580
获取音频设备列表,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5581

5582 5583 5584 5585 5586 5587 5588 5589 5590 5591
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

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

**参数:**

| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
L
lwx1059628 已提交
5592 5593 5594

**返回值:**

5595 5596 5597
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
L
lwx1059628 已提交
5598 5599 5600

**示例:**

J
jiao_yanlin 已提交
5601
```js
5602 5603
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
5604 5605 5606
});
```

5607
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5608

5609
setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5610

5611
设置设备激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5612

5613 5614 5615 5616
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5617 5618 5619

**参数:**

5620 5621 5622 5623 5624
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5625 5626 5627

**示例:**

J
jiao_yanlin 已提交
5628
```js
5629 5630 5631 5632
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true, (err) => {
  if (err) {
    console.error(`Failed to set the active status of the device. ${err}`);
    return;
J
jiao_yanlin 已提交
5633
  }
5634
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
5635 5636 5637
});
```

5638
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5639

5640
setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise&lt;void&gt;
L
lwx1059628 已提交
5641

5642
设置设备激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5643

5644 5645 5646 5647
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5648 5649 5650

**参数:**

5651 5652 5653 5654 5655 5656 5657 5658 5659 5660
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
| active     | boolean                               | 是   | 设备激活状态。     |

**返回值:**

| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5661 5662 5663

**示例:**

5664

J
jiao_yanlin 已提交
5665
```js
5666 5667 5668
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
  console.info('Promise returned to indicate that the device is set to the active status.');
});
L
lwx1059628 已提交
5669 5670
```

5671
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5672

5673
isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5674

5675
获取指定设备的激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5676

5677 5678 5679 5680
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5681 5682 5683

**参数:**

5684 5685 5686 5687
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
L
lwx1059628 已提交
5688 5689 5690

**示例:**

J
jiao_yanlin 已提交
5691
```js
5692 5693 5694 5695
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the active status of the device. ${err}`);
    return;
J
jiao_yanlin 已提交
5696
  }
5697
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
5698 5699 5700
});
```

5701
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5702

5703
isDeviceActive(deviceType: ActiveDeviceType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5704

5705
获取指定设备的激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5706

5707 5708 5709 5710
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5711 5712 5713

**参数:**

5714 5715 5716 5717 5718 5719 5720 5721 5722
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |

**返回值:**

| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
L
lwx1059628 已提交
5723 5724 5725

**示例:**

J
jiao_yanlin 已提交
5726
```js
5727 5728 5729
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER).then((value) => {
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
});
L
lwx1059628 已提交
5730 5731
```

5732
### setMicrophoneMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5733

5734
setMicrophoneMute(mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5735

5736
设置麦克风静音状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5737

5738 5739 5740 5741 5742 5743
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5744 5745 5746

**参数:**

5747 5748 5749 5750
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
L
lwx1059628 已提交
5751 5752 5753

**示例:**

J
jiao_yanlin 已提交
5754
```js
5755 5756 5757 5758
audioManager.setMicrophoneMute(true, (err) => {
  if (err) {
    console.error(`Failed to mute the microphone. ${err}`);
    return;
J
jiao_yanlin 已提交
5759
  }
5760
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
5761
});
5762 5763
```

5764
### setMicrophoneMute<sup>(deprecated)</sup>
5765

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

5768
设置麦克风静音状态,使用Promise方式异步返回结果。
5769

5770 5771 5772 5773 5774 5775
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

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

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

5777
**参数:**
5778

5779 5780 5781
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
5782

5783
**返回值:**
5784

5785 5786 5787
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
5788

5789
**示例:**
5790

5791 5792 5793 5794 5795
```js
audioManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
});
```
5796

5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808
### isMicrophoneMute<sup>(deprecated)</sup>

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

获取麦克风静音状态,使用callback方式异步返回结果。

> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMicrophoneMute](#ismicrophonemute9)替代。

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
5809 5810 5811

**参数:**

5812 5813 5814
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5815 5816 5817 5818

**示例:**

```js
5819
audioManager.isMicrophoneMute((err, value) => {
5820
  if (err) {
5821
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
5822 5823
    return;
  }
5824
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
5825 5826 5827
});
```

5828
### isMicrophoneMute<sup>(deprecated)</sup>
5829

5830
isMicrophoneMute(): Promise&lt;boolean&gt;
5831

5832
获取麦克风静音状态,使用Promise方式异步返回结果。
5833

5834 5835
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMicrophoneMute](#ismicrophonemute9)替代。
5836

5837
**需要权限:** ohos.permission.MICROPHONE
5838

5839
**系统能力:** SystemCapability.Multimedia.Audio.Device
5840 5841 5842

**返回值:**

5843 5844 5845
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5846 5847 5848 5849

**示例:**

```js
5850 5851
audioManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
5852 5853 5854
});
```

5855
### on('volumeChange')<sup>(deprecated)</sup>
5856

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

5859 5860
> **说明:**
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeManager中的[on](#on9)替代。
5861

5862 5863 5864 5865 5866 5867 5868
监听系统音量变化事件。

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5869 5870 5871

**参数:**

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

**示例:**

```js
5880 5881 5882 5883
audioManager.on('volumeChange', (volumeEvent) => {
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
5884 5885 5886
});
```

5887
### on('ringerModeChange')<sup>(deprecated)</sup>
5888

5889
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
5890

5891
监听铃声模式变化事件。
5892

5893
> **说明:**
5894
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[on('ringerModeChange')](#onringermodechange9)替代。
5895

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

5898 5899 5900 5901 5902 5903 5904 5905
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

**示例:**

```js
5910 5911
audioManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
5912 5913 5914
});
```

5915
### on('deviceChange')<sup>(deprecated)</sup>
5916

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

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

5921 5922 5923 5924
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[on](#on9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
5925 5926 5927

**参数:**

5928 5929 5930 5931
| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |
5932 5933 5934 5935

**示例:**

```js
5936 5937 5938 5939 5940
audioManager.on('deviceChange', (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} `);
5941 5942 5943
});
```

5944
### off('deviceChange')<sup>(deprecated)</sup>
5945

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

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

5950 5951
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[off](#off9)替代。
5952

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

5955 5956 5957 5958 5959 5960
**参数:**

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

**示例:**

```js
5965 5966
audioManager.off('deviceChange', (deviceChanged) => {
  console.info('Should be no callback.');
5967 5968 5969
});
```

5970
### on('interrupt')<sup>(deprecated)</sup>
5971

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

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

5976
[on('audioInterrupt')](#onaudiointerrupt9)作用一致,均用于监听焦点变化。为无音频流的场景(未曾创建AudioRenderer对象),比如FM、语音唤醒等提供焦点变化监听功能。
5977

5978 5979 5980 5981
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer
5982 5983 5984

**参数:**

5985 5986 5987 5988 5989
| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 是   | 音频打断事件回调方法。                                       |
5990 5991 5992 5993

**示例:**

```js
5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006
let interAudioInterrupt = {
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
};
audioManager.on('interrupt', interAudioInterrupt, (InterruptAction) => {
  if (InterruptAction.actionType === 0) {
    console.info('An event to gain the audio focus starts.');
    console.info(`Focus gain event: ${InterruptAction} `);
  }
  if (InterruptAction.actionType === 1) {
    console.info('An audio interruption event starts.');
    console.info(`Audio interruption event: ${InterruptAction} `);
6007 6008 6009 6010
  }
});
```

6011
### off('interrupt')<sup>(deprecated)</sup>
6012

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

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

6017 6018
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
6019

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

6022 6023 6024 6025 6026 6027 6028
**参数:**

| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 否   | 音频打断事件回调方法。                                       |
6029 6030 6031 6032

**示例:**

```js
6033 6034 6035 6036 6037 6038 6039 6040 6041 6042
let interAudioInterrupt = {
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
};
audioManager.off('interrupt', interAudioInterrupt, (InterruptAction) => {
  if (InterruptAction.actionType === 0) {
      console.info('An event to release the audio focus starts.');
      console.info(`Focus release event: ${InterruptAction} `);
  }
6043 6044
});
```