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

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

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

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

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

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

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

20 21
## 常量

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

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

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

**示例:**

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

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

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

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

获取音频管理器。

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

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

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

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

57 58
## audio.getStreamManager<sup>9+</sup>

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

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

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

65 66
**参数:**

67 68 69 70 71 72 73 74 75
| 参数名   | 类型                                                       | 必填 | 说明             |
| -------- | --------------------------------------------------------- | ---- | ---------------- |
| callback | AsyncCallback<[AudioStreamManager](#audiostreammanager9)> | 是   | 返回音频流管理器实例。 |

**示例:**

```js
audio.getStreamManager((err, data) => {
  if (err) {
76
    console.error(`getStreamManager : Error: ${err}`);
77 78 79 80 81 82 83 84 85 86 87 88
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    let audioStreamManager = data;
  }
});
```

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

getStreamManager(): Promise<AudioStreamManager\>

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

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

92
**返回值:**
93

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

98
**示例:**
99

J
jiao_yanlin 已提交
100
```js
101 102 103 104 105
var audioStreamManager;
audio.getStreamManager().then((data) => {
  audioStreamManager = data;
  console.info('getStreamManager: Success!');
}).catch((err) => {
106
  console.error(`getStreamManager: ERROR : ${err}`);
107 108
});

109 110
```

Z
zengyawen 已提交
111 112
## audio.createAudioRenderer<sup>8+</sup>

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

115
获取音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
116 117 118

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

119
**参数:**
Z
zengyawen 已提交
120

H
update  
HelloCrease 已提交
121 122 123
| 参数名   | 类型                                            | 必填 | 说明             |
| -------- | ----------------------------------------------- | ---- | ---------------- |
| options  | [AudioRendererOptions](#audiorendereroptions8)  | 是   | 配置渲染器。     |
M
magekkkk 已提交
124
| callback | AsyncCallback<[AudioRenderer](#audiorenderer8)> | 是   | 音频渲染器对象。 |
L
lwx1059628 已提交
125 126 127

**示例:**

J
jiao_yanlin 已提交
128
```js
L
lwx1059628 已提交
129
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
130
var audioStreamInfo = {
J
jiao_yanlin 已提交
131 132 133 134
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
135 136 137
}

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

var audioRendererOptions = {
J
jiao_yanlin 已提交
144 145
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
L
lwx1059628 已提交
146 147 148
}

audio.createAudioRenderer(audioRendererOptions,(err, data) => {
J
jiao_yanlin 已提交
149
  if (err) {
150
    console.error(`AudioRenderer Created: Error: ${err}`);
J
jiao_yanlin 已提交
151
  } else {
152
    console.info('AudioRenderer Created: Success: SUCCESS');
J
jiao_yanlin 已提交
153 154
    let audioRenderer = data;
  }
L
lwx1059628 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
});
```

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

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

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

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

**参数:**

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

**返回值:**

| 类型                                      | 说明             |
| ----------------------------------------- | ---------------- |
176
| Promise<[AudioRenderer](#audiorenderer8)> | 音频渲染器对象。 |
Z
zengyawen 已提交
177 178 179

**示例:**

J
jiao_yanlin 已提交
180
```js
L
lwx1059628 已提交
181 182
import audio from '@ohos.multimedia.audio';

Z
zengyawen 已提交
183
var audioStreamInfo = {
J
jiao_yanlin 已提交
184 185 186 187
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
Z
zengyawen 已提交
188 189 190
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
191 192
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
193
  rendererFlags: 0
Z
zengyawen 已提交
194 195 196
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
197 198
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
Z
zengyawen 已提交
199 200
}

L
lwx1059628 已提交
201 202
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
203
  audioRenderer = data;
204
  console.info('AudioFrameworkRenderLog: AudioRenderer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
205
}).catch((err) => {
206
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created : ERROR : ${err}`);
L
lwx1059628 已提交
207
});
Z
zengyawen 已提交
208
```
Z
zengyawen 已提交
209

L
lwx1059628 已提交
210 211 212 213 214 215 216 217 218 219
## audio.createAudioCapturer<sup>8+</sup>

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

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

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

**参数:**

H
update  
HelloCrease 已提交
220 221
| 参数名   | 类型                                            | 必填 | 说明             |
| :------- | :---------------------------------------------- | :--- | :--------------- |
Z
zengyawen 已提交
222
| options  | [AudioCapturerOptions](#audiocaptureroptions8)  | 是   | 配置音频采集器。 |
M
magekkkk 已提交
223
| callback | AsyncCallback<[AudioCapturer](#audiocapturer8)> | 是   | 音频采集器对象。 |
L
lwx1059628 已提交
224 225 226

**示例:**

J
jiao_yanlin 已提交
227
```js
L
lwx1059628 已提交
228
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
229
var audioStreamInfo = {
J
jiao_yanlin 已提交
230 231 232 233
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
234 235 236
}

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

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

J
jiao_yanlin 已提交
246
audio.createAudioCapturer(audioCapturerOptions, (err, data) => {
J
jiao_yanlin 已提交
247
  if (err) {
248
    console.error(`AudioCapturer Created : Error: ${err}`);
J
jiao_yanlin 已提交
249
  } else {
250
    console.info('AudioCapturer Created : Success : SUCCESS');
J
jiao_yanlin 已提交
251 252
    let audioCapturer = data;
  }
L
lwx1059628 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265
});
```

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

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

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

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

**参数:**

Z
zengyawen 已提交
266 267 268
| 参数名  | 类型                                           | 必填 | 说明             |
| :------ | :--------------------------------------------- | :--- | :--------------- |
| options | [AudioCapturerOptions](#audiocaptureroptions8) | 是   | 配置音频采集器。 |
L
lwx1059628 已提交
269 270 271 272 273

**返回值:**

| 类型                                      | 说明           |
| ----------------------------------------- | -------------- |
M
magekkkk 已提交
274
| Promise<[AudioCapturer](#audiocapturer8)> | 音频采集器对象 |
L
lwx1059628 已提交
275 276 277

**示例:**

J
jiao_yanlin 已提交
278
```js
L
lwx1059628 已提交
279 280
import audio from '@ohos.multimedia.audio';

L
lwx1059628 已提交
281
var audioStreamInfo = {
J
jiao_yanlin 已提交
282 283 284 285
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
L
lwx1059628 已提交
286 287 288
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
289
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
290
  capturerFlags: 0
L
lwx1059628 已提交
291 292 293
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
294 295
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
296 297
}

L
lwx1059628 已提交
298
var audioCapturer;
R
rahul 已提交
299
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
300
  audioCapturer = data;
301
  console.info('AudioCapturer Created : Success : Stream Type: SUCCESS');
L
lwx1059628 已提交
302
}).catch((err) => {
303
  console.error(`AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
304
});
L
lwx1059628 已提交
305 306
```

Z
zengyawen 已提交
307
## AudioVolumeType
M
mamingshuai 已提交
308

309
枚举,音频流类型。
M
mamingshuai 已提交
310

Z
zengyawen 已提交
311 312 313 314 315 316 317 318
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

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

321
## InterruptMode<sup>9+</sup>
322

323
枚举,焦点模型。
324

325
**系统能力:** SystemCapability.Multimedia.Audio.Core
326 327 328

| 名称                         | 默认值 | 描述       |
| ---------------------------- | ------ | ---------- |
329 330
| SHARE_MODE      | 0      | 共享焦点模式。 |
| INDEPENDENT_MODE| 1      | 独立焦点模式。     |
331

Z
zengyawen 已提交
332
## DeviceFlag
M
mamingshuai 已提交
333

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

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

338 339
| 名称                            | 默认值  | 描述                                              |
| ------------------------------- | ------ | ------------------------------------------------- |
340 341 342 343 344 345 346
| NONE_DEVICES_FLAG<sup>9+</sup>  | 0      | 无 <br/>此接口为系统接口,三方应用不支持调用。        |
| OUTPUT_DEVICES_FLAG             | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG              | 2      | 输入设备。 |
| ALL_DEVICES_FLAG                | 3      | 所有设备。 |
| DISTRIBUTED_OUTPUT_DEVICES_FLAG<sup>9+</sup> | 4   | 分布式输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| DISTRIBUTED_INPUT_DEVICES_FLAG<sup>9+</sup>  | 8   | 分布式输入设备。<br/>此接口为系统接口,三方应用不支持调用。  |
| ALL_DISTRIBUTED_DEVICES_FLAG<sup>9+</sup>    | 12  | 分布式输入和输出设备。<br/>此接口为系统接口,三方应用不支持调用。  |
Z
zengyawen 已提交
347 348 349


## DeviceRole
M
mamingshuai 已提交
350

351
枚举,设备角色。
M
mamingshuai 已提交
352

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

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


Z
zengyawen 已提交
361 362 363
## DeviceType

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

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

367 368 369 370 371 372 373 374 375 376 377 378
| 名称                 | 默认值 | 描述                                                      |
| ---------------------| ------ | --------------------------------------------------------- |
| INVALID              | 0      | 无效设备。                                                |
| EARPIECE             | 1      | 听筒。                                                    |
| SPEAKER              | 2      | 扬声器。                                                  |
| WIRED_HEADSET        | 3      | 有线耳机,带麦克风。                                      |
| WIRED_HEADPHONES     | 4      | 有线耳机,无麦克风。                                      |
| BLUETOOTH_SCO        | 7      | 蓝牙设备SCO(Synchronous Connection Oriented)连接。      |
| BLUETOOTH_A2DP       | 8      | 蓝牙设备A2DP(Advanced Audio Distribution Profile)连接。 |
| MIC                  | 15     | 麦克风。                                                  |
| USB_HEADSET          | 22     | USB耳机,带麦克风。                                       |
| DEFAULT<sup>9+</sup> | 1000   | 默认设备类型。                                            |
M
magekkkk 已提交
379

Z
zengyawen 已提交
380
## ActiveDeviceType
M
magekkkk 已提交
381

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

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

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

Z
zengyawen 已提交
391
## AudioRingMode
392 393 394

枚举,铃声模式。

Z
zengyawen 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Communication

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

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

枚举,音频采样格式。

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

409 410 411 412 413 414 415 416
| 名称                                | 默认值 | 描述                       |
| ---------------------------------- | ------ | -------------------------- |
| SAMPLE_FORMAT_INVALID              | -1     | 无效格式。                 |
| SAMPLE_FORMAT_U8                   | 0      | 无符号8位整数。            |
| SAMPLE_FORMAT_S16LE                | 1      | 带符号的16位整数,小尾数。 |
| SAMPLE_FORMAT_S24LE                | 2      | 带符号的24位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_S32LE                | 3      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
| SAMPLE_FORMAT_F32LE<sup>9+</sup>   | 4      | 带符号的32位整数,小尾数。 <br>由于系统限制,该采样格式仅部分设备支持,请根据实际情况使用。|
Z
zengyawen 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459

## 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 已提交
460
## ContentType
Z
zengyawen 已提交
461 462 463 464 465

枚举,音频内容类型。

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

L
lwx1059628 已提交
466 467 468 469 470 471 472 473
| 名称                               | 默认值 | 描述       |
| ---------------------------------- | ------ | ---------- |
| 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 已提交
474

L
lwx1059628 已提交
475
## StreamUsage
Z
zengyawen 已提交
476 477 478 479 480 481 482 483 484 485

枚举,音频流使用类型。

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

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

488
## FocusType<sup>9+</sup>
489

490
表示焦点类型的枚举。
491

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

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

496 497 498
| 名称                               | 默认值  | 描述                            |
| ---------------------------------- | ------ | ------------------------------- |
| FOCUS_TYPE_RECORDING               | 0      |  在录制场景使用,可打断其他音频。  |
499 500


Z
zengyawen 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
## 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 已提交
519
枚举,音频渲染速度。
Z
zengyawen 已提交
520 521 522 523 524 525 526 527 528

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

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

L
lwx1059628 已提交
529
## InterruptType
Z
zengyawen 已提交
530 531 532 533

枚举,中断类型。

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

Z
zengyawen 已提交
535 536 537 538 539
| 名称                 | 默认值 | 描述                   |
| -------------------- | ------ | ---------------------- |
| INTERRUPT_TYPE_BEGIN | 1      | 音频播放中断事件开始。 |
| INTERRUPT_TYPE_END   | 2      | 音频播放中断事件结束。 |

L
lwx1059628 已提交
540
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
541 542 543 544 545 546 547 548 549 550

枚举,强制打断类型。

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

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

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

枚举,中断提示。

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

L
lwx1059628 已提交
557 558 559 560 561 562 563 564
| 名称                               | 默认值 | 描述                                         |
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
565

566 567 568 569 570 571
## InterruptActionType

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

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

H
update  
HelloCrease 已提交
572 573 574 575
| 名称           | 默认值 | 描述               |
| -------------- | ------ | ------------------ |
| TYPE_ACTIVATED | 0      | 表示触发焦点事件。 |
| TYPE_INTERRUPT | 1      | 表示音频打断事件。 |
576

Z
zengyawen 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
## 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 已提交
592
音频渲染器信息。
Z
zengyawen 已提交
593 594 595

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

L
lwx1059628 已提交
596 597
| 名称          | 类型                        | 必填 | 说明             |
| ------------- | --------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
598
| content       | [ContentType](#contenttype) | 是   | 媒体类型。       |
L
lwx1059628 已提交
599 600
| usage         | [StreamUsage](#streamusage) | 是   | 音频流使用类型。 |
| rendererFlags | number                      | 是   | 音频渲染器标志。 |
Z
zengyawen 已提交
601 602 603

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

L
lwx1059628 已提交
604
音频渲染器选项信息。
Z
zengyawen 已提交
605 606 607 608 609 610

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

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

L
lwx1059628 已提交
613
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
614 615 616 617 618 619 620

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

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

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

625 626 627 628 629 630
## AudioInterrupt

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

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

H
update  
HelloCrease 已提交
631 632 633 634 635
| 名称            | 类型                        | 必填 | 说明                                                         |
| --------------- | --------------------------- | ---- | ------------------------------------------------------------ |
| streamUsage     | [StreamUsage](#streamusage) | 是   | 音频流使用类型。                                             |
| contentType     | [ContentType](#contenttype) | 是   | 音频打断媒体类型。                                           |
| pauseWhenDucked | boolean                     | 是   | 音频打断时是否可以暂停音频播放(true表示音频播放可以在音频打断期间暂停,false表示相反)。 |
636 637 638 639 640 641 642

## InterruptAction

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

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

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

Z
zengyawen 已提交
650 651 652 653
## VolumeEvent<sup>8+</sup>

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

654
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
655

Z
zengyawen 已提交
656 657 658 659 660 661 662
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称       | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| updateUi   | boolean                             | 是   | 在UI中显示音量变化。                                     |
W
wangtao 已提交
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
| volumeGroupId<sup>9+</sup>   | number            | 是   | 音量组id。可用于getGroupManager入参                      |
| networkId<sup>9+</sup>    | string               | 是   | 网络id。                                                |

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

枚举,设备连接类型。

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

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

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

音量组信息。

681
**系统接口:** 该接口为系统接口
W
wangtao 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696

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

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

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

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

697
**系统接口:** 该接口为系统接口
W
wangtao 已提交
698 699 700 701 702 703 704 705 706 707 708 709 710 711

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

**示例:**

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

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

L
lwx1059628 已提交
713 714 715 716
## DeviceChangeAction

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

717
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
718 719 720

| 名称              | 类型                                              | 必填 | 说明               |
| :---------------- | :------------------------------------------------ | :--- | :----------------- |
721 722
| type              | [DeviceChangeType](#devicechangetype)             | 是   | 设备连接状态变化。 |
| deviceDescriptors | [AudioDeviceDescriptors](#audiodevicedescriptors) | 是   | 设备信息。         |
L
lwx1059628 已提交
723 724 725 726 727 728 729 730 731 732 733 734

## DeviceChangeType

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

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

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

Z
zengyawen 已提交
735 736 737 738 739 740 741 742 743
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

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

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

L
lwx1059628 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
## AudioCapturerInfo<sup>8+</sup><a name="audiocapturerinfo"></a>

描述音频采集器信息。

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

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

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

枚举,音源类型。

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

Z
update  
zengyawen 已提交
763 764 765 766 767
| 名称                            | 默认值 | 描述                   |
| :------------------------------ | :----- | :--------------------- |
| SOURCE_TYPE_INVALID             | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                 | 0      | Mic音频源。            |
| SOURCE_TYPE_VOICE_COMMUNICATION | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
768 769 770 771 772 773 774

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

枚举,音频场景。

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

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

W
wangtao 已提交
782

Z
zengyawen 已提交
783
## AudioManager
M
mamingshuai 已提交
784

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

787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
### getRoutingManager<sup>9+</sup>

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

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

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

**参数:**

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

**示例:**
```js
803
await audioManager.getRoutingManager((err, callback) => {
804
  if (err) {
805
    console.error(`Result ERROR: ${err}`);
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
  }
  console.info('getRoutingManager Callback SUCCESS.');
  var audioRoutingManager;
  audioRoutingManager = callback;
});
```

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

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

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

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

**返回值:**

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

**示例:**
```js
await audioManager.getRoutingManager().then((value) => {
  var routingManager = value;
  console.info('getRoutingManager Promise SUCCESS.');
}).catch((err) => {
833
  console.error(`Result ERROR: ${err}`);
834 835 836
});
```

Z
zengyawen 已提交
837 838 839
### setVolume

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

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

843 844 845
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

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

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

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

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

Z
zengyawen 已提交
869 870 871
### setVolume

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

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

875 876 877
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
896
```js
A
AOL 已提交
897
audioManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
898
  console.info('Promise returned to indicate a successful volume setting.');
L
lwx1059628 已提交
899
});
M
mamingshuai 已提交
900 901
```

Z
zengyawen 已提交
902 903 904
### getVolume

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

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

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

M
mamingshuai 已提交
910 911
**参数:**

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

M
mamingshuai 已提交
917 918
**示例:**

J
jiao_yanlin 已提交
919
```js
920
audioManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
921
  if (err) {
922
    console.error(`Failed to obtain the volume. ${err}`);
J
jiao_yanlin 已提交
923 924
    return;
  }
925
  console.info('Callback invoked to indicate that the volume is obtained.');
L
lwx1059628 已提交
926
});
M
mamingshuai 已提交
927 928
```

Z
zengyawen 已提交
929 930 931
### getVolume

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

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

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

M
mamingshuai 已提交
937 938
**参数:**

Z
zengyawen 已提交
939 940 941
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
942 943 944

**返回值:**

Z
zengyawen 已提交
945 946
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
947
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
M
mamingshuai 已提交
948 949 950

**示例:**

J
jiao_yanlin 已提交
951
```js
A
AOL 已提交
952
audioManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
953
  console.info(`Promise returned to indicate that the volume is obtained ${value} .`);
L
lwx1059628 已提交
954
});
M
mamingshuai 已提交
955 956
```

Z
zengyawen 已提交
957 958 959
### getMinVolume

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

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

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

M
mamingshuai 已提交
965 966
**参数:**

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

M
mamingshuai 已提交
972 973
**示例:**

J
jiao_yanlin 已提交
974
```js
Z
zengyawen 已提交
975
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
976
  if (err) {
977
    console.error(`Failed to obtain the minimum volume. ${err}`);
J
jiao_yanlin 已提交
978 979
    return;
  }
980
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
981
});
M
mamingshuai 已提交
982 983
```

Z
zengyawen 已提交
984 985 986
### getMinVolume

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

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

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

M
mamingshuai 已提交
992 993
**参数:**

Z
zengyawen 已提交
994 995 996
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
997 998 999

**返回值:**

Z
zengyawen 已提交
1000 1001
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
1002
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
M
mamingshuai 已提交
1003 1004 1005

**示例:**

J
jiao_yanlin 已提交
1006
```js
A
AOL 已提交
1007
audioManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
1008
  console.info(`Promised returned to indicate that the minimum volume is obtained. ${value}`);
L
lwx1059628 已提交
1009
});
M
mamingshuai 已提交
1010 1011
```

Z
zengyawen 已提交
1012 1013 1014
### getMaxVolume

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

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

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

M
mamingshuai 已提交
1020 1021
**参数:**

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

M
mamingshuai 已提交
1027 1028
**示例:**

J
jiao_yanlin 已提交
1029
```js
1030
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1031
  if (err) {
1032
    console.error(`Failed to obtain the maximum volume. ${err}`);
J
jiao_yanlin 已提交
1033 1034
    return;
  }
1035
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
L
lwx1059628 已提交
1036
});
M
mamingshuai 已提交
1037 1038
```

Z
zengyawen 已提交
1039 1040 1041
### getMaxVolume

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

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

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

M
mamingshuai 已提交
1047 1048
**参数:**

Z
zengyawen 已提交
1049 1050 1051
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
M
mamingshuai 已提交
1052 1053 1054

**返回值:**

Z
zengyawen 已提交
1055 1056
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
Z
zengyawen 已提交
1057
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
M
mamingshuai 已提交
1058 1059 1060

**示例:**

J
jiao_yanlin 已提交
1061
```js
A
AOL 已提交
1062
audioManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
1063
  console.info('Promised returned to indicate that the maximum volume is obtained.');
L
lwx1059628 已提交
1064
});
Z
zengyawen 已提交
1065 1066
```

Z
zengyawen 已提交
1067
### mute
Z
zengyawen 已提交
1068 1069

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

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

1073 1074 1075
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

Z
zengyawen 已提交
1079 1080
**参数:**

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

Z
zengyawen 已提交
1087 1088
**示例:**

J
jiao_yanlin 已提交
1089
```js
1090
audioManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
J
jiao_yanlin 已提交
1091
  if (err) {
1092
    console.error(`Failed to mute the stream. ${err}`);
J
jiao_yanlin 已提交
1093 1094
    return;
  }
1095
  console.info('Callback invoked to indicate that the stream is muted.');
L
lwx1059628 已提交
1096
});
1097 1098
```

Z
zengyawen 已提交
1099
### mute
Z
zengyawen 已提交
1100 1101

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

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

1105 1106 1107
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1111 1112
**参数:**

Z
zengyawen 已提交
1113 1114 1115 1116
| 参数名     | 类型                                | 必填 | 说明                                  |
| ---------- | ----------------------------------- | ---- | ------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                          |
| mute       | boolean                             | 是   | 静音状态,true为静音,false为非静音。 |
1117 1118 1119

**返回值:**

Z
zengyawen 已提交
1120 1121
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
1122
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1123 1124 1125

**示例:**

Z
zengyawen 已提交
1126

J
jiao_yanlin 已提交
1127
```js
A
AOL 已提交
1128
audioManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
1129
  console.info('Promise returned to indicate that the stream is muted.');
L
lwx1059628 已提交
1130
});
1131 1132 1133
```


Z
zengyawen 已提交
1134
### isMute
1135

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

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

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

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

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

**示例:**

J
jiao_yanlin 已提交
1151
```js
1152
audioManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
J
jiao_yanlin 已提交
1153
  if (err) {
1154
    console.error(`Failed to obtain the mute status. ${err}`);
J
jiao_yanlin 已提交
1155 1156
    return;
  }
1157
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained. ${value}`);
L
lwx1059628 已提交
1158
});
Z
zengyawen 已提交
1159 1160
```

Z
zengyawen 已提交
1161

Z
zengyawen 已提交
1162
### isMute
Z
zengyawen 已提交
1163 1164

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

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

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

Z
zengyawen 已提交
1170 1171
**参数:**

Z
zengyawen 已提交
1172 1173 1174
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
Z
zengyawen 已提交
1175 1176 1177

**返回值:**

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

Z
zengyawen 已提交
1182 1183
**示例:**

J
jiao_yanlin 已提交
1184
```js
A
AOL 已提交
1185
audioManager.isMute(audio.AudioVolumeType.MEDIA).then((value) => {
1186
  console.info(`Promise returned to indicate that the mute status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1187
});
Z
zengyawen 已提交
1188 1189
```

Z
zengyawen 已提交
1190
### isActive
Z
zengyawen 已提交
1191 1192

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

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

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

1198 1199
**参数:**

Z
zengyawen 已提交
1200 1201 1202 1203
| 参数名     | 类型                                | 必填 | 说明                                              |
| ---------- | ----------------------------------- | ---- | ------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                      |
| callback   | AsyncCallback&lt;boolean&gt;        | 是   | 回调返回流的活跃状态,true为活跃,false为不活跃。 |
1204 1205 1206

**示例:**

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

Z
zengyawen 已提交
1217
### isActive
Z
zengyawen 已提交
1218 1219

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

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

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

1225 1226
**参数:**

Z
zengyawen 已提交
1227 1228 1229
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
1230 1231 1232

**返回值:**

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

1237 1238
**示例:**

J
jiao_yanlin 已提交
1239
```js
A
AOL 已提交
1240
audioManager.isActive(audio.AudioVolumeType.MEDIA).then((value) => {
1241
  console.info(`Promise returned to indicate that the active status of the stream is obtained ${value}.`);
L
lwx1059628 已提交
1242
});
1243 1244
```

Z
zengyawen 已提交
1245
### setRingerMode
Z
zengyawen 已提交
1246 1247

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

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

1251 1252 1253
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1257 1258
**参数:**

Z
zengyawen 已提交
1259 1260 1261 1262
| 参数名   | 类型                            | 必填 | 说明                     |
| -------- | ------------------------------- | ---- | ------------------------ |
| mode     | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。           |
| callback | AsyncCallback&lt;void&gt;       | 是   | 回调返回设置成功或失败。 |
1263 1264 1265

**示例:**

J
jiao_yanlin 已提交
1266
```js
1267
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL, (err) => {
J
jiao_yanlin 已提交
1268
  if (err) {
1269
    console.error(`Failed to set the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1270 1271
    return;
  }
1272
  console.info('Callback invoked to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1273
});
1274 1275
```

Z
zengyawen 已提交
1276
### setRingerMode
Z
zengyawen 已提交
1277 1278

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

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

1282 1283 1284
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1288 1289
**参数:**

Z
zengyawen 已提交
1290 1291 1292
| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
| mode   | [AudioRingMode](#audioringmode) | 是   | 音频铃声模式。 |
1293 1294 1295

**返回值:**

Z
zengyawen 已提交
1296 1297
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1298
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1299 1300 1301

**示例:**

J
jiao_yanlin 已提交
1302
```js
A
AOL 已提交
1303
audioManager.setRingerMode(audio.AudioRingMode.RINGER_MODE_NORMAL).then(() => {
1304
  console.info('Promise returned to indicate a successful setting of the ringer mode.');
L
lwx1059628 已提交
1305
});
1306 1307 1308
```


Z
zengyawen 已提交
1309
### getRingerMode
1310

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

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

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

Z
zengyawen 已提交
1317
**参数:**
1318

Z
zengyawen 已提交
1319 1320 1321
| 参数名   | 类型                                                 | 必填 | 说明                     |
| -------- | ---------------------------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback&lt;[AudioRingMode](#audioringmode)&gt; | 是   | 回调返回系统的铃声模式。 |
1322 1323 1324

**示例:**

J
jiao_yanlin 已提交
1325
```js
1326
audioManager.getRingerMode((err, value) => {
J
jiao_yanlin 已提交
1327
  if (err) {
1328
    console.error(`Failed to obtain the ringer mode.​ ${err}`);
J
jiao_yanlin 已提交
1329 1330
    return;
  }
1331
  console.info(`Callback invoked to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1332
});
1333 1334 1335
```


Z
zengyawen 已提交
1336
### getRingerMode
1337

Z
zengyawen 已提交
1338
getRingerMode(): Promise&lt;AudioRingMode&gt;
1339

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

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

1344 1345
**返回值:**

Z
zengyawen 已提交
1346 1347
| 类型                                           | 说明                            |
| ---------------------------------------------- | ------------------------------- |
1348
| Promise&lt;[AudioRingMode](#audioringmode)&gt; | Promise回调返回系统的铃声模式。 |
1349 1350 1351

**示例:**

J
jiao_yanlin 已提交
1352
```js
A
AOL 已提交
1353
audioManager.getRingerMode().then((value) => {
1354
  console.info(`Promise returned to indicate that the ringer mode is obtained ${value}.`);
L
lwx1059628 已提交
1355
});
1356 1357
```

Z
zengyawen 已提交
1358
### setAudioParameter
Z
zengyawen 已提交
1359 1360

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

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

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

1366 1367
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1370 1371
**参数:**

Z
zengyawen 已提交
1372 1373 1374 1375 1376
| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| key      | string                    | 是   | 被设置的音频参数的键。   |
| value    | string                    | 是   | 被设置的音频参数的值。   |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回设置成功或失败。 |
1377 1378 1379

**示例:**

J
jiao_yanlin 已提交
1380
```js
1381
audioManager.setAudioParameter('key_example', 'value_example', (err) => {
J
jiao_yanlin 已提交
1382
  if (err) {
1383
    console.error(`Failed to set the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1384 1385
    return;
  }
1386
  console.info('Callback invoked to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1387
});
1388 1389
```

Z
zengyawen 已提交
1390
### setAudioParameter
Z
zengyawen 已提交
1391 1392

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

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

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

1398 1399
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1402 1403
**参数:**

Z
zengyawen 已提交
1404 1405 1406 1407
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 被设置的音频参数的键。 |
| value  | string | 是   | 被设置的音频参数的值。 |
1408 1409 1410

**返回值:**

Z
zengyawen 已提交
1411 1412
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1413
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1414 1415 1416

**示例:**

J
jiao_yanlin 已提交
1417
```js
1418
audioManager.setAudioParameter('key_example', 'value_example').then(() => {
1419
  console.info('Promise returned to indicate a successful setting of the audio parameter.');
L
lwx1059628 已提交
1420
});
1421 1422
```

Z
zengyawen 已提交
1423
### getAudioParameter
Z
zengyawen 已提交
1424 1425

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

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

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

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

1433 1434
**参数:**

Z
zengyawen 已提交
1435 1436 1437 1438
| 参数名   | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| key      | string                      | 是   | 待获取的音频参数的键。       |
| callback | AsyncCallback&lt;string&gt; | 是   | 回调返回获取的音频参数的值。 |
1439 1440 1441

**示例:**

J
jiao_yanlin 已提交
1442
```js
1443
audioManager.getAudioParameter('key_example', (err, value) => {
J
jiao_yanlin 已提交
1444
  if (err) {
1445
    console.error(`Failed to obtain the value of the audio parameter. ${err}`);
J
jiao_yanlin 已提交
1446 1447
    return;
  }
1448
  console.info(`Callback invoked to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1449
});
1450 1451
```

Z
zengyawen 已提交
1452
### getAudioParameter
Z
zengyawen 已提交
1453 1454

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

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

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

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

1462 1463
**参数:**

Z
zengyawen 已提交
1464 1465 1466
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
1467 1468 1469

**返回值:**

Z
zengyawen 已提交
1470 1471
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
Z
zengyawen 已提交
1472
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
1473 1474 1475

**示例:**

J
jiao_yanlin 已提交
1476
```js
1477
audioManager.getAudioParameter('key_example').then((value) => {
1478
  console.info(`Promise returned to indicate that the value of the audio parameter is obtained ${value}.`);
L
lwx1059628 已提交
1479
});
1480 1481
```

Z
zengyawen 已提交
1482 1483 1484
### getDevices

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

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

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

1490 1491
**参数:**

Z
zengyawen 已提交
1492 1493 1494 1495
| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| deviceFlag | [DeviceFlag](#deviceflag)                                    | 是   | 设备类型的flag。     |
| callback   | AsyncCallback&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | 是   | 回调,返回设备列表。 |
1496 1497

**示例:**
J
jiao_yanlin 已提交
1498
```js
A
AOL 已提交
1499
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
J
jiao_yanlin 已提交
1500
  if (err) {
1501
    console.error(`Failed to obtain the device list. ${err}`);
J
jiao_yanlin 已提交
1502 1503
    return;
  }
1504
  console.info('Callback invoked to indicate that the device list is obtained.');
L
lwx1059628 已提交
1505
});
1506 1507
```

Z
zengyawen 已提交
1508 1509
### getDevices

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

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

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

1516 1517
**参数:**

Z
zengyawen 已提交
1518 1519 1520
| 参数名     | 类型                      | 必填 | 说明             |
| ---------- | ------------------------- | ---- | ---------------- |
| deviceFlag | [DeviceFlag](#deviceflag) | 是   | 设备类型的flag。 |
1521 1522 1523

**返回值:**

Z
zengyawen 已提交
1524 1525
| 类型                                                         | 说明                      |
| ------------------------------------------------------------ | ------------------------- |
Z
zengyawen 已提交
1526
| Promise&lt;[AudioDeviceDescriptors](#audiodevicedescriptors)&gt; | Promise回调返回设备列表。 |
1527 1528 1529

**示例:**

J
jiao_yanlin 已提交
1530
```js
A
AOL 已提交
1531
audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
1532
  console.info('Promise returned to indicate that the device list is obtained.');
L
lwx1059628 已提交
1533
});
1534 1535
```

Z
zengyawen 已提交
1536
### setDeviceActive
Z
zengyawen 已提交
1537

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

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

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

1544 1545
**参数:**

H
update  
HelloCrease 已提交
1546 1547 1548 1549 1550
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| active     | boolean                               | 是   | 设备激活状态。           |
| callback   | AsyncCallback&lt;void&gt;             | 是   | 回调返回设置成功或失败。 |
1551 1552 1553

**示例:**

J
jiao_yanlin 已提交
1554
```js
R
rahul 已提交
1555
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true, (err) => {
J
jiao_yanlin 已提交
1556
  if (err) {
1557
    console.error(`Failed to set the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1558 1559
    return;
  }
1560
  console.info('Callback invoked to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1561
});
1562 1563
```

Z
zengyawen 已提交
1564
### setDeviceActive
Z
zengyawen 已提交
1565

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

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

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

1572 1573
**参数:**

H
update  
HelloCrease 已提交
1574 1575
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1576
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
H
update  
HelloCrease 已提交
1577
| active     | boolean                               | 是   | 设备激活状态。     |
1578 1579 1580

**返回值:**

Z
zengyawen 已提交
1581 1582
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1583
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1584 1585 1586

**示例:**

Z
zengyawen 已提交
1587

J
jiao_yanlin 已提交
1588
```js
R
rahul 已提交
1589
audioManager.setDeviceActive(audio.ActiveDeviceType.SPEAKER, true).then(() => {
1590
  console.info('Promise returned to indicate that the device is set to the active status.');
L
lwx1059628 已提交
1591
});
1592 1593
```

Z
zengyawen 已提交
1594
### isDeviceActive
Z
zengyawen 已提交
1595

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

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

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

1602 1603
**参数:**

H
update  
HelloCrease 已提交
1604 1605 1606 1607
| 参数名     | 类型                                  | 必填 | 说明                     |
| ---------- | ------------------------------------- | ---- | ------------------------ |
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。       |
| callback   | AsyncCallback&lt;boolean&gt;          | 是   | 回调返回设备的激活状态。 |
1608 1609 1610

**示例:**

J
jiao_yanlin 已提交
1611
```js
R
rahul 已提交
1612
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER, (err, value) => {
J
jiao_yanlin 已提交
1613
  if (err) {
1614
    console.error(`Failed to obtain the active status of the device. ${err}`);
J
jiao_yanlin 已提交
1615 1616
    return;
  }
1617
  console.info('Callback invoked to indicate that the active status of the device is obtained.');
L
lwx1059628 已提交
1618
});
1619 1620
```

Z
zengyawen 已提交
1621

Z
zengyawen 已提交
1622
### isDeviceActive
Z
zengyawen 已提交
1623

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

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

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

1630 1631
**参数:**

H
update  
HelloCrease 已提交
1632 1633
| 参数名     | 类型                                  | 必填 | 说明               |
| ---------- | ------------------------------------- | ---- | ------------------ |
A
AOL 已提交
1634
| deviceType | [ActiveDeviceType](#activedevicetype) | 是   | 活跃音频设备类型。 |
1635 1636 1637

**返回值:**

Z
zengyawen 已提交
1638 1639
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
Z
zengyawen 已提交
1640
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1641 1642 1643

**示例:**

J
jiao_yanlin 已提交
1644
```js
R
rahul 已提交
1645
audioManager.isDeviceActive(audio.ActiveDeviceType.SPEAKER).then((value) => {
1646
  console.info(`Promise returned to indicate that the active status of the device is obtained ${value}.`);
L
lwx1059628 已提交
1647
});
1648 1649
```

Z
zengyawen 已提交
1650
### setMicrophoneMute
Z
zengyawen 已提交
1651 1652

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

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

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

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

1660 1661
**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1669
```js
1670
audioManager.setMicrophoneMute(true, (err) => {
J
jiao_yanlin 已提交
1671
  if (err) {
1672
    console.error(`Failed to mute the microphone. ${err}`);
J
jiao_yanlin 已提交
1673 1674
    return;
  }
1675
  console.info('Callback invoked to indicate that the microphone is muted.');
L
lwx1059628 已提交
1676
});
1677 1678
```

Z
zengyawen 已提交
1679
### setMicrophoneMute
Z
zengyawen 已提交
1680 1681

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

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

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

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

1689 1690
**参数:**

Z
zengyawen 已提交
1691 1692 1693
| 参数名 | 类型    | 必填 | 说明                                          |
| ------ | ------- | ---- | --------------------------------------------- |
| mute   | boolean | 是   | 待设置的静音状态,true为静音,false为非静音。 |
1694 1695 1696

**返回值:**

Z
zengyawen 已提交
1697 1698
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1699
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1700 1701 1702

**示例:**

J
jiao_yanlin 已提交
1703
```js
A
AOL 已提交
1704
audioManager.setMicrophoneMute(true).then(() => {
1705
  console.info('Promise returned to indicate that the microphone is muted.');
L
lwx1059628 已提交
1706
});
1707 1708
```

Z
zengyawen 已提交
1709
### isMicrophoneMute
Z
zengyawen 已提交
1710 1711

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

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

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

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

1719 1720
**参数:**

Z
zengyawen 已提交
1721 1722 1723
| 参数名   | 类型                         | 必填 | 说明                                                    |
| -------- | ---------------------------- | ---- | ------------------------------------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1724 1725 1726

**示例:**

J
jiao_yanlin 已提交
1727
```js
1728
audioManager.isMicrophoneMute((err, value) => {
J
jiao_yanlin 已提交
1729
  if (err) {
1730
    console.error(`Failed to obtain the mute status of the microphone. ${err}`);
J
jiao_yanlin 已提交
1731 1732
    return;
  }
1733
  console.info(`Callback invoked to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1734
});
1735 1736
```

Z
zengyawen 已提交
1737
### isMicrophoneMute
1738

Z
zengyawen 已提交
1739
isMicrophoneMute(): Promise&lt;boolean&gt;
1740

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

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

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

1747 1748
**返回值:**

Z
zengyawen 已提交
1749 1750
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
Z
zengyawen 已提交
1751
| Promise&lt;boolean&gt; | Promise回调返回系统麦克风静音状态,true为静音,false为非静音。 |
1752 1753 1754

**示例:**

Z
zengyawen 已提交
1755

J
jiao_yanlin 已提交
1756
```js
A
AOL 已提交
1757
audioManager.isMicrophoneMute().then((value) => {
1758
  console.info(`Promise returned to indicate that the mute status of the microphone is obtained ${value}.`);
L
lwx1059628 已提交
1759
});
1760 1761
```

L
lwx1059628 已提交
1762
### on('volumeChange')<sup>8+</sup>
Z
zengyawen 已提交
1763 1764 1765 1766 1767

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

监听系统音量变化事件。

1768
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1769

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

Z
zengyawen 已提交
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1783
```js
Z
zengyawen 已提交
1784
audioManager.on('volumeChange', (volumeEvent) => {
1785 1786 1787
  console.info(`VolumeType of stream: ${volumeEvent.volumeType} `);
  console.info(`Volume level: ${volumeEvent.volume} `);
  console.info(`Whether to updateUI: ${volumeEvent.updateUi} `);
L
lwx1059628 已提交
1788
});
Z
zengyawen 已提交
1789 1790
```

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

A
AOL 已提交
1793
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
Z
zengyawen 已提交
1794 1795 1796

监听铃声模式变化事件。

1797
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1798

Z
zengyawen 已提交
1799 1800 1801 1802 1803 1804 1805 1806
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

L
lwx1059628 已提交
1808 1809
**示例:**

J
jiao_yanlin 已提交
1810
```js
L
lwx1059628 已提交
1811
audioManager.on('ringerModeChange', (ringerMode) => {
1812
  console.info(`Updated ringermode: ${ringerMode}`);
L
lwx1059628 已提交
1813 1814 1815
});
```

L
lwx1059628 已提交
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
### on('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1833
```js
L
lwx1059628 已提交
1834
audioManager.on('deviceChange', (deviceChanged) => {
1835 1836 1837 1838
  console.info(`device change type : ${deviceChanged.type} `);
  console.info(`device descriptor size : ${deviceChanged.deviceDescriptors.length} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceRole} `);
  console.info(`device change descriptor : ${deviceChanged.deviceDescriptors[0].deviceType} `);
L
lwx1059628 已提交
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
});
```

### off('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1859
```js
L
lwx1059628 已提交
1860
audioManager.off('deviceChange', (deviceChanged) => {
1861
  console.info('Should be no callback.');
L
lwx1059628 已提交
1862 1863 1864
});
```

1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
### on('interrupt')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1883
```js
1884
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1885 1886 1887
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1888
};
R
rahul 已提交
1889
audioManager.on('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1890
  if (InterruptAction.actionType === 0) {
1891 1892
    console.info('An event to gain the audio focus starts.');
    console.info(`Focus gain event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1893 1894
  }
  if (InterruptAction.actionType === 1) {
1895 1896
    console.info('An audio interruption event starts.');
    console.info(`Audio interruption event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1897
  }
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
});
```

### off('interrupt')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1919
```js
1920
var interAudioInterrupt = {
J
jiao_yanlin 已提交
1921 1922 1923
  streamUsage:2,
  contentType:0,
  pauseWhenDucked:true
1924
};
R
rahul 已提交
1925
audioManager.off('interrupt', interAudioInterrupt, (InterruptAction) => {
J
jiao_yanlin 已提交
1926
  if (InterruptAction.actionType === 0) {
1927 1928
      console.info('An event to release the audio focus starts.');
      console.info(`Focus release event: ${InterruptAction} `);
J
jiao_yanlin 已提交
1929
  }
1930 1931 1932
});
```

L
lwx1059628 已提交
1933 1934 1935 1936 1937 1938
### setAudioScene<sup>8+</sup>

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

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

1939
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1952
```js
L
lwx1059628 已提交
1953
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL, (err) => {
J
jiao_yanlin 已提交
1954
  if (err) {
1955
    console.error(`Failed to set the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
1956 1957
    return;
  }
1958
  console.info('Callback invoked to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
1959 1960 1961 1962 1963 1964 1965 1966 1967
});
```

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

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

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

1968
**系统接口:** 该接口为系统接口
L
lwx1059628 已提交
1969

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

Z
zengyawen 已提交
1972
**参数:**
L
lwx1059628 已提交
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
1986
```js
R
rahul 已提交
1987
audioManager.setAudioScene(audio.AudioScene.AUDIO_SCENE_PHONE_CALL).then(() => {
1988
  console.info('Promise returned to indicate a successful setting of the audio scene mode.');
L
lwx1059628 已提交
1989
}).catch ((err) => {
1990
  console.error(`Failed to set the audio scene mode ${err}`);
L
lwx1059628 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999
});
```

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

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

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

Z
zengyawen 已提交
2000
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
2001 2002 2003 2004 2005 2006 2007 2008 2009

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
2010
```js
L
lwx1059628 已提交
2011
audioManager.getAudioScene((err, value) => {
J
jiao_yanlin 已提交
2012
  if (err) {
2013
    console.error(`Failed to obtain the audio scene mode.​ ${err}`);
J
jiao_yanlin 已提交
2014 2015
    return;
  }
2016
  console.info(`Callback invoked to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
});
```


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

getAudioScene\(\): Promise<AudioScene\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
2037
```js
L
lwx1059628 已提交
2038
audioManager.getAudioScene().then((value) => {
2039
  console.info(`Promise returned to indicate that the audio scene mode is obtained ${value}.`);
L
lwx1059628 已提交
2040
}).catch ((err) => {
2041
  console.error(`Failed to obtain the audio scene mode ${err}`);
L
lwx1059628 已提交
2042 2043 2044
});
```

W
wangtao 已提交
2045 2046 2047 2048 2049 2050
### getVolumeGroups<sup>9+</sup>

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

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

2051
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065

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

**参数:**

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

**示例:**
```js
audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID, (err, value) => {
  if (err) {
2066
    console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
    return;
  }
  console.info('Callback invoked to indicate that the volume group infos list is obtained.');
});
```

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

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

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

2079
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2080 2081 2082 2083 2084 2085 2086 2087 2088

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

**参数:**

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

2089 2090 2091 2092 2093 2094
**返回值:**

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

W
wangtao 已提交
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
**示例:**

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

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

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

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

2110
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2111 2112 2113 2114 2115 2116 2117 2118

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。     |
2119
| callback   | AsyncCallback&lt; [AudioGroupManager](#audiogroupmanager9) &gt; | 是   | 回调,返回一个音量组实例。 |
W
wangtao 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129

**示例:**

```js
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    audioManager.getGroupManager(groupid, (err, value) => {
      if (err) {
2130
        console.error(`Failed to obtain the volume group infos list. ${err}`);
W
wangtao 已提交
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
        return;
      }
      audioGroupManager = value
      console.info('Callback invoked to indicate that the volume group infos list is obtained.');
    });
  }
}
```

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

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

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

2146
**系统接口:** 该接口为系统接口
W
wangtao 已提交
2147 2148 2149 2150 2151

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

**参数:**

2152 2153
| 参数名     | 类型                                      | 必填 | 说明              |
| ---------- | ---------------------------------------- | ---- | -------------- -- |
W
wangtao 已提交
2154 2155
| networkId | string                                    | 是   | 设备的网络id。     |

2156 2157 2158 2159 2160 2161
**返回值:**

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

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

```js
async function getGroupManager(){
  let value = await audioManager.getVolumeGroups(audio.LOCAL_NETWORK_ID);
  if (value.length > 0) {
    let groupid = value[0].groupId;
    let audioGroupManager = await audioManager.getGroupManager(audio.LOCAL_NETWORK_ID)
    console.info('Callback invoked to indicate that the volume group infos list is obtained.');
  }
}
```

## AudioGroupManager<sup>9+</sup>
管理音频组音量。在调用AudioGroupManager的接口前,需要先通过 [getGroupManager](#getgroupmanager9) 创建实例。

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

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

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

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

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

2188 2189 2190
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206

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

**参数:**

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

**示例:**

```js
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10, (err) => {
  if (err) {
2207
    console.error(`Failed to set the volume. ${err}`);
W
wangtao 已提交
2208 2209
    return;
  }
2210
  console.info('Callback invoked to indicate a successful volume setting.');
W
wangtao 已提交
2211 2212 2213 2214 2215 2216 2217 2218 2219
});
```

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

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

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

2220 2221 2222
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
2243
  console.info('Promise returned to indicate a successful volume setting.');
W
wangtao 已提交
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2267
    console.error(`Failed to obtain the volume. ${err}`);
W
wangtao 已提交
2268 2269
    return;
  }
2270
  console.info('Callback invoked to indicate that the volume is obtained.');
W
wangtao 已提交
2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
});
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2298
  console.info(`Promise returned to indicate that the volume is obtained ${value}.`);
W
wangtao 已提交
2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2322
    console.error(`Failed to obtain the minimum volume. ${err}`);
W
wangtao 已提交
2323 2324
    return;
  }
2325
  console.info(`Callback invoked to indicate that the minimum volume is obtained. ${value}`);
W
wangtao 已提交
2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352
});
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getMinVolume(audio.AudioVolumeType.MEDIA).then((value) => {
2353
  console.info(`Promised returned to indicate that the minimum volume is obtained ${value}.`);
W
wangtao 已提交
2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
audioGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2377
    console.error(`Failed to obtain the maximum volume. ${err}`);
W
wangtao 已提交
2378 2379
    return;
  }
2380
  console.info(`Callback invoked to indicate that the maximum volume is obtained. ${value}`);
W
wangtao 已提交
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407
});
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.getMaxVolume(audio.AudioVolumeType.MEDIA).then((data) => {
2408
  console.info('Promised returned to indicate that the maximum volume is obtained.');
W
wangtao 已提交
2409 2410 2411 2412 2413 2414 2415 2416 2417
});
```

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

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

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

2418 2419 2420
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436

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

**参数:**

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

**示例:**

```js
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true, (err) => {
  if (err) {
2437
    console.error(`Failed to mute the stream. ${err}`);
W
wangtao 已提交
2438 2439
    return;
  }
2440
  console.info('Callback invoked to indicate that the stream is muted.');
W
wangtao 已提交
2441 2442 2443 2444 2445 2446 2447 2448 2449
});
```

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

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

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

2450 2451 2452
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
2473
  console.info('Promise returned to indicate that the stream is muted.');
W
wangtao 已提交
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
audioGroupManager.isMute(audio.AudioVolumeType.MEDIA, (err, value) => {
  if (err) {
2497
    console.error(`Failed to obtain the mute status. ${err}`);
W
wangtao 已提交
2498 2499
    return;
  }
2500
  console.info(`Callback invoked to indicate that the mute status of the stream is obtained ${value}.`);
W
wangtao 已提交
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
});
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

2532 2533
## AudioStreamManager<sup>9+</sup>

2534
管理音频流。在使用AudioStreamManager的API前,需要使用[getStreamManager](#audiogetstreammanager9)获取AudioStreamManager实例。
2535 2536 2537

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

2538
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void
2539

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

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

2544
**参数:**
2545 2546 2547

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

2550
**示例:**
J
jiao_yanlin 已提交
2551 2552

```js
J
jiao_yanlin 已提交
2553 2554 2555
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2556
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2557 2558 2559 2560 2561 2562
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2563
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
2564
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2565
  if (err) {
2566
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
2567 2568 2569
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2570
        let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2571 2572 2573 2574 2575 2576
        console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
        console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
        console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
        console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
        console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
J
jiao_yanlin 已提交
2577
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
2578 2579 2580 2581 2582 2583 2584 2585
          console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
2586
        }
J
jiao_yanlin 已提交
2587
      }
2588
    }
J
jiao_yanlin 已提交
2589
  }
2590 2591 2592 2593 2594
});
```

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

2595
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
2596

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

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

2601
**返回值:**
2602 2603 2604

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

2607
**示例:**
J
jiao_yanlin 已提交
2608 2609

```js
J
jiao_yanlin 已提交
2610 2611 2612
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2613
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2614 2615 2616 2617 2618 2619
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2620
await audioStreamManager.getCurrentAudioRendererInfoArray().then( function (AudioRendererChangeInfoArray) {
2621
  console.info(`getCurrentAudioRendererInfoArray ######### Get Promise is called ##########`);
J
jiao_yanlin 已提交
2622 2623
  if (AudioRendererChangeInfoArray != null) {
    for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2624
      let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639
      console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
      console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
      console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
      console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
      console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
      console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
      for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
        console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
        console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
        console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
        console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
        console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
        console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
        console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
        console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
2640
      }
2641
    }
J
jiao_yanlin 已提交
2642
  }
2643
}).catch((err) => {
2644
  console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err}`);
2645 2646 2647 2648 2649
});
```

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

2650
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
2651

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

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

2656
**参数:**
2657 2658 2659

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

2662
**示例:**
J
jiao_yanlin 已提交
2663 2664

```js
J
jiao_yanlin 已提交
2665 2666 2667
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2668
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2669 2670 2671 2672 2673 2674
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2675
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
2676
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2677
  if (err) {
2678
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
J
jiao_yanlin 已提交
2679
  } else {
J
jiao_yanlin 已提交
2680 2681
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2682 2683 2684 2685 2686
        console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
        console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
        console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
        console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
        console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
J
jiao_yanlin 已提交
2687
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2688 2689 2690 2691 2692 2693 2694 2695
          console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
          console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
          console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
          console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
          console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
          console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
          console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
          console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
2696
        }
J
jiao_yanlin 已提交
2697
      }
2698
    }
J
jiao_yanlin 已提交
2699
  }
2700 2701 2702 2703 2704
});
```

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

2705
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
2706

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

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

2711
**返回值:**
2712

2713 2714 2715
| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
2716

2717
**示例:**
J
jiao_yanlin 已提交
2718 2719

```js
J
jiao_yanlin 已提交
2720 2721 2722
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2723
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2724 2725 2726 2727 2728 2729
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2730
await audioStreamManager.getCurrentAudioCapturerInfoArray().then( function (AudioCapturerChangeInfoArray) {
2731
  console.info('getCurrentAudioCapturerInfoArray **** Get Promise Called ****');
J
jiao_yanlin 已提交
2732 2733
  if (AudioCapturerChangeInfoArray != null) {
    for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2734 2735 2736 2737 2738
      console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
      console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
      console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
      console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
      console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
J
jiao_yanlin 已提交
2739
      for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2740 2741 2742 2743 2744 2745 2746 2747
        console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
        console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
        console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
        console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
        console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
        console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
        console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
        console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
2748
      }
2749
    }
J
jiao_yanlin 已提交
2750
  }
2751
}).catch((err) => {
2752
  console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err}`);
2753 2754 2755 2756 2757
});
```

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

2758
on(type: "audioRendererChange", callback: Callback&lt;AudioRendererChangeInfoArray&gt;): void
2759 2760 2761

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

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

2764
**参数:**
2765

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

2771
**示例:**
J
jiao_yanlin 已提交
2772 2773

```js
J
jiao_yanlin 已提交
2774 2775 2776
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2777
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2778 2779 2780 2781 2782 2783
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2784
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
2785
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2786
    let AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfo.streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfo.clientUid}`);
    console.info(`Content ${i} is: ${AudioRendererChangeInfo.rendererInfo.content}`);
    console.info(`Stream ${i} is: ${AudioRendererChangeInfo.rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfo.rendererInfo.rendererFlags}`); 
    console.info(`State for ${i} is: ${AudioRendererChangeInfo.rendererState}`);  
    for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
      console.info(`Id: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCount ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioRendererChangeInfo.deviceDescriptors[j].channelMasks}`);
2803
    }
J
jiao_yanlin 已提交
2804
  }
2805 2806 2807 2808 2809 2810 2811
});
```

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

