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

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

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

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

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

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

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

20 21
## 常量

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

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

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

**示例:**

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

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

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

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

获取音频管理器。

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

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

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

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

J
jiao_yanlin 已提交
164 165
**需要权限:** ohos.permission.MICROPHONE

L
lwx1059628 已提交
166 167
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
175
```js
L
lwx1059628 已提交
176
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
177
var audioStreamInfo = {
J
jiao_yanlin 已提交
178 179 180 181
  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 已提交
182 183 184
}

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

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

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

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

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

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

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

J
jiao_yanlin 已提交
212 213
**需要权限:** ohos.permission.MICROPHONE

L
lwx1059628 已提交
214 215
**参数:**

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

**返回值:**

| 类型                                      | 说明           |
| ----------------------------------------- | -------------- |
M
magekkkk 已提交
224
| Promise<[AudioCapturer](#audiocapturer8)> | 音频采集器对象 |
L
lwx1059628 已提交
225 226 227

**示例:**

J
jiao_yanlin 已提交
228
```js
L
lwx1059628 已提交
229 230
import audio from '@ohos.multimedia.audio';

L
lwx1059628 已提交
231
var audioStreamInfo = {
J
jiao_yanlin 已提交
232 233 234 235
  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 已提交
236 237 238
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
239
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
240
  capturerFlags: 0
L
lwx1059628 已提交
241 242 243
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
244 245
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
246 247
}

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

257 258 259 260
## audio.createTonePlayer<sup>9+</sup>

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

261
创建DTMF播放器。使用callback方式异步返回结果。
262 263 264

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

265
**参数:**
266 267 268 269 270 271 272 273 274 275 276 277

