js-apis-audio.md 237.5 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.multimedia.audio (音频管理)
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
> **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
14

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
import featureAbility from '@ohos.ability.featureAbility';
77
import fs from '@ohos.file.fs';
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
import featureAbility from '@ohos.ability.featureAbility';
132
import fs from '@ohos.file.fs';
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

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

346
| 名称                         | 值      | 说明       |
Z
zengyawen 已提交
347 348 349 350
| ---------------------------- | ------ | ---------- |
| VOICE_CALL<sup>8+</sup>      | 0      | 语音电话。 |
| RINGTONE                     | 2      | 铃声。     |
| MEDIA                        | 3      | 媒体。     |
L
li-yifan2 已提交
351 352
| ALARM<sup>10+</sup>          | 4      | 闹钟。     |
| ACCESSIBILITY<sup>10+</sup>  | 5      | 无障碍。   |
Z
zengyawen 已提交
353
| VOICE_ASSISTANT<sup>8+</sup> | 9      | 语音助手。 |
L
li-yifan2 已提交
354
| ULTRASONIC<sup>10+</sup>     | 10     | 超声波。<br/>此接口为系统接口。|
355
| ALL<sup>9+</sup>             | 100    | 所有公共音频流。<br/>此接口为系统接口。|
Z
zengyawen 已提交
356

357 358 359 360 361 362 363 364
## InterruptRequestResultType<sup>9+</sup>

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

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

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

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

370
## InterruptMode<sup>9+</sup>
371

372
枚举,焦点模型。
373

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

376
| 名称                         | 值      | 说明       |
377
| ---------------------------- | ------ | ---------- |
378 379
| SHARE_MODE                   | 0      | 共享焦点模式。 |
| INDEPENDENT_MODE             | 1      | 独立焦点模式。 |
380

Z
zengyawen 已提交
381
## DeviceFlag
M
mamingshuai 已提交
382

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

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

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

## DeviceRole
M
mamingshuai 已提交
398

399
枚举,设备角色。
M
mamingshuai 已提交
400

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

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

Z
zengyawen 已提交
408 409 410
## DeviceType

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

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

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

427
## CommunicationDeviceType<sup>9+</sup>
428 429 430

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

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

433
| 名称          | 值     | 说明          |
434 435 436
| ------------- | ------ | -------------|
| SPEAKER       | 2      | 扬声器。      |

Z
zengyawen 已提交
437
## AudioRingMode
438 439 440

枚举,铃声模式。

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

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

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

枚举,音频采样格式。

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

455
| 名称                                |  值    | 说明                       |
456 457 458 459 460 461
| ---------------------------------- | ------ | -------------------------- |
| 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>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
J
jiao_yanlin 已提交
462
| SAMPLE_FORMAT_F32LE<sup>9+</sup>   | 4      | 带符号的32位浮点数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
Z
zengyawen 已提交
463

464 465 466 467
## AudioErrors<sup>9+</sup>

枚举,音频错误码。

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

470
| 名称                 | 值      | 说明         |
471 472 473 474 475 476
| ---------------------| --------| ----------------- |
| ERROR_INVALID_PARAM  | 6800101 | 无效入参。         |
| ERROR_NO_MEMORY      | 6800102 | 分配内存失败。     |
| ERROR_ILLEGAL_STATE  | 6800103 | 状态不支持。       |
| ERROR_UNSUPPORTED    | 6800104 | 参数选项不支持。    |
| ERROR_TIMEOUT        | 6800105 | 处理超时。         |
477
| ERROR_STREAM_LIMIT   | 6800201 | 音频流数量达到限制。|
478
| ERROR_SYSTEM         | 6800301 | 系统处理异常。     |
479

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

枚举, 音频声道。

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

486
| 名称      |  值       | 说明     |
Z
zengyawen 已提交
487
| --------- | -------- | -------- |
J
jiaoyanlin3 已提交
488 489
| CHANNEL_1 | 0x1 << 0 | 第一声道。 |
| CHANNEL_2 | 0x1 << 1 | 第二声道。 |
Z
zengyawen 已提交
490 491 492

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

J
jiao_yanlin 已提交
493
枚举,音频采样率,具体设备支持的采样率规格会存在差异。
Z
zengyawen 已提交
494

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

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

枚举,音频编码类型。

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

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

L
lwx1059628 已提交
522
## ContentType
Z
zengyawen 已提交
523 524 525

枚举,音频内容类型。

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

528
| 名称                               |  值    | 说明       |
L
lwx1059628 已提交
529 530 531 532 533
| ---------------------------------- | ------ | ---------- |
| CONTENT_TYPE_UNKNOWN               | 0      | 未知类型。 |
| CONTENT_TYPE_SPEECH                | 1      | 语音。     |
| CONTENT_TYPE_MUSIC                 | 2      | 音乐。     |
| CONTENT_TYPE_MOVIE                 | 3      | 电影。     |
534
| CONTENT_TYPE_SONIFICATION          | 4      | 通知音。   |
L
lwx1059628 已提交
535
| CONTENT_TYPE_RINGTONE<sup>8+</sup> | 5      | 铃声。     |
L
li-yifan2 已提交
536
| CONTENT_TYPE_ULTRASONIC<sup>10+</sup>| 9      | 超声波。<br/>此接口为系统接口。|
L
lwx1059628 已提交
537
## StreamUsage
Z
zengyawen 已提交
538 539 540

枚举,音频流使用类型。

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

543
| 名称                                      |  值    | 说明       |
544 545 546
| ------------------------------------------| ------ | ---------- |
| STREAM_USAGE_UNKNOWN                      | 0      | 未知类型。 |
| STREAM_USAGE_MEDIA                        | 1      | 音频。     |
L
li-yifan2 已提交
547
| STREAM_USAGE_VOICE_COMMUNICATION          | 2      | 语音通信。 | 
548
| STREAM_USAGE_VOICE_ASSISTANT<sup>9+</sup> | 3      | 语音播报。 |
L
li-yifan2 已提交
549
| STREAM_USAGE_ALARM<sup>10+</sup>          | 4      | 闹钟。     |
550
| STREAM_USAGE_NOTIFICATION_RINGTONE        | 6      | 通知铃声。 |
L
li-yifan2 已提交
551 552
| STREAM_USAGE_ACCESSIBILITY<sup>10+</sup>  | 8     | 无障碍。   |
| STREAM_USAGE_SYSTEM<sup>10+</sup>         | 9     | 系统音(如屏幕锁定或按键音)。<br/>此接口为系统接口。 |
Z
zengyawen 已提交
553

554
## InterruptRequestType<sup>9+</sup>
555

556
枚举,音频中断请求类型。
557

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

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

562
| 名称                               |  值     | 说明                       |
563 564
| ---------------------------------- | ------ | ------------------------- |
| INTERRUPT_REQUEST_TYPE_DEFAULT     | 0      |  默认类型,可中断音频请求。  |
565

Z
zengyawen 已提交
566 567 568 569
## AudioState<sup>8+</sup>

枚举,音频状态。

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

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

Q
Qin Peng 已提交
582 583 584 585 586 587 588 589 590 591 592
## AudioEffectMode<sup>10+</sup>

枚举,音效模式。

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

| 名称               | 值     | 说明       |
| ------------------ | ------ | ---------- |
| EFFECT_NONE        | 0      | 关闭音效。 |
| EFFECT_DEFAULT     | 1      | 默认音效。 |

Z
zengyawen 已提交
593 594
## AudioRendererRate<sup>8+</sup>

L
lwx1059628 已提交
595
枚举,音频渲染速度。
Z
zengyawen 已提交
596

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

599
| 名称               | 值     | 说明       |
Z
zengyawen 已提交
600 601 602 603 604
| ------------------ | ------ | ---------- |
| RENDER_RATE_NORMAL | 0      | 正常速度。 |
| RENDER_RATE_DOUBLE | 1      | 2倍速。    |
| RENDER_RATE_HALF   | 2      | 0.5倍数。  |

L
lwx1059628 已提交
605
## InterruptType
Z
zengyawen 已提交
606 607 608

枚举,中断类型。

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

611
| 名称                 |  值     | 说明                   |
Z
zengyawen 已提交
612 613 614 615
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
616
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
617 618 619

枚举,强制打断类型。

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

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

L
lwx1059628 已提交
627
## InterruptHint
Z
zengyawen 已提交
628 629 630

枚举,中断提示。

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

633
| 名称                               |  值     | 说明                                         |
L
lwx1059628 已提交
634 635 636 637 638 639 640
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
641 642 643 644 645

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

音频流信息。

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

648 649 650 651 652 653
| 名称         | 类型                                               | 必填 | 说明               |
| ------------ | ------------------------------------------------- | ---- | ------------------ |
| samplingRate | [AudioSamplingRate](#audiosamplingrate8)          | 是   | 音频文件的采样率。 |
| channels     | [AudioChannel](#audiochannel8)                    | 是   | 音频文件的通道数。 |
| sampleFormat | [AudioSampleFormat](#audiosampleformat8)          | 是   | 音频采样格式。     |
| encodingType | [AudioEncodingType](#audioencodingtype8)          | 是   | 音频编码格式。     |
Z
zengyawen 已提交
654 655 656

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

L
lwx1059628 已提交
657
音频渲染器信息。
Z
zengyawen 已提交
658

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

661
| 名称          | 类型                        | 必填  | 说明             |
L
lwx1059628 已提交
662
| ------------- | --------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
663
| content       | [ContentType](#contenttype) | 是   | 媒体类型。       |
L
lwx1059628 已提交
664 665
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
666

667 668 669 670
## InterruptResult<sup>9+</sup>

音频中断结果。

671
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
672 673 674 675 676 677 678 679

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

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

Z
zengyawen 已提交
680 681
## AudioRendererOptions<sup>8+</sup>

L
lwx1059628 已提交
682
音频渲染器选项信息。
Z
zengyawen 已提交
683

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

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

L
lwx1059628 已提交
691
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
692 693 694

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

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

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

J
jiaoyanlin3 已提交
703
## VolumeEvent<sup>9+</sup>
Z
zengyawen 已提交
704 705 706

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

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

709
| 名称       | 类型                                | 必填   | 说明                                                     |
Z
zengyawen 已提交
710
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
J
jiaoyanlin3 已提交
711 712 713 714 715
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                               |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。     |
| updateUi   | boolean                             | 是   | 在UI中显示音量变化。                                        |
| volumeGroupId | number                           | 是   | 音量组id。可用于getGroupManager入参。<br/>此接口为系统接口。  |
| networkId  | string                              | 是   | 网络id。<br/>此接口为系统接口。                             |
W
wangtao 已提交
716

Z
zengyawen 已提交
717 718 719 720
## MicStateChangeEvent<sup>9+</sup>

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

721
**系统能力:** SystemCapability.Multimedia.Audio.Device
Z
zengyawen 已提交
722 723

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

W
wangtao 已提交
727 728 729 730
## ConnectType<sup>9+</sup>

枚举,设备连接类型。

J
jiao_yanlin 已提交
731 732
**系统接口:** 该接口为系统接口

733
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
734

735
| 名称                            |  值     | 说明                   |
W
wangtao 已提交
736 737 738 739
| :------------------------------ | :----- | :--------------------- |
| CONNECT_TYPE_LOCAL              | 1      | 本地设备。         |
| CONNECT_TYPE_DISTRIBUTED        | 2      | 分布式设备。            |

740 741 742 743 744 745 746 747
## VolumeGroupInfos<sup>9+</sup>

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

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

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

W
wangtao 已提交
748 749 750 751
## VolumeGroupInfo<sup>9+</sup>

音量组信息。

752
**系统接口:** 该接口为系统接口
W
wangtao 已提交
753

754
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
755 756 757 758 759 760

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

L
lwx1059628 已提交
764 765 766 767
## DeviceChangeAction

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

768
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
769 770 771

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
772 773
| type              | [DeviceChangeType](#devicechangetype)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#audiodevicedescriptors) | 是   | 设备信息。         |
L
lwx1059628 已提交
774 775 776 777 778

## DeviceChangeType

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

779
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
780

781
| 名称       |  值     | 说明           |
L
lwx1059628 已提交
782 783 784 785
| :--------- | :----- | :------------- |
| CONNECT    | 0      | 设备连接。     |
| DISCONNECT | 1      | 断开设备连接。 |

Z
zengyawen 已提交
786 787 788 789
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

Z
zengyawen 已提交
790
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Capturer
Z
zengyawen 已提交
791 792 793 794

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

L
lwx1059628 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
## 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>

枚举,音源类型。

812
**系统能力:** SystemCapability.Multimedia.Audio.Core
L
lwx1059628 已提交
813

814
| 名称                                         |  值     | 说明                   |
815 816 817 818 819
| :------------------------------------------- | :----- | :--------------------- |
| SOURCE_TYPE_INVALID                          | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                              | 0      | Mic音频源。            |
| SOURCE_TYPE_VOICE_RECOGNITION<sup>9+</sup>   | 1      | 语音识别源。        |
| SOURCE_TYPE_VOICE_COMMUNICATION              | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
820 821 822 823 824

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

枚举,音频场景。

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

827
| 名称                   |  值     | 说明                                          |
Z
zengyawen 已提交
828 829
| :--------------------- | :----- | :-------------------------------------------- |
| AUDIO_SCENE_DEFAULT    | 0      | 默认音频场景。                                |
830 831
| AUDIO_SCENE_RINGING    | 1      | 响铃模式。<br/>此接口为系统接口。 |
| AUDIO_SCENE_PHONE_CALL | 2      | 电话模式。<br/>此接口为系统接口。 |
Z
zengyawen 已提交
832
| AUDIO_SCENE_VOICE_CHAT | 3      | 语音聊天模式。                                |
L
lwx1059628 已提交
833

Z
zengyawen 已提交
834
## AudioManager
M
mamingshuai 已提交
835

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

838
### setAudioParameter
M
mamingshuai 已提交
839

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

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

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

846
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS
847

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

M
mamingshuai 已提交
850 851
**参数:**

852 853 854 855 856
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
857

M
mamingshuai 已提交
858 859
**示例:**

J
jiao_yanlin 已提交
860
```js
861
audioManager.setAudioParameter('key_example', 'value_example', (err) => {
J
jiao_yanlin 已提交
862
  if (err) {
863
    console.error(`Failed to set the audio parameter. ${err}`);
J
jiao_yanlin 已提交
864 865
    return;
  }
866
  console.info('Callback invoked to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
867
});
M
mamingshuai 已提交
868 869
```

870
### setAudioParameter
M
mamingshuai 已提交
871

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

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

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

878
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS
879

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

M
mamingshuai 已提交
882 883
**参数:**

884 885 886 887
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
M
mamingshuai 已提交
888 889 890

**返回值:**

891 892 893
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
M
mamingshuai 已提交
894 895 896

**示例:**

J
jiao_yanlin 已提交
897
```js
898 899
audioManager.setAudioParameter('key_example', 'value_example').then(() => {
  console.info('Promise returned to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
900
});
M
mamingshuai 已提交
901 902
```

903
### getAudioParameter
Z
zengyawen 已提交
904

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

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

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

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

M
mamingshuai 已提交
913 914
**参数:**

915 916 917 918
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
919

M
mamingshuai 已提交
920 921
**示例:**

J
jiao_yanlin 已提交
922
```js
923
audioManager.getAudioParameter('key_example', (err, value) => {
J
jiao_yanlin 已提交
924
  if (err) {
925
    console.error(`Failed to obtain the value of the audio parameter. ${err}`);
J
jiao_yanlin 已提交
926 927
    return;
  }
928
  console.info(`Callback invoked to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
929
});
M
mamingshuai 已提交
930 931
```

932
### getAudioParameter
Z
zengyawen 已提交
933

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

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

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

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

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

944 945 946
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
M
mamingshuai 已提交
947 948 949

**返回值:**

950 951 952
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
M
mamingshuai 已提交
953 954 955

**示例:**

J
jiao_yanlin 已提交
956
```js
957 958
audioManager.getAudioParameter('key_example').then((value) => {
  console.info(`Promise returned to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
959
});
M
mamingshuai 已提交
960 961
```

962
### setAudioScene<sup>8+</sup>
Z
zengyawen 已提交
963

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

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

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

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

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

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

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

J
jiao_yanlin 已提交
981
```js
982
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
J
jiao_yanlin 已提交
983
  if (err) {
984
    console.error(`Failed to set the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
985 986
    return;
  }
987
  console.info('Callback invoked to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
988
});
M
mamingshuai 已提交
989 990
```

991
### setAudioScene<sup>8+</sup>
Z
zengyawen 已提交
992

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

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

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

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

M
mamingshuai 已提交
1001 1002
**参数:**

1003 1004 1005
| 参数名 | 类型                                 | 必填 | 说明           |
| :----- | :----------------------------------- | :--- | :------------- |
| scene  | <a href="#audioscene">AudioScene</a> | 是   | 音频场景模式。 |
M
mamingshuai 已提交
1006 1007 1008

**返回值:**

1009 1010 1011
| 类型           | 说明                 |
| :------------- | :------------------- |
| Promise<void\> | 用于返回结果的回调。 |
M
mamingshuai 已提交
1012 1013 1014

**示例:**

J
jiao_yanlin 已提交
1015
```js
1016 1017 1018 1019
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 已提交
1020
});
M
mamingshuai 已提交
1021 1022
```

1023
### getAudioScene<sup>8+</sup>
M
mamingshuai 已提交
1024

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

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

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

M
mamingshuai 已提交
1031 1032
**参数:**

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

M
mamingshuai 已提交
1037 1038
**示例:**

J
jiao_yanlin 已提交
1039
```js
1040
audioManager.getAudioScene((err, value) => {
J
jiao_yanlin 已提交
1041
  if (err) {
1042
    console.error(`Failed to obtain the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
1043 1044
    return;
  }
1045
  console.info(`Callback invoked to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
1046
});
M
mamingshuai 已提交
1047 1048
```

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

1051
getAudioScene\(\): Promise<AudioScene\>
Z
zengyawen 已提交
1052

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

1055
**系统能力:** SystemCapability.Multimedia.Audio.Communication
M
mamingshuai 已提交
1056 1057 1058

**返回值:**

1059 1060 1061
| 类型                                          | 说明                         |
| :-------------------------------------------- | :--------------------------- |
| Promise<<a href="#audioscene">AudioScene</a>> | 用于返回音频场景模式的回调。 |
M
mamingshuai 已提交
1062 1063 1064

**示例:**

J
jiao_yanlin 已提交
1065
```js
1066 1067 1068 1069
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 已提交
1070
});
Z
zengyawen 已提交
1071 1072
```

1073
### getVolumeManager<sup>9+</sup>
1074

1075
getVolumeManager(): AudioVolumeManager
1076

1077
获取音频音量管理器。
1078

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

Z
zengyawen 已提交
1081 1082
**示例:**

J
jiao_yanlin 已提交
1083
```js
1084
let audioVolumeManager = audioManager.getVolumeManager();
1085 1086
```

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

1089
getStreamManager(): AudioStreamManager
1090

1091
获取音频流管理器。
1092

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

1095
**示例:**
1096

1097 1098 1099
```js
let audioStreamManager = audioManager.getStreamManager();
```
Z
zengyawen 已提交
1100

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

1103
getRoutingManager(): AudioRoutingManager
1104

1105
获取音频路由设备管理器。
1106

1107
**系统能力:** SystemCapability.Multimedia.Audio.Device
1108 1109 1110

**示例:**

J
jiao_yanlin 已提交
1111
```js
1112
let audioRoutingManager = audioManager.getRoutingManager();
1113 1114
```

1115
### setVolume<sup>(deprecated)</sup>
1116

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

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

1121
> **说明:**
Z
zengyawen 已提交
1122
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代,替代接口能力仅对系统应用开放。
1123

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

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

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

Z
zengyawen 已提交
1130
**参数:**
1131

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

**示例:**

J
jiao_yanlin 已提交
1140
```js
1141
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
J
jiao_yanlin 已提交
1142
  if (err) {
1143
    console.error(`Failed to set the volume. ${err}`);
J
jiao_yanlin 已提交
1144 1145
    return;
  }
1146
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
1147
});
1148 1149
```

1150
### setVolume<sup>(deprecated)</sup>
1151

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

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

1156
> **说明:**
Z
zengyawen 已提交
1157
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[setVolume](#setvolume9)替代,替代接口能力仅对系统应用开放。
1158

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

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。

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

**参数:**

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

1172 1173
**返回值:**

1174 1175 1176
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1177 1178 1179

**示例:**

J
jiao_yanlin 已提交
1180
```js
1181
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
1182
  console.info('Promise returned to indicate a successful volume setting.');
L
lwx1059628 已提交
1183
});
1184 1185
```

1186
### getVolume<sup>(deprecated)</sup>
1187

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

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

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

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

1197 1198
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1206
```js
1207
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1208
  if (err) {
1209
    console.error(`Failed to obtain the volume. ${err}`);
J
jiao_yanlin 已提交
1210 1211
    return;
  }