off(type: "audioRendererChange");

2812
取消监听音频渲染器更改事件。
2813

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

2816
**参数:**
2817 2818 2819

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

2822
**示例:**
J
jiao_yanlin 已提交
2823 2824

```js
J
jiao_yanlin 已提交
2825 2826 2827
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2828
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2829 2830 2831 2832 2833 2834
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2835
audioStreamManager.off('audioRendererChange');
2836
console.info('######### RendererChange Off is called #########');
2837 2838 2839 2840
```

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

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

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

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

2847
**参数:**
2848 2849

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

2854
**示例:**
J
jiao_yanlin 已提交
2855 2856

```js
J
jiao_yanlin 已提交
2857 2858 2859
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2860
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2861 2862 2863 2864 2865 2866
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2867
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
2868
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2869 2870 2871 2872 2873 2874 2875
    console.info(`## CapChange on is called for element ${i} ##');
    console.info(`StreamId for ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Source for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag  ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);  
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
2876
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2877 2878 2879 2880 2881 2882 2883 2884
      console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
      console.info(`Address: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
      console.info(`SampleRates: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
      console.info(`ChannelCounts ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
      console.info(`ChannelMask: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
2885
    }
J
jiao_yanlin 已提交
2886
  }
2887 2888 2889 2890 2891 2892 2893
});
```

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

off(type: "audioCapturerChange");

2894
取消监听音频采集器更改事件。
2895

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

2898
**参数:**
2899

2900 2901 2902
| 名称      | 类型     | 必填 | 说明                                                          |
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |
2903

2904
**示例:**
J
jiao_yanlin 已提交
2905 2906

```js
J
jiao_yanlin 已提交
2907 2908 2909
let audioStreamManager;
audio.getStreamManager((err, data) => {
  if (err) {
2910
    console.error(`getStreamManager : Error: ${err}`);
J
jiao_yanlin 已提交
2911 2912 2913 2914 2915 2916
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    audioStreamManager = data;
  }
});

2917
audioStreamManager.off('audioCapturerChange');
2918
console.info('######### CapturerChange Off is called #########');
2919 2920

```
2921 2922 2923 2924
## AudioRoutingManager<sup>9+</sup>

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

2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944
### getDevices<sup>9+</sup>

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

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

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

**参数:**

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

**示例:**

```js
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
2945
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
2946 2947 2948 2949
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
      if (err) {
2950
        console.error(`Failed to obtain the device list. ${err}`);
2951 2952
        return;
      }
2953
      console.info('Callback invoked to indicate that the device list is obtained.');
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
    });
  }
})
```

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
2984
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
2985 2986 2987
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
2988
      console.info('Promise returned to indicate that the device list is obtained.');
2989 2990 2991 2992 2993 2994 2995
    });
  }
});
```

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

2996
on(type: 'deviceChange', deviceFlag: DeviceFlag, callback: Callback<DeviceChangeAction\>): void
2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014

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

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

**参数:**

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

**示例:**

```js
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3015
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
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
  }
  else {
    AudioRoutingManager.on('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
      console.info('device change type : ' + deviceChanged.type);
      console.info('device descriptor size : ' + deviceChanged.deviceDescriptors.length);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceRole);
      console.info('device change descriptor : ' + deviceChanged.deviceDescriptors[0].deviceType);
    });
  }
});
```

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

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

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

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

**参数:**

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

**示例:**

```js
audioManager.getRoutingManager((err,AudioRoutingManager)=>{
  if (err) {
3049
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err}`);
3050 3051 3052
  }
  else {
    AudioRoutingManager.off('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
3053
      console.info('Should be no callback.');
3054 3055 3056 3057 3058
    });
  }
});
```

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

3061
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
3062 3063 3064

选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。该接口为系统应用接口。

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

3067 3068 3069 3070 3071 3072
**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3073
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
await audioManager.getRoutingManager().then((value) => {
  audioRoutingManager = value;
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor, (err) => {
    if (err) {
3088
      console.error(`Result ERROR: ${err}`);
3089 3090 3091 3092 3093 3094 3095 3096
    } else {
      console.info('Select output devices result callback: SUCCESS'); }
  });
});
```

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

3097 3098
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

3099
**系统接口:** 该接口为系统接口
3100 3101 3102 3103 3104 3105 3106 3107 3108

选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。该接口为系统应用接口。

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3109
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130

**返回值:**

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

**示例:**

```js
let outputAudioDeviceDescriptor =[{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
await audioManager.getRoutingManager().then((value) => {
  audioRoutingManager = value;
  audioRoutingManager.selectOutputDevice(outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices result promise: SUCCESS');
  }).catch((err) => {
3131
    console.error(`Result ERROR: ${err}`);
3132 3133 3134 3135 3136 3137
  });
});
```

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

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

3140
**系统接口:** 该接口为系统接口
3141 3142 3143 3144 3145 3146 3147 3148 3149

根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。该接口为系统应用接口。

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3150
| filter                      | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
3151
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172
| callback                    | AsyncCallback&lt;void&gt;                                    | 是   | 回调,返回获取输出设备结果。 |

**示例:**
```js
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
await audioManager.getRoutingManager().then((value) => {
  audioRoutingManager = value;
  audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor, (err) => {
    if (err) {
3173
      console.error(`Result ERROR: ${err}`);
3174 3175 3176 3177 3178 3179 3180 3181
    } else {
      console.info('Select output devices by filter result callback: SUCCESS'); }
  });
});
```

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

3182
selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;
3183

3184
**系统接口:** 该接口为系统接口
3185 3186 3187 3188 3189 3190 3191

根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。该接口为系统应用接口。

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

**参数:**

3192 3193 3194 3195
| 参数名                 | 类型                                                         | 必填 | 说明                      |
| ----------------------| ------------------------------------------------------------ | ---- | ------------------------- |
| filter                | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
| outputAudioDevices    | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223

**返回值:**

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

**示例:**

```js
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
let outputAudioDeviceDescriptor = [{
  "deviceRole":audio.DeviceRole.OUTPUT_DEVICE,
  "networkId":audio.LOCAL_NETWORK_ID,
  "interruptGroupId":1,
  "volumeGroupId":1 }];
var audioRoutingManager;
await audioManager.getRoutingManager().then((value) => {
  audioRoutingManager = value;
  audioRoutingManager.selectOutputDeviceByFilter(outputAudioRendererFilter, outputAudioDeviceDescriptor).then(() => {
    console.info('Select output devices by filter result promise: SUCCESS');
  }).catch((err) => {
3224
    console.error(`Result ERROR: ${err}`);
3225 3226 3227 3228
  })
});
```

3229 3230 3231 3232 3233 3234 3235 3236 3237
## AudioRendererChangeInfo<sup>9+</sup>

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

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
J
jiao_yanlin 已提交
3238
| clientUid          | number                                    | 是   | 否   | 音频渲染器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
3239
| rendererInfo       | [AudioRendererInfo](#audiorendererinfo8)  | 是   | 否   | 音频渲染器信息。               |
J
jiao_yanlin 已提交
3240
| rendererState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3241

3242 3243 3244 3245
## AudioRendererChangeInfoArray<sup>9+</sup>

AudioRenderChangeInfo数组,只读。

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

3248 3249
**示例:**

J
jiao_yanlin 已提交
3250
```js
3251 3252 3253 3254
import audio from '@ohos.multimedia.audio';

var audioStreamManager;
var audioStreamManagerCB;
3255
var resultFlag = false;
3256 3257

await audioManager.getStreamManager().then(async function (data) {
J
jiao_yanlin 已提交
3258
  audioStreamManager = data;
3259
  console.info('Get AudioStream Manager : Success');
3260
}).catch((err) => {
3261
  console.error(`Get AudioStream Manager : ERROR : ${err}`);
3262 3263 3264
});

audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3265
  if (err) {
3266
    console.error(`Get AudioStream Manager : ERROR : ${err}`);
J
jiao_yanlin 已提交
3267
  } else {
J
jiao_yanlin 已提交
3268
    audioStreamManagerCB = data;
3269
    console.info('Get AudioStream Manager : Success');
J
jiao_yanlin 已提交
3270 3271
  }
});
3272 3273