| 参数名   | 类型                                             | 必填 | 说明            |
| -------- | ----------------------------------------------- | ---- | -------------- |
| options  | [AudioRendererInfo](#audiorendererinfo8)        | 是   | 配置渲染器。     |
| callback | AsyncCallback<[TonePlayer](#toneplayer9)>       | 是   | 音频渲染器对象。 |

**示例:**

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

var audioRendererInfo = {
278 279 280
  "contentType": audio.ContentType.CONTENT_TYPE_MUSIC,
  "streamUsage": audio.StreamUsage.STREAM_USAGE_MEDIA,
  "rendererFlags": 0
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
}
var tonePlayer;

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;

299
创建DTMF播放器。使用Promise方式异步返回结果。
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318

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

**参数:**

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

**返回值:**

| 类型                                      | 说明              |
| ----------------------------------------- | ---------------- |
| Promise<[TonePlayer](#toneplayer9)>       | 音频渲染器对象。   |

**示例:**

```js
import audio from '@ohos.multimedia.audio';
319
async function createTonePlayer(){
320 321 322 323 324 325 326 327 328
  var audioRendererInfo = {
    "contentType": audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage": audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags": 0
  }
  let tonePlayer = await audio.createTonePlayer(this.audioRendererInfo);
}
```

Z
zengyawen 已提交
329
## AudioVolumeType
M
mamingshuai 已提交
330

331
枚举,音频流类型。
M
mamingshuai 已提交
332

Z
zengyawen 已提交
333 334 335 336 337 338 339 340
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

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

343
## InterruptMode<sup>9+</sup>
344

345
枚举,焦点模型。
346

347
**系统能力:** SystemCapability.Multimedia.Audio.Core
348 349 350

| 名称                         | 默认值 | 描述       |
| ---------------------------- | ------ | ---------- |
351 352
| SHARE_MODE      | 0      | 共享焦点模式。 |
| INDEPENDENT_MODE| 1      | 独立焦点模式。     |
353

Z
zengyawen 已提交
354
## DeviceFlag
M
mamingshuai 已提交
355

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

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

360 361
| 名称                            | 默认值  | 描述                                              |
| ------------------------------- | ------ | ------------------------------------------------- |
362 363 364 365 366 367 368
| NONE_DEVICES_FLAG<sup>9+</sup>  | 0      | 无 <br/>此接口为系统接口,三方应用不支持调用。        |
| OUTPUT_DEVICES_FLAG             | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG              | 2      | 输入设备。 |
| ALL_DEVICES_FLAG                | 3      | 所有设备。 |
| DISTRIBUTED_OUTPUT_DEVICES_FLAG<sup>9+</sup> | 4   | 分布式输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| DISTRIBUTED_INPUT_DEVICES_FLAG<sup>9+</sup>  | 8   | 分布式输入设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| ALL_DISTRIBUTED_DEVICES_FLAG<sup>9+</sup>    | 12  | 分布式输入和输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
Z
zengyawen 已提交
369 370 371


## DeviceRole
M
mamingshuai 已提交
372

373
枚举,设备角色。
M
mamingshuai 已提交
374

Z
zengyawen 已提交
375 376 377 378 379 380
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

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


Z
zengyawen 已提交
383 384 385
## DeviceType

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

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

389 390 391 392 393 394 395 396 397 398 399 400
| 名称                 | 默认值 | 描述                                                      |
| ---------------------| ------ | --------------------------------------------------------- |
| 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 已提交
401

Z
zengyawen 已提交
402
## ActiveDeviceType
M
magekkkk 已提交
403

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

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

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

Z
zengyawen 已提交
413
## AudioRingMode
414 415 416

枚举,铃声模式。

Z
zengyawen 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Communication

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

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

枚举,音频采样格式。

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

431 432 433 434 435 436 437 438
| 名称                                | 默认值 | 描述                       |
| ---------------------------------- | ------ | -------------------------- |
| SAMPLE_FORMAT_INVALID              | -1     | 无效格式。                 |
| SAMPLE_FORMAT_U8                   | 0      | 无符号8位整数。            |
| SAMPLE_FORMAT_S16LE                | 1      | 带符号的16位整数,小尾数。 |
| SAMPLE_FORMAT_S24LE                | 2      | 带符号的24位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_S32LE                | 3      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_F32LE<sup>9+</sup>   | 4      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
Z
zengyawen 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481

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

枚举, 音频声道。

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

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

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

枚举,音频采样率。

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

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

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

枚举,音频编码类型。

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

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

L
lwx1059628 已提交
482
## ContentType
Z
zengyawen 已提交
483 484 485 486 487

枚举,音频内容类型。

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

L
lwx1059628 已提交
488 489 490 491 492 493 494 495
| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| CONTENT_TYPE_UNKNOWN               | 0      | 未知类型。 |
| CONTENT_TYPE_SPEECH                | 1      | 语音。     |
| CONTENT_TYPE_MUSIC                 | 2      | 音乐。     |
| CONTENT_TYPE_MOVIE                 | 3      | 电影。     |
| CONTENT_TYPE_SONIFICATION          | 4      | 加密类型。 |
| CONTENT_TYPE_RINGTONE<sup>8+</sup> | 5      | 铃声。     |
Z
zengyawen 已提交
496

L
lwx1059628 已提交
497
## StreamUsage
Z
zengyawen 已提交
498 499 500 501 502 503 504 505 506 507

枚举,音频流使用类型。

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

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

511
## FocusType<sup>9+</sup>
512

513
表示焦点类型的枚举。
514

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

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

519 520 521
| 名称                               | 默认值  | 描述                            |
| ---------------------------------- | ------ | ------------------------------- |
| FOCUS_TYPE_RECORDING               | 0      |  在录制场景使用,可打断其他音频。  |
522 523


Z
zengyawen 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
## AudioState<sup>8+</sup>

枚举,音频状态。

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

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

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

L
lwx1059628 已提交
542
枚举,音频渲染速度。
Z
zengyawen 已提交
543 544 545 546 547 548 549 550 551

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

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

L
lwx1059628 已提交
552
## InterruptType
Z
zengyawen 已提交
553 554 555 556

枚举,中断类型。

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

Z
zengyawen 已提交
558 559 560 561 562
| 名称                 | 默认值 | 描述                   |
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
563
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
564 565 566 567 568 569 570 571 572 573

枚举,强制打断类型。

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

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

L
lwx1059628 已提交
574
## InterruptHint
Z
zengyawen 已提交
575 576 577 578 579

枚举,中断提示。

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

L
lwx1059628 已提交
580 581 582 583 584 585 586 587
| 名称                               | 默认值 | 描述                                         |
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
588

589 590 591 592 593 594
## InterruptActionType

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

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

H
update  
HelloCrease 已提交
595 596 597 598
| 名称           | 默认值 | 描述               |
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
599

Z
zengyawen 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
## AudioStreamInfo<sup>8+</sup>

音频流信息。

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

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

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

L
lwx1059628 已提交
615
音频渲染器信息。
Z
zengyawen 已提交
616 617 618

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

L
lwx1059628 已提交
619 620
| 名称          | 类型                        | 必填 | 说明             |
| ------------- | --------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
621
| content       | [ContentType](#contenttype) | 是   | 媒体类型。       |
L
lwx1059628 已提交
622 623
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
624 625 626

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

L
lwx1059628 已提交
627
音频渲染器选项信息。
Z
zengyawen 已提交
628 629 630 631 632 633

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

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

L
lwx1059628 已提交
636
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
637 638 639 640 641 642 643

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

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

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

648 649 650 651 652 653
## AudioInterrupt

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

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

H
update  
HelloCrease 已提交
654 655 656 657 658
| 名称            | 类型                        | 必填 | 说明                                                         |
| --------------- | --------------------------- | ---- | ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是   | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是   | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是   | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
659 660 661 662 663 664 665

## InterruptAction

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

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

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

Z
zengyawen 已提交
673 674 675 676
## VolumeEvent<sup>8+</sup>

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

677
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
678

Z
zengyawen 已提交
679 680 681 682 683 684 685
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

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

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

枚举,设备连接类型。

J
jiao_yanlin 已提交
693 694
**系统接口:** 该接口为系统接口

W
wangtao 已提交
695 696 697 698 699 700 701 702 703 704 705
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

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

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

音量组信息。

706
**系统接口:** 该接口为系统接口
W
wangtao 已提交
707 708 709 710 711 712 713 714 715

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

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

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

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

722
**系统接口:** 该接口为系统接口
W
wangtao 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736

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

**示例:**

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

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

L
lwx1059628 已提交
738 739 740 741
## DeviceChangeAction

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

742
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
743 744 745

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
746 747
| type              | [DeviceChangeType](#devicechangetype)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#audiodevicedescriptors) | 是   | 设备信息。         |
L
lwx1059628 已提交
748 749 750 751 752 753 754 755 756 757 758 759

## DeviceChangeType

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

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

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

Z
zengyawen 已提交
760 761 762 763 764 765 766 767 768
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

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

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

L
lwx1059628 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
## AudioCapturerInfo<sup>8+</sup><a name="audiocapturerinfo"></a>

描述音频采集器信息。

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

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

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

枚举,音源类型。

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

Z
update  
zengyawen 已提交
788 789 790 791
| 名称                            | 默认值 | 描述                   |
| :------------------------------ | :----- | :--------------------- |
| SOURCE_TYPE_INVALID             | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                 | 0      | Mic音频源。            |
792
| SOURCE_TYPE_VOICE_RECOGNITION   | 1      | 语音识别源。        |
Z
update  
zengyawen 已提交
793
| SOURCE_TYPE_VOICE_COMMUNICATION | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
794 795 796 797 798 799 800

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

枚举,音频场景。

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

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

808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
## ToneType <sup>9+</sup>

枚举,播放机的音调类型。

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

| 名称                                              | 默认值 | 描述                          |
| :------------------------------------------------ | :----- | :----------------------------|
| 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    | 呼叫管理音,无线电路径确认。    |
| 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    | 专有声调,一般蜂鸣声。         |
840 841
| TONE_TYPE_COMMON_PROPRIETARY_ACK                  | 201    | 专有声调,ACK。                |
| TONE_TYPE_COMMON_PROPRIETARY_PROMPT               | 203    | 专有声调,PROMPT。             |
842
| TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP          | 204    | 专有音调,一般双重哔声。        |
W
wangtao 已提交
843

Z
zengyawen 已提交
844
## AudioManager
M
mamingshuai 已提交
845

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

848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
### getRoutingManager<sup>9+</sup>

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

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

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

**参数:**

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

**示例:**
```js
J
jiao_yanlin 已提交
864
audioManager.getRoutingManager((err, callback) => {
865
  if (err) {
866
    console.error(`Result ERROR: ${err}`);
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
  }
  console.info('getRoutingManager Callback SUCCESS.');
  var audioRoutingManager;
  audioRoutingManager = callback;
});
```

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

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

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

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

**返回值:**

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

**示例:**
```js
J
jiao_yanlin 已提交
890 891 892 893 894 895 896 897 898
var audioManager = audio.getAudioManager();
async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    var routingManager = value;
    console.info('getRoutingManager Promise SUCCESS.');
  }).catch((err) => {
    console.error(`Result ERROR: ${err}`);
  });
}
899 900
```

Z
zengyawen 已提交
901 902 903
### setVolume

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

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

907 908 909
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

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

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

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

J
jiao_yanlin 已提交
923
```js
L
lwx1059628 已提交
924
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
J
jiao_yanlin 已提交
925
  if (err) {
926
    console.error(`Failed to set the volume. ${err}`);
J
jiao_yanlin 已提交
927 928
    return;
  }
929
  console.info('Callback invoked to indicate a successful volume setting.');
L
lwx1059628 已提交
930
});
M
mamingshuai 已提交
931 932
```

Z
zengyawen 已提交
933 934 935
### setVolume

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

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

939 940 941
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

M
mamingshuai 已提交
945 946
**参数:**

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

**返回值:**

Z
zengyawen 已提交
954 955
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
956
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
M
mamingshuai 已提交
957 958 959

**示例:**

J
jiao_yanlin 已提交
960
```js
A
AOL 已提交
961
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
962
  console.info('Promise returned to indicate a successful volume setting.');
L
lwx1059628 已提交
963
});
M
mamingshuai 已提交
964 965
```

Z
zengyawen 已提交
966 967 968
### getVolume

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

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

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

M
mamingshuai 已提交
974 975
**参数:**

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

M
mamingshuai 已提交
981 982
**示例:**

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

Z
zengyawen 已提交
993 994 995
### getVolume

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

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

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

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1015
```js
A
AOL 已提交
1016
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
1017
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
1018
});
M
mamingshuai 已提交
1019 1020
```

Z
zengyawen 已提交
1021 1022 1023
### getMinVolume

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

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

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

M
mamingshuai 已提交
1029 1030
**参数:**

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

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

J
jiao_yanlin 已提交
1038
```js
Z
zengyawen 已提交
1039
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1040
  if (err) {
1041
    console.error(`Failed to obtain the minimum volume. ${err}`);
J
jiao_yanlin 已提交
1042 1043
    return;
  }
1044
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1045
});
M
mamingshuai 已提交
1046 1047
```

Z
zengyawen 已提交
1048 1049 1050
### getMinVolume

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

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

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

M
mamingshuai 已提交
1056 1057
**参数:**

Z
zengyawen 已提交
1058 1059 1060
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
1061 1062 1063

**返回值:**

Z
zengyawen 已提交
1064 1065
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
1066
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
M
mamingshuai 已提交
1067 1068 1069

**示例:**

J
jiao_yanlin 已提交
1070
```js
A
AOL 已提交
1071
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
1072
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1073
});
M
mamingshuai 已提交
1074 1075
```

Z
zengyawen 已提交
1076 1077 1078
### getMaxVolume

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

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

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

M
mamingshuai 已提交
1084 1085
**参数:**

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

M
mamingshuai 已提交
1091 1092
**示例:**

J
jiao_yanlin 已提交
1093
```js
1094
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1095
  if (err) {
1096
    console.error(`Failed to obtain the maximum volume. ${err}`);
J
jiao_yanlin 已提交
1097 1098
    return;
  }
1099
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
L
lwx1059628 已提交
1100
});
M
mamingshuai 已提交
1101 1102
```

Z
zengyawen 已提交
1103 1104 1105
### getMaxVolume

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

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

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

M
mamingshuai 已提交
1111 1112
**参数:**

Z
zengyawen 已提交
1113 1114 1115
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
1116 1117 1118

**返回值:**

Z
zengyawen 已提交
1119 1120
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
Z
zengyawen 已提交
1121
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
M
mamingshuai 已提交
1122 1123 1124

**示例:**

J
jiao_yanlin 已提交
1125
```js
A
AOL 已提交
1126
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
1127
  console.info('Promised returned to indicate that the maximum volume is obtained.');
L
lwx1059628 已提交
1128
});
Z
zengyawen 已提交
1129 1130
```

Z
zengyawen 已提交
1131
### mute
Z
zengyawen 已提交
1132 1133

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

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

1137 1138 1139
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

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

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

Z
zengyawen 已提交
1151 1152
**示例:**

J
jiao_yanlin 已提交
1153
```js
1154
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
1155
  if (err) {
1156
    console.error(`Failed to mute the stream. ${err}`);
J
jiao_yanlin 已提交
1157 1158
    return;
  }
1159
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
1160
});
1161 1162
```

Z
zengyawen 已提交
1163
### mute
Z
zengyawen 已提交
1164 1165

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

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

1169 1170 1171
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1175 1176
**参数:**

Z
zengyawen 已提交
1177 1178 1179 1180
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
1181 1182 1183

**返回值:**

Z
zengyawen 已提交
1184 1185
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
1186
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1187 1188 1189

**示例:**

Z
zengyawen 已提交
1190

J
jiao_yanlin 已提交
1191
```js
A
AOL 已提交
1192
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
1193
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
1194
});
1195 1196 1197
```


Z
zengyawen 已提交
1198
### isMute
1199

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

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

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

Z
zengyawen 已提交
1206
**参数:**
1207

Z
zengyawen 已提交
1208 1209 1210 1211
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
1212 1213 1214

**示例:**

J
jiao_yanlin 已提交
1215
```js
1216
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1217
  if (err) {
1218
    console.error(`Failed to obtain the mute status. ${err}`);
J
jiao_yanlin 已提交
1219 1220
    return;
  }
1221
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
1222
});
Z
zengyawen 已提交
1223 1224
```

Z
zengyawen 已提交
1225

Z
zengyawen 已提交
1226
### isMute
Z
zengyawen 已提交
1227 1228

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

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

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

Z
zengyawen 已提交
1234 1235
**参数:**

Z
zengyawen 已提交
1236 1237 1238
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
Z
zengyawen 已提交
1239 1240 1241

**返回值:**

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

Z
zengyawen 已提交
1246 1247
**示例:**

J
jiao_yanlin 已提交
1248
```js
A
AOL 已提交
1249
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
1250
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1251
});
Z
zengyawen 已提交
1252 1253
```

Z
zengyawen 已提交
1254
### isActive
Z
zengyawen 已提交
1255 1256

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

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

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

1262 1263
**参数:**

Z
zengyawen 已提交
1264 1265 1266 1267
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
1268 1269 1270

**示例:**

J
jiao_yanlin 已提交
1271
```js
1272
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1273
  if (err) {
1274
    console.error(`Failed to obtain the active status of the stream. ${err}`);
J
jiao_yanlin 已提交
1275 1276
    return;
  }
1277
  console.info(`Callback invoked to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1278
});
1279 1280
```

Z
zengyawen 已提交
1281
### isActive
Z
zengyawen 已提交
1282 1283

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

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

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

1289 1290
**参数:**

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

**返回值:**

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

1301 1302
**示例:**

J
jiao_yanlin 已提交
1303
```js
A
AOL 已提交
1304
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
1305
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1306
});
1307 1308
```

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

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

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

1315 1316 1317
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1321 1322
**参数:**

Z
zengyawen 已提交
1323 1324 1325 1326
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1327 1328 1329

**示例:**

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

Z
zengyawen 已提交
1340
### setRingerMode
Z
zengyawen 已提交
1341 1342

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

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

1346 1347 1348
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1352 1353
**参数:**

Z
zengyawen 已提交
1354 1355 1356
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1357 1358 1359

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1366
```js
A
AOL 已提交
1367
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
1368
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1369
});
1370 1371 1372
```


Z
zengyawen 已提交
1373
### getRingerMode
1374

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

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

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

Z
zengyawen 已提交
1381
**参数:**
1382

Z
zengyawen 已提交
1383 1384 1385
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1386 1387 1388

**示例:**

J
jiao_yanlin 已提交
1389
```js
1390
audioManager.getRingerMode((err, value) => {
J
jiao_yanlin 已提交
1391
  if (err) {
1392
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1393 1394
    return;
  }
1395
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1396
});
1397 1398 1399
```


Z
zengyawen 已提交
1400
### getRingerMode
1401

Z
zengyawen 已提交
1402
getRingerMode(): Promise&lt;AudioRingMode&gt;
1403

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

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

1408 1409
**返回值:**

Z
zengyawen 已提交
1410 1411
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
1412
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1413 1414 1415

**示例:**

J
jiao_yanlin 已提交
1416
```js
A
AOL 已提交
1417
audioManager.getRingerMode().then((value) => {
1418
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1419
});
1420 1421
```

Z
zengyawen 已提交
1422
### setAudioParameter
Z
zengyawen 已提交
1423 1424

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

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

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

1430 1431
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1434 1435
**参数:**

Z
zengyawen 已提交
1436 1437 1438 1439 1440
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
1441 1442 1443

**示例:**

J
jiao_yanlin 已提交
1444
```js
1445
audioManager.setAudioParameter('key_example', 'value_example', (err) => {
J
jiao_yanlin 已提交
1446
  if (err) {
1447
    console.error(`Failed to set the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1448 1449
    return;
  }
1450
  console.info('Callback invoked to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1451
});
1452 1453
```

Z
zengyawen 已提交
1454
### setAudioParameter
Z
zengyawen 已提交
1455 1456

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

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

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

1462 1463
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1466 1467
**参数:**

Z
zengyawen 已提交
1468 1469 1470 1471
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
1472 1473 1474

**返回值:**

Z
zengyawen 已提交
1475 1476
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1477
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1478 1479 1480

**示例:**

J
jiao_yanlin 已提交
1481
```js
1482
audioManager.setAudioParameter('key_example', 'value_example').then(() => {
1483
  console.info('Promise returned to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1484
});
1485 1486
```

Z
zengyawen 已提交
1487
### getAudioParameter
Z
zengyawen 已提交
1488 1489

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

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

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

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

1497 1498
**参数:**

Z
zengyawen 已提交
1499 1500 1501 1502
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
1503 1504 1505

**示例:**

J
jiao_yanlin 已提交
1506
```js
1507
audioManager.getAudioParameter('key_example', (err, value) => {
J
jiao_yanlin 已提交
1508
  if (err) {
1509
    console.error(`Failed to obtain the value of the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1510 1511
    return;
  }
1512
  console.info(`Callback invoked to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1513
});
1514 1515
```

Z
zengyawen 已提交
1516
### getAudioParameter
Z
zengyawen 已提交
1517 1518

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

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

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

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

1526 1527
**参数:**

Z
zengyawen 已提交
1528 1529 1530
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
1531 1532 1533

**返回值:**

Z
zengyawen 已提交
1534 1535
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
Z
zengyawen 已提交
1536
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
1537 1538 1539

**示例:**

J
jiao_yanlin 已提交
1540
```js
1541
audioManager.getAudioParameter('key_example').then((value) => {
1542
  console.info(`Promise returned to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1543
});
1544 1545
```

Z
zengyawen 已提交
1546 1547 1548
### getDevices

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

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

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

1554 1555
**参数:**

Z
zengyawen 已提交
1556 1557 1558 1559
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
1560 1561

**示例:**
J
jiao_yanlin 已提交
1562
```js
A
AOL 已提交
1563
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
J
jiao_yanlin 已提交
1564
  if (err) {
1565
    console.error(`Failed to obtain the device list. ${err}`);
J
jiao_yanlin 已提交
1566 1567
    return;
  }
1568
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
1569
});
1570 1571
```

Z
zengyawen 已提交
1572 1573
### getDevices

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

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

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

1580 1581
**参数:**

Z
zengyawen 已提交
1582 1583 1584
| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
1585 1586 1587

**返回值:**

Z
zengyawen 已提交
1588 1589
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
Z
zengyawen 已提交
1590
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
1591 1592 1593

**示例:**

J
jiao_yanlin 已提交
1594
```js
A
AOL 已提交
1595
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
1596
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
1597
});
1598 1599
```

Z
zengyawen 已提交
1600
### setDeviceActive
Z
zengyawen 已提交
1601

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

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

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

1608 1609
**参数:**

H
update  
HelloCrease 已提交
1610 1611 1612 1613 1614
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
1615 1616 1617

**示例:**

J
jiao_yanlin 已提交
1618
```js
R
rahul 已提交
1619
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true, (err) => {
J
jiao_yanlin 已提交
1620
  if (err) {
1621
    console.error(`Failed to set the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1622 1623
    return;
  }
1624
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1625
});
1626 1627
```

Z
zengyawen 已提交
1628
### setDeviceActive
Z
zengyawen 已提交
1629

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

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

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

1636 1637
**参数:**

H
update  
HelloCrease 已提交
1638 1639
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1640
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
H
update  
HelloCrease 已提交
1641
| active     | boolean                               | 是   | 设备激活状态。     |
1642 1643 1644

**返回值:**

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

**示例:**

Z
zengyawen 已提交
1651

J
jiao_yanlin 已提交
1652
```js
R
rahul 已提交
1653
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
1654
  console.info('Promise returned to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1655
});
1656 1657
```

Z
zengyawen 已提交
1658
### isDeviceActive
Z
zengyawen 已提交
1659

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

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

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

1666 1667
**参数:**

H
update  
HelloCrease 已提交
1668 1669 1670 1671
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
1672 1673 1674

**示例:**

J
jiao_yanlin 已提交
1675
```js
R
rahul 已提交
1676
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER, (err, value) => {
J
jiao_yanlin 已提交
1677
  if (err) {
1678
    console.error(`Failed to obtain the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1679 1680
    return;
  }
1681
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
1682
});
1683 1684
```

Z
zengyawen 已提交
1685

Z
zengyawen 已提交
1686
### isDeviceActive
Z
zengyawen 已提交
1687

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

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

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

1694 1695
**参数:**

H
update  
HelloCrease 已提交
1696 1697
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1698
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
1699 1700 1701

**返回值:**

Z
zengyawen 已提交
1702 1703
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
Z
zengyawen 已提交
1704
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1705 1706 1707

**示例:**

J
jiao_yanlin 已提交
1708
```js
R
rahul 已提交
1709
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER).then((value) => {
1710
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
L
lwx1059628 已提交
1711
});
1712 1713
```

Z
zengyawen 已提交
1714
### setMicrophoneMute
Z
zengyawen 已提交
1715 1716

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

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

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

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

1724 1725
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1733
```js
1734
audioManager.setMicrophoneMute(true, (err) => {
J
jiao_yanlin 已提交
1735
  if (err) {
1736
    console.error(`Failed to mute the microphone. ${err}`);
J
jiao_yanlin 已提交
1737 1738
    return;
  }
1739
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
1740
});
1741 1742
```

Z
zengyawen 已提交
1743
### setMicrophoneMute
Z
zengyawen 已提交
1744 1745

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

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

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

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

1753 1754
**参数:**

Z
zengyawen 已提交
1755 1756 1757
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
1758 1759 1760

**返回值:**

Z
zengyawen 已提交
1761 1762
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1763
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1764 1765 1766

**示例:**

J
jiao_yanlin 已提交
1767
```js
A
AOL 已提交
1768
audioManager.setMicrophoneMute(true).then(() => {
1769
  console.info('Promise returned to indicate that the microphone is muted.');
L
lwx1059628 已提交
1770
});
1771 1772
```

Z
zengyawen 已提交
1773
### isMicrophoneMute
Z
zengyawen 已提交
1774 1775

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

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

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

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

1783 1784
**参数:**

Z
zengyawen 已提交
1785 1786 1787
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1788 1789 1790

**示例:**

J
jiao_yanlin 已提交
1791
```js
1792
audioManager.isMicrophoneMute((err, value) => {
J
jiao_yanlin 已提交
1793
  if (err) {
1794
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
J
jiao_yanlin 已提交
1795 1796
    return;
  }
1797
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1798
});
1799 1800
```

Z
zengyawen 已提交
1801
### isMicrophoneMute
1802

Z
zengyawen 已提交
1803
isMicrophoneMute(): Promise&lt;boolean&gt;
1804

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

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

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

1811 1812
**返回值:**

Z
zengyawen 已提交
1813 1814
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
Z
zengyawen 已提交
1815
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1816 1817 1818

**示例:**

Z
zengyawen 已提交
1819

J
jiao_yanlin 已提交
1820
```js
A
AOL 已提交
1821
audioManager.isMicrophoneMute().then((value) => {
1822
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1823
});
1824 1825
```

L
lwx1059628 已提交
1826
### on('volumeChange')<sup>8+</sup>
Z
zengyawen 已提交
1827 1828 1829 1830 1831

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

监听系统音量变化事件。

1832
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1833

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

Z
zengyawen 已提交
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1847
```js
Z
zengyawen 已提交
1848
audioManager.on('volumeChange', (volumeEvent) => {
1849 1850 1851
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
L
lwx1059628 已提交
1852
});
Z
zengyawen 已提交
1853 1854
```

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

A
AOL 已提交
1857
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
Z
zengyawen 已提交
1858 1859 1860

监听铃声模式变化事件。

1861
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1862

Z
zengyawen 已提交
1863 1864 1865 1866 1867 1868 1869 1870
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

L
lwx1059628 已提交
1872 1873
**示例:**

J
jiao_yanlin 已提交
1874
```js
L
lwx1059628 已提交
1875
audioManager.on('ringerModeChange', (ringerMode) => {
1876
  console.info(`Updated ringermode: ${ringerMode}`);
L
lwx1059628 已提交
1877 1878 1879
});
```

L
lwx1059628 已提交
1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
### on('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1897
```js
L
lwx1059628 已提交
1898
audioManager.on('deviceChange', (deviceChanged) => {
1899 1900 1901 1902
  console.info(`device change type : ${deviceChanged.type} `);
  console.info(`device descriptor size : ${deviceChanged.deviceDescriptors.length} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceRole} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceType} `);
L
lwx1059628 已提交
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
});
```

### off('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1923
```js
L
lwx1059628 已提交
1924
audioManager.off('deviceChange', (deviceChanged) => {
1925
  console.info('Should be no callback.');
L
lwx1059628 已提交
1926 1927 1928
});
```

1929 1930 1931 1932 1933 1934 1935 1936 1937 1938
### on('interrupt')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1947
```js
1948
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1949 1950 1951
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1952
};
R
rahul 已提交
1953
audioManager.on('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1954
  if (InterruptAction.actionType === 0) {
1955 1956
    console.info('An event to gain the audio focus starts.');
    console.info(`Focus gain event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1957 1958
  }
  if (InterruptAction.actionType === 1) {
1959 1960
    console.info('An audio interruption event starts.');
    console.info(`Audio interruption event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1961
  }
1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974
});
```

### off('interrupt')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1983
```js
1984
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1985 1986 1987
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1988
};
R
rahul 已提交
1989
audioManager.off('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1990
  if (InterruptAction.actionType === 0) {
1991 1992
      console.info('An event to release the audio focus starts.');
      console.info(`Focus release event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1993
  }
1994 1995 1996
});
```

L
lwx1059628 已提交
1997 1998 1999 2000 2001 2002
### setAudioScene<sup>8+</sup>

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

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

2003
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
2016
```js
J
jiao_yanlin 已提交
2017
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
2018
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
J
jiao_yanlin 已提交
2019
  if (err) {
2020
    console.error(`Failed to set the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
2021 2022
    return;
  }
2023
  console.info('Callback invoked to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
2024 2025 2026 2027 2028 2029 2030 2031 2032
});
```

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

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

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

2033
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
2034

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

Z
zengyawen 已提交
2037
**参数:**
L
lwx1059628 已提交
2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
2051
```js
J
jiao_yanlin 已提交
2052
var audioManager = audio.getAudioManager();
R
rahul 已提交
2053
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL).then(() => {
2054
  console.info('Promise returned to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
2055
}).catch ((err) => {
2056
  console.error(`Failed to set the audio scene mode ${err}`);
L
lwx1059628 已提交
2057 2058 2059 2060 2061 2062 2063 2064 2065
});
```

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

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

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

Z
zengyawen 已提交
2066
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
2067 2068 2069 2070 2071 2072 2073 2074 2075

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
2076
```js
J
jiao_yanlin 已提交
2077
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
2078
audioManager.getAudioScene((err, value) => {
J
jiao_yanlin 已提交
2079
  if (err) {
2080
    console.error(`Failed to obtain the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
2081 2082
    return;
  }
2083
  console.info(`Callback invoked to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
});
```


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

getAudioScene\(\): Promise<AudioScene\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
2104
```js
J
jiao_yanlin 已提交
2105
var audioManager = audio.getAudioManager();
L
lwx1059628 已提交
2106
audioManager.getAudioScene().then((value) => {
2107
  console.info(`Promise returned to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
2108
}).catch ((err) => {
2109
  console.error(`Failed to obtain the audio scene mode ${err}`);
L
lwx1059628 已提交
2110 2111 2112
});
```

W
wangtao 已提交
2113 2114 2115 2116 2117 2118
### getVolumeGroups<sup>9+</sup>

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

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

2119
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131

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

**参数:**

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

**示例:**
```js
J
jiao_yanlin 已提交
2132
var audioManager = audio.getAudioManager();
W
wangtao 已提交
2133 2134
audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID, (err, value) => {
  if (err) {
2135
    console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
    return;
  }
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
});
```

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

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

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

2148
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2149 2150 2151 2152 2153 2154 2155 2156 2157

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

**参数:**

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

2158 2159 2160 2161 2162 2163
**返回值:**

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

W
wangtao 已提交
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
**示例:**

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

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

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

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

2179
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2180 2181 2182 2183 2184 2185 2186

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
J
jiao_yanlin 已提交
2187
| groupId    | number                                    | 是   | 音量组id。     |
2188
| callback   | AsyncCallback&lt; [AudioGroupManager](#audiogroupmanager9) &gt; | 是   | 回调,返回一个音量组实例。 |
W
wangtao 已提交
2189 2190 2191 2192

**示例:**

```js
J
jiao_yanlin 已提交
2193
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2194
var audioGroupManager;
W
wangtao 已提交
2195 2196 2197 2198 2199 2200
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
2201
        console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}
```

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

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

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

2217
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2218 2219 2220 2221 2222

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

**参数:**

2223
| 参数名     | 类型                                      | 必填 | 说明              |
2224
| ---------- | ---------------------------------------- | ---- | ---------------- |
J
jiao_yanlin 已提交
2225
| groupId    | number                                   | 是   | 音量组id。     |
W
wangtao 已提交
2226

2227 2228 2229 2230 2231 2232
**返回值:**

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

W
wangtao 已提交
2233 2234 2235
**示例:**

```js
J
jiao_yanlin 已提交
2236
var audioManager = audio.getAudioManager();
W
wangtao 已提交
2237 2238 2239 2240
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
J
jiao_yanlin 已提交
2241
    let audioGroupManager = await audioManager.getGroupManager(groupid)
W
wangtao 已提交
2242 2243 2244 2245
    console.info('Callback invoked to indicate that the volume group infos list is obtained.');
  }
}
```
J
jiao_yanlin 已提交
2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263

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

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

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

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

**参数:**

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

**示例:**

```js
J
jiao_yanlin 已提交
2264
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2265
let audioStreamManager;
J
jiao_yanlin 已提交
2266
audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
2267 2268 2269 2270
  if (err) {
    console.error(`getStreamManager : Error: ${err}`);
  } else {
    console.info('getStreamManager : Success : SUCCESS');
J
jiao_yanlin 已提交
2271
    audioStreamManager = data;
J
jiao_yanlin 已提交
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
  }
});
```

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

getStreamManager(): Promise<AudioStreamManager\>

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

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

**返回值:**

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

**示例:**

```js
J
jiao_yanlin 已提交
2293
var audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
2294
var audioStreamManager;
J
jiao_yanlin 已提交
2295
audioManager.getStreamManager().then((data) => {
J
jiao_yanlin 已提交
2296 2297 2298 2299 2300 2301 2302 2303
  audioStreamManager = data;
  console.info('getStreamManager: Success!');
}).catch((err) => {
  console.error(`getStreamManager: ERROR : ${err}`);
});

```

2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
### requestIndependentInterrupt<sup>9+</sup>

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

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

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

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

**参数:**

| 参数名    | 类型                          | 必填 | 说明               |
| -------- | ----------------------------- | ---- | -----------------  |
2318
| focusType | [FocusType](#focustype)      | 是   | 焦点类型。     |
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334
| callback  | AsyncCallback&lt;boolean&gt; | 是   | 回调,返回焦点申请成功/失败状态。 |

**示例:**

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

J
jiao_yanlin 已提交
2335
requestIndependentInterrupt(focusType: FocusType): Promise<boolean\>
2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346

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

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- |
2347
| focusType | [FocusType](#focustype)    | 是   | 焦点类型。  |
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379

**返回值:**

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

**示例:**

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

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

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

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

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

**参数:**

| 参数名    | 类型                          | 必填 | 说明               |
| -------- | ----------------------------- | ---- | -----------------  |
2380
| focusType | [FocusType](#focustype)      | 是   | 焦点类型。     |
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
| callback  | AsyncCallback&lt;boolean&gt; | 是   | 回调,返回废除焦点成功/失败状态。 |

**示例:**

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

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

2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
废除独立焦点,使用promise方式异步返回结果。

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- |
2409
| focusType | [FocusType](#focustype)    | 是   | 焦点类型。  |
2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427

**返回值:**

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

**示例:**

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

2431
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2432 2433 2434 2435 2436 2437 2438 2439 2440

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

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

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

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

2441 2442 2443
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

J
jiao_yanlin 已提交
2445 2446
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

```js
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
2462
    console.error(`Failed to set the volume. ${err}`);
W
wangtao 已提交
2463 2464
    return;
  }
2465
  console.info('Callback invoked to indicate a successful volume setting.');
W
wangtao 已提交
2466 2467 2468 2469 2470 2471 2472 2473 2474
});
```

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

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

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

2475 2476 2477
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

J
jiao_yanlin 已提交
2479 2480
**系统接口:** 该接口为系统接口

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
2500
  console.info('Promise returned to indicate a successful volume setting.');
W
wangtao 已提交
2501 2502 2503 2504 2505 2506 2507 2508 2509
});
```

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

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

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

J
jiao_yanlin 已提交
2510 2511
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

```js
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2526
    console.error(`Failed to obtain the volume. ${err}`);
W
wangtao 已提交
2527 2528
    return;
  }
2529
  console.info('Callback invoked to indicate that the volume is obtained.');
W
wangtao 已提交
2530 2531 2532 2533 2534 2535 2536 2537 2538
});
```

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

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

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

J
jiao_yanlin 已提交
2539 2540
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2559
  console.info(`Promise returned to indicate that the volume is obtained ${value}.`);
W
wangtao 已提交
2560 2561 2562 2563 2564 2565 2566 2567 2568
});
```

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

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

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

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

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

**参数:**

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

**示例:**

```js
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2585
    console.error(`Failed to obtain the minimum volume. ${err}`);
W
wangtao 已提交
2586 2587
    return;
  }
2588
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
W
wangtao 已提交
2589 2590 2591 2592 2593 2594 2595 2596 2597
});
```

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

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

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

J
jiao_yanlin 已提交
2598 2599
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2618
  console.info(`Promised returned to indicate that the minimum volume is obtained ${value}.`);
W
wangtao 已提交
2619 2620 2621 2622 2623 2624 2625 2626 2627
});
```

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

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

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

J
jiao_yanlin 已提交
2628 2629
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

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

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

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

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

J
jiao_yanlin 已提交
2657 2658
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
2677
  console.info('Promised returned to indicate that the maximum volume is obtained.');
W
wangtao 已提交
2678 2679 2680 2681 2682 2683 2684 2685 2686
});
```

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

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

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

2687 2688 2689
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

J
jiao_yanlin 已提交
2691 2692
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

```js
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
  if (err) {
2708
    console.error(`Failed to mute the stream. ${err}`);
W
wangtao 已提交
2709 2710
    return;
  }
2711
  console.info('Callback invoked to indicate that the stream is muted.');
W
wangtao 已提交
2712 2713 2714 2715 2716 2717 2718 2719 2720
});
```

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

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

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

2721 2722 2723
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

J
jiao_yanlin 已提交
2725 2726
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
2746
  console.info('Promise returned to indicate that the stream is muted.');
W
wangtao 已提交
2747 2748 2749 2750 2751 2752 2753 2754 2755
});
```

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

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

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

J
jiao_yanlin 已提交
2756 2757
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

```js
audioGroupManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2772
    console.error(`Failed to obtain the mute status. ${err}`);
W
wangtao 已提交
2773 2774
    return;
  }
2775
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained ${value}.`);
W
wangtao 已提交
2776 2777 2778 2779 2780 2781 2782 2783 2784
});
```

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

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

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

J
jiao_yanlin 已提交
2785 2786
**系统接口:** 该接口为系统接口

W
wangtao 已提交
2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
2805
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
W
wangtao 已提交
2806 2807 2808
});
```

2809 2810
## AudioStreamManager<sup>9+</sup>

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

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

2815
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void
2816

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

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

2821
**参数:**
2822 2823 2824

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

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

```js
2830
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
2831
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2832
  if (err) {
2833
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
2834 2835 2836
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2837
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2838 2839 2840 2841 2842 2843
        console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
        console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
        console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
        console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
        console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
J
jiao_yanlin 已提交
2844
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
2845 2846 2847 2848 2849 2850 2851 2852
          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}`);
2853
        }
J
jiao_yanlin 已提交
2854
      }
2855
    }
J
jiao_yanlin 已提交
2856
  }
2857 2858 2859 2860 2861
});
```

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

