js-apis-audio.md 180.1 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 25 26 27 28 29 30 31 32 33 34 35
## 常量

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

**系统能力:** SystemCapability.Multimedia.Audio.Device
| 名称  | 类型                     | 可读 | 可写 | 说明               |
| ----- | -------------------------- | ---- | ---- | ------------------ |
| LOCAL_NETWORK_ID<sup>9+</sup> | string | 是   | 否   | 本地设备网络id。 |

**示例:**

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

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

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

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

获取音频管理器。

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

M
mamingshuai 已提交
45
**返回值:**
Z
zengyawen 已提交
46 47
| 类型                          | 说明         |
| ----------------------------- | ------------ |
Z
zengyawen 已提交
48
| [AudioManager](#audiomanager) | 音频管理类。 |
M
mamingshuai 已提交
49 50

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

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

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

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
获取音频流管理器实例。使用callback方式异步返回结果。

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

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

**示例:**

```js
audio.getStreamManager((err, data) => {
  if (err) {
    console.error(`getStreamManager : Error: ${err.message}`);
  } else {
    console.info('getStreamManager : Success : SUCCESS');
    let audioStreamManager = data;
  }
});
```

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

getStreamManager(): Promise<AudioStreamManager\>

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

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

89
**返回值:**
90 91 92 93

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

95
**示例:**
96

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

106 107
```

Z
zengyawen 已提交
108 109
## audio.createAudioRenderer<sup>8+</sup>

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

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

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

116
**参数:**
Z
zengyawen 已提交
117

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

**示例:**

J
jiao_yanlin 已提交
125
```js
L
lwx1059628 已提交
126
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
127
var audioStreamInfo = {
J
jiao_yanlin 已提交
128 129 130 131
  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 已提交
132 133 134
}

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

var audioRendererOptions = {
J
jiao_yanlin 已提交
141 142
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
L
lwx1059628 已提交
143 144 145
}

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
177
```js
L
lwx1059628 已提交
178 179
import audio from '@ohos.multimedia.audio';

Z
zengyawen 已提交
180
var audioStreamInfo = {
J
jiao_yanlin 已提交
181 182 183 184
  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 已提交
185 186 187
}

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

var audioRendererOptions = {
J
jiao_yanlin 已提交
194 195
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
Z
zengyawen 已提交
196 197
}

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

L
lwx1059628 已提交
207 208 209 210 211 212 213 214 215 216
## audio.createAudioCapturer<sup>8+</sup>

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
224
```js
L
lwx1059628 已提交
225
import audio from '@ohos.multimedia.audio';
L
lwx1059628 已提交
226
var audioStreamInfo = {
J
jiao_yanlin 已提交
227 228 229 230
  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 已提交
231 232 233
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
234
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
235
  capturerFlags: 0
L
lwx1059628 已提交
236 237 238
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
239 240
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
241 242
}

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
275
```js
L
lwx1059628 已提交
276 277
import audio from '@ohos.multimedia.audio';

L
lwx1059628 已提交
278
var audioStreamInfo = {
J
jiao_yanlin 已提交
279 280 281 282
  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 已提交
283 284 285
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
286
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
287
  capturerFlags: 0
L
lwx1059628 已提交
288 289 290
}

var audioCapturerOptions = {
J
jiao_yanlin 已提交
291 292
  streamInfo: audioStreamInfo,
  capturerInfo: audioCapturerInfo
L
lwx1059628 已提交
293 294
}

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

Z
zengyawen 已提交
304
## AudioVolumeType
M
mamingshuai 已提交
305

306
枚举,音频流类型。
M
mamingshuai 已提交
307

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

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


319
## InterruptMode<sup>9+</sup>
320

321
枚举,焦点模型。
322

323
**系统能力:** SystemCapability.Multimedia.Audio.Core
324 325 326

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

Z
zengyawen 已提交
330
## DeviceFlag
M
mamingshuai 已提交
331

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

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

| 名称                | 默认值 | 描述       |
| ------------------- | ------ | ---------- |
338
| NONE_DEVICES_FLAG<sup>9+</sup>   | 0      | 无         |
Z
zengyawen 已提交
339 340 341
| OUTPUT_DEVICES_FLAG | 1      | 输出设备。 |
| INPUT_DEVICES_FLAG  | 2      | 输入设备。 |
| ALL_DEVICES_FLAG    | 3      | 所有设备。 |
342 343 344
| DISTRIBUTED_OUTPUT_DEVICES_FLAG<sup>9+</sup> | 4   | 分布式输出设备。  |
| DISTRIBUTED_INPUT_DEVICES_FLAG<sup>9+</sup>  | 8   | 分布式输入设备。  |
| ALL_DISTRIBUTED_DEVICES_FLAG<sup>9+</sup>    | 12  | 分布式输入和输出设备。  |
Z
zengyawen 已提交
345 346 347


## DeviceRole
M
mamingshuai 已提交
348

349
枚举,设备角色。
M
mamingshuai 已提交
350

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

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


Z
zengyawen 已提交
359 360 361
## DeviceType

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

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

H
update  
HelloCrease 已提交
365 366 367 368 369 370 371 372 373 374 375
| 名称             | 默认值 | 描述                                                      |
| ---------------- | ------ | --------------------------------------------------------- |
| 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耳机,带麦克风。                                       |
376
| DEFAULT          | 1000   | 默认设备类型。                                            |
M
magekkkk 已提交
377

Z
zengyawen 已提交
378
## ActiveDeviceType
M
magekkkk 已提交
379

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

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

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

Z
zengyawen 已提交
389
## AudioRingMode
390 391 392

枚举,铃声模式。

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

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

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

枚举,音频采样格式。

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

407 408 409 410 411 412 413 414
| 名称                                | 默认值 | 描述                       |
| ---------------------------------- | ------ | -------------------------- |
| 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 已提交
415 416 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

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

枚举,音频内容类型。

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

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

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

枚举,音频流使用类型。

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

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

486
## FocusType<sup>9+</sup>
487

488
表示焦点类型的枚举。
489

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

492 493 494
| 名称                               | 默认值  | 描述                            |
| ---------------------------------- | ------ | ------------------------------- |
| FOCUS_TYPE_RECORDING               | 0      |  在录制场景使用,可打断其他音频。  |
495 496


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

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

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

L
lwx1059628 已提交
525
## InterruptType
Z
zengyawen 已提交
526 527 528 529

枚举,中断类型。

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

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

L
lwx1059628 已提交
536
## InterruptForceType<sup>9+</sup>
Z
zengyawen 已提交
537 538 539 540 541 542 543 544 545 546

枚举,强制打断类型。

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

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

L
lwx1059628 已提交
547
## InterruptHint
Z
zengyawen 已提交
548 549 550 551 552

枚举,中断提示。

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

L
lwx1059628 已提交
553 554 555 556 557 558 559 560
| 名称                               | 默认值 | 描述                                         |
| ---------------------------------- | ------ | -------------------------------------------- |
| 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 已提交
561

562 563 564 565 566 567
## InterruptActionType

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

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

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

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

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

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

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

L
lwx1059628 已提交
600
音频渲染器选项信息。
Z
zengyawen 已提交
601 602 603 604 605 606

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

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

L
lwx1059628 已提交
609
## InterruptEvent<sup>9+</sup>
Z
zengyawen 已提交
610 611 612 613 614 615 616

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

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

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

621 622 623 624 625 626
## AudioInterrupt

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

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

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

## InterruptAction

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

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

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

Z
zengyawen 已提交
646 647 648 649
## VolumeEvent<sup>8+</sup>

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

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

Z
zengyawen 已提交
652 653 654 655 656 657 658
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Audio.Volume

| 名称       | 类型                                | 必填 | 说明                                                     |
| ---------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。                                             |
| volume     | number                              | 是   | 音量等级,可设置范围通过getMinVolume和getMaxVolume获取。 |
| updateUi   | boolean                             | 是   | 在UI中显示音量变化。                                     |
W
wangtao 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
| 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>

音量组信息。

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

**系统能力:** 以下各项对应的系统能力均为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)的数组,只读。

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

**系统能力:** 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 已提交
708

L
lwx1059628 已提交
709 710 711 712
## DeviceChangeAction

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

713
**系统能力:** SystemCapability.Multimedia.Audio.Device
L
lwx1059628 已提交
714 715 716

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

## DeviceChangeType

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

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

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

Z
zengyawen 已提交
731 732 733 734 735 736 737 738 739
## AudioCapturerOptions<sup>8+</sup>

音频采集器选项信息。

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

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

L
lwx1059628 已提交
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
## 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 已提交
759 760 761 762 763
| 名称                            | 默认值 | 描述                   |
| :------------------------------ | :----- | :--------------------- |
| SOURCE_TYPE_INVALID             | -1     | 无效的音频源。         |
| SOURCE_TYPE_MIC                 | 0      | Mic音频源。            |
| SOURCE_TYPE_VOICE_COMMUNICATION | 7      | 语音通话场景的音频源。 |
L
lwx1059628 已提交
764 765 766 767 768 769 770

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

枚举,音频场景。

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

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

W
wangtao 已提交
778

Z
zengyawen 已提交
779
## AudioManager
M
mamingshuai 已提交
780

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

783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 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
### 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
await audioManager.getRoutingManager((err,callback) => {
  if (err) {
    console.error(`Result ERROR: ${err.message}`);
  }
  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) => {
  console.error(`Result ERROR: ${err.message}`);
});
```

Z
zengyawen 已提交
833 834 835
### setVolume

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

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

839 840 841
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

M
mamingshuai 已提交
845 846
**参数:**

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

M
mamingshuai 已提交
853 854
**示例:**

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

Z
zengyawen 已提交
865 866 867
### setVolume

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

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

871 872 873
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

M
mamingshuai 已提交
877 878
**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
898 899 900
### getVolume

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

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

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

M
mamingshuai 已提交
906 907
**参数:**

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

M
mamingshuai 已提交
913 914
**示例:**

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

Z
zengyawen 已提交
925 926 927
### getVolume

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

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

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

M
mamingshuai 已提交
933 934
**参数:**

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

**返回值:**

Z
zengyawen 已提交
941 942
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
943
| Promise&lt;number&gt; | Promise回调返回音量大小。 |
M
mamingshuai 已提交
944 945 946

**示例:**

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

Z
zengyawen 已提交
953 954 955
### getMinVolume

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

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

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

M
mamingshuai 已提交
961 962
**参数:**

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

M
mamingshuai 已提交
968 969
**示例:**

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

Z
zengyawen 已提交
980 981 982
### getMinVolume

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

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

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

M
mamingshuai 已提交
988 989
**参数:**

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

**返回值:**

Z
zengyawen 已提交
996 997
| 类型                  | 说明                      |
| --------------------- | ------------------------- |
Z
zengyawen 已提交
998
| Promise&lt;number&gt; | Promise回调返回最小音量。 |
M
mamingshuai 已提交
999 1000 1001

**示例:**

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

Z
zengyawen 已提交
1008 1009 1010
### getMaxVolume

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

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

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

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

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

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

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

Z
zengyawen 已提交
1035 1036 1037
### getMaxVolume

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

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

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

M
mamingshuai 已提交
1043 1044
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1051 1052
| 类型                  | 说明                          |
| --------------------- | ----------------------------- |
Z
zengyawen 已提交
1053
| Promise&lt;number&gt; | Promise回调返回最大音量大小。 |
M
mamingshuai 已提交
1054 1055 1056

**示例:**

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

Z
zengyawen 已提交
1063
### mute
Z
zengyawen 已提交
1064 1065

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

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

1069 1070 1071
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

Z
zengyawen 已提交
1075 1076
**参数:**

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

Z
zengyawen 已提交
1083 1084
**示例:**

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

Z
zengyawen 已提交
1095
### mute
Z
zengyawen 已提交
1096 1097

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

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

1101 1102 1103
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1107 1108
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1116 1117
| 类型                | 说明                          |
| ------------------- | ----------------------------- |
Z
zengyawen 已提交
1118
| Promise&lt;void&gt; | Promise回调表示成功还是失败。 |
1119 1120 1121

**示例:**

Z
zengyawen 已提交
1122

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


Z
zengyawen 已提交
1130
### isMute
1131

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

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

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

Z
zengyawen 已提交
1138
**参数:**
1139

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

**示例:**

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

Z
zengyawen 已提交
1157

Z
zengyawen 已提交
1158
### isMute
Z
zengyawen 已提交
1159 1160

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

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

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

Z
zengyawen 已提交
1166 1167
**参数:**

Z
zengyawen 已提交
1168 1169 1170
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
Z
zengyawen 已提交
1171 1172 1173

**返回值:**

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

Z
zengyawen 已提交
1178 1179
**示例:**

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

Z
zengyawen 已提交
1186
### isActive
Z
zengyawen 已提交
1187 1188

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

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

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

1194 1195
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1213
### isActive
Z
zengyawen 已提交
1214 1215

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

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

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

1221 1222
**参数:**

Z
zengyawen 已提交
1223 1224 1225
| 参数名     | 类型                                | 必填 | 说明         |
| ---------- | ----------------------------------- | ---- | ------------ |
| volumeType | [AudioVolumeType](#audiovolumetype) | 是   | 音量流类型。 |
1226 1227 1228

**返回值:**

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

1233 1234
**示例:**

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

Z
zengyawen 已提交
1241
### setRingerMode
Z
zengyawen 已提交
1242 1243

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

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

1247 1248 1249
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1253 1254
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1272
### setRingerMode
Z
zengyawen 已提交
1273 1274

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

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

1278 1279 1280
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

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

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

1284 1285
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1292 1293
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1294
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1295 1296 1297

**示例:**

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


Z
zengyawen 已提交
1305
### getRingerMode
1306

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

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

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

Z
zengyawen 已提交
1313
**参数:**
1314

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

**示例:**

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


Z
zengyawen 已提交
1332
### getRingerMode
1333

Z
zengyawen 已提交
1334
getRingerMode(): Promise&lt;AudioRingMode&gt;
1335

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

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

1340 1341
**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
1354
### setAudioParameter
Z
zengyawen 已提交
1355 1356

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

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

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

1362 1363
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1366 1367
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1386
### setAudioParameter
Z
zengyawen 已提交
1387 1388

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

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

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

1394 1395
**需要权限:** ohos.permission.MODIFY_AUDIO_SETTINGS

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

1398 1399
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1407 1408
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1409
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1410 1411 1412

**示例:**

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

Z
zengyawen 已提交
1419
### getAudioParameter
Z
zengyawen 已提交
1420 1421

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

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

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

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

1429 1430
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1448
### getAudioParameter
Z
zengyawen 已提交
1449 1450

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

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

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

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

1458 1459
**参数:**

Z
zengyawen 已提交
1460 1461 1462
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| key    | string | 是   | 待获取的音频参数的键。 |
1463 1464 1465

**返回值:**

Z
zengyawen 已提交
1466 1467
| 类型                  | 说明                                |
| --------------------- | ----------------------------------- |
Z
zengyawen 已提交
1468
| Promise&lt;string&gt; | Promise回调返回获取的音频参数的值。 |
1469 1470 1471

**示例:**

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

Z
zengyawen 已提交
1478 1479 1480
### getDevices

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

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

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

1486 1487
**参数:**

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

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

Z
zengyawen 已提交
1504 1505
### getDevices

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

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

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

1512 1513
**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
1532
### setDeviceActive
Z
zengyawen 已提交
1533

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

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

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

1540 1541
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1560
### setDeviceActive
Z
zengyawen 已提交
1561

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

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

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

1568 1569
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1577 1578
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1579
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1580 1581 1582

**示例:**

Z
zengyawen 已提交
1583

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

Z
zengyawen 已提交
1590
### isDeviceActive
Z
zengyawen 已提交
1591

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

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

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

1598 1599
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1617

Z
zengyawen 已提交
1618
### isDeviceActive
Z
zengyawen 已提交
1619

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

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

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

1626 1627
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1634 1635
| Type                   | Description                     |
| ---------------------- | ------------------------------- |
Z
zengyawen 已提交
1636
| Promise&lt;boolean&gt; | Promise回调返回设备的激活状态。 |
1637 1638 1639

**示例:**

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

Z
zengyawen 已提交
1646
### setMicrophoneMute
Z
zengyawen 已提交
1647 1648

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

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

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

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

1656 1657
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1675
### setMicrophoneMute
Z
zengyawen 已提交
1676 1677

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

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

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

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

1685 1686
**参数:**

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

**返回值:**

Z
zengyawen 已提交
1693 1694
| 类型                | 说明                            |
| ------------------- | ------------------------------- |
Z
zengyawen 已提交
1695
| Promise&lt;void&gt; | Promise回调返回设置成功或失败。 |
1696 1697 1698

**示例:**

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

Z
zengyawen 已提交
1705
### isMicrophoneMute
Z
zengyawen 已提交
1706 1707

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

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

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

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

1715 1716
**参数:**

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

**示例:**

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

Z
zengyawen 已提交
1733
### isMicrophoneMute
1734

Z
zengyawen 已提交
1735
isMicrophoneMute(): Promise&lt;boolean&gt;
1736

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

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

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

1743 1744
**返回值:**

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

**示例:**

Z
zengyawen 已提交
1751

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

L
lwx1059628 已提交
1758
### on('volumeChange')<sup>8+</sup>
Z
zengyawen 已提交
1759 1760 1761 1762 1763

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

监听系统音量变化事件。

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

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

Z
zengyawen 已提交
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
**系统能力:** SystemCapability.Multimedia.Audio.Volume

**参数:**

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

**示例:**

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

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

A
AOL 已提交
1789
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
Z
zengyawen 已提交
1790 1791 1792

监听铃声模式变化事件。

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

Z
zengyawen 已提交
1795 1796 1797 1798 1799 1800 1801 1802
**系统能力:** SystemCapability.Multimedia.Audio.Communication

**参数:**

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

L
lwx1059628 已提交
1804 1805
**示例:**

J
jiao_yanlin 已提交
1806
```js
L
lwx1059628 已提交
1807
audioManager.on('ringerModeChange', (ringerMode) => {
1808
  console.info(`Updated ringermode: ${ringerMode}`);
L
lwx1059628 已提交
1809 1810 1811
});
```

L
lwx1059628 已提交
1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
### on('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1829
```js
L
lwx1059628 已提交
1830
audioManager.on('deviceChange', (deviceChanged) => {
1831 1832 1833 1834
  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 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
});
```

### off('deviceChange')

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
1855
```js
L
lwx1059628 已提交
1856
audioManager.off('deviceChange', (deviceChanged) => {
1857
  console.info('Should be no callback.');
L
lwx1059628 已提交
1858 1859 1860
});
```

1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
### on('interrupt')

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

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

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

**参数:**

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

**示例:**

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

### off('interrupt')

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

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

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

**参数:**

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

**示例:**

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

L
lwx1059628 已提交
1929 1930 1931 1932 1933 1934
### setAudioScene<sup>8+</sup>

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

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

1935
此接口为系统接口,三方应用不支持调用。
L
lwx1059628 已提交
1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947

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

**参数:**

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

**示例:**

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

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

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

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

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

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

Z
zengyawen 已提交
1968
**参数:**
L
lwx1059628 已提交
1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981

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

**返回值:**

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

**示例:**

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

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

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

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

Z
zengyawen 已提交
1996
**系统能力:** SystemCapability.Multimedia.Audio.Communication
L
lwx1059628 已提交
1997 1998 1999 2000 2001 2002 2003 2004 2005

**参数:**

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

**示例:**

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


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

getAudioScene\(\): Promise<AudioScene\>

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

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

**返回值:**

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

**示例:**

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

W
wangtao 已提交
2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
### getVolumeGroups<sup>9+</sup>

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

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

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

**系统能力:** 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) {
    console.error(`Failed to obtain the volume group infos list. ${err.message}`);
    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方式异步返回结果。

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

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

**参数:**

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

2085 2086 2087 2088 2089 2090
**返回值:**

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

W
wangtao 已提交
2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
**示例:**

```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方式异步返回结果。

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

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。     |
2115
| callback   | AsyncCallback&lt; [AudioGroupManager](#audiogroupmanager9) &gt; | 是   | 回调,返回一个音量组实例。 |
W
wangtao 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151

**示例:**

```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) {
        console.error(`Failed to obtain the volume group infos list. ${err.message}`);
        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方式异步返回结果。

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

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                 |
| ---------- | ------------------------------------------------------------ | ---- | -------------------- |
| networkId | string                                    | 是   | 设备的网络id。     |

2152 2153 2154 2155 2156 2157
**返回值:**

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

W
wangtao 已提交
2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183
**示例:**

```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) 创建实例。

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

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

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

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

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

2184 2185 2186
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215

**系统能力:** 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) {
    console.error(`Failed to set the volume. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate a successful volume setting.`);
});
```

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

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

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

2216 2217 2218
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 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 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 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 2408 2409 2410 2411 2412 2413

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.setVolume(audio.AudioVolumeType.MEDIA, 10).then(() => {
  console.log(`Promise returned to indicate a successful volume setting.`);
});
```

### 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) {
    console.error(`Failed to obtain the volume. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate that the volume is obtained.`);
});
```

### 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) => {
  console.log(`Promise returned to indicate that the volume is obtained.` + value);
});
```

### 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) {
    console.error(`Failed to obtain the minimum volume. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate that the minimum volume is obtained.` + value);
});
```

