js-apis-audio.md 220.4 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 = [{
J
jiao_yanlin 已提交
2455 2456 2457 2458 2459 2460 2461
    deviceRole : audio.DeviceRole.INPUT_DEVICE,
    deviceType : audio.DeviceType.EARPIECE,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2462
    channelMasks : [0],
J
jiao_yanlin 已提交
2463 2464 2465 2466
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];
2467

2468 2469 2470 2471 2472 2473
async function selectInputDevice(){
  audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select input devices result callback: SUCCESS'); }
2474 2475
  });
}
W
wangtao 已提交
2476 2477
```

2478
### selectInputDevice<sup>9+</sup>
W
wangtao 已提交
2479

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

2482
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2483

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2487 2488 2489

**参数:**

2490 2491 2492 2493 2494 2495 2496 2497 2498
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| inputAudioDevices           | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输入设备类。               |

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输入设备结果。 |
W
wangtao 已提交
2499 2500 2501 2502

**示例:**

```js
J
jiao_yanlin 已提交
2503 2504 2505 2506 2507 2508 2509 2510
let inputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.INPUT_DEVICE,
    deviceType : audio.DeviceType.EARPIECE,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2511
    channelMasks : [0],
J
jiao_yanlin 已提交
2512 2513 2514 2515
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];
W
wangtao 已提交
2516

2517 2518 2519 2520 2521 2522 2523
async function getRoutingManager(){
    audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor).then(() => {
      console.info('Select input devices result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    });
}
W
wangtao 已提交
2524 2525
```

2526
### setCommunicationDevice<sup>9+</sup>
W
wangtao 已提交
2527

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

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

2532
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2533 2534 2535

**参数:**

2536 2537 2538 2539 2540
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
W
wangtao 已提交
2541 2542 2543 2544

**示例:**

```js
2545
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true, (err) => {
W
wangtao 已提交
2546
  if (err) {
2547
    console.error(`Failed to set the active status of the device. ${err}`);
W
wangtao 已提交
2548 2549
    return;
  }
2550
  console.info('Callback invoked to indicate that the device is set to the active status.');
W
wangtao 已提交
2551 2552 2553
});
```

2554
### setCommunicationDevice<sup>9+</sup>
W
wangtao 已提交
2555

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

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

2560
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2561 2562 2563

**参数:**

2564 2565 2566 2567
| 参数名     | 类型                                                   | 必填 | 说明               |
| ---------- | ----------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9)  | 是   | 活跃音频设备类型。 |
| active     | boolean                                               | 是   | 设备激活状态。     |
W
wangtao 已提交
2568 2569 2570

**返回值:**

2571 2572 2573
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
W
wangtao 已提交
2574 2575 2576 2577

**示例:**

```js
2578
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true).then(() => {
2579
  console.info('Promise returned to indicate that the device is set to the active status.');
W
wangtao 已提交
2580 2581 2582
});
```

2583
### isCommunicationDeviceActive<sup>9+</sup>
2584

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

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

2589
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2590 2591 2592

**参数:**

2593 2594 2595 2596
| 参数名     | 类型                                                  | 必填 | 说明                     |
| ---------- | ---------------------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;                         | 是   | 回调返回设备的激活状态。 |
W
wangtao 已提交
2597 2598 2599 2600

**示例:**

```js
2601
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER, (err, value) => {
W
wangtao 已提交
2602
  if (err) {
2603
    console.error(`Failed to obtain the active status of the device. ${err}`);
W
wangtao 已提交
2604 2605
    return;
  }
2606
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
W
wangtao 已提交
2607 2608 2609
});
```

2610
### isCommunicationDeviceActive<sup>9+</sup>
2611

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

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

2616
**系统能力:** SystemCapability.Multimedia.Audio.Communication
W
wangtao 已提交
2617 2618 2619

**参数:**

2620 2621 2622
| 参数名     | 类型                                                  | 必填 | 说明               |
| ---------- | ---------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。 |
W
wangtao 已提交
2623 2624 2625

**返回值:**

2626 2627 2628
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
W
wangtao 已提交
2629 2630 2631 2632

**示例:**

```js
2633
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER).then((value) => {
2634
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
W
wangtao 已提交
2635 2636 2637
});
```

2638
### selectOutputDevice<sup>9+</sup>
W
wangtao 已提交
2639

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

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

2644 2645 2646
**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2647 2648 2649

**参数:**

2650 2651 2652 2653
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |
W
wangtao 已提交
2654 2655 2656

**示例:**
```js
2657
let outputAudioDeviceDescriptor = [{
J
jiao_yanlin 已提交
2658 2659 2660 2661 2662 2663 2664
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2665
    channelMasks : [0],
J
jiao_yanlin 已提交
2666 2667 2668 2669 2670
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];

2671 2672 2673 2674 2675 2676
async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select output devices result callback: SUCCESS'); }
2677 2678
  });
}
W
wangtao 已提交
2679 2680
```

2681
### selectOutputDevice<sup>9+</sup>
W
wangtao 已提交
2682

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

2685
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2686

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
W
wangtao 已提交
2690 2691 2692

**参数:**

2693 2694 2695
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
W
wangtao 已提交
2696 2697 2698

**返回值:**

2699 2700 2701
| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |
W
wangtao 已提交
2702 2703 2704 2705

**示例:**

```js
J
jiao_yanlin 已提交
2706 2707 2708 2709 2710 2711 2712 2713
let outputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2714
    channelMasks : [0],
J
jiao_yanlin 已提交
2715 2716 2717 2718
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];
2719

2720 2721 2722 2723 2724
async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices result promise: SUCCESS');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
2725 2726 2727
  });
}
```
2728

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

2731
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
2732 2733 2734

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
2738 2739 2740

**参数:**

2741 2742 2743 2744 2745
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| filter                      | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |
2746 2747 2748

**示例:**
```js
2749
let outputAudioRendererFilter = {
2750 2751 2752 2753 2754 2755
  uid : 20010041,
  rendererInfo : {
    contentType : audio.ContentType.CONTENT_TYPE_MUSIC,
    streamUsage : audio.StreamUsage.STREAM_USAGE_MEDIA,
    rendererFlags : 0 },
  rendererId : 0 };
J
jiao_yanlin 已提交
2756
  
2757
let outputAudioDeviceDescriptor = [{
J
jiao_yanlin 已提交
2758 2759 2760 2761 2762 2763 2764
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2765
    channelMasks : [0],
J
jiao_yanlin 已提交
2766 2767 2768 2769
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];
2770

2771 2772 2773 2774 2775 2776
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'); }
2777 2778 2779
  });
}
```
2780

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

2783
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
2784 2785 2786

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
2790 2791 2792

**参数:**

2793 2794 2795 2796
| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| filter                | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices    | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
2797 2798 2799

**返回值:**

2800 2801 2802
| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;void&gt;   | Promise返回选择输出设备结果。 |
2803 2804 2805 2806

**示例:**

```js
2807
let outputAudioRendererFilter = {
2808 2809 2810 2811 2812 2813
  uid : 20010041,
  rendererInfo : {
    contentType : audio.ContentType.CONTENT_TYPE_MUSIC,
    streamUsage : audio.StreamUsage.STREAM_USAGE_MEDIA,
    rendererFlags : 0 },
  rendererId : 0 };
J
jiao_yanlin 已提交
2814

2815
let outputAudioDeviceDescriptor = [{
J
jiao_yanlin 已提交
2816 2817 2818 2819 2820 2821 2822
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
J
jiao_yanlin 已提交
2823
    channelMasks : [0],
J
jiao_yanlin 已提交
2824 2825 2826 2827
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
}];
2828

2829 2830 2831 2832 2833 2834
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}`);
  })
2835
}
2836 2837
```

2838 2839 2840 2841 2842 2843
## AudioRendererChangeInfoArray<sup>9+</sup>

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

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

2844
## AudioRendererChangeInfo<sup>9+</sup>
2845

2846
描述音频渲染器更改信息。
2847

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

2850 2851 2852
| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
2853
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口。 |
2854
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
2855
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
2856 2857 2858 2859

**示例:**