2862
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
2863

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

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

2868
**返回值:**
2869 2870 2871

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

2874
**示例:**
J
jiao_yanlin 已提交
2875 2876

```js
J
jiao_yanlin 已提交
2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898
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}`);
        }
J
jiao_yanlin 已提交
2899
      }
2900
    }
J
jiao_yanlin 已提交
2901 2902 2903 2904
  }).catch((err) => {
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
  });
}
2905 2906 2907 2908
```

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

2909
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
2910

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

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

2915
**参数:**
2916 2917 2918

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

2921
**示例:**
J
jiao_yanlin 已提交
2922 2923

```js
2924
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
2925
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2926
  if (err) {
2927
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
2928
  } else {
J
jiao_yanlin 已提交
2929 2930
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2931 2932 2933 2934 2935
        console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
        console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
        console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
        console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
J
jiao_yanlin 已提交
2936
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2937 2938 2939 2940 2941 2942 2943 2944
          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}`);
2945
        }
J
jiao_yanlin 已提交
2946
      }
2947
    }
J
jiao_yanlin 已提交
2948
  }
2949 2950 2951 2952 2953
});
```

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

2954
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
2955

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

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

2960
**返回值:**
2961

2962 2963 2964
| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
2965

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

```js
J
jiao_yanlin 已提交
2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988
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}`);
        }