audioStreamManagerCB.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3274
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
3275 3276 3277 3278 3279 3280 3281
    console.info(`## RendererChange on is called for ${i} ##`);
    console.info(`StreamId for ${i} is: ${AudioRendererChangeInfoArray[i].streamId}`);
    console.info(`ClientUid for ${i} is: ${AudioRendererChangeInfoArray[i].clientUid}`);
    console.info(`Content for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.content}`);
    console.info(`Stream for ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.usage}`);
    console.info(`Flag ${i} is: ${AudioRendererChangeInfoArray[i].rendererInfo.rendererFlags}`);
    console.info(`State for ${i} is: ${AudioRendererChangeInfoArray[i].rendererState}`);
J
jiao_yanlin 已提交
3282
  	var devDescriptor = AudioRendererChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3283
  	for (let j = 0; j < AudioRendererChangeInfoArray[i].deviceDescriptors.length; j++) {
3284 3285 3286 3287 3288 3289 3290 3291
  	  console.info(`Id: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].id}`);
  	  console.info(`Type: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
  	  console.info(`Role: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
  	  console.info(`Name: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].name}`);
  	  console.info(`Addr: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].address}`);
  	  console.info(`SR: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
  	  console.info(`C ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
  	  console.info(`CM: ${i} : ${AudioRendererChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
J
jiao_yanlin 已提交
3292 3293 3294
  	}
    if (AudioRendererChangeInfoArray[i].rendererState == 1 && devDescriptor != null) {
      resultFlag = true;
3295
      console.info(`ResultFlag for ${i} is: ${resultFlag}`);
3296
    }
J
jiao_yanlin 已提交
3297
  }
3298 3299 3300 3301 3302
});
```

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

3303
描述音频采集器更改信息。
3304 3305 3306 3307 3308 3309

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

| 名称               | 类型                                       | 可读 | 可写 | 说明                          |
| -------------------| ----------------------------------------- | ---- | ---- | ---------------------------- |
| streamId           | number                                    | 是   | 否   | 音频流唯一id。                |
3310 3311
| clientUid          | number                                    | 是   | 否   | 音频采集器客户端应用程序的Uid。<br/>此接口为系统接口,三方应用不支持调用。 |
| capturerInfo       | [AudioCapturerInfo](#audiocapturerinfo8)   | 是   | 否   | 音频采集器信息。               |
J
jiao_yanlin 已提交
3312
| capturerState      | [AudioState](#audiostate)                 | 是   | 否   | 音频状态。<br/>此接口为系统接口,三方应用不支持调用。|
3313

3314 3315 3316 3317 3318 3319
## AudioCapturerChangeInfoArray<sup>9+</sup>

AudioCapturerChangeInfo数组,只读。

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

3320 3321
**示例:**

J
jiao_yanlin 已提交
3322
```js
3323 3324 3325
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
3326
var resultFlag = false;
3327
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3328
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3329 3330 3331 3332 3333 3334
    console.info(`## CapChange on is called for element ${i} ##`);
    console.info(`StrId for  ${i} is: ${AudioCapturerChangeInfoArray[i].streamId}`);
    console.info(`CUid for ${i} is: ${AudioCapturerChangeInfoArray[i].clientUid}`);
    console.info(`Src for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.source}`);
    console.info(`Flag ${i} is: ${AudioCapturerChangeInfoArray[i].capturerInfo.capturerFlags}`);
    console.info(`State for ${i} is: ${AudioCapturerChangeInfoArray[i].capturerState}`);
J
jiao_yanlin 已提交
3335
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3336
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3337 3338 3339 3340 3341 3342 3343 3344
      console.info(`Id: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].id}`);
      console.info(`Type: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceType}`);
      console.info(`Role: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].deviceRole}`);
      console.info(`Name: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].name}`);
      console.info(`Addr: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].address}`);
      console.info(`SR: ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].sampleRates[0]}`);
      console.info(`C ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelCounts[0]}`);
      console.info(`CM ${i} : ${AudioCapturerChangeInfoArray[i].deviceDescriptors[j].channelMasks}`);
3345
    }
J
jiao_yanlin 已提交
3346 3347
    if (AudioCapturerChangeInfoArray[i].capturerState == 1 && devDescriptor != null) {
      resultFlag = true;
3348 3349
      console.info(`ResultFlag for element ${i} is: ${resultFlag}`);
    }
J
jiao_yanlin 已提交
3350
  }
3351 3352 3353
});
```

Z
zengyawen 已提交
3354
## AudioDeviceDescriptor
3355 3356 3357

描述音频设备。

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

3360 3361 3362 3363 3364 3365 3366 3367 3368 3369
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| deviceRole                    | [DeviceRole](#devicerole)  | 是   | 否   | 设备角色。 |
| deviceType                    | [DeviceType](#devicetype)  | 是   | 否   | 设备类型。 |
| id<sup>9+</sup>               | number                     | 是   | 否   | 设备id。  |
| name<sup>9+</sup>             | string                     | 是   | 否   | 设备名称。 |
| address<sup>9+</sup>          | string                     | 是   | 否   | 设备地址。 |
| sampleRates<sup>9+</sup>      | Array&lt;number&gt;        | 是   | 否   | 支持的采样率。 |
| channelCounts<sup>9+</sup>    | Array&lt;number&gt;        | 是   | 否   | 支持的通道数。 |
| channelMasks<sup>9+</sup>     | Array&lt;number&gt;        | 是   | 否   | 支持的通道掩码。 |
3370 3371 3372
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
Z
zengyawen 已提交
3373 3374

## AudioDeviceDescriptors
M
mamingshuai 已提交
3375

H
update  
HelloCrease 已提交
3376
设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。
Z
zengyawen 已提交
3377 3378 3379

**示例:**

J
jiao_yanlin 已提交
3380
```js
L
lwx1059628 已提交
3381 3382 3383
import audio from '@ohos.multimedia.audio';

function displayDeviceProp(value) {
J
jiao_yanlin 已提交
3384 3385
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
Z
zengyawen 已提交
3386 3387
}

L
lwx1059628 已提交
3388 3389 3390 3391
var deviceRoleValue = null;
var deviceTypeValue = null;
const promise = audio.getAudioManager().getDevices(1);
promise.then(function (value) {
3392
  console.info('AudioFrameworkTest: Promise: getDevices OUTPUT_DEVICES_FLAG');
J
jiao_yanlin 已提交
3393 3394
  value.forEach(displayDeviceProp);
  if (deviceTypeValue != null && deviceRoleValue != null){
3395
    console.info('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  PASS');
J
jiao_yanlin 已提交
3396
  } else {
3397
    console.error('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  FAIL');
J
jiao_yanlin 已提交
3398
  }
L
lwx1059628 已提交
3399
});
Z
zengyawen 已提交
3400 3401
```

3402 3403 3404 3405
## AudioRendererFilter<sup>9+</sup>

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

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

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

| 名称          | 类型                                     | 必填  | 说明          |
| -------------| ---------------------------------------- | ---- | -------------- |
3412 3413 3414
| uid          | number                                   |  是  | 表示应用ID。<br> 系统能力:SystemCapability.Multimedia.Audio.Core|
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> 系统能力:SystemCapability.Multimedia.Audio.Renderer|
| rendererId   | number                                   |  否  | 音频流唯一id。<br> 系统能力:SystemCapability.Multimedia.Audio.Renderer|
3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427

**示例:**

```js
let outputAudioRendererFilter = {
  "uid":20010041,
  "rendererInfo": {
    "contentType":audio.ContentType.CONTENT_TYPE_MUSIC,
    "streamUsage":audio.StreamUsage.STREAM_USAGE_MEDIA,
    "rendererFlags":0 },
  "rendererId":0 };
```

Z
zengyawen 已提交
3428 3429
## AudioRenderer<sup>8+</sup>

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

3432
### 属性
Z
zengyawen 已提交
3433

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

3436
| 名称  | 类型                     | 可读 | 可写 | 说明               |
Z
zengyawen 已提交
3437
| ----- | -------------------------- | ---- | ---- | ------------------ |
3438
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
3439 3440 3441

**示例:**

J
jiao_yanlin 已提交
3442
```js
Z
zengyawen 已提交
3443 3444 3445 3446 3447 3448 3449
var state = audioRenderer.state;
```

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

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

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

3452
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3453 3454 3455

**参数:**

L
lwx1059628 已提交
3456 3457 3458
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
3459 3460 3461

**示例:**

J
jiao_yanlin 已提交
3462
```js
L
lwx1059628 已提交
3463
audioRenderer.getRendererInfo((err, rendererInfo) => {
3464 3465 3466 3467
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`);
L
lwx1059628 已提交
3468
});
Z
zengyawen 已提交
3469 3470 3471 3472 3473 3474
```

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

getRendererInfo(): Promise<AudioRendererInfo\>

L
lwx1059628 已提交
3475
获取当前被创建的音频渲染器的信息,使用Promise方式异步返回结果。
Z
zengyawen 已提交
3476

3477
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3478 3479 3480 3481 3482

**返回值:**

| 类型                                               | 说明                            |
| -------------------------------------------------- | ------------------------------- |
L
lwx1059628 已提交
3483
| Promise<[AudioRendererInfo](#audiorendererinfo8)\> | Promise用于返回音频渲染器信息。 |
Z
zengyawen 已提交
3484 3485 3486

**示例:**

J
jiao_yanlin 已提交
3487
```js
L
lwx1059628 已提交
3488
audioRenderer.getRendererInfo().then((rendererInfo) => {
3489 3490 3491 3492
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`)
L
lwx1059628 已提交
3493
}).catch((err) => {
3494
  console.error(`AudioFrameworkRenderLog: RendererInfo :ERROR: ${err}`);
L
lwx1059628 已提交
3495
});
Z
zengyawen 已提交
3496 3497 3498 3499 3500 3501 3502 3503
```

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

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

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

3504
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3505 3506 3507 3508 3509 3510 3511 3512 3513

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3514
```js
L
lwx1059628 已提交
3515
audioRenderer.getStreamInfo((err, streamInfo) => {
3516 3517 3518 3519 3520
  console.info('Renderer GetStreamInfo:');
  console.info(`Renderer sampling rate: ${streamInfo.samplingRate}`);
  console.info(`Renderer channel: ${streamInfo.channels}`);
  console.info(`Renderer format: ${streamInfo.sampleFormat}`);
  console.info(`Renderer encoding type: ${streamInfo.encodingType}`);
L
lwx1059628 已提交
3521
});
Z
zengyawen 已提交
3522 3523 3524 3525 3526 3527 3528 3529
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

3530
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3531 3532 3533 3534 3535 3536 3537 3538 3539

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3540
```js
L
lwx1059628 已提交
3541
audioRenderer.getStreamInfo().then((streamInfo) => {
3542 3543 3544 3545 3546
  console.info('Renderer GetStreamInfo:');
  console.info(`Renderer sampling rate: ${streamInfo.samplingRate}`);
  console.info(`Renderer channel: ${streamInfo.channels}`);
  console.info(`Renderer format: ${streamInfo.sampleFormat}`);
  console.info(`Renderer encoding type: ${streamInfo.encodingType}`);
L
lwx1059628 已提交
3547
}).catch((err) => {
3548
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3549
});
Z
zengyawen 已提交
3550 3551 3552 3553 3554 3555
```

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

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

L
lwx1059628 已提交
3556
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3557

3558
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3559 3560 3561 3562 3563 3564 3565 3566 3567

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3568
```js
L
lwx1059628 已提交
3569
audioRenderer.start((err) => {
J
jiao_yanlin 已提交
3570
  if (err) {
3571
    console.error('Renderer start failed.');
J
jiao_yanlin 已提交
3572
  } else {
3573
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3574
  }
L
lwx1059628 已提交
3575
});
Z
zengyawen 已提交
3576 3577 3578 3579 3580 3581
```

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

start(): Promise<void\>

L
lwx1059628 已提交
3582
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3583

3584
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3585 3586 3587 3588 3589 3590 3591 3592 3593

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3594
```js
L
lwx1059628 已提交
3595
audioRenderer.start().then(() => {
3596
  console.info('Renderer started');
L
lwx1059628 已提交
3597
}).catch((err) => {
3598
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3599
});
Z
zengyawen 已提交
3600 3601 3602 3603 3604 3605
```

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

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

L
lwx1059628 已提交
3606
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3607

3608
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3609 3610 3611 3612 3613 3614 3615 3616 3617

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3618
```js
L
lwx1059628 已提交
3619
audioRenderer.pause((err) => {
J
jiao_yanlin 已提交
3620
  if (err) {
3621
    console.error('Renderer pause failed');
J
jiao_yanlin 已提交
3622
  } else {
3623
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
3624
  }
L
lwx1059628 已提交
3625
});
Z
zengyawen 已提交
3626 3627 3628 3629 3630 3631
```

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

pause(): Promise\<void>

L
lwx1059628 已提交
3632
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3633

3634
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3635 3636 3637 3638 3639 3640 3641 3642 3643

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3644
```js
L
lwx1059628 已提交
3645
audioRenderer.pause().then(() => {
3646
  console.info('Renderer paused');
L
lwx1059628 已提交
3647
}).catch((err) => {
3648
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3649
});
Z
zengyawen 已提交
3650 3651 3652 3653 3654 3655
```

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

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

L
lwx1059628 已提交
3656
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
3657

3658
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3659 3660 3661 3662 3663 3664 3665 3666 3667

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3668
```js
L
lwx1059628 已提交
3669
audioRenderer.drain((err) => {
J
jiao_yanlin 已提交
3670
  if (err) {
3671
    console.error('Renderer drain failed');
J
jiao_yanlin 已提交
3672
  } else {
3673
    console.info('Renderer drained.');
J
jiao_yanlin 已提交
3674
  }
L
lwx1059628 已提交
3675
});
Z
zengyawen 已提交
3676 3677 3678 3679 3680 3681
```

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

drain(): Promise\<void>

L
lwx1059628 已提交
3682
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3683

3684
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3685 3686 3687 3688 3689 3690 3691 3692 3693

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3694
```js
L
lwx1059628 已提交
3695
audioRenderer.drain().then(() => {
3696
  console.info('Renderer drained successfully');
L
lwx1059628 已提交
3697
}).catch((err) => {
3698
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3699
});
Z
zengyawen 已提交
3700 3701 3702 3703 3704 3705
```

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

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

L
lwx1059628 已提交
3706
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3707

3708
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3709 3710 3711 3712 3713 3714 3715 3716 3717

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3718
```js
L
lwx1059628 已提交
3719
audioRenderer.stop((err) => {
J
jiao_yanlin 已提交
3720
  if (err) {
3721
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
3722
  } else {
3723
    console.info('Renderer stopped.');
J
jiao_yanlin 已提交
3724
  }
L
lwx1059628 已提交
3725
});
Z
zengyawen 已提交
3726 3727 3728 3729 3730 3731
```

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

stop(): Promise\<void>

L
lwx1059628 已提交
3732
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3733

3734
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3735 3736 3737 3738 3739 3740 3741 3742 3743

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3744
```js
L
lwx1059628 已提交
3745
audioRenderer.stop().then(() => {
3746
  console.info('Renderer stopped successfully');
L
lwx1059628 已提交
3747
}).catch((err) => {
3748
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3749
});
Z
zengyawen 已提交
3750 3751 3752 3753 3754 3755
```

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

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

L
lwx1059628 已提交
3756
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3757

3758
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3759 3760 3761 3762 3763 3764 3765 3766 3767

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3768
```js
L
lwx1059628 已提交
3769
audioRenderer.release((err) => {
J
jiao_yanlin 已提交
3770
  if (err) {
3771
    console.error('Renderer release failed');
J
jiao_yanlin 已提交
3772
  } else {
3773
    console.info('Renderer released.');
J
jiao_yanlin 已提交
3774
  }
L
lwx1059628 已提交
3775
});
Z
zengyawen 已提交
3776 3777 3778 3779 3780 3781 3782 3783
```

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

release(): Promise\<void>

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

3784
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3785 3786 3787 3788 3789 3790 3791 3792 3793

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3794
```js
L
lwx1059628 已提交
3795
audioRenderer.release().then(() => {
3796
  console.info('Renderer released successfully');
L
lwx1059628 已提交
3797
}).catch((err) => {
3798
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3799
});
Z
zengyawen 已提交
3800 3801 3802 3803 3804 3805 3806 3807
```

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

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

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

3808
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3809 3810 3811 3812 3813 3814 3815 3816 3817 3818

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3819
```js
L
lwx1059628 已提交
3820 3821
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
3822
import featureAbility from '@ohos.ability.featureAbility'
L
lwx1059628 已提交
3823

R
rahul 已提交
3824
var audioStreamInfo = {
J
jiao_yanlin 已提交
3825 3826 3827 3828
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
3829 3830 3831
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
3832 3833
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION
J
jiao_yanlin 已提交
3834
  rendererFlags: 0
R
rahul 已提交
3835 3836 3837
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
3838 3839
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
3840 3841 3842
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data)=> {
J
jiao_yanlin 已提交
3843
  audioRenderer = data;
3844
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
3845
  }).catch((err) => {
3846
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
3847
  });
R
rahul 已提交
3848 3849
var bufferSize;
audioRenderer.getBufferSize().then((data)=> {
3850
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
3851 3852
  bufferSize = data;
  }).catch((err) => {
3853
  console.error.(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
3854
  });
3855
console.info(`Buffer size: ${bufferSize}`);
R
rahul 已提交
3856 3857
var context = featureAbility.getContext();
var path = await context.getCacheDir();
3858
var filePath = path + '/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
3859 3860 3861
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
3862
audioRenderer.write(buf, (err, writtenbytes) => {
J
jiao_yanlin 已提交
3863
  if (writtenbytes < 0) {
3864
    console.error('write failed.');
J
jiao_yanlin 已提交
3865
  } else {
3866
    console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
3867
  }
L
lwx1059628 已提交
3868
});
Z
zengyawen 已提交
3869 3870 3871 3872 3873 3874 3875 3876
```

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

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

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

3877
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3878 3879 3880 3881 3882 3883 3884 3885 3886

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3887
```js
L
lwx1059628 已提交
3888 3889
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
3890 3891 3892
import featureAbility from '@ohos.ability.featureAbility'

var audioStreamInfo = {
J
jiao_yanlin 已提交
3893 3894 3895 3896
  samplingRate:audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels:audio.AudioChannel.CHANNEL_2,
  sampleFormat:audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType:audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
3897 3898 3899
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
3900 3901
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
3902
  rendererFlags: 0
R
rahul 已提交
3903
}
L
lwx1059628 已提交
3904

R
rahul 已提交
3905
var audioRendererOptions = {
J
jiao_yanlin 已提交
3906 3907
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
3908 3909 3910
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
3911
  audioRenderer = data;
3912
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
3913
  }).catch((err) => {
3914
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
3915
  });
R
rahul 已提交
3916 3917
var bufferSize;
audioRenderer.getBufferSize().then((data) => {
3918
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
3919 3920
  bufferSize = data;
  }).catch((err) => {
3921
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
J
jiao_yanlin 已提交
3922
  });
3923
console.info(`BufferSize: ${bufferSize}`);
R
rahul 已提交
3924 3925
var context = featureAbility.getContext();
var path = await context.getCacheDir();
L
lwx1059628 已提交
3926
var filePath = 'data/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
3927 3928 3929
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
3930
audioRenderer.write(buf).then((writtenbytes) => {
J
jiao_yanlin 已提交
3931
  if (writtenbytes < 0) {
3932
      console.error('write failed.');
J
jiao_yanlin 已提交
3933
  } else {
3934
      console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
3935
  }
L
lwx1059628 已提交
3936
}).catch((err) => {
3937
    console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3938
});
Z
zengyawen 已提交
3939 3940 3941 3942 3943 3944
```

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

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

L
lwx1059628 已提交
3945
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
3946

3947
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3948 3949 3950 3951 3952 3953 3954 3955 3956

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3957
```js
L
lwx1059628 已提交
3958
audioRenderer.getAudioTime((err, timestamp) => {
3959
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
3960
});
Z
zengyawen 已提交
3961 3962 3963 3964 3965 3966
```

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

getAudioTime(): Promise\<number>

L
lwx1059628 已提交
3967
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3968

3969
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3970 3971 3972 3973 3974 3975 3976 3977 3978

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3979
```js
L
lwx1059628 已提交
3980
audioRenderer.getAudioTime().then((timestamp) => {
3981
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
3982
}).catch((err) => {
3983
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
3984
});
Z
zengyawen 已提交
3985 3986 3987 3988 3989 3990
```

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

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

L
lwx1059628 已提交
3991
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
Z
zengyawen 已提交
3992

3993
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3994 3995 3996 3997 3998 3999 4000 4001 4002

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4003
```js
R
rahul 已提交
4004
var bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
J
jiao_yanlin 已提交
4005
  if (err) {
4006
    console.error('getBufferSize error');
J
jiao_yanlin 已提交
4007
  }
L
lwx1059628 已提交
4008
});
Z
zengyawen 已提交
4009 4010 4011 4012 4013 4014
```

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

getBufferSize(): Promise\<number>

L
lwx1059628 已提交
4015
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4016

4017
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4018 4019 4020 4021 4022 4023 4024 4025 4026

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4027
```js
R
rahul 已提交
4028 4029 4030 4031
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
4032 4033 4034 4035
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S32LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
4036 4037 4038
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
4039 4040
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
4041
  rendererFlags: 0
R
rahul 已提交
4042 4043 4044
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
4045 4046
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
4047 4048 4049
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
4050 4051 4052
  audioRenderer = data;
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
  }).catch((err) => {
4053
  console.info(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
4054
  });
R
rahul 已提交
4055
var bufferSize;
R
rahul 已提交
4056
audioRenderer.getBufferSize().then((data) => {
4057
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4058
  bufferSize = data;
L
lwx1059628 已提交
4059
}).catch((err) => {
4060
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err}`);
L
lwx1059628 已提交
4061
});
Z
zengyawen 已提交
4062 4063 4064 4065 4066 4067
```

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

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

L
lwx1059628 已提交
4068
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4069

4070
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4071 4072 4073 4074 4075

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
L
lwx1059628 已提交
4076
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
Z
zengyawen 已提交
4077 4078 4079 4080
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
4081
```js
L
lwx1059628 已提交
4082
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err) => {
J
jiao_yanlin 已提交
4083
  if (err) {
4084
    console.error('Failed to set params');
J
jiao_yanlin 已提交
4085
  } else {
4086
    console.info('Callback invoked to indicate a successful render rate setting.');
J
jiao_yanlin 已提交
4087
  }
L
lwx1059628 已提交
4088
});
Z
zengyawen 已提交
4089 4090 4091 4092 4093 4094
```

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

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

L
lwx1059628 已提交
4095
设置音频渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4096

4097
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4098 4099 4100 4101 4102

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
L
lwx1059628 已提交
4103
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
Z
zengyawen 已提交
4104 4105 4106 4107 4108 4109 4110 4111 4112

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4113
```js
L
lwx1059628 已提交
4114
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
4115
  console.info('setRenderRate SUCCESS');