```js
J
jiao_yanlin 已提交
2860 2861 2862 2863

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

const audioManager = audio.getAudioManager();
2864 2865 2866 2867
let audioStreamManager;
let resultFlag = false;

audioManager.getStreamManager((err, data) => {
2868
  if (err) {
2869 2870 2871 2872
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
  } else {
    audioStreamManager = data;
    console.info('Get AudioStream Manager : Success');
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
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}`);
    }
  }
2901 2902 2903
});
```

2904 2905 2906 2907 2908 2909 2910

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

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

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

2911
## AudioCapturerChangeInfo<sup>9+</sup>
2912

2913
描述音频采集器更改信息。
2914

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

2917 2918 2919
| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
2920
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口。 |
2921
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)  | 是   | 否   | 音频采集器信息。               |
2922
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
2923 2924 2925 2926

**示例:**

```js
2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964
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}`);
    }
  }
2965 2966 2967
});
```

2968 2969 2970 2971
## AudioDeviceDescriptors

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

2972
## AudioDeviceDescriptor
2973

2974
描述音频设备。
2975

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

2978 2979 2980 2981 2982 2983 2984 2985 2986 2987
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| 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;        | 是   | 否   | 支持的通道掩码。 |
2988 2989 2990
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口。 |
2991 2992 2993 2994

**示例:**

```js
2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
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');
3012 3013 3014 3015
  }
});
```

3016
## AudioRendererFilter<sup>9+</sup>
3017

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

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

3022
| 名称          | 类型                                     | 必填 | 说明          |
3023 3024 3025 3026
| -------------| ---------------------------------------- | ---- | -------------- |
| uid          | number                                   |  是  | 表示应用ID。<br> **系统能力:** SystemCapability.Multimedia.Audio.Core|
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
3027 3028 3029 3030

**示例:**

```js
3031 3032 3033 3034 3035 3036 3037
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
3038 3039
```

3040
## AudioRenderer<sup>8+</sup>
3041

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

3044
### 属性
3045

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

3048 3049 3050
| 名称  | 类型                     | 可读 | 可写 | 说明               |
| ----- | -------------------------- | ---- | ---- | ------------------ |
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
3051 3052 3053 3054

**示例:**

```js
3055
let state = audioRenderer.state;
3056 3057
```

3058
### getRendererInfo<sup>8+</sup>
3059

3060
getRendererInfo(callback: AsyncCallback<AudioRendererInfo\>): void
3061

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

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

3066
**参数:**
3067

3068 3069 3070
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
3071 3072 3073 3074

**示例:**

```js
3075 3076 3077 3078 3079
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}`);
3080 3081 3082
});
```

3083
### getRendererInfo<sup>8+</sup>
3084

3085
getRendererInfo(): Promise<AudioRendererInfo\>
3086

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

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

3091 3092 3093 3094 3095
**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
3096 3097 3098 3099

**示例:**

```js
3100 3101 3102 3103 3104 3105 3106
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}`);
3107 3108 3109
});
```

3110
### getStreamInfo<sup>8+</sup>
3111

3112
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
3113

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

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

3118
**参数:**
3119

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

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

```js
3127 3128 3129 3130 3131 3132
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}`);
3133 3134 3135
});
```

3136
### getStreamInfo<sup>8+</sup>
3137

3138
getStreamInfo(): Promise<AudioStreamInfo\>
3139

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

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

3144
**返回值:**
3145

3146 3147 3148
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | Promise返回音频流信息. |
3149

3150
**示例:**
J
jiao_yanlin 已提交
3151 3152

```js
3153 3154 3155 3156 3157 3158 3159 3160 3161
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}`);
});
3162 3163
```

3164
### getAudioStreamId<sup>9+</sup>
3165

3166
getAudioStreamId(callback: AsyncCallback<number\>): void
3167

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

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

3172
**参数:**
3173

3174 3175 3176
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
3177

3178
**示例:**
J
jiao_yanlin 已提交
3179 3180

```js
3181 3182
audioRenderer.getAudioStreamId((err, streamid) => {
  console.info(`Renderer GetStreamId: ${streamid}`);
3183 3184 3185
});
```

3186
### getAudioStreamId<sup>9+</sup>
3187

3188
getAudioStreamId(): Promise<number\>
3189

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

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

3194
**返回值:**
3195

3196 3197 3198
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
3199

3200
**示例:**
J
jiao_yanlin 已提交
3201 3202

```js
3203 3204 3205 3206 3207
audioRenderer.getAudioStreamId().then((streamid) => {
  console.info(`Renderer getAudioStreamId: ${streamid}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3208 3209