1212
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
1213
});
1214 1215
```

1216
### getVolume<sup>(deprecated)</sup>
1217

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

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

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

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

1227 1228
**参数:**

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

**返回值:**

1235 1236 1237
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
1238 1239 1240

**示例:**

J
jiao_yanlin 已提交
1241
```js
1242 1243
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
1244
});
1245 1246
```

1247
### getMinVolume<sup>(deprecated)</sup>
1248

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

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

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

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

1258 1259
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1267
```js
1268
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1269
  if (err) {
1270
    console.error(`Failed to obtain the minimum volume. ${err}`);
J
jiao_yanlin 已提交
1271 1272
    return;
  }
1273
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1274
});
1275 1276
```

1277
### getMinVolume<sup>(deprecated)</sup>
1278

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

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

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

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

1288 1289
**参数:**

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

**返回值:**

1296 1297 1298
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
1299 1300 1301

**示例:**

J
jiao_yanlin 已提交
1302
```js
1303 1304
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1305
});
1306 1307
```

1308
### getMaxVolume<sup>(deprecated)</sup>
1309

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

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

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

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

1319 1320
**参数:**

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

**示例:**
1327

J
jiao_yanlin 已提交
1328
```js
1329
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1330
  if (err) {
1331
    console.error(`Failed to obtain the maximum volume. ${err}`);
J
jiao_yanlin 已提交
1332 1333
    return;
  }
1334
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
L
lwx1059628 已提交
1335
});
1336 1337
```

1338
### getMaxVolume<sup>(deprecated)</sup>
1339

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

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

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

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

1349 1350
**参数:**

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

**返回值:**

1357 1358 1359
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
1360 1361 1362

**示例:**

J
jiao_yanlin 已提交
1363
```js
1364
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
1365
  console.info('Promised returned to indicate that the maximum volume is obtained.');
L
lwx1059628 已提交
1366
});
1367 1368
```

1369
### mute<sup>(deprecated)</sup>
Z
zengyawen 已提交
1370

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

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

1375
> **说明:**
Z
zengyawen 已提交
1376
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[mute](#mute9)替代,替代接口能力仅对系统应用开放。
1377

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

1380 1381
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1390
```js
1391
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
1392
  if (err) {
1393
    console.error(`Failed to mute the stream. ${err}`);
J
jiao_yanlin 已提交
1394 1395
    return;
  }
1396
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
1397
});
1398 1399
```

1400
### mute<sup>(deprecated)</sup>
Z
zengyawen 已提交
1401

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

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

1406
> **说明:**
Z
zengyawen 已提交
1407
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[mute](#mute9)替代,替代接口能力仅对系统应用开放。
1408

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

1411 1412
**参数:**

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

**返回值:**

1420 1421 1422
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1423 1424 1425

**示例:**

1426

J
jiao_yanlin 已提交
1427
```js
1428
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
1429
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
1430
});
1431 1432
```

1433
### isMute<sup>(deprecated)</sup>
1434

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

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

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

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

1444 1445
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1453
```js
1454
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1455
  if (err) {
1456
    console.error(`Failed to obtain the mute status. ${err}`);
J
jiao_yanlin 已提交
1457 1458
    return;
  }
1459
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
1460
});
1461 1462
```

1463
### isMute<sup>(deprecated)</sup>
1464

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

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

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

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

1474 1475
**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1488
```js
1489
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
1490
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1491
});
1492 1493
```

1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
### isActive<sup>(deprecated)</sup>

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

获取指定音量流是否为活跃状态,使用callback方式异步返回结果。

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

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

**参数:**

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

**示例:**

```js
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the active status of the stream. ${err}`);
    return;
  }
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
});
```

### isActive<sup>(deprecated)</sup>

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

获取指定音量流是否为活跃状态,使用Promise方式异步返回结果。

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
});
```

### setRingerMode<sup>(deprecated)</sup>
Z
zengyawen 已提交
1556

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

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

1561
> **说明:**
Z
zengyawen 已提交
1562
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代,替代接口能力仅对系统应用开放。
1563

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

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

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

1570 1571
**参数:**

1572 1573 1574 1575
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1576 1577 1578

**示例:**

J
jiao_yanlin 已提交
1579
```js
1580
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
J
jiao_yanlin 已提交
1581
  if (err) {
1582
    console.error(`Failed to set the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1583 1584
    return;
  }
1585
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1586
});
1587 1588
```

1589
### setRingerMode<sup>(deprecated)</sup>
Z
zengyawen 已提交
1590

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

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

1595
> **说明:**
Z
zengyawen 已提交
1596 1597
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用AudioVolumeGroupManager中的[setRingerMode](#setringermode9)替代,替代接口能力仅对系统应用开放。

1598

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

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

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

1605 1606
**参数:**

1607 1608 1609
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1610 1611 1612

**返回值:**

Z
zengyawen 已提交
1613 1614
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1615
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1616 1617 1618

**示例:**

J
jiao_yanlin 已提交
1619
```js
1620
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
1621
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1622
});
1623 1624
```

1625
### getRingerMode<sup>(deprecated)</sup>
1626

1627
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
1628

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

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

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

1636 1637
**参数:**

1638 1639 1640
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1641 1642 1643

**示例:**

J
jiao_yanlin 已提交
1644
```js
1645
audioManager.getRingerMode((err, value) => {
J
jiao_yanlin 已提交
1646
  if (err) {
1647
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1648 1649
    return;
  }
1650
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1651
});
1652 1653
```

1654
### getRingerMode<sup>(deprecated)</sup>
1655

1656
getRingerMode(): Promise&lt;AudioRingMode&gt;
1657

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

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

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

1665 1666
**返回值:**

1667 1668 1669
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1670 1671 1672

**示例:**

J
jiao_yanlin 已提交
1673
```js
1674
audioManager.getRingerMode().then((value) => {
1675
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1676
});
1677 1678
```

1679
### getDevices<sup>(deprecated)</sup>
Z
zengyawen 已提交
1680

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

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
Z
zengyawen 已提交
1689 1690 1691

**参数:**

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

1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
**示例:**
```js
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the device list. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate that the device list is obtained.');
});
```
1707

1708
### getDevices<sup>(deprecated)</sup>
1709

1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
getDevices(deviceFlag: DeviceFlag): Promise&lt;AudioDeviceDescriptors&gt;

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

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

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

**参数:**

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

**返回值:**

| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
Z
zengyawen 已提交
1730 1731 1732

**示例:**

J
jiao_yanlin 已提交
1733
```js
1734 1735
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
1736
});
Z
zengyawen 已提交
1737 1738
```

1739
### setDeviceActive<sup>(deprecated)</sup>
Z
zengyawen 已提交
1740

1741
setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
1742

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
Z
zengyawen 已提交
1749 1750 1751

**参数:**

1752 1753 1754 1755 1756
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetypedeprecated) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
Z
zengyawen 已提交
1757

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

J
jiao_yanlin 已提交
1760
```js
1761
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true, (err) => {
1762
  if (err) {
1763
    console.error(`Failed to set the active status of the device. ${err}`);
1764 1765
    return;
  }
1766
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1767 1768 1769
});
```

1770
### setDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
1771

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

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

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

1779
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
1780 1781 1782

**参数:**

1783 1784 1785 1786
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetypedeprecated) | 是   | 活跃音频设备类型。 |
| active     | boolean                               | 是   | 设备激活状态。     |
1787 1788 1789 1790 1791 1792 1793 1794

**返回值:**

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

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

1796

J
jiao_yanlin 已提交
1797
```js
1798 1799
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
  console.info('Promise returned to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1800 1801 1802
});
```

1803
### isDeviceActive<sup>(deprecated)</sup>
L
lwx1059628 已提交
1804

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

1807
获取指定设备的激活状态,使用callback方式异步返回结果。
1808

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
1813 1814 1815

**参数:**

1816 1817 1818 1819
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetypedeprecated) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
L
lwx1059628 已提交
1820 1821 1822

**示例:**

J
jiao_yanlin 已提交
1823
```js
1824
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER, (err, value) => {
1825
  if (err) {
1826
    console.error(`Failed to obtain the active status of the device. ${err}`);
1827 1828
    return;
  }
1829
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
1830 1831 1832
});
```

1833
### isDeviceActive<sup>(deprecated)</sup>
1834

1835
isDeviceActive(deviceType: ActiveDeviceType): Promise&lt;boolean&gt;
1836

1837
获取指定设备的激活状态,使用Promise方式异步返回结果。
1838