### 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) => {
  console.log(`Promised returned to indicate that the minimum volume is obtained.` + value);
});
```

### 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) {
    console.error(`Failed to obtain the maximum volume. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate that the maximum volume is obtained.` + value);
});
```

### 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) => {
  console.log(`Promised returned to indicate that the maximum volume is obtained.`);
});
```

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

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

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

2414 2415 2416
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445

**系统能力:** 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) {
    console.error(`Failed to mute the stream. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate that the stream is muted.`);
});
```

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

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

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

2446 2447 2448
**需要权限:** ohos.permission.ACCESS_NOTIFICATION_POLICY

仅设置铃声(即volumeType为AudioVolumeType.RINGTONE)在静音和非静音状态切换时需要该权限。
W
wangtao 已提交
2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527

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

**参数:**

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

**返回值:**

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

**示例:**

```js
audioGroupManager.mute(audio.AudioVolumeType.MEDIA, true).then(() => {
  console.log(`Promise returned to indicate that the stream is muted.`);
});
```

### 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) {
    console.error(`Failed to obtain the mute status. ${err.message}`);
    return;
  }
  console.log(`Callback invoked to indicate that the mute status of the stream is obtained.` + value);
});
```

### 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) => {
  console.log(`Promise returned to indicate that the mute status of the stream is obtained.` + value);
});
```