L
lwx1059628 已提交
4116
}).catch((err) => {
4117
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4118
});
Z
zengyawen 已提交
4119 4120 4121 4122 4123 4124
```

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

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

L
lwx1059628 已提交
4125
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4126

4127
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4128 4129 4130 4131 4132

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
L
lwx1059628 已提交
4133
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
4134 4135 4136

**示例:**

J
jiao_yanlin 已提交
4137
```js
L
lwx1059628 已提交
4138
audioRenderer.getRenderRate((err, renderrate) => {
4139
  console.info(`getRenderRate: ${renderrate}`);
L
lwx1059628 已提交
4140
});
Z
zengyawen 已提交
4141 4142 4143 4144 4145 4146
```

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

getRenderRate(): Promise\<AudioRendererRate>

L
lwx1059628 已提交
4147
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4148

4149
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4150 4151 4152 4153 4154

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
L
lwx1059628 已提交
4155
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
4156 4157 4158

**示例:**

J
jiao_yanlin 已提交
4159
```js
L
lwx1059628 已提交
4160
audioRenderer.getRenderRate().then((renderRate) => {
4161
  console.info(`getRenderRate: ${renderRate}`);
L
lwx1059628 已提交
4162
}).catch((err) => {
4163
  console.error(`ERROR: ${err}`);
L
lwx1059628 已提交
4164
});
Z
zengyawen 已提交
4165
```
4166 4167
### setInterruptMode<sup>9+</sup>

4168
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
4169

4170
设置应用的焦点模型。使用Promise异步回调。
4171 4172 4173 4174 4175

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

**参数:**

4176 4177
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
4178
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
4179 4180 4181 4182 4183

**返回值:**

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

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

J
jiao_yanlin 已提交
4188
```js
J
jiao_yanlin 已提交
4189
var audioStreamInfo = {
J
jiao_yanlin 已提交
4190 4191 4192 4193
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
J
jiao_yanlin 已提交
4194 4195
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4196 4197 4198
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4199 4200
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4201 4202
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4203 4204 4205 4206
}
let audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
4207 4208
  console.info('setInterruptMode Success!');
}).catch((err) => {
4209
  console.error(`setInterruptMode Fail: ${err}`);
4210
});
Z
zhujie81 已提交
4211 4212 4213
```
### setInterruptMode<sup>9+</sup>

4214
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
Z
zhujie81 已提交
4215

Z
zhujie81 已提交
4216
设置应用的焦点模型。使用Callback回调返回执行结果。
Z
zhujie81 已提交
4217 4218 4219 4220

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

**参数:**
4221

4222 4223
| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
4224
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
4225
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|
Z
zengyawen 已提交
4226

Z
zhujie81 已提交
4227 4228
**示例:**

J
jiao_yanlin 已提交
4229
```js
J
jiao_yanlin 已提交
4230
var audioStreamInfo = {
J
jiao_yanlin 已提交
4231 4232 4233 4234
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_48000,
  channels: audio.AudioChannel.CHANNEL_1,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
J
jiao_yanlin 已提交
4235 4236
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4237 4238 4239
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4240 4241
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4242 4243
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4244 4245 4246
}
let audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
let mode = 1;
J
jiao_yanlin 已提交
4247
audioRenderer.setInterruptMode(mode, (err, data)=>{
J
jiao_yanlin 已提交
4248
  if(err){
4249
    console.error(`setInterruptMode Fail: ${err}`);
J
jiao_yanlin 已提交
4250
  }
4251
  console.info('setInterruptMode Success!');
4252
});
4253
```
L
lwx1059628 已提交
4254
### on('interrupt')<sup>9+</sup>
Z
zengyawen 已提交
4255 4256 4257 4258 4259

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

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

4260
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4261 4262 4263 4264 4265 4266

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4271
```js
R
rahul 已提交
4272 4273 4274
var isPlay;
var started;
audioRenderer.on('interrupt', async(interruptEvent) => {
J
jiao_yanlin 已提交
4275 4276 4277
  if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4278
        console.info('Force paused. Stop writing');
J
jiao_yanlin 已提交
4279 4280 4281
        isPlay = false;
        break;
      case audio.InterruptHint.INTERRUPT_HINT_STOP:
4282
        console.info('Force stopped. Stop writing');
J
jiao_yanlin 已提交
4283 4284 4285 4286 4287 4288
        isPlay = false;
        break;
    }
  } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_RESUME:
4289
        console.info('Resume force paused renderer or ignore');
J
jiao_yanlin 已提交
4290
        await audioRenderer.start().then(async function () {
4291
          console.info('AudioInterruptMusic: renderInstant started :SUCCESS ');
J
jiao_yanlin 已提交
4292 4293
          started = true;
        }).catch((err) => {
4294
          console.error(`AudioInterruptMusic: renderInstant start :ERROR : ${err}`);
J
jiao_yanlin 已提交
4295 4296 4297 4298
          started = false;
        });
        if (started) {
          isPlay = true;
4299
          console.info(`AudioInterruptMusic Renderer started : isPlay : ${isPlay}`);
J
jiao_yanlin 已提交
4300
        } else {
4301
          console.error('AudioInterruptMusic Renderer start failed');
Z
zengyawen 已提交
4302
        }
J
jiao_yanlin 已提交
4303 4304
        break;
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4305
        console.info('Choose to pause or ignore');
J
jiao_yanlin 已提交
4306 4307
        if (isPlay == true) {
          isPlay == false;
4308
          console.info('AudioInterruptMusic: Media PAUSE : TRUE');
J
jiao_yanlin 已提交
4309
        } else {
J
jiao_yanlin 已提交
4310
          isPlay = true;
4311
          console.info('AudioInterruptMusic: Media PLAY : TRUE');
Z
zengyawen 已提交
4312
        }