1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[isCommunicationDeviceActive](#iscommunicationdeviceactive9)替代。

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

**参数:**

| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
| deviceType | [ActiveDeviceType](#activedevicetypedeprecated) | 是   | 活跃音频设备类型。 |
1849

1850
**返回值:**
1851

1852 1853 1854
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1855 1856 1857

**示例:**

J
jiao_yanlin 已提交
1858
```js
1859 1860
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER).then((value) => {
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
1861 1862 1863
});
```

1864
### setMicrophoneMute<sup>(deprecated)</sup>
1865

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

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

1870 1871
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[setMicrophoneMute](#setmicrophonemute9)替代。
1872

1873 1874 1875
**需要权限:** ohos.permission.MICROPHONE

**系统能力:** SystemCapability.Multimedia.Audio.Device
1876 1877 1878

**参数:**

1879 1880 1881 1882
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
1883

1884
**示例:**
1885

1886 1887 1888 1889 1890 1891 1892 1893 1894
```js
audioManager.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.');
});
```
1895

1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
### setMicrophoneMute<sup>(deprecated)</sup>

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1923
```js
1924 1925
audioManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
1926 1927 1928
});
```

1929
### isMicrophoneMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
1930

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

1933
获取麦克风静音状态,使用callback方式异步返回结果。
L
lwx1059628 已提交
1934

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

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

1940
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
1941 1942 1943

**参数:**

1944 1945 1946
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
1947 1948 1949

**示例:**

J
jiao_yanlin 已提交
1950
```js
1951
audioManager.isMicrophoneMute((err, value) => {
J
jiao_yanlin 已提交
1952
  if (err) {
1953 1954
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
    return;
J
jiao_yanlin 已提交
1955
  }
1956
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1957 1958 1959
});
```

1960
### isMicrophoneMute<sup>(deprecated)</sup>
L
lwx1059628 已提交
1961

1962
isMicrophoneMute(): Promise&lt;boolean&gt;
L
lwx1059628 已提交
1963

1964
获取麦克风静音状态,使用Promise方式异步返回结果。
L
lwx1059628 已提交
1965

1966 1967 1968 1969 1970 1971
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioVolumeGroupManager中的[isMicrophoneMute](#ismicrophonemute9)替代。

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
1972 1973 1974

**返回值:**

1975 1976 1977
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
L
lwx1059628 已提交
1978 1979 1980

**示例:**

J
jiao_yanlin 已提交
1981
```js
1982 1983 1984
audioManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
});
L
lwx1059628 已提交
1985 1986
```

J
jiaoyanlin3 已提交
1987
### on('volumeChange')<sup>9+</sup>
L
lwx1059628 已提交
1988

1989
on(type: 'volumeChange', callback: Callback\<VolumeEvent>): void
L
lwx1059628 已提交
1990

1991
> **说明:**
J
jiaoyanlin3 已提交
1992
> 建议使用AudioVolumeManager中的[on('volumeChange')](#onvolumechange9)替代。
L
lwx1059628 已提交
1993

1994 1995 1996 1997 1998 1999 2000
监听系统音量变化事件。

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

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

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

**参数:**

2004 2005 2006
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'volumeChange'(系统音量变化事件,检测到系统音量改变时,触发该事件)。 |
J
jiaoyanlin3 已提交
2007
| callback | Callback<[VolumeEvent](#volumeevent9)> | 是   | 回调方法。                                                   |
L
lwx1059628 已提交
2008 2009 2010

**示例:**

J
jiao_yanlin 已提交
2011
```js
2012 2013 2014 2015
audioManager.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 已提交
2016 2017 2018
});
```

2019
### on('ringerModeChange')<sup>(deprecated)</sup>
2020

2021
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
2022

2023
监听铃声模式变化事件。
2024

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

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

2030 2031 2032 2033 2034 2035 2036 2037
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

**示例:**

```js
2042 2043 2044
audioManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
});
2045 2046
```

2047
### on('deviceChange')<sup>(deprecated)</sup>
2048

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

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

2053
> **说明:**
2054
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[on('deviceChange')](#ondevicechange9)替代。
2055

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

2058
**参数:**
2059

2060 2061 2062 2063
| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)\> | 是   | 获取设备更新详情。                         |
2064 2065 2066 2067

**示例:**

```js
2068 2069 2070 2071 2072
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} `);
2073
});
2074 2075
```

2076
### off('deviceChange')<sup>(deprecated)</sup>
2077

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

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

2082
> **说明:**
2083
> 从 API version 7 开始支持,从 API version 9 开始废弃,建议使用AudioRoutingManager中的[off('deviceChange')](#offdevicechange9)替代。
2084

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

2087
**参数:**
2088

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

2094
**示例:**
W
wangtao 已提交
2095

2096
```js
W
wangtao 已提交
2097
audioManager.off('deviceChange');
2098
```
W
wangtao 已提交
2099

J
jiaoyanlin3 已提交
2100
### on('interrupt')
2101

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

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

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

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

2110
**参数:**
2111

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

W
wangtao 已提交
2118
**示例:**
2119

W
wangtao 已提交
2120
```js
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133
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} `);
W
wangtao 已提交
2134 2135 2136 2137
  }
});
```

J
jiaoyanlin3 已提交
2138
### off('interrupt')
W
wangtao 已提交
2139

2140
off(type: 'interrupt', interrupt: AudioInterrupt, callback?: Callback\<InterruptAction>): void
W
wangtao 已提交
2141

2142
取消监听音频打断事件(删除监听事件,取消打断)。
W
wangtao 已提交
2143

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

2146
**参数:**
2147

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

W
wangtao 已提交
2154 2155 2156
**示例:**

```js
2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
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} `);
  }
});
W
wangtao 已提交
2168 2169
```

2170
## AudioVolumeManager<sup>9+</sup>
W
wangtao 已提交
2171

2172
音量管理。在使用AudioVolumeManager的接口前,需要使用[getVolumeManager](#getvolumemanager9)获取AudioVolumeManager实例。
W
wangtao 已提交
2173

2174
### getVolumeGroupInfos<sup>9+</sup>
W
wangtao 已提交
2175

2176 2177 2178 2179 2180 2181 2182
getVolumeGroupInfos(networkId: string, callback: AsyncCallback<VolumeGroupInfos\>\): void

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

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

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

**参数:**

2186 2187 2188 2189
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID。    |
| callback  | AsyncCallback&lt;[VolumeGroupInfos](#volumegroupinfos9)&gt; | 是   | 回调,返回音量组信息列表。 |
W
wangtao 已提交
2190 2191 2192

**示例:**
```js
2193
audioVolumeManager.getVolumeGroupInfos(audio.LOCAL_NETWORK_ID, (err, value) => {
2194
  if (err) {
2195
    console.error(`Failed to obtain the volume group infos list. ${err}`);
2196
    return;
W
wangtao 已提交
2197
  }
2198
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
2199
});
W
wangtao 已提交
2200 2201
```

2202
### getVolumeGroupInfos<sup>9+</sup>
W
wangtao 已提交
2203

2204
getVolumeGroupInfos(networkId: string\): Promise<VolumeGroupInfos\>
W
wangtao 已提交
2205

2206
获取音量组信息列表,使用promise方式异步返回结果。
W
wangtao 已提交
2207

2208 2209 2210
**系统接口:** 该接口为系统接口

**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2211 2212 2213

**参数:**

2214 2215 2216
| 参数名     | 类型               | 必填 | 说明                 |
| ---------- | ------------------| ---- | -------------------- |
| networkId | string             | 是   | 设备的网络id。本地设备audio.LOCAL_NETWORK_ID。   |
W
wangtao 已提交
2217

2218 2219
**返回值:**

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

W
wangtao 已提交
2224 2225 2226
**示例:**

```js
2227 2228 2229 2230
async function getVolumeGroupInfos(){
  let volumegroupinfos = await audio.getAudioManager().getVolumeManager().getVolumeGroupInfos(audio.LOCAL_NETWORK_ID);
  console.info('Promise returned to indicate that the volumeGroup list is obtained.'+JSON.stringify(volumegroupinfos))
}
W
wangtao 已提交
2231
```
J
jiao_yanlin 已提交
2232

2233
### getVolumeGroupManager<sup>9+</sup>
J
jiao_yanlin 已提交
2234

2235
getVolumeGroupManager(groupId: number, callback: AsyncCallback<AudioVolumeGroupManager\>\): void
J
jiao_yanlin 已提交
2236

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

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

2241
**参数:**
2242

2243 2244
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
2245 2246
| groupId    | number                                    | 是   | 音量组id。     |
| callback   | AsyncCallback&lt;[AudioVolumeGroupManager](#audiovolumegroupmanager9)&gt; | 是   | 回调,返回一个音量组实例。 |
J
jiao_yanlin 已提交
2247 2248 2249 2250

**示例:**

```js
2251 2252
let groupid = audio.DEFAULT_VOLUME_GROUP_ID;
audioVolumeManager.getVolumeGroupManager(groupid, (err, value) => {
2253
  if (err) {
2254
    console.error(`Failed to obtain the volume group infos list. ${err}`);
2255
    return;
2256
  }
2257
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
2258
});
2259

J
jiao_yanlin 已提交
2260 2261
```

2262
### getVolumeGroupManager<sup>9+</sup>
J
jiao_yanlin 已提交
2263

2264
getVolumeGroupManager(groupId: number\): Promise<AudioVolumeGroupManager\>
2265

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

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

2270
**参数:**
2271

2272 2273 2274
| 参数名     | 类型                                      | 必填 | 说明              |
| ---------- | ---------------------------------------- | ---- | ---------------- |
| groupId    | number                                   | 是   | 音量组id。     |
2275

2276
**返回值:**
2277

2278 2279 2280
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt; [AudioVolumeGroupManager](#audiovolumegroupmanager9) &gt; | 音量组实例。 |
2281 2282 2283 2284

**示例:**

```js
2285 2286 2287 2288 2289 2290 2291 2292
let groupid = audio.DEFAULT_VOLUME_GROUP_ID;
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.');
}

2293 2294
```

2295
### on('volumeChange')<sup>9+</sup>
2296

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

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

2301
**系统能力:** SystemCapability.Multimedia.Audio.Volume
2302 2303 2304

**参数:**

2305 2306 2307
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                 | 是   | 事件回调类型,支持的事件为:'volumeChange'。 |
J
jiaoyanlin3 已提交
2308
| callback | Callback<[VolumeEvent](#volumeevent9)> | 是   | 回调方法。                                                   |
2309

2310
**错误码:**
2311

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
2316
| 6800101 | if input parameter value error              |
2317 2318 2319 2320

**示例:**

```js
2321 2322 2323 2324
audioVolumeManager.on('volumeChange', (volumeEvent) => {
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
2325
});
2326 2327
```

2328
## AudioVolumeGroupManager<sup>9+</sup>
2329

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

2332
### setVolume<sup>9+</sup>
W
wangtao 已提交
2333

2334
setVolume(volumeType: AudioVolumeType, volume: number, callback: AsyncCallback&lt;void&gt;): void
W
wangtao 已提交
2335

2336
设置指定流的音量,使用callback方式异步返回结果。
W
wangtao 已提交
2337

2338
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY
W
wangtao 已提交
2339

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

2342
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2343

2344
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2345

2346
**参数:**
W
wangtao 已提交
2347

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

**示例:**
2355

2356 2357 2358 2359 2360 2361 2362 2363
```js
audioVolumeGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
    console.error(`Failed to set the volume. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate a successful volume setting.');
});
W
wangtao 已提交
2364 2365
```

2366
### setVolume<sup>9+</sup>
W
wangtao 已提交
2367

2368
setVolume(volumeType: AudioVolumeType, volume: number): Promise&lt;void&gt;
W
wangtao 已提交
2369

2370
设置指定流的音量,使用Promise方式异步返回结果。
W
wangtao 已提交
2371

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

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2379 2380 2381

**参数:**

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

**返回值:**

2389 2390 2391
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
W
wangtao 已提交
2392 2393 2394 2395

**示例:**

```js
2396 2397 2398
audioVolumeGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.info('Promise returned to indicate a successful volume setting.');
});
W
wangtao 已提交
2399 2400
```

2401
### getVolume<sup>9+</sup>
W
wangtao 已提交
2402

2403
getVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
W
wangtao 已提交
2404

2405
获取指定流的音量,使用callback方式异步返回结果。
W
wangtao 已提交
2406

2407
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2408 2409 2410

**参数:**

2411 2412 2413 2414
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回音量大小。 |
W
wangtao 已提交
2415 2416 2417 2418

**示例:**

```js
2419
audioVolumeGroupManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
W
wangtao 已提交
2420
  if (err) {
2421
    console.error(`Failed to obtain the volume. ${err}`);
W
wangtao 已提交
2422 2423
    return;
  }
2424
  console.info('Callback invoked to indicate that the volume is obtained.');
W
wangtao 已提交
2425 2426 2427
});
```

2428
### getVolume<sup>9+</sup>
W
wangtao 已提交
2429

2430
getVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
W
wangtao 已提交
2431

2432
获取指定流的音量,使用Promise方式异步返回结果。
W
wangtao 已提交
2433

2434
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2435 2436 2437

**参数:**

2438 2439 2440
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
W
wangtao 已提交
2441 2442 2443

**返回值:**

2444 2445 2446
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
W
wangtao 已提交
2447 2448 2449 2450

**示例:**

```js
2451 2452
audioVolumeGroupManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the volume is obtained ${value}.`);
W
wangtao 已提交
2453 2454 2455
});
```

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

2458
getMinVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
W
wangtao 已提交
2459

2460
获取指定流的最小音量,使用callback方式异步返回结果。
J
jiao_yanlin 已提交
2461

2462
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2463 2464 2465

**参数:**

2466 2467 2468 2469
| 参数名     | 类型                                | 必填 | 说明               |
| ---------- | ----------------------------------- | ---- | ------------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。       |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最小音量。 |
W
wangtao 已提交
2470 2471 2472 2473

**示例:**

```js
2474
audioVolumeGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
W
wangtao 已提交
2475
  if (err) {
2476
    console.error(`Failed to obtain the minimum volume. ${err}`);
W
wangtao 已提交
2477 2478
    return;
  }
2479
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
W
wangtao 已提交
2480 2481 2482
});
```

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

2485
getMinVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
W
wangtao 已提交
2486

2487
获取指定流的最小音量,使用Promise方式异步返回结果。
J
jiao_yanlin 已提交
2488

2489
**系统能力:** SystemCapability.Multimedia.Audio.Volume
W
wangtao 已提交
2490 2491 2492

**参数:**

2493 2494 2495
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
W
wangtao 已提交
2496 2497 2498

**返回值:**

2499 2500 2501
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
W
wangtao 已提交
2502 2503 2504 2505

**示例:**

```js
2506 2507
audioVolumeGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promised returned to indicate that the minimum volume is obtained ${value}.`);
W
wangtao 已提交
2508 2509 2510
});
```

2511
### getMaxVolume<sup>9+</sup>
W
wangtao 已提交
2512

2513
getMaxVolume(volumeType: AudioVolumeType, callback: AsyncCallback&lt;number&gt;): void
W
wangtao 已提交
2514

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

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

**参数:**

2521 2522 2523 2524
| 参数名     | 类型                                | 必填 | 说明                   |
| ---------- | ----------------------------------- | ---- | ---------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。           |
| callback   | AsyncCallback&lt;number&gt;         | 是   | 回调返回最大音量大小。 |
W
wangtao 已提交
2525 2526

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

2528 2529 2530 2531 2532 2533 2534 2535
```js
audioVolumeGroupManager.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}`);
});
W
wangtao 已提交
2536 2537
```

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

2540
getMaxVolume(volumeType: AudioVolumeType): Promise&lt;number&gt;
W
wangtao 已提交
2541

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

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

**参数:**

2548 2549 2550
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
W
wangtao 已提交
2551 2552 2553

**返回值:**

2554 2555 2556
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
W
wangtao 已提交
2557 2558 2559 2560

**示例:**

```js
2561 2562 2563
audioVolumeGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
  console.info('Promised returned to indicate that the maximum volume is obtained.');
});
2564
```
2565

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

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

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

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

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
2579 2580 2581

**参数:**

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

**示例:**

2590 2591 2592 2593 2594 2595 2596 2597
```js
audioVolumeGroupManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
  if (err) {
    console.error(`Failed to mute the stream. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate that the stream is muted.');
});
2598
```
2599

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

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

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

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

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Volume
2613 2614 2615

**参数:**

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

**返回值:**

2623 2624 2625
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
2626 2627 2628 2629

**示例:**

```js
2630 2631 2632 2633
audioVolumeGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.info('Promise returned to indicate that the stream is muted.');
});
```
J
jiao_yanlin 已提交
2634

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

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

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

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

2643
**参数:**
2644

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

**示例:**

```js
2653 2654 2655 2656
audioVolumeGroupManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the mute status. ${err}`);
    return;
2657
  }
2658
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained ${value}.`);
2659 2660 2661
});
```

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

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

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

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

2670
**参数:**
2671

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

2676
**返回值:**
2677

2678 2679 2680
| 类型                   | 说明                                                   |
| ---------------------- | ------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回流静音状态,true为静音,false为非静音。 |
2681 2682 2683 2684

**示例:**

```js
2685 2686
audioVolumeGroupManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
2687 2688 2689
});
```

2690
### setRingerMode<sup>9+</sup>
2691

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

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

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

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

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

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

2704
**参数:**
2705

2706 2707 2708 2709
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
2710

2711 2712 2713 2714 2715 2716 2717
**示例:**

```js
audioVolumeGroupManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
  if (err) {
    console.error(`Failed to set the ringer mode.​ ${err}`);
    return;
2718
  }
2719
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
2720 2721 2722
});
```

2723
### setRingerMode<sup>9+</sup>
2724

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

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

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

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

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

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

2737
**参数:**
2738

2739 2740 2741
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
2742

2743
**返回值:**
2744

2745 2746 2747
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
2748 2749 2750 2751

**示例:**

```js
2752 2753 2754
audioVolumeGroupManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
});
2755 2756
```

2757
### getRingerMode<sup>9+</sup>
2758

2759
getRingerMode(callback: AsyncCallback&lt;AudioRingMode&gt;): void
2760

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

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

2765
**参数:**
2766

2767 2768 2769
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
2770 2771 2772 2773

**示例:**

