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

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

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

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

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

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

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

21 22
## 常量

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

**示例:**

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

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

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

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

获取音频管理器。

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

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

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

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

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

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

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

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

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

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

**示例:**

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

J
jiao_yanlin 已提交
80
let audioStreamInfo = {
J
jiao_yanlin 已提交
81 82 83 84
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
85 86
}

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

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

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

J
jiao_yanlin 已提交
135
let audioStreamInfo = {
J
jiao_yanlin 已提交
136 137 138 139
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
Z
zengyawen 已提交
140 141
}

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

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

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

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

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

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

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

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

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

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

**示例:**

J
jiao_yanlin 已提交
181
```js
L
lwx1059628 已提交
182
import audio from '@ohos.multimedia.audio';
J
jiao_yanlin 已提交
183
let audioStreamInfo = {
J
jiao_yanlin 已提交
184 185 186 187
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
188 189
}

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

J
jiao_yanlin 已提交
237
let audioStreamInfo = {
J
jiao_yanlin 已提交
238 239 240 241
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
242 243
}

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

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

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

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

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

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

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

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

273
**参数:**
274 275 276

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

**示例:**

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

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

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

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

369
枚举,焦点模型。
370

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

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

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

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

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

384
| 名称                            |  值     | 说明                                              |
385
| ------------------------------- | ------ | ------------------------------------------------- |
386
| NONE_DEVICES_FLAG<sup>9+</sup>  | 0      | 无 <br/>此接口为系统接口。        |
387 388 389
| OUTPUT_DEVICES_FLAG             | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG              | 2      | 输入设备。 |
| ALL_DEVICES_FLAG                | 3      | 所有设备。 |
390 391 392
| DISTRIBUTED_OUTPUT_DEVICES_FLAG<sup>9+</sup> | 4   | 分布式输出设备。<br/>此接口为系统接口。  |
| DISTRIBUTED_INPUT_DEVICES_FLAG<sup>9+</sup>  | 8   | 分布式输入设备。<br/>此接口为系统接口。  |
| ALL_DISTRIBUTED_DEVICES_FLAG<sup>9+</sup>    | 12  | 分布式输入和输出设备。<br/>此接口为系统接口。  |
Z
zengyawen 已提交
393 394

## DeviceRole
M
mamingshuai 已提交
395

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

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

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

Z
zengyawen 已提交
405 406 407
## DeviceType

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

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

411
| 名称                 | 值     | 说明                                                      |
412 413 414 415 416 417 418 419 420 421 422
| ---------------------| ------ | --------------------------------------------------------- |
| INVALID              | 0      | 无效设备。                                                |
| EARPIECE             | 1      | 听筒。                                                    |
| SPEAKER              | 2      | 扬声器。                                                  |
| WIRED_HEADSET        | 3      | 有线耳机,带麦克风。                                      |
| WIRED_HEADPHONES     | 4      | 有线耳机,无麦克风。                                      |
| BLUETOOTH_SCO        | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。      |
| BLUETOOTH_A2DP       | 8      | 蓝牙设备A2DP(Advanced Audio Distribution Profile)连接。 |
| MIC                  | 15     | 麦克风。                                                  |
| USB_HEADSET          | 22     | USB耳机,带麦克风。                                       |
| DEFAULT<sup>9+</sup> | 1000   | 默认设备类型。                                            |
M
magekkkk 已提交
423

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

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

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

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

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

枚举,铃声模式。

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

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

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

枚举,音频采样格式。

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

452
| 名称                                |  值    | 说明                       |
453 454 455 456 457 458 459
| ---------------------------------- | ------ | -------------------------- |
| SAMPLE_FORMAT_INVALID              | -1     | 无效格式。                 |
| SAMPLE_FORMAT_U8                   | 0      | 无符号8位整数。            |
| SAMPLE_FORMAT_S16LE                | 1      | 带符号的16位整数,小尾数。 |
| SAMPLE_FORMAT_S24LE                | 2      | 带符号的24位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_S32LE                | 3      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_F32LE<sup>9+</sup>   | 4      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
Z
zengyawen 已提交
460

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

枚举,音频错误码。

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

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

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

枚举, 音频声道。

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

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

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

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

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

494
| 名称              |  值    | 说明            |
Z
zengyawen 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
| ----------------- | ------ | --------------- |
| SAMPLE_RATE_8000  | 8000   | 采样率为8000。  |
| SAMPLE_RATE_11025 | 11025  | 采样率为11025。 |
| SAMPLE_RATE_12000 | 12000  | 采样率为12000。 |
| SAMPLE_RATE_16000 | 16000  | 采样率为16000。 |
| SAMPLE_RATE_22050 | 22050  | 采样率为22050。 |
| SAMPLE_RATE_24000 | 24000  | 采样率为24000。 |
| SAMPLE_RATE_32000 | 32000  | 采样率为32000。 |
| SAMPLE_RATE_44100 | 44100  | 采样率为44100。 |
| SAMPLE_RATE_48000 | 48000  | 采样率为48000。 |
| SAMPLE_RATE_64000 | 64000  | 采样率为64000。 |
| SAMPLE_RATE_96000 | 96000  | 采样率为96000。 |

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

枚举,音频编码类型。

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

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

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

枚举,音频内容类型。

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

525
| 名称                               |  值    | 说明       |
L
lwx1059628 已提交
526 527 528 529 530 531 532
| ---------------------------------- | ------ | ---------- |
| CONTENT_TYPE_UNKNOWN               | 0      | 未知类型。 |
| CONTENT_TYPE_SPEECH                | 1      | 语音。     |
| CONTENT_TYPE_MUSIC                 | 2      | 音乐。     |
| CONTENT_TYPE_MOVIE                 | 3      | 电影。     |
| CONTENT_TYPE_SONIFICATION          | 4      | 加密类型。 |
| CONTENT_TYPE_RINGTONE<sup>8+</sup> | 5      | 铃声。     |
Z
zengyawen 已提交
533

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

枚举,音频流使用类型。

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

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

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

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

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

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

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

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

枚举,音频状态。

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

566
| 名称           | 值     | 说明             |
Z
zengyawen 已提交
567 568 569 570 571 572 573 574 575 576 577
| -------------- | ------ | ---------------- |
| STATE_INVALID  | -1     | 无效状态。       |
| STATE_NEW      | 0      | 创建新实例状态。 |
| STATE_PREPARED | 1      | 准备状态。       |
| STATE_RUNNING  | 2      | 可运行状态。     |
| STATE_STOPPED  | 3      | 停止状态。       |
| STATE_RELEASED | 4      | 释放状态。       |
| STATE_PAUSED   | 5      | 暂停状态。       |

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

L
lwx1059628 已提交
578
枚举,音频渲染速度。
Z
zengyawen 已提交
579 580 581

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

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

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

枚举,中断类型。

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

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

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

枚举,强制打断类型。

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

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

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

枚举,中断提示。

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

616
| 名称                               |  值     | 说明                                         |
L
lwx1059628 已提交
617 618 619 620 621 622 623
| ---------------------------------- | ------ | -------------------------------------------- |
| INTERRUPT_HINT_NONE<sup>8+</sup>   | 0      | 无提示。                                     |
| INTERRUPT_HINT_RESUME              | 1      | 提示音频恢复。                               |
| INTERRUPT_HINT_PAUSE               | 2      | 提示音频暂停。                               |
| INTERRUPT_HINT_STOP                | 3      | 提示音频停止。                               |
| INTERRUPT_HINT_DUCK                | 4      | 提示音频躲避。(躲避:音量减弱,而不会停止) |
| INTERRUPT_HINT_UNDUCK<sup>8+</sup> | 5      | 提示音量恢复。                               |
Z
zengyawen 已提交
624 625 626 627 628 629 630

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

音频流信息。

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

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

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

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

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

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

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

音频中断结果。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

枚举,设备连接类型。

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

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

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

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

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

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

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

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

音量组信息。

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

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

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

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

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

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

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

## DeviceChangeType

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

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

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

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

音频采集器选项信息。

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

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

L
lwx1059628 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
## AudioCapturerInfo<sup>8+</sup><a name="audiocapturerinfo"></a>

描述音频采集器信息。

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

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

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

枚举,音源类型。

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

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

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

枚举,音频场景。

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

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

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

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

823
### setAudioParameter
M
mamingshuai 已提交
824

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

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

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

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

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

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

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

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

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

855
### setAudioParameter
M
mamingshuai 已提交
856

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

888
### getAudioParameter
Z
zengyawen 已提交
889

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

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

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

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

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

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

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

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

917
### getAudioParameter
Z
zengyawen 已提交
918

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

1060
getVolumeManager(): AudioVolumeManager
1061

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

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

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

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

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

1074
getStreamManager(): AudioStreamManager
1075

1076
获取音频流管理器。
1077

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

1080
**示例:**
1081

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

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

1088
getRoutingManager(): AudioRoutingManager
1089

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

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

**示例:**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

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

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

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

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

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

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

1171 1172
**参数:**

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

**示例:**

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

1190
```
Z
zengyawen 已提交
1191

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

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

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

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