2528 2529
## AudioStreamManager<sup>9+</sup>

2530
管理音频流。在使用AudioStreamManager的API前,需要使用[getStreamManager](#audiogetstreammanager9)获取AudioStreamManager实例。
2531 2532 2533

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

2534
getCurrentAudioRendererInfoArray(callback: AsyncCallback&lt;AudioRendererChangeInfoArray&gt;): void
2535

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

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

2540
**参数:**
2541 2542 2543

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

2546
**示例:**
J
jiao_yanlin 已提交
2547 2548

```js
2549
audioStreamManager.getCurrentAudioRendererInfoArray(async (err, AudioRendererChangeInfoArray) => {
2550
  console.info('getCurrentAudioRendererInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2551
  if (err) {
2552
    console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err.message}`);
J
jiao_yanlin 已提交
2553 2554 2555 2556
  } else {
    if (AudioRendererChangeInfoArray != null) {
      for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
        AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2557 2558 2559 2560 2561 2562
        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 已提交
2563
        for (let j = 0;j < AudioRendererChangeInfo.deviceDescriptors.length; j++) {
2564 2565 2566 2567 2568 2569 2570 2571
          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}`);
2572
        }
J
jiao_yanlin 已提交
2573
      }
2574
    }
J
jiao_yanlin 已提交
2575
  }
2576 2577 2578 2579 2580
});
```

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

2581
getCurrentAudioRendererInfoArray(): Promise&lt;AudioRendererChangeInfoArray&gt;
2582

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

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

2587
**返回值:**
2588 2589 2590

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

2593
**示例:**
J
jiao_yanlin 已提交
2594 2595

```js
2596
await audioStreamManager.getCurrentAudioRendererInfoArray().then( function (AudioRendererChangeInfoArray) {
2597
  console.info(`getCurrentAudioRendererInfoArray ######### Get Promise is called ##########`);
J
jiao_yanlin 已提交
2598 2599 2600
  if (AudioRendererChangeInfoArray != null) {
    for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
      AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615
      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 已提交
2616
      }
2617
    }
J
jiao_yanlin 已提交
2618
  }
2619
}).catch((err) => {
2620
  console.error(`getCurrentAudioRendererInfoArray :ERROR: ${err.message}`);
2621 2622 2623 2624 2625
});
```

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

2626
getCurrentAudioCapturerInfoArray(callback: AsyncCallback&lt;AudioCapturerChangeInfoArray&gt;): void
2627

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

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

2632
**参数:**
2633 2634 2635

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

2638
**示例:**
J
jiao_yanlin 已提交
2639 2640

```js
2641
audioStreamManager.getCurrentAudioCapturerInfoArray(async (err, AudioCapturerChangeInfoArray) => {
2642
  console.info('getCurrentAudioCapturerInfoArray **** Get Callback Called ****');
J
jiao_yanlin 已提交
2643
  if (err) {
2644
    console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err.message}`);
J
jiao_yanlin 已提交
2645
  } else {
J
jiao_yanlin 已提交
2646 2647
    if (AudioCapturerChangeInfoArray != null) {
      for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2648 2649 2650 2651 2652
        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 已提交
2653
        for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2654 2655 2656 2657 2658 2659 2660 2661
          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}`);
2662
        }
J
jiao_yanlin 已提交
2663
      }
2664
    }
J
jiao_yanlin 已提交
2665
  }
2666 2667 2668 2669 2670
});
```

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

2671
getCurrentAudioCapturerInfoArray(): Promise&lt;AudioCapturerChangeInfoArray&gt;
2672

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

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

2677
**返回值:**
2678

2679 2680 2681
| 类型                                                                         | 说明                                 |
| -----------------------------------------------------------------------------| ----------------------------------- |
| Promise<[AudioCapturerChangeInfoArray](#audiocapturerchangeinfoarray9)>      | Promise对象,返回当前音频渲染器信息。  |
2682

2683
**示例:**
J
jiao_yanlin 已提交
2684 2685

```js
2686
await audioStreamManager.getCurrentAudioCapturerInfoArray().then( function (AudioCapturerChangeInfoArray) {
2687
  console.info('getCurrentAudioCapturerInfoArray **** Get Promise Called ****');
J
jiao_yanlin 已提交
2688 2689
  if (AudioCapturerChangeInfoArray != null) {
    for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2690 2691 2692 2693 2694
      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 已提交
2695
      for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2696 2697 2698 2699 2700 2701 2702 2703
        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 已提交
2704
      }
2705
    }
J
jiao_yanlin 已提交
2706
  }
2707
}).catch((err) => {
2708
  console.error(`getCurrentAudioCapturerInfoArray :ERROR: ${err.message}`);
2709 2710 2711 2712 2713
});
```

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

2714
on(type: "audioRendererChange", callback: Callback&lt;AudioRendererChangeInfoArray&gt;): void
2715 2716 2717

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

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

2720
**参数:**
2721

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

2727
**示例:**
J
jiao_yanlin 已提交
2728 2729

```js
2730
audioStreamManager.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
2731
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
J
jiao_yanlin 已提交
2732
    AudioRendererChangeInfo = AudioRendererChangeInfoArray[i];
2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748
    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}`);
2749
    }
J
jiao_yanlin 已提交
2750
  }
2751 2752 2753 2754 2755 2756 2757
});
```

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

off(type: "audioRendererChange");

2758
取消监听音频渲染器更改事件。
2759

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

2762
**参数:**
2763 2764 2765

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

2768
**示例:**
J
jiao_yanlin 已提交
2769 2770

```js
2771
audioStreamManager.off('audioRendererChange');
2772
console.info('######### RendererChange Off is called #########');
2773 2774 2775 2776
```

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

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

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

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

2783
**参数:**
2784 2785

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

2790
**示例:**
J
jiao_yanlin 已提交
2791 2792

```js
2793
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
2794
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
2795 2796 2797 2798 2799 2800 2801
    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 已提交
2802
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
2803 2804 2805 2806 2807 2808 2809 2810
      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}`);
2811
    }
J
jiao_yanlin 已提交
2812
  }
2813 2814 2815 2816 2817 2818 2819
});
```

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

off(type: "audioCapturerChange");

2820
取消监听音频采集器更改事件。
2821

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

2824
**参数:**
2825

2826 2827 2828
| 名称      | 类型     | 必填 | 说明                                                          |
| -------- | -------- | --- | ------------------------------------------------------------- |
| type     | string   |是   | 事件类型,支持的事件`'audioCapturerChange'`:音频采集器更改事件。 |
2829

2830
**示例:**
J
jiao_yanlin 已提交
2831 2832

```js
2833
audioStreamManager.off('audioCapturerChange');
2834
console.info('######### CapturerChange Off is called #########');
2835 2836 2837

```

2838 2839 2840 2841
## AudioRoutingManager<sup>9+</sup>

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

2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975
### 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) {
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err.message}`);
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value) => {
      if (err) {
        console.error(`Failed to obtain the device list. ${err.message}`);
        return;
      }
      console.log(`Callback invoked to indicate that the device list is obtained.`);
    });
  }
})
```

### 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) {
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err.message}`);
  }
  else {
    AudioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
      console.log(`Promise returned to indicate that the device list is obtained.`);
    });
  }
});
```

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

on(type: 'deviceChange', deviceFlag: DeviceFlag,, 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) {
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err.message}`);
  }
  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) {
    console.error(`AudioFrameworkTest:Callback:failed to get RoutingManager ${err.message}`);
  }
  else {
    AudioRoutingManager.off('deviceChange', audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (deviceChanged) => {
      console.log('Should be no callback.');
    });
  }
});
```

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

2978
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
2979 2980 2981

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

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

2984 2985 2986 2987 2988 2989
**系统能力:** SystemCapability.Multimedia.Audio.Device

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
2990
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013
| 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) {
      console.error(`Result ERROR: ${err.message}`);
    } else {
      console.info('Select output devices result callback: SUCCESS'); }
  });
});
```

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