```js
2774 2775 2776 2777 2778 2779
audioVolumeGroupManager.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}.`);
2780 2781 2782
});
```

2783
### getRingerMode<sup>9+</sup>
2784

2785
getRingerMode(): Promise&lt;AudioRingMode&gt;
2786

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

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

2791 2792
**返回值:**

2793 2794 2795
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
2796 2797 2798 2799

**示例:**

```js
2800 2801
audioVolumeGroupManager.getRingerMode().then((value) => {
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
2802 2803 2804
});
```

2805
### on('ringerModeChange')<sup>9+</sup>
2806

2807
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
2808

2809
监听铃声模式变化事件。
2810

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

2813
**参数:**
2814

2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826
| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                    | 是   | 事件回调类型,支持的事件为:'ringerModeChange'(铃声模式变化事件,检测到铃声模式改变时,触发该事件)。 |
| callback | Callback<[AudioRingMode](#audioringmode)> | 是   | 回调方法。                                                   |

**错误码:**

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

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

2828
**示例:**
J
jiao_yanlin 已提交
2829 2830

```js
2831 2832
audioVolumeGroupManager.on('ringerModeChange', (ringerMode) => {
  console.info(`Updated ringermode: ${ringerMode}`);
2833 2834
});
```
2835
### setMicrophoneMute<sup>9+</sup>
2836

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

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

2841
**需要权限:** ohos.permission.MANAGE_AUDIO_CONFIG
2842

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

2845
**参数:**
2846

2847 2848 2849 2850
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
2851

2852
**示例:**
J
jiao_yanlin 已提交
2853 2854

```js
2855 2856 2857 2858 2859 2860
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.');
2861
});
2862 2863
```

2864
### setMicrophoneMute<sup>9+</sup>
2865

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

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

2870 2871 2872
**需要权限:** ohos.permission.MANAGE_AUDIO_CONFIG

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

2874
**参数:**
2875

2876 2877 2878 2879 2880 2881 2882 2883 2884
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |

**返回值:**

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

2886
**示例:**
J
jiao_yanlin 已提交
2887 2888

```js
2889 2890
audioVolumeGroupManager.setMicrophoneMute(true).then(() => {
  console.info('Promise returned to indicate that the microphone is muted.');
2891 2892 2893
});
```

2894
### isMicrophoneMute<sup>9+</sup>
2895

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

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

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

2902
**参数:**
2903

2904 2905 2906
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
2907

2908
**示例:**
J
jiao_yanlin 已提交
2909 2910

```js
2911 2912 2913 2914 2915 2916
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}.`);
2917
});
2918 2919
```

2920
### isMicrophoneMute<sup>9+</sup>
2921

2922
isMicrophoneMute(): Promise&lt;boolean&gt;
2923

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

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

2928
**返回值:**
2929

2930 2931 2932
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
2933

2934
**示例:**
J
jiao_yanlin 已提交
2935 2936

```js
2937 2938
audioVolumeGroupManager.isMicrophoneMute().then((value) => {
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
2939 2940 2941
});
```

2942
### on('micStateChange')<sup>9+</sup>
2943

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

2946
监听系统麦克风状态更改事件。
2947

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

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

2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965
**参数:**

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

**错误码:**

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

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

2967
**示例:**
J
jiao_yanlin 已提交
2968 2969

```js
2970 2971
audioVolumeGroupManager.on('micStateChange', (micStateChange) => {
  console.info(`Current microphone status is: ${micStateChange.mute} `);
2972
});
2973 2974
```

2975
## AudioStreamManager<sup>9+</sup>
2976

2977
管理音频流。在使用AudioStreamManager的API前,需要使用[getStreamManager](#getstreammanager9)获取AudioStreamManager实例。
2978

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

2981 2982 2983 2984 2985
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void

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

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

2987
**参数:**
2988

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

2993
**示例:**
J
jiao_yanlin 已提交
2994 2995

```js
2996 2997
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
2998
  if (err) {
2999
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
3000
  } else {
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021
    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 已提交
3022
  }
3023 3024 3025
});
```

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

3028
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
3029

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

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

3034
**返回值:**
3035

3036 3037 3038
| 类型                                                                              | 说明                                    |
| ---------------------------------------------------------------------------------| --------------------------------------- |
| Promise<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)>          | Promise对象,返回当前音频渲染器信息。      |
3039 3040 3041 3042

**示例:**

```js
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070
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}`);
  });
}
3071 3072
```

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

3075
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
3076

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

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

**参数:**

3083 3084 3085
| 参数名        | 类型                                 | 必填      | 说明                                                      |
| ---------- | ----------------------------------- | --------- | -------------------------------------------------------- |
| callback   | AsyncCallback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是    | 回调函数,返回当前音频采集器的信息。 |
3086 3087 3088 3089

**示例:**

```js
3090 3091
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
3092
  if (err) {
3093
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
3094
  } else {
3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113
    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}`);
        }
      }
    }
3114 3115 3116 3117
  }
});
```

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

3120
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
3121

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

3124
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3125 3126 3127

**返回值:**

3128 3129 3130
| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
3131 3132 3133 3134

**示例:**

```js
3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
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}`);
  });
}
3161 3162
```

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

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

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

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

**参数:**

3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184
| 参数名      | 类型        | 必填      | 说明                                                                     |
| -------- | ---------- | --------- | ------------------------------------------------------------------------ |
| type     | string     | 是        | 事件类型,支持的事件`'audioRendererChange'`:当音频渲染器发生更改时触发。     |
| callback | Callback<[AudioRendererChangeInfoArray](#audiorendererchangeinfoarray9)> | 是  |  回调函数。        |

**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |
3185 3186 3187 3188

**示例:**

```js
3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208
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}`);
    }
3209
  }
3210
});
3211 3212
```

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

3215
off(type: "audioRendererChange"): void
3216

3217
取消监听音频渲染器更改事件。
3218

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

3221
**参数:**
3222

3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
| 参数名     | 类型     | 必填 | 说明              |
| -------- | ------- | ---- | ---------------- |
| type     | string  | 是   | 事件类型,支持的事件`'audioRendererChange'`:音频渲染器更改事件。 |

**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |
3234 3235 3236 3237

**示例:**

```js
3238 3239
audioStreamManager.off('audioRendererChange');
console.info('######### RendererChange Off is called #########');
3240 3241
```

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

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

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

3248
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
3249 3250 3251

**参数:**

3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263
| 参数名     | 类型     | 必填      | 说明                                                                                           |
| -------- | ------- | --------- | ----------------------------------------------------------------------- |
| type     | string  | 是        | 事件类型,支持的事件`'audioCapturerChange'`:当音频采集器发生更改时触发。     |
| callback | Callback<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)> | 是     | 回调函数。   |

**错误码:**

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

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

3265 3266 3267
**示例:**

```js
3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286
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}`);
    }
3287 3288 3289 3290
  }
});
```

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

3293
off(type: "audioCapturerChange"): void;
3294

3295
取消监听音频采集器更改事件。
3296

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

3299
**参数:**
3300

3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311
| 参数名       | 类型     | 必填 | 说明                                                          |
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |

**错误码:**

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

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

3313 3314 3315
**示例:**

```js
3316 3317 3318
audioStreamManager.off('audioCapturerChange');
console.info('######### CapturerChange Off is called #########');

3319 3320
```

3321
### isActive<sup>9+</sup>
3322

3323
isActive(volumeType: AudioVolumeType, callback: AsyncCallback&lt;boolean&gt;): void
3324

3325
获取指定音频流是否为活跃状态,使用callback方式异步返回结果。
3326

3327
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
3328 3329 3330

**参数:**

3331 3332 3333 3334
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音频流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
3335 3336 3337

**示例:**

3338
```js
3339 3340 3341 3342
audioStreamManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the active status of the stream. ${err}`);
    return;
3343
  }
3344
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
3345
});
3346 3347
```

3348
### isActive<sup>9+</sup>
3349

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

3352
获取指定音频流是否为活跃状态,使用Promise方式异步返回结果。
3353

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

3356 3357 3358 3359 3360 3361
**参数:**

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

3362 3363
**返回值:**

3364 3365 3366
| 类型                   | 说明                                                     |
| ---------------------- | -------------------------------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回流的活跃状态,true为活跃,false为不活跃。 |
3367 3368 3369 3370

**示例:**

```js
3371 3372
audioStreamManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
3373
});
3374 3375
```

X
Xiangyu Li 已提交
3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
### getAudioEffectInfoArray<sup>10+</sup>

getAudioEffectInfoArray(content: ContentType, usage: StreamUsage, callback: AsyncCallback&lt;AudioEffectInfoArray&gt;): void

获取当前音效模式的信息。使用callback异步回调。

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

**参数:**

| 参数名    | 类型                                | 必填     | 说明                         |
| -------- | ----------------------------------- | -------- | --------------------------- |
3388 3389
| content  | [ContentType](#contenttype)                                    | 是     |  音频内容类型。                  |
| usage    | [StreamUsage](#streamusage)                                    | 是     |  音频流使用类型。                |
X
Xiangyu Li 已提交
3390 3391 3392 3393 3394
| callback | AsyncCallback<[AudioEffectInfoArray](#audioeffectinfoarray10)> | 是     |  回调函数,返回当前音效模式的信息。|

**示例:**

```js
Q
update  
Qin Peng 已提交
3395
audioStreamManager.getAudioEffectInfoArray(audio.ContentType.CONTENT_TYPE_MUSIC, audio.StreamUsage.STREAM_USAGE_MEDIA, async (err, audioEffectInfoArray) => {
X
Xiangyu Li 已提交
3396 3397 3398 3399 3400
  console.info('getAudioEffectInfoArray **** Get Callback Called ****');
  if (err) {
    console.error(`getAudioEffectInfoArray :ERROR: ${err}`);
    return;
  } else {
Q
Qin Peng 已提交
3401
    console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect modes are: ${audioEffectInfoArray}`);
X
Xiangyu Li 已提交
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417
  }
});
```

### getAudioEffectInfoArray<sup>10+</sup>

getAudioEffectInfoArray(content: ContentType, usage: StreamUsage): Promise&lt;AudioEffectInfoArray&gt;

获取当前音效模式的信息。使用Promise异步回调。

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

**参数:**

| 参数名    | 类型                                | 必填     | 说明                         |
| -------- | ----------------------------------- | -------- | --------------------------- |
Q
update  
Qin Peng 已提交
3418 3419
| content  | [ContentType](#contenttype)         | 是     |  音频内容类型。                 |
| usage    | [StreamUsage](#streamusage)         | 是     |  音频流使用类型。               |
X
Xiangyu Li 已提交
3420 3421 3422 3423 3424 3425 3426 3427 3428 3429

**返回值:**

| 类型                                                                      | 说明                                    |
| --------------------------------------------------------------------------| --------------------------------------- |
| Promise<[AudioEffectInfoArray](#audioeffectinfoarray10)>                  | Promise对象,返回当前音效模式的信息。      |

**示例:**

```js
Q
update  
Qin Peng 已提交
3430 3431
audioStreamManager.getAudioEffectInfoArray().then((audioEffectInfoArray) => {
  console.info(`getAudioEffectInfoArray ######### Get Promise is called ##########`);
Q
Qin Peng 已提交
3432
  console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect modes are: ${audioEffectInfoArray}`);
Q
update  
Qin Peng 已提交
3433 3434 3435
}).catch((err) => {
  console.error(`getAudioEffectInfoArray :ERROR: ${err}`);
});
X
Xiangyu Li 已提交
3436 3437
```

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

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

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

3444 3445 3446 3447 3448
getDevices(deviceFlag: DeviceFlag, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void

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

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

**参数:**

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

**示例:**

```js
3460 3461 3462 3463 3464 3465
audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the device list. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate that the device list is obtained.');
3466 3467 3468
});
```

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

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

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

3475 3476 3477 3478 3479 3480 3481
**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

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

**返回值:**

3485 3486 3487
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
3488 3489 3490 3491

**示例:**

```js
3492 3493
audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
  console.info('Promise returned to indicate that the device list is obtained.');
3494 3495 3496
});
```

3497
### on('deviceChange')<sup>9+</sup>
3498

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

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

3503
**系统能力:** SystemCapability.Multimedia.Audio.Device
3504 3505 3506

**参数:**

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

3513
**错误码:**
3514

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

3517 3518 3519
| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |
3520 3521 3522 3523

**示例:**

```js
3524 3525 3526 3527 3528
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);
3529 3530 3531
});
```

3532
### off('deviceChange')<sup>9+</sup>
3533

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

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

3538
**系统能力:** SystemCapability.Multimedia.Audio.Device
3539 3540 3541

**参数:**

3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'deviceChange' |
| callback | Callback<[DeviceChangeAction](#devicechangeaction)> | 否   | 获取设备更新详情。                         |

**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 6800101 | if input parameter value error              |
J
jiao_yanlin 已提交
3554

3555
**示例:**
3556

3557
```js
W
wangtao 已提交
3558
audioRoutingManager.off('deviceChange');
3559
```
3560

3561
### selectInputDevice<sup>9+</sup>
3562

3563
selectInputDevice(inputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3564

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

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

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

3571
**参数:**
3572

3573 3574 3575 3576
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| inputAudioDevices           | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输入设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回选择输入设备结果。 |
3577 3578 3579

**示例:**
```js
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591
let inputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.INPUT_DEVICE,
    deviceType : audio.DeviceType.EARPIECE,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3592
    displayName : "",
3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
}];

async function selectInputDevice(){
  audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select input devices result callback: SUCCESS'); }
  });
}
3603 3604
```

3605
### selectInputDevice<sup>9+</sup>
3606

3607
selectInputDevice(inputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
3608

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

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
3614 3615 3616

**参数:**

3617 3618 3619 3620 3621 3622 3623 3624 3625
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| inputAudioDevices           | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输入设备类。               |

**返回值:**

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

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

3629
```js
3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641
let inputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.INPUT_DEVICE,
    deviceType : audio.DeviceType.EARPIECE,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3642
    displayName : "",
3643 3644 3645 3646 3647 3648 3649 3650 3651
}];

async function getRoutingManager(){
    audioRoutingManager.selectInputDevice(inputAudioDeviceDescriptor).then(() => {
      console.info('Select input devices result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    });
}
3652 3653
```

3654
### setCommunicationDevice<sup>9+</sup>
3655

3656
setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean, callback: AsyncCallback&lt;void&gt;): void
3657

3658
设置通信设备激活状态,使用callback方式异步返回结果。
3659

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

3662
**参数:**
3663

3664 3665 3666 3667 3668
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
3669 3670 3671 3672

**示例:**

```js
3673 3674 3675 3676 3677 3678
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true, (err) => {
  if (err) {
    console.error(`Failed to set the active status of the device. ${err}`);
    return;
  }
  console.info('Callback invoked to indicate that the device is set to the active status.');
3679
});
3680 3681
```

3682
### setCommunicationDevice<sup>9+</sup>
3683

3684
setCommunicationDevice(deviceType: CommunicationDeviceType, active: boolean): Promise&lt;void&gt;
3685

3686 3687 3688
设置通信设备激活状态,使用Promise方式异步返回结果。

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

3690
**参数:**
3691

3692 3693 3694 3695
| 参数名     | 类型                                                   | 必填 | 说明               |
| ---------- | ----------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9)  | 是   | 活跃音频设备类型。 |
| active     | boolean                                               | 是   | 设备激活状态。     |
3696

3697
**返回值:**
3698

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

3703 3704
**示例:**

J
jiao_yanlin 已提交
3705
```js
3706 3707
audioRoutingManager.setCommunicationDevice(audio.CommunicationDeviceType.SPEAKER, true).then(() => {
  console.info('Promise returned to indicate that the device is set to the active status.');
3708 3709
});
```
3710

3711
### isCommunicationDeviceActive<sup>9+</sup>
3712

3713
isCommunicationDeviceActive(deviceType: CommunicationDeviceType, callback: AsyncCallback&lt;boolean&gt;): void
3714

3715 3716 3717
获取指定通信设备的激活状态,使用callback方式异步返回结果。

**系统能力:** SystemCapability.Multimedia.Audio.Communication
3718 3719 3720

**参数:**

3721 3722 3723 3724
| 参数名     | 类型                                                  | 必填 | 说明                     |
| ---------- | ---------------------------------------------------- | ---- | ------------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;                         | 是   | 回调返回设备的激活状态。 |
3725 3726 3727 3728

**示例:**

```js
3729 3730 3731 3732
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER, (err, value) => {
  if (err) {
    console.error(`Failed to obtain the active status of the device. ${err}`);
    return;
J
jiao_yanlin 已提交
3733
  }
3734
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
3735 3736 3737
});
```

3738
### isCommunicationDeviceActive<sup>9+</sup>
3739

3740
isCommunicationDeviceActive(deviceType: CommunicationDeviceType): Promise&lt;boolean&gt;
3741

3742
获取指定通信设备的激活状态,使用Promise方式异步返回结果。
3743

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

3746
**参数:**
3747

3748 3749 3750
| 参数名     | 类型                                                  | 必填 | 说明               |
| ---------- | ---------------------------------------------------- | ---- | ------------------ |
| deviceType | [CommunicationDeviceType](#communicationdevicetype9) | 是   | 活跃音频设备类型。 |
3751

3752
**返回值:**
3753

3754 3755 3756
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
3757

3758 3759
**示例:**

J
jiao_yanlin 已提交
3760
```js
3761 3762
audioRoutingManager.isCommunicationDeviceActive(audio.CommunicationDeviceType.SPEAKER).then((value) => {
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
J
jiao_yanlin 已提交
3763
});
3764
```
J
jiao_yanlin 已提交
3765

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

3768
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3769

3770 3771 3772 3773 3774
选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
3775 3776 3777

**参数:**

3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796
| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
let outputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3797
    displayName : "",
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846
}];

async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
    if (err) {
      console.error(`Result ERROR: ${err}`);
    } else {
      console.info('Select output devices result callback: SUCCESS'); }
  });
}
```

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

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

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

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

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |

**返回值:**

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

**示例:**

```js
let outputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3847
    displayName : "",
