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

Z
zengyawen 已提交
3
>  **说明:**
Z
zengyawen 已提交
4 5 6 7 8
>  本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

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

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

Z
zengyawen 已提交
12
## 导入模块
M
mamingshuai 已提交
13 14 15 16 17

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

Z
zengyawen 已提交
18

Z
zengyawen 已提交
19
## audio.getAudioManager
Z
zengyawen 已提交
20 21

getAudioManager(): AudioManager
M
mamingshuai 已提交
22 23 24

获取音频管理器。

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

M
mamingshuai 已提交
27
**返回值:**
Z
zengyawen 已提交
28 29
| 类型                          | 说明         |
| ----------------------------- | ------------ |
Z
zengyawen 已提交
30
| [AudioManager](#audiomanager) | 音频管理类。 |
M
mamingshuai 已提交
31 32 33 34 35 36

**示例:**
```
var audioManager = audio.getAudioManager();
```

Z
zengyawen 已提交
37 38
## audio.createAudioRenderer<sup>8+</sup>

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

L
lwx1059628 已提交
41
获取音频渲染器。
Z
zengyawen 已提交
42 43 44 45 46

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

**参数**

L
lwx1059628 已提交
47 48 49
| 参数名  | 类型                                           | 必填 | 说明         |
| ------- | ---------------------------------------------- | ---- | ------------ |
| options | [AudioRendererOptions](#audiorendereroptions8) | 是   | 配置渲染器。 |
M
magekkkk 已提交
50
| callback | AsyncCallback<[AudioRenderer](#audiorenderer8)> | 是   | 音频渲染器对象。 |
L
lwx1059628 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

**示例:**

```
var audioStreamInfo = {
    samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
    channels: audio.AudioChannel.CHANNEL_1,
    sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
    encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
}

var audioRendererInfo = {
    content: audio.ContentType.CONTENT_TYPE_SPEECH,
    usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
    rendererFlags: 1
}

var audioRendererOptions = {
    streamInfo: audioStreamInfo,
    rendererInfo: audioRendererInfo
}

audio.createAudioRenderer(audioRendererOptions,(err, data) => {
    if (err) {
        console.error(`AudioRender Created : Error: ${err.message}`);
    }
    else {
        console.info('AudioRender Created : Success : SUCCESS');
        audioRenderer = data;
    }
});
```

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

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

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

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

**参数:**

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

**返回值:**

| 类型                                      | 说明             |
| ----------------------------------------- | ---------------- |
| Promise<[AudioRenderer](#audiorenderer8)> | 音频播放器对象。 |
Z
zengyawen 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

**示例:**

```
var audioStreamInfo = {
    samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
    channels: audio.AudioChannel.CHANNEL_1,
    sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
    encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
}

var audioRendererInfo = {
    content: audio.ContentType.CONTENT_TYPE_SPEECH,
    usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
    rendererFlags: 1
}

var audioRendererOptions = {
    streamInfo: audioStreamInfo,
    rendererInfo: audioRendererInfo
}

let audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
```
Z
zengyawen 已提交
127

L
lwx1059628 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140
## audio.createAudioCapturer<sup>8+</sup>

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

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

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

**参数:**

| 参数名   | 类型                                           | 必填 | 说明             |
| :------- | :--------------------------------------------- | :--- | :--------------- |
| options  | [AudioCapturerOptions](#AudioCapturerOptions)  | 是   | 配置音频采集器。 |
M
magekkkk 已提交
141
| callback | AsyncCallback<[AudioCapturer](#audiocapturer8)> | 是   | 音频采集器对象。 |
L
lwx1059628 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191

**示例:**

```
var audioStreamInfo = {
    samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
    channels: audio.AudioChannel.CHANNEL_2,
    sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
    encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
}

var audioCapturerInfo = {
    source: audio.SourceType.SOURCE_TYPE_MIC,
    capturerFlags: 1
}

var audioCapturerOptions = {
    streamInfo: audioStreamInfo,
    capturerInfo: audioCapturerInfo
}

audio.createAudioCapturer(audioCapturerOptions,(err, data) => {
    if (err) {
        console.error(`AudioCapturer Created : Error: ${err.message}`);
    }
    else {
        console.info('AudioCapturer Created : Success : SUCCESS');
        audioCapturer = data;
    }
});
```

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

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

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

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

**参数:**

| 参数名  | 类型                 | 必填 | 说明             |
| :------ | :------------------- | :--- | :--------------- |
| options | AudioCapturerOptions | 是   | 配置音频采集器。 |

**返回值:**

| 类型                                      | 说明           |
| ----------------------------------------- | -------------- |
M
magekkkk 已提交
192
| Promise<[AudioCapturer](#audiocapturer8)> | 音频采集器对象 |
L
lwx1059628 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

**示例:**

```
var audioStreamInfo = {
    samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
    channels: audio.AudioChannel.CHANNEL_2,
    sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
    encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
}

var audioCapturerInfo = {
    source: audio.SourceType.SOURCE_TYPE_MIC,
    capturerFlags: 1
}

var audioCapturerOptions = {
    streamInfo: AudioStreamInfo,
    capturerInfo: AudioCapturerInfo
}

let audioCapturer = await audio.createAudioCapturer(audioCapturerOptions);
```

Z
zengyawen 已提交
217
## AudioVolumeType
M
mamingshuai 已提交
218

219
枚举,音频流类型。
M
mamingshuai 已提交
220

Z
zengyawen 已提交
221 222 223 224 225 226 227 228
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称                         | 默认值 | 描述       |
| ---------------------------- | ------ | ---------- |
| VOICE_CALL<sup>8+</sup>      | 0      | 语音电话。 |
| RINGTONE                     | 2      | 铃声。     |
| MEDIA                        | 3      | 媒体。     |
| VOICE_ASSISTANT<sup>8+</sup> | 9      | 语音助手。 |
Z
zengyawen 已提交
229 230 231


## DeviceFlag
M
mamingshuai 已提交
232

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

Z
zengyawen 已提交
235 236 237 238 239 240 241
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称                | 默认值 | 描述       |
| ------------------- | ------ | ---------- |
| OUTPUT_DEVICES_FLAG | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG  | 2      | 输入设备。 |
| ALL_DEVICES_FLAG    | 3      | 所有设备。 |
Z
zengyawen 已提交
242 243 244


## DeviceRole
M
mamingshuai 已提交
245

246
枚举,设备角色。
M
mamingshuai 已提交
247

Z
zengyawen 已提交
248 249 250 251 252 253
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

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


Z
zengyawen 已提交
256 257 258
## DeviceType

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

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

L
lwx1059628 已提交
262 263 264 265 266 267 268 269 270 271 272
| 名称            | 默认值 | 描述                                                      |
| --------------- | ------ | --------------------------------------------------------- |
| INVALID         | 0      | 无效设备。                                                |
| EARPIECE        | 1      | 听筒。                                                    |
| SPEAKER         | 2      | 扬声器。                                                  |
| WIRED_HEADSET   | 3      | 有线耳机,带麦克风。                                      |
| WIRED_HEADPHONE | 4      | 有线耳机,无麦克风。                                      |
| BLUETOOTH_SCO   | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。      |
| BLUETOOTH_A2DP  | 8      | 蓝牙设备A2DP(Advanced Audio Distribution Profile)连接。 |
| MIC             | 15     | 麦克风。                                                  |
| USB_HEADSET     | 22     | USB耳机,带麦克风。                                       |
M
magekkkk 已提交
273

Z
zengyawen 已提交
274
## ActiveDeviceType
M
magekkkk 已提交
275

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

Z
zengyawen 已提交
278 279 280 281 282 283
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

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

Z
zengyawen 已提交
285
## AudioRingMode
286 287 288

枚举,铃声模式。

Z
zengyawen 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Communication

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

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

枚举,音频采样格式。

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

| 名称                  | 默认值 | 描述                       |
| --------------------- | ------ | -------------------------- |
| SAMPLE_FORMAT_INVALID | -1     | 无效格式。                 |
| SAMPLE_FORMAT_U8      | 0      | 无符号8位整数。            |
| SAMPLE_FORMAT_S16LE   | 1      | 带符号的16位整数,小尾数。 |
| SAMPLE_FORMAT_S24LE   | 2      | 带符号的24位整数,小尾数。 |
| SAMPLE_FORMAT_S32LE   | 3      | 带符号的32位整数,小尾数。 |

## 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 已提交
353
## ContentType
Z
zengyawen 已提交
354 355 356 357 358

枚举,音频内容类型。

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

L
lwx1059628 已提交
359 360 361 362 363 364 365 366
| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| 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 已提交
367

L
lwx1059628 已提交
368
## StreamUsage
Z
zengyawen 已提交
369 370 371 372 373 374 375 376 377 378

枚举,音频流使用类型。

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

| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| STREAM_USAGE_UNKNOWN               | 0      | 未知类型。 |
| STREAM_USAGE_MEDIA                 | 1      | 音频。     |
| STREAM_USAGE_VOICE_COMMUNICATION   | 2      | 语音通信。 |
L
lwx1059628 已提交
379
| STREAM_USAGE_NOTIFICATION_RINGTONE | 6      | 通知铃声。 |
Z
zengyawen 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398

## 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 已提交
399
枚举,音频渲染速度。
Z
zengyawen 已提交
400 401 402 403 404 405 406 407 408

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

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

L
lwx1059628 已提交
409
## InterruptType
Z
zengyawen 已提交
410 411 412 413

枚举,中断类型。

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

Z
zengyawen 已提交
415 416 417 418 419
| 名称                 | 默认值 | 描述                   |
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
420
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
421 422 423 424 425 426 427 428 429 430

枚举,强制打断类型。

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

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

L
lwx1059628 已提交
431
## InterruptHint
Z
zengyawen 已提交
432 433 434 435 436

枚举,中断提示。

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

L
lwx1059628 已提交
437 438 439 440 441 442 443 444
| 名称                               | 默认值 | 描述                                         |
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
445

446 447 448 449 450 451 452 453 454 455 456 457 458
## InterruptActionType

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

| 名称                  | 默认值 | 描述                                         |
| --------------------- | ------ | -------------------------------------------- |
| TYPE_ACTIVATED | 0    | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1    | 表示音频打断事件。 |

Z
zengyawen 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
## 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 已提交
474
音频渲染器信息。
Z
zengyawen 已提交
475 476 477

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

L
lwx1059628 已提交
478 479 480 481 482
| 名称          | 类型                        | 必填 | 说明             |
| ------------- | --------------------------- | ---- | ---------------- |
| contentType   | [ContentType](#contenttype) | 是   | 媒体类型。       |
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
483 484 485

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

L
lwx1059628 已提交
486
音频渲染器选项信息。
Z
zengyawen 已提交
487 488 489 490 491 492

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

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

L
lwx1059628 已提交
495
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
496 497 498 499 500 501 502

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

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

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

507 508 509 510 511 512 513 514 515 516
## AudioInterrupt

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

| 名称      | 类型                                       | 必填 | 说明                                 |
| --------- | ------------------------------------------ | ---- | ------------------------------------ |
L
lwx1059628 已提交
517 518
| streamUsage | [StreamUsage](#streamusage)           | 是   | 音频流使用类型。         |
| contentType | [ContentType](#contenttype) | 是   | 音频打断媒体类型。 |
519 520 521 522 523 524 525 526 527 528 529 530 531
| pauseWhenDucked  | boolean           | 是   | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。                           |

## InterruptAction

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

| 名称      | 类型                                       | 必填 | 说明                                 |
| --------- | ------------------------------------------ | ---- | ------------------------------------ |
| actionType | [InterruptActionType](#interruptactiontype) | 是   | 事件返回类型。TYPE_ACTIVATED为焦点触发事件,TYPE_INTERRUPT为音频打断事件。         |
L
lwx1059628 已提交
532 533
| type  | [InterruptType](#interrupttype) | 否   | 打断事件类型。 |
| hint  | [InterruptHint](interrupthint) | 否   | 打断事件提示。 |
534 535
| activated | boolean | 否   | 获得/释放焦点。true表示焦点获取/释放成功,false表示焦点获得/释放失败。 |

Z
zengyawen 已提交
536 537 538 539
## VolumeEvent<sup>8+</sup>

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

L
lwx1059628 已提交
540 541
此接口为系统接口,三方应用不支持。

Z
zengyawen 已提交
542 543 544 545 546 547 548
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称       | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| updateUi   | boolean                             | 是   | 在UI中显示音量变化。                                     |
Z
zengyawen 已提交
549

L
lwx1059628 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
## DeviceChangeAction

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

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

**参数:**

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
| type              | [DeviceChangeType](#DeviceChangeType)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#AudioDeviceDescriptors) | 是   | 设备信息。         |

## DeviceChangeType

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

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

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

## 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

| 名称                | 默认值 | 描述           |
| :------------------ | :----- | :------------- |
| SOURCE_TYPE_INVALID | -1     | 无效的音频源。 |
| SOURCE_TYPE_MIC     | 0      | Mic音频源。    |

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

枚举,音频场景。

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

| 名称                                               | 默认值 | 描述           |
| :------------------------------------------------- | :----- | :------------- |
| AUDIO_SCENE_DEFAULT                                | 0      | 默认音频场景。 |
| AUDIO_SCENE_RINGING(系统接口,三方应用不支持)    | 1      | 响铃模式。     |
| AUDIO_SCENE_PHONE_CALL(系统接口,三方应用不支持) | 2      | 电话模式。     |
| AUDIO_SCENE_VOICE_CHAT                             | 3      | 语音聊天模式。 |

Z
zengyawen 已提交
609
## AudioManager
M
mamingshuai 已提交
610

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

Z
zengyawen 已提交
613 614 615
### setVolume

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

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

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

M
mamingshuai 已提交
621 622
**参数:**

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

M
mamingshuai 已提交
629 630 631
**示例:**

```
Z
zengyawen 已提交
632
var audioManager = audio.getAudioManager();
633
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err)=>{
M
mamingshuai 已提交
634
   if (err) {
635
	   console.error('Failed to set the volume. ${err.message}');
M
mamingshuai 已提交
636 637
	   return;
   }
638
   console.log('Callback invoked to indicate a successful volume setting.');
M
mamingshuai 已提交
639 640 641
})
```

Z
zengyawen 已提交
642 643 644
### setVolume

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

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

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

M
mamingshuai 已提交
650 651
**参数:**

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

**返回值:**

Z
zengyawen 已提交
659 660
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
661
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
M
mamingshuai 已提交
662 663 664 665

**示例:**

```
Z
zengyawen 已提交
666
var audioManager = audio.getAudioManager();
A
AOL 已提交
667
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
668
    console.log('Promise returned to indicate a successful volume setting.');
A
AOL 已提交
669
})
M
mamingshuai 已提交
670 671
```

Z
zengyawen 已提交
672 673 674
### getVolume

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

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

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

M
mamingshuai 已提交
680 681
**参数:**

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

M
mamingshuai 已提交
687 688 689
**示例:**

```
Z
zengyawen 已提交
690
var audioManager = audio.getAudioManager();
691
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
M
mamingshuai 已提交
692
   if (err) {
693
	   console.error('Failed to obtain the volume. ${err.message}');
M
mamingshuai 已提交
694 695
	   return;
   }
696
   console.log('Callback invoked to indicate that the volume is obtained.');
M
mamingshuai 已提交
697 698 699
})
```

Z
zengyawen 已提交
700 701 702
### getVolume

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

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

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

M
mamingshuai 已提交
708 709
**参数:**

Z
zengyawen 已提交
710 711 712
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
713 714 715

**返回值:**

Z
zengyawen 已提交
716 717
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
718
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
M
mamingshuai 已提交
719 720 721 722

**示例:**

```
Z
zengyawen 已提交
723
var audioManager = audio.getAudioManager();
A
AOL 已提交
724
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
725
    console.log('Promise returned to indicate that the volume is obtained.' + value);
A
AOL 已提交
726
})
M
mamingshuai 已提交
727 728
```

Z
zengyawen 已提交
729 730 731
### getMinVolume

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

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

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

M
mamingshuai 已提交
737 738
**参数:**

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

M
mamingshuai 已提交
744 745 746
**示例:**

```
Z
zengyawen 已提交
747
var audioManager = audio.getAudioManager();
Z
zengyawen 已提交
748
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
749 750 751 752 753
    if (err) {
        console.error('Failed to obtain the minimum volume. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the minimum volume is obtained.' + value);
M
mamingshuai 已提交
754 755 756
})
```

Z
zengyawen 已提交
757 758 759
### getMinVolume

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

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

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

M
mamingshuai 已提交
765 766
**参数:**

Z
zengyawen 已提交
767 768 769
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
770 771 772

**返回值:**

Z
zengyawen 已提交
773 774
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
775
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
M
mamingshuai 已提交
776 777 778 779

**示例:**

```
Z
zengyawen 已提交
780
var audioManager = audio.getAudioManager();
A
AOL 已提交
781
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
782
    console.log('Promised returned to indicate that the minimum  volume is obtained.' + value);
A
AOL 已提交
783
})
M
mamingshuai 已提交
784 785
```

Z
zengyawen 已提交
786 787 788
### getMaxVolume

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

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

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

M
mamingshuai 已提交
794 795
**参数:**

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

M
mamingshuai 已提交
801 802 803
**示例:**

```
Z
zengyawen 已提交
804
var audioManager = audio.getAudioManager();
805 806 807 808 809 810
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
    if (err) {
        console.error('Failed to obtain the maximum volume. ${err.message}');
        return;
    }
    console.log('Callback invoked to indicate that the maximum volume is obtained.' + value);
M
mamingshuai 已提交
811 812 813
})
```

Z
zengyawen 已提交
814 815 816
### getMaxVolume

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

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

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

M
mamingshuai 已提交
822 823
**参数:**

Z
zengyawen 已提交
824 825 826
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
827 828 829

**返回值:**

Z
zengyawen 已提交
830 831
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
Z
zengyawen 已提交
832
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
M
mamingshuai 已提交
833 834 835 836

**示例:**

```
Z
zengyawen 已提交
837
var audioManager = audio.getAudioManager();
A
AOL 已提交
838
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
839
    console.log('Promised returned to indicate that the maximum volume is obtained.');
A
AOL 已提交
840
})
Z
zengyawen 已提交
841 842
```

Z
zengyawen 已提交
843
### mute
Z
zengyawen 已提交
844 845

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

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

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

Z
zengyawen 已提交
851 852
**参数:**

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

Z
zengyawen 已提交
859 860 861
**示例:**

```
Z
zengyawen 已提交
862
var audioManager = audio.getAudioManager();
863 864 865 866 867 868 869 870 871
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
    if (err) {
        console.error('Failed to mute the stream. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the stream is muted.');
})
```

Z
zengyawen 已提交
872
### mute
Z
zengyawen 已提交
873 874

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

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

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

880 881
**参数:**

Z
zengyawen 已提交
882 883 884 885
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
886 887 888

**返回值:**

Z
zengyawen 已提交
889 890
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
891
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
892 893 894

**示例:**

Z
zengyawen 已提交
895

896
```
Z
zengyawen 已提交
897
var audioManager = audio.getAudioManager();
A
AOL 已提交
898
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
899
    console.log('Promise returned to indicate that the stream is muted.');
A
AOL 已提交
900
})
901 902 903
```


Z
zengyawen 已提交
904
### isMute
905

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

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

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

Z
zengyawen 已提交
912
**参数:**
913

Z
zengyawen 已提交
914 915 916 917
| 参数名     | 类型                                | 必填 | 说明                                            |
| ---------- | ----------------------------------- | ---- | ----------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                    |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流静音状态,true为静音,false为非静音。 |
918 919 920 921

**示例:**

```
Z
zengyawen 已提交
922
var audioManager = audio.getAudioManager();
923
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
M
mamingshuai 已提交
924
   if (err) {
925
	   console.error('Failed to obtain the mute status. ${err.message}');
M
mamingshuai 已提交
926 927
	   return;
   }
928
   console.log('Callback invoked to indicate that the mute status of the stream is obtained.' + value);
Z
zengyawen 已提交
929 930 931
})
```

Z
zengyawen 已提交
932

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

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

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

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

Z
zengyawen 已提交
941 942
**参数:**

Z
zengyawen 已提交
943 944 945
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
Z
zengyawen 已提交
946 947 948

**返回值:**

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

Z
zengyawen 已提交
953 954 955
**示例:**

```
Z
zengyawen 已提交
956
var audioManager = audio.getAudioManager();
A
AOL 已提交
957
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
958
    console.log('Promise returned to indicate that the mute status of the stream is obtained.' + value);
A
AOL 已提交
959
})
Z
zengyawen 已提交
960 961
```

Z
zengyawen 已提交
962
### isActive
Z
zengyawen 已提交
963 964

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

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

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

970 971
**参数:**

Z
zengyawen 已提交
972 973 974 975
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
976 977 978 979

**示例:**

```
Z
zengyawen 已提交
980
var audioManager = audio.getAudioManager();
981 982 983 984 985 986 987 988 989
audioManager.isActive(audio.AudioVolumeType.MEDIA, (err, value) => {
    if (err) {
        console.error('Failed to obtain the active status of the stream. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the active status of the stream is obtained.' + value);
})
```

Z
zengyawen 已提交
990
### isActive
Z
zengyawen 已提交
991 992

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

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

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

998 999
**参数:**

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

**返回值:**

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

1010 1011 1012
**示例:**

```
Z
zengyawen 已提交
1013
var audioManager = audio.getAudioManager();
A
AOL 已提交
1014
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
1015
    console.log('Promise returned to indicate that the active status of the stream is obtained.' + value);
A
AOL 已提交
1016
})
1017 1018
```

Z
zengyawen 已提交
1019
### setRingerMode
Z
zengyawen 已提交
1020 1021

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

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

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

1027 1028
**参数:**

Z
zengyawen 已提交
1029 1030 1031 1032
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1033 1034 1035 1036

**示例:**

```
Z
zengyawen 已提交
1037
var audioManager = audio.getAudioManager();
1038 1039
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
   if (err) {
Z
zengyawen 已提交
1040
       console.error('Failed to set the ringer mode. ${err.message}');
1041 1042 1043 1044 1045 1046
       return;
    }
    console.log('Callback invoked to indicate a successful setting of the ringer mode.');
})
```

Z
zengyawen 已提交
1047
### setRingerMode
Z
zengyawen 已提交
1048 1049

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

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

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

1055 1056
**参数:**

Z
zengyawen 已提交
1057 1058 1059
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1060 1061 1062

**返回值:**

Z
zengyawen 已提交
1063 1064
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1065
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1066 1067 1068 1069

**示例:**

```
Z
zengyawen 已提交
1070
var audioManager = audio.getAudioManager();
A
AOL 已提交
1071
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
1072
    console.log('Promise returned to indicate a successful setting of the ringer mode.');
A
AOL 已提交
1073
})
1074 1075 1076
```


Z
zengyawen 已提交
1077
### getRingerMode
1078

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

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

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

Z
zengyawen 已提交
1085
**参数:**
1086

Z
zengyawen 已提交
1087 1088 1089
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1090 1091 1092 1093

**示例:**

```
Z
zengyawen 已提交
1094
var audioManager = audio.getAudioManager();
1095 1096
audioManager.getRingerMode((err, value) => {
   if (err) {
Z
zengyawen 已提交
1097
	   console.error('Failed to obtain the ringer mode. ${err.message}');
1098 1099 1100 1101 1102 1103 1104
	   return;
   }
   console.log('Callback invoked to indicate that the ringer mode is obtained.' + value);
})
```


Z
zengyawen 已提交
1105
### getRingerMode
1106

Z
zengyawen 已提交
1107
getRingerMode(): Promise&lt;AudioRingMode&gt;
1108

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

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

1113 1114
**返回值:**

Z
zengyawen 已提交
1115 1116
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
1117
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1118 1119 1120 1121

**示例:**

```
Z
zengyawen 已提交
1122
var audioManager = audio.getAudioManager();
A
AOL 已提交
1123
audioManager.getRingerMode().then((value) => {
1124
    console.log('Promise returned to indicate that the ringer mode is obtained.' + value);
A
AOL 已提交
1125
})
1126 1127
```

Z
zengyawen 已提交
1128
### setAudioParameter
Z
zengyawen 已提交
1129 1130

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

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

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

1136 1137
**参数:**

Z
zengyawen 已提交
1138 1139 1140 1141 1142
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
1143 1144 1145 1146

**示例:**

```
Z
zengyawen 已提交
1147
var audioManager = audio.getAudioManager();
1148 1149 1150 1151 1152 1153 1154 1155 1156
audioManager.setAudioParameter('PBits per sample', '8 bit', (err) => {
    if (err) {
        console.error('Failed to set the audio parameter. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate a successful setting of the audio parameter.');
})
```

Z
zengyawen 已提交
1157
### setAudioParameter
Z
zengyawen 已提交
1158 1159

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

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

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

1165 1166
**参数:**

Z
zengyawen 已提交
1167 1168 1169 1170
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
1171 1172 1173

**返回值:**

Z
zengyawen 已提交
1174 1175
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1176
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1177 1178 1179 1180

**示例:**

```
Z
zengyawen 已提交
1181
var audioManager = audio.getAudioManager();
A
AOL 已提交
1182
audioManager.setAudioParameter('PBits per sample', '8 bit').then(() => {
1183
    console.log('Promise returned to indicate a successful setting of the audio parameter.');
A
AOL 已提交
1184
})
1185 1186
```

Z
zengyawen 已提交
1187
### getAudioParameter
Z
zengyawen 已提交
1188 1189

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

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

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

1195 1196
**参数:**

Z
zengyawen 已提交
1197 1198 1199 1200
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
1201 1202 1203 1204

**示例:**

```
Z
zengyawen 已提交
1205
var audioManager = audio.getAudioManager();
1206 1207 1208 1209 1210 1211 1212 1213 1214
audioManager.getAudioParameter('PBits per sample', (err, value) => {
    if (err) {
        console.error('Failed to obtain the value of the audio parameter. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the value of the audio parameter is obtained.' + value);
})
```

Z
zengyawen 已提交
1215
### getAudioParameter
Z
zengyawen 已提交
1216 1217

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

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

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

1223 1224
**参数:**

Z
zengyawen 已提交
1225 1226 1227
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
1228 1229 1230

**返回值:**

Z
zengyawen 已提交
1231 1232
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
Z
zengyawen 已提交
1233
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
1234 1235 1236 1237

**示例:**

```
Z
zengyawen 已提交
1238
var audioManager = audio.getAudioManager();
A
AOL 已提交
1239
audioManager.getAudioParameter('PBits per sample').then((value) => {
1240
    console.log('Promise returned to indicate that the value of the audio parameter is obtained.' + value);
A
AOL 已提交
1241
})
1242 1243
```

Z
zengyawen 已提交
1244 1245 1246
### getDevices

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

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

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

1252 1253
**参数:**

Z
zengyawen 已提交
1254 1255 1256 1257
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
1258 1259 1260

**示例:**
```
Z
zengyawen 已提交
1261
var audioManager = audio.getAudioManager();
A
AOL 已提交
1262
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
1263 1264 1265 1266 1267 1268 1269 1270
   if (err) {
	   console.error('Failed to obtain the device list. ${err.message}');
	   return;
   }
   console.log('Callback invoked to indicate that the device list is obtained.');
})
```

Z
zengyawen 已提交
1271 1272
### getDevices

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

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

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

1279 1280
**参数:**

Z
zengyawen 已提交
1281 1282 1283
| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
1284 1285 1286

**返回值:**

Z
zengyawen 已提交
1287 1288
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
Z
zengyawen 已提交
1289
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
1290 1291 1292 1293

**示例:**

```
Z
zengyawen 已提交
1294
var audioManager = audio.getAudioManager();
A
AOL 已提交
1295
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
1296
    console.log('Promise returned to indicate that the device list is obtained.');
A
AOL 已提交
1297
})
1298 1299
```

Z
zengyawen 已提交
1300
### setDeviceActive
Z
zengyawen 已提交
1301

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

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

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

1308 1309
**参数:**

Z
zengyawen 已提交
1310 1311
| 参数名     | 类型                      | 必填 | 说明                     |
| ---------- | ------------------------- | ---- | ------------------------ |
A
AOL 已提交
1312
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。           |
Z
zengyawen 已提交
1313 1314
| active     | boolean                   | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
1315 1316 1317 1318

**示例:**

```
Z
zengyawen 已提交
1319
var audioManager = audio.getAudioManager();
A
AOL 已提交
1320
audioManager.setDeviceActive(audio.DeviceType.SPEAKER, true, (err) => {
1321 1322 1323 1324 1325 1326 1327 1328
    if (err) {
        console.error('Failed to set the active status of the device. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the device is set to the active status.');
})
```

Z
zengyawen 已提交
1329
### setDeviceActive
Z
zengyawen 已提交
1330

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

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

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

1337 1338
**参数:**

Z
zengyawen 已提交
1339 1340
| 参数名     | 类型                      | 必填 | 说明           |
| ---------- | ------------------------- | ---- | -------------- |
A
AOL 已提交
1341
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
Z
zengyawen 已提交
1342
| active     | boolean                   | 是   | 设备激活状态。 |
1343 1344 1345

**返回值:**

Z
zengyawen 已提交
1346 1347
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1348
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1349 1350 1351

**示例:**

Z
zengyawen 已提交
1352

1353
```
Z
zengyawen 已提交
1354
var audioManager = audio.getAudioManager();
A
AOL 已提交
1355
audioManager.setDeviceActive(audio.DeviceType.SPEAKER, true).then(() => {
1356
    console.log('Promise returned to indicate that the device is set to the active status.');
A
AOL 已提交
1357
})
1358 1359
```

Z
zengyawen 已提交
1360
### isDeviceActive
Z
zengyawen 已提交
1361

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

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

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

1368 1369
**参数:**

Z
zengyawen 已提交
1370 1371
| 参数名     | 类型                         | 必填 | 说明                     |
| ---------- | ---------------------------- | ---- | ------------------------ |
A
AOL 已提交
1372
| deviceType | [ActiveDeviceType](#activedevicetype)    | 是   | 活跃音频设备类型。 |
Z
zengyawen 已提交
1373
| callback   | AsyncCallback&lt;boolean&gt; | 是   | 回调返回设备的激活状态。 |
1374 1375 1376 1377

**示例:**

```
Z
zengyawen 已提交
1378
var audioManager = audio.getAudioManager();
Z
zengyawen 已提交
1379
audioManager.isDeviceActive(audio.DeviceType.SPEAKER, (err, value) => {
1380 1381 1382 1383 1384 1385 1386 1387
    if (err) {
        console.error('Failed to obtain the active status of the device. ${err.message}');
	return;
    }
    console.log('Callback invoked to indicate that the active status of the device is obtained.');
})
```

Z
zengyawen 已提交
1388

Z
zengyawen 已提交
1389
### isDeviceActive
Z
zengyawen 已提交
1390

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

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

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

1397 1398
**参数:**

Z
zengyawen 已提交
1399 1400
| 参数名     | 类型                      | 必填 | 说明           |
| ---------- | ------------------------- | ---- | -------------- |
A
AOL 已提交
1401
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
1402 1403 1404

**返回值:**

Z
zengyawen 已提交
1405 1406
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
Z
zengyawen 已提交
1407
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1408 1409 1410 1411

**示例:**

```
Z
zengyawen 已提交
1412
var audioManager = audio.getAudioManager();
A
AOL 已提交
1413
audioManager.isDeviceActive(audio.DeviceType.SPEAKER).then((value) => {
1414
    console.log('Promise returned to indicate that the active status of the device is obtained.' + value);
A
AOL 已提交
1415
})
1416 1417
```

Z
zengyawen 已提交
1418
### setMicrophoneMute
Z
zengyawen 已提交
1419 1420

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

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

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

1426 1427
**参数:**

Z
zengyawen 已提交
1428 1429 1430 1431
| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
| mute     | boolean                   | 是   | 待设置的静音状态,true为静音,false为非静音。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。                      |
1432 1433 1434 1435

**示例:**

```
Z
zengyawen 已提交
1436
var audioManager = audio.getAudioManager();
1437 1438 1439 1440 1441 1442 1443 1444 1445
audioManager.setMicrophoneMute(true, (err) => {
    if (err) {
        console.error('Failed to mute the microphone. ${err.message}');
        return;
    }
    console.log('Callback invoked to indicate that the microphone is muted.');
})
```

Z
zengyawen 已提交
1446
### setMicrophoneMute
Z
zengyawen 已提交
1447 1448

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

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

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

1454 1455
**参数:**

Z
zengyawen 已提交
1456 1457 1458
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
1459 1460 1461

**返回值:**

Z
zengyawen 已提交
1462 1463
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1464
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1465 1466 1467 1468

**示例:**

```
Z
zengyawen 已提交
1469
var audioManager = audio.getAudioManager();
A
AOL 已提交
1470
audioManager.setMicrophoneMute(true).then(() => {
1471
    console.log('Promise returned to indicate that the microphone is muted.');
A
AOL 已提交
1472
})
1473 1474
```

Z
zengyawen 已提交
1475
### isMicrophoneMute
Z
zengyawen 已提交
1476 1477

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

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

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

1483 1484
**参数:**

Z
zengyawen 已提交
1485 1486 1487
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1488 1489 1490 1491

**示例:**

```
Z
zengyawen 已提交
1492
var audioManager = audio.getAudioManager();
1493 1494 1495 1496 1497 1498 1499 1500 1501
audioManager.isMicrophoneMute((err, value) => {
    if (err) {
        console.error('Failed to obtain the mute status of the microphone. ${err.message}');
        return;
    }
    console.log('Callback invoked to indicate that the mute status of the microphone is obtained.' + value);
})
```

Z
zengyawen 已提交
1502
### isMicrophoneMute
1503

Z
zengyawen 已提交
1504
isMicrophoneMute(): Promise&lt;boolean&gt;
1505

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

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

1510 1511
**返回值:**

Z
zengyawen 已提交
1512 1513
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
Z
zengyawen 已提交
1514
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1515 1516 1517

**示例:**

Z
zengyawen 已提交
1518

1519
```
Z
zengyawen 已提交
1520
var audioManager = audio.getAudioManager();
A
AOL 已提交
1521
audioManager.isMicrophoneMute().then((value) => {
1522
    console.log('Promise returned to indicate that the mute status of the microphone is obtained.', + value);
A
AOL 已提交
1523
})
1524 1525
```

L
lwx1059628 已提交
1526
### on('volumeChange')<sup>8+</sup>
Z
zengyawen 已提交
1527 1528 1529 1530 1531

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

监听系统音量变化事件。

L
lwx1059628 已提交
1532 1533
此接口为系统接口,三方应用不支持。

Z
zengyawen 已提交
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

```
audioManager.on('volumeChange', (volumeEvent) => {
    console.log('VolumeType of stream: ' + volumeEvent.volumeType);
    console.log('Volume level: ' + volumeEvent.volume);
    console.log('Whether to updateUI: ' + volumeEvent.updateUi);
})
```

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

A
AOL 已提交
1555
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
Z
zengyawen 已提交
1556 1557 1558

监听铃声模式变化事件。

L
lwx1059628 已提交
1559 1560
此接口为系统接口,三方应用不支持。

Z
zengyawen 已提交
1561 1562 1563 1564 1565 1566 1567 1568
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

L
lwx1059628 已提交
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
### on('deviceChange')

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

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

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

**参数:**

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

**示例:**

```
audioManager.on('deviceChange', (deviceChanged) => {
    console.info("device change type : " + deviceChanged.type);
    console.info("device descriptor size : " + deviceChanged.deviceDescriptors.length);
    console.info("device change descriptor : " + deviceChanged.deviceDescriptors[0].deviceRole);
    console.info("device change descriptor : " + deviceChanged.deviceDescriptors[0].deviceType);
});
```

### off('deviceChange')

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**示例:**

```
audioManager.off('deviceChange', (deviceChanged) => {
    console.log("Should be no callback.");
});
```

1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
### on('interrupt')

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**示例:**

```
var interAudioInterrupt = {
    streamUsage:2,
    contentType:0,
    pauseWhenDucked:true
};
this.audioManager.on('interrupt', interAudioInterrupt, (InterruptAction) => {
    if (InterruptAction.actionType === 0) {
        console.log("An event to gain the audio focus starts.");
        console.log("Focus gain event:" + JSON.stringify(InterruptAction));
    }
    if (InterruptAction.actionType === 1) {
        console.log("An audio interruption event starts.");
        console.log("Audio interruption event:" + JSON.stringify(InterruptAction));
    }
});
```

### off('interrupt')

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**示例:**

```
var interAudioInterrupt = {
    streamUsage:2,
    contentType:0,
    pauseWhenDucked:true
};
this.audioManager.off('interrupt', interAudioInterrupt, (InterruptAction) => {
    if (InterruptAction.actionType === 0) {
        console.log("An event to release the audio focus starts.");
        console.log("Focus release event:" + JSON.stringify(InterruptAction));
    }
});
```

L
lwx1059628 已提交
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804
### setAudioScene<sup>8+</sup>

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

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

此接口为系统接口,三方应用不支持。

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

**参数:**

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

**示例:**

```
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
   if (err) {
       console.error('Failed to set the audio scene mode.​ ${err.message}');
       return;
    }
    console.log('Callback invoked to indicate a successful setting of the audio scene mode.');
});
```

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

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

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

此接口为系统接口,三方应用不支持。

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

**Parameters**

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

**返回值:**

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

**示例:**

```
audioManager.setAudioScene(audio.AudioSceneMode.AUDIO_SCENE_PHONE_CALL).then(() => {
    console.log('Promise returned to indicate a successful setting of the audio scene mode.');
}).catch ((err) => {
    console.log('Failed to set the audio scene mode');
});
```

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

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

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

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

**参数:**

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

**示例:**

```
audioManager.getAudioScene((err, value) => {
   if (err) {
       console.error('Failed to obtain the audio scene mode.​ ${err.message}');
       return;
   }
   console.log('Callback invoked to indicate that the audio scene mode is obtained.' + value);
});
```


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

getAudioScene\(\): Promise<AudioScene\>

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

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

**返回值:**

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

**示例:**

```
audioManager.getAudioScene().then((value) => {
    console.log('Promise returned to indicate that the audio scene mode is obtained.' + value);
}).catch ((err) => {
    console.log('Failed to obtain the audio scene mode');
});
```

Z
zengyawen 已提交
1805
## AudioDeviceDescriptor
1806 1807 1808

描述音频设备。

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

Z
zengyawen 已提交
1811 1812 1813 1814
| 名称       | 参数型                    | 可读 | 可写 | 说明       |
| ---------- | ------------------------- | ---- | ---- | ---------- |
| deviceRole | [DeviceRole](#devicerole) | 是   | 否   | 设备角色。 |
| deviceType | [DeviceType](#devicetype) | 是   | 否   | 设备类型。 |
Z
zengyawen 已提交
1815 1816

## AudioDeviceDescriptors
M
mamingshuai 已提交
1817

Z
zengyawen 已提交
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Device

| 名称         | 描述                                |
| ------------ | ----------------------------------- |
| 设备属性数组 | AudioDeviceDescriptor的数组,只读。 |

**示例:**

```
function deviceProp(audioDeviceDescriptor, index, array) {
    deviceRoleValue = audioDeviceDescriptor.deviceRole;
    deviceTypeValue = audioDeviceDescriptor.deviceType;
}

deviceRoleValue = null;
deviceTypeValue = null;
const promise = audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG);
promise.then(async function (audioDeviceDescriptors) {
    console.info('getDevices OUTPUT_DEVICES_FLAG');
    audioDeviceDescriptors.forEach(deviceProp);
    if (deviceTypeValue != null && deviceRoleValue != null){
        console.info('OUTPUT_DEVICES_FLAG : Pass');
            expect(true).assertTrue();
    }
    else{
        console.error('OUTPUT_DEVICES_FLAG : fail');
        expect(false).assertTrue();
        }
    });
    await promise;
    done();
})
```

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

L
lwx1059628 已提交
1854 1855 1856 1857 1858 1859 1860 1861 1862
提供音频渲染的相关接口。在调用AudioRenderer的接口前,需要先通过[createAudioRenderer](#audiocreateaudiorenderer8)创建实例。

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

### state<sup>8+</sup>

只读 state: AudioState 

定义当前渲染器的状态。
Z
zengyawen 已提交
1863

L
lwx1059628 已提交
1864
**参数:**
Z
zengyawen 已提交
1865

L
lwx1059628 已提交
1866
| 名称  | 参数型                     | 可读 | 可写 | 说明               |
Z
zengyawen 已提交
1867
| ----- | -------------------------- | ---- | ---- | ------------------ |
L
lwx1059628 已提交
1868
| state | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879

**示例:**

```
var state = audioRenderer.state;
```

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

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

L
lwx1059628 已提交
1880
获取当前被创建的音频渲染器的信息,使用callback方式异步返回结果。
Z
zengyawen 已提交
1881 1882 1883 1884 1885

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

**参数:**

L
lwx1059628 已提交
1886 1887 1888
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904

**示例:**

```
audioRenderer.getRendererInfo((err, rendererInfo)=>{
    console.log('Renderer GetRendererInfo:');
    console.log('Renderer content:' + rendererInfo.content);
    console.log('Renderer usage:' + rendererInfo.usage);
    console.log('Renderer flags:' + rendererInfo.rendererFlags);
})
```

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

getRendererInfo(): Promise<AudioRendererInfo\>

L
lwx1059628 已提交
1905
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
1906 1907 1908 1909 1910 1911 1912

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

**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
L
lwx1059628 已提交
1913
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
Z
zengyawen 已提交
1914 1915 1916 1917 1918 1919 1920

**示例:**

```
let streamInfo = await audioRenderer.getStreamInfo();
console.log('Renderer GetStreamInfo:');
console.log('Renderer sampling rate:' + streamInfo.samplingRate);
L
lwx1059628 已提交
1921 1922 1923
console.log('Renderer channel:' + streamInfo.channels);
console.log('Renderer format:' + streamInfo.sampleFormat);
console.log('Renderer encoding type:' + streamInfo.encodingType);
Z
zengyawen 已提交
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
```

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

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

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

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

**参数:**

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

**示例:**

```
audioRenderer.getStreamInfo((err, streamInfo)=>{
    console.log('Renderer GetStreamInfo:');
    console.log('Renderer sampling rate:' + streamInfo.samplingRate);
L
lwx1059628 已提交
1946 1947 1948
    console.log('Renderer channel:' + streamInfo.channels);
    console.log('Renderer format:' + streamInfo.sampleFormat);
    console.log('Renderer encoding type:' + streamInfo.encodingType);
Z
zengyawen 已提交
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
})
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

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

**返回值:**

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

**示例:**

```
let streamInfo = await audioRenderer.getStreamInfo();
console.log('Renderer GetStreamInfo:');
console.log('Renderer sampling rate:' + streamInfo.samplingRate);
console.log('Renderer channel:' + streamInfo.AudioChannel);
console.log('Renderer format:' + streamInfo.AudioSampleFormat);
console.log('Renderer encoding type:' + streamInfo.AudioEncodingType);
```

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

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

L
lwx1059628 已提交
1981
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006

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

**参数:**

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

**示例:**

```
audioRenderer.start((err)=>{
    if (err) {
        console.error('Renderer start failed.');
    } else {
        console.info('Renderer start success.');
    }
})
```

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

start(): Promise<void\>

L
lwx1059628 已提交
2007
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026

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

**返回值:**

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

**示例:**

```
await audioRenderer.start();
```

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

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

L
lwx1059628 已提交
2027
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052

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

**参数:**

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

**示例:**

```
audioRenderer.pause((err)=>{
    if (err) {
        console.error('Renderer pause failed');
    } else {
        console.log('Renderer paused.');
    }
})
```

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

pause(): Promise\<void>

L
lwx1059628 已提交
2053
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072

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

**返回值:**

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

**示例:**

```
await audioRenderer.pause();
```

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

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

L
lwx1059628 已提交
2073
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098

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

**参数:**

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

**示例:**

```
audioRenderer.drain((err)=>{
    if (err) {
        console.error('Renderer drain failed');
    } else {
        console.log('Renderer drained.');
    }
})
```

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

drain(): Promise\<void>

L
lwx1059628 已提交
2099
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118

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

**返回值:**

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

**示例:**

```
await audioRenderer.drain();
```

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

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

L
lwx1059628 已提交
2119
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144

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

**参数:**

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

**示例:**

```
audioRenderer.stop((err)=>{
    if (err) {
        console.error('Renderer stop failed');
    } else {
        console.log('Renderer stopped.');
    }
})
```

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

stop(): Promise\<void>

L
lwx1059628 已提交
2145
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164

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

**返回值:**

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

**示例:**

```
await audioRenderer.stop();
```

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

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

L
lwx1059628 已提交
2165
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268

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

**参数:**

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

**示例:**

```
audioRenderer.release((err)=>{
    if (err) {
        console.error('Renderer release failed');
    } else {
        console.log('Renderer released.');
    }
})
```

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

release(): Promise\<void>

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

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

**返回值:**

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

**示例:**

```
await audioRenderer.release();
```

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

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

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

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

**参数:**

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

**示例:**

```
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
audioRenderer.write(buf, (err, writtenbytes)=>{
    if (writtenbytes < 0) {
	    console.error('write failed.');
    } else {
       console.log('Actual written bytes: ' + writtenbytes);
    }
})
```

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

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

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

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

**返回值:**

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

**示例:**

```
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
let writtenbytes = await audioRenderer.write(buf);
if (writtenbytes < 0) {
	console.error('write failed.');
} else {
    console.log('Actual written bytes: ' + writtenbytes);
}
```

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

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

L
lwx1059628 已提交
2269
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明             |
| -------- | ---------------------- | ---- | ---------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回时间戳。 |

**示例:**

```
audioRenderer.getAudioTime((err, timestamp)=>{
    console.log('Current timestamp: ' + timestamp);
})
```

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

getAudioTime(): Promise\<number>

L
lwx1059628 已提交
2291
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311

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

**返回值:**

| 类型             | 描述                    |
| ---------------- | ----------------------- |
| Promise\<number> | Promise回调返回时间戳。 |

**示例:**

```
let timestamp = await audioRenderer.getAudioTime();
console.log('Current timestamp: ' + timestamp);
```

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

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

L
lwx1059628 已提交
2312
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
Z
zengyawen 已提交
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<number> | 是   | 回调返回缓冲区大小。 |

**示例:**

```
audioRenderer.getBufferSize((err, bufferSize)=>{
    if (err) {
        console.error('getBufferSize error');
    }
})
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
```

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

getBufferSize(): Promise\<number>

L
lwx1059628 已提交
2338
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359

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

**返回值:**

| 类型             | 说明                        |
| ---------------- | --------------------------- |
| Promise\<number> | promise回调返回缓冲区大小。 |

**示例:**

```
var bufferSize = await audioRenderer.getBufferSize();
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
```

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

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

L
lwx1059628 已提交
2360
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
2361 2362 2363 2364 2365 2366 2367

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

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
L
lwx1059628 已提交
2368
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
Z
zengyawen 已提交
2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

```
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err)=> {
    if (err) {
	    console.error('Failed to set params');
    } else {
        console.log('Callback invoked to indicate a successful render rate setting.');
    }
})
```

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

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

L
lwx1059628 已提交
2387
设置音频渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2388 2389 2390 2391 2392 2393 2394

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

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
L
lwx1059628 已提交
2395
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
Z
zengyawen 已提交
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412

**返回值:**

| 类型           | 说明                      |
| -------------- | ------------------------- |
| Promise\<void> | Promise用于返回执行结果。 |

**示例:**

```
await audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL);
```

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

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

L
lwx1059628 已提交
2413
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
2414 2415 2416 2417 2418 2419 2420

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

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
L
lwx1059628 已提交
2421
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434

**示例:**

```
audioRenderer.getRenderRate((err, renderrate)=>{
    console.log('getRenderRate: ' + renderrate);
})
```

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

getRenderRate(): Promise\<AudioRendererRate>

L
lwx1059628 已提交
2435
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
2436 2437 2438 2439 2440 2441 2442

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

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
L
lwx1059628 已提交
2443
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
2444 2445 2446 2447 2448 2449 2450 2451

**示例:**

```
let renderRate = await audioRenderer.getRenderRate();
console.log('getRenderRate: ' + renderrate);
```

L
lwx1059628 已提交
2452
### on('interrupt')<sup>9+</sup>
Z
zengyawen 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464

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

监听音频中断事件。使用callback获取中断事件。

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

**参数:**

| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'interrupt'(中断事件被触发,音频播放被中断。) |
L
lwx1059628 已提交
2465
| callback | Callback<[InterruptEvent](#interruptevent9)> | 是   | 被监听的中断事件的回调。                                     |
Z
zengyawen 已提交
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496

**示例:**

```
audioRenderer.on('interrupt', (interruptEvent) => {
    if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
        switch (interruptEvent.hintType) {
            case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
                console.log('Force paused. Stop writing');
                isPlay = false;
                break;
            case audio.InterruptHint.INTERRUPT_HINT_STOP:
                console.log('Force stopped. Stop writing');
                isPlay = false;
                break;
        }
    } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
         switch (interruptEvent.hintType) {
            case audio.InterruptHint.INTERRUPT_HINT_RESUME:
                console.log('Resume force paused renderer or ignore');
                startRenderer();
                break;
            case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
                console.log('Choose to pause or ignore');
                pauseRenderer();
                break;
        }
    }
})
```

L
lwx1059628 已提交
2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
### on('markReach')<sup>8+</sup>

on(type: 'markReach', frame: number, callback: (position: number) => {}): void

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

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
| callback | (position: number) => {} | 是   | 触发事件时调用的回调。                    |

**示例:**

```
audioRenderer.on('markReach', 1000, (position) => {
    if (position == "1000") {
        console.log('ON Triggered successfully');
    }
});
```


### off('markReach') <sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                              |
| :----- | :----- | :--- | :------------------------------------------------ |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'markReach'。 |

**示例:**

```
audioRenderer.off('markReach');
```

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

L
lwx1059628 已提交
2546
on(type: "periodReach", frame: number, callback: (position: number) => {}): void
Z
zengyawen 已提交
2547

L
lwx1059628 已提交
2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
| callback | (position: number) => {} | 是   | 触发事件时调用的回调。                      |

**示例:**

```
audioRenderer.on('periodReach', 1000, (position) => {
    if (position == "1000") {
        console.log('ON Triggered successfully');
    }
});
```

### off('periodReach') <sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                                |
| :----- | :----- | :--- | :-------------------------------------------------- |
| type   | string | 是   | 要取消订阅事件的类型。支持的事件为:'periodReach'。 |

**示例:**

```
audioRenderer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#AudioState8) | 是   | 返回监听的状态。                            |

**示例:**

```
audioRenderer.on('stateChange', (state) => {
    if (state == 1) {
        console.log("audio renderer state is: STATE_PREPARED");
    }
    if (state == 2) {
        console.log("audio renderer state is: STATE_RUNNING");
    }
});
```

## AudioCapturer<sup>8+</sup>

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

### state<sup>8+</sup>

只读 state: AudioState

定义当前采集器状态。

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

| 名称  | 参数型                     | 可读 | 可写 | 说明             |
| :---- | :------------------------- | :--- | :--- | :--------------- |
| state | [AudioState](#audiostate8) | Yes  | No   | 音频采集器状态。 |

**示例:**

```
var state = audioCapturer.state;
```

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

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

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

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

**参数:**

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

**示例:**

```
audioCapturer.getCapturerInfo((err, capturerInfo)=>{
    if (err) {
        console.error('Failed to get capture info');
    } else {
        console.log('Capturer getCapturerInfo:');
        console.log('Capturer source:' + capturerInfo.source);
        console.log('Capturer flags:' + capturerInfo.capturerFlags);
    }
});
```


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

getCapturerInfo(): Promise<AudioCapturerInfo\>

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

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

**返回值:**

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

**示例:**

```
audioCapturer.getCapturerInfo().then((capturerInfo) => {
    console.log('Capturer getCapturerInfo:');
    console.log('Capturer source:' + capturerInfo.source);
    console.log('Capturer flags:' + capturerInfo.capturerFlags);
}).catch ((err) => {
    console.log("Failed to get capturer info");
});
```

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

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

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

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

**参数:**

| 参数名   | 类型                                                      | 必填 | 说明                             |
| :------- | :-------------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#AudioRendererOptions8)\> | 是   | 使用callback方式异步返回流信息。 |

**示例:**

```
audioCapturer.start((err)=>{
    if (err) {
        console.error('Failed to get stream info');
    } else {
        console.log('Capturer GetStreamInfo:');
        console.log('Capturer sampling rate:' + streamInfo.samplingRate);
        console.log('Capturer channel:' + streamInfo.channels);
        console.log('Capturer format:' + streamInfo.sampleFormat);
        console.log('Capturer encoding type:' + streamInfo.encodingType);
    }
});
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

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

**返回值:**

| 类型                                                | 说明                            |
| :-------------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#AudioRendererOptions8)\> | 使用Promise方式异步返回流信息。 |

**示例:**

```
audioCapturer.getStreamInfo().then((streamInfo) => {
    console.log('Capturer GetStreamInfo:');
    console.log('Capturer sampling rate:' + streamInfo.samplingRate);
    console.log('Capturer channel:' + streamInfo.channels);
    console.log('Capturer format:' + streamInfo.sampleFormat);
    console.log('Capturer encoding type:' + streamInfo.encodingType);
}).catch ((err) => {
    console.log("Failed to get stream info");
});
```

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

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

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

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

**参数**

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

**示例:**

```
audioCapturer.start((err)=>{
    if (err) {
        console.error('Capturer start failed.');
    } else {
        console.info('Capturer start success.');
    }
});
```


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

start(): Promise<void\>

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

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

**返回值:**

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

**示例:**

```
audioCapturer.start().then(() => {
    console.log("capturer start success");
}).catch ((err) => {
    console.log("Failed to start capturer");
});
```

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

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

停止采集。使用callback方式异步返回结果。

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

**参数:**

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

**示例:**

```
audioCapturer.stop((err)=>{
    if (err) {
        console.error('Capturer stop failed');
    } else {
        console.log('Capturer stopped.');
    }
});
```


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

stop(): Promise<void\>

停止采集。使用Promise方式异步返回结果。

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

**返回值:**

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

**示例:**

```
audioCapturer.stop().then(() => {
    console.log("capturer stop success");
}).catch ((err) => {
    console.log("Failed to stop capturer");
});
```

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

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

释放采集器。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明                                |
| :------- | :------------------- | :--- | :---------------------------------- |
| callback | AsyncCallback<void\> | 是   | Callback used to return the result. |

**示例:**

```
audioCapturer.release((err)=>{
    if (err) {
        console.error('capturer release failed');
    } else {
        console.log('capturer released.');
    }
});
```


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

release(): Promise<void\>

释放采集器。使用Promise方式异步返回结果。

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

**返回值:**

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

**示例:**

```
audioCapturer.release().then(() => {
    console.log("capturer release success");
}).catch ((err) => {
    console.log("Failed to release capturer");
});
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean, callback: AsyncCallback<ArrayBuffer\>): void

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

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

**参数**

| 参数名         | 类型                        | 必填 | 说明                             |
| :------------- | :-------------------------- | :--- | :------------------------------- |
| size           | number                      | 是   | 读入的字节数。                   |
| isBlockingRead | boolean                     | 是   | 是否阻塞读操作。                 |
| callback       | AsyncCallback<ArrayBuffer\> | 是   | 使用callback方式异步返回缓冲区。 |

**示例:**

```
audioCapturer.read(bufferSize, true, async(err, buffer) => {
    if (!err) {
        console.log("Success in reading the buffer data");
        var number = fileio.writeSync(fd, buffer);
    }
};
```


### read<sup>8+</sup>

read(size: number, isBlockingRead: boolean): Promise<ArrayBuffer\>

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

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

**参数:**

| 参数名         | 类型    | 必填 | 说明             |
| :------------- | :------ | :--- | :--------------- |
| size           | number  | 是   | 读入的字节数。   |
| isBlockingRead | boolean | 是   | 是否阻塞读操作。 |

**返回值:**

| 类型                  | 说明                                                   |
| :-------------------- | :----------------------------------------------------- |
| Promise<ArrayBuffer\> | 如果操作成功,返回读取的缓冲区数据;否则返回错误代码。 |

**示例:**

```
audioCapturer.read(size, true).then((buffer) => {
    console.log("Success in reading the buffer data");
    var number = fileio.writeSync(fd, buffer);
}).catch ((err) => {
    console.log("Failed to read data!");
});
```


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

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

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

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                           |
| :------- | :--------------------- | :--- | :----------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回结果。 |

**示例:**

```
audioCapturer.getAudioTime((err, timestamp)=>{
    console.log('Current timestamp: ' + timestamp);
});
```


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

getAudioTime(): Promise<number\>

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

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

**返回值:**

| 类型             | 说明                          |
| :--------------- | :---------------------------- |
| Promise<number\> | 使用Promise方式异步返回结果。 |

**示例:**

```
audioCapturer.getAudioTime().then((audioTime) => {
    console.log("Success in getting the audio time");
}).catch ((err) => {
    console.log("Failed to get the audio time");
});
```


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

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

获取采集器合理的最小缓冲区大小。使用callback方式异步返回结果。

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                 |
| :------- | :--------------------- | :--- | :----------------------------------- |
| callback | AsyncCallback<number\> | 是   | 使用callback方式异步返回缓冲区大小。 |

**示例:**

```
audioCapturer.getBufferSize((err, bufferSize)=>{
    if (!err) {
        console.log('BufferSize : ' + bufferSize);
        var buffer = await audioCapturer.read(bufferSize, true);
    }
});
```


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

getBufferSize(): Promise<number\>

获取采集器合理的最小缓冲区大小。使用Promise方式异步返回结果。

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

**返回值:**

| 类型             | 说明                                |
| :--------------- | :---------------------------------- |
| Promise<number\> | 使用Promise方式异步返回缓冲区大小。 |

**示例:**

```
audioCapturer.getBufferSize().then((bufferSize) => {
    console.log("Success in getting the buffer size");
    var buffer = await audioCapturer.read(bufferSize, true);
}).catch ((err) => {
    console.log("Failed to get the buffer size");
});
```


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

on(type: 'markReach', frame: number, callback: (position: number) => {}): void

订阅标记到达的事件。 当采集的帧数达到 frame 参数的值时,回调被触发。

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                       |
| :------- | :---------------------- | :--- | :----------------------------------------- |
| type     | string                  | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                  | 是   | 触发事件的帧数。 该值必须大于0。           |
| callback | position: number) => {} | 是   | 使用callback方式异步返回被触发事件的回调。 |

**示例:**

```
audioCapturer.on('markReach', 1000, (position) => {
    if (position == "1000") {
        console.log('ON Triggered successfully');
    }
});
```

### off('markReach')<sup>8+</sup>

off(type: 'markReach'): void

取消订阅标记到达的事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                          |
| :----- | :----- | :--- | :-------------------------------------------- |
| type   | string | 是   | 取消事件回调类型,支持的事件为:'markReach'。 |

**示例:**

```
audioCapturer.off('markReach');
```

### on('periodReach')<sup>8+</sup>

on(type: "periodReach", frame: number, callback: (position: number) => {}): void

订阅到达标记的事件。 当采集的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
| callback | (position: number) => {} | 是   | 使用callback方式异步返回被触发事件的回调    |

**示例:**

```
audioCapturer.on('periodReach', 1000, (position) => {
    if (position == "1000") {
        console.log('ON Triggered successfully');
    }
});
```

### off('periodReach')<sup>8+</sup>

off(type: 'periodReach'): void

取消订阅标记到达的事件。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                            |
| :----- | :----- | :--- | :---------------------------------------------- |
| type   | string | Yes  | 取消事件回调类型,支持的事件为:'periodReach'。 |

**示例:**

```
audioCapturer.off('periodReach')
```

### on('stateChange') <sup>8+</sup>

on(type: 'stateChange', callback: Callback<AudioState\>): void

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
| callback | [AudioState](#AudioState8) | 是   | 返回监听的状态。                            |

**示例:**

```
audioCapturer.on('stateChange', (state) => {
    if (state == 1) {
        console.log("audio capturer state is: STATE_PREPARED");
    }
    if (state == 2) {
        console.log("audio capturer state is: STATE_RUNNING");
    }
});
```