J
jiao_yanlin 已提交
2989
      }
2990
    }
J
jiao_yanlin 已提交
2991 2992 2993 2994
  }).catch((err) => {
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
  });
}
2995 2996 2997 2998
```

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

2999
on(type: "audioRendererChange", callback: Callback&lt;AudioRendererChangeInfoArray&gt;): void
3000 3001 3002

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

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

3005
**参数:**
3006

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

3012
**示例:**
J
jiao_yanlin 已提交
3013 3014

```js
3015
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3016
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
3017
    let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033
    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}`);
3034
    }
J
jiao_yanlin 已提交
3035
  }
3036 3037 3038 3039 3040 3041 3042
});
```

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

off(type: "audioRendererChange");

3043
取消监听音频渲染器更改事件。
3044

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

3047
**参数:**
3048 3049 3050

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

3053
**示例:**
J
jiao_yanlin 已提交
3054 3055

```js
3056
audioStreamManager.off('audioRendererChange');
3057
console.info('######### RendererChange Off is called #########');
3058 3059 3060 3061
```

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

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

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

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

3068
**参数:**
3069 3070

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

3075
**示例:**
J
jiao_yanlin 已提交
3076 3077

```js
3078
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3079
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3080
    console.info(`## CapChange on is called for element ${i} ##`);
3081 3082 3083 3084 3085 3086
    console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3087
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3088 3089 3090 3091 3092 3093 3094 3095
      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}`);
3096
    }
J
jiao_yanlin 已提交
3097
  }
3098 3099 3100 3101 3102 3103 3104
});
```

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

off(type: "audioCapturerChange");