1200 1201
**参数:**

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

**返回值:**

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

1212 1213
**示例:**

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

1223 1224
```

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

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

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

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

1233
**参数:**
1234

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**参数:**

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

1321 1322
**返回值:**

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

**示例:**

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

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

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

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

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

1343 1344
**参数:**

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

**示例:**

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

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

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

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

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

1370 1371
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

1398 1399
**参数:**

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

**示例:**

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

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

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

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

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

1425 1426
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

1453 1454
**参数:**

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

**示例:**
1461

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

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

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

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

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

1480 1481
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

1514 1515
**参数:**

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

**示例:**

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

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

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

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

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

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

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

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

1548 1549
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

1577 1578
**参数:**

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

**示例:**

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

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

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

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

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

1604 1605
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

1638 1639
**参数:**

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

**示例:**

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

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

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

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

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

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

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

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

1671 1672
**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

1699 1700
**参数:**

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

**示例:**

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

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

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

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

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

1725 1726
**返回值:**

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

**示例:**

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

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

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

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

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

**参数:**

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

**错误码:**

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

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

**示例:**

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

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

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

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

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

**参数:**

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

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

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

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

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

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

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

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

**参数:**

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

**返回值:**

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

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

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

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

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

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

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

**参数:**

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

**示例:**

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

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

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

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

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

1862
**返回值:**
1863

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

**示例:**

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

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

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

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

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

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

**参数:**

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

**错误码:**

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

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

**示例:**

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

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

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

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1929
```js
1930 1931
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
1932
  if (err) {
1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
        console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
        console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
        console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
        console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
        console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
          console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
        }
      }
    }
J
jiao_yanlin 已提交
1956
  }
L
lwx1059628 已提交
1957 1958 1959
});
```

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

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

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1976
```js
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
async function getCurrentAudioRendererInfoArray(){
  await audioStreamManager.getCurrentAudioRendererInfoArray().then( function (AudioRendererChangeInfoArray) {
    console.info(`getCurrentAudioRendererInfoArray ######### Get Promise is called ##########`);
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
        console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
        console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
        console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
        console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
        console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
          console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
        }
      }
    }
  }).catch((err) => {
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
  });
}
L
lwx1059628 已提交
2005 2006
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
2023
```js
2024 2025
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2026
  if (err) {
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
  } else {
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
        console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
        console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
        console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
        console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
          console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
        }
      }
    }
  }
L
lwx1059628 已提交
2049 2050 2051
});
```

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

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

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

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

**返回值:**

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

**示例:**

```js
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
async function getCurrentAudioCapturerInfoArray(){
  await audioStreamManager.getCurrentAudioCapturerInfoArray().then( function (AudioCapturerChangeInfoArray) {
    console.info('getCurrentAudioCapturerInfoArray **** Get Promise Called ****');
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
        console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
        console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
        console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
        console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
          console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
        }
      }
    }
  }).catch((err) => {
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
  });
}
2095 2096
```

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

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

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

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

**参数:**

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

**错误码:**

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

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

**示例:**

```js
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
    let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
    console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
    console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
    console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
    for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
      console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
    }
  }
});
2145 2146
```

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

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

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

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

2155
**参数:**
2156

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

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

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

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

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

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

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

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

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

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

**参数:**

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

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

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

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

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

W
wangtao 已提交
2201
```js
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
    console.info(`## CapChange on is called for element ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
    let devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
      console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
    }
W
wangtao 已提交
2221 2222 2223 2224
  }
});
```

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

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

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

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

**参数:**

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

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

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

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

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

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

W
wangtao 已提交
2253 2254
```

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

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

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

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

**参数:**

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

**示例:**

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

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

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

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

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

**参数:**

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

2296 2297
**返回值:**

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

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

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

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

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

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

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

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

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

2322
**参数:**
2323

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

**示例:**

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

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

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

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

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

2349
**参数:**
2350

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

2355
**返回值:**
2356

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

**示例:**

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

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

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

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

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

**参数:**

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

2385
**错误码:**
2386

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

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

**示例:**

```js
2396 2397 2398 2399 2400
audioRoutingManager.on('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
  console.info('device change type : ' + deviceChanged.type);
  console.info('device descriptor size : ' + deviceChanged.deviceDescriptors.length);
  console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceRole);
  console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceType);
2401
});
2402 2403
```

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

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

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

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

**参数:**

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

**错误码:**

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**
```js
2454
let inputAudioDeviceDescriptor = [{
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
2860 2861 2862 2863
let audioStreamManager;
let resultFlag = false;

audioManager.getStreamManager((err, data) => {
2864
  if (err) {
2865 2866 2867 2868
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
  } else {
    audioStreamManager = data;
    console.info('Get AudioStream Manager : Success');
2869 2870 2871
  }
});

2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896
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}`);
    }
  }
2897 2898 2899
});
```

2900 2901 2902 2903 2904 2905 2906

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

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

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

2907
## AudioCapturerChangeInfo<sup>9+</sup>
2908

2909
描述音频采集器更改信息。
2910

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

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

**示例:**

```js
2923 2924 2925 2926 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
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}`);
    }
  }
2961 2962 2963
});
```

2964 2965 2966 2967
## AudioDeviceDescriptors

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

2968
## AudioDeviceDescriptor
2969

2970
描述音频设备。
2971

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

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

**示例:**

```js
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007
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');
3008 3009 3010 3011
  }
});
```

3012
## AudioRendererFilter<sup>9+</sup>
3013

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

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

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

**示例:**

```js
3027 3028 3029 3030 3031 3032 3033
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
3034 3035
```

3036
## AudioRenderer<sup>8+</sup>
3037

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

3040
### 属性
3041

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

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