```

3210
### start<sup>8+</sup>
3211

3212
start(callback: AsyncCallback<void\>): void
3213

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

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

3218
**参数:**
3219

3220 3221 3222
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
3223

3224
**示例:**
J
jiao_yanlin 已提交
3225 3226

```js
3227 3228 3229 3230 3231
audioRenderer.start((err) => {
  if (err) {
    console.error('Renderer start failed.');
  } else {
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3232
  }
3233 3234 3235
});
```

3236
### start<sup>8+</sup>
3237

3238
start(): Promise<void\>
3239

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

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

3244
**返回值:**
3245

3246 3247 3248
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3249

3250
**示例:**
J
jiao_yanlin 已提交
3251 3252

```js
3253 3254 3255 3256 3257
audioRenderer.start().then(() => {
  console.info('Renderer started');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3258 3259
```

3260
### pause<sup>8+</sup>
3261

3262
pause(callback: AsyncCallback\<void>): void
3263

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

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

3268
**参数:**
3269

3270 3271 3272
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3273

3274
**示例:**
J
jiao_yanlin 已提交
3275 3276

```js
3277 3278 3279 3280 3281
audioRenderer.pause((err) => {
  if (err) {
    console.error('Renderer pause failed');
  } else {
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
3282
  }
3283 3284 3285
});
```

3286
### pause<sup>8+</sup>
3287

3288
pause(): Promise\<void>
3289

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

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

3294
**返回值:**
3295

3296 3297 3298
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3299 3300 3301 3302

**示例:**

```js
3303 3304 3305 3306 3307
audioRenderer.pause().then(() => {
  console.info('Renderer paused');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3308 3309
```

3310
### drain<sup>8+</sup>
3311

3312
drain(callback: AsyncCallback\<void>): void
3313

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

3316
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3317 3318 3319

**参数:**

3320 3321 3322
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3323 3324 3325 3326

**示例:**

```js
3327
audioRenderer.drain((err) => {
3328
  if (err) {
3329 3330 3331
    console.error('Renderer drain failed');
  } else {
    console.info('Renderer drained.');
3332 3333 3334 3335
  }
});
```

3336
### drain<sup>8+</sup>
3337

3338
drain(): Promise\<void>
3339

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

3342
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3343 3344 3345

**返回值:**

3346 3347 3348
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3349 3350 3351 3352

**示例:**

```js
3353 3354 3355 3356
audioRenderer.drain().then(() => {
  console.info('Renderer drained successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3357 3358 3359
});
```

3360
### stop<sup>8+</sup>
3361

3362
stop(callback: AsyncCallback\<void>): void
3363

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

3366
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3367 3368 3369

**参数:**

3370 3371 3372
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3373 3374 3375 3376

**示例:**

```js
3377
audioRenderer.stop((err) => {
3378
  if (err) {
3379
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
3380
  } else {
3381
    console.info('Renderer stopped.');
3382
  }
3383
});
3384 3385
```

3386
### stop<sup>8+</sup>
3387

3388
stop(): Promise\<void>
3389

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

3392
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3393 3394 3395

**返回值:**

3396 3397 3398
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3399 3400 3401 3402

**示例:**

```js
3403 3404 3405 3406
audioRenderer.stop().then(() => {
  console.info('Renderer stopped successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3407 3408 3409
});
```

3410
### release<sup>8+</sup>
3411

3412
release(callback: AsyncCallback\<void>): void
3413

3414
释放音频渲染器。使用callback方式异步返回结果。
3415

3416
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3417 3418 3419

**参数:**

3420 3421 3422
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3423

3424 3425 3426
**示例:**

```js
3427
audioRenderer.release((err) => {
3428
  if (err) {
3429 3430 3431
    console.error('Renderer release failed');
  } else {
    console.info('Renderer released.');
3432 3433 3434 3435
  }
});
```

3436
### release<sup>8+</sup>
3437

3438
release(): Promise\<void>
3439

3440
释放渲染器。使用Promise方式异步返回结果。
3441

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

3444
**返回值:**
3445

3446 3447 3448
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3449

3450 3451 3452
**示例:**

```js
3453 3454 3455 3456
audioRenderer.release().then(() => {
  console.info('Renderer released successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3457 3458 3459
});
```

3460
### write<sup>8+</sup>
3461

3462
write(buffer: ArrayBuffer, callback: AsyncCallback\<number>): void
3463

3464
写入缓冲区。使用callback方式异步返回结果。
3465

3466
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3467 3468 3469

**参数:**

3470 3471 3472 3473
| 参数名   | 类型                   | 必填 | 说明                                                |
| -------- | ---------------------- | ---- | --------------------------------------------------- |
| buffer   | ArrayBuffer            | 是   | 要写入缓冲区的数据。                                |
| callback | AsyncCallback\<number> | 是   | 回调如果成功,返回写入的字节数,否则返回errorcode。 |
3474 3475 3476

**示例:**

3477 3478 3479 3480 3481 3482 3483
```js
let bufferSize;
audioRenderer.getBufferSize().then((data)=> {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3484
  });
3485 3486 3487 3488 3489
console.info(`Buffer size: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
3490
}
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501
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}`);
  }
});
3502 3503
```

3504
### write<sup>8+</sup>
3505

3506
write(buffer: ArrayBuffer): Promise\<number>
3507

3508
写入缓冲区。使用Promise方式异步返回结果。
3509

3510
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3511 3512 3513

**返回值:**

3514 3515 3516
| 类型             | 说明                                                         |
| ---------------- | ------------------------------------------------------------ |
| Promise\<number> | Promise返回结果,如果成功,返回写入的字节数,否则返回errorcode。 |
3517 3518 3519 3520

**示例:**

```js
3521 3522 3523 3524 3525 3526
let bufferSize;
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3527
  });
3528 3529 3530 3531 3532
console.info(`BufferSize: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
3533
}
3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546
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}`);
});
3547 3548
```

3549
### getAudioTime<sup>8+</sup>
3550

3551
getAudioTime(callback: AsyncCallback\<number>): void
3552

3553
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
3554

3555
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3556 3557 3558

**参数:**

3559 3560 3561
| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |
3562 3563 3564 3565

**示例:**

```js
3566 3567
audioRenderer.getAudioTime((err, timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
3568 3569 3570
});
```

3571
### getAudioTime<sup>8+</sup>
3572

3573
getAudioTime(): Promise\<number>
3574

3575
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
3576

3577
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3578 3579 3580

**返回值:**

3581 3582 3583
| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |
3584 3585 3586 3587

**示例:**

```js
3588 3589 3590 3591
audioRenderer.getAudioTime().then((timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3592 3593 3594
});
```

3595
### getBufferSize<sup>8+</sup>
3596

3597
getBufferSize(callback: AsyncCallback\<number>): void
3598

3599
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
3600

3601
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3602 3603 3604

**参数:**

3605 3606 3607
| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |
3608 3609 3610 3611

**示例:**

```js
3612
let bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
3613
  if (err) {
3614
    console.error('getBufferSize error');
3615 3616 3617 3618
  }
});
```

3619
### getBufferSize<sup>8+</sup>
3620

3621
getBufferSize(): Promise\<number>
3622

3623
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
3624

3625
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3626 3627 3628

**返回值:**

3629 3630 3631
| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |
3632 3633 3634 3635

**示例:**

```js
3636 3637 3638 3639 3640 3641
let bufferSize;
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
}).catch((err) => {
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3642 3643 3644
});
```

3645
### setRenderRate<sup>8+</sup>
3646

3647
setRenderRate(rate: AudioRendererRate, callback: AsyncCallback\<void>): void
3648

3649
设置音频渲染速率。使用callback方式异步返回结果。
3650

3651
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3652 3653 3654

**参数:**

3655 3656 3657 3658
| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |
J
jiao_yanlin 已提交
3659

3660
**示例:**
3661

3662 3663 3664 3665 3666 3667 3668 3669 3670
```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.');
  }
});
```
3671

3672
### setRenderRate<sup>8+</sup>
3673

3674
setRenderRate(rate: AudioRendererRate): Promise\<void>
3675

3676
设置音频渲染速率。使用Promise方式异步返回结果。
3677

3678
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3679 3680 3681

**参数:**

3682 3683 3684
| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
3685 3686 3687

**返回值:**

3688 3689 3690
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |
3691 3692 3693 3694

**示例:**

```js
3695 3696 3697 3698 3699
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
  console.info('setRenderRate SUCCESS');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3700 3701
```

3702
### getRenderRate<sup>8+</sup>
3703

3704
getRenderRate(callback: AsyncCallback\<AudioRendererRate>): void
3705

3706
获取当前渲染速率。使用callback方式异步返回结果。
3707

3708
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3709 3710 3711

**参数:**

3712 3713 3714
| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
3715 3716

**示例:**
J
jiao_yanlin 已提交
3717

3718 3719 3720 3721
```js
audioRenderer.getRenderRate((err, renderrate) => {
  console.info(`getRenderRate: ${renderrate}`);
});
3722 3723
```

3724
### getRenderRate<sup>8+</sup>
3725

3726
getRenderRate(): Promise\<AudioRendererRate>
3727

3728
获取当前渲染速率。使用Promise方式异步返回结果。
3729

3730
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3731 3732 3733

**返回值:**

3734 3735 3736
| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
3737 3738 3739 3740

**示例:**

```js
3741 3742 3743 3744 3745
audioRenderer.getRenderRate().then((renderRate) => {
  console.info(`getRenderRate: ${renderRate}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3746
```
3747
### setInterruptMode<sup>9+</sup>
3748

3749
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
3750

3751
设置应用的焦点模型。使用Promise异步回调。
3752

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

3755
**参数:**
3756

3757 3758 3759
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
3760

3761
**返回值:**
3762

3763 3764 3765
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3766

3767 3768
**示例:**

J
jiao_yanlin 已提交
3769
```js
3770 3771 3772 3773 3774 3775 3776 3777
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
  console.info('setInterruptMode Success!');
}).catch((err) => {
  console.error(`setInterruptMode Fail: ${err}`);
});
```
### setInterruptMode<sup>9+</sup>
3778

3779
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
3780

3781
设置应用的焦点模型。使用Callback回调返回执行结果。
3782

3783
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798

**参数:**

| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
|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 已提交
3799
  }
3800
  console.info('setInterruptMode Success!');
3801 3802 3803
});
```

3804 3805 3806
### setVolume<sup>9+</sup>

setVolume(volume: number): Promise&lt;void&gt;
3807

3808
设置应用的音量。使用Promise异步回调。
3809

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

3812
**参数:**
3813

3814 3815 3816
| 参数名     | 类型     | 必填   | 说明        |
| ---------- | ------- | ------ | ---------- |
| volume     | number  | 是     | 音量值。  |
3817

3818
**返回值:**
3819

3820 3821 3822
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3823

3824 3825
**示例:**

J
jiao_yanlin 已提交
3826
```js
3827 3828 3829 3830
audioRenderer.setVolume(10).then(data=>{
  console.info('setVolume Success!');
}).catch((err) => {
  console.error(`setVolume Fail: ${err}`);
J
jiao_yanlin 已提交
3831
});
3832 3833
```
### setVolume<sup>9+</sup>
J
jiao_yanlin 已提交
3834

3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853
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 已提交
3854
  }
3855
  console.info('setVolume Success!');
3856 3857 3858
});
```

3859
### on('audioInterrupt')<sup>9+</sup>
3860

3861
on(type: 'audioInterrupt', callback: Callback\<InterruptEvent>): void
3862

3863
监听音频中断事件。使用callback获取中断事件。
Z
zengyawen 已提交
3864