3105
取消监听音频采集器更改事件。
3106

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

3109
**参数:**
3110

3111 3112 3113
| 名称      | 类型     | 必填 | 说明                                                          |
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |
3114

3115
**示例:**
J
jiao_yanlin 已提交
3116 3117

```js
3118
audioStreamManager.off('audioCapturerChange');
3119
console.info('######### CapturerChange Off is called #########');
3120 3121

```
3122 3123 3124 3125
## AudioRoutingManager<sup>9+</sup>

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

3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
### getDevices<sup>9+</sup>

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

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

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

**参数:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3144
var audioManager = audio.getAudioManager();
3145 3146
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3147
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
J
jiao_yanlin 已提交
3148
  } else {
3149 3150
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
      if (err) {
3151
        console.error(`Failed to obtain the device list. ${err}`);
3152 3153
        return;
      }
3154
      console.info('Callback invoked to indicate that the device list is obtained.');
3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182
    });
  }
})
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3183
var audioManager = audio.getAudioManager();
3184 3185
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3186
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3187 3188 3189
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
3190
      console.info('Promise returned to indicate that the device list is obtained.');
3191 3192 3193 3194 3195 3196 3197
    });
  }
});
```

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

3198
on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback<DeviceChangeAction\>): void
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214

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

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

**参数:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3215
var audioManager = audio.getAudioManager();
3216 3217
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3218
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248
  }
  else {
    AudioRoutingManager.on('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
      console.info('device change type : ' + deviceChanged.type);
      console.info('device descriptor size : ' + deviceChanged.deviceDescriptors.length);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceRole);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceType);
    });
  }
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3249
var audioManager = audio.getAudioManager();
3250 3251
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3252
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
J
jiao_yanlin 已提交
3253 3254
  } else {
    AudioRoutingManager.off('deviceChange', (deviceChanged) => {
3255
      console.info('Should be no callback.');
3256 3257 3258 3259 3260
    });
  }
});
```

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

3263
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3264

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

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

3269 3270 3271 3272 3273 3274
**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

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

**示例:**
```js
J
jiao_yanlin 已提交
3280
var audioManager = audio.getAudioManager();
3281 3282 3283 3284 3285 3286
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3287 3288 3289 3290 3291 3292 3293 3294 3295 3296

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
      if (err) {
        console.error(`Result ERROR: ${err}`);
      } else {
        console.info('Select output devices result callback: SUCCESS'); }
    });
3297
  });
J
jiao_yanlin 已提交
3298
}
3299 3300 3301 3302
```

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

3303 3304
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

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

3307
选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
3308 3309 3310 3311 3312 3313 3314

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3315
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3316 3317 3318 3319 3320 3321 3322 3323 3324 3325

**返回值:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3326
var audioManager = audio.getAudioManager();
3327 3328 3329 3330 3331 3332
let outputAudioDeviceDescriptor =[{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3333 3334 3335 3336 3337 3338 3339 3340 3341

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
      console.info('Select output devices result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    });
3342
  });
J
jiao_yanlin 已提交
3343
}
3344 3345 3346 3347
```

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

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

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

3352
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
3353 3354 3355 3356 3357 3358 3359

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3360
| filter                      | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
3361
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3362 3363 3364 3365
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
J
jiao_yanlin 已提交
3366
var audioManager = audio.getAudioManager();
3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3380 3381 3382 3383 3384 3385 3386 3387 3388 3389

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor, (err) => {
      if (err) {
        console.error(`Result ERROR: ${err}`);
      } else {
        console.info('Select output devices by filter result callback: SUCCESS'); }
    });
3390
  });
J
jiao_yanlin 已提交
3391
}
3392 3393 3394 3395
```

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

3396
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
3397

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

3400
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
3401 3402 3403 3404 3405

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

**参数:**

3406 3407 3408 3409
| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| filter                | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices    | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419

**返回值:**

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

**示例:**

```js
J
jiao_yanlin 已提交
3420
var audioManager = audio.getAudioManager();
3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
J
jiao_yanlin 已提交
3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444

async function getRoutingManager(){
  await audioManager.getRoutingManager().then((value) => {
    audioRoutingManager = value;
    audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor).then(() => {
      console.info('Select output devices by filter result promise: SUCCESS');
    }).catch((err) => {
      console.error(`Result ERROR: ${err}`);
    })
  });
}
3445 3446
```

3447 3448 3449 3450 3451 3452 3453 3454 3455
## AudioRendererChangeInfo<sup>9+</sup>

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

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
J
jiao_yanlin 已提交
3456
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
3457
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
J
jiao_yanlin 已提交
3458
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3459

3460 3461 3462 3463
## AudioRendererChangeInfoArray<sup>9+</sup>

AudioRenderChangeInfo数组,只读。

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

3466 3467
**示例:**

J
jiao_yanlin 已提交
3468
```js
3469 3470 3471
import audio from '@ohos.multimedia.audio';

var audioStreamManager;
3472
var resultFlag = false;
J
jiao_yanlin 已提交
3473
var audioManager = audio.getAudioManager();
3474 3475

audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3476
  if (err) {
3477
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
J
jiao_yanlin 已提交
3478
  } else {
J
jiao_yanlin 已提交
3479
    audioStreamManager = data;
3480
    console.info('Get AudioStream Manager : Success');
J
jiao_yanlin 已提交
3481 3482
  }
});
3483

J
jiao_yanlin 已提交
3484
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3485
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
3486 3487 3488 3489 3490 3491 3492
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfoArray[i].clientUid}`);
    console.info(`Content for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.content}`);
    console.info(`Stream for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.rendererFlags}`);
    console.info(`State for ${i} is: ${AudioRendererChangeInfoArray[i].rendererState}`);