**示例:**

```js
3051
let state = audioRenderer.state;
3052 3053
```

3054
### getRendererInfo<sup>8+</sup>
3055

3056
getRendererInfo(callback: AsyncCallback<AudioRendererInfo\>): void
3057

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

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

3062
**参数:**
3063

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

**示例:**

```js
3071 3072 3073 3074 3075
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}`);
3076 3077 3078
});
```

3079
### getRendererInfo<sup>8+</sup>
3080

3081
getRendererInfo(): Promise<AudioRendererInfo\>
3082

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

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

3087 3088 3089 3090 3091
**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
3092 3093 3094 3095

**示例:**

```js
3096 3097 3098 3099 3100 3101 3102
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}`);
3103 3104 3105
});
```

3106
### getStreamInfo<sup>8+</sup>
3107

3108
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
3109

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

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

3114
**参数:**
3115

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

3120
**示例:**
J
jiao_yanlin 已提交
3121 3122

```js
3123 3124 3125 3126 3127 3128
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}`);
3129 3130 3131
});
```

3132
### getStreamInfo<sup>8+</sup>
3133

3134
getStreamInfo(): Promise<AudioStreamInfo\>
3135

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

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

3140
**返回值:**
3141

3142 3143 3144
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | Promise返回音频流信息. |
3145

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

```js
3149 3150 3151 3152 3153 3154 3155 3156 3157
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}`);
});
3158 3159
```

3160
### getAudioStreamId<sup>9+</sup>
3161

3162
getAudioStreamId(callback: AsyncCallback<number\>): void
3163

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

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

3168
**参数:**
3169

3170 3171 3172
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
3173

3174
**示例:**
J
jiao_yanlin 已提交
3175 3176

```js
3177 3178
audioRenderer.getAudioStreamId((err, streamid) => {
  console.info(`Renderer GetStreamId: ${streamid}`);
3179 3180 3181
});
```

3182
### getAudioStreamId<sup>9+</sup>
3183

3184
getAudioStreamId(): Promise<number\>
3185

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

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

3190
**返回值:**
3191

3192 3193 3194
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
3195

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

```js
3199 3200 3201 3202 3203
audioRenderer.getAudioStreamId().then((streamid) => {
  console.info(`Renderer getAudioStreamId: ${streamid}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3204 3205
```

3206
### start<sup>8+</sup>
3207

3208
start(callback: AsyncCallback<void\>): void
3209

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

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

3214
**参数:**
3215

3216 3217 3218
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
3219

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

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

3232
### start<sup>8+</sup>
3233

3234
start(): Promise<void\>
3235

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

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

3240
**返回值:**
3241

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

3246
**示例:**
J
jiao_yanlin 已提交
3247 3248

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

3256
### pause<sup>8+</sup>
3257

3258
pause(callback: AsyncCallback\<void>): void
3259

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

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

3264
**参数:**
3265

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

3270
**示例:**
J
jiao_yanlin 已提交
3271 3272

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

3282
### pause<sup>8+</sup>
3283

3284
pause(): Promise\<void>
3285

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

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

3290
**返回值:**
3291

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

**示例:**

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

3306
### drain<sup>8+</sup>
3307

3308
drain(callback: AsyncCallback\<void>): void
3309

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

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

**参数:**

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

**示例:**

```js
3323
audioRenderer.drain((err) => {
3324
  if (err) {
3325 3326 3327
    console.error('Renderer drain failed');
  } else {
    console.info('Renderer drained.');
3328 3329 3330 3331
  }
});
```

3332
### drain<sup>8+</sup>
3333

3334
drain(): Promise\<void>
3335

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

3338
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3339 3340 3341

**返回值:**

3342 3343 3344
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3345 3346 3347 3348

**示例:**

```js
3349 3350 3351 3352
audioRenderer.drain().then(() => {
  console.info('Renderer drained successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3353 3354 3355
});
```

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

3358
stop(callback: AsyncCallback\<void>): void
3359

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

3362
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3363 3364 3365

**参数:**

3366 3367 3368
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3369 3370 3371 3372

**示例:**

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

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

3384
stop(): Promise\<void>
3385

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

3388
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3389 3390 3391

**返回值:**

3392 3393 3394
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3395 3396 3397 3398

**示例:**

```js
3399 3400 3401 3402
audioRenderer.stop().then(() => {
  console.info('Renderer stopped successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3403 3404 3405
});
```

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

3408
release(callback: AsyncCallback\<void>): void
3409

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

3412
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3413 3414 3415

**参数:**

3416 3417 3418
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
3419

3420 3421 3422
**示例:**

```js
3423
audioRenderer.release((err) => {
3424
  if (err) {
3425 3426 3427
    console.error('Renderer release failed');
  } else {
    console.info('Renderer released.');
3428 3429 3430 3431
  }
});
```

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

3434
release(): Promise\<void>
3435

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

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

3440
**返回值:**
3441

3442 3443 3444
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
3445

3446 3447 3448
**示例:**

```js
3449 3450 3451 3452
audioRenderer.release().then(() => {
  console.info('Renderer released successfully');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3453 3454 3455
});
```

3456
### write<sup>8+</sup>
3457

3458
write(buffer: ArrayBuffer, callback: AsyncCallback\<number>): void
3459

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

3462
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3463 3464 3465

**参数:**

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

**示例:**

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

3500
### write<sup>8+</sup>
3501

3502
write(buffer: ArrayBuffer): Promise\<number>
3503

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

3506
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3507 3508 3509

**返回值:**

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

**示例:**

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

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

3547
getAudioTime(callback: AsyncCallback\<number>): void
3548

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

3551
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3552 3553 3554

**参数:**

3555 3556 3557
| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |
3558 3559 3560 3561

**示例:**

```js
3562 3563
audioRenderer.getAudioTime((err, timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
3564 3565 3566
});
```

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

3569
getAudioTime(): Promise\<number>
3570

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

3573
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3574 3575 3576

**返回值:**

3577 3578 3579
| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |
3580 3581 3582 3583

**示例:**

```js
3584 3585 3586 3587
audioRenderer.getAudioTime().then((timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
3588 3589 3590
});
```

3591
### getBufferSize<sup>8+</sup>
3592

3593
getBufferSize(callback: AsyncCallback\<number>): void
3594

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

3597
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3598 3599 3600

**参数:**

3601 3602 3603
| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |
3604 3605 3606 3607

**示例:**

```js
3608
let bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
3609
  if (err) {
3610
    console.error('getBufferSize error');
3611 3612 3613 3614
  }
});
```

3615
### getBufferSize<sup>8+</sup>
3616

3617
getBufferSize(): Promise\<number>
3618

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

3621
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3622 3623 3624

**返回值:**

3625 3626 3627
| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |
3628 3629 3630 3631

**示例:**

```js
3632 3633 3634 3635 3636 3637
let bufferSize;
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
}).catch((err) => {
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
3638 3639 3640
});
```

3641
### setRenderRate<sup>8+</sup>
3642

3643
setRenderRate(rate: AudioRendererRate, callback: AsyncCallback\<void>): void
3644

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

3647
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3648 3649 3650

**参数:**

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

3656
**示例:**
3657

3658 3659 3660 3661 3662 3663 3664 3665 3666
```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.');
  }
});
```
3667

3668
### setRenderRate<sup>8+</sup>
3669

3670
setRenderRate(rate: AudioRendererRate): Promise\<void>
3671

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

3674
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3675 3676 3677

**参数:**

3678 3679 3680
| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
3681 3682 3683

**返回值:**

3684 3685 3686
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |
3687 3688 3689 3690

**示例:**

```js
3691 3692 3693 3694 3695
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
  console.info('setRenderRate SUCCESS');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