3014 3015 3016
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

此接口为系统接口,三方应用不支持调用。
3017 3018 3019 3020 3021 3022 3023 3024 3025

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

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
3026
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| 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) => {
    console.error(`Result ERROR: ${err.message}`);
  });
});
```

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

3055 3056 3057
selectOutputDeviceByFilter(audiorendererfilter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void

此接口为系统接口,三方应用不支持调用。
3058 3059 3060 3061 3062 3063 3064 3065 3066 3067

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

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

**参数:**

| 参数名                       | 类型                                                         | 必填 | 说明                      |
| --------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| audiorendererfilter         | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
3068
| outputAudioDevices          | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098
| 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) {
      console.error(`Result ERROR: ${err.message}`);
    } else {
      console.info('Select output devices by filter result callback: SUCCESS'); }
  });
});
```

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

3099 3100 3101
selectOutputDeviceByFilter(audiorendererfilter: AudioRendererFilter, outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&gt;

此接口为系统接口,三方应用不支持调用。
3102 3103 3104 3105 3106 3107 3108 3109 3110 3111

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

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

**参数:**

| 参数名                        | 类型                                                         | 必填 | 说明                      |
| ---------------------------- | ------------------------------------------------------------ | ---- | ------------------------- |
| audiorendererfilter          | [AudioRendererFilter](#audiorendererfilter9)                 | 是   | 过滤条件类。               |
3112
| outputAudioDevices         | [AudioDeviceDescriptors](#audiodevicedescriptors)            | 是   | 输出设备类。               |
3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145

**返回值:**

| 类型                  | 说明                         |
| --------------------- | --------------------------- |
| 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) => {
    console.error(`Result ERROR: ${err.message}`);
  })
});
```

3146 3147 3148 3149 3150 3151 3152 3153 3154
## AudioRendererChangeInfo<sup>9+</sup>

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

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

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

3159 3160 3161 3162
## AudioRendererChangeInfoArray<sup>9+</sup>

AudioRenderChangeInfo数组,只读。

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

3165 3166
**示例:**

J
jiao_yanlin 已提交
3167
```js
3168 3169 3170 3171
import audio from '@ohos.multimedia.audio';

var audioStreamManager;
var audioStreamManagerCB;
3172
var resultFlag = false;
3173 3174

await audioManager.getStreamManager().then(async function (data) {
J
jiao_yanlin 已提交
3175
  audioStreamManager = data;
3176
  console.info('Get AudioStream Manager : Success');
3177
}).catch((err) => {
3178
  console.error(`Get AudioStream Manager : ERROR : ${err.message}`);
3179 3180 3181
});

audioManager.getStreamManager((err, data) => {
J
jiao_yanlin 已提交
3182
  if (err) {
3183
    console.error(`Get AudioStream Manager : ERROR : ${err.message}`);
J
jiao_yanlin 已提交
3184
  } else {
J
jiao_yanlin 已提交
3185
    audioStreamManagerCB = data;
3186
    console.info('Get AudioStream Manager : Success');
J
jiao_yanlin 已提交
3187 3188
  }
});
3189 3190

audioStreamManagerCB.on('audioRendererChange',  (AudioRendererChangeInfoArray) => {
J
jiao_yanlin 已提交
3191
  for (let i = 0; i < AudioRendererChangeInfoArray.length; i++) {
3192 3193 3194 3195 3196 3197 3198
    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 已提交
3199
  	var devDescriptor = AudioRendererChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3200
  	for (let j = 0; j < AudioRendererChangeInfoArray[i].deviceDescriptors.length; j++) {
3201 3202 3203 3204 3205 3206 3207 3208
  	  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 已提交
3209 3210 3211
  	}
    if (AudioRendererChangeInfoArray[i].rendererState == 1 && devDescriptor != null) {
      resultFlag = true;
3212
      console.info(`ResultFlag for ${i} is: ${resultFlag}`);
3213
    }
J
jiao_yanlin 已提交
3214
  }
3215 3216 3217 3218 3219
});
```

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

3220
描述音频采集器更改信息。
3221 3222 3223 3224 3225 3226

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

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

3231 3232 3233 3234 3235 3236
## AudioCapturerChangeInfoArray<sup>9+</sup>

AudioCapturerChangeInfo数组,只读。

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

3237 3238
**示例:**

J
jiao_yanlin 已提交
3239
```js
3240 3241 3242
import audio from '@ohos.multimedia.audio';