J
jiao_yanlin 已提交
3493
  	var devDescriptor = AudioRendererChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3494
  	for (let j = 0; j < AudioRendererChangeInfoArray[i].deviceDescriptors.length; j++) {
3495 3496 3497 3498 3499 3500 3501 3502
  	  console.info(`Id: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].id}`);
  	  console.info(`Type: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
  	  console.info(`Role: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
  	  console.info(`Name: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].name}`);
  	  console.info(`Addr: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].address}`);
  	  console.info(`SR: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
  	  console.info(`C ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
  	  console.info(`CM: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
3503 3504 3505
  	}
    if (AudioRendererChangeInfoArray[i].rendererState == 1 && devDescriptor != null) {
      resultFlag = true;
3506
      console.info(`ResultFlag for ${i} is: ${resultFlag}`);
3507
    }
J
jiao_yanlin 已提交
3508
  }
3509 3510 3511 3512 3513
});
```

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

3514
描述音频采集器更改信息。
3515 3516 3517 3518 3519 3520

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
3521 3522
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)   | 是   | 否   | 音频采集器信息。               |
J
jiao_yanlin 已提交
3523
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3524

3525 3526 3527 3528 3529 3530
## AudioCapturerChangeInfoArray<sup>9+</sup>

AudioCapturerChangeInfo数组,只读。

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

3531 3532
**示例:**

J
jiao_yanlin 已提交
3533
```js
3534 3535 3536
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
J
jiao_yanlin 已提交
3537 3538 3539 3540 3541 3542 3543 3544 3545 3546
let audioStreamManager;
audioManager.getStreamManager((err, data) => {
  if (err) {
    console.error(`getStreamManager : Error: ${err}`);
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

3547
var resultFlag = false;
3548
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3549
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3550 3551 3552 3553 3554 3555
    console.info(`## CapChange on is called for element ${i} ##`);
    console.info(`StrId for  ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`CUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Src for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);
J
jiao_yanlin 已提交
3556
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3557
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3558 3559 3560 3561 3562 3563 3564 3565
      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}`);
3566
    }
J
jiao_yanlin 已提交
3567 3568
    if (AudioCapturerChangeInfoArray[i].capturerState == 1 && devDescriptor != null) {
      resultFlag = true;
3569 3570
      console.info(`ResultFlag for element ${i} is: ${resultFlag}`);
    }
J
jiao_yanlin 已提交
3571
  }
3572 3573 3574
});
```

Z
zengyawen 已提交
3575
## AudioDeviceDescriptor
3576 3577 3578

描述音频设备。

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

3581 3582 3583 3584 3585 3586 3587 3588 3589 3590
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| deviceRole                    | [DeviceRole](#devicerole)  | 是   | 否   | 设备角色。 |
| deviceType                    | [DeviceType](#devicetype)  | 是   | 否   | 设备类型。 |
| id<sup>9+</sup>               | number                     | 是   | 否   | 设备id。  |
| name<sup>9+</sup>             | string                     | 是   | 否   | 设备名称。 |
| address<sup>9+</sup>          | string                     | 是   | 否   | 设备地址。 |
| sampleRates<sup>9+</sup>      | Array&lt;number&gt;        | 是   | 否   | 支持的采样率。 |
| channelCounts<sup>9+</sup>    | Array&lt;number&gt;        | 是   | 否   | 支持的通道数。 |
| channelMasks<sup>9+</sup>     | Array&lt;number&gt;        | 是   | 否   | 支持的通道掩码。 |
3591 3592 3593
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
Z
zengyawen 已提交
3594 3595

## AudioDeviceDescriptors
M
mamingshuai 已提交
3596

H
update  
HelloCrease 已提交
3597
设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。
Z
zengyawen 已提交
3598 3599 3600

**示例:**

J
jiao_yanlin 已提交
3601
```js
L
lwx1059628 已提交
3602 3603 3604
import audio from '@ohos.multimedia.audio';

function displayDeviceProp(value) {
J
jiao_yanlin 已提交
3605 3606
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
Z
zengyawen 已提交
3607 3608
}

L
lwx1059628 已提交
3609 3610 3611 3612
var deviceRoleValue = null;
var deviceTypeValue = null;
const promise = audio.getAudioManager().getDevices(1);
promise.then(function (value) {
3613
  console.info('AudioFrameworkTest: Promise: getDevices OUTPUT_DEVICES_FLAG');
J
jiao_yanlin 已提交
3614 3615
  value.forEach(displayDeviceProp);
  if (deviceTypeValue != null && deviceRoleValue != null){
3616
    console.info('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  PASS');
J
jiao_yanlin 已提交
3617
  } else {
3618
    console.error('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  FAIL');
J
jiao_yanlin 已提交
3619
  }
L
lwx1059628 已提交
3620
});
Z
zengyawen 已提交
3621 3622
```

3623 3624 3625 3626
## AudioRendererFilter<sup>9+</sup>

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

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

3629 3630
| 名称          | 类型                                     | 必填  | 说明          |
| -------------| ---------------------------------------- | ---- | -------------- |
J
jiao_yanlin 已提交
3631 3632 3633
| uid          | number                                   |  是  | 表示应用ID。<br> **系统能力:** SystemCapability.Multimedia.Audio.Core|
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> **系统能力:** SystemCapability.Multimedia.Audio.Renderer|
3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646

**示例:**

```js
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
```

Z
zengyawen 已提交
3647 3648
## AudioRenderer<sup>8+</sup>

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

3651
### 属性
Z
zengyawen 已提交
3652

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

3655
| 名称  | 类型                     | 可读 | 可写 | 说明               |
Z
zengyawen 已提交
3656
| ----- | -------------------------- | ---- | ---- | ------------------ |
3657
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
3658 3659 3660

**示例:**

J
jiao_yanlin 已提交
3661
```js
Z
zengyawen 已提交
3662 3663 3664 3665 3666 3667 3668
var state = audioRenderer.state;
```

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

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

L
lwx1059628 已提交
3669
获取当前被创建的音频渲染器的信息,使用callback方式异步返回结果。
Z
zengyawen 已提交
3670

3671
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3672 3673 3674

**参数:**

L
lwx1059628 已提交
3675 3676 3677
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
3678 3679 3680

**示例:**

J
jiao_yanlin 已提交
3681
```js
L
lwx1059628 已提交
3682
audioRenderer.getRendererInfo((err, rendererInfo) => {
3683 3684 3685 3686
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`);
L
lwx1059628 已提交
3687
});
Z
zengyawen 已提交
3688 3689 3690 3691 3692 3693
```

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

getRendererInfo(): Promise<AudioRendererInfo\>

L
lwx1059628 已提交
3694
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
3695

3696
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3697 3698 3699 3700 3701

**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
L
lwx1059628 已提交
3702
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
Z
zengyawen 已提交
3703 3704 3705

**示例:**

J
jiao_yanlin 已提交
3706
```js
L
lwx1059628 已提交
3707
audioRenderer.getRendererInfo().then((rendererInfo) => {
3708 3709 3710 3711
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`)
L
lwx1059628 已提交
3712
}).catch((err) => {
3713
  console.error(`AudioFrameworkRenderLog: RendererInfo :ERROR: ${err}`);
L
lwx1059628 已提交
3714
});
Z
zengyawen 已提交
3715 3716 3717 3718 3719 3720 3721 3722
```

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

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

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

3723
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3724 3725 3726 3727 3728 3729 3730 3731 3732

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3733
```js
L
lwx1059628 已提交
3734
audioRenderer.getStreamInfo((err, streamInfo) => {
3735 3736 3737 3738 3739
  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 已提交
3740
});
Z
zengyawen 已提交
3741 3742 3743 3744 3745 3746 3747 3748
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

3749
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3750 3751 3752 3753 3754 3755 3756 3757 3758

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3759
```js
L
lwx1059628 已提交
3760
audioRenderer.getStreamInfo().then((streamInfo) => {
3761 3762 3763 3764 3765
  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 已提交
3766
}).catch((err) => {
3767
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3768
});
Z
zengyawen 已提交
3769 3770 3771 3772 3773 3774
```

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

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

L
lwx1059628 已提交
3775
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3776

3777
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3778 3779 3780 3781 3782 3783 3784 3785 3786

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3787
```js
L
lwx1059628 已提交
3788
audioRenderer.start((err) => {
J
jiao_yanlin 已提交
3789
  if (err) {
3790
    console.error('Renderer start failed.');
J
jiao_yanlin 已提交
3791
  } else {
3792
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3793
  }
L
lwx1059628 已提交
3794
});
Z
zengyawen 已提交
3795 3796 3797 3798 3799 3800
```

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

start(): Promise<void\>

L
lwx1059628 已提交
3801
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3802

3803
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3804 3805 3806 3807 3808 3809 3810 3811 3812

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3813
```js
L
lwx1059628 已提交
3814
audioRenderer.start().then(() => {
3815
  console.info('Renderer started');
L
lwx1059628 已提交
3816
}).catch((err) => {
3817
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3818
});
Z
zengyawen 已提交
3819 3820 3821 3822 3823 3824
```

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

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

L
lwx1059628 已提交
3825
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3826

3827
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3828 3829 3830 3831 3832 3833 3834 3835 3836

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3837
```js
L
lwx1059628 已提交
3838
audioRenderer.pause((err) => {
J
jiao_yanlin 已提交
3839
  if (err) {
3840
    console.error('Renderer pause failed');
J
jiao_yanlin 已提交
3841
  } else {
3842
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
3843
  }
L
lwx1059628 已提交
3844
});
Z
zengyawen 已提交
3845 3846 3847 3848 3849 3850
```

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

pause(): Promise\<void>

L
lwx1059628 已提交
3851
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3852

3853
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3854 3855 3856 3857 3858 3859 3860 3861 3862

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3863
```js
L
lwx1059628 已提交
3864
audioRenderer.pause().then(() => {
3865
  console.info('Renderer paused');
L
lwx1059628 已提交
3866
}).catch((err) => {
3867
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3868
});
Z
zengyawen 已提交
3869 3870 3871 3872 3873 3874
```

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

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

L
lwx1059628 已提交
3875
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
3876

3877
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3878 3879 3880 3881 3882 3883 3884 3885 3886

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3887
```js
L
lwx1059628 已提交
3888
audioRenderer.drain((err) => {
J
jiao_yanlin 已提交
3889
  if (err) {
3890
    console.error('Renderer drain failed');
J
jiao_yanlin 已提交
3891
  } else {
3892
    console.info('Renderer drained.');
J
jiao_yanlin 已提交
3893
  }
L
lwx1059628 已提交
3894
});
Z
zengyawen 已提交
3895 3896 3897 3898 3899 3900
```

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

drain(): Promise\<void>

L
lwx1059628 已提交
3901
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3902

3903
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3904 3905 3906 3907 3908 3909 3910 3911 3912

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3913
```js
L
lwx1059628 已提交
3914
audioRenderer.drain().then(() => {
3915
  console.info('Renderer drained successfully');
L
lwx1059628 已提交
3916
}).catch((err) => {
3917
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3918
});
Z
zengyawen 已提交
3919 3920 3921 3922 3923 3924
```

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

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

L
lwx1059628 已提交
3925
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3926

3927
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3928 3929 3930 3931 3932 3933 3934 3935 3936

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3937
```js
L
lwx1059628 已提交
3938
audioRenderer.stop((err) => {
J
jiao_yanlin 已提交
3939
  if (err) {
3940
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
3941
  } else {
3942
    console.info('Renderer stopped.');
J
jiao_yanlin 已提交
3943
  }
L
lwx1059628 已提交
3944
});
Z
zengyawen 已提交
3945 3946 3947 3948 3949 3950
```

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

stop(): Promise\<void>

L
lwx1059628 已提交
3951
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3952

3953
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3954 3955 3956 3957 3958 3959 3960 3961 3962

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3963
```js
L
lwx1059628 已提交
3964
audioRenderer.stop().then(() => {
3965
  console.info('Renderer stopped successfully');
L
lwx1059628 已提交
3966
}).catch((err) => {
3967
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3968
});
Z
zengyawen 已提交
3969 3970 3971 3972 3973 3974
```

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

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

L
lwx1059628 已提交
3975
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3976

3977
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3978 3979 3980 3981 3982 3983 3984 3985 3986

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3987
```js
L
lwx1059628 已提交
3988
audioRenderer.release((err) => {
J
jiao_yanlin 已提交
3989
  if (err) {
3990
    console.error('Renderer release failed');
J
jiao_yanlin 已提交
3991
  } else {
3992
    console.info('Renderer released.');
J
jiao_yanlin 已提交
3993
  }
L
lwx1059628 已提交
3994
});
Z
zengyawen 已提交
3995 3996 3997 3998 3999 4000 4001 4002
```

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

release(): Promise\<void>

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

4003
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4004 4005 4006 4007 4008 4009 4010 4011 4012

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4013
```js
L
lwx1059628 已提交
4014
audioRenderer.release().then(() => {
4015
  console.info('Renderer released successfully');
L
lwx1059628 已提交
4016
}).catch((err) => {
4017
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4018
});
Z
zengyawen 已提交
4019 4020 4021 4022 4023 4024 4025 4026
```

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

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

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

4027
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4028 4029 4030 4031 4032 4033 4034 4035 4036 4037

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4038
```js
R
rahul 已提交
4039 4040
var bufferSize;
audioRenderer.getBufferSize().then((data)=> {
4041
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4042 4043
  bufferSize = data;
  }).catch((err) => {
4044
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4045
  });
4046
console.info(`Buffer size: ${bufferSize}`);
R
rahul 已提交
4047
var context = featureAbility.getContext();
J
jiao_yanlin 已提交
4048 4049 4050 4051
var path;
async function getCacheDir(){
  path = await context.getCacheDir();
}
4052
var filePath = path + '/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
4053 4054 4055
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
4056
audioRenderer.write(buf, (err, writtenbytes) => {
J
jiao_yanlin 已提交
4057
  if (writtenbytes < 0) {
4058
    console.error('write failed.');
J
jiao_yanlin 已提交
4059
  } else {
4060
    console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
4061
  }
L
lwx1059628 已提交
4062
});
Z
zengyawen 已提交
4063 4064 4065 4066 4067 4068 4069 4070
```

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

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

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

4071
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4072 4073 4074 4075 4076 4077 4078 4079 4080

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4081
```js
R
rahul 已提交
4082 4083
var bufferSize;
audioRenderer.getBufferSize().then((data) => {
4084
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4085 4086
  bufferSize = data;
  }).catch((err) => {
4087
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4088
  });
4089
console.info(`BufferSize: ${bufferSize}`);
R
rahul 已提交
4090
var context = featureAbility.getContext();
J
jiao_yanlin 已提交
4091
var path;
J
jiao_yanlin 已提交
4092 4093 4094
async function getCacheDir(){
  path = await context.getCacheDir();
}
J
jiao_yanlin 已提交
4095
var filePath = path + '/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
4096 4097 4098
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
4099
audioRenderer.write(buf).then((writtenbytes) => {
J
jiao_yanlin 已提交
4100
  if (writtenbytes < 0) {
4101
      console.error('write failed.');
J
jiao_yanlin 已提交
4102
  } else {
4103
      console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
4104
  }
L
lwx1059628 已提交
4105
}).catch((err) => {
4106
    console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4107
});
Z
zengyawen 已提交
4108 4109 4110 4111 4112 4113
```

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

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

L
lwx1059628 已提交
4114
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
4115

4116
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4117 4118 4119 4120 4121 4122 4123 4124 4125

**参数:**

| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |

**示例:**

J
jiao_yanlin 已提交
4126
```js
L
lwx1059628 已提交
4127
audioRenderer.getAudioTime((err, timestamp) => {
4128
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4129
});
Z
zengyawen 已提交
4130 4131 4132 4133 4134 4135
```

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

getAudioTime(): Promise\<number>

L
lwx1059628 已提交
4136
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4137

4138
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4139 4140 4141 4142 4143 4144 4145 4146 4147

**返回值:**

| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |

**示例:**

J
jiao_yanlin 已提交
4148
```js
L
lwx1059628 已提交
4149
audioRenderer.getAudioTime().then((timestamp) => {
4150
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4151
}).catch((err) => {
4152
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4153
});
Z
zengyawen 已提交
4154 4155 4156 4157 4158 4159
```

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

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

L
lwx1059628 已提交
4160
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
Z
zengyawen 已提交
4161

4162
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4163 4164 4165 4166 4167 4168 4169 4170 4171

**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
4172
```js
R
rahul 已提交
4173
var bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
J
jiao_yanlin 已提交
4174
  if (err) {
4175
    console.error('getBufferSize error');
J
jiao_yanlin 已提交
4176
  }
L
lwx1059628 已提交
4177
});
Z
zengyawen 已提交
4178 4179 4180 4181 4182 4183
```

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

getBufferSize(): Promise\<number>

L
lwx1059628 已提交
4184
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4185

4186
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4187 4188 4189 4190 4191 4192 4193 4194 4195

**返回值:**

| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
4196
```js
R
rahul 已提交
4197
var bufferSize;
R
rahul 已提交
4198
audioRenderer.getBufferSize().then((data) => {
4199
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4200
  bufferSize = data;
L
lwx1059628 已提交
4201
}).catch((err) => {
4202
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
L
lwx1059628 已提交
4203
});
Z
zengyawen 已提交
4204 4205 4206 4207 4208 4209
```

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

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

L
lwx1059628 已提交
4210
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4211

4212
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4213 4214 4215 4216 4217

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
L
lwx1059628 已提交
4218
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
Z
zengyawen 已提交
4219 4220 4221 4222
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
4223
```js
L
lwx1059628 已提交
4224
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err) => {
J
jiao_yanlin 已提交
4225
  if (err) {
4226
    console.error('Failed to set params');
J
jiao_yanlin 已提交
4227
  } else {
4228
    console.info('Callback invoked to indicate a successful render rate setting.');
J
jiao_yanlin 已提交
4229
  }
L
lwx1059628 已提交
4230
});
Z
zengyawen 已提交
4231 4232 4233 4234 4235 4236
```

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

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

L
lwx1059628 已提交
4237
设置音频渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4238

4239
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4240 4241 4242 4243 4244

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
L
lwx1059628 已提交
4245
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
Z
zengyawen 已提交
4246 4247 4248 4249 4250 4251 4252 4253 4254

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |

**示例:**

J
jiao_yanlin 已提交
4255
```js
L
lwx1059628 已提交
4256
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
4257
  console.info('setRenderRate SUCCESS');