3865
[on('interrupt')](#oninterruptdeprecated)一致,该接口在AudioRenderer对象start、pause、stop等事件发生前已经主动获取焦点,不需要开发者主动发起焦点申请。
3866

3867
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
Z
zengyawen 已提交
3868

3869
**参数:**
M
mamingshuai 已提交
3870

3871 3872 3873 3874
| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'audioInterrupt'(中断事件被触发,音频播放被中断。) |
| callback | Callback<[InterruptEvent](#interruptevent9)> | 是   | 被监听的中断事件的回调。                                     |
Z
zengyawen 已提交
3875

3876
**错误码:**
Z
zengyawen 已提交
3877

3878
以下错误码的详细介绍请参见[音频错误码](../errorcodes/errorcode-audio.md)
L
lwx1059628 已提交
3879

3880 3881
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
3882
| 6800101 | if input parameter value error              |
Z
zengyawen 已提交
3883

3884 3885 3886 3887 3888
**示例:**

```js
let isPlay;
let started;
3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935
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 已提交
3936 3937
```

3938
### on('markReach')<sup>8+</sup>
3939

3940
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
3941

3942
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被调用。
3943

3944 3945 3946 3947 3948 3949 3950 3951 3952
**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                    |
3953 3954 3955 3956

**示例:**

```js
3957 3958 3959 3960 3961
audioRenderer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
  }
});
3962 3963
```

Z
zengyawen 已提交
3964

3965
### off('markReach') <sup>8+</sup>
L
lwx1059628 已提交
3966

3967 3968 3969
off(type: 'markReach'): void

取消订阅标记事件。
Z
zengyawen 已提交
3970

3971
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3972

3973 3974 3975 3976 3977
**参数:**

| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |
Z
zengyawen 已提交
3978 3979 3980

**示例:**

J
jiao_yanlin 已提交
3981
```js
3982
audioRenderer.off('markReach');
Z
zengyawen 已提交
3983 3984
```

3985
### on('periodReach') <sup>8+</sup>
Z
zengyawen 已提交
3986

3987
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
3988

3989
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,触发回调并返回设定的值。
Z
zengyawen 已提交
3990

3991
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3992 3993 3994

**参数:**

3995 3996 3997 3998 3999
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                      |
Z
zengyawen 已提交
4000 4001 4002

**示例:**

J
jiao_yanlin 已提交
4003
```js
4004 4005 4006 4007
audioRenderer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
  }
L
lwx1059628 已提交
4008
});
Z
zengyawen 已提交
4009 4010
```

4011
### off('periodReach') <sup>8+</sup>
Z
zengyawen 已提交
4012

4013
off(type: 'periodReach'): void
Z
zengyawen 已提交
4014

4015
取消订阅标记事件。
Z
zengyawen 已提交
4016

4017
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4018

4019
**参数:**
Z
zengyawen 已提交
4020

4021 4022 4023
| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |
Z
zengyawen 已提交
4024 4025 4026

**示例:**

J
jiao_yanlin 已提交
4027
```js
4028
audioRenderer.off('periodReach')
Z
zengyawen 已提交
4029 4030
```

4031
### on('stateChange') <sup>8+</sup>
Z
zengyawen 已提交
4032

4033
on(type: 'stateChange', callback: Callback<AudioState\>): void
Z
zengyawen 已提交
4034

4035
订阅监听状态变化。
Z
zengyawen 已提交
4036

4037
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4038 4039 4040

**参数:**

4041 4042 4043 4044
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
Z
zengyawen 已提交
4045 4046 4047

**示例:**

J
jiao_yanlin 已提交
4048
```js
4049 4050 4051 4052 4053 4054 4055
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 已提交
4056
});
Z
zengyawen 已提交
4057 4058
```

4059
## AudioCapturer<sup>8+</sup>
Z
zengyawen 已提交
4060

4061
提供音频采集的相关接口。在调用AudioCapturer的接口前,需要先通过[createAudioCapturer](#audiocreateaudiocapturer8)创建实例。
Z
zengyawen 已提交
4062

4063
### 属性
Z
zengyawen 已提交
4064

4065
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4066

4067 4068 4069
| 名称  | 类型                     | 可读 | 可写 | 说明             |
| :---- | :------------------------- | :--- | :--- | :--------------- |
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
Z
zengyawen 已提交
4070 4071 4072

**示例:**

J
jiao_yanlin 已提交
4073
```js
4074
let state = audioCapturer.state;
Z
zengyawen 已提交
4075 4076
```

4077
### getCapturerInfo<sup>8+</sup>
4078

4079
getCapturerInfo(callback: AsyncCallback<AudioCapturerInfo\>): void
4080

4081
获取采集器信息。使用callback方式异步返回结果。
4082

4083
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4084 4085 4086

**参数:**

4087 4088 4089
| 参数名   | 类型                              | 必填 | 说明                                 |
| :------- | :-------------------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<AudioCapturerInfo\> | 是   | 使用callback方式异步返回采集器信息。 |
4090 4091 4092 4093

**示例:**

```js
4094 4095 4096 4097 4098 4099 4100 4101
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}`);
  }
4102 4103 4104 4105
});
```


4106
### getCapturerInfo<sup>8+</sup>
4107

4108
getCapturerInfo(): Promise<AudioCapturerInfo\>
4109

4110 4111 4112
获取采集器信息。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4113 4114 4115

**返回值:**

4116 4117 4118
| 类型                                              | 说明                                |
| :------------------------------------------------ | :---------------------------------- |
| Promise<[AudioCapturerInfo](#audiocapturerinfo)\> | 使用Promise方式异步返回采集器信息。 |
4119 4120 4121 4122

**示例:**

```js
4123 4124 4125 4126 4127 4128 4129 4130 4131
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');
  }
4132
}).catch((err) => {
4133
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
4134 4135 4136
});
```

4137
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4138

4139
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
Z
zengyawen 已提交
4140

4141
获取采集器流信息。使用callback方式异步返回结果。
Z
zengyawen 已提交
4142

4143
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4144 4145 4146

**参数:**

4147 4148 4149
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
Z
zengyawen 已提交
4150 4151 4152

**示例:**

J
jiao_yanlin 已提交
4153
```js
4154
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4155
  if (err) {
4156
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4157
  } else {
4158 4159 4160 4161 4162
    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 已提交
4163
  }
L
lwx1059628 已提交
4164
});
Z
zengyawen 已提交
4165 4166
```

4167
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4168

4169
getStreamInfo(): Promise<AudioStreamInfo\>
Z
zengyawen 已提交
4170

4171
获取采集器流信息。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4172

4173
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4174 4175 4176

**返回值:**

4177 4178 4179
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
Z
zengyawen 已提交
4180 4181 4182

**示例:**

J
jiao_yanlin 已提交
4183
```js
4184 4185 4186 4187 4188 4189
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 已提交
4190
}).catch((err) => {
4191
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4192
});
Z
zengyawen 已提交
4193 4194
```

4195
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4196

4197
getAudioStreamId(callback: AsyncCallback<number\>): void
Z
zengyawen 已提交
4198

4199
获取音频流id,使用callback方式异步返回结果。
Z
zengyawen 已提交
4200

4201
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4202 4203 4204

**参数:**

4205 4206 4207
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
Z
zengyawen 已提交
4208 4209 4210

**示例:**

J
jiao_yanlin 已提交
4211
```js
4212 4213
audioCapturer.getAudioStreamId((err, streamid) => {
  console.info(`audioCapturer GetStreamId: ${streamid}`);
L
lwx1059628 已提交
4214
});
Z
zengyawen 已提交
4215 4216
```

4217
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4218

4219
getAudioStreamId(): Promise<number\>
Z
zengyawen 已提交
4220

4221
获取音频流id,使用Promise方式异步返回结果。
Z
zengyawen 已提交
4222

4223
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4224 4225 4226

**返回值:**

4227 4228 4229
| 类型             | 说明                   |
| :----------------| :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
Z
zengyawen 已提交
4230 4231 4232

**示例:**

J
jiao_yanlin 已提交
4233
```js
4234 4235
audioCapturer.getAudioStreamId().then((streamid) => {
  console.info(`audioCapturer getAudioStreamId: ${streamid}`);
L
lwx1059628 已提交
4236
}).catch((err) => {
4237
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4238
});
Z
zengyawen 已提交
4239 4240
```

4241
### start<sup>8+</sup>
Z
zengyawen 已提交
4242

4243
start(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4244

4245
启动音频采集器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4246

4247
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4248 4249 4250

**参数:**

4251 4252 4253
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4254 4255 4256

**示例:**

J
jiao_yanlin 已提交
4257
```js
4258
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
4259
  if (err) {
4260
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
4261
  } else {
4262
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
4263
  }