J
jiao_yanlin 已提交
4313
        break;
Z
zengyawen 已提交
4314
    }
J
jiao_yanlin 已提交
4315
  }
L
lwx1059628 已提交
4316
});
Z
zengyawen 已提交
4317 4318
```

L
lwx1059628 已提交
4319 4320
### on('markReach')<sup>8+</sup>

4321
on(type: "markReach", frame: number, callback: Callback<number>): void
L
lwx1059628 已提交
4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332

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

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                      |
| :------- | :----------------------- | :--- | :---------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。         |
4333
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                    |
L
lwx1059628 已提交
4334 4335 4336

**示例:**

J
jiao_yanlin 已提交
4337
```js
L
lwx1059628 已提交
4338
audioRenderer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4339
  if (position == 1000) {
4340
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4341
  }
L
lwx1059628 已提交
4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361
});
```


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

off(type: 'markReach'): void

取消订阅标记事件。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4362
```js
L
lwx1059628 已提交
4363 4364 4365 4366
audioRenderer.off('markReach');
```

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

4368
on(type: "periodReach", frame: number, callback: Callback<number>): void
Z
zengyawen 已提交
4369

L
lwx1059628 已提交
4370 4371 4372 4373 4374 4375 4376 4377 4378 4379
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于 0。           |
4380
| callback | Callback<number>         | 是   | 触发事件时调用的回调。                      |
L
lwx1059628 已提交
4381 4382 4383

**示例:**

J
jiao_yanlin 已提交
4384
```js
L
lwx1059628 已提交
4385
audioRenderer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
4386
  if (position == 1000) {
4387
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4388
  }