L
lwx1059628 已提交
4258
}).catch((err) => {
4259
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4260
});
Z
zengyawen 已提交
4261 4262 4263 4264 4265 4266
```

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

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

L
lwx1059628 已提交
4267
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4268

4269
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4270 4271 4272 4273 4274

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
L
lwx1059628 已提交
4275
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
4276 4277 4278

**示例:**

J
jiao_yanlin 已提交
4279
```js
L
lwx1059628 已提交
4280
audioRenderer.getRenderRate((err, renderrate) => {
4281
  console.info(`getRenderRate: ${renderrate}`);
L
lwx1059628 已提交
4282
});
Z
zengyawen 已提交
4283 4284 4285 4286 4287 4288
```

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

getRenderRate(): Promise\<AudioRendererRate>

L
lwx1059628 已提交
4289
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4290

4291
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4292 4293 4294 4295 4296

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
L
lwx1059628 已提交
4297
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
4298 4299 4300

**示例:**

J
jiao_yanlin 已提交
4301
```js
L
lwx1059628 已提交
4302
audioRenderer.getRenderRate().then((renderRate) => {
4303
  console.info(`getRenderRate: ${renderRate}`);
L
lwx1059628 已提交
4304
}).catch((err) => {
4305
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4306
});
Z
zengyawen 已提交
4307
```
4308 4309
### setInterruptMode<sup>9+</sup>

4310
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
4311

4312
设置应用的焦点模型。使用Promise异步回调。
4313 4314 4315 4316 4317

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

**参数:**

4318 4319
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
4320
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
4321 4322 4323 4324 4325

**返回值:**

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

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

J
jiao_yanlin 已提交
4330
```js
J
jiao_yanlin 已提交
4331 4332
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
4333 4334
  console.info('setInterruptMode Success!');
}).catch((err) => {
4335
  console.error(`setInterruptMode Fail: ${err}`);
4336
});
Z
zhujie81 已提交
4337 4338 4339
```
### setInterruptMode<sup>9+</sup>

4340
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
Z
zhujie81 已提交
4341

Z
zhujie81 已提交
4342
设置应用的焦点模型。使用Callback回调返回执行结果。
Z
zhujie81 已提交
4343 4344 4345 4346

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

**参数:**
4347

4348 4349
| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
4350
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
4351
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|
Z
zengyawen 已提交
4352

Z
zhujie81 已提交
4353 4354
**示例:**

J
jiao_yanlin 已提交
4355
```js
J
jiao_yanlin 已提交
4356
let mode = 1;
J
jiao_yanlin 已提交
4357
audioRenderer.setInterruptMode(mode, (err, data)=>{
J
jiao_yanlin 已提交
4358
  if(err){
4359
    console.error(`setInterruptMode Fail: ${err}`);
J
jiao_yanlin 已提交
4360
  }
4361
  console.info('setInterruptMode Success!');
4362
});
4363
```
L
lwx1059628 已提交
4364
### on('interrupt')<sup>9+</sup>
Z
zengyawen 已提交
4365 4366 4367 4368 4369

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

监听音频中断事件。使用callback获取中断事件。

4370
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4371 4372 4373 4374 4375 4376

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4381
```js
R
rahul 已提交
4382 4383 4384
var isPlay;
var started;
audioRenderer.on('interrupt', async(interruptEvent) => {
J
jiao_yanlin 已提交
4385 4386 4387
  if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4388
        console.info('Force paused. Stop writing');
J
jiao_yanlin 已提交
4389 4390 4391
        isPlay = false;
        break;
      case audio.InterruptHint.INTERRUPT_HINT_STOP:
4392
        console.info('Force stopped. Stop writing');
J
jiao_yanlin 已提交
4393 4394 4395 4396 4397 4398
        isPlay = false;
        break;
    }
  } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_RESUME:
4399
        console.info('Resume force paused renderer or ignore');
J
jiao_yanlin 已提交
4400
        await audioRenderer.start().then(async function () {
4401
          console.info('AudioInterruptMusic: renderInstant started :SUCCESS ');
J
jiao_yanlin 已提交
4402 4403
          started = true;
        }).catch((err) => {
4404
          console.error(`AudioInterruptMusic: renderInstant start :ERROR : ${err}`);
J
jiao_yanlin 已提交
4405 4406 4407 4408
          started = false;
        });
        if (started) {
          isPlay = true;
4409
          console.info(`AudioInterruptMusic Renderer started : isPlay : ${isPlay}`);
J
jiao_yanlin 已提交
4410
        } else {
4411
          console.error('AudioInterruptMusic Renderer start failed');
Z
zengyawen 已提交
4412
        }
J
jiao_yanlin 已提交
4413 4414
        break;
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4415
        console.info('Choose to pause or ignore');
J
jiao_yanlin 已提交
4416 4417
        if (isPlay == true) {
          isPlay == false;
4418
          console.info('AudioInterruptMusic: Media PAUSE : TRUE');
J
jiao_yanlin 已提交
4419
        } else {
J
jiao_yanlin 已提交
4420
          isPlay = true;
4421
          console.info('AudioInterruptMusic: Media PLAY : TRUE');
Z
zengyawen 已提交
4422
        }
J
jiao_yanlin 已提交
4423
        break;
Z
zengyawen 已提交
4424
    }
J
jiao_yanlin 已提交
4425
  }
L
lwx1059628 已提交
4426
});
Z
zengyawen 已提交
4427 4428
```

L
lwx1059628 已提交
4429 4430
### on('markReach')<sup>8+</sup>

J
jiao_yanlin 已提交
4431
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442

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

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
4443
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                    |
L
lwx1059628 已提交
4444 4445 4446

**示例:**

J
jiao_yanlin 已提交
4447
```js
L
lwx1059628 已提交
4448
audioRenderer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4449
  if (position == 1000) {
4450
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4451
  }
L
lwx1059628 已提交
4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471
});
```


### off('markReach') <sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |

**示例:**

J
jiao_yanlin 已提交
4472
```js
L
lwx1059628 已提交
4473 4474 4475 4476
audioRenderer.off('markReach');
```

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

J
jiao_yanlin 已提交
4478
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
Z
zengyawen 已提交
4479

L
lwx1059628 已提交
4480 4481 4482 4483 4484 4485 4486 4487 4488 4489
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
4490
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                      |
L
lwx1059628 已提交
4491 4492 4493

**示例:**

J
jiao_yanlin 已提交
4494
```js
L
lwx1059628 已提交
4495
audioRenderer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
4496
  if (position == 1000) {
4497
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4498
  }
L
lwx1059628 已提交
4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517
});
```

### off('periodReach') <sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |

**示例:**

J
jiao_yanlin 已提交
4518
```js
L
lwx1059628 已提交
4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534
audioRenderer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
4535
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
4536 4537 4538

**示例:**

J
jiao_yanlin 已提交
4539
```js
L
lwx1059628 已提交
4540
audioRenderer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
4541
  if (state == 1) {
4542
    console.info('audio renderer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
4543 4544
  }
  if (state == 2) {
4545
    console.info('audio renderer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
4546
  }
L
lwx1059628 已提交
4547 4548 4549 4550 4551 4552 4553
});
```

## AudioCapturer<sup>8+</sup>

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

4554
### 属性
L
lwx1059628 已提交
4555 4556 4557

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

4558
| 名称  | 类型                     | 可读 | 可写 | 说明             |
L
lwx1059628 已提交
4559
| :---- | :------------------------- | :--- | :--- | :--------------- |
4560
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
L
lwx1059628 已提交
4561 4562 4563

**示例:**

J
jiao_yanlin 已提交
4564
```js
L
lwx1059628 已提交
4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583
var state = audioCapturer.state;
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4584
```js
L
lwx1059628 已提交
4585
audioCapturer.getCapturerInfo((err, capturerInfo) => {
J
jiao_yanlin 已提交
4586
  if (err) {
4587
    console.error('Failed to get capture info');
J
jiao_yanlin 已提交
4588
  } else {
4589 4590 4591
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
J
jiao_yanlin 已提交
4592
  }
L
lwx1059628 已提交
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612
});
```


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

getCapturerInfo(): Promise<AudioCapturerInfo\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4613
```js
L
lwx1059628 已提交
4614
audioCapturer.getCapturerInfo().then((audioParamsGet) => {
J
jiao_yanlin 已提交
4615
  if (audioParamsGet != undefined) {
4616 4617 4618
    console.info('AudioFrameworkRecLog: Capturer CapturerInfo:');
    console.info(`AudioFrameworkRecLog: Capturer SourceType: ${audioParamsGet.source}`);
    console.info(`AudioFrameworkRecLog: Capturer capturerFlags: ${audioParamsGet.capturerFlags}`);
J
jiao_yanlin 已提交
4619
  } else {
4620 4621
    console.info(`AudioFrameworkRecLog: audioParamsGet is : ${audioParamsGet}`);
    console.info('AudioFrameworkRecLog: audioParams getCapturerInfo are incorrect');
J
jiao_yanlin 已提交
4622
  }
L
lwx1059628 已提交
4623
}).catch((err) => {
4624
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637
});
```

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

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

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

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

**参数:**

Z
zengyawen 已提交
4638 4639 4640
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
L
lwx1059628 已提交
4641 4642 4643

**示例:**

J
jiao_yanlin 已提交
4644
```js
L
lwx1059628 已提交
4645
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4646
  if (err) {
4647
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4648
  } else {
4649 4650 4651 4652 4653
    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 已提交
4654
  }
L
lwx1059628 已提交
4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667
});
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

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

**返回值:**

Z
zengyawen 已提交
4668 4669 4670
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
L
lwx1059628 已提交
4671 4672 4673

**示例:**