L
lwx1059628 已提交
4264
});
Z
zengyawen 已提交
4265 4266 4267
```


4268
### start<sup>8+</sup>
Z
zengyawen 已提交
4269

4270
start(): Promise<void\>
Z
zengyawen 已提交
4271

4272 4273 4274
启动音频采集器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4275 4276 4277

**返回值:**

4278 4279 4280
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4281 4282 4283

**示例:**

J
jiao_yanlin 已提交
4284
```js
4285 4286 4287 4288 4289 4290 4291 4292
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 已提交
4293
}).catch((err) => {
4294
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
L
lwx1059628 已提交
4295
});
Z
zengyawen 已提交
4296 4297 4298 4299
```

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

4300
stop(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方式异步返回结果。 |
Z
zengyawen 已提交
4311 4312 4313

**示例:**

J
jiao_yanlin 已提交
4314
```js
4315
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
4316
  if (err) {
4317
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
4318
  } else {
4319
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
4320
  }
L
lwx1059628 已提交
4321
});
Z
zengyawen 已提交
4322 4323
```

4324

Z
zengyawen 已提交
4325 4326
### stop<sup>8+</sup>

4327
stop(): 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
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 已提交
4348
}).catch((err) => {
4349
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4350
});
Z
zengyawen 已提交
4351 4352 4353 4354
```

### release<sup>8+</sup>

4355
release(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4356

4357
释放采集器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4358

4359
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4360 4361 4362

**参数:**

4363 4364 4365
| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
| callback | AsyncCallback<void\> | 是   | Callback used to return the result. |
Z
zengyawen 已提交
4366 4367 4368

**示例:**

J
jiao_yanlin 已提交
4369
```js
4370
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
4371
  if (err) {
4372
    console.error('capturer release failed');
J
jiao_yanlin 已提交
4373
  } else {
4374
    console.info('capturer released.');
J
jiao_yanlin 已提交
4375
  }
L
lwx1059628 已提交
4376
});
Z
zengyawen 已提交
4377 4378
```

4379

Z
zengyawen 已提交
4380 4381
### release<sup>8+</sup>

4382
release(): Promise<void\>
Z
zengyawen 已提交
4383

4384
释放采集器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4385

4386
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4387 4388 4389

**返回值:**

4390 4391 4392
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4393 4394 4395

**示例:**

J
jiao_yanlin 已提交
4396
```js
4397 4398 4399 4400 4401 4402
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 已提交
4403
}).catch((err) => {
4404
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4405
});
Z
zengyawen 已提交
4406 4407
```

4408
### read<sup>8+</sup>
Z
zengyawen 已提交
4409

4410
read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void
Z
zengyawen 已提交
4411

4412
读入缓冲区。使用callback方式异步返回结果。
Z
zengyawen 已提交
4413

4414
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4415 4416 4417

**参数:**

4418 4419 4420 4421 4422
| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |
Z
zengyawen 已提交
4423 4424 4425

**示例:**

J
jiao_yanlin 已提交
4426
```js
J
jiao_yanlin 已提交
4427
let bufferSize;
4428 4429
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4430 4431
  bufferSize = data;
  }).catch((err) => {
4432
    console.error(`AudioFrameworkRecLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4433
  });
4434 4435 4436
audioCapturer.read(bufferSize, true, async(err, buffer) => {
  if (!err) {
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
4437
  }
L
lwx1059628 已提交
4438
});
Z
zengyawen 已提交
4439 4440
```

4441
### read<sup>8+</sup>
Z
zengyawen 已提交
4442

4443
read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>
Z
zengyawen 已提交
4444

4445
读入缓冲区。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4446

4447 4448 4449 4450 4451 4452 4453 4454
**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |
Z
zengyawen 已提交
4455 4456 4457

**返回值:**

4458 4459 4460
| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |
Z
zengyawen 已提交
4461 4462 4463

**示例:**

J
jiao_yanlin 已提交
4464
```js
J
jiao_yanlin 已提交
4465
let bufferSize;
4466 4467
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4468 4469
  bufferSize = data;
  }).catch((err) => {
4470
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
J
jiao_yanlin 已提交
4471
  });
4472 4473 4474
console.info(`Buffer size: ${bufferSize}`);
audioCapturer.read(bufferSize, true).then((buffer) => {
  console.info('buffer read successfully');
L
lwx1059628 已提交
4475
}).catch((err) => {
4476
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
4477
});
Z
zengyawen 已提交
4478 4479 4480 4481
```

### getAudioTime<sup>8+</sup>

4482
getAudioTime(callback: AsyncCallback<number\>): void
Z
zengyawen 已提交
4483

4484
获取时间戳(从1970年1月1日开始),单位为纳秒。使用callback方式异步返回结果。
Z
zengyawen 已提交
4485

4486
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4487 4488 4489

**参数:**

4490 4491 4492
| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4493 4494 4495

**示例:**

J
jiao_yanlin 已提交
4496
```js
4497
audioCapturer.getAudioTime((err, timestamp) => {
4498
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4499
});
Z
zengyawen 已提交
4500 4501 4502 4503
```

### getAudioTime<sup>8+</sup>

4504
getAudioTime(): Promise<number\>
Z
zengyawen 已提交
4505

4506
获取时间戳(从1970年1月1日开始),单位为纳秒。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4507

4508
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4509 4510 4511

**返回值:**

4512 4513 4514
| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4515 4516 4517

**示例:**

J
jiao_yanlin 已提交
4518
```js
4519 4520
audioCapturer.getAudioTime().then((audioTime) => {
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4521
}).catch((err) => {
4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577
  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 已提交
4578
});
Z
zengyawen 已提交
4579 4580
```

4581
### on('markReach')<sup>8+</sup>
Z
zengyawen 已提交
4582

4583
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4584

4585
订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。
Z
zengyawen 已提交
4586

4587
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4588 4589 4590

**参数:**

4591 4592 4593 4594 4595
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
Z
zengyawen 已提交
4596 4597 4598

**示例:**

J
jiao_yanlin 已提交
4599
```js
4600 4601 4602
audioCapturer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4603
  }
L
lwx1059628 已提交
4604
});
Z
zengyawen 已提交
4605 4606
```

4607
### off('markReach')<sup>8+</sup>
Z
zengyawen 已提交
4608

4609
off(type: 'markReach'): void
Z
zengyawen 已提交
4610

4611
取消订阅标记到达的事件。
Z
zengyawen 已提交
4612

4613
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4614

4615
**参数:**
Z
zengyawen 已提交
4616

4617 4618 4619
| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |
Z
zengyawen 已提交
4620 4621 4622

**示例:**

J
jiao_yanlin 已提交
4623
```js
4624
audioCapturer.off('markReach');
Z
zengyawen 已提交
4625 4626
```

4627
### on('periodReach')<sup>8+</sup>
Z
zengyawen 已提交
4628

4629
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4630

4631
订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,触发回调并返回设定的值。
Z
zengyawen 已提交
4632

4633
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4634 4635 4636

**参数:**

4637 4638 4639 4640 4641
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
Z
zengyawen 已提交
4642 4643 4644

**示例:**

J
jiao_yanlin 已提交
4645
```js
4646 4647 4648
audioCapturer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4649
  }