3696 3697
```

3698
### getRenderRate<sup>8+</sup>
3699

3700
getRenderRate(callback: AsyncCallback\<AudioRendererRate>): void
3701

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

3704
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3705 3706 3707

**参数:**

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

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

3714 3715 3716 3717
```js
audioRenderer.getRenderRate((err, renderrate) => {
  console.info(`getRenderRate: ${renderrate}`);
});
3718 3719
```

3720
### getRenderRate<sup>8+</sup>
3721

3722
getRenderRate(): Promise\<AudioRendererRate>
3723

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

3726
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3727 3728 3729

**返回值:**

3730 3731 3732
| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
3733 3734 3735 3736

**示例:**

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

3745
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
3746

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

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

3751
**参数:**
3752

3753 3754 3755
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
3756

3757
**返回值:**
3758

3759 3760 3761
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3762

3763 3764
**示例:**

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

3775
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
3776

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

3779
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794

**参数:**

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

3800 3801 3802
### setVolume<sup>9+</sup>

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

3804
设置应用的音量。使用Promise异步回调。
3805

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

3808
**参数:**
3809

3810 3811 3812
| 参数名     | 类型     | 必填   | 说明        |
| ---------- | ------- | ------ | ---------- |
| volume     | number  | 是     | 音量值。  |
3813

3814
**返回值:**
3815

3816 3817 3818
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
3819

3820 3821
**示例:**

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

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

3855
### on('audioInterrupt')<sup>9+</sup>
3856

3857
on(type: 'audioInterrupt', callback: Callback\<InterruptEvent>): void
3858

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

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

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

3865
**参数:**
M
mamingshuai 已提交
3866

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

3872
**错误码:**
Z
zengyawen 已提交
3873

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

3876 3877
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
3878
| 6800101 | if input parameter value error              |
Z
zengyawen 已提交
3879

3880 3881 3882 3883 3884
**示例:**

```js
let isPlay;
let started;
3885 3886 3887 3888 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
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 已提交
3932 3933
```

3934
### on('markReach')<sup>8+</sup>
3935

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

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

3940 3941 3942 3943 3944 3945 3946 3947 3948
**系统能力:** SystemCapability.Multimedia.Audio.Renderer

**参数:**

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

**示例:**

```js
3953 3954 3955 3956 3957
audioRenderer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
  }
});
3958 3959
```

Z
zengyawen 已提交
3960

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

3963 3964 3965
off(type: 'markReach'): void

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

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

3969 3970 3971 3972 3973
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3977
```js
3978
audioRenderer.off('markReach');
Z
zengyawen 已提交
3979 3980
```

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

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

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

3987
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3988 3989 3990

**参数:**

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

**示例:**

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

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

4009
off(type: 'periodReach'): void
Z
zengyawen 已提交
4010

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

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

4015
**参数:**
Z
zengyawen 已提交
4016

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

**示例:**

J
jiao_yanlin 已提交
4023
```js
4024
audioRenderer.off('periodReach')
Z
zengyawen 已提交
4025 4026
```

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

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

4031
订阅监听状态变化。
Z
zengyawen 已提交
4032

4033
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4034 4035 4036

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4044
```js
4045 4046 4047 4048 4049 4050 4051
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 已提交
4052
});
Z
zengyawen 已提交
4053 4054
```

4055
## AudioCapturer<sup>8+</sup>
Z
zengyawen 已提交
4056

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

4059
### 属性
Z
zengyawen 已提交
4060

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

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

**示例:**

J
jiao_yanlin 已提交
4069
```js
4070
let state = audioCapturer.state;
Z
zengyawen 已提交
4071 4072
```

4073
### getCapturerInfo<sup>8+</sup>
4074

4075
getCapturerInfo(callback: AsyncCallback<AudioCapturerInfo\>): void
4076

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

4079
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4080 4081 4082

**参数:**

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

**示例:**

```js
4090 4091 4092 4093 4094 4095 4096 4097
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}`);
  }
4098 4099 4100 4101
});
```


4102
### getCapturerInfo<sup>8+</sup>
4103

4104
getCapturerInfo(): Promise<AudioCapturerInfo\>
4105

4106 4107 4108
获取采集器信息。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
4109 4110 4111

**返回值:**

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

**示例:**

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

4133
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4134

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

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

4139
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4140 4141 4142

**参数:**

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

**示例:**

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

4163
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4164

4165
getStreamInfo(): Promise<AudioStreamInfo\>
Z
zengyawen 已提交
4166

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

4169
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4170 4171 4172

**返回值:**

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

**示例:**

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

4191
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4192

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

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

4197
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4198 4199 4200

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4207
```js
4208 4209
audioCapturer.getAudioStreamId((err, streamid) => {
  console.info(`audioCapturer GetStreamId: ${streamid}`);
L
lwx1059628 已提交
4210
});
Z
zengyawen 已提交
4211 4212
```

4213
### getAudioStreamId<sup>9+</sup>
Z
zengyawen 已提交
4214

4215
getAudioStreamId(): Promise<number\>
Z
zengyawen 已提交
4216

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

4219
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4220 4221 4222

**返回值:**

4223 4224 4225
| 类型             | 说明                   |
| :----------------| :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
Z
zengyawen 已提交
4226 4227 4228

**示例:**

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

4237
### start<sup>8+</sup>
Z
zengyawen 已提交
4238