3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881
}];

async function selectOutputDevice(){
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices result promise: SUCCESS');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
  });
}
```

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

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

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

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

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

**参数:**

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

**示例:**
```js
let outputAudioRendererFilter = {
  uid : 20010041,
  rendererInfo : {
J
jiao_yanlin 已提交
3882 3883
    content : audio.ContentType.CONTENT_TYPE_MUSIC,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898
    rendererFlags : 0 },
  rendererId : 0 };
  
let outputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3899
    displayName : "",
3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940
}];

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'); }
  });
}
```

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

selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
let outputAudioRendererFilter = {
  uid : 20010041,
  rendererInfo : {
J
jiao_yanlin 已提交
3941 3942
    content : audio.ContentType.CONTENT_TYPE_MUSIC,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
    rendererFlags : 0 },
  rendererId : 0 };

let outputAudioDeviceDescriptor = [{
    deviceRole : audio.DeviceRole.OUTPUT_DEVICE,
    deviceType : audio.DeviceType.SPEAKER,
    id : 1,
    name : "",
    address : "",
    sampleRates : [44100],
    channelCounts : [2],
    channelMasks : [0],
    networkId : audio.LOCAL_NETWORK_ID,
    interruptGroupId : 1,
    volumeGroupId : 1,
3958
    displayName : "",
3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969
}];

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}`);
  })
}
```

3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989
### getPreferOutputDeviceForRendererInfo<sup>10+</sup>

getPreferOutputDeviceForRendererInfo(rendererInfo: AudioRendererInfo, callback: AsyncCallback&lt;AudioDeviceDescriptors&gt;): void

根据音频信息,返回优先级最高的输出设备,使用callback方式异步返回结果。

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| rendererInfo                | [AudioRendererInfo](#audiorendererinfo8)                     | 是   | 表示渲染器信息。             |
| callback                    | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt;  | 是   | 回调,返回优先级最高的输出设备信息。 |

**示例:**
```js
let rendererInfo = {
    content : audio.ContentType.CONTENT_TYPE_MUSIC,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
3990
    rendererFlags : 0 }
3991 3992 3993 3994

async function getPreferOutputDevice() {
  audioRoutingManager.getPreferOutputDeviceForRendererInfo(rendererInfo, (err, desc) => {
    if (err) {
3995
      console.error(`Result ERROR: ${err}`);
3996
    } else {
3997
      console.info(`device descriptor: ${desc}`);
3998 3999 4000 4001 4002
    }
  });
}
```

4003
### getPreferOutputDeviceForRendererInfo<sup>10+</sup>
4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021
getPreferOutputDeviceForRendererInfo(rendererInfo: AudioRendererInfo): Promise&lt;AudioDeviceDescriptors&gt;

根据音频信息,返回优先级最高的输出设备,使用promise方式异步返回结果。

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

**参数:**

| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| rendererInfo          | [AudioRendererInfo](#audiorendererinfo8)                     | 是   | 表示渲染器信息。            |

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt;   | Promise返回优先级最高的输出设备信息。 |

4022 4023 4024 4025 4026 4027 4028 4029
**错误码:**

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

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

4030 4031 4032 4033 4034 4035
**示例:**

```js
let rendererInfo = {
    content : audio.ContentType.CONTENT_TYPE_MUSIC,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
4036
    rendererFlags : 0 }
4037 4038 4039

async function getPreferOutputDevice() {
  audioRoutingManager.getPreferOutputDeviceForRendererInfo(rendererInfo).then((desc) => {
4040
    console.info(`device descriptor: ${desc}`);
4041
  }).catch((err) => {
4042
    console.error(`Result ERROR: ${err}`);
4043 4044 4045 4046 4047 4048 4049 4050 4051 4052
  })
}
```

### on('preferOutputDeviceChangeForRendererInfo')<sup>10+</sup>

on(type: 'preferOutputDeviceChangeForRendererInfo', rendererInfo: AudioRendererInfo, callback: Callback<AudioDeviceDescriptors\>): void

订阅最高优先级输出设备变化事件,使用callback获取最高优先级输出设备。

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

4055 4056 4057 4058 4059 4060 4061 4062
**参数:**

| 参数名   | 类型                                                 | 必填 | 说明                                       |
| :------- | :--------------------------------------------------- | :--- | :----------------------------------------- |
| type     | string                                               | 是   | 订阅的事件的类型。支持事件:'preferOutputDeviceChangeForRendererInfo' |
| rendererInfo  | [AudioRendererInfo](#audiorendererinfo8)        | 是   | 表示渲染器信息。              |
| callback | Callback<[AudioDeviceDescriptors](#audiodevicedescriptors)\> | 是   | 获取优先级最高的输出设备信息。                         |

4063 4064 4065 4066 4067 4068 4069 4070
**错误码:**

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

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

4071 4072 4073 4074 4075 4076
**示例:**

```js
let rendererInfo = {
    content : audio.ContentType.CONTENT_TYPE_MUSIC,
    usage : audio.StreamUsage.STREAM_USAGE_MEDIA,
4077
    rendererFlags : 0 }
4078 4079

audioRoutingManager.on('preferOutputDeviceChangeForRendererInfo', rendererInfo, (desc) => {
4080
  console.info(`device descriptor: ${desc}`);
4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098
});
```

### off('preferOutputDeviceChangeForRendererInfo')<sup>10+</sup>

off(type: 'preferOutputDeviceChangeForRendererInfo', callback?: Callback<AudioDeviceDescriptors\>): void

取消订阅最高优先级输出音频设备变化事件。

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

**参数:**

| 参数名   | 类型                                                | 必填 | 说明                                       |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------ |
| type     | string                                              | 是   | 订阅的事件的类型。支持事件:'preferOutputDeviceChangeForRendererInfo' |
| callback | Callback<[AudioDeviceDescriptors](#audiodevicedescriptors)> | 否   | 监听方法的回调函数。                         |

4099 4100 4101 4102 4103 4104 4105 4106
**错误码:**

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

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

4107 4108 4109
**示例:**

```js
W
wangtao 已提交
4110
audioRoutingManager.off('preferOutputDeviceChangeForRendererInfo');
4111 4112
```

4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130
## AudioRendererChangeInfoArray<sup>9+</sup>

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

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

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

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

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口。 |
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
4131
| deviceDescriptors  | [AudioDeviceDescriptors](#audiodevicedescriptors)      | 是   | 否   | 音频设备描述。|
4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189

**示例:**

```js

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

const audioManager = audio.getAudioManager();
let audioStreamManager = audioManager.getStreamManager();
let resultFlag = false;

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}`);
    }
  }
});
```


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

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

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

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

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

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口。 |
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)  | 是   | 否   | 音频采集器信息。               |
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口。|
4190
| deviceDescriptors  | [AudioDeviceDescriptors](#audiodevicedescriptors)      | 是   | 否   | 音频设备描述。|
4191 4192 4193 4194

**示例:**

```js
4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
let audioStreamManager = audioManager.getStreamManager();

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}`);
    }
J
jiao_yanlin 已提交
4224
  }
4225 4226 4227
});
```

4228 4229
## AudioEffectInfoArray<sup>10+</sup>

Q
update  
Qin Peng 已提交
4230
待查询ContentType和StreamUsage组合场景下的音效模式数组类型,[AudioEffectMode](#audioeffectmode10)数组,只读。
4231

4232
## AudioDeviceDescriptors
Z
zengyawen 已提交
4233

4234
设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。
M
mamingshuai 已提交
4235

4236
## AudioDeviceDescriptor
Z
zengyawen 已提交
4237

4238
描述音频设备。
Z
zengyawen 已提交
4239

4240
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
4241

4242 4243 4244 4245
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| deviceRole                    | [DeviceRole](#devicerole)  | 是   | 否   | 设备角色。 |
| deviceType                    | [DeviceType](#devicetype)  | 是   | 否   | 设备类型。 |
J
jiao_yanlin 已提交
4246
| id<sup>9+</sup>               | number                     | 是   | 否   | 设备id,唯一。  |
4247 4248 4249 4250 4251
| 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;        | 是   | 否   | 支持的通道掩码。 |
L
li-yifan2 已提交
4252
| displayName<sup>10+</sup>     | string                     | 是   | 否   | 设备显示名。 |
4253 4254 4255
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口。 |
Z
zengyawen 已提交
4256

4257 4258 4259
**示例:**

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

4262 4263 4264
function displayDeviceProp(value) {
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
4265
}
4266

4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279
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');
  }
});
```
4280

4281
## AudioRendererFilter<sup>9+</sup>
4282

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

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

4287 4288
| 名称          | 类型                                     | 必填 | 说明          |
| -------------| ---------------------------------------- | ---- | -------------- |
4289
| uid          | number                                   |  否  | 表示应用ID。<br> **系统能力:** SystemCapability.Multimedia.Audio.Core|
4290 4291
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
4292 4293 4294 4295

**示例:**

```js
4296 4297 4298 4299 4300 4301 4302
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
4303 4304
```

4305
## AudioRenderer<sup>8+</sup>
Z
zengyawen 已提交
4306

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

4309
### 属性
Z
zengyawen 已提交
4310

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

4313 4314 4315
| 名称  | 类型                     | 可读 | 可写 | 说明               |
| ----- | -------------------------- | ---- | ---- | ------------------ |
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
4316 4317 4318

**示例:**

J
jiao_yanlin 已提交
4319
```js
4320
let state = audioRenderer.state;
Z
zengyawen 已提交
4321 4322
```

4323
### getRendererInfo<sup>8+</sup>
Z
zengyawen 已提交
4324

4325
getRendererInfo(callback: AsyncCallback<AudioRendererInfo\>): void
Z
zengyawen 已提交
4326

4327
获取当前被创建的音频渲染器的信息,使用callback方式异步返回结果。
Z
zengyawen 已提交
4328

4329
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4330 4331 4332

**参数:**

4333 4334 4335
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
4336 4337 4338

**示例:**

J
jiao_yanlin 已提交
4339
```js
4340 4341 4342 4343 4344
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}`);
L
lwx1059628 已提交
4345
});
Z
zengyawen 已提交
4346 4347
```

4348
### getRendererInfo<sup>8+</sup>
Z
zengyawen 已提交
4349

4350
getRendererInfo(): Promise<AudioRendererInfo\>
Z
zengyawen 已提交
4351

4352
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
4353

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

4356
**返回值:**
Z
zengyawen 已提交
4357

4358 4359 4360
| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
Z
zengyawen 已提交
4361 4362 4363

**示例:**

J
jiao_yanlin 已提交
4364
```js
4365 4366 4367 4368 4369 4370 4371 4372
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}`);
});
Z
zengyawen 已提交
4373 4374
```

4375
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4376

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

4379
获取音频流信息,使用callback方式异步返回结果。
Z
zengyawen 已提交
4380

4381
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4382 4383 4384

**参数:**

4385 4386 4387
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 回调返回音频流信息。 |
Z
zengyawen 已提交
4388 4389 4390

**示例:**

J
jiao_yanlin 已提交
4391
```js
4392 4393 4394 4395 4396 4397
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}`);
L
lwx1059628 已提交
4398
});
Z
zengyawen 已提交
4399 4400
```

4401
### getStreamInfo<sup>8+</sup>
Z
zengyawen 已提交
4402

4403
getStreamInfo(): Promise<AudioStreamInfo\>
Z
zengyawen 已提交
4404

4405
获取音频流信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
4406

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

4409 4410 4411 4412 4413
**返回值:**

| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | Promise返回音频流信息. |
Z
zengyawen 已提交
4414 4415 4416

**示例:**

J
jiao_yanlin 已提交
4417
```js
4418 4419 4420 4421 4422 4423 4424 4425 4426
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}`);
});
Z
zengyawen 已提交
4427 4428
```

4429
### getAudioStreamId<sup>9+</sup>
4430

4431
getAudioStreamId(callback: AsyncCallback<number\>): void
4432

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

4435
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
4436 4437 4438

**参数:**

4439 4440 4441
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
4442 4443 4444 4445

**示例:**

```js
4446 4447
audioRenderer.getAudioStreamId((err, streamid) => {
  console.info(`Renderer GetStreamId: ${streamid}`);
4448 4449 4450
});
```

4451
### getAudioStreamId<sup>9+</sup>
4452

4453
getAudioStreamId(): Promise<number\>
4454

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

4457
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
4458 4459 4460

**返回值:**

4461 4462 4463
| 类型                                           | 说明                   |
| :--------------------------------------------- | :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
4464 4465 4466 4467

**示例:**

```js
4468 4469
audioRenderer.getAudioStreamId().then((streamid) => {
  console.info(`Renderer getAudioStreamId: ${streamid}`);
4470
}).catch((err) => {
4471
  console.error(`ERROR: ${err}`);
4472 4473 4474
});
```

Q
Qin Peng 已提交
4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486
### setAudioEffectMode<sup>10+</sup>

setAudioEffectMode(mode: AudioEffectMode, callback: AsyncCallback\<void>): void