L
lwx1059628 已提交
4650
});
Z
zengyawen 已提交
4651 4652
```

4653
### off('periodReach')<sup>8+</sup>
Z
zengyawen 已提交
4654

4655
off(type: 'periodReach'): void
Z
zengyawen 已提交
4656

4657
取消订阅标记到达的事件。
Z
zengyawen 已提交
4658

4659
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4660 4661 4662

**参数:**

4663 4664 4665
| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
| type   | string | 是  | 取消事件回调类型,支持的事件为:'periodReach'。 |
Z
zengyawen 已提交
4666 4667 4668

**示例:**

J
jiao_yanlin 已提交
4669
```js
4670
audioCapturer.off('periodReach')
Z
zengyawen 已提交
4671 4672
```

4673
### on('stateChange') <sup>8+</sup>
Z
zengyawen 已提交
4674

4675
on(type: 'stateChange', callback: Callback<AudioState\>): void
Z
zengyawen 已提交
4676

4677
订阅监听状态变化。
Z
zengyawen 已提交
4678

4679
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4680 4681 4682

**参数:**

4683 4684 4685 4686
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
Z
zengyawen 已提交
4687 4688 4689

**示例:**

J
jiao_yanlin 已提交
4690
```js
4691 4692 4693 4694 4695 4696 4697
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 已提交
4698
});
Z
zengyawen 已提交
4699 4700
```

4701
## ToneType<sup>9+</sup>
Z
zengyawen 已提交
4702

4703
枚举,播放器的音调类型。
Z
zengyawen 已提交
4704

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

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

4709
| 名称                                              |  值    | 说明                          |
4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737
| :------------------------------------------------ | :----- | :----------------------------|
| 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 已提交
4738

4739
## TonePlayer<sup>9+</sup>
Z
zengyawen 已提交
4740

4741 4742 4743 4744 4745 4746 4747 4748 4749 4750
提供播放和管理DTMF(Dual Tone Multi Frequency,双音多频)音调的方法,包括各种系统监听音调、专有音调,如拨号音、通话回铃音等。

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

### load<sup>9+</sup>

load(type: ToneType, callback: AsyncCallback&lt;void&gt;): void

加载DTMF音调配置。使用callback方式异步返回结果。

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

4753 4754 4755 4756 4757 4758
**系统能力:** SystemCapability.Multimedia.Audio.Tone

**参数:**

| 参数名          | 类型                        | 必填  | 说明                            |
| :--------------| :-------------------------- | :-----| :------------------------------ |
4759
| type           | [ToneType](#tonetype9)       | 是    | 配置的音调类型。                 |
4760
| callback       | AsyncCallback<void\>        | 是    | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4761 4762 4763

**示例:**

J
jiao_yanlin 已提交
4764
```js
4765 4766 4767 4768 4769 4770 4771
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 已提交
4772
});
Z
zengyawen 已提交
4773
```
4774

4775
### load<sup>9+</sup>
4776

4777
load(type: ToneType): Promise&lt;void&gt;
4778

4779 4780
加载DTMF音调配置。使用Promise方式异步返回结果。

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

4783
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4784 4785 4786

**参数:**

4787 4788
| 参数名         | 类型                    | 必填  |  说明             |
| :------------- | :--------------------- | :---  | ---------------- |
4789
| type           | [ToneType](#tonetype9)   | 是    | 配置的音调类型。  |
4790 4791 4792

**返回值:**

4793 4794 4795
| 类型            | 说明                        |
| :--------------| :-------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4796 4797

**示例:**
Z
zengyawen 已提交
4798

J
jiao_yanlin 已提交
4799
```js
4800 4801 4802 4803
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_1).then(() => {
  console.info('promise call load ');
}).catch(() => {
  console.error('promise call load fail');
4804
});
Z
zhujie81 已提交
4805 4806
```

4807
### start<sup>9+</sup>
Z
zhujie81 已提交
4808

4809
start(callback: AsyncCallback&lt;void&gt;): void
Z
zhujie81 已提交
4810

4811 4812
启动DTMF音调播放。使用callback方式异步返回结果。

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

4815
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zhujie81 已提交
4816 4817

**参数:**
4818

4819 4820 4821
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4822

Z
zhujie81 已提交
4823 4824
**示例:**

J
jiao_yanlin 已提交
4825
```js
4826 4827 4828 4829 4830 4831
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 已提交
4832
  }
4833
});
4834
```
Z
zengyawen 已提交
4835

4836
### start<sup>9+</sup>
4837

4838
start(): Promise&lt;void&gt;
4839

4840
启动DTMF音调播放。使用Promise方式异步返回结果。
4841

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

4844
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4845 4846 4847

**返回值:**

4848 4849 4850
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4851 4852 4853 4854

**示例:**

```js
4855 4856 4857 4858
tonePlayer.start().then(() => {
  console.info('promise call start');
}).catch(() => {
  console.error('promise call start fail');
4859 4860 4861
});
```

4862
### stop<sup>9+</sup>
4863

4864
stop(callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
4865

4866 4867
停止当前正在播放的音调。使用callback方式异步返回结果。

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

4870
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zengyawen 已提交
4871 4872 4873

**参数:**

4874 4875 4876
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
4877 4878 4879 4880

**示例:**

```js
4881 4882 4883 4884 4885 4886
tonePlayer.stop((err) => {
  if (err) {
    console.error(`callback call stop error: ${err.message}`);
    return;
  } else {
    console.error('callback call stop success ');
4887 4888 4889 4890
  }
});
```

4891
### stop<sup>9+</sup>
4892

4893
stop(): Promise&lt;void&gt;
4894

4895
停止当前正在播放的音调。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4896

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

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

4901
**返回值:**
4902

4903 4904 4905
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4906

Z
zengyawen 已提交
4907 4908
**示例:**

J
jiao_yanlin 已提交
4909
```js
4910 4911 4912 4913
tonePlayer.stop().then(() => {
  console.info('promise call stop finish');
}).catch(() => {
  console.error('promise call stop fail');
L
lwx1059628 已提交
4914
});
Z
zengyawen 已提交
4915 4916
```

4917
### release<sup>9+</sup>
L
lwx1059628 已提交
4918

4919
release(callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
4920

G
gloria 已提交
4921
释放与此TonePlayer对象关联的资源。使用callback方式异步返回结果。
L
lwx1059628 已提交
4922

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

4925
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4926 4927 4928

**参数:**

4929 4930 4931
| 参数名   | 类型                 | 必填 | 说明                            |
| :------- | :------------------- | :--- | :---------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。  |
L
lwx1059628 已提交
4932 4933 4934

**示例:**

J
jiao_yanlin 已提交
4935
```js
4936 4937 4938 4939 4940 4941
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 已提交
4942
  }