4239
start(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4240

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

4243
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4244 4245 4246

**参数:**

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

**示例:**

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


4264
### start<sup>8+</sup>
Z
zengyawen 已提交
4265

4266
start(): Promise<void\>
Z
zengyawen 已提交
4267

4268 4269 4270
启动音频采集器。使用Promise方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4271 4272 4273

**返回值:**

4274 4275 4276
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4277 4278 4279

**示例:**

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

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

4296
stop(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4297

4298
停止采集。使用callback方式异步返回结果。
Z
zengyawen 已提交
4299

4300
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4301 4302 4303

**参数:**

4304 4305 4306
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
Z
zengyawen 已提交
4307 4308 4309

**示例:**

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

4320

Z
zengyawen 已提交
4321 4322
### stop<sup>8+</sup>

4323
stop(): Promise<void\>
Z
zengyawen 已提交
4324

4325
停止采集。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4326

4327
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4328 4329 4330

**返回值:**

4331 4332 4333
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4334 4335 4336

**示例:**

J
jiao_yanlin 已提交
4337
```js
4338 4339 4340 4341 4342 4343
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 已提交
4344
}).catch((err) => {
4345
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4346
});
Z
zengyawen 已提交
4347 4348 4349 4350
```

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

4351
release(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4352

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

4355
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4356 4357 4358

**参数:**

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

**示例:**

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

4375

Z
zengyawen 已提交
4376 4377
### release<sup>8+</sup>

4378
release(): Promise<void\>
Z
zengyawen 已提交
4379

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

4382
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4383 4384 4385

**返回值:**

4386 4387 4388
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4389 4390 4391

**示例:**

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

4404
### read<sup>8+</sup>
Z
zengyawen 已提交
4405

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

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

4410
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4411 4412 4413

**参数:**

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

**示例:**

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

4437
### read<sup>8+</sup>
Z
zengyawen 已提交
4438

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

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

4443 4444 4445 4446 4447 4448 4449 4450
**系统能力:** SystemCapability.Multimedia.Audio.Capturer

**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

4482
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4483 4484 4485

**参数:**

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

**示例:**

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

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

4500
getAudioTime(): Promise<number\>
Z
zengyawen 已提交
4501

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

4504
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4505 4506 4507

**返回值:**

4508 4509 4510
| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |
Z
zengyawen 已提交
4511 4512 4513

**示例:**

J
jiao_yanlin 已提交
4514
```js
4515 4516
audioCapturer.getAudioTime().then((audioTime) => {
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4517
}).catch((err) => {
4518 4519 4520 4521 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
  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 已提交
4574
});
Z
zengyawen 已提交
4575 4576
```

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

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

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

4583
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4584 4585 4586

**参数:**

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

**示例:**

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

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

4605
off(type: 'markReach'): void
Z
zengyawen 已提交
4606

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

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

4611
**参数:**
Z
zengyawen 已提交
4612

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

**示例:**

J
jiao_yanlin 已提交
4619
```js
4620
audioCapturer.off('markReach');
Z
zengyawen 已提交
4621 4622
```

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

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

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

4629
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4630 4631 4632

**参数:**

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

**示例:**

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

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

4651
off(type: 'periodReach'): void
Z
zengyawen 已提交
4652

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

4655
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4656 4657 4658

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4665
```js
4666
audioCapturer.off('periodReach')
Z
zengyawen 已提交
4667 4668
```

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

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

4673
订阅监听状态变化。
Z
zengyawen 已提交
4674

4675
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
4676 4677 4678

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4686
```js
4687 4688 4689 4690 4691 4692 4693
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 已提交
4694
});
Z
zengyawen 已提交
4695 4696
```

4697
## ToneType<sup>9+</sup>
Z
zengyawen 已提交
4698

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

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

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

4705
| 名称                                              |  值    | 说明                          |
4706 4707 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
| :------------------------------------------------ | :----- | :----------------------------|
| 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 已提交
4734

4735
## TonePlayer<sup>9+</sup>
Z
zengyawen 已提交
4736

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

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

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

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

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

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

4749 4750 4751 4752 4753 4754
**系统能力:** SystemCapability.Multimedia.Audio.Tone

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4760
```js
4761 4762 4763 4764 4765 4766 4767
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 已提交
4768
});
Z
zengyawen 已提交
4769
```
4770

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

4773
load(type: ToneType): Promise&lt;void&gt;
4774

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

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

4779
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4780 4781 4782

**参数:**

4783 4784
| 参数名         | 类型                    | 必填  |  说明             |
| :------------- | :--------------------- | :---  | ---------------- |
4785
| type           | [ToneType](#tonetype9)   | 是    | 配置的音调类型。  |
4786 4787 4788

**返回值:**

4789 4790 4791
| 类型            | 说明                        |
| :--------------| :-------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4792 4793

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

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

4803
### start<sup>9+</sup>
Z
zhujie81 已提交
4804

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

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

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

4811
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zhujie81 已提交
4812 4813

**参数:**
4814

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

Z
zhujie81 已提交
4819 4820
**示例:**

J
jiao_yanlin 已提交
4821
```js
4822 4823 4824 4825 4826 4827
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 已提交
4828
  }
4829
});
4830
```
Z
zengyawen 已提交
4831

4832
### start<sup>9+</sup>
4833

4834
start(): Promise&lt;void&gt;
4835

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

4838 4839
**系统接口:** 该接口为系统接口

4840
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4841 4842 4843

**返回值:**

4844 4845 4846
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4847 4848 4849 4850

**示例:**

```js
4851 4852 4853 4854
tonePlayer.start().then(() => {
  console.info('promise call start');
}).catch(() => {
  console.error('promise call start fail');
4855 4856 4857
});
```

4858
### stop<sup>9+</sup>
4859

4860
stop(callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
4861

4862 4863
停止当前正在播放的音调。使用callback方式异步返回结果。

4864 4865
**系统接口:** 该接口为系统接口

4866
**系统能力:** SystemCapability.Multimedia.Audio.Tone
Z
zengyawen 已提交
4867 4868 4869

**参数:**

4870 4871 4872
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
4873 4874 4875 4876

**示例:**

```js
4877 4878 4879 4880 4881 4882
tonePlayer.stop((err) => {
  if (err) {
    console.error(`callback call stop error: ${err.message}`);
    return;
  } else {
    console.error('callback call stop success ');
4883 4884 4885 4886
  }
});
```

4887
### stop<sup>9+</sup>
4888

4889
stop(): Promise&lt;void&gt;
4890

4891
停止当前正在播放的音调。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4892

4893 4894
**系统接口:** 该接口为系统接口

4895
**系统能力:** SystemCapability.Multimedia.Audio.Tone
4896

4897
**返回值:**
4898

4899 4900 4901
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
4902

Z
zengyawen 已提交
4903 4904
**示例:**

J
jiao_yanlin 已提交
4905
```js
4906 4907 4908 4909
tonePlayer.stop().then(() => {
  console.info('promise call stop finish');
}).catch(() => {
  console.error('promise call stop fail');
L
lwx1059628 已提交
4910
});
Z
zengyawen 已提交
4911 4912
```

4913
### release<sup>9+</sup>
L
lwx1059628 已提交
4914

4915
release(callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
4916

G
gloria 已提交
4917
释放与此TonePlayer对象关联的资源。使用callback方式异步返回结果。
L
lwx1059628 已提交
4918

4919 4920
**系统接口:** 该接口为系统接口

4921
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4922 4923 4924

**参数:**

4925 4926 4927
| 参数名   | 类型                 | 必填 | 说明                            |
| :------- | :------------------- | :--- | :---------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。  |
L
lwx1059628 已提交
4928 4929 4930

**示例:**

J
jiao_yanlin 已提交
4931
```js
4932 4933 4934 4935 4936 4937
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 已提交
4938
  }
L
lwx1059628 已提交
4939 4940 4941
});
```

4942
### release<sup>9+</sup>
L
lwx1059628 已提交
4943

4944
release(): Promise&lt;void&gt;
L
lwx1059628 已提交
4945

G
gloria 已提交
4946
释放与此TonePlayer对象关联的资源。使用Promise方式异步返回结果。
L
lwx1059628 已提交
4947

4948 4949
**系统接口:** 该接口为系统接口

4950
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
4951

4952
**返回值:**
L
lwx1059628 已提交
4953

4954 4955 4956
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
4957 4958 4959

**示例:**

J
jiao_yanlin 已提交
4960
```js
4961 4962 4963 4964 4965
tonePlayer.release().then(() => {
  console.info('promise call release');
}).catch(() => {
  console.error('promise call release fail');
});
L
lwx1059628 已提交
4966 4967
```

4968
## ActiveDeviceType<sup>(deprecated)</sup>
Z
zengyawen 已提交
4969

4970
枚举,活跃设备类型。
Z
zengyawen 已提交
4971

4972 4973
> **说明:**
> 从 API version 9 开始废弃,建议使用[CommunicationDeviceType](#communicationdevicetype9)替代。
L
lwx1059628 已提交
4974

4975
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
4976

4977
| 名称          |  值     | 说明                                                 |
4978 4979 4980
| ------------- | ------ | ---------------------------------------------------- |
| SPEAKER       | 2      | 扬声器。                                             |
| BLUETOOTH_SCO | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。 |
L
lwx1059628 已提交
4981

4982
## InterruptActionType<sup>(deprecated)</sup>
L
lwx1059628 已提交
4983

4984
枚举,中断事件返回类型。
L
lwx1059628 已提交
4985

4986 4987
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
4988

4989
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
4990

4991
| 名称           |  值     | 说明               |
4992 4993 4994
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
L
lwx1059628 已提交
4995

4996
## AudioInterrupt<sup>(deprecated)</sup>
L
lwx1059628 已提交
4997

4998 4999
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
5000

5001
音频监听事件传入的参数。
L
lwx1059628 已提交
5002

5003
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
5004

5005
| 名称            | 类型                        | 必填 | 说明                                                         |
5006 5007 5008 5009
| --------------- | --------------------------- | ----| ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是  | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是  | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是  | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
L
lwx1059628 已提交
5010

5011
## InterruptAction<sup>(deprecated)</sup>
L
lwx1059628 已提交
5012

5013 5014
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
L
lwx1059628 已提交
5015

5016
音频打断/获取焦点事件的回调方法。
L
lwx1059628 已提交
5017

5018
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
5019

5020 5021 5022 5023
| 名称       | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontype) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。 |
| type       | [InterruptType](#interrupttype)             | 否   | 打断事件类型。                                               |
5024
| hint       | [InterruptHint](#interrupthint)             | 否   | 打断事件提示。                                               |
5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040
| 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 已提交
5041 5042 5043

**参数:**

5044 5045 5046 5047 5048
| 参数名     | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                                   |
L
lwx1059628 已提交
5049 5050 5051

**示例:**

J
jiao_yanlin 已提交
5052
```js
5053 5054 5055 5056
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
    console.error(`Failed to set the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5057
  }
5058
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
5059 5060 5061
});
```

5062
### setVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5063

5064
setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;
L
lwx1059628 已提交
5065

5066
设置指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5067

5068 5069
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代。
L
lwx1059628 已提交
5070

5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088
**需要权限:** 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 已提交
5089 5090 5091

**示例:**

J
jiao_yanlin 已提交
5092
```js
5093 5094 5095
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.info('Promise returned to indicate a successful volume setting.');
});
L
lwx1059628 已提交
5096 5097
```

5098
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5099

5100
getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5101

5102
获取指定流的音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5103

5104 5105 5106 5107
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5108 5109 5110

**参数:**

5111 5112 5113 5114
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |
L
lwx1059628 已提交
5115 5116 5117

**示例:**

J
jiao_yanlin 已提交
5118
```js
5119
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5120
  if (err) {
5121 5122
    console.error(`Failed to obtain the volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5123
  }
5124
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
5125 5126 5127
});
```

5128
### getVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5129

5130
getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5131

5132
获取指定流的音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5133

5134 5135
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getVolume](#getvolume9)替代。
L
lwx1059628 已提交
5136

5137 5138 5139 5140 5141 5142 5143
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5144 5145 5146

**返回值:**

5147 5148 5149
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
L
lwx1059628 已提交
5150 5151 5152

**示例:**

J
jiao_yanlin 已提交
5153
```js
5154 5155
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
5156 5157 5158
});
```

5159
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5160

5161
getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
L
lwx1059628 已提交
5162

5163
获取指定流的最小音量,使用callback方式异步返回结果。
L
lwx1059628 已提交
5164

5165 5166 5167 5168
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5169 5170 5171

**参数:**

5172 5173 5174 5175
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |
L
lwx1059628 已提交
5176 5177 5178

**示例:**

J
jiao_yanlin 已提交
5179
```js
5180
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5181
  if (err) {
5182 5183
    console.error(`Failed to obtain the minimum volume. ${err}`);
    return;
J
jiao_yanlin 已提交
5184
  }
5185
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5186 5187 5188
});
```

5189
### getMinVolume<sup>(deprecated)</sup>
L
lwx1059628 已提交
5190

5191
getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
L
lwx1059628 已提交
5192

5193
获取指定流的最小音量,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5194

5195 5196 5197 5198 5199 5200 5201 5202 5203 5204
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMinVolume](#getminvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5205 5206 5207

**返回值:**

5208 5209 5210
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
L
lwx1059628 已提交
5211 5212 5213

**示例:**

J
jiao_yanlin 已提交
5214
```js
5215 5216
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
5217 5218 5219
});
```

5220
### getMaxVolume<sup>(deprecated)</sup>
5221

5222
getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
5223

5224
获取指定流的最大音量,使用callback方式异步返回结果。
5225

5226 5227 5228 5229
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5230 5231 5232

**参数:**

5233 5234 5235 5236
| 参数名     | 类型                                | 必填 | 说明                   |
| ---------- | ----------------------------------- | ---- | ---------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。           |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最大音量大小。 |
5237 5238 5239 5240

**示例:**

```js
5241 5242 5243 5244 5245 5246
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}`);
5247 5248 5249
});
```

5250
### getMaxVolume<sup>(deprecated)</sup>
5251

5252
getMaxVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
5253

5254
获取指定流的最大音量,使用Promise方式异步返回结果。
5255

5256 5257 5258 5259 5260 5261 5262 5263 5264 5265
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getMaxVolume](#getmaxvolume9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
5266 5267 5268

**返回值:**

5269 5270 5271
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
5272 5273 5274 5275

**示例:**

```js
5276 5277
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
  console.info('Promised returned to indicate that the maximum volume is obtained.');
5278 5279 5280
});
```

5281
### mute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5282

5283
mute(volumeType: AudioVolumeType, mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5284

5285
设置指定音量流静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5286

5287 5288 5289 5290 5291 5292 5293 5294
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[mute](#mute9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5295

5296
**参数:**
L
lwx1059628 已提交
5297

5298 5299 5300 5301 5302
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
| callback   | AsyncCallback&lt;void&gt;           | 是   | 回调表示成功还是失败。                |
L
lwx1059628 已提交
5303 5304 5305

**示例:**

J
jiao_yanlin 已提交
5306
```js
5307
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
5308
  if (err) {
5309 5310
    console.error(`Failed to mute the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5311
  }
5312
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
5313 5314 5315
});
```

5316 5317 5318 5319 5320 5321 5322 5323
### 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 已提交
5324

5325
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
L
lwx1059628 已提交
5326

5327
仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
L
lwx1059628 已提交
5328

5329
**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5330

5331 5332 5333 5334 5335 5336
**参数:**

| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5337 5338 5339

**返回值:**

5340 5341 5342
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
L
lwx1059628 已提交
5343 5344 5345

**示例:**

5346

J
jiao_yanlin 已提交
5347
```js
5348 5349
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
5350 5351 5352
});
```

5353
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5354

5355
isMute(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5356

5357
获取指定音量流是否被静音,使用callback方式异步返回结果。
L
lwx1059628 已提交
5358

5359 5360 5361 5362
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5363 5364 5365

**参数:**

5366 5367 5368 5369
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5370 5371 5372

**示例:**

J
jiao_yanlin 已提交
5373
```js
5374
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5375
  if (err) {
5376 5377
    console.error(`Failed to obtain the mute status. ${err}`);
    return;
J
jiao_yanlin 已提交
5378
  }
5379
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
5380 5381 5382
});
```

5383
### isMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5384

5385
isMute(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5386

5387
获取指定音量流是否被静音,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5388

5389 5390
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMute](#ismute9)替代。
L
lwx1059628 已提交
5391

5392 5393 5394 5395 5396 5397 5398
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5399 5400 5401

**返回值:**

5402 5403 5404
| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
5405 5406 5407

**示例:**

J
jiao_yanlin 已提交
5408
```js
5409 5410
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 已提交
5411 5412 5413
});
```

5414
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5415

5416
isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5417

5418
获取指定音量流是否为活跃状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5419

5420 5421 5422 5423
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
L
lwx1059628 已提交
5424 5425 5426

**参数:**

5427 5428 5429 5430
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5431 5432 5433

**示例:**

J
jiao_yanlin 已提交
5434
```js
5435
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
5436
  if (err) {
5437 5438
    console.error(`Failed to obtain the active status of the stream. ${err}`);
    return;
J
jiao_yanlin 已提交
5439
  }
5440
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
5441 5442 5443
});
```

5444
### isActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5445

5446
isActive(volumeType: AudioVolumeType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5447

5448
获取指定音量流是否为活跃状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5449

5450 5451
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioStreamManager中的[isActive](#isactive9)替代。
L
lwx1059628 已提交
5452

5453 5454 5455 5456 5457 5458 5459
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
L
lwx1059628 已提交
5460 5461 5462

**返回值:**

5463 5464 5465
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
L
lwx1059628 已提交
5466 5467 5468

**示例:**

J
jiao_yanlin 已提交
5469
```js
5470 5471
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 已提交
5472 5473 5474
});
```

5475
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5476

5477
setRingerMode(mode: AudioRingMode, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5478

5479
设置铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5480

5481 5482 5483 5484 5485 5486 5487 5488
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅在静音和非静音状态切换时需要该权限。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5489

5490
**参数:**
L
lwx1059628 已提交
5491

5492 5493 5494 5495
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5496 5497 5498

**示例:**

J
jiao_yanlin 已提交
5499
```js
5500 5501 5502 5503
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
  if (err) {
    console.error(`Failed to set the ringer mode.​ ${err}`);
    return;
J
jiao_yanlin 已提交
5504
  }
5505
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
J
jiao_yanlin 已提交
5506
});
L
lwx1059628 已提交
5507 5508
```

5509
### setRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5510

5511
setRingerMode(mode: AudioRingMode): Promise&lt;void&gt;
L
lwx1059628 已提交
5512

5513
设置铃声模式,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5514

5515 5516 5517 5518 5519 5520 5521 5522
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代。

**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅在静音和非静音状态切换时需要该权限。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5523 5524 5525

**参数:**

5526 5527 5528
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
L
lwx1059628 已提交
5529 5530 5531

**返回值:**

5532 5533 5534
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5535 5536 5537

**示例:**

J
jiao_yanlin 已提交
5538
```js
5539 5540
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
5541 5542 5543
});
```

5544
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5545

5546
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
L
lwx1059628 已提交
5547

5548
获取铃声模式,使用callback方式异步返回结果。
L
lwx1059628 已提交
5549

5550 5551 5552 5553
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5554 5555 5556

**参数:**

5557 5558 5559
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5560 5561 5562

**示例:**

J
jiao_yanlin 已提交
5563
```js
5564 5565 5566 5567 5568 5569
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 已提交
5570 5571 5572
});
```

5573
### getRingerMode<sup>(deprecated)</sup>
L
lwx1059628 已提交
5574

5575
getRingerMode(): Promise&lt;AudioRingMode&gt;
L
lwx1059628 已提交
5576

5577 5578 5579 5580
获取铃声模式,使用Promise方式异步返回结果。

> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[getRingerMode](#getringermode9)替代。
L
lwx1059628 已提交
5581

5582
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
5583 5584 5585

**返回值:**

5586 5587 5588
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
L
lwx1059628 已提交
5589 5590 5591

**示例:**

J
jiao_yanlin 已提交
5592
```js
5593 5594
audioManager.getRingerMode().then((value) => {
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
5595 5596 5597
});
```

5598
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5599

5600
getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void
L
lwx1059628 已提交
5601

5602
获取音频设备列表,使用callback方式异步返回结果。
L
lwx1059628 已提交
5603

5604 5605 5606 5607
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5608 5609 5610

**参数:**

5611 5612 5613 5614
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
L
lwx1059628 已提交
5615 5616

**示例:**
J
jiao_yanlin 已提交
5617
```js
5618 5619 5620 5621
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the device list. ${err}`);
    return;
J
jiao_yanlin 已提交
5622
  }
5623
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
5624 5625 5626
});
```

5627
### getDevices<sup>(deprecated)</sup>
L
lwx1059628 已提交
5628

5629
getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;
L
lwx1059628 已提交
5630

5631
获取音频设备列表,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5632

5633 5634 5635 5636 5637 5638 5639 5640 5641 5642
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[getDevices](#getdevices9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
L
lwx1059628 已提交
5643 5644 5645

**返回值:**

5646 5647 5648
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
L
lwx1059628 已提交
5649 5650 5651

**示例:**

J
jiao_yanlin 已提交
5652
```js
5653 5654
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
5655 5656 5657
});
```

5658
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5659

5660
setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5661

5662
设置设备激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5663

5664 5665 5666 5667
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5668 5669 5670

**参数:**

5671 5672 5673 5674 5675
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
L
lwx1059628 已提交
5676 5677 5678

**示例:**

J
jiao_yanlin 已提交
5679
```js
5680 5681 5682 5683
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 已提交
5684
  }
5685
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
5686 5687 5688
});
```

5689
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5690

5691
setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise&lt;void&gt;
L
lwx1059628 已提交
5692

5693
设置设备激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5694

5695 5696 5697 5698
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[setCommunicationDevice](#setcommunicationdevice9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5699 5700 5701

**参数:**

5702 5703 5704 5705 5706 5707 5708 5709 5710 5711
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
| active     | boolean                               | 是   | 设备激活状态。     |

**返回值:**

| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
L
lwx1059628 已提交
5712 5713 5714

**示例:**

5715

J
jiao_yanlin 已提交
5716
```js
5717 5718 5719
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
  console.info('Promise returned to indicate that the device is set to the active status.');
});
L
lwx1059628 已提交
5720 5721
```

5722
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5723

5724
isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
L
lwx1059628 已提交
5725

5726
获取指定设备的激活状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5727

5728 5729 5730 5731
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5732 5733 5734

**参数:**

5735 5736 5737 5738
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
L
lwx1059628 已提交
5739 5740 5741

**示例:**

J
jiao_yanlin 已提交
5742
```js
5743 5744 5745 5746
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 已提交
5747
  }