设置当前音效模式。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
Q
update  
Qin Peng 已提交
4487 4488
| mode     | [AudioEffectMode](#audioeffectmode10)    | 是   | 音效模式。               |
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。  |
Q
Qin Peng 已提交
4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513

**示例:**

```js
audioRenderer.setAudioEffectMode(audio.AudioEffectMode.EFFECT_DEFAULT, (err) => {
  if (err) {
    console.error('Failed to set params');
  } else {
    console.info('Callback invoked to indicate a successful audio effect mode setting.');
  }
});
```

### setAudioEffectMode<sup>10+</sup>

setAudioEffectMode(mode: AudioEffectMode): Promise\<void>

设置当前音效模式。使用Promise方式异步返回结果。

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

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
Q
update  
Qin Peng 已提交
4514
| mode   | [AudioEffectMode](#audioeffectmode10)   | 是   | 音效模式。 |
Q
Qin Peng 已提交
4515 4516 4517 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

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |

**示例:**

```js
audioRenderer.setAudioEffectMode(audio.AudioEffectMode.EFFECT_DEFAULT).then(() => {
  console.info('setAudioEffectMode SUCCESS');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
```

### getAudioEffectMode<sup>10+</sup>

getAudioEffectMode(callback: AsyncCallback\<AudioEffectMode>): void

获取当前音效模式。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback<[AudioEffectMode](#audioeffectmode10)> | 是   | 回调返回当前音效模式。 |

**示例:**

```js
audioRenderer.getAudioEffectMode((err, effectmode) => {
Q
update  
Qin Peng 已提交
4550 4551 4552 4553 4554
  if (err) {
    console.error('Failed to get params');
  } else {
    console.info(`getAudioEffectMode: ${effectmode}`);
  }
Q
Qin Peng 已提交
4555 4556 4557
});
```

Q
update  
Qin Peng 已提交
4558
### getAudioEffectMode<sup>10+</sup>
Q
Qin Peng 已提交
4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581

getAudioEffectMode(): Promise\<AudioEffectMode>

获取当前音效模式。使用Promise方式异步返回结果。

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

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
| Promise<[AudioEffectMode](#audioeffectmode10)> | Promise回调返回当前音效模式。 |

**示例:**

```js
audioRenderer.getAudioEffectMode().then((effectmode) => {
  console.info(`getAudioEffectMode: ${effectmode}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
});
```

4582
### start<sup>8+</sup>
Z
zengyawen 已提交
4583

4584
start(callback: AsyncCallback<void\>): void
Z
zengyawen 已提交
4585

4586
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4587

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

**参数:**

4592 4593 4594
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。 |
Z
zengyawen 已提交
4595 4596 4597

**示例:**

J
jiao_yanlin 已提交
4598
```js
4599
audioRenderer.start((err) => {
J
jiao_yanlin 已提交
4600
  if (err) {
4601
    console.error('Renderer start failed.');
J
jiao_yanlin 已提交
4602
  } else {
4603
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
4604
  }
L
lwx1059628 已提交
4605
});
Z
zengyawen 已提交
4606 4607
```

4608
### start<sup>8+</sup>
Z
zengyawen 已提交
4609

4610
start(): Promise<void\>
Z
zengyawen 已提交
4611

4612
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4613

4614
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4615 4616 4617

**返回值:**

4618 4619 4620
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
Z
zengyawen 已提交
4621 4622 4623

**示例:**

J
jiao_yanlin 已提交
4624
```js
4625 4626
audioRenderer.start().then(() => {
  console.info('Renderer started');
L
lwx1059628 已提交
4627
}).catch((err) => {
4628
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4629
});
Z
zengyawen 已提交
4630 4631
```

4632
### pause<sup>8+</sup>
Z
zengyawen 已提交
4633

4634
pause(callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
4635

4636
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
4637

4638
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4639 4640 4641

**参数:**

4642 4643 4644
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
Z
zengyawen 已提交
4645 4646 4647

**示例:**

J
jiao_yanlin 已提交
4648
```js
4649 4650 4651 4652 4653 4654
audioRenderer.pause((err) => {
  if (err) {
    console.error('Renderer pause failed');
  } else {
    console.info('Renderer paused.');
  }
L
lwx1059628 已提交
4655
});
Z
zengyawen 已提交
4656 4657
```

4658
### pause<sup>8+</sup>
Z
zengyawen 已提交
4659

4660
pause(): Promise\<void>
Z
zengyawen 已提交
4661

4662
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4663

4664
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4665 4666 4667

**返回值:**

4668 4669 4670
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
Z
zengyawen 已提交
4671 4672 4673

**示例:**

J
jiao_yanlin 已提交
4674
```js
4675 4676
audioRenderer.pause().then(() => {
  console.info('Renderer paused');
L
lwx1059628 已提交
4677
}).catch((err) => {
4678
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4679
});
Z
zengyawen 已提交
4680 4681
```

4682
### drain<sup>8+</sup>
Z
zengyawen 已提交
4683

4684
drain(callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
4685

4686
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
4687

4688
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4689 4690 4691

**参数:**

4692 4693 4694
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
Z
zengyawen 已提交
4695 4696 4697

**示例:**

J
jiao_yanlin 已提交
4698
```js
4699
audioRenderer.drain((err) => {
J
jiao_yanlin 已提交
4700
  if (err) {
4701
    console.error('Renderer drain failed');
J
jiao_yanlin 已提交
4702
  } else {
4703
    console.info('Renderer drained.');
J
jiao_yanlin 已提交
4704
  }
L
lwx1059628 已提交
4705
});
Z
zengyawen 已提交
4706 4707
```

4708
### drain<sup>8+</sup>
Z
zengyawen 已提交
4709

4710
drain(): Promise\<void>
Z
zengyawen 已提交
4711

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

4714
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4715 4716 4717

**返回值:**

4718 4719 4720
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
Z
zengyawen 已提交
4721 4722 4723

**示例:**

J
jiao_yanlin 已提交
4724
```js
4725 4726
audioRenderer.drain().then(() => {
  console.info('Renderer drained successfully');
L
lwx1059628 已提交
4727
}).catch((err) => {
4728
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4729
});
Z
zengyawen 已提交
4730 4731 4732 4733
```

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

4734
stop(callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
4735

4736
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
4737

4738
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4739 4740 4741

**参数:**

4742 4743 4744
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
Z
zengyawen 已提交
4745 4746 4747

**示例:**

J
jiao_yanlin 已提交
4748
```js
4749
audioRenderer.stop((err) => {
J
jiao_yanlin 已提交
4750
  if (err) {
4751
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
4752
  } else {
4753
    console.info('Renderer stopped.');
J
jiao_yanlin 已提交
4754
  }
L
lwx1059628 已提交
4755
});
Z
zengyawen 已提交
4756 4757 4758 4759
```

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

4760
stop(): Promise\<void>
Z
zengyawen 已提交
4761

4762
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4763

4764
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4765 4766 4767

**返回值:**

4768 4769 4770
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
Z
zengyawen 已提交
4771

4772 4773 4774 4775 4776
**示例:**

```js
audioRenderer.stop().then(() => {
  console.info('Renderer stopped successfully');
L
lwx1059628 已提交
4777
}).catch((err) => {
4778
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4779
});
Z
zengyawen 已提交
4780 4781 4782 4783
```

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

4784
release(callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
4785

4786
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
4787

4788
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4789 4790 4791

**参数:**

4792 4793 4794
| 参数名   | 类型                 | 必填 | 说明             |
| -------- | -------------------- | ---- | ---------------- |
| callback | AsyncCallback\<void> | 是   | 返回回调的结果。 |
Z
zengyawen 已提交
4795 4796 4797

**示例:**

J
jiao_yanlin 已提交
4798
```js
4799
audioRenderer.release((err) => {
J
jiao_yanlin 已提交
4800
  if (err) {
4801
    console.error('Renderer release failed');
J
jiao_yanlin 已提交
4802
  } else {
4803
    console.info('Renderer released.');
J
jiao_yanlin 已提交
4804
  }
L
lwx1059628 已提交
4805
});
Z
zengyawen 已提交
4806 4807 4808 4809
```

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

4810
release(): Promise\<void>
Z
zengyawen 已提交
4811

4812
释放渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4813

4814
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4815 4816 4817

**返回值:**

4818 4819 4820
| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise方式异步返回结果。 |
Z
zengyawen 已提交
4821 4822 4823

**示例:**

J
jiao_yanlin 已提交
4824
```js
4825 4826
audioRenderer.release().then(() => {
  console.info('Renderer released successfully');
L
lwx1059628 已提交
4827
}).catch((err) => {
4828
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4829
});
Z
zengyawen 已提交
4830 4831
```

4832
### write<sup>8+</sup>
Z
zengyawen 已提交
4833

4834
write(buffer: ArrayBuffer, callback: AsyncCallback\<number>): void
Z
zengyawen 已提交
4835

4836
写入缓冲区。使用callback方式异步返回结果。
Z
zengyawen 已提交
4837

4838
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4839 4840 4841

**参数:**

4842 4843 4844 4845
| 参数名   | 类型                   | 必填 | 说明                                                |
| -------- | ---------------------- | ---- | --------------------------------------------------- |
| buffer   | ArrayBuffer            | 是   | 要写入缓冲区的数据。                                |
| callback | AsyncCallback\<number> | 是   | 回调如果成功,返回写入的字节数,否则返回errorcode。 |
Z
zengyawen 已提交
4846 4847 4848

**示例:**

J
jiao_yanlin 已提交
4849
```js
J
jiao_yanlin 已提交
4850
let bufferSize;
4851 4852
audioRenderer.getBufferSize().then((data)=> {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4853 4854
  bufferSize = data;
  }).catch((err) => {
4855
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4856
  });
4857 4858 4859 4860 4861 4862 4863
console.info(`Buffer size: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
}
let filePath = path + '/StarWars10s-2C-48000-4SW.wav';
4864 4865
let file = fs.openSync(filePath, fs.OpenMode.READ_ONLY);
let stat = await fs.stat(path);
4866
let buf = new ArrayBuffer(bufferSize);
J
jiao_yanlin 已提交
4867
let len = stat.size % bufferSize == 0 ? Math.floor(stat.size / bufferSize) : Math.floor(stat.size / bufferSize + 1);
4868 4869
for (let i = 0;i < len; i++) {
    let options = {
J
jiao_yanlin 已提交
4870 4871
      offset: i * bufferSize,
      length: bufferSize
4872 4873 4874
    }
    let readsize = await fs.read(file.fd, buf, options)
    let writeSize = await new Promise((resolve,reject)=>{
J
jiao_yanlin 已提交
4875
      audioRenderer.write(buf,(err,writeSize)=>{
4876 4877 4878 4879 4880 4881 4882 4883 4884
        if(err){
          reject(err)
        }else{
          resolve(writeSize)
        }
      })
    })	  
}

Z
zengyawen 已提交
4885 4886
```

4887
### write<sup>8+</sup>
Z
zengyawen 已提交
4888

4889
write(buffer: ArrayBuffer): Promise\<number>
4890

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

4893
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4894 4895 4896

**返回值:**

4897 4898 4899
| 类型             | 说明                                                         |
| ---------------- | ------------------------------------------------------------ |
| Promise\<number> | Promise返回结果,如果成功,返回写入的字节数,否则返回errorcode。 |
Z
zengyawen 已提交
4900 4901 4902

**示例:**

J
jiao_yanlin 已提交
4903
```js
J
jiao_yanlin 已提交
4904
let bufferSize;
4905 4906
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4907 4908
  bufferSize = data;
  }).catch((err) => {
4909
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4910
  });
4911 4912 4913 4914 4915 4916 4917
console.info(`BufferSize: ${bufferSize}`);
let context = featureAbility.getContext();
let path;
async function getCacheDir(){
  path = await context.getCacheDir();
}
let filePath = path + '/StarWars10s-2C-48000-4SW.wav';
4918 4919
let file = fs.openSync(filePath, fs.OpenMode.READ_ONLY);
let stat = await fs.stat(path);
4920
let buf = new ArrayBuffer(bufferSize);
J
jiao_yanlin 已提交
4921
let len = stat.size % bufferSize == 0 ? Math.floor(stat.size / bufferSize) : Math.floor(stat.size / bufferSize + 1);
4922 4923
for (let i = 0;i < len; i++) {
    let options = {
J
jiao_yanlin 已提交
4924 4925
      offset: i * bufferSize,
      length: bufferSize
4926 4927 4928
    }
    let readsize = await fs.read(file.fd, buf, options)
    try{
J
jiao_yanlin 已提交
4929
       let writeSize = await audioRenderer.write(buf);
4930 4931 4932 4933
    } catch(err) {
       console.error(`audioRenderer.write err: ${err}`);
    }   
}
Z
zengyawen 已提交
4934 4935 4936 4937
```

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

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

4940
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
4941

4942
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4943 4944 4945

**参数:**

4946 4947 4948
| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |
Z
zengyawen 已提交
4949 4950 4951

**示例:**

J
jiao_yanlin 已提交
4952
```js
4953
audioRenderer.getAudioTime((err, timestamp) => {
4954
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4955
});
Z
zengyawen 已提交
4956 4957 4958 4959
```

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

4960
getAudioTime(): Promise\<number>
Z
zengyawen 已提交
4961

4962
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4963

4964
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4965 4966 4967

**返回值:**

4968 4969 4970
| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |
Z
zengyawen 已提交
4971 4972 4973

**示例:**

J
jiao_yanlin 已提交
4974
```js
4975 4976
audioRenderer.getAudioTime().then((timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4977
}).catch((err) => {
4978
  console.error(`ERROR: ${err}`);
4979 4980 4981 4982 4983
});
```

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

4984
getBufferSize(callback: AsyncCallback\<number>): void
4985

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

4988
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
4989 4990 4991

**参数:**

4992 4993 4994
| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |
4995 4996 4997 4998

**示例:**

```js
4999 5000 5001
let bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
  if (err) {
    console.error('getBufferSize error');
5002 5003 5004 5005 5006 5007
  }
});
```

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

5008
getBufferSize(): Promise\<number>
5009

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

5012
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
5013 5014 5015

**返回值:**

5016 5017 5018
| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |
5019 5020 5021 5022 5023

**示例:**

```js
let bufferSize;
5024 5025
audioRenderer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
5026 5027
  bufferSize = data;
}).catch((err) => {
5028
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
L
lwx1059628 已提交
5029
});
Z
zengyawen 已提交
5030 5031
```

5032
### setRenderRate<sup>8+</sup>
Z
zengyawen 已提交
5033

5034
setRenderRate(rate: AudioRendererRate, callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
5035

5036
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
5037

5038
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
5039 5040 5041

**参数:**

5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077
| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

```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.');
  }
});
```

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

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

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

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

**参数:**

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

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |
Z
zengyawen 已提交
5078 5079 5080

**示例:**

J
jiao_yanlin 已提交
5081
```js
5082 5083 5084 5085
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
  console.info('setRenderRate SUCCESS');
}).catch((err) => {
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
5086
});
Z
zengyawen 已提交
5087 5088
```

5089
### getRenderRate<sup>8+</sup>
Z
zengyawen 已提交
5090

5091
getRenderRate(callback: AsyncCallback\<AudioRendererRate>): void
Z
zengyawen 已提交
5092

5093
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
5094

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

5097
**参数:**
Z
zengyawen 已提交
5098

5099 5100 5101
| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
5102 5103 5104

**示例:**

J
jiao_yanlin 已提交
5105
```js
5106 5107 5108
audioRenderer.getRenderRate((err, renderrate) => {
  console.info(`getRenderRate: ${renderrate}`);
});
Z
zengyawen 已提交
5109 5110
```

5111
### getRenderRate<sup>8+</sup>
Z
zengyawen 已提交
5112

5113
getRenderRate(): Promise\<AudioRendererRate>
Z
zengyawen 已提交
5114

5115
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
5116

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

5119
**返回值:**
Z
zengyawen 已提交
5120

5121 5122 5123
| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
5124 5125 5126

**示例:**

J
jiao_yanlin 已提交
5127
```js
5128 5129 5130 5131
audioRenderer.getRenderRate().then((renderRate) => {
  console.info(`getRenderRate: ${renderRate}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
5132
});
Z
zengyawen 已提交
5133
```
5134
### setInterruptMode<sup>9+</sup>
Z
zengyawen 已提交
5135

5136
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
Z
zengyawen 已提交
5137

5138
设置应用的焦点模型。使用Promise异步回调。
Z
zengyawen 已提交
5139

5140
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
Z
zengyawen 已提交
5141 5142 5143

**参数:**

5144 5145 5146 5147 5148 5149 5150 5151 5152
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
Z
zengyawen 已提交
5153 5154 5155

**示例:**

J
jiao_yanlin 已提交
5156
```js
5157 5158 5159 5160 5161 5162
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
  console.info('setInterruptMode Success!');
}).catch((err) => {
  console.error(`setInterruptMode Fail: ${err}`);
});
Z
zengyawen 已提交
5163
```
5164
### setInterruptMode<sup>9+</sup>
Z
zengyawen 已提交
5165

5166
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
Z
zengyawen 已提交
5167

5168
设置应用的焦点模型。使用Callback回调返回执行结果。
Z
zengyawen 已提交
5169

5170
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
Z
zengyawen 已提交
5171 5172 5173

**参数:**

5174 5175 5176 5177
| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|
Z
zengyawen 已提交
5178 5179 5180

**示例:**

J
jiao_yanlin 已提交
5181
```js
5182 5183 5184 5185
let mode = 1;
audioRenderer.setInterruptMode(mode, (err, data)=>{
  if(err){
    console.error(`setInterruptMode Fail: ${err}`);
5186
  }
5187
  console.info('setInterruptMode Success!');
L
lwx1059628 已提交
5188
});
Z
zengyawen 已提交
5189 5190
```

5191
### setVolume<sup>9+</sup>
Z
zengyawen 已提交
5192

5193
setVolume(volume: number): Promise&lt;void&gt;
Z
zengyawen 已提交
5194

5195
设置应用的音量。使用Promise异步回调。
5196

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

5199
**参数:**
Z
zengyawen 已提交
5200

5201 5202 5203
| 参数名     | 类型    | 必填   | 说明                 |
| ---------- | ------- | ------ | ------------------- |
| volume     | number  | 是     | 音量值范围为0.0-1.0。 |
Z
zengyawen 已提交
5204

5205
**返回值:**
5206

5207 5208 5209
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
5210

5211
**示例:**
5212

5213
```js
5214
audioRenderer.setVolume(0.5).then(data=>{
5215 5216 5217 5218 5219 5220
  console.info('setVolume Success!');
}).catch((err) => {
  console.error(`setVolume Fail: ${err}`);
});
```
### setVolume<sup>9+</sup>
5221

5222
setVolume(volume: number, callback: AsyncCallback\<void>): void
5223

5224
设置应用的音量。使用Callback回调返回执行结果。
5225

5226
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
5227 5228 5229

**参数:**

5230 5231 5232
| 参数名  | 类型       | 必填   | 说明                 |
| ------- | -----------| ------ | ------------------- |
|volume   | number     | 是     | 音量值范围为0.0-1.0。 |
5233
|callback | AsyncCallback\<void> | 是     |回调返回执行结果。|
Z
zengyawen 已提交
5234 5235 5236

**示例:**

J
jiao_yanlin 已提交
5237
```js
5238
audioRenderer.setVolume(0.5, (err, data)=>{
5239 5240
  if(err){
    console.error(`setVolume Fail: ${err}`);
5241
  }
5242
  console.info('setVolume Success!');
L
lwx1059628 已提交
5243
});
Z
zengyawen 已提交
5244
```
5245

5246
### on('audioInterrupt')<sup>9+</sup>
5247

5248
on(type: 'audioInterrupt', callback: Callback\<InterruptEvent>): void
5249

5250
监听音频中断事件。使用callback获取中断事件。
5251

J
jiaoyanlin3 已提交
5252
[on('interrupt')](#oninterrupt)一致,均用于监听焦点变化。AudioRenderer对象在start事件发生时会主动获取焦点,在pause、stop等事件发生时会主动释放焦点,不需要开发者主动发起获取焦点或释放焦点的申请。
5253

5254
**系统能力:** SystemCapability.Multimedia.Audio.Interrupt
5255 5256 5257

**参数:**

5258 5259
| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
5260 5261
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'audioInterrupt'(中断事件被触发,音频渲染被中断。) |
| callback | Callback\<[InterruptEvent](#interruptevent9)\> | 是   | 被监听的中断事件的回调。                                     |
5262

5263
**错误码:**
5264

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

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

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

J
jiao_yanlin 已提交
5273
```js
5274 5275
let isPlaying; // 标识符,表示是否正在渲染
let isDucked; // 标识符,表示是否被降低音量
5276 5277 5278 5279 5280
onAudioInterrupt();