L
lwx1059628 已提交
4943 4944 4945
});
```

4946
### release<sup>9+</sup>
L
lwx1059628 已提交
4947

4948
release(): Promise&lt;void&gt;
L
lwx1059628 已提交
4949

G
gloria 已提交
4950
释放与此TonePlayer对象关联的资源。使用Promise方式异步返回结果。
L
lwx1059628 已提交
4951

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

4954
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4955

4956
**返回值:**
L
lwx1059628 已提交
4957

4958 4959 4960
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
4961 4962 4963

**示例:**

J
jiao_yanlin 已提交
4964
```js
4965 4966 4967 4968 4969
tonePlayer.release().then(() => {
  console.info('promise call release');
}).catch(() => {
  console.error('promise call release fail');
});
L
lwx1059628 已提交
4970 4971
```

4972
## ActiveDeviceType<sup>(deprecated)</sup>
Z
zengyawen 已提交
4973

4974
枚举,活跃设备类型。
Z
zengyawen 已提交
4975

4976 4977
> **说明:**
> 从 API version 9 开始废弃,建议使用[CommunicationDeviceType](#communicationdevicetype9)替代。
L
lwx1059628 已提交
4978

4979
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
4980

4981
| 名称          |  值     | 说明                                                 |
4982 4983 4984
| ------------- | ------ | ---------------------------------------------------- |
| SPEAKER       | 2      | 扬声器。                                             |
| BLUETOOTH_SCO | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。 |
L
lwx1059628 已提交
4985

4986
## InterruptActionType<sup>(deprecated)</sup>
L
lwx1059628 已提交
4987

4988
枚举,中断事件返回类型。
L
lwx1059628 已提交
4989

4990 4991
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
4992

4993
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
4994

4995
| 名称           |  值     | 说明               |
4996 4997 4998
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
L
lwx1059628 已提交
4999

5000
## AudioInterrupt<sup>(deprecated)</sup>
L
lwx1059628 已提交
5001

5002 5003
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
5004

5005
音频监听事件传入的参数。
L
lwx1059628 已提交
5006

5007
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
5008

5009
| 名称            | 类型                        | 必填 | 说明                                                         |
5010 5011 5012 5013
| --------------- | --------------------------- | ----| ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是  | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是  | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是  | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
L
lwx1059628 已提交
5014

5015
## InterruptAction<sup>(deprecated)</sup>
L
lwx1059628 已提交
5016

5017 5018
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
5019

5020
音频打断/获取焦点事件的回调方法。
L
lwx1059628 已提交
5021

5022
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
5023

5024 5025 5026 5027
| 名称       | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontype) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。 |
| type       | [InterruptType](#interrupttype)             | 否   | 打断事件类型。                                               |
5028
| hint       | [InterruptHint](#interrupthint)             | 否   | 打断事件提示。                                               |
5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044
| 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 已提交
5045 5046 5047

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
5056
```js
5057 5058 5059 5060
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
    console.error(`Failed to set the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5061
  }
5062
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
5063 5064 5065
});
```

5066
### setVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5067

5068
setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;
L
lwx1059628 已提交
5069

5070
设置指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5071

5072 5073
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代。
L
lwx1059628 已提交
5074

5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092
**需要权限:** 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 已提交
5093 5094 5095

**示例:**

J
jiao_yanlin 已提交
5096
```js
5097 5098 5099
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.info('Promise returned to indicate a successful volume setting.');
});
L
lwx1059628 已提交
5100 5101
```

5102
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5103

5104
getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5105

5106
获取指定流的音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5107

5108 5109 5110 5111
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5112 5113 5114

**参数:**

5115 5116 5117 5118
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |
L
lwx1059628 已提交
5119 5120 5121

**示例:**

J
jiao_yanlin 已提交
5122
```js
5123
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5124
  if (err) {
5125 5126
    console.error(`Failed to obtain the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5127
  }
5128
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
5129 5130 5131
});
```

5132
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5133

5134
getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5135

5136
获取指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5137

5138 5139
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。
L
lwx1059628 已提交
5140

5141 5142 5143 5144 5145 5146 5147
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5148 5149 5150

**返回值:**

5151 5152 5153
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
L
lwx1059628 已提交
5154 5155 5156

**示例:**

J
jiao_yanlin 已提交
5157
```js
5158 5159
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
5160 5161 5162
});
```

5163
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5164

5165
getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5166

5167
获取指定流的最小音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5168

5169 5170 5171 5172
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5173 5174 5175

**参数:**

5176 5177 5178 5179
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |
L
lwx1059628 已提交
5180 5181 5182

**示例:**

J
jiao_yanlin 已提交
5183
```js
5184
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5185
  if (err) {
5186 5187
    console.error(`Failed to obtain the minimum volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5188
  }
5189
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5190 5191 5192
});
```

5193
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5194

5195
getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5196

5197
获取指定流的最小音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5198

5199 5200 5201 5202 5203 5204 5205 5206 5207 5208
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

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

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5209 5210 5211

**返回值:**

5212 5213 5214
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
L
lwx1059628 已提交
5215 5216 5217

**示例:**

J
jiao_yanlin 已提交
5218
```js
5219 5220
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5221 5222 5223
});
```

5224
### getMaxVolume<sup>(deprecated)</sup>
5225

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

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

5230 5231 5232 5233
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5234 5235 5236

**参数:**

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

**示例:**

```js
5245 5246 5247 5248 5249 5250
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}`);
5251 5252 5253
});
```

5254
### getMaxVolume<sup>(deprecated)</sup>
5255

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

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

5260 5261 5262 5263 5264 5265 5266 5267 5268 5269
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

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

**参数:**

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

**返回值:**

5273 5274 5275
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
5276 5277 5278 5279

**示例:**

```js
5280 5281
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
  console.info('Promised returned to indicate that the maximum volume is obtained.');
5282 5283 5284
});
```

5285
### mute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5286

5287
mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5288

5289
设置指定音量流静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5290

5291 5292 5293 5294 5295 5296 5297 5298
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[mute](#mute9)替代。

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5299

5300
**参数:**
L
lwx1059628 已提交
5301

5302 5303 5304 5305 5306
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                |
L
lwx1059628 已提交
5307 5308 5309

**示例:**

J
jiao_yanlin 已提交
5310
```js
5311
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
5312
  if (err) {
5313 5314
    console.error(`Failed to mute the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5315
  }
5316
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
5317 5318 5319
});
```

5320 5321 5322 5323 5324 5325 5326 5327
### 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 已提交
5328

5329
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
L
lwx1059628 已提交
5330

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

5333
**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5334

5335 5336 5337 5338 5339 5340
**参数:**

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

**返回值:**

5344 5345 5346
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
L
lwx1059628 已提交
5347 5348 5349

**示例:**

5350

J
jiao_yanlin 已提交
5351
```js
5352 5353
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
5354 5355 5356
});
```

5357
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5358

5359
isMute(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5360

5361
获取指定音量流是否被静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5362

5363 5364 5365 5366
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5367 5368 5369

**参数:**

5370 5371 5372 5373
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5374 5375 5376

**示例:**

J
jiao_yanlin 已提交
5377
```js
5378
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5379
  if (err) {
5380 5381
    console.error(`Failed to obtain the mute status. ${err}`);
    return;
J
jiao_yanlin 已提交
5382
  }
5383
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
5384 5385 5386
});
```

5387
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5388

5389
isMute(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5390

5391
获取指定音量流是否被静音,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5392

5393 5394
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。
L
lwx1059628 已提交
5395

5396 5397 5398 5399 5400 5401 5402
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5403 5404 5405

**返回值:**

5406 5407 5408
| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5409 5410 5411

**示例:**

J
jiao_yanlin 已提交
5412
```js
5413 5414
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 已提交
5415 5416 5417
});
```

5418
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5419

5420
isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5421

5422
获取指定音量流是否为活跃状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5423

5424 5425 5426 5427
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5428 5429 5430

**参数:**

5431 5432 5433 5434
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5435 5436 5437

**示例:**

J
jiao_yanlin 已提交
5438
```js
5439
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5440
  if (err) {
5441 5442
    console.error(`Failed to obtain the active status of the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5443
  }
5444
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
5445 5446 5447
});
```

5448
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5449

5450
isActive(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5451

5452
获取指定音量流是否为活跃状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5453

5454 5455
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。
L
lwx1059628 已提交
5456

5457 5458 5459 5460 5461 5462 5463
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5464 5465 5466

**返回值:**

5467 5468 5469
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5470 5471 5472

**示例:**

J
jiao_yanlin 已提交
5473
```js
5474 5475
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 已提交
5476 5477 5478
});
```

5479
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5480

5481
setRingerMode(mode: AudioRingMode, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5482

5483
设置铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5484

5485 5486 5487 5488 5489 5490 5491 5492
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5493

5494
**参数:**
L
lwx1059628 已提交
5495

5496 5497 5498 5499
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5500 5501 5502

**示例:**

J
jiao_yanlin 已提交
5503
```js
5504 5505 5506 5507
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
  if (err) {
    console.error(`Failed to set the ringer mode.​ ${err}`);
    return;
J
jiao_yanlin 已提交
5508
  }