L
lwx1059628 已提交
4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407
});
```

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

off(type: 'periodReach'): void

取消订阅标记事件。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4408
```js
L
lwx1059628 已提交
4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424
audioRenderer.off('periodReach')
```

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

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

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
4425
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
4426 4427 4428

**示例:**

J
jiao_yanlin 已提交
4429
```js
L
lwx1059628 已提交
4430
audioRenderer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
4431
  if (state == 1) {
4432
    console.info('audio renderer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
4433 4434
  }
  if (state == 2) {
4435
    console.info('audio renderer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
4436
  }
L
lwx1059628 已提交
4437 4438 4439 4440 4441 4442 4443
});
```

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

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

4444
### 属性
L
lwx1059628 已提交
4445 4446 4447

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

4448
| 名称  | 类型                     | 可读 | 可写 | 说明             |
L
lwx1059628 已提交
4449
| :---- | :------------------------- | :--- | :--- | :--------------- |
4450
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
L
lwx1059628 已提交
4451 4452 4453

**示例:**

J
jiao_yanlin 已提交
4454
```js
L
lwx1059628 已提交
4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473
var state = audioCapturer.state;
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4474
```js
L
lwx1059628 已提交
4475
audioCapturer.getCapturerInfo((err, capturerInfo) => {
J
jiao_yanlin 已提交
4476
  if (err) {
4477
    console.error('Failed to get capture info');
J
jiao_yanlin 已提交
4478
  } else {
4479 4480 4481
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
J
jiao_yanlin 已提交
4482
  }
L
lwx1059628 已提交
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502
});
```


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