async function onAudioInterrupt(){
  audioRenderer.on('audioInterrupt', async(interruptEvent) => {
    if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
5281
      // 由系统进行操作,强制打断音频渲染,应用需更新自身状态及显示内容等
5282 5283
      switch (interruptEvent.hintType) {
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
5284 5285 5286
          // 音频流已被暂停,临时失去焦点,待可重获焦点时会收到resume对应的interruptEvent
          console.info('Force paused. Update playing status and stop writing');
          isPlaying = false; // 简化处理,代表应用切换至暂停状态的若干操作
5287 5288
          break;
        case audio.InterruptHint.INTERRUPT_HINT_STOP:
5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304
          // 音频流已被停止,永久失去焦点,若想恢复渲染,需用户主动触发
          console.info('Force stopped. Update playing status and stop writing');
          isPlaying = false; // 简化处理,代表应用切换至暂停状态的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_DUCK:
          // 音频流已被降低音量渲染
          console.info('Force ducked. Update volume status');
          isDucked = true; // 简化处理,代表应用更新音量状态的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_UNDUCK:
          // 音频流已被恢复正常音量渲染
          console.info('Force ducked. Update volume status');
          isDucked = false; // 简化处理,代表应用更新音量状态的若干操作
          break;
        default:
          console.info('Invalid interruptEvent');
5305 5306 5307
          break;
      }
    } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
5308
      // 由应用进行操作,应用可以自主选择打断或忽略
5309 5310
      switch (interruptEvent.hintType) {
        case audio.InterruptHint.INTERRUPT_HINT_RESUME:
5311
          // 建议应用继续渲染(说明音频流此前被强制暂停,临时失去焦点,现在可以恢复渲染)
5312
          console.info('Resume force paused renderer or ignore');
5313
          // 若选择继续渲染,需在此处主动执行开始渲染的若干操作
5314 5315
          break;
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
5316
          // 建议应用暂停渲染
5317
          console.info('Choose to pause or ignore');
5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335
          // 若选择暂停渲染,需在此处主动执行暂停渲染的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_STOP:
          // 建议应用停止渲染
          console.info('Choose to stop or ignore');
          // 若选择停止渲染,需在此处主动执行停止渲染的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_DUCK:
          // 建议应用降低音量渲染
          console.info('Choose to duck or ignore');
          // 若选择降低音量渲染,需在此处主动执行降低音量渲染的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_UNDUCK:
          // 建议应用恢复正常音量渲染
          console.info('Choose to unduck or ignore');
          // 若选择恢复正常音量渲染,需在此处主动执行恢复正常音量渲染的若干操作
          break;
        default:
5336 5337 5338 5339 5340
          break;
      }
   }
  });
}
Z
zhujie81 已提交
5341 5342
```

5343
### on('markReach')<sup>8+</sup>
Z
zhujie81 已提交
5344

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

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

5349
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zhujie81 已提交
5350 5351

**参数:**
5352

5353 5354 5355 5356 5357
| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                    |
Z
zengyawen 已提交
5358

Z
zhujie81 已提交
5359 5360
**示例:**

J
jiao_yanlin 已提交
5361
```js
5362 5363 5364
audioRenderer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5365
  }
5366
});
5367
```
Z
zengyawen 已提交
5368

5369

5370
### off('markReach') <sup>8+</sup>
5371

5372
off(type: 'markReach'): void
5373

5374
取消订阅标记事件。
5375

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

5378
**参数:**
5379

5380 5381 5382
| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |
5383 5384 5385 5386

**示例:**

```js
5387
audioRenderer.off('markReach');
5388 5389
```

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

5392
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
5393

5394
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,触发回调并返回设定的值。
5395

5396
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
5397 5398 5399

**参数:**

5400 5401 5402 5403 5404
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
| callback | Callback\<number>         | 是   | 触发事件时调用的回调。                      |
5405 5406 5407 5408

**示例:**

```js
5409 5410 5411
audioRenderer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
5412 5413 5414 5415
  }
});
```

5416
### off('periodReach') <sup>8+</sup>
5417

5418
off(type: 'periodReach'): void
Z
zengyawen 已提交
5419

5420
取消订阅标记事件。
5421

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

5424
**参数:**
5425

5426 5427 5428
| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |
5429

Z
zengyawen 已提交
5430 5431
**示例:**

J
jiao_yanlin 已提交
5432
```js
5433
audioRenderer.off('periodReach')
Z
zengyawen 已提交
5434 5435
```

5436
### on('stateChange') <sup>8+</sup>
L
lwx1059628 已提交
5437

5438
on(type: 'stateChange', callback: Callback<AudioState\>): void
L
lwx1059628 已提交
5439

5440
订阅监听状态变化。
5441

5442
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
L
lwx1059628 已提交
5443 5444 5445

**参数:**

5446 5447 5448 5449
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | Callback\<[AudioState](#audiostate8)> | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
5450 5451 5452

**示例:**

J
jiao_yanlin 已提交
5453
```js
5454 5455 5456 5457 5458 5459
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');
J
jiao_yanlin 已提交
5460
  }
L
lwx1059628 已提交
5461 5462 5463
});
```

5464
## AudioCapturer<sup>8+</sup>
L
lwx1059628 已提交
5465

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

5468
### 属性
L
lwx1059628 已提交
5469

5470
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5471

5472 5473 5474
| 名称  | 类型                     | 可读 | 可写 | 说明             |
| :---- | :------------------------- | :--- | :--- | :--------------- |
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
L
lwx1059628 已提交
5475 5476 5477

**示例:**

J
jiao_yanlin 已提交
5478
```js
5479
let state = audioCapturer.state;
L
lwx1059628 已提交
5480 5481
```

5482
### getCapturerInfo<sup>8+</sup>
5483

5484
getCapturerInfo(callback: AsyncCallback<AudioCapturerInfo\>): void
5485

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

5488
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5489 5490 5491

**参数:**

5492 5493 5494
| 参数名   | 类型                              | 必填 | 说明                                 |
| :------- | :-------------------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<AudioCapturerInfo\> | 是   | 使用callback方式异步返回采集器信息。 |
L
lwx1059628 已提交
5495 5496 5497

**示例:**

J
jiao_yanlin 已提交
5498
```js
5499
audioCapturer.getCapturerInfo((err, capturerInfo) => {
5500
  if (err) {
5501 5502 5503 5504 5505
    console.error('Failed to get capture info');
  } else {
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
J
jiao_yanlin 已提交
5506
  }
L
lwx1059628 已提交
5507 5508 5509
});
```

5510

5511
### getCapturerInfo<sup>8+</sup>
5512

5513
getCapturerInfo(): Promise<AudioCapturerInfo\>
5514

5515
获取采集器信息。使用Promise方式异步返回结果。
5516

5517
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
5518 5519 5520

**返回值:**

5521 5522 5523
| 类型                                              | 说明                                |
| :------------------------------------------------ | :---------------------------------- |
| Promise<[AudioCapturerInfo](#audiocapturerinfo)\> | 使用Promise方式异步返回采集器信息。 |
L
lwx1059628 已提交
5524 5525 5526

**示例:**

J
jiao_yanlin 已提交
5527
```js
5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538
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');
  }
}).catch((err) => {
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
5539
});
L
lwx1059628 已提交
5540 5541
```

5542
### getStreamInfo<sup>8+</sup>
L
lwx1059628 已提交
5543

5544
getStreamInfo(callback: AsyncCallback<AudioStreamInfo\>): void
L
lwx1059628 已提交
5545

5546
获取采集器流信息。使用callback方式异步返回结果。
5547

5548
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5549 5550 5551

**参数:**

5552 5553 5554
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
L
lwx1059628 已提交
5555 5556 5557

**示例:**

J
jiao_yanlin 已提交
5558
```js
5559
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
5560
  if (err) {
5561 5562 5563 5564 5565 5566 5567
    console.error('Failed to get stream info');
  } else {
    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 已提交
5568
  }
L
lwx1059628 已提交
5569 5570 5571
});
```

5572
### getStreamInfo<sup>8+</sup>
L
lwx1059628 已提交
5573

5574
getStreamInfo(): Promise<AudioStreamInfo\>
5575

5576
获取采集器流信息。使用Promise方式异步返回结果。
5577

5578
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5579 5580 5581

**返回值:**

5582 5583 5584
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
L
lwx1059628 已提交
5585 5586 5587

**示例:**

J
jiao_yanlin 已提交
5588
```js
5589 5590 5591 5592 5593 5594 5595 5596
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}`);
}).catch((err) => {
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
5597 5598 5599
});
```

5600
### getAudioStreamId<sup>9+</sup>
L
lwx1059628 已提交
5601

5602
getAudioStreamId(callback: AsyncCallback<number\>): void
L
lwx1059628 已提交
5603

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

5606
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5607 5608 5609

**参数:**

5610 5611 5612
| 参数名   | 类型                                                 | 必填 | 说明                 |
| :------- | :--------------------------------------------------- | :--- | :------------------- |
| callback | AsyncCallback<number\> | 是   | 回调返回音频流id。 |
L
lwx1059628 已提交
5613 5614 5615

**示例:**

J
jiao_yanlin 已提交
5616
```js
5617 5618
audioCapturer.getAudioStreamId((err, streamid) => {
  console.info(`audioCapturer GetStreamId: ${streamid}`);
L
lwx1059628 已提交
5619 5620 5621
});
```

5622
### getAudioStreamId<sup>9+</sup>
5623

5624
getAudioStreamId(): Promise<number\>
5625

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

5628
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5629 5630 5631

**返回值:**

5632 5633 5634
| 类型             | 说明                   |
| :----------------| :--------------------- |
| Promise<number\> | Promise返回音频流id。 |
L
lwx1059628 已提交
5635 5636 5637

**示例:**

J
jiao_yanlin 已提交
5638
```js
5639 5640 5641 5642
audioCapturer.getAudioStreamId().then((streamid) => {
  console.info(`audioCapturer getAudioStreamId: ${streamid}`);
}).catch((err) => {
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
5643 5644 5645
});
```

5646
### start<sup>8+</sup>
5647

5648
start(callback: AsyncCallback<void\>): void
5649

5650
启动音频采集器。使用callback方式异步返回结果。
5651

5652
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
5653 5654 5655

**参数:**

5656 5657 5658
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
5659 5660 5661 5662

**示例:**

```js
5663
audioCapturer.start((err) => {
5664
  if (err) {
5665 5666 5667
    console.error('Capturer start failed.');
  } else {
    console.info('Capturer start success.');
5668
  }
5669 5670 5671 5672
});
```


5673
### start<sup>8+</sup>
5674

5675
start(): Promise<void\>
5676

5677
启动音频采集器。使用Promise方式异步返回结果。
5678

5679
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
5680 5681 5682

**返回值:**

5683 5684 5685
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
5686 5687 5688 5689

**示例:**

```js
5690 5691 5692 5693 5694 5695 5696 5697 5698 5699
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');
  }
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
5700 5701 5702
});
```

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

5705
stop(callback: AsyncCallback<void\>): void
5706

5707
停止采集。使用callback方式异步返回结果。
5708

5709
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5710

5711
**参数:**
L
lwx1059628 已提交
5712

5713 5714 5715
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
L
lwx1059628 已提交
5716 5717 5718

**示例:**

J
jiao_yanlin 已提交
5719
```js
5720
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
5721
  if (err) {
5722 5723 5724
    console.error('Capturer stop failed');
  } else {
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
5725
  }
L
lwx1059628 已提交
5726 5727 5728 5729
});
```


5730
### stop<sup>8+</sup>
L
lwx1059628 已提交
5731

5732
stop(): Promise<void\>
L
lwx1059628 已提交
5733

5734
停止采集。使用Promise方式异步返回结果。
5735

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

**返回值:**

5740 5741 5742
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
5743 5744 5745

**示例:**

J
jiao_yanlin 已提交
5746
```js
5747 5748 5749 5750 5751 5752 5753 5754
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:');
  }
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
5755 5756 5757
});
```

5758
### release<sup>8+</sup>
L
lwx1059628 已提交
5759

5760
release(callback: AsyncCallback<void\>): void
L
lwx1059628 已提交
5761

5762
释放采集器。使用callback方式异步返回结果。
5763

5764
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5765 5766 5767

**参数:**

5768 5769
| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
J
jiao_yanlin 已提交
5770
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
L
lwx1059628 已提交
5771 5772 5773

**示例:**

J
jiao_yanlin 已提交
5774
```js
5775
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
5776
  if (err) {
5777 5778 5779
    console.error('capturer release failed');
  } else {
    console.info('capturer released.');
J
jiao_yanlin 已提交
5780
  }
L
lwx1059628 已提交
5781 5782 5783 5784
});
```


5785
### release<sup>8+</sup>
L
lwx1059628 已提交
5786

5787
release(): Promise<void\>
5788

5789
释放采集器。使用Promise方式异步返回结果。
5790

5791
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5792 5793 5794

**返回值:**

5795 5796 5797
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
5798 5799 5800

**示例:**

J
jiao_yanlin 已提交
5801
```js
5802 5803 5804 5805 5806 5807 5808 5809
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}`);
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
5810 5811 5812
});
```

5813
### read<sup>8+</sup>
L
lwx1059628 已提交
5814

5815
read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void
L
lwx1059628 已提交
5816

5817
读入缓冲区。使用callback方式异步返回结果。
5818

5819
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5820 5821 5822

**参数:**

5823 5824 5825 5826 5827
| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |
L
lwx1059628 已提交
5828 5829 5830

**示例:**

J
jiao_yanlin 已提交
5831
```js
5832 5833 5834 5835 5836 5837 5838 5839 5840 5841
let bufferSize;
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
    console.error(`AudioFrameworkRecLog: getBufferSize: ERROR: ${err}`);
  });
audioCapturer.read(bufferSize, true, async(err, buffer) => {
  if (!err) {
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
5842
  }
L
lwx1059628 已提交
5843 5844 5845
});
```

5846
### read<sup>8+</sup>
L
lwx1059628 已提交
5847

5848
read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>
L
lwx1059628 已提交
5849

5850
读入缓冲区。使用Promise方式异步返回结果。
L
lwx1059628 已提交
5851

5852
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
5853 5854 5855

**参数:**

5856 5857 5858 5859
| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |
L
lwx1059628 已提交
5860 5861 5862

**返回值:**

5863 5864 5865
| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |
L
lwx1059628 已提交
5866 5867 5868

**示例:**

J
jiao_yanlin 已提交
5869
```js
5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881
let bufferSize;
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
  bufferSize = data;
  }).catch((err) => {
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
  });