5509
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
J
jiao_yanlin 已提交
5510
});
L
lwx1059628 已提交
5511 5512
```

5513
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5514

5515
setRingerMode(mode: AudioRingMode): Promise&lt;void&gt;
L
lwx1059628 已提交
5516

5517
设置铃声模式,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5518

5519 5520 5521 5522 5523 5524 5525 5526
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5527 5528 5529

**参数:**

5530 5531 5532
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
L
lwx1059628 已提交
5533 5534 5535

**返回值:**

5536 5537 5538
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5539 5540 5541

**示例:**

J
jiao_yanlin 已提交
5542
```js
5543 5544
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
5545 5546 5547
});
```

5548
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5549

5550
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
L
lwx1059628 已提交
5551

5552
获取铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5553

5554 5555 5556 5557
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5558 5559 5560

**参数:**

5561 5562 5563
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5564 5565 5566

**示例:**

J
jiao_yanlin 已提交
5567
```js
5568 5569 5570 5571 5572 5573
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 已提交
5574 5575 5576
});
```

5577
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5578

5579
getRingerMode(): Promise&lt;AudioRingMode&gt;
L
lwx1059628 已提交
5580

5581 5582 5583 5584
获取铃声模式,使用Promise方式异步返回结果。

> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。
L
lwx1059628 已提交
5585

5586
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5587 5588 5589

**返回值:**

5590 5591 5592
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5593 5594 5595

**示例:**

J
jiao_yanlin 已提交
5596
```js
5597 5598
audioManager.getRingerMode().then((value) => {
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
5599 5600 5601
});
```

5602
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5603

5604
getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void
L
lwx1059628 已提交
5605

5606
获取音频设备列表,使用callback方式异步返回结果。
L
lwx1059628 已提交
5607

5608 5609 5610 5611
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5612 5613 5614

**参数:**

5615 5616 5617 5618
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
L
lwx1059628 已提交
5619 5620

**示例:**
J
jiao_yanlin 已提交
5621
```js
5622 5623 5624 5625
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the device list. ${err}`);
    return;
J
jiao_yanlin 已提交
5626
  }
5627
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
5628 5629 5630
});
```

5631
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5632

5633
getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;
L
lwx1059628 已提交
5634

5635
获取音频设备列表,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5636

5637 5638 5639 5640 5641 5642 5643 5644 5645 5646
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

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

**参数:**

| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
L
lwx1059628 已提交
5647 5648 5649

**返回值:**

5650 5651 5652
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
L
lwx1059628 已提交
5653 5654 5655

**示例:**

J
jiao_yanlin 已提交
5656
```js
5657 5658
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
5659 5660 5661
});
```

5662
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5663

5664
setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5665

5666
设置设备激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5667

5668 5669 5670 5671
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5672 5673 5674

**参数:**

5675 5676 5677 5678 5679
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5680 5681 5682

**示例:**

J
jiao_yanlin 已提交
5683
```js
5684 5685 5686 5687
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 已提交
5688
  }
5689
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
5690 5691 5692
});
```

5693
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5694

5695
setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise&lt;void&gt;
L
lwx1059628 已提交
5696

5697
设置设备激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5698

5699 5700 5701 5702
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5703 5704 5705

**参数:**

5706 5707 5708 5709 5710 5711 5712 5713 5714 5715
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
| active     | boolean                               | 是   | 设备激活状态。     |

**返回值:**

| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5716 5717 5718

**示例:**

5719

J
jiao_yanlin 已提交
5720
```js
5721 5722 5723
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
  console.info('Promise returned to indicate that the device is set to the active status.');
});
L
lwx1059628 已提交
5724 5725
```

5726
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5727

5728
isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5729

5730
获取指定设备的激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5731

5732 5733 5734 5735
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5736 5737 5738

**参数:**

5739 5740 5741 5742
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
L
lwx1059628 已提交
5743 5744 5745

**示例:**

J
jiao_yanlin 已提交
5746
```js
5747 5748 5749 5750
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 已提交
5751
  }
5752
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
5753 5754 5755
});
```

5756
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5757

5758
isDeviceActive(deviceType: ActiveDeviceType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5759

5760
获取指定设备的激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5761

5762 5763 5764 5765
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5766 5767 5768

**参数:**

5769 5770 5771 5772 5773 5774 5775 5776 5777
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |

**返回值:**

| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
L
lwx1059628 已提交
5778 5779 5780

**示例:**

J
jiao_yanlin 已提交
5781
```js
5782 5783 5784
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 已提交
5785 5786
```

5787
### setMicrophoneMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5788

5789
setMicrophoneMute(mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5790

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

5793 5794 5795 5796 5797 5798
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5799 5800 5801

**参数:**

5802 5803 5804 5805
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
L
lwx1059628 已提交
5806 5807 5808

**示例:**

J
jiao_yanlin 已提交
5809
```js
5810 5811 5812 5813
audioManager.setMicrophoneMute(true, (err) => {
  if (err) {
    console.error(`Failed to mute the microphone. ${err}`);
    return;
J
jiao_yanlin 已提交
5814
  }
5815
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
5816
});
5817 5818
```

5819
### setMicrophoneMute<sup>(deprecated)</sup>
5820

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

5823
设置麦克风静音状态,使用Promise方式异步返回结果。
5824

5825 5826 5827 5828 5829 5830
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

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

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

5832
**参数:**
5833

5834 5835 5836
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
5837

5838
**返回值:**
5839

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

5844
**示例:**
5845

5846 5847 5848 5849 5850
```js
audioManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
});
```
5851

5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863
### 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
5864 5865 5866

**参数:**

5867 5868 5869
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5870 5871 5872 5873

**示例:**

```js
5874
audioManager.isMicrophoneMute((err, value) => {
5875
  if (err) {
5876
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
5877 5878
    return;
  }
5879
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
5880 5881 5882
});
```

5883
### isMicrophoneMute<sup>(deprecated)</sup>
5884

5885
isMicrophoneMute(): Promise&lt;boolean&gt;
5886

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

5889 5890
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMicrophoneMute](#ismicrophonemute9)替代。
5891

5892
**需要权限:** ohos.permission.MICROPHONE
5893

5894
**系统能力:** SystemCapability.Multimedia.Audio.Device
5895 5896 5897

**返回值:**

5898 5899 5900
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5901 5902 5903 5904

**示例:**

```js
5905 5906
audioManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
5907 5908 5909
});
```

5910
### on('volumeChange')<sup>(deprecated)</sup>
5911

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

5914 5915
> **说明:**
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeManager中的[on](#on9)替代。
5916

5917 5918 5919 5920 5921 5922 5923
监听系统音量变化事件。

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5924 5925 5926

**参数:**

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

**示例:**

```js
5935 5936 5937 5938
audioManager.on('volumeChange', (volumeEvent) => {
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
5939 5940 5941
});
```

5942
### on('ringerModeChange')<sup>(deprecated)</sup>
5943

5944
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
5945

5946
监听铃声模式变化事件。
5947

5948
> **说明:**
5949
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[on('ringerModeChange')](#onringermodechange9)替代。
5950

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

5953 5954 5955 5956 5957 5958 5959 5960
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

**示例:**

```js
5965 5966
audioManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
5967 5968 5969
});
```

5970
### on('deviceChange')<sup>(deprecated)</sup>
5971

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

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

5976 5977 5978 5979
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[on](#on9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
5980 5981 5982

**参数:**

5983 5984 5985 5986
| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |
5987 5988 5989 5990

**示例:**

```js
5991 5992 5993 5994 5995
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} `);
5996 5997 5998
});
```

5999
### off('deviceChange')<sup>(deprecated)</sup>
6000

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

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

6005 6006
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[off](#off9)替代。
6007

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

6010 6011 6012 6013 6014 6015
**参数:**

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

**示例:**

```js
6020 6021
audioManager.off('deviceChange', (deviceChanged) => {
  console.info('Should be no callback.');
6022 6023 6024
});
```

6025
### on('interrupt')<sup>(deprecated)</sup>
6026

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

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

6031
[on('audioInterrupt')](#onaudiointerrupt9)作用一致,均用于监听焦点变化。为无音频流的场景(未曾创建AudioRenderer对象),比如FM、语音唤醒等提供焦点变化监听功能。
6032

6033 6034 6035 6036
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer
6037 6038 6039

**参数:**

6040 6041 6042 6043 6044
| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 是   | 音频打断事件回调方法。                                       |
6045 6046 6047 6048

**示例:**

```js
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061
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} `);
6062 6063 6064 6065
  }
});
```

6066
### off('interrupt')<sup>(deprecated)</sup>
6067

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

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

6072 6073
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
6074

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

6077 6078 6079 6080 6081 6082 6083
**参数:**

| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 否   | 音频打断事件回调方法。                                       |
6084 6085 6086 6087

**示例:**

```js
6088 6089 6090 6091 6092 6093 6094 6095 6096 6097
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} `);
  }
6098 6099
});
```