5748
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
5749 5750 5751
});
```

5752
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
5753

5754
isDeviceActive(deviceType: ActiveDeviceType): Promise&lt;boolean&gt;
L
lwx1059628 已提交
5755

5756
获取指定设备的激活状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
5757

5758 5759 5760 5761
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5762 5763 5764

**参数:**

5765 5766 5767 5768 5769 5770 5771 5772 5773
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |

**返回值:**

| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
L
lwx1059628 已提交
5774 5775 5776

**示例:**

J
jiao_yanlin 已提交
5777
```js
5778 5779 5780
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 已提交
5781 5782
```

5783
### setMicrophoneMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
5784

5785
setMicrophoneMute(mute: boolean, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
5786

5787
设置麦克风静音状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
5788

5789 5790 5791 5792 5793 5794
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

**需要权限:** ohos.permission.MICROPHONE

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
5795 5796 5797

**参数:**

5798 5799 5800 5801
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
L
lwx1059628 已提交
5802 5803 5804

**示例:**

J
jiao_yanlin 已提交
5805
```js
5806 5807 5808 5809
audioManager.setMicrophoneMute(true, (err) => {
  if (err) {
    console.error(`Failed to mute the microphone. ${err}`);
    return;
J
jiao_yanlin 已提交
5810
  }
5811
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
5812
});
5813 5814
```

5815
### setMicrophoneMute<sup>(deprecated)</sup>
5816

5817
setMicrophoneMute(mute: boolean): Promise&lt;void&gt;
5818

5819
设置麦克风静音状态,使用Promise方式异步返回结果。
5820

5821 5822 5823 5824 5825 5826
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。

**需要权限:** ohos.permission.MICROPHONE

**系统能力:** SystemCapability.Multimedia.Audio.Device
5827

5828
**参数:**
5829

5830 5831 5832
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
5833

5834
**返回值:**
5835

5836 5837 5838
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
5839

5840
**示例:**
5841

5842 5843 5844 5845 5846
```js
audioManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
});
```
5847

5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859
### 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
5860 5861 5862

**参数:**

5863 5864 5865
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5866 5867 5868 5869

**示例:**

```js
5870
audioManager.isMicrophoneMute((err, value) => {
5871
  if (err) {
5872
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
5873 5874
    return;
  }
5875
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
5876 5877 5878
});
```

5879
### isMicrophoneMute<sup>(deprecated)</sup>
5880

5881
isMicrophoneMute(): Promise&lt;boolean&gt;
5882

5883
获取麦克风静音状态,使用Promise方式异步返回结果。
5884

5885 5886
> **说明:**
>  从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMicrophoneMute](#ismicrophonemute9)替代。
5887

5888
**需要权限:** ohos.permission.MICROPHONE
5889

5890
**系统能力:** SystemCapability.Multimedia.Audio.Device
5891 5892 5893

**返回值:**

5894 5895 5896
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
5897 5898 5899 5900

**示例:**

```js
5901 5902
audioManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
5903 5904 5905
});
```

5906
### on('volumeChange')<sup>(deprecated)</sup>
5907

5908
on(type: 'volumeChange', callback: Callback\<VolumeEvent>): void
5909

5910 5911
> **说明:**
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeManager中的[on](#on9)替代。
5912

5913 5914 5915 5916 5917 5918 5919
监听系统音量变化事件。

**系统接口:** 该接口为系统接口

目前此订阅接口在单进程多AudioManager实例的使用场景下,仅最后一个实例的订阅生效,其他实例的订阅会被覆盖(即使最后一个实例没有进行订阅),因此推荐使用单一AudioManager实例进行开发。

**系统能力:** SystemCapability.Multimedia.Audio.Volume
5920 5921 5922

**参数:**

5923 5924 5925 5926
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'volumeChange'(系统音量变化事件,检测到系统音量改变时,触发该事件)。 |
| callback | Callback<[VolumeEvent](#volumeevent8)> | 是   | 回调方法。                                                   |
5927 5928 5929 5930

**示例:**

```js
5931 5932 5933 5934
audioManager.on('volumeChange', (volumeEvent) => {
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
5935 5936 5937
});
```

5938
### on('ringerModeChange')<sup>(deprecated)</sup>
5939

5940
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
5941

5942
监听铃声模式变化事件。
5943

5944
> **说明:**
5945
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[on('ringerModeChange')](#onringermodechange9)替代。
5946

5947
**系统接口:** 该接口为系统接口
5948

5949 5950 5951 5952 5953 5954 5955 5956
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                    | 是   | 事件回调类型,支持的事件为:'ringerModeChange'(铃声模式变化事件,检测到铃声模式改变时,触发该事件)。 |
| callback | Callback<[AudioRingMode](#audioringmode)> | 是   | 回调方法。                                                   |
5957 5958 5959 5960

**示例:**

```js
5961 5962
audioManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
5963 5964 5965
});
```

5966
### on('deviceChange')<sup>(deprecated)</sup>
5967

5968
on(type: 'deviceChange', callback: Callback<DeviceChangeAction\>): void
5969

5970
设备更改。音频设备连接状态变化。
5971

5972 5973 5974 5975
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[on](#on9)替代。

**系统能力:** SystemCapability.Multimedia.Audio.Device
5976 5977 5978

**参数:**

5979 5980 5981 5982
| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |
5983 5984 5985 5986

**示例:**

```js
5987 5988 5989 5990 5991
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} `);
5992 5993 5994
});
```