J
jiao_yanlin 已提交
4674
```js
L
lwx1059628 已提交
4675
audioCapturer.getStreamInfo().then((audioParamsGet) => {
4676 4677 4678 4679 4680
  console.info('getStreamInfo:');
  console.info(`sampleFormat: ${audioParamsGet.sampleFormat}`);
  console.info(`samplingRate: ${audioParamsGet.samplingRate}`);
  console.info(`channels: ${audioParamsGet.channels}`);
  console.info(`encodingType: ${audioParamsGet.encodingType}`);
L
lwx1059628 已提交
4681
}).catch((err) => {
4682
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693
});
```

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

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

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

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

4694
**参数:**
L
lwx1059628 已提交
4695 4696 4697 4698 4699 4700 4701

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

**示例:**

J
jiao_yanlin 已提交
4702
```js
L
lwx1059628 已提交
4703
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
4704
  if (err) {
4705
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
4706
  } else {
4707
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
4708
  }
L
lwx1059628 已提交
4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728
});
```


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

start(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4729
```js
L
lwx1059628 已提交
4730
audioCapturer.start().then(() => {
4731 4732 4733 4734
  console.info('AudioFrameworkRecLog: ---------START---------');
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer: STATE: ${audioCapturer.state}`);
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
J
jiao_yanlin 已提交
4735
  if ((audioCapturer.state == audio.AudioState.STATE_RUNNING)) {
4736
    console.info('AudioFrameworkRecLog: AudioCapturer is in Running State');
J
jiao_yanlin 已提交
4737
  }
L
lwx1059628 已提交
4738
}).catch((err) => {
4739
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
L
lwx1059628 已提交
4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758
});
```

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

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

停止采集。使用callback方式异步返回结果。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4759
```js
L
lwx1059628 已提交
4760
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
4761
  if (err) {
4762
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
4763
  } else {
4764
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
4765
  }
L
lwx1059628 已提交
4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785
});
```


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

stop(): Promise<void\>

停止采集。使用Promise方式异步返回结果。

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4786
```js
L
lwx1059628 已提交
4787
audioCapturer.stop().then(() => {
4788 4789
  console.info('AudioFrameworkRecLog: ---------STOP RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer stopped: SUCCESS');
J
jiao_yanlin 已提交
4790
  if ((audioCapturer.state == audio.AudioState.STATE_STOPPED)){
4791
    console.info('AudioFrameworkRecLog: State is Stopped:');
J
jiao_yanlin 已提交
4792
  }
L
lwx1059628 已提交
4793
}).catch((err) => {
4794
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813
});
```

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

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

释放采集器。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
| callback | AsyncCallback<void\> | 是   | Callback used to return the result. |

**示例:**

J
jiao_yanlin 已提交
4814
```js
L
lwx1059628 已提交
4815
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
4816
  if (err) {
4817
    console.error('capturer release failed');
J
jiao_yanlin 已提交
4818
  } else {
4819
    console.info('capturer released.');
J
jiao_yanlin 已提交
4820
  }
L
lwx1059628 已提交
4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840
});
```


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

release(): Promise<void\>

释放采集器。使用Promise方式异步返回结果。

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4841
```js
J
jiao_yanlin 已提交
4842
var stateFlag;
L
lwx1059628 已提交
4843
audioCapturer.release().then(() => {
4844 4845 4846 4847
  console.info('AudioFrameworkRecLog: ---------RELEASE RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer release : SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer : STATE : ${audioCapturer.state}`);
  console.info(`AudioFrameworkRecLog: stateFlag : ${stateFlag}`);
L
lwx1059628 已提交
4848
}).catch((err) => {
4849
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861
});
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void

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

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

4862
**参数:**
L
lwx1059628 已提交
4863 4864 4865 4866 4867 4868 4869 4870 4871

| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |

**示例:**

J
jiao_yanlin 已提交
4872
```js
R
rahul 已提交
4873 4874
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4875
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4876 4877
  bufferSize = data;
  }).catch((err) => {
叫我胖子 已提交
4878
    console.error(`AudioFrameworkRecLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
4879
  });
L
lwx1059628 已提交
4880
audioCapturer.read(bufferSize, true, async(err, buffer) => {
J
jiao_yanlin 已提交
4881
  if (!err) {
4882
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
4883
  }
J
jiao_yanlin 已提交
4884
});
L
lwx1059628 已提交
4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>

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

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

**参数:**

| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |

**返回值:**

| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |

**示例:**

J
jiao_yanlin 已提交
4911
```js
R
rahul 已提交
4912 4913
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4914
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4915 4916
  bufferSize = data;
  }).catch((err) => {
4917
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
J
jiao_yanlin 已提交
4918
  });
4919
console.info(`Buffer size: ${bufferSize}`);
L
lwx1059628 已提交
4920
audioCapturer.read(bufferSize, true).then((buffer) => {
4921
  console.info('buffer read successfully');
L
lwx1059628 已提交
4922
}).catch((err) => {
4923
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943
});
```


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

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

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

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4944
```js
L
lwx1059628 已提交
4945
audioCapturer.getAudioTime((err, timestamp) => {
4946
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966
});
```


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

getAudioTime(): Promise<number\>

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

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

**返回值:**

| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |

**示例:**

J
jiao_yanlin 已提交
4967
```js
L
lwx1059628 已提交
4968
audioCapturer.getAudioTime().then((audioTime) => {
4969
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4970
}).catch((err) => {
4971
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991
});
```


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

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

获取采集器合理的最小缓冲区大小。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                 |
| :------- | :--------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
4992
```js
L
lwx1059628 已提交
4993
audioCapturer.getBufferSize((err, bufferSize) => {
J
jiao_yanlin 已提交
4994
  if (!err) {
4995
    console.info(`BufferSize : ${bufferSize}`);
J
jiao_yanlin 已提交
4996
    audioCapturer.read(bufferSize, true).then((buffer) => {
4997
      console.info(`Buffer read is ${buffer}`);
J
jiao_yanlin 已提交
4998
    }).catch((err) => {
4999
      console.error(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
J
jiao_yanlin 已提交
5000 5001
    });
  }
L
lwx1059628 已提交
5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021
});
```


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

getBufferSize(): Promise<number\>

获取采集器合理的最小缓冲区大小。使用Promise方式异步返回结果。

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

**返回值:**

| 类型             | 说明                                |
| :--------------- | :---------------------------------- |
| Promise<number\> | 使用Promise方式异步返回缓冲区大小。 |

**示例:**

J
jiao_yanlin 已提交
5022
```js
R
rahul 已提交
5023 5024
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
5025
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
J
jiao_yanlin 已提交
5026
  bufferSize = data;
R
rahul 已提交
5027
}).catch((err) => {
5028
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err}`);
L
lwx1059628 已提交
5029 5030 5031 5032 5033 5034
});
```


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

J
jiao_yanlin 已提交
5035
on(type: "markReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
5036 5037 5038 5039 5040 5041 5042

订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。

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

**参数:**

5043 5044 5045 5046
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
5047
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
L
lwx1059628 已提交
5048 5049 5050

**示例:**

J
jiao_yanlin 已提交
5051
```js
L
lwx1059628 已提交
5052
audioCapturer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
5053
  if (position == 1000) {
5054
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5055
  }
L
lwx1059628 已提交
5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074
});
```

### off('markReach')<sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记到达的事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |

**示例:**

J
jiao_yanlin 已提交
5075
```js
L
lwx1059628 已提交
5076 5077 5078 5079 5080
audioCapturer.off('markReach');
```

### on('periodReach')<sup>8+</sup>

J
jiao_yanlin 已提交
5081
on(type: "periodReach", frame: number, callback: Callback&lt;number&gt;): void
L
lwx1059628 已提交
5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092

订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
5093
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
L
lwx1059628 已提交
5094 5095 5096

**示例:**

J
jiao_yanlin 已提交
5097
```js
L
lwx1059628 已提交
5098
audioCapturer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
5099
  if (position == 1000) {
5100
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5101
  }
L
lwx1059628 已提交
5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116
});
```

### off('periodReach')<sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记到达的事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
5117
| type   | string | 是  | 取消事件回调类型,支持的事件为:'periodReach'。 |
L
lwx1059628 已提交
5118 5119 5120

**示例:**

J
jiao_yanlin 已提交
5121
```js
L
lwx1059628 已提交
5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137
audioCapturer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
5138
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
5139 5140 5141

**示例:**

J
jiao_yanlin 已提交
5142
```js
L
lwx1059628 已提交
5143
audioCapturer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
5144
  if (state == 1) {
5145
    console.info('audio capturer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
5146 5147
  }
  if (state == 2) {
5148
    console.info('audio capturer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
5149
  }
L
lwx1059628 已提交
5150
});
5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170
```

## TonePlayer<sup>9+</sup>

提供播放DTMF音调,呼叫监管音调和专有音调的方法。

### 属性

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

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

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

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

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

**参数:**

5171 5172 5173
| 参数名          | 类型                        | 必填  | 说明                            |
| :--------------| :-------------------------- | :-----| :------------------------------ |
| type           | ToneType                    | 是    | 配置的音调类型。                 |
5174
| callback       | AsyncCallback<void\>        | 是    | 使用callback方式异步返回缓冲区。 |
5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370

**示例:**

```js
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_5, (err) => {
  if (err) {
    console.error(`callback call load failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call load success');
  }
});
```

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

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

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

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

**参数:**

| 参数名         | 类型       | 必填  |  说明             |
| :------------- | :-------- | :---  | ---------------- |
| type           | ToneType  | 是    | 配置的音调类型。  |

**返回值:**

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

**示例:**

```js
tonePlayer.load(audio.ToneType.TONE_TYPE_DIAL_1).then(() => {
  console.info('promise call load ');
}).catch(() => {
  console.error('promise call load fail');
});
```

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

start(callback: AsyncCallback&lt;void&gt;): void

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

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

**参数:**

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

**示例:**

```js
tonePlayer.start((err) => {
  if (err) {
    console.error(`callback call start failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call start success');
  }
});
```

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

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

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

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

**返回值:**

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

**示例:**

```js
tonePlayer.start().then(() => {
  console.info('promise call start');
}).catch(() => {
  console.error('promise call start fail');
});
```

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

stop(callback: AsyncCallback&lt;void&gt;): void

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

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

**参数:**

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

**示例:**

```js
tonePlayer.stop((err) => {
  if (err) {
    console.error(`callback call stop error: ${err.message}`);
    return;
  } else {
    console.error('callback call stop success ');
  }
});
```

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

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

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

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

**返回值:**

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

**示例:**

```js
tonePlayer.stop().then(() => {
  console.info('promise call stop finish');
}).catch(() => {
  console.error('promise call stop fail');
});
```

### release<sup>9+</sup>

release(callback: AsyncCallback&lt;void&gt;): void

释放与此TonePlay对象关联的资源。使用callback方式异步返回结果。

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

**参数:**

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

**示例:**

```js
tonePlayer.release((err) => {
  if (err) {
    console.error(`callback call release failed error: ${err.message}`);
    return;
  } else {
    console.info('callback call release success ');
  }
});
```

### release<sup>9+</sup>

release(): Promise&lt;void&gt;

释放与此TonePlay对象关联的资源。使用Promise方式异步返回结果。

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

**返回值:**

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

**示例:**

```js
tonePlayer.release().then(() => {
  console.info('promise call release');
}).catch(() => {
  console.error('promise call release fail');
});
```