const audioManager = audio.getAudioManager();
3243
var resultFlag = false;
3244
audioStreamManager.on('audioCapturerChange', (AudioCapturerChangeInfoArray) =>  {
J
jiao_yanlin 已提交
3245
  for (let i = 0; i < AudioCapturerChangeInfoArray.length; i++) {
3246 3247 3248 3249 3250 3251
    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 已提交
3252
    var devDescriptor = AudioCapturerChangeInfoArray[i].deviceDescriptors;
J
jiao_yanlin 已提交
3253
    for (let j = 0; j < AudioCapturerChangeInfoArray[i].deviceDescriptors.length; j++) {
3254 3255 3256 3257 3258 3259 3260 3261
      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}`);
3262
    }
J
jiao_yanlin 已提交
3263 3264
    if (AudioCapturerChangeInfoArray[i].capturerState == 1 && devDescriptor != null) {
      resultFlag = true;
3265 3266
      console.info(`ResultFlag for element ${i} is: ${resultFlag}`);
    }
J
jiao_yanlin 已提交
3267
  }
3268 3269 3270
});
```

Z
zengyawen 已提交
3271
## AudioDeviceDescriptor
3272 3273 3274

描述音频设备。

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

3277 3278 3279 3280 3281 3282 3283 3284 3285 3286
| 名称                          | 类型                       | 可读 | 可写 | 说明       |
| ----------------------------- | -------------------------- | ---- | ---- | ---------- |
| 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;        | 是   | 否   | 支持的通道掩码。 |
3287 3288 3289
| networkId<sup>9+</sup>        | string                     | 是   | 否   | 设备组网的ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| interruptGroupId<sup>9+</sup> | number                     | 是   | 否   | 设备所处的焦点组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
| volumeGroupId<sup>9+</sup>    | number                     | 是   | 否   | 设备所处的音量组ID。<br/>此接口为系统接口,三方应用不支持调用。 |
Z
zengyawen 已提交
3290 3291

## AudioDeviceDescriptors
M
mamingshuai 已提交
3292

H
update  
HelloCrease 已提交
3293
设备属性数组类型,为[AudioDeviceDescriptor](#audiodevicedescriptor)的数组,只读。
Z
zengyawen 已提交
3294 3295 3296

**示例:**

J
jiao_yanlin 已提交
3297
```js
L
lwx1059628 已提交
3298 3299 3300
import audio from '@ohos.multimedia.audio';

function displayDeviceProp(value) {
J
jiao_yanlin 已提交
3301 3302
  deviceRoleValue = value.deviceRole;
  deviceTypeValue = value.deviceType;
Z
zengyawen 已提交
3303 3304
}

L
lwx1059628 已提交
3305 3306 3307 3308
var deviceRoleValue = null;
var deviceTypeValue = null;
const promise = audio.getAudioManager().getDevices(1);
promise.then(function (value) {
3309
  console.info('AudioFrameworkTest: Promise: getDevices OUTPUT_DEVICES_FLAG');
J
jiao_yanlin 已提交
3310 3311
  value.forEach(displayDeviceProp);
  if (deviceTypeValue != null && deviceRoleValue != null){
3312
    console.info('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  PASS');
J
jiao_yanlin 已提交
3313
  } else {
3314
    console.error('AudioFrameworkTest: Promise: getDevices : OUTPUT_DEVICES_FLAG :  FAIL');
J
jiao_yanlin 已提交
3315
  }
L
lwx1059628 已提交
3316
});
Z
zengyawen 已提交
3317 3318
```

3319 3320 3321 3322
## AudioRendererFilter<sup>9+</sup>

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

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

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

| 名称          | 类型                                     | 必填  | 说明          |
| -------------| ---------------------------------------- | ---- | -------------- |
3329 3330 3331
| uid          | number                                   |  是  | 表示应用ID。  <br> 系统能力为SystemCapability.Multimedia.Audio.Core。 |
| rendererInfo | [AudioRendererInfo](#audiorendererinfo8) |  否  | 表示渲染器信息。<br> 系统能力为SystemCapability.Multimedia.Audio.Renderer。 |
| rendererId   | number                                   |  否  | 音频流唯一id。<br> 系统能力为SystemCapability.Multimedia.Audio.Renderer。   |
3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344

**示例:**

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

Z
zengyawen 已提交
3345 3346
## AudioRenderer<sup>8+</sup>

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

3349
### 属性
Z
zengyawen 已提交
3350

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

3353
| 名称  | 类型                     | 可读 | 可写 | 说明               |
Z
zengyawen 已提交
3354
| ----- | -------------------------- | ---- | ---- | ------------------ |
3355
| state<sup>8+</sup> | [AudioState](#audiostate8) | 是   | 否   | 音频渲染器的状态。 |
Z
zengyawen 已提交
3356 3357 3358

**示例:**

J
jiao_yanlin 已提交
3359
```js
Z
zengyawen 已提交
3360 3361 3362 3363 3364 3365 3366
var state = audioRenderer.state;
```

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

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

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

3369
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3370 3371 3372

**参数:**

L
lwx1059628 已提交
3373 3374 3375
| 参数名   | 类型                                                     | 必填 | 说明                   |
| :------- | :------------------------------------------------------- | :--- | :--------------------- |
| callback | AsyncCallback<[AudioRendererInfo](#audiorendererinfo8)\> | 是   | 返回音频渲染器的信息。 |
Z
zengyawen 已提交
3376 3377 3378

**示例:**

J
jiao_yanlin 已提交
3379
```js
L
lwx1059628 已提交
3380
audioRenderer.getRendererInfo((err, rendererInfo) => {
3381 3382 3383 3384
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`);
L
lwx1059628 已提交
3385
});
Z
zengyawen 已提交
3386 3387 3388 3389 3390 3391
```

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

getRendererInfo(): Promise<AudioRendererInfo\>

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

3394
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3395 3396 3397 3398 3399

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3404
```js
L
lwx1059628 已提交
3405
audioRenderer.getRendererInfo().then((rendererInfo) => {
3406 3407 3408 3409
  console.info('Renderer GetRendererInfo:');
  console.info(`Renderer content: ${rendererInfo.content}`);
  console.info(`Renderer usage: ${rendererInfo.usage}`);
  console.info(`Renderer flags: ${rendererInfo.rendererFlags}`)
L
lwx1059628 已提交
3410
}).catch((err) => {
3411
  console.error(`AudioFrameworkRenderLog: RendererInfo :ERROR: ${err.message}`);
L
lwx1059628 已提交
3412
});
Z
zengyawen 已提交
3413 3414 3415 3416 3417 3418 3419 3420
```

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

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

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

3421
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3422 3423 3424 3425 3426 3427 3428 3429 3430

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3431
```js
L
lwx1059628 已提交
3432
audioRenderer.getStreamInfo((err, streamInfo) => {
3433 3434 3435 3436 3437
  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 已提交
3438
});
Z
zengyawen 已提交
3439 3440 3441 3442 3443 3444 3445 3446
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

3447
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3448 3449 3450 3451 3452 3453 3454 3455 3456

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3457
```js
L
lwx1059628 已提交
3458
audioRenderer.getStreamInfo().then((streamInfo) => {
3459 3460 3461 3462 3463
  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 已提交
3464
}).catch((err) => {
3465
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3466
});
Z
zengyawen 已提交
3467 3468 3469 3470 3471 3472
```

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

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

L
lwx1059628 已提交
3473
启动音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3474

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3485
```js
L
lwx1059628 已提交
3486
audioRenderer.start((err) => {
J
jiao_yanlin 已提交
3487
  if (err) {
3488
    console.error('Renderer start failed.');
J
jiao_yanlin 已提交
3489
  } else {
3490
    console.info('Renderer start success.');
J
jiao_yanlin 已提交
3491
  }
L
lwx1059628 已提交
3492
});
Z
zengyawen 已提交
3493 3494 3495 3496 3497 3498
```

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

start(): Promise<void\>

L
lwx1059628 已提交
3499
启动音频渲染器。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3500

3501
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3502 3503 3504 3505 3506 3507 3508 3509 3510

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3511
```js
L
lwx1059628 已提交
3512
audioRenderer.start().then(() => {
3513
  console.info('Renderer started');
L
lwx1059628 已提交
3514
}).catch((err) => {
3515
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3516
});
Z
zengyawen 已提交
3517 3518 3519 3520 3521 3522
```

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

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

L
lwx1059628 已提交
3523
暂停渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3524

3525
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3526 3527 3528 3529 3530 3531 3532 3533 3534

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3535
```js
L
lwx1059628 已提交
3536
audioRenderer.pause((err) => {
J
jiao_yanlin 已提交
3537
  if (err) {
3538
    console.error('Renderer pause failed');
J
jiao_yanlin 已提交
3539
  } else {
3540
    console.info('Renderer paused.');
J
jiao_yanlin 已提交
3541
  }
L
lwx1059628 已提交
3542
});
Z
zengyawen 已提交
3543 3544 3545 3546 3547 3548
```

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

pause(): Promise\<void>

L
lwx1059628 已提交
3549
暂停渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3550

3551
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3552 3553 3554 3555 3556 3557 3558 3559 3560

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3561
```js
L
lwx1059628 已提交
3562
audioRenderer.pause().then(() => {
3563
  console.info('Renderer paused');
L
lwx1059628 已提交
3564
}).catch((err) => {
3565
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3566
});
Z
zengyawen 已提交
3567 3568 3569 3570 3571 3572
```

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

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

L
lwx1059628 已提交
3573
检查缓冲区是否已被耗尽。使用callback方式异步返回结果。
Z
zengyawen 已提交
3574

3575
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3576 3577 3578 3579 3580 3581 3582 3583 3584

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3585
```js
L
lwx1059628 已提交
3586
audioRenderer.drain((err) => {
J
jiao_yanlin 已提交
3587
  if (err) {
3588
    console.error('Renderer drain failed');
J
jiao_yanlin 已提交
3589
  } else {
3590
    console.info('Renderer drained.');
J
jiao_yanlin 已提交
3591
  }
L
lwx1059628 已提交
3592
});
Z
zengyawen 已提交
3593 3594 3595 3596 3597 3598
```

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

drain(): Promise\<void>

L
lwx1059628 已提交
3599
检查缓冲区是否已被耗尽。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3600

3601
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3602 3603 3604 3605 3606 3607 3608 3609 3610

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3611
```js
L
lwx1059628 已提交
3612
audioRenderer.drain().then(() => {
3613
  console.info('Renderer drained successfully');
L
lwx1059628 已提交
3614
}).catch((err) => {
3615
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3616
});
Z
zengyawen 已提交
3617 3618 3619 3620 3621 3622
```

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

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

L
lwx1059628 已提交
3623
停止渲染。使用callback方式异步返回结果。
Z
zengyawen 已提交
3624

3625
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3626 3627 3628 3629 3630 3631 3632 3633 3634

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3635
```js
L
lwx1059628 已提交
3636
audioRenderer.stop((err) => {
J
jiao_yanlin 已提交
3637
  if (err) {
3638
    console.error('Renderer stop failed');
J
jiao_yanlin 已提交
3639
  } else {
3640
    console.info('Renderer stopped.');
J
jiao_yanlin 已提交
3641
  }
L
lwx1059628 已提交
3642
});
Z
zengyawen 已提交
3643 3644 3645 3646 3647 3648
```

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

stop(): Promise\<void>

L
lwx1059628 已提交
3649
停止渲染。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3650

3651
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3652 3653 3654 3655 3656 3657 3658 3659 3660

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3661
```js
L
lwx1059628 已提交
3662
audioRenderer.stop().then(() => {
3663
  console.info('Renderer stopped successfully');
L
lwx1059628 已提交
3664
}).catch((err) => {
3665
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3666
});
Z
zengyawen 已提交
3667 3668 3669 3670 3671 3672
```

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

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

L
lwx1059628 已提交
3673
释放音频渲染器。使用callback方式异步返回结果。
Z
zengyawen 已提交
3674

3675
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3676 3677 3678 3679 3680 3681 3682 3683 3684

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3685
```js
L
lwx1059628 已提交
3686
audioRenderer.release((err) => {
J
jiao_yanlin 已提交
3687
  if (err) {
3688
    console.error('Renderer release failed');
J
jiao_yanlin 已提交
3689
  } else {
3690
    console.info('Renderer released.');
J
jiao_yanlin 已提交
3691
  }
L
lwx1059628 已提交
3692
});
Z
zengyawen 已提交
3693 3694 3695 3696 3697 3698 3699 3700
```

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

release(): Promise\<void>

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

3701
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3702 3703 3704 3705 3706 3707 3708 3709 3710

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3711
```js
L
lwx1059628 已提交
3712
audioRenderer.release().then(() => {
3713
  console.info('Renderer released successfully');
L
lwx1059628 已提交
3714
}).catch((err) => {
3715
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3716
});
Z
zengyawen 已提交
3717 3718 3719 3720 3721 3722 3723 3724
```

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

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

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

3725
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3726 3727 3728 3729 3730 3731 3732 3733 3734 3735

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3736
```js
L
lwx1059628 已提交
3737 3738
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
3739
import featureAbility from '@ohos.ability.featureAbility'
L
lwx1059628 已提交
3740

R
rahul 已提交
3741
var audioStreamInfo = {
J
jiao_yanlin 已提交
3742 3743 3744 3745
  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 已提交
3746 3747 3748
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
3749 3750
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION
J
jiao_yanlin 已提交
3751
  rendererFlags: 0
R
rahul 已提交
3752 3753 3754
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
3755 3756
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
3757 3758 3759
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data)=> {
J
jiao_yanlin 已提交
3760
  audioRenderer = data;
3761
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
3762
  }).catch((err) => {
3763
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
3764
  });
R
rahul 已提交
3765 3766
var bufferSize;
audioRenderer.getBufferSize().then((data)=> {
3767
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
3768 3769
  bufferSize = data;
  }).catch((err) => {
3770
  console.error.(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
3771
  });
3772
console.info(`Buffer size: ${bufferSize}`);
R
rahul 已提交
3773 3774
var context = featureAbility.getContext();
var path = await context.getCacheDir();
3775
var filePath = path + '/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
3776 3777 3778
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
3779
audioRenderer.write(buf, (err, writtenbytes) => {
J
jiao_yanlin 已提交
3780
  if (writtenbytes < 0) {
3781
    console.error('write failed.');
J
jiao_yanlin 已提交
3782
  } else {
3783
    console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
3784
  }
L
lwx1059628 已提交
3785
});
Z
zengyawen 已提交
3786 3787 3788 3789 3790 3791 3792 3793
```

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

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

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

3794
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3795 3796 3797 3798 3799 3800 3801 3802 3803

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3804
```js
L
lwx1059628 已提交
3805 3806
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';
R
rahul 已提交
3807 3808 3809
import featureAbility from '@ohos.ability.featureAbility'

var audioStreamInfo = {
J
jiao_yanlin 已提交
3810 3811 3812 3813
  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 已提交
3814 3815 3816
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
3817 3818
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
3819
  rendererFlags: 0
R
rahul 已提交
3820
}
L
lwx1059628 已提交
3821

R
rahul 已提交
3822
var audioRendererOptions = {
J
jiao_yanlin 已提交
3823 3824
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
3825 3826 3827
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
3828
  audioRenderer = data;
3829
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
J
jiao_yanlin 已提交
3830
  }).catch((err) => {
3831
  console.error(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
3832
  });
R
rahul 已提交
3833 3834
var bufferSize;
audioRenderer.getBufferSize().then((data) => {
3835
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
3836 3837
  bufferSize = data;
  }).catch((err) => {
3838
  console.info(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
3839
  });
3840
console.info(`BufferSize: ${bufferSize}`);
R
rahul 已提交
3841 3842
var context = featureAbility.getContext();
var path = await context.getCacheDir();
L
lwx1059628 已提交
3843
var filePath = 'data/StarWars10s-2C-48000-4SW.wav';
Z
zengyawen 已提交
3844 3845 3846
let ss = fileio.createStreamSync(filePath, 'r');
let buf = new ArrayBuffer(bufferSize);
ss.readSync(buf);
L
lwx1059628 已提交
3847
audioRenderer.write(buf).then((writtenbytes) => {
J
jiao_yanlin 已提交
3848
  if (writtenbytes < 0) {
3849
      console.error('write failed.');
J
jiao_yanlin 已提交
3850
  } else {
3851
      console.info(`Actual written bytes: ${writtenbytes}`);
J
jiao_yanlin 已提交
3852
  }
L
lwx1059628 已提交
3853
}).catch((err) => {
3854
    console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3855
});
Z
zengyawen 已提交
3856 3857 3858 3859 3860 3861
```

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

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

L
lwx1059628 已提交
3862
获取时间戳(从 1970 年 1 月 1 日开始)。使用callback方式异步返回结果。
Z
zengyawen 已提交
3863

3864
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3865 3866 3867 3868 3869 3870 3871 3872 3873

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3874
```js
L
lwx1059628 已提交
3875
audioRenderer.getAudioTime((err, timestamp) => {
3876
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
3877
});
Z
zengyawen 已提交
3878 3879 3880 3881 3882 3883
```

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

getAudioTime(): Promise\<number>

L
lwx1059628 已提交
3884
获取时间戳(从 1970 年 1 月 1 日开始)。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3885

3886
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3887 3888 3889 3890 3891 3892 3893 3894 3895

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3896
```js
L
lwx1059628 已提交
3897
audioRenderer.getAudioTime().then((timestamp) => {
3898
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
3899
}).catch((err) => {
3900
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
3901
});
Z
zengyawen 已提交
3902 3903 3904 3905 3906 3907
```

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

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

L
lwx1059628 已提交
3908
获取音频渲染器的最小缓冲区大小。使用callback方式异步返回结果。
Z
zengyawen 已提交
3909

3910
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3911 3912 3913 3914 3915 3916 3917 3918 3919

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
3920
```js
R
rahul 已提交
3921
var bufferSize = audioRenderer.getBufferSize(async(err, bufferSize) => {
J
jiao_yanlin 已提交
3922
  if (err) {
3923
    console.error('getBufferSize error');
J
jiao_yanlin 已提交
3924
  }
L
lwx1059628 已提交
3925
});
Z
zengyawen 已提交
3926 3927 3928 3929 3930 3931
```

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

getBufferSize(): Promise\<number>

L
lwx1059628 已提交
3932
获取音频渲染器的最小缓冲区大小。使用Promise方式异步返回结果。
Z
zengyawen 已提交
3933

3934
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3935 3936 3937 3938 3939 3940 3941 3942 3943

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
3944
```js
R
rahul 已提交
3945 3946 3947 3948
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
3949 3950 3951 3952
  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 已提交
3953 3954 3955
}

var audioRendererInfo = {
J
jiao_yanlin 已提交
3956 3957
  content: audio.ContentType.CONTENT_TYPE_SPEECH,
  usage: audio.StreamUsage.STREAM_USAGE_VOICE_COMMUNICATION,
J
jiao_yanlin 已提交
3958
  rendererFlags: 0
R
rahul 已提交
3959 3960 3961
}

var audioRendererOptions = {
J
jiao_yanlin 已提交
3962 3963
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
R
rahul 已提交
3964 3965 3966
}
var audioRenderer;
audio.createAudioRenderer(audioRendererOptions).then((data) => {
J
jiao_yanlin 已提交
3967 3968 3969
  audioRenderer = data;
  console.info('AudioFrameworkRenderLog: AudioRenderer Created: SUCCESS');
  }).catch((err) => {
3970
  console.info(`AudioFrameworkRenderLog: AudioRenderer Created: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
3971
  });
R
rahul 已提交
3972
var bufferSize;
R
rahul 已提交
3973
audioRenderer.getBufferSize().then((data) => {
3974
  console.info(`AudioFrameworkRenderLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
3975
  bufferSize = data;
L
lwx1059628 已提交
3976
}).catch((err) => {
3977
  console.error(`AudioFrameworkRenderLog: getBufferSize: ERROR: ${err.message}`);
L
lwx1059628 已提交
3978
});
Z
zengyawen 已提交
3979 3980 3981 3982 3983 3984
```

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

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

L
lwx1059628 已提交
3985
设置音频渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
3986

3987
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
3988 3989 3990 3991 3992

**参数:**

| 参数名   | 类型                                     | 必填 | 说明                     |
| -------- | ---------------------------------------- | ---- | ------------------------ |
L
lwx1059628 已提交
3993
| rate     | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。             |
Z
zengyawen 已提交
3994 3995 3996 3997
| callback | AsyncCallback\<void>                     | 是   | 用于返回执行结果的回调。 |

**示例:**

J
jiao_yanlin 已提交
3998
```js
L
lwx1059628 已提交
3999
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL, (err) => {
J
jiao_yanlin 已提交
4000
  if (err) {
4001
    console.error('Failed to set params');
J
jiao_yanlin 已提交
4002
  } else {
4003
    console.info('Callback invoked to indicate a successful render rate setting.');
J
jiao_yanlin 已提交
4004
  }
L
lwx1059628 已提交
4005
});
Z
zengyawen 已提交
4006 4007 4008 4009 4010 4011
```

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

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

L
lwx1059628 已提交
4012
设置音频渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4013

4014
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4015 4016 4017 4018 4019

**参数:**

| 参数名 | 类型                                     | 必填 | 说明         |
| ------ | ---------------------------------------- | ---- | ------------ |
L
lwx1059628 已提交
4020
| rate   | [AudioRendererRate](#audiorendererrate8) | 是   | 渲染的速率。 |
Z
zengyawen 已提交
4021 4022 4023 4024 4025 4026 4027 4028 4029

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4030
```js
L
lwx1059628 已提交
4031
audioRenderer.setRenderRate(audio.AudioRendererRate.RENDER_RATE_NORMAL).then(() => {
4032
  console.info('setRenderRate SUCCESS');
L
lwx1059628 已提交
4033
}).catch((err) => {
4034
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
4035
});
Z
zengyawen 已提交
4036 4037 4038 4039 4040 4041
```

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

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

L
lwx1059628 已提交
4042
获取当前渲染速率。使用callback方式异步返回结果。
Z
zengyawen 已提交
4043

4044
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4045 4046 4047 4048 4049

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明               |
| -------- | ------------------------------------------------------- | ---- | ------------------ |
L
lwx1059628 已提交
4050
| callback | AsyncCallback<[AudioRendererRate](#audiorendererrate8)> | 是   | 回调返回渲染速率。 |
Z
zengyawen 已提交
4051 4052 4053

**示例:**

J
jiao_yanlin 已提交
4054
```js
L
lwx1059628 已提交
4055
audioRenderer.getRenderRate((err, renderrate) => {
4056
  console.info(`getRenderRate: ${renderrate}`);
L
lwx1059628 已提交
4057
});
Z
zengyawen 已提交
4058 4059 4060 4061 4062 4063
```

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

getRenderRate(): Promise\<AudioRendererRate>

L
lwx1059628 已提交
4064
获取当前渲染速率。使用Promise方式异步返回结果。
Z
zengyawen 已提交
4065

4066
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4067 4068 4069 4070 4071

**返回值:**

| 类型                                              | 说明                      |
| ------------------------------------------------- | ------------------------- |
L
lwx1059628 已提交
4072
| Promise<[AudioRendererRate](#audiorendererrate8)> | Promise回调返回渲染速率。 |
Z
zengyawen 已提交
4073 4074 4075

**示例:**

J
jiao_yanlin 已提交
4076
```js
L
lwx1059628 已提交
4077
audioRenderer.getRenderRate().then((renderRate) => {
4078
  console.info(`getRenderRate: ${renderRate}`);
L
lwx1059628 已提交
4079
}).catch((err) => {
4080
  console.error(`ERROR: ${err.message}`);
L
lwx1059628 已提交
4081
});
Z
zengyawen 已提交
4082
```
4083 4084
### setInterruptMode<sup>9+</sup>

4085
setInterruptMode(mode: InterruptMode): Promise&lt;void&gt;
4086

4087
设置应用的焦点模型。使用Promise异步回调。
4088 4089 4090 4091 4092

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

**参数:**

4093 4094
| 参数名     | 类型                                | 必填   | 说明        |
| ---------- | ---------------------------------- | ------ | ---------- |
4095
| mode       | [InterruptMode](#interruptmode9)    | 是     | 焦点模型。  |
4096 4097 4098 4099 4100

**返回值:**

| 类型                | 说明                          |
| ------------------- | ----------------------------- |
4101
| Promise&lt;void&gt; | 以Promise对象返回结果,设置成功时返回undefined,否则返回error。 |
4102 4103

**示例:**
Z
zengyawen 已提交
4104

J
jiao_yanlin 已提交
4105
```js
J
jiao_yanlin 已提交
4106
var audioStreamInfo = {
J
jiao_yanlin 已提交
4107 4108 4109 4110
  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 已提交
4111 4112
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4113 4114 4115
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4116 4117
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4118 4119
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4120 4121 4122 4123
}
let audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
let mode = 0;
audioRenderer.setInterruptMode(mode).then(data=>{
4124 4125 4126
  console.info('setInterruptMode Success!');
}).catch((err) => {
  console.error(`setInterruptMode Fail: ${err.message}`);
4127
});
Z
zhujie81 已提交
4128 4129 4130
```
### setInterruptMode<sup>9+</sup>

4131
setInterruptMode(mode: InterruptMode, callback: AsyncCallback\<void>): void
Z
zhujie81 已提交
4132

Z
zhujie81 已提交
4133
设置应用的焦点模型。使用Callback回调返回执行结果。
Z
zhujie81 已提交
4134 4135 4136 4137

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

**参数:**
4138

4139 4140
| 参数名   | 类型                                | 必填   | 说明            |
| ------- | ----------------------------------- | ------ | -------------- |
4141
|mode     | [InterruptMode](#interruptmode9)     | 是     | 焦点模型。|
4142
|callback | AsyncCallback\<void>                 | 是     |回调返回执行结果。|
Z
zengyawen 已提交
4143

Z
zhujie81 已提交
4144 4145
**示例:**

J
jiao_yanlin 已提交
4146
```js
J
jiao_yanlin 已提交
4147
var audioStreamInfo = {
J
jiao_yanlin 已提交
4148 4149 4150 4151
  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 已提交
4152 4153
}
var audioRendererInfo = {
J
jiao_yanlin 已提交
4154 4155 4156
  content: audio.ContentType.CONTENT_TYPE_MUSIC,
  usage: audio.StreamUsage.STREAM_USAGE_MEDIA,
  rendererFlags: 0
J
jiao_yanlin 已提交
4157 4158
}
var audioRendererOptions = {
J
jiao_yanlin 已提交
4159 4160
  streamInfo: audioStreamInfo,
  rendererInfo: audioRendererInfo
J
jiao_yanlin 已提交
4161 4162 4163
}
let audioRenderer = await audio.createAudioRenderer(audioRendererOptions);
let mode = 1;
J
jiao_yanlin 已提交
4164
audioRenderer.setInterruptMode(mode, (err, data)=>{
J
jiao_yanlin 已提交
4165
  if(err){
4166
    console.error(`setInterruptMode Fail: ${err.message}`);
J
jiao_yanlin 已提交
4167
  }
4168
  console.info('setInterruptMode Success!');
4169
});
4170
```
L
lwx1059628 已提交
4171
### on('interrupt')<sup>9+</sup>
Z
zengyawen 已提交
4172 4173 4174 4175 4176

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

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

4177
**系统能力:** SystemCapability.Multimedia.Audio.Renderer
Z
zengyawen 已提交
4178 4179 4180 4181 4182 4183

**参数:**

| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                       | 是   | 事件回调类型,支持的事件为:'interrupt'(中断事件被触发,音频播放被中断。) |
L
lwx1059628 已提交
4184
| callback | Callback<[InterruptEvent](#interruptevent9)> | 是   | 被监听的中断事件的回调。                                     |
Z
zengyawen 已提交
4185 4186 4187

**示例:**

J
jiao_yanlin 已提交
4188
```js
R
rahul 已提交
4189 4190 4191
var isPlay;
var started;
audioRenderer.on('interrupt', async(interruptEvent) => {
J
jiao_yanlin 已提交
4192 4193 4194
  if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_FORCE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4195
        console.info('Force paused. Stop writing');
J
jiao_yanlin 已提交
4196 4197 4198
        isPlay = false;
        break;
      case audio.InterruptHint.INTERRUPT_HINT_STOP:
4199
        console.info('Force stopped. Stop writing');
J
jiao_yanlin 已提交
4200 4201 4202 4203 4204 4205
        isPlay = false;
        break;
    }
  } else if (interruptEvent.forceType == audio.InterruptForceType.INTERRUPT_SHARE) {
    switch (interruptEvent.hintType) {
      case audio.InterruptHint.INTERRUPT_HINT_RESUME:
4206
        console.info('Resume force paused renderer or ignore');
J
jiao_yanlin 已提交
4207
        await audioRenderer.start().then(async function () {
4208
          console.info('AudioInterruptMusic: renderInstant started :SUCCESS ');
J
jiao_yanlin 已提交
4209 4210
          started = true;
        }).catch((err) => {
4211
          console.error(`AudioInterruptMusic: renderInstant start :ERROR : ${err.message}`);
J
jiao_yanlin 已提交
4212 4213 4214 4215
          started = false;
        });
        if (started) {
          isPlay = true;
4216
          console.info(`AudioInterruptMusic Renderer started : isPlay : ${isPlay}`);
J
jiao_yanlin 已提交
4217
        } else {
4218
          console.error('AudioInterruptMusic Renderer start failed');
Z
zengyawen 已提交
4219
        }
J
jiao_yanlin 已提交
4220 4221
        break;
      case audio.InterruptHint.INTERRUPT_HINT_PAUSE:
4222
        console.info('Choose to pause or ignore');
J
jiao_yanlin 已提交
4223 4224
        if (isPlay == true) {
          isPlay == false;
4225
          console.info('AudioInterruptMusic: Media PAUSE : TRUE');
J
jiao_yanlin 已提交
4226
        } else {
J
jiao_yanlin 已提交
4227
          isPlay = true;
4228
          console.info('AudioInterruptMusic: Media PLAY : TRUE');
Z
zengyawen 已提交
4229
        }
J
jiao_yanlin 已提交
4230
        break;
Z
zengyawen 已提交
4231
    }
J
jiao_yanlin 已提交
4232
  }
L
lwx1059628 已提交
4233
});
Z
zengyawen 已提交
4234 4235
```

L
lwx1059628 已提交
4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253
### on('markReach')<sup>8+</sup>

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4254
```js
L
lwx1059628 已提交
4255
audioRenderer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4256
  if (position == 1000) {
4257
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4258
  }
L
lwx1059628 已提交
4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278
});
```


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

off(type: 'markReach'): void

取消订阅标记事件。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4279
```js
L
lwx1059628 已提交
4280 4281 4282 4283
audioRenderer.off('markReach');
```

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

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

L
lwx1059628 已提交
4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300
订阅到达标记的事件。 当渲染的帧数达到 frame 参数的值时,回调被循环调用。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4301
```js
L
lwx1059628 已提交
4302
audioRenderer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
4303
  if (position == 1000) {
4304
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4305
  }
L
lwx1059628 已提交
4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324
});
```

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

off(type: 'periodReach'): void

取消订阅标记事件。

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4325
```js
L
lwx1059628 已提交
4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341
audioRenderer.off('periodReach')
```

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

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

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
4342
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
4343 4344 4345

**示例:**

J
jiao_yanlin 已提交
4346
```js
L
lwx1059628 已提交
4347
audioRenderer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
4348
  if (state == 1) {
4349
    console.info('audio renderer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
4350 4351
  }
  if (state == 2) {
4352
    console.info('audio renderer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
4353
  }
L
lwx1059628 已提交
4354 4355 4356 4357 4358 4359 4360
});
```

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

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

4361
### 属性
L
lwx1059628 已提交
4362 4363 4364

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

4365
| 名称  | 类型                     | 可读 | 可写 | 说明             |
L
lwx1059628 已提交
4366
| :---- | :------------------------- | :--- | :--- | :--------------- |
4367
| state<sup>8+</sup>  | [AudioState](#audiostate8) | 是 | 否   | 音频采集器状态。 |
L
lwx1059628 已提交
4368 4369 4370

**示例:**

J
jiao_yanlin 已提交
4371
```js
L
lwx1059628 已提交
4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390
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 已提交
4391
```js
L
lwx1059628 已提交
4392
audioCapturer.getCapturerInfo((err, capturerInfo) => {
J
jiao_yanlin 已提交
4393
  if (err) {
4394
    console.error('Failed to get capture info');
J
jiao_yanlin 已提交
4395
  } else {
4396 4397 4398
    console.info('Capturer getCapturerInfo:');
    console.info(`Capturer source: ${capturerInfo.source}`);
    console.info(`Capturer flags: ${capturerInfo.capturerFlags}`);
J
jiao_yanlin 已提交
4399
  }
L
lwx1059628 已提交
4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419
});
```


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

getCapturerInfo(): Promise<AudioCapturerInfo\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4420
```js
L
lwx1059628 已提交
4421
audioCapturer.getCapturerInfo().then((audioParamsGet) => {
J
jiao_yanlin 已提交
4422
  if (audioParamsGet != undefined) {
4423 4424 4425
    console.info('AudioFrameworkRecLog: Capturer CapturerInfo:');
    console.info(`AudioFrameworkRecLog: Capturer SourceType: ${audioParamsGet.source}`);
    console.info(`AudioFrameworkRecLog: Capturer capturerFlags: ${audioParamsGet.capturerFlags}`);
J
jiao_yanlin 已提交
4426
  } else {
4427 4428
    console.info(`AudioFrameworkRecLog: audioParamsGet is : ${audioParamsGet}`);
    console.info('AudioFrameworkRecLog: audioParams getCapturerInfo are incorrect');
J
jiao_yanlin 已提交
4429
  }
L
lwx1059628 已提交
4430
}).catch((err) => {
4431
  console.error(`AudioFrameworkRecLog: CapturerInfo :ERROR: ${err.message}`);
L
lwx1059628 已提交
4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444
});
```

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

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

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

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

**参数:**

Z
zengyawen 已提交
4445 4446 4447
| 参数名   | 类型                                                 | 必填 | 说明                             |
| :------- | :--------------------------------------------------- | :--- | :------------------------------- |
| callback | AsyncCallback<[AudioStreamInfo](#audiostreaminfo8)\> | 是   | 使用callback方式异步返回流信息。 |
L
lwx1059628 已提交
4448 4449 4450

**示例:**

J
jiao_yanlin 已提交
4451
```js
L
lwx1059628 已提交
4452
audioCapturer.getStreamInfo((err, streamInfo) => {
J
jiao_yanlin 已提交
4453
  if (err) {
4454
    console.error('Failed to get stream info');
J
jiao_yanlin 已提交
4455
  } else {
4456 4457 4458 4459 4460
    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 已提交
4461
  }
L
lwx1059628 已提交
4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474
});
```

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

getStreamInfo(): Promise<AudioStreamInfo\>

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

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

**返回值:**

Z
zengyawen 已提交
4475 4476 4477
| 类型                                           | 说明                            |
| :--------------------------------------------- | :------------------------------ |
| Promise<[AudioStreamInfo](#audiostreaminfo8)\> | 使用Promise方式异步返回流信息。 |
L
lwx1059628 已提交
4478 4479 4480

**示例:**

J
jiao_yanlin 已提交
4481
```js
L
lwx1059628 已提交
4482
audioCapturer.getStreamInfo().then((audioParamsGet) => {
4483 4484 4485 4486 4487
  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 已提交
4488
}).catch((err) => {
4489
  console.error(`getStreamInfo :ERROR: ${err.message}`);
L
lwx1059628 已提交
4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500
});
```

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

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

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

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

4501
**参数:**
L
lwx1059628 已提交
4502 4503 4504 4505 4506 4507 4508

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

**示例:**

J
jiao_yanlin 已提交
4509
```js
L
lwx1059628 已提交
4510
audioCapturer.start((err) => {
J
jiao_yanlin 已提交
4511
  if (err) {
4512
    console.error('Capturer start failed.');
J
jiao_yanlin 已提交
4513
  } else {
4514
    console.info('Capturer start success.');
J
jiao_yanlin 已提交
4515
  }
L
lwx1059628 已提交
4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535
});
```


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

start(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4536
```js
R
rahul 已提交
4537 4538 4539 4540
import audio from '@ohos.multimedia.audio';
import fileio from '@ohos.fileio';

var audioStreamInfo = {
J
jiao_yanlin 已提交
4541 4542 4543 4544
  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 已提交
4545 4546 4547
}

var audioCapturerInfo = {
J
jiao_yanlin 已提交
4548
  source: audio.SourceType.SOURCE_TYPE_MIC,
J
jiao_yanlin 已提交
4549
  capturerFlags: 0
R
rahul 已提交
4550 4551 4552
}

var audioCapturer;
J
jiao_yanlin 已提交
4553
var stateFlag;
R
rahul 已提交
4554
audio.createAudioCapturer(audioCapturerOptions).then((data) => {
J
jiao_yanlin 已提交
4555
  audioCapturer = data;
4556
  console.info('AudioFrameworkRecLog: AudioCapturer Created: SUCCESS');
J
jiao_yanlin 已提交
4557
  }).catch((err) => {
4558
  console.info(`AudioFrameworkRecLog: AudioCapturer Created: ERROR: ${err.message}`);
J
jiao_yanlin 已提交
4559
  });
L
lwx1059628 已提交
4560
audioCapturer.start().then(() => {
4561 4562 4563 4564
  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 已提交
4565
  if ((audioCapturer.state == audio.AudioState.STATE_RUNNING)) {
4566
    console.info('AudioFrameworkRecLog: AudioCapturer is in Running State');
J
jiao_yanlin 已提交
4567
  }
L
lwx1059628 已提交
4568
}).catch((err) => {
4569
  console.info(`AudioFrameworkRecLog: Capturer start :ERROR : ${err.message}`);
J
jiao_yanlin 已提交
4570
  stateFlag = false;
L
lwx1059628 已提交
4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589
});
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4590
```js
L
lwx1059628 已提交
4591
audioCapturer.stop((err) => {
J
jiao_yanlin 已提交
4592
  if (err) {
4593
    console.error('Capturer stop failed');
J
jiao_yanlin 已提交
4594
  } else {
4595
    console.info('Capturer stopped.');
J
jiao_yanlin 已提交
4596
  }
L
lwx1059628 已提交
4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616
});
```


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

stop(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4617
```js
L
lwx1059628 已提交
4618
audioCapturer.stop().then(() => {
4619 4620
  console.info('AudioFrameworkRecLog: ---------STOP RECORD---------');
  console.info('AudioFrameworkRecLog: Capturer stopped: SUCCESS');
J
jiao_yanlin 已提交
4621
  if ((audioCapturer.state == audio.AudioState.STATE_STOPPED)){
4622
    console.info('AudioFrameworkRecLog: State is Stopped:');
J
jiao_yanlin 已提交
4623
  }
L
lwx1059628 已提交
4624
}).catch((err) => {
4625
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err.message}`);
L
lwx1059628 已提交
4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644
});
```

### 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 已提交
4645
```js
L
lwx1059628 已提交
4646
audioCapturer.release((err) => {
J
jiao_yanlin 已提交
4647
  if (err) {
4648
    console.error('capturer release failed');
J
jiao_yanlin 已提交
4649
  } else {
4650
    console.info('capturer released.');
J
jiao_yanlin 已提交
4651
  }
L
lwx1059628 已提交
4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671
});
```


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

release(): Promise<void\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4672
```js
J
jiao_yanlin 已提交
4673
var stateFlag;
L
lwx1059628 已提交
4674
audioCapturer.release().then(() => {
4675 4676 4677 4678
  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 已提交
4679
}).catch((err) => {
4680
  console.info(`AudioFrameworkRecLog: Capturer stop: ERROR: ${err.message}`);
L
lwx1059628 已提交
4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692
});
```


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

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

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

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

4693
**参数:**
L
lwx1059628 已提交
4694 4695 4696 4697 4698 4699 4700 4701 4702

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

**示例:**

J
jiao_yanlin 已提交
4703
```js
R
rahul 已提交
4704 4705
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4706
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4707 4708
  bufferSize = data;
  }).catch((err) => {
4709
    console.error(`AudioFrameworkRecLog: getBufferSize: EROOR: ${err.message}`);
J
jiao_yanlin 已提交
4710
  });
L
lwx1059628 已提交
4711
audioCapturer.read(bufferSize, true, async(err, buffer) => {
J
jiao_yanlin 已提交
4712
  if (!err) {
4713
    console.info('Success in reading the buffer data');
J
jiao_yanlin 已提交
4714
  }
J
jiao_yanlin 已提交
4715
});
L
lwx1059628 已提交
4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741
```


### 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 已提交
4742
```js
R
rahul 已提交
4743 4744
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4745
  console.info(`AudioFrameworkRecLog: getBufferSize: SUCCESS ${data}`);
J
jiao_yanlin 已提交
4746 4747
  bufferSize = data;
  }).catch((err) => {
4748
  console.info(`AudioFrameworkRecLog: getBufferSize: ERROR ${err.message}`);
J
jiao_yanlin 已提交
4749
  });
4750
console.info(`Buffer size: ${bufferSize}`);
L
lwx1059628 已提交
4751
audioCapturer.read(bufferSize, true).then((buffer) => {
4752
  console.info('buffer read successfully');
L
lwx1059628 已提交
4753
}).catch((err) => {
4754
  console.info(`ERROR : ${err.message}`);
L
lwx1059628 已提交
4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774
});
```


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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4775
```js
L
lwx1059628 已提交
4776
audioCapturer.getAudioTime((err, timestamp) => {
4777
  console.info(`Current timestamp: ${timestamp}`);
L
lwx1059628 已提交
4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797
});
```


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

getAudioTime(): Promise<number\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4798
```js
L
lwx1059628 已提交
4799
audioCapturer.getAudioTime().then((audioTime) => {
4800
  console.info(`AudioFrameworkRecLog: AudioCapturer getAudioTime : Success ${audioTime}`);
L
lwx1059628 已提交
4801
}).catch((err) => {
4802
  console.info(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err.message}`);
L
lwx1059628 已提交
4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822
});
```


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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4823
```js
L
lwx1059628 已提交
4824
audioCapturer.getBufferSize((err, bufferSize) => {
J
jiao_yanlin 已提交
4825
  if (!err) {
4826
    console.info(`BufferSize : ${bufferSize}`);
J
jiao_yanlin 已提交
4827
    audioCapturer.read(bufferSize, true).then((buffer) => {
4828
      console.info(`Buffer read is ${buffer}`);
J
jiao_yanlin 已提交
4829
    }).catch((err) => {
4830
      console.error(`AudioFrameworkRecLog: AudioCapturer Created : ERROR : ${err.message}`);
J
jiao_yanlin 已提交
4831 4832
    });
  }
L
lwx1059628 已提交
4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852
});
```


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

getBufferSize(): Promise<number\>

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

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

**返回值:**

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

**示例:**

J
jiao_yanlin 已提交
4853
```js
R
rahul 已提交
4854 4855
var bufferSize;
audioCapturer.getBufferSize().then((data) => {
4856
  console.info(`AudioFrameworkRecLog: getBufferSize :SUCCESS ${data}`);
J
jiao_yanlin 已提交
4857
  bufferSize = data;
R
rahul 已提交
4858
}).catch((err) => {
4859
  console.info(`AudioFrameworkRecLog: getBufferSize :ERROR : ${err.message}`);
L
lwx1059628 已提交
4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873
});
```


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

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

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

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

**参数:**

4874 4875 4876 4877 4878
| 参数名   | 类型                     | 必填 | 说明                                       |
| :------- | :----------------------  | :--- | :----------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持的事件为:'markReach'。  |
| frame    | number                   | 是   | 触发事件的帧数。 该值必须大于0。           |
| callback | (position: number) => {} | 是   | 使用callback方式异步返回被触发事件的回调。 |
L
lwx1059628 已提交
4879 4880 4881

**示例:**

J
jiao_yanlin 已提交
4882
```js
L
lwx1059628 已提交
4883
audioCapturer.on('markReach', 1000, (position) => {
J
jiao_yanlin 已提交
4884
  if (position == 1000) {
4885
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4886
  }
L
lwx1059628 已提交
4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905
});
```

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

off(type: 'markReach'): void

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4906
```js
L
lwx1059628 已提交
4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927
audioCapturer.off('markReach');
```

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

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

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4928
```js
L
lwx1059628 已提交
4929
audioCapturer.on('periodReach', 1000, (position) => {
J
jiao_yanlin 已提交
4930
  if (position == 1000) {
4931
    console.info('ON Triggered successfully');
J
jiao_yanlin 已提交
4932
  }
L
lwx1059628 已提交
4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951
});
```

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

off(type: 'periodReach'): void

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

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

**参数:**

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

**示例:**

J
jiao_yanlin 已提交
4952
```js
L
lwx1059628 已提交
4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968
audioCapturer.off('periodReach')
```

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

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

订阅监听状态变化。

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

**参数:**

| 参数名   | 类型                       | 必填 | 说明                                        |
| :------- | :------------------------- | :--- | :------------------------------------------ |
| type     | string                     | 是   | 事件回调类型,支持的事件为:'stateChange'。 |
Z
zengyawen 已提交
4969
| callback | [AudioState](#audiostate8) | 是   | 返回监听的状态。                            |
L
lwx1059628 已提交
4970 4971 4972

**示例:**

J
jiao_yanlin 已提交
4973
```js
L
lwx1059628 已提交
4974
audioCapturer.on('stateChange', (state) => {
J
jiao_yanlin 已提交
4975
  if (state == 1) {
4976
    console.info('audio capturer state is: STATE_PREPARED');
J
jiao_yanlin 已提交
4977 4978
  }
  if (state == 2) {
4979
    console.info('audio capturer state is: STATE_RUNNING');
J
jiao_yanlin 已提交
4980
  }
L
lwx1059628 已提交
4981
});
4982
```