5995
### off('deviceChange')<sup>(deprecated)</sup>
5996

5997
off(type: 'deviceChange', callback?: Callback<DeviceChangeAction\>): void
5998

5999
取消订阅音频设备连接变化事件。
6000

6001 6002
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[off](#off9)替代。
6003

6004
**系统能力:** SystemCapability.Multimedia.Audio.Device
6005

6006 6007 6008 6009 6010 6011
**参数:**

| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)> | 否   | 获取设备更新详情。                         |
6012 6013 6014 6015

**示例:**

```js
6016 6017
audioManager.off('deviceChange', (deviceChanged) => {
  console.info('Should be no callback.');
6018 6019 6020
});
```

6021
### on('interrupt')<sup>(deprecated)</sup>
6022

6023
on(type: 'interrupt', interrupt: AudioInterrupt, callback: Callback\<InterruptAction>): void
6024

6025
请求焦点并开始监听音频打断事件(当应用程序的音频被另一个播放事件中断,回调通知此应用程序)。
6026

6027
[on('audioInterrupt')](#onaudiointerrupt9)作用一致,均用于监听焦点变化。为无音频流的场景(未曾创建AudioRenderer对象),比如FM、语音唤醒等提供焦点变化监听功能。
6028

6029 6030 6031 6032
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。

**系统能力:** SystemCapability.Multimedia.Audio.Renderer
6033 6034 6035

**参数:**

6036 6037 6038 6039 6040
| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 是   | 音频打断事件回调方法。                                       |
6041 6042 6043 6044

**示例:**

```js
6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057
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} `);
6058 6059 6060 6061
  }
});
```

6062
### off('interrupt')<sup>(deprecated)</sup>
6063

6064
off(type: 'interrupt', interrupt: AudioInterrupt, callback?: Callback\<InterruptAction>): void
6065

6066
取消监听音频打断事件(删除监听事件,取消打断)。
6067

6068 6069
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
6070

6071
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
6072

6073 6074 6075 6076 6077 6078 6079
**参数:**

| 参数名    | 类型                                          | 必填 | 说明                                                         |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type      | string                                        | 是   | 音频打断事件回调类型,支持的事件为:'interrupt'(多应用之间第二个应用会打断第一个应用,触发该事件)。 |
| interrupt | AudioInterrupt                                | 是   | 音频打断事件类型的参数。                                     |
| callback  | Callback<[InterruptAction](#interruptaction)> | 否   | 音频打断事件回调方法。                                       |
6080 6081 6082 6083

**示例:**

```js
6084 6085 6086 6087 6088 6089 6090 6091 6092 6093
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} `);
  }
6094 6095
});
```