console.info(`Buffer size: ${bufferSize}`);
audioCapturer.read(bufferSize, true).then((buffer) => {
  console.info('buffer read successfully');
}).catch((err) => {
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
5882 5883 5884
});
```

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

5887
getAudioTime(callback: AsyncCallback<number\>): void
5888

5889
获取时间戳(从1970年1月1日开始),单位为纳秒。使用callback方式异步返回结果。
5890

5891
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5892

5893
**参数:**
L
lwx1059628 已提交
5894

5895 5896 5897
| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |
L
lwx1059628 已提交
5898 5899 5900

**示例:**

J
jiao_yanlin 已提交
5901
```js
5902 5903
audioCapturer.getAudioTime((err, timestamp) => {
  console.info(`Current timestamp: ${timestamp}`);
J
jiao_yanlin 已提交
5904
});
L
lwx1059628 已提交
5905 5906
```

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

5909
getAudioTime(): Promise<number\>
L
lwx1059628 已提交
5910

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

5913
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5914 5915 5916

**返回值:**

5917 5918 5919
| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |
L
lwx1059628 已提交
5920 5921 5922

**示例:**

J
jiao_yanlin 已提交
5923
```js
5924 5925 5926 5927
audioCapturer.getAudioTime().then((audioTime) => {
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
5928 5929 5930
});
```

5931
### getBufferSize<sup>8+</sup>
L
lwx1059628 已提交
5932

5933
getBufferSize(callback: AsyncCallback<number\>): void
L
lwx1059628 已提交
5934

5935
获取采集器合理的最小缓冲区大小。使用callback方式异步返回结果。
5936

5937
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5938 5939 5940

**参数:**

5941 5942 5943
| 参数名   | 类型                   | 必填 | 说明                                 |
| :------- | :--------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回缓冲区大小。 |
L
lwx1059628 已提交
5944 5945 5946

**示例:**

J
jiao_yanlin 已提交
5947
```js
5948 5949 5950 5951 5952 5953 5954 5955
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}`);
    });
5956
  }
L
lwx1059628 已提交
5957 5958 5959
});
```

5960
### getBufferSize<sup>8+</sup>
5961

5962
getBufferSize(): Promise<number\>
L
lwx1059628 已提交
5963

5964
获取采集器合理的最小缓冲区大小。使用Promise方式异步返回结果。
L
lwx1059628 已提交
5965

5966
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
5967

5968 5969 5970 5971 5972
**返回值:**

| 类型             | 说明                                |
| :--------------- | :---------------------------------- |
| Promise<number\> | 使用Promise方式异步返回缓冲区大小。 |
L
lwx1059628 已提交
5973 5974 5975

**示例:**

J
jiao_yanlin 已提交
5976
```js
5977 5978 5979 5980 5981 5982
let bufferSize;
audioCapturer.getBufferSize().then((data) => {
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
  bufferSize = data;
}).catch((err) => {
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err}`);
L
lwx1059628 已提交
5983 5984 5985
});
```

5986 5987 5988 5989 5990 5991
### on('audioInterrupt')<sup>10+</sup>

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

监听音频中断事件。使用callback获取中断事件。

J
jiaoyanlin3 已提交
5992
[on('interrupt')](#oninterrupt)一致,均用于监听焦点变化。AudioCapturer对象在start事件发生时会主动获取焦点,在pause、stop等事件发生时会主动释放焦点,不需要开发者主动发起获取焦点或释放焦点的申请。
5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062

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

**参数:**

| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'audioInterrupt'(中断事件被触发,音频采集被中断。) |
| callback | Callback\<[InterruptEvent](#interruptevent9)\> | 是   | 被监听的中断事件的回调。                                     |

**错误码:**

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

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

**示例:**

```js
let isCapturing; // 标识符,表示是否正在采集
onAudioInterrupt();

async function onAudioInterrupt(){
  audioCapturer.on('audioInterrupt', async(interruptEvent) => {
    if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
      // 由系统进行操作,强制打断音频采集,应用需更新自身状态及显示内容等
      switch (interruptEvent.hintType) {
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
          // 音频流已被暂停,临时失去焦点,待可重获焦点时会收到resume对应的interruptEvent
          console.info('Force paused. Update capturing status and stop reading');
          isCapturing = false; // 简化处理,代表应用切换至暂停状态的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_STOP:
          // 音频流已被停止,永久失去焦点,若想恢复采集,需用户主动触发
          console.info('Force stopped. Update capturing status and stop reading');
          isCapturing = false; // 简化处理,代表应用切换至暂停状态的若干操作
          break;
        default:
          console.info('Invalid interruptEvent');
          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');
          // 若选择继续采集,需在此处主动执行开始采集的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
          // 建议应用暂停采集
          console.info('Choose to pause or ignore');
          // 若选择暂停采集,需在此处主动执行暂停采集的若干操作
          break;
        case audio.InterruptHint.INTERRUPT_HINT_STOP:
          // 建议应用停止采集
          console.info('Choose to stop or ignore');
          // 若选择停止采集,需在此处主动执行停止采集的若干操作
          break;
        default:
          break;
      }
   }
  });
}
```


6063
### on('markReach')<sup>8+</sup>
L
lwx1059628 已提交
6064

6065
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
6066

6067
订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。
6068

6069
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
6070 6071 6072

**参数:**

6073 6074 6075 6076 6077
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
L
lwx1059628 已提交
6078 6079

**示例:**
6080

J
jiao_yanlin 已提交
6081
```js
6082 6083 6084
audioCapturer.on('markReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
6085
  }
L
lwx1059628 已提交
6086 6087 6088
});
```

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

6091
off(type: 'markReach'): void
L
lwx1059628 已提交
6092

6093
取消订阅标记到达的事件。
6094

6095
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
6096 6097 6098

**参数:**

6099 6100 6101
| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |
L
lwx1059628 已提交
6102 6103 6104

**示例:**

J
jiao_yanlin 已提交
6105
```js
6106
audioCapturer.off('markReach');
L
lwx1059628 已提交
6107 6108
```

6109
### on('periodReach')<sup>8+</sup>
L
lwx1059628 已提交
6110

6111
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
6112

6113
订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,触发回调并返回设定的值。
6114

6115
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
6116 6117 6118

**参数:**

6119 6120 6121 6122 6123
| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
| callback | Callback\<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
L
lwx1059628 已提交
6124 6125 6126

**示例:**

J
jiao_yanlin 已提交
6127
```js
6128 6129 6130
audioCapturer.on('periodReach', 1000, (position) => {
  if (position == 1000) {
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
6131
  }
L
lwx1059628 已提交
6132 6133 6134
});
```

6135
### off('periodReach')<sup>8+</sup>
L
lwx1059628 已提交
6136

6137
off(type: 'periodReach'): void
L
lwx1059628 已提交
6138

6139
取消订阅标记到达的事件。
6140

6141
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
6142 6143 6144

**参数:**

6145 6146 6147
| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
| type   | string | 是  | 取消事件回调类型,支持的事件为:'periodReach'。 |
L
lwx1059628 已提交
6148 6149 6150

**示例:**

J
jiao_yanlin 已提交
6151
```js
6152
audioCapturer.off('periodReach')
L
lwx1059628 已提交
6153 6154
```

6155
### on('stateChange') <sup>8+</sup>
L
lwx1059628 已提交
6156

6157
on(type: 'stateChange', callback: Callback<AudioState\>): void
L
lwx1059628 已提交
6158

6159
订阅监听状态变化。
6160

6161
**系统能力:** SystemCapability.Multimedia.Audio.Capturer
L
lwx1059628 已提交
6162 6163 6164

**参数:**

6165 6166 6167 6168
| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | Callback\<[AudioState](#audiostate8)> | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
6169 6170 6171

**示例:**

J
jiao_yanlin 已提交
6172
```js
6173 6174 6175 6176 6177 6178
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');
J
jiao_yanlin 已提交
6179
  }
L
lwx1059628 已提交
6180 6181 6182
});
```

6183
## ToneType<sup>9+</sup>
L
lwx1059628 已提交
6184

6185
枚举,播放器的音调类型。
L
lwx1059628 已提交
6186

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

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

6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219
| 名称                                              |  值    | 说明                          |
| :------------------------------------------------ | :----- | :----------------------------|
| 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    | 专有声调,双重蜂鸣声。          |
L
lwx1059628 已提交
6220

6221
## TonePlayer<sup>9+</sup>
L
lwx1059628 已提交
6222

6223
提供播放和管理DTMF(Dual Tone Multi Frequency,双音多频)音调的方法,包括各种系统监听音调、专有音调,如拨号音、通话回铃音等。
L
lwx1059628 已提交
6224

6225
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
6226

6227
### load<sup>9+</sup>
L
lwx1059628 已提交
6228

6229
load(type: ToneType, callback: AsyncCallback&lt;void&gt;): void
L
lwx1059628 已提交
6230

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

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

6235
**系统能力:** SystemCapability.Multimedia.Audio.Tone
L
lwx1059628 已提交
6236 6237 6238

**参数:**

6239 6240 6241 6242
| 参数名          | 类型                        | 必填  | 说明                            |
| :--------------| :-------------------------- | :-----| :------------------------------ |
| type           | [ToneType](#tonetype9)       | 是    | 配置的音调类型。                 |
| callback       | AsyncCallback<void\>        | 是    | 使用callback方式异步返回结果。 |
L
lwx1059628 已提交
6243 6244 6245

**示例:**

J
jiao_yanlin 已提交
6246
```js
6247
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_5, (err) => {
6248
  if (err) {
6249
    console.error(`callback call load failed error: ${err.message}`);
6250
    return;
6251 6252
  } else {
    console.info('callback call load success');
J
jiao_yanlin 已提交
6253
  }
L
lwx1059628 已提交
6254
});
6255 6256
```

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

6259
load(type: ToneType): Promise&lt;void&gt;
6260

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

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

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

6267
**参数:**
6268

6269 6270 6271
| 参数名         | 类型                    | 必填  |  说明             |
| :------------- | :--------------------- | :---  | ---------------- |
| type           | [ToneType](#tonetype9)   | 是    | 配置的音调类型。  |
6272

6273
**返回值:**
6274

6275 6276 6277
| 类型            | 说明                        |
| :--------------| :-------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
6278

6279
**示例:**
6280

6281
```js
6282 6283 6284 6285
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_1).then(() => {
  console.info('promise call load ');
}).catch(() => {
  console.error('promise call load fail');
6286 6287
});
```
6288

6289
### start<sup>9+</sup>
6290

6291
start(callback: AsyncCallback&lt;void&gt;): void
6292

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

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

6297
**系统能力:** SystemCapability.Multimedia.Audio.Tone
6298 6299 6300

**参数:**

6301 6302 6303
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
6304 6305 6306 6307

**示例:**

```js
6308
tonePlayer.start((err) => {
6309
  if (err) {
6310
    console.error(`callback call start failed error: ${err.message}`);
6311
    return;
6312 6313
  } else {
    console.info('callback call start success');
6314 6315 6316 6317
  }
});
```

6318
### start<sup>9+</sup>
6319

6320
start(): Promise&lt;void&gt;
6321

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

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

6326
**系统能力:** SystemCapability.Multimedia.Audio.Tone
6327 6328 6329

**返回值:**

6330 6331 6332
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
6333 6334 6335 6336

**示例:**

```js
6337 6338 6339 6340
tonePlayer.start().then(() => {
  console.info('promise call start');
}).catch(() => {
  console.error('promise call start fail');
6341 6342 6343
});
```

6344
### stop<sup>9+</sup>
6345

6346
stop(callback: AsyncCallback&lt;void&gt;): void
6347

6348
停止当前正在播放的音调。使用callback方式异步返回结果。
6349 6350 6351

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

6352
**系统能力:** SystemCapability.Multimedia.Audio.Tone
6353 6354 6355

**参数:**

6356 6357 6358
| 参数名   | 类型                 | 必填 | 说明                           |
| :------- | :------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。 |
6359 6360 6361 6362

**示例:**

```js
6363 6364 6365 6366 6367 6368 6369
tonePlayer.stop((err) => {
  if (err) {
    console.error(`callback call stop error: ${err.message}`);
    return;
  } else {
    console.error('callback call stop success ');
  }
6370 6371 6372
});
```

6373
### stop<sup>9+</sup>
6374

6375
stop(): Promise&lt;void&gt;
6376

6377
停止当前正在播放的音调。使用Promise方式异步返回结果。
6378

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

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

6383
**返回值:**
6384

6385 6386 6387
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
6388 6389 6390 6391

**示例:**

```js
6392 6393 6394 6395
tonePlayer.stop().then(() => {
  console.info('promise call stop finish');
}).catch(() => {
  console.error('promise call stop fail');
6396 6397 6398
});
```

6399
### release<sup>9+</sup>
6400

6401
release(callback: AsyncCallback&lt;void&gt;): void
6402

6403
释放与此TonePlayer对象关联的资源。使用callback方式异步返回结果。
6404

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

6407
**系统能力:** SystemCapability.Multimedia.Audio.Tone
6408 6409 6410

**参数:**

6411 6412 6413
| 参数名   | 类型                 | 必填 | 说明                            |
| :------- | :------------------- | :--- | :---------------------------- |
| callback | AsyncCallback<void\> | 是   | 使用callback方式异步返回结果。  |
6414 6415 6416 6417

**示例:**

```js
6418 6419 6420 6421 6422 6423 6424
tonePlayer.release((err) => {
  if (err) {
    console.error(`callback call release failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call release success ');
  }
6425 6426 6427
});
```

6428
### release<sup>9+</sup>
6429

6430
release(): Promise&lt;void&gt;
6431

6432
释放与此TonePlayer对象关联的资源。使用Promise方式异步返回结果。
6433

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

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

6438
**返回值:**
6439

6440 6441 6442
| 类型           | 说明                          |
| :------------- | :---------------------------- |
| Promise<void\> | 使用Promise方式异步返回结果。 |
6443 6444 6445 6446

**示例:**

```js
6447 6448 6449 6450
tonePlayer.release().then(() => {
  console.info('promise call release');
}).catch(() => {
  console.error('promise call release fail');
6451 6452 6453
});
```

6454
## ActiveDeviceType<sup>(deprecated)</sup>
6455

6456
枚举,活跃设备类型。
6457

6458 6459
> **说明:**
> 从 API version 9 开始废弃,建议使用[CommunicationDeviceType](#communicationdevicetype9)替代。
6460

6461 6462 6463 6464 6465 6466 6467 6468 6469 6470
**系统能力:** SystemCapability.Multimedia.Audio.Device

| 名称          |  值     | 说明                                                 |
| ------------- | ------ | ---------------------------------------------------- |
| SPEAKER       | 2      | 扬声器。                                             |
| BLUETOOTH_SCO | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。 |

## InterruptActionType<sup>(deprecated)</sup>

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

6472 6473 6474 6475
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。

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

6477 6478 6479 6480
| 名称           |  值     | 说明               |
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
6481

6482
## AudioInterrupt<sup>(deprecated)</sup>
6483

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

6486 6487
> **说明:**
> 从 API version 7 开始支持,从 API version 9 开始废弃。
6488

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

6491 6492 6493 6494 6495
| 名称            | 类型                        | 必填 | 说明                                                         |
| --------------- | --------------------------- | ----| ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是  | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是  | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是  | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
6496

6497 6498 6499
## InterruptAction<sup>(deprecated)</sup>

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

6501
> **说明:**
J
jiaoyanlin3 已提交
6502
> 从 API version 7 开始支持,从 API version 9 开始废弃。建议使用[InterruptEvent](#interruptevent9)替代。
6503

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

6506 6507 6508 6509 6510 6511
| 名称       | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontypedeprecated) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。 |
| type       | [InterruptType](#interrupttype)             | 否   | 打断事件类型。                                               |
| hint       | [InterruptHint](#interrupthint)             | 否   | 打断事件提示。                                               |
| activated  | boolean                                     | 否   | 获得/释放焦点。true表示焦点获取/释放成功,false表示焦点获得/释放失败。 |