getCapturerInfo(): Promise<AudioCapturerInfo\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4503
```js
L
lwx1059628 已提交
4504
audioCapturer.getCapturerInfo().then((audioParamsGet) => {
J
jiao_yanlin 已提交
4505
  if (audioParamsGet != undefined) {
4506 4507 4508
    console.info('AudioFrameworkRecLog: Capturer CapturerInfo:');
    console.info(`AudioFrameworkRecLog: Capturer SourceType: ${audioParamsGet.source}`);
    console.info(`AudioFrameworkRecLog: Capturer capturerFlags: ${audioParamsGet.capturerFlags}`);
J
jiao_yanlin 已提交
4509
  } else {
4510 4511
    console.info(`AudioFrameworkRecLog: audioParamsGet is : ${audioParamsGet}`);
    console.info('AudioFrameworkRecLog: audioParams getCapturerInfo are incorrect');
J
jiao_yanlin 已提交
4512
  }
L
lwx1059628 已提交
4513
}).catch((err) => {
4514
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527
});
```

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

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

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

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

**参数:**

Z
zengyawen 已提交
4528 4529 4530
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
L
lwx1059628 已提交
4531 4532 4533

**示例:**

J
jiao_yanlin 已提交
4534
```js
L
lwx1059628 已提交
4535
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4536
  if (err) {
4537
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4538
  } else {
4539 4540 4541 4542 4543
    console.info('Capturer GetStreamInfo:');
    console.info(`Capturer sampling rate: ${streamInfo.samplingRate}`);
    console.info(`Capturer channel: ${streamInfo.channels}`);
    console.info(`Capturer format: ${streamInfo.sampleFormat}`);
    console.info(`Capturer encoding type: ${streamInfo.encodingType}`);
J
jiao_yanlin 已提交
4544
  }
L
lwx1059628 已提交
4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557
});
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

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

**返回值:**

Z
zengyawen 已提交
4558 4559 4560
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
L
lwx1059628 已提交
4561 4562 4563

**示例:**

J
jiao_yanlin 已提交
4564
```js
L
lwx1059628 已提交
4565
audioCapturer.getStreamInfo().then((audioParamsGet) => {
4566 4567 4568 4569 4570
  console.info('getStreamInfo:');
  console.info(`sampleFormat: ${audioParamsGet.sampleFormat}`);
  console.info(`samplingRate: ${audioParamsGet.samplingRate}`);
  console.info(`channels: ${audioParamsGet.channels}`);
  console.info(`encodingType: ${audioParamsGet.encodingType}`);
L
lwx1059628 已提交
4571
}).catch((err) => {
4572
  console.error(`getStreamInfo :ERROR: ${err}`);
L
lwx1059628 已提交
4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583
});
```

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

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

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

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

4584
**参数:**
L
lwx1059628 已提交
4585 4586 4587 4588 4589 4590 4591

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

**示例:**

J
jiao_yanlin 已提交
4592
```js
L
lwx1059628 已提交
4593
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
4594
  if (err) {
4595
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
4596
  } else {
4597
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
4598
  }
L
lwx1059628 已提交
4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618
});
```


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

start(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4619
```js
R
rahul 已提交
4620 4621 4622 4623
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
4624 4625 4626 4627
  samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_44100,
  channels: audio.AudioChannel.CHANNEL_2,
  sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE,
  encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW
R
rahul 已提交
4628 4629 4630
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
4631
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
4632
  capturerFlags: 0
R
rahul 已提交
4633 4634 4635 4636
}

var audioCapturer;
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
4637
  audioCapturer = data;
4638
  console.info('AudioFrameworkRecLog: AudioCapturer Created: SUCCESS');
J
jiao_yanlin 已提交
4639
  }).catch((err) => {
4640
  console.info(`AudioFrameworkRecLog: AudioCapturer Created: ERROR: ${err}`);
J
jiao_yanlin 已提交
4641
  });
L
lwx1059628 已提交
4642
audioCapturer.start().then(() => {
4643 4644 4645 4646
  console.info('AudioFrameworkRecLog: ---------START---------');
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer: STATE: ${audioCapturer.state}`);
  console.info('AudioFrameworkRecLog: Capturer started: SUCCESS');
J
jiao_yanlin 已提交
4647
  if ((audioCapturer.state == audio.AudioState.STATE_RUNNING)) {
4648
    console.info('AudioFrameworkRecLog: AudioCapturer is in Running State');
J
jiao_yanlin 已提交
4649
  }
L
lwx1059628 已提交
4650
}).catch((err) => {
4651
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err}`);
L
lwx1059628 已提交
4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670
});
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4671
```js
L
lwx1059628 已提交
4672
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
4673
  if (err) {
4674
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
4675
  } else {
4676
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
4677
  }
L
lwx1059628 已提交
4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697
});
```


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

stop(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4698
```js
L
lwx1059628 已提交
4699
audioCapturer.stop().then(() => {
4700 4701
  console.info('AudioFrameworkRecLog: ---------STOP RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer stopped: SUCCESS');
J
jiao_yanlin 已提交
4702
  if ((audioCapturer.state == audio.AudioState.STATE_STOPPED)){
4703
    console.info('AudioFrameworkRecLog: State is Stopped:');
J
jiao_yanlin 已提交
4704
  }
L
lwx1059628 已提交
4705
}).catch((err) => {
4706
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725
});
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4726
```js
L
lwx1059628 已提交
4727
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
4728
  if (err) {
4729
    console.error('capturer release failed');
J
jiao_yanlin 已提交
4730
  } else {
4731
    console.info('capturer released.');
J
jiao_yanlin 已提交
4732
  }
L
lwx1059628 已提交
4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752
});
```


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

release(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4753
```js
J
jiao_yanlin 已提交
4754
var stateFlag;
L
lwx1059628 已提交
4755
audioCapturer.release().then(() => {
4756 4757 4758 4759
  console.info('AudioFrameworkRecLog: ---------RELEASE RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer release : SUCCESS');
  console.info(`AudioFrameworkRecLog: AudioCapturer : STATE : ${audioCapturer.state}`);
  console.info(`AudioFrameworkRecLog: stateFlag : ${stateFlag}`);
L
lwx1059628 已提交
4760
}).catch((err) => {
4761
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err}`);
L
lwx1059628 已提交
4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773
});
```


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

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

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

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

4774
**参数:**
L
lwx1059628 已提交
4775 4776 4777 4778 4779 4780 4781 4782 4783

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

**示例:**

J
jiao_yanlin 已提交
4784
```js
R
rahul 已提交
4785 4786
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4787
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4788 4789
  bufferSize = data;
  }).catch((err) => {
4790
    console.error(`AudioFrameworkRecLog: getBufferSize: EROOR: ${err}`);
J
jiao_yanlin 已提交
4791
  });
L
lwx1059628 已提交
4792
audioCapturer.read(bufferSize, true, async(err, buffer) => {
J
jiao_yanlin 已提交
4793
  if (!err) {
4794
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
4795
  }
J
jiao_yanlin 已提交
4796
});
L
lwx1059628 已提交
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822
```


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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4823
```js
R
rahul 已提交
4824 4825
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4826
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4827 4828
  bufferSize = data;
  }).catch((err) => {
4829
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err}`);
J
jiao_yanlin 已提交
4830
  });
4831
console.info(`Buffer size: ${bufferSize}`);
L
lwx1059628 已提交
4832
audioCapturer.read(bufferSize, true).then((buffer) => {
4833
  console.info('buffer read successfully');
L
lwx1059628 已提交
4834
}).catch((err) => {
4835
  console.info(`ERROR : ${err}`);
L
lwx1059628 已提交
4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855
});
```


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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4856
```js
L
lwx1059628 已提交
4857
audioCapturer.getAudioTime((err, timestamp) => {
4858
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
});
```


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

getAudioTime(): Promise<number\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4879
```js
L
lwx1059628 已提交
4880
audioCapturer.getAudioTime().then((audioTime) => {
4881
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4882
}).catch((err) => {
4883
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
L
lwx1059628 已提交
4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903
});
```


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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4904
```js
L
lwx1059628 已提交
4905
audioCapturer.getBufferSize((err, bufferSize) => {
J
jiao_yanlin 已提交
4906
  if (!err) {
4907
    console.info(`BufferSize : ${bufferSize}`);
J
jiao_yanlin 已提交
4908
    audioCapturer.read(bufferSize, true).then((buffer) => {
4909
      console.info(`Buffer read is ${buffer}`);
J
jiao_yanlin 已提交
4910
    }).catch((err) => {
4911
      console.error(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err}`);
J
jiao_yanlin 已提交
4912 4913
    });
  }
L
lwx1059628 已提交
4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933
});
```


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

getBufferSize(): Promise<number\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4934
```js
R
rahul 已提交
4935 4936
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4937
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
J
jiao_yanlin 已提交
4938
  bufferSize = data;
R
rahul 已提交
4939
}).catch((err) => {
4940
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err}`);
L
lwx1059628 已提交
4941 4942 4943 4944 4945 4946
});
```


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

4947
on(type: "markReach", frame: number, callback: Callback<number>): void
L
lwx1059628 已提交
4948 4949 4950 4951 4952 4953 4954

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

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

**参数:**

4955 4956 4957 4958
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
4959
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调。 |
L
lwx1059628 已提交
4960 4961 4962

**示例:**

J
jiao_yanlin 已提交
4963
```js
L
lwx1059628 已提交
4964
audioCapturer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4965
  if (position == 1000) {
4966
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4967
  }
L
lwx1059628 已提交
4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986
});
```

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

off(type: 'markReach'): void

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4987
```js
L
lwx1059628 已提交
4988 4989 4990 4991 4992
audioCapturer.off('markReach');
```

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

4993
on(type: "periodReach", frame: number, callback: Callback<number>): void
L
lwx1059628 已提交
4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004

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

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

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                        |
| :------- | :----------------------- | :--- | :------------------------------------------ |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'periodReach'。 |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。            |
5005
| callback | Callback<number>         | 是   | 使用callback方式异步返回被触发事件的回调    |
L
lwx1059628 已提交
5006 5007 5008

**示例:**

J
jiao_yanlin 已提交
5009
```js
L
lwx1059628 已提交
5010
audioCapturer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
5011
  if (position == 1000) {
5012
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
5013
  }
L
lwx1059628 已提交
5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032
});
```

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

off(type: 'periodReach'): void

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
5033
```js
L
lwx1059628 已提交
5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049
audioCapturer.off('periodReach')
```

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

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

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
5050
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
5051 5052 5053

**示例:**

J
jiao_yanlin 已提交
5054
```js
L
lwx1059628 已提交
5055
audioCapturer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
5056
  if (state == 1) {
5057
    console.info('audio capturer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
5058 5059
  }
  if (state == 2) {
5060
    console.info('audio capturer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
5061
  }
L
lwx1059628 已提交
5062
});
5063
```