js-apis-avsession.md 238.7 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.multimedia.avsession (媒体会话管理)
L
leiiyb 已提交
2 3 4 5

媒体会话管理提供媒体播控相关功能的接口,目的是让应用接入播控中心。

该模块提供以下媒体会话相关的常用功能:
Z
zengyawen 已提交
6

L
liyuhang 已提交
7 8
- [AVSession](#avsession10) : 会话,可用于设置元数据、播放状态信息等操作。
- [AVSessionController](#avsessioncontroller10): 会话控制器,可用于查看会话ID,完成对会话发送命令及事件,获取会话元数据、播放状态信息等操作。
C
cheng 已提交
9
- [AVCastController](#avcastcontroller10): 投播控制器,可用于投播场景下,完成播放控制、远端播放状态监听、远端播放状态信息获取等操作。
L
leiiyb 已提交
10 11 12 13 14 15 16 17 18 19 20

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

## 导入模块

```js
import avSession from '@ohos.multimedia.avsession';
```

L
liyuhang 已提交
21
## avSession.createAVSession<sup>10+</sup>
L
leiiyb 已提交
22 23 24 25 26 27 28 29 30 31 32

createAVSession(context: Context, tag: string, type: AVSessionType): Promise\<AVSession>

创建会话对象,一个Ability只能存在一个会话,重复创建会失败,结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明                           |
| ------ | ------------------------------- | ---- | ------------------------------ |
Z
zengyawen 已提交
33
| context| [Context](js-apis-inner-app-context.md) | 是| 应用上下文,提供获取应用程序环境信息的能力。 |
L
leiiyb 已提交
34
| tag    | string                          | 是   | 会话的自定义名称。             |
L
liyuhang 已提交
35
| type   | [AVSessionType](#avsessiontype10) | 是   | 会话类型,当前支持音频和视频。 |
L
leiiyb 已提交
36 37 38 39 40

**返回值:**

| 类型                              | 说明                                                         |
| --------------------------------- | ------------------------------------------------------------ |
L
liyuhang 已提交
41
| Promise<[AVSession](#avsession10)\> | Promise对象。回调返回会话实例对象,可用于获取会话ID,以及设置元数据、播放状态,发送按键事件等操作。|
L
leiiyb 已提交
42 43

**错误码:**
44
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
45 46 47

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
48
| 6600101  | Session service exception. |
L
leiiyb 已提交
49 50 51 52 53 54 55 56 57 58

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility';

let session;
let tag = "createNewSession";
let context = featureAbility.getContext();

59
await avSession.createAVSession(context, tag, "audio").then((data) => {
60
    session = data;
L
leiiyb 已提交
61 62 63 64 65 66
    console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`);
}).catch((err) => {
    console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

L
liyuhang 已提交
67
## avSession.createAVSession<sup>10+</sup>
L
leiiyb 已提交
68 69 70 71 72 73 74 75 76 77 78

createAVSession(context: Context, tag: string, type: AVSessionType, callback: AsyncCallback\<AVSession>): void

创建会话对象,一个Ability只能存在一个会话,重复创建会失败,结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                    | 必填 | 说明                                                         |
| -------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
Z
zengyawen 已提交
79
| context| [Context](js-apis-inner-app-context.md) | 是| 应用上下文,提供获取应用程序环境信息的能力。     |
L
leiiyb 已提交
80
| tag      | string                                  | 是   | 会话的自定义名称。                                           |
L
liyuhang 已提交
81 82
| type     | [AVSessionType](#avsessiontype10)         | 是   | 会话类型,当前支持音频和视频。                               |
| callback | AsyncCallback<[AVSession](#avsession10)\> | 是   | 回调函数。回调返回会话实例对象,可用于获取会话ID,以及设置元数据、播放状态,发送按键事件等操作。 |
L
leiiyb 已提交
83 84

**错误码:**
85
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
86 87 88

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
89
| 6600101  | Session service exception. |
L
leiiyb 已提交
90 91 92 93 94 95 96 97 98 99

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility';

let session;
let tag = "createNewSession";
let context = featureAbility.getContext();

100
avSession.createAVSession(context, tag, "audio", function (err, data) {
L
leiiyb 已提交
101 102 103
    if (err) {
        console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
104
        session = data;
L
leiiyb 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
        console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`);
    }
});
```

## avSession.getAllSessionDescriptors

getAllSessionDescriptors(): Promise\<Array\<Readonly\<AVSessionDescriptor>>>

获取所有会话的相关描述。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**返回值:**

| 类型                                                         | 说明                                          |
| ------------------------------------------------------------ | --------------------------------------------- |
| Promise\<Array\<Readonly\<[AVSessionDescriptor](#avsessiondescriptor)\>\>\> | Promise对象。返回所有会话描述的只读对象。 |

**错误码:**
129
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
130 131 132

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
133
| 6600101  | Session service exception. |
L
leiiyb 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

**示例:**

```js
avSession.getAllSessionDescriptors().then((descriptors) => {
    console.info(`getAllSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`);
    if(descriptors.length > 0 ){
        console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`);
        console.info(`GetAllSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`);
        console.info(`GetAllSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`);
    }
}).catch((err) => {
    console.info(`GetAllSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## avSession.getAllSessionDescriptors

getAllSessionDescriptors(callback: AsyncCallback\<Array\<Readonly\<AVSessionDescriptor>>>): void

获取所有会话的相关描述。结果通过callback异步回调方式返回。

156
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES
L
leiiyb 已提交
157 158 159 160 161 162 163 164 165 166 167 168

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                       |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------ |
| callback | AsyncCallback<Array<Readonly<[AVSessionDescriptor](#avsessiondescriptor)\>\>\> | 是   | 回调函数。返回所有会话描述的只读对象。 |

**错误码:**
169
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
170 171 172

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
173
| 6600101  |Session service exception. |
L
leiiyb 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191

**示例:**

```js
avSession.getAllSessionDescriptors(function (err, descriptors) {
    if (err) {
        console.info(`GetAllSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetAllSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`);
        if(descriptors.length > 0 ){
            console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`);
            console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`);
            console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`);
        }
    }
});
```

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
## avSession.getHistoricalSessionDescriptors<sup>10+</sup>

getHistoricalSessionDescriptors(maxSize?: number): Promise\<Array\<Readonly\<AVSessionDescriptor>>>

获取所有会话的相关描述。结果通过Promise异步回调方式返回。

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

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型    | 必填 | 说明                                                             |
| -------- | ------ | ---- | -----------------------------------------------------------------|
| maxSize  | number | 否   | 指定获取描述符数量的最大值,可选范围是0-10,不填则取默认值,默认值为3。|

**返回值:**

| 类型                                                                        | 说明                                   |
| --------------------------------------------------------------------------- | -------------------------------------- |
| Promise\<Array\<Readonly\<[AVSessionDescriptor](#avsessiondescriptor)\>\>\> | Promise对象。返回所有会话描述的只读对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
avSession.getHistoricalSessionDescriptors().then((descriptors) => {
    console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`);
    if(descriptors.length > 0 ){
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`);
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`);
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`);
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].sessionId : ${descriptors[0].sessionId}`);
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].elementName.bundleName : ${descriptors[0].elementName.bundleName}`);
    }
}).catch((err) => {
    console.info(`getHistoricalSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## avSession.getHistoricalSessionDescriptors<sup>10+</sup>

getHistoricalSessionDescriptors(maxSize: number, callback: AsyncCallback\<Array\<Readonly\<AVSessionDescriptor>>>): void

获取所有会话的相关描述。结果通过callback异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                                                            | 必填 | 说明                                                             |
| -------- | ------------------------------------------------------------------------------ | ---- | -----------------------------------------------------------------|
| maxSize  | number                                                                         | 是   | 指定获取描述符数量的最大值,可选范围是0-10,不填则取默认值,默认值为3。|
| callback | AsyncCallback<Array<Readonly<[AVSessionDescriptor](#avsessiondescriptor)\>\>\> | 是   | 回调函数。返回所有会话描述的只读对象。                              |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  |Session service exception. |

**示例:**

```js
avSession.getHistoricalSessionDescriptors(1, function (err, descriptors) {
    if (err) {
        console.info(`getHistoricalSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`);
        if(descriptors.length > 0 ){
            console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`);
            console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`);
            console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`);
            console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].sessionId : ${descriptors[0].sessionId}`);
            console.info(`getHistoricalSessionDescriptors : SUCCESS : descriptors[0].elementName.bundleName : ${descriptors[0].elementName.bundleName}`);
        }
    }
});
```

L
leiiyb 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
## avSession.createController

createController(sessionId: string): Promise\<AVSessionController>

根据会话ID创建会话控制器,可以创建多个会话控制器。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名    | 类型   | 必填 | 说明     |
| --------- | ------ | ---- | -------- |
| sessionId | string | 是   | 会话ID。 |

**返回值:**

| 类型                                                  | 说明                                                         |
| ----------------------------------------------------- | ------------------------------------------------------------ |
L
liyuhang 已提交
307
| Promise<[AVSessionController](#avsessioncontroller10)\> | Promise对象。返回会话控制器实例,可查看会话ID,<br>并完成对会话发送命令及事件,获取元数据、播放状态信息等操作。|
L
leiiyb 已提交
308 309

**错误码:**
310
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
311 312 313

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
314 315
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
316 317 318 319

**示例:**

```js
D
dingdongdong 已提交
320 321 322 323 324 325
import featureAbility from '@ohos.ability.featureAbility';

let session;
let tag = "createNewSession";
let context = featureAbility.getContext();

326
await avSession.createAVSession(context, tag, "audio").then((data) => {
D
dingdongdong 已提交
327 328 329 330 331 332
    session = data;
    console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`);
}).catch((err) => {
    console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`);
});

L
leiiyb 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
let controller;
await avSession.createController(session.sessionId).then((avcontroller) => {
    controller = avcontroller;
    console.info(`CreateController : SUCCESS : ${controller.sessionId}`);
}).catch((err) => {
    console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## avSession.createController

createController(sessionId: string, callback: AsyncCallback\<AVSessionController>): void

根据会话ID创建会话控制器,可以创建多个会话控制器。结果通过callback异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名    | 类型                                                        | 必填 | 说明                                                         |
| --------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| sessionId | string                                                      | 是   | 会话ID。                                                     |
L
liyuhang 已提交
359
| callback  | AsyncCallback<[AVSessionController](#avsessioncontroller10)\> | 是   | 回调函数。返回会话控制器实例,可查看会话ID,<br>并完成对会话发送命令及事件,获取元数据、播放状态信息等操作。 |
L
leiiyb 已提交
360 361

**错误码:**
362
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
363 364 365

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
366 367
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
368 369 370 371

**示例:**

```js
D
dingdongdong 已提交
372 373 374 375 376 377
import featureAbility from '@ohos.ability.featureAbility';

let session;
let tag = "createNewSession";
let context = featureAbility.getContext();

378
await avSession.createAVSession(context, tag, "audio").then((data) => {
D
dingdongdong 已提交
379 380 381 382 383 384
    session = data;
    console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`);
}).catch((err) => {
    console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`);
});

L
leiiyb 已提交
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
let controller;
avSession.createController(session.sessionId, function (err, avcontroller) {
    if (err) {
        console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        controller = avcontroller;
        console.info(`CreateController : SUCCESS : ${controller.sessionId}`);
    }
});
```

## avSession.castAudio

castAudio(session: SessionToken | 'all', audioDevices: Array<audio.AudioDeviceDescriptor>): Promise\<void>

投播会话到指定设备列表。结果通过Promise异步回调方式返回。

调用此接口之前,需要导入`ohos.multimedia.audio`模块获取AudioDeviceDescriptor的相关描述。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名       | 类型                                                                                                                                                                 | 必填 | 说明                                                         |
| ------------ |--------------------------------------------------------------------------------------------------------------------------------------------------------------------| ---- | ------------------------------------------------------------ |
| session      | [SessionToken](#sessiontoken) &#124; 'all'                                                                                                                         | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 |
| audioDevices | Array\<[audio.AudioDeviceDescriptor](js-apis-audio.md#audiodevicedescriptor)\> | 是   | 媒体设备列表。                          |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
Z
zengyawen 已提交
421
| Promise\<void> | Promise对象。当投播成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
422 423

**错误码:**
424
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
425 426 427

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
428 429 430
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600104  | The remote session  connection failed. |
L
leiiyb 已提交
431 432 433 434 435 436 437

**示例:**

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

let audioManager = audio.getAudioManager();
438
let audioRoutingManager = audioManager.getRoutingManager();
L
leiiyb 已提交
439
let audioDevices;
440
await audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
L
leiiyb 已提交
441
    audioDevices = data;
L
liyuhang 已提交
442
    console.info(`Promise returned to indicate that the device list is obtained.`);
L
leiiyb 已提交
443 444 445 446 447
}).catch((err) => {
    console.info(`GetDevices BusinessError: code: ${err.code}, message: ${err.message}`);
});

avSession.castAudio('all', audioDevices).then(() => {
L
liyuhang 已提交
448
    console.info(`CreateController : SUCCESS`);
L
leiiyb 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
}).catch((err) => {
    console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## avSession.castAudio

castAudio(session: SessionToken | 'all', audioDevices: Array<audio.AudioDeviceDescriptor>, callback: AsyncCallback\<void>): void

投播会话到指定设备列表。结果通过callback异步回调方式返回。

需要导入`ohos.multimedia.audio`模块获取AudioDeviceDescriptor的相关描述。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名       | 类型                                         | 必填 | 说明                                                         |
| ------------ |--------------------------------------------| ---- | ------------------------------------------------------------ |
| session      | [SessionToken](#sessiontoken) &#124; 'all' | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 |
| audioDevices | Array\<[audio.AudioDeviceDescriptor](js-apis-audio.md#audiodevicedescriptor)\>   | 是   | 媒体设备列表。                       |
Z
zengyawen 已提交
474
| callback     | AsyncCallback\<void>                      | 是   | 回调函数。当投播成功,err为undefined,否则返回错误对象。                        |
L
leiiyb 已提交
475 476

**错误码:**
477
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
478 479 480

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
481 482 483
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600104  | The remote session  connection failed. |
L
leiiyb 已提交
484 485 486 487 488 489 490

**示例:**

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

let audioManager = audio.getAudioManager();
491
let audioRoutingManager = audioManager.getRoutingManager();
L
leiiyb 已提交
492
let audioDevices;
493
await audioRoutingManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => {
L
leiiyb 已提交
494
    audioDevices = data;
L
liyuhang 已提交
495
    console.info(`Promise returned to indicate that the device list is obtained.`);
L
leiiyb 已提交
496 497 498 499 500 501 502 503
}).catch((err) => {
    console.info(`GetDevices BusinessError: code: ${err.code}, message: ${err.message}`);
});

avSession.castAudio('all', audioDevices, function (err) {
    if (err) {
        console.info(`CastAudio BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
L
liyuhang 已提交
504
        console.info(`CastAudio : SUCCESS `);
L
leiiyb 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
    }
});
```

## avSession.on('sessionCreate' | 'sessionDestroy' | 'topSessionChange')

on(type: 'sessionCreate' | 'sessionDestroy' | 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void

会话的创建、销毁以及最新会话变更的监听事件。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持的事件包括:<br/>- `'sessionCreate'`:会话创建事件,检测到会话创建时触发。<br/>- `'sessionDestroy'`:会话销毁事件,检测到会话销毁时触发。 <br/>- `'topSessionChange'`:最新会话的变化事件,检测到最新的会话改变时触发。|
| callback | (session: [AVSessionDescriptor](#avsessiondescriptor)) => void | 是   | 回调函数。参数为会话相关描述。                               |

**错误码:**
529
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
530 531 532

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
533
| 6600101  | Session service exception. |
L
leiiyb 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576

**示例:**

```js
avSession.on('sessionCreate', (descriptor) => {
    console.info(`on sessionCreate : isActive : ${descriptor.isActive}`);
    console.info(`on sessionCreate : type : ${descriptor.type}`);
    console.info(`on sessionCreate : sessionTag : ${descriptor.sessionTag}`);
});

avSession.on('sessionDestroy', (descriptor) => {
    console.info(`on sessionDestroy : isActive : ${descriptor.isActive}`);
    console.info(`on sessionDestroy : type : ${descriptor.type}`);
    console.info(`on sessionDestroy : sessionTag : ${descriptor.sessionTag}`);
});

avSession.on('topSessionChange', (descriptor) => {
    console.info(`on topSessionChange : isActive : ${descriptor.isActive}`);
    console.info(`on topSessionChange : type : ${descriptor.type}`);
    console.info(`on topSessionChange : sessionTag : ${descriptor.sessionTag}`);
});
```

## avSession.off('sessionCreate' | 'sessionDestroy' | 'topSessionChange')

off(type: 'sessionCreate' | 'sessionDestroy' | 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void

取消会话相关事件监听,取消后,不再进行相关事件的监听。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持的事件为:<br/>- `'sessionCreate'`:会话创建事件,检测到会话创建时触发。<br/>- `'sessionDestroy'`:会话销毁事件,检测到会话销毁时触发。 <br/>- `'topSessionChange'`:最新会话的变化事件,检测到最新的会话改变时触发。|
| callback | (session: [AVSessionDescriptor](#avsessiondescriptor)) => void | 否   | 回调函数。当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为会话相关描述,为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                               |

**错误码:**
577
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
578 579 580

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
581
| 6600101  | Session service exception. |
L
leiiyb 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598

**示例:**

```js
avSession.off('sessionCreate');
avSession.off('sessionDestroy');
avSession.off('topSessionChange');
```

## avSession.on('sessionServiceDie')

on(type: 'sessionServiceDie', callback: () => void): void

监听会话的服务死亡事件。

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

L
li-yifan2 已提交
599 600
**系统接口:** 该接口为系统接口

L
leiiyb 已提交
601 602 603 604 605 606 607 608
**参数:**

| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| type     | string               | 是   | 事件回调类型,支持事件`'sessionServiceDie'`:会话服务死亡事件,检测到会话的服务死亡时触发。 |
| callback | callback: () => void | 是   | 回调函数。当监听事件注册成功,err为undefined,否则返回错误对象。                                |

**错误码:**
609
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
610 611 612

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
613
| 6600101  | Session service exception. |
L
leiiyb 已提交
614 615 616 617 618

**示例:**

```js
avSession.on('sessionServiceDie', () => {
L
liyuhang 已提交
619
    console.info(`on sessionServiceDie  : session is  Died `);
L
leiiyb 已提交
620 621 622 623 624 625 626 627 628 629 630
});
```

## avSession.off('sessionServiceDie')

off(type: 'sessionServiceDie', callback?: () => void): void

取消会话服务死亡监听,取消后,不再进行服务死亡监听。

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

L
li-yifan2 已提交
631 632
**系统接口:** 该接口为系统接口

L
leiiyb 已提交
633 634 635 636 637 638 639 640
**参数:**

| 参数名    | 类型                    | 必填  |      说明                                               |
| ------   | ---------------------- | ---- | ------------------------------------------------------- |
| type     | string                 | 是    | 事件回调类型,支持事件`'sessionServiceDie'`:会话服务死亡事件。|
| callback | callback: () => void   | 否    | 回调函数。当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的服务死亡监听。            |

**错误码:**
641
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
642 643 644

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
645
| 6600101  | Session service exception. |
L
leiiyb 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674

**示例:**

```js
avSession.off('sessionServiceDie');
```

## avSession.sendSystemAVKeyEvent

sendSystemAVKeyEvent(event: KeyEvent): Promise\<void>

发送按键事件给置顶会话。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明       |
| ------ | ------------------------------- | ---- | ---------- |
| event  | [KeyEvent](js-apis-keyevent.md) | 是   | 按键事件。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
Z
zengyawen 已提交
675
| Promise\<void> | Promise对象。当事件发送成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
676 677

**错误码:**
678
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
679 680 681

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
682 683
| 6600101  | Session service exception. |
| 6600105  | Invalid session command. |
L
leiiyb 已提交
684 685 686 687 688 689

**示例:**

```js

let keyItem = {code:0x49, pressedTime:2, deviceId:0};
D
dingdongdong 已提交
690
let event = {id:1, deviceId:0, actionTime:1, screenId:1, windowId:1, action:2, key:keyItem, unicodeChar:0, keys:[keyItem], ctrlKey:false, altKey:false, shiftKey:false, logoKey:false, fnKey:false, capsLock:false, numLock:false, scrollLock:false}; 
L
leiiyb 已提交
691 692

avSession.sendSystemAVKeyEvent(event).then(() => {
L
liyuhang 已提交
693
    console.info(`SendSystemAVKeyEvent Successfully`);
L
leiiyb 已提交
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
}).catch((err) => {
    console.info(`SendSystemAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`);
});

```

## avSession.sendSystemAVKeyEvent

sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback\<void>): void

发送按键事件给置顶会话。结果通过callback异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                  |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------- |
| event    | [KeyEvent](js-apis-keyevent.md) | 是   | 按键事件。                            |
Z
zengyawen 已提交
717
| callback | AsyncCallback\<void>                                         | 是   | 回调函数。当事件发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
718 719

**错误码:**
720
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
721 722 723

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
724 725
| 6600101  | Session service exception. |
| 6600105  | Invalid session command. |
L
leiiyb 已提交
726 727 728 729 730

**示例:**

```js
let keyItem = {code:0x49, pressedTime:2, deviceId:0};
D
dingdongdong 已提交
731
let event = {id:1, deviceId:0, actionTime:1, screenId:1, windowId:1, action:2, key:keyItem, unicodeChar:0, keys:[keyItem], ctrlKey:false, altKey:false, shiftKey:false, logoKey:false, fnKey:false, capsLock:false, numLock:false, scrollLock:false}; 
L
leiiyb 已提交
732 733 734 735 736

avSession.sendSystemAVKeyEvent(event, function (err) {
    if (err) {
        console.info(`SendSystemAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
L
liyuhang 已提交
737
        console.info(`SendSystemAVKeyEvent : SUCCESS `);
L
leiiyb 已提交
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
    }
});
```

## avSession.sendSystemControlCommand

sendSystemControlCommand(command: AVControlCommand): Promise\<void>

发送控制命令给置顶会话。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名  | 类型                                  | 必填 | 说明                                |
| ------- | ------------------------------------- | ---- | ----------------------------------- |
L
liyuhang 已提交
758
| command | [AVControlCommand](#avcontrolcommand10) | 是   | AVSession的相关命令和命令相关参数。 |
L
leiiyb 已提交
759 760 761 762 763

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
Z
zengyawen 已提交
764
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
765 766

**错误码:**
767
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
768 769 770

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
771 772 773
| 6600101  | Session service exception. |
| 6600105  | Invalid session command. |
| 6600107  | Too many commands or events. |
L
leiiyb 已提交
774 775 776 777

**示例:**

```js
D
dingdongdong 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
let cmd : avSession.AVControlCommandType = 'play';
// let cmd : avSession.AVControlCommandType = 'pause';
// let cmd : avSession.AVControlCommandType = 'stop';
// let cmd : avSession.AVControlCommandType = 'playNext';
// let cmd : avSession.AVControlCommandType = 'playPrevious';
// let cmd : avSession.AVControlCommandType = 'fastForward';
// let cmd : avSession.AVControlCommandType = 'rewind';
let avcommand = {command:cmd};
// let cmd : avSession.AVControlCommandType = 'seek';
// let avcommand = {command:cmd, parameter:10};
// let cmd : avSession.AVControlCommandType = 'setSpeed';
// let avcommand = {command:cmd, parameter:2.6};
// let cmd : avSession.AVControlCommandType = 'setLoopMode';
// let avcommand = {command:cmd, parameter:avSession.LoopMode.LOOP_MODE_SINGLE};
// let cmd : avSession.AVControlCommandType = 'toggleFavorite';
// let avcommand = {command:cmd, parameter:"false"};
L
leiiyb 已提交
794
avSession.sendSystemControlCommand(avcommand).then(() => {
L
liyuhang 已提交
795
    console.info(`SendSystemControlCommand successfully`);
L
leiiyb 已提交
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
}).catch((err) => {
    console.info(`SendSystemControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## avSession.sendSystemControlCommand

sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback\<void>): void

发送控制命令给置顶会话。结果通过callback异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
L
liyuhang 已提交
817
| command  | [AVControlCommand](#avcontrolcommand10) | 是   | AVSession的相关命令和命令相关参数。   |
Z
zengyawen 已提交
818
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
819 820

**错误码:**
821
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
822 823 824

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
825 826 827
| 6600101  | Session service exception. |
| 6600105  | Invalid session command. |
| 6600107  | Too many commands or events. |
L
leiiyb 已提交
828 829 830 831

**示例:**

```js
D
dingdongdong 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
let cmd : avSession.AVControlCommandType = 'play';
// let cmd : avSession.AVControlCommandType = 'pause';
// let cmd : avSession.AVControlCommandType = 'stop';
// let cmd : avSession.AVControlCommandType = 'playNext';
// let cmd : avSession.AVControlCommandType = 'playPrevious';
// let cmd : avSession.AVControlCommandType = 'fastForward';
// let cmd : avSession.AVControlCommandType = 'rewind';
let avcommand = {command:cmd};
// let cmd : avSession.AVControlCommandType = 'seek';
// let avcommand = {command:cmd, parameter:10};
// let cmd : avSession.AVControlCommandType = 'setSpeed';
// let avcommand = {command:cmd, parameter:2.6};
// let cmd : avSession.AVControlCommandType = 'setLoopMode';
// let avcommand = {command:cmd, parameter:avSession.LoopMode.LOOP_MODE_SINGLE};
// let cmd : avSession.AVControlCommandType = 'toggleFavorite';
// let avcommand = {command:cmd, parameter:"false"};
L
leiiyb 已提交
848 849 850 851
avSession.sendSystemControlCommand(avcommand, function (err) {
    if (err) {
        console.info(`SendSystemControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
L
liyuhang 已提交
852
        console.info(`sendSystemControlCommand successfully`);
L
leiiyb 已提交
853 854 855 856
    }
});
```

C
cheng 已提交
857
## avSession.startCastDeviceDiscovery
L
leiiyb 已提交
858

C
cheng 已提交
859
startCastDeviceDiscovery(callback: AsyncCallback<void>): void
L
leiiyb 已提交
860

C
cheng 已提交
861
开始设备搜索发现。结果通过callback异步回调方式返回。
L
leiiyb 已提交
862

C
cheng 已提交
863
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。
L
leiiyb 已提交
864

C
cheng 已提交
865 866 867 868 869 870 871 872 873
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
874

C
cheng 已提交
875 876 877 878 879 880
**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
L
leiiyb 已提交
881 882

**示例:**
C
cheng 已提交
883

L
leiiyb 已提交
884
```js
C
cheng 已提交
885 886 887 888 889 890 891
avSession.startCastDeviceDiscovery(function (err) {
    if (err) {
        console.info(`startCastDeviceDiscovery BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`startCastDeviceDiscovery successfully`);
    }
});
L
leiiyb 已提交
892 893
```

C
cheng 已提交
894
## avSession.startCastDeviceDiscovery
L
leiiyb 已提交
895

C
cheng 已提交
896
startCastDeviceDiscovery(filter: number, callback: AsyncCallback<void>): void
L
leiiyb 已提交
897

C
cheng 已提交
898
开始设备搜索发现。结果通过callback异步回调方式返回。
L
leiiyb 已提交
899

C
cheng 已提交
900 901 902 903 904
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口。
L
leiiyb 已提交
905 906 907

**参数:**

C
cheng 已提交
908 909 910 911
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| filter | number | 是 | 进行设备发现的过滤条件,由ProtocolType的组合而成 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
912

C
cheng 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
let filter = 2;
avSession.startCastDeviceDiscovery(filter, function (err) {
    if (err) {
        console.info(`startCastDeviceDiscovery BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`startCastDeviceDiscovery successfully`);
    }
});
```

## avSession.startCastDeviceDiscovery

startCastDeviceDiscovery(filter?: number): Promise<void>

开始设备搜索发现。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
942

C
cheng 已提交
943 944 945 946 947 948 949 950 951
**系统接口:** 该接口为系统接口。

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| filter | number | 否 | 进行设备发现的过滤条件,由ProtocolType的组合而成 |

**返回值:**
L
leiiyb 已提交
952 953
| 类型           | 说明                          |
| -------------- | ----------------------------- |
C
cheng 已提交
954
| Promise\<void> | Promise对象。当开始设备搜索成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
955 956

**错误码:**
957
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
958 959 960

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
961
| 6600101  | Session service exception. |
L
leiiyb 已提交
962 963 964 965

**示例:**

```js
C
cheng 已提交
966 967 968
let filter = 2;
avSession.startCastDeviceDiscovery(filter).then(() => {
    console.info(`startCastDeviceDiscovery successfully`);
L
leiiyb 已提交
969
}).catch((err) => {
C
cheng 已提交
970
    console.info(`startCastDeviceDiscovery BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
971 972 973
});
```

C
cheng 已提交
974
## avSession.on('deviceAvailable')
L
leiiyb 已提交
975

C
cheng 已提交
976
on(type: 'deviceAvailable', callback: (device: OutputDeviceInfo) => void): void
L
leiiyb 已提交
977

C
cheng 已提交
978
设备发现回调监听。
L
leiiyb 已提交
979

C
cheng 已提交
980 981 982
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口
L
leiiyb 已提交
983 984 985

**参数:**

C
cheng 已提交
986 987 988 989
| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| type     | string               | 是   | 事件回调类型,支持事件`'deviceAvailable'`,有设备更新时触发回调。 |
| callback | (device: OutputDeviceInfo) => void | 是   | 回调函数。当监听事件注册成功,err为undefined,否则返回错误对象。                                |
L
leiiyb 已提交
990 991

**错误码:**
992
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
993 994 995

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
996
| 6600101  | Session service exception. |
L
leiiyb 已提交
997 998 999 1000

**示例:**

```js
C
cheng 已提交
1001 1002
avSession.on('deviceAvailable', (device) => {
    console.info(`on deviceAvailable  : ${device} `);
L
leiiyb 已提交
1003 1004 1005
});
```

C
cheng 已提交
1006
## avSession.off('deviceAvailable')
L
leiiyb 已提交
1007

C
cheng 已提交
1008
off(type: 'deviceAvailable', callback?: (device: OutputDeviceInfo) => void): void
L
leiiyb 已提交
1009

C
cheng 已提交
1010
取消设备发现回调的监听。
L
leiiyb 已提交
1011

C
cheng 已提交
1012
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
1013

C
cheng 已提交
1014
**系统接口:** 该接口为系统接口
L
leiiyb 已提交
1015

C
cheng 已提交
1016
**参数:**
L
leiiyb 已提交
1017

C
cheng 已提交
1018 1019 1020
| 参数名    | 类型                    | 必填  |      说明                                               |
| ------   | ---------------------- | ---- | ------------------------------------------------------- |
| type     | string                 | 是    | 事件回调类型,支持事件`'deviceAvailable'`:设备发现回调。|
L
leiiyb 已提交
1021 1022

**错误码:**
1023
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
1024 1025 1026

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
1027
| 6600101  | Session service exception. |
L
leiiyb 已提交
1028 1029 1030 1031

**示例:**

```js
C
cheng 已提交
1032
avSession.off('deviceAvailable');
L
leiiyb 已提交
1033 1034
```

C
cheng 已提交
1035
## avSession.stopCastDeviceDiscovery
L
leiiyb 已提交
1036

C
cheng 已提交
1037
stopCastDeviceDiscovery(callback: AsyncCallback<void>): void
L
leiiyb 已提交
1038

C
cheng 已提交
1039
结束设备搜索发现。结果通过callback异步回调方式返回。
L
leiiyb 已提交
1040

C
cheng 已提交
1041 1042 1043 1044 1045
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口。
L
leiiyb 已提交
1046 1047 1048

**参数:**

C
cheng 已提交
1049 1050 1051
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
1052 1053

**错误码:**
1054
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
1055 1056 1057

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
1058
| 6600101  | Session service exception. |
L
leiiyb 已提交
1059 1060 1061 1062

**示例:**

```js
C
cheng 已提交
1063
avSession.stopCastDeviceDiscovery(function (err) {
L
leiiyb 已提交
1064
    if (err) {
C
cheng 已提交
1065
        console.info(`stopCastDeviceDiscovery BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
1066
    } else {
C
cheng 已提交
1067
        console.info(`stopCastDeviceDiscovery successfully`);
L
leiiyb 已提交
1068 1069 1070 1071
    }
});
```

C
cheng 已提交
1072
## avSession.stopCastDeviceDiscovery
1073

C
cheng 已提交
1074
stopCastDeviceDiscovery(): Promise<void>
1075

C
cheng 已提交
1076
结束设备搜索发现。结果通过Promise异步回调方式返回。
1077

C
cheng 已提交
1078
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。
1079

C
cheng 已提交
1080
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
1081

C
cheng 已提交
1082
**系统接口:** 该接口为系统接口。
1083 1084 1085 1086 1087

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
C
cheng 已提交
1088
| Promise\<void> | Promise对象。当停止搜索成功,无返回结果,否则返回错误对象。 |
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
1100 1101
avSession.stopCastDeviceDiscovery().then(() => {
    console.info(`startCastDeviceDiscovery successfully`);
1102
}).catch((err) => {
C
cheng 已提交
1103
    console.info(`startCastDeviceDiscovery BusinessError: code: ${err.code}, message: ${err.message}`);
1104 1105 1106
});
```

C
cheng 已提交
1107
## avSession.startCasting
1108

C
cheng 已提交
1109
startCasting(session: SessionToken, device: OutputDeviceInfo, callback: AsyncCallback<void>): void
1110

C
cheng 已提交
1111
启动投播。结果通过callback异步回调方式返回。
1112

C
cheng 已提交
1113 1114 1115 1116 1117
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口。
1118 1119 1120

**参数:**

C
cheng 已提交
1121 1122 1123 1124 1125
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| session      | [SessionToken](#sessiontoken) &#124; 'all' | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 |
| outputDevice | [OutputDeviceInfo](#outputdeviceinfo10)                        | 是   | 设备相关信息 | 
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145
let castDevice;
avSession.on('deviceAvailable', (device) => {
    castDevice = device;
    console.info(`on deviceAvailable  : ${device} `);
});
let myToken = {
    sessionId: avSession.sessionId;
}
avSession.startCasting(myToken, castDevice, function (err) {
1146
    if (err) {
C
cheng 已提交
1147
        console.info(`startCasting BusinessError: code: ${err.code}, message: ${err.message}`);
1148
    } else {
C
cheng 已提交
1149
        console.info(`startCasting successfully`);
1150 1151 1152 1153
    }
});
```

C
cheng 已提交
1154
## avSession.startCasting
1155

C
cheng 已提交
1156
startCasting(session: SessionToken, device: OutputDeviceInfo): Promise<void>
1157

C
cheng 已提交
1158
启动投播。结果通过Promise异步回调方式返回。
1159

C
cheng 已提交
1160 1161 1162 1163 1164
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口。
1165 1166 1167

**参数:**

C
cheng 已提交
1168 1169 1170 1171
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| session      | [SessionToken](#sessiontoken) &#124; 'all' | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 |
| outputDevice | [OutputDeviceInfo](#outputdeviceinfo10)                        | 是   | 设备相关信息 |
1172 1173 1174 1175 1176

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
C
cheng 已提交
1177
| Promise\<void> | Promise对象。当停止搜索成功,无返回结果,否则返回错误对象。 |
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
let castDevice;
avSession.on('deviceAvailable', (device) => {
    castDevice = device;
    console.info(`on deviceAvailable  : ${device} `);
});
let myToken = {
    sessionId: avSession.sessionId;
}
avSession.startCasting(myToken, castDevice).then(() => {
    console.info(`startCasting successfully`);
1199
}).catch((err) => {
C
cheng 已提交
1200
    console.info(`startCasting BusinessError: code: ${err.code}, message: ${err.message}`);
1201 1202 1203
});
```

C
cheng 已提交
1204
## avSession.stopCasting
1205

C
cheng 已提交
1206
stopCasting(session: SessionToken, callback: AsyncCallback<void>): void
1207

C
cheng 已提交
1208
结束投播。结果通过callback异步回调方式返回。
1209

C
cheng 已提交
1210 1211 1212 1213 1214
**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**系统接口:** 该接口为系统接口。
1215 1216 1217

**参数:**

C
cheng 已提交
1218 1219 1220 1221
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| session      | [SessionToken](#sessiontoken) &#124; 'all' | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 | 
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
1233 1234 1235 1236
let myToken = {
    sessionId: avSession.sessionId;
}
avSession.stopCasting(myToken, castDevice, function (err) {
1237
    if (err) {
C
cheng 已提交
1238
        console.info(`stopCasting BusinessError: code: ${err.code}, message: ${err.message}`);
1239
    } else {
C
cheng 已提交
1240
        console.info(`stopCasting successfully`);
1241 1242 1243 1244
    }
});
```

C
cheng 已提交
1245
## avSession.stopCasting
L
leiiyb 已提交
1246

C
cheng 已提交
1247
stopCasting(session: SessionToken): Promise<void>
L
leiiyb 已提交
1248

C
cheng 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
结束投播。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| session      | [SessionToken](#sessiontoken) &#124; 'all' | 是   | 会话令牌。SessionToken表示单个token;字符串`'all'`指所有token。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当停止搜索成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
let myToken = {
    sessionId: avSession.sessionId;
}
avSession.stopCasting(myToken).then(() => {
    console.info(`stopCasting successfully`);
}).catch((err) => {
    console.info(`stopCasting BusinessError: code: ${err.code}, message: ${err.message}`);
});
```


## avSession.setDiscoverable

setDiscoverable(enable: boolean, callback: AsyncCallback<void>): void

设置设备是否可被发现,用于投播接收端。结果通过callback异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| enable | boolean | 是 | 是否允许本设备被发现. true: 允许被发现, false:不允许被发现 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
avSession.setDiscoverable(true, function (err) {
    if (err) {
        console.info(`setDiscoverable BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`setDiscoverable successfully`);
    }
});
```

## avSession.setDiscoverable

setDiscoverable(enable: boolean): Promise<void>

设置设备是否可被发现,用于投播接收端。结果通过Promise异步回调方式返回。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| enable | boolean | 是 | 是否允许本设备被发现. true: 允许被发现, false:不允许被发现 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当停止搜索成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

**示例:**

```js
avSession.setDiscoverable(true).then(() => {
    console.info(`setDiscoverable successfully`);
}).catch((err) => {
    console.info(`setDiscoverable BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

## AVSession<sup>10+</sup>

调用[avSession.createAVSession](#avsessioncreateavsession10)后,返回会话的实例,可以获得会话ID,完成设置元数据,播放状态信息等操作。

### 属性

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

| 名称      | 类型   | 可读 | 可写 | 说明                          |
| :-------- | :----- | :--- | :--- | :---------------------------- |
| sessionId | string | 是   | 否   | AVSession对象唯一的会话标识。 |


**示例:**
```js
let sessionId = session.sessionId;
```

### setAVMetadata<sup>10+</sup>

setAVMetadata(data: AVMetadata): Promise\<void>

设置会话元数据。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
1392 1393 1394 1395 1396

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

**参数:**

C
cheng 已提交
1397 1398 1399
| 参数名 | 类型                      | 必填 | 说明         |
| ------ | ------------------------- | ---- | ------------ |
| data   | [AVMetadata](#avmetadata10) | 是   | 会话元数据。 |
L
leiiyb 已提交
1400 1401 1402 1403 1404

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
C
cheng 已提交
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 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 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 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 2152 2153 2154 2155 2156 2157 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 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 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 2414 2415 2416 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 2446 2447 2448 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 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758
| Promise\<void> | Promise对象。当元数据设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let metadata  = {
    assetId: "121278",
    title: "lose yourself",
    artist: "Eminem",
    author: "ST",
    album: "Slim shady",
    writer: "ST",
    composer: "ST",
    duration: 2222,
    mediaImage: "https://www.example.com/example.jpg",
    subtitle: "8 Mile",
    description: "Rap",
    lyric: "https://www.example.com/example.lrc",
    previousAssetId: "121277",
    nextAssetId: "121279",
};
session.setAVMetadata(metadata).then(() => {
    console.info(`SetAVMetadata successfully`);
}).catch((err) => {
    console.info(`SetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### setAVMetadata<sup>10+</sup>

setAVMetadata(data: AVMetadata, callback: AsyncCallback\<void>): void

设置会话元数据。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                  |
| -------- | ------------------------- | ---- | ------------------------------------- |
| data     | [AVMetadata](#avmetadata10) | 是   | 会话元数据。                          |
| callback | AsyncCallback\<void>      | 是   | 回调函数。当元数据设置成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let metadata  = {
    assetId: "121278",
    title: "lose yourself",
    artist: "Eminem",
    author: "ST",
    album: "Slim shady",
    writer: "ST",
    composer: "ST",
    duration: 2222,
    mediaImage: "https://www.example.com/example.jpg",
    subtitle: "8 Mile",
    description: "Rap",
    lyric: "https://www.example.com/example.lrc",
    previousAssetId: "121277",
    nextAssetId: "121279",
};
session.setAVMetadata(metadata, function (err) {
    if (err) {
        console.info(`SetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SetAVMetadata successfully`);
    }
});
```

### setAVPlaybackState<sup>10+</sup>

setAVPlaybackState(state: AVPlaybackState): Promise\<void>

设置会话播放状态。结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名 | 类型                                | 必填 | 说明                                           |
| ------ | ----------------------------------- | ---- | ---------------------------------------------- |
| data   | [AVPlaybackState](#avplaybackstate10) | 是   | 会话播放状态,包括状态、倍数、循环模式等信息。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当播放状态设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let playbackState = {
    state:avSession.PlaybackState.PLAYBACK_STATE_PLAY,
    speed: 1.0,
    position:{elapsedTime:10, updateTime:(new Date()).getTime()},
    bufferedTime:1000,
    loopMode:avSession.LoopMode.LOOP_MODE_SINGLE,
    isFavorite:true,
};
session.setAVPlaybackState(playbackState).then(() => {
    console.info(`SetAVPlaybackState successfully`);
}).catch((err) => {
    console.info(`SetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### setAVPlaybackState<sup>10+</sup>

setAVPlaybackState(state: AVPlaybackState, callback: AsyncCallback\<void>): void

设置会话播放状态。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                | 必填 | 说明                                           |
| -------- | ----------------------------------- | ---- | ---------------------------------------------- |
| data     | [AVPlaybackState](#avplaybackstate10) | 是   | 会话播放状态,包括状态、倍数、循环模式等信息。 |
| callback | AsyncCallback\<void>                | 是   | 回调函数。当播放状态设置成功,err为undefined,否则返回错误对象。          |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let PlaybackState = {
    state:avSession.PlaybackState.PLAYBACK_STATE_PLAY,
    speed: 1.0,
    position:{elapsedTime:10, updateTime:(new Date()).getTime()},
    bufferedTime:1000,
    loopMode:avSession.LoopMode.LOOP_MODE_SINGLE,
    isFavorite:true,
};
session.setAVPlaybackState(PlaybackState, function (err) {
    if (err) {
        console.info(`SetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SetAVPlaybackState successfully`);
    }
});
```

### setAVQueueItems<sup>10+</sup>

setAVQueueItems(items: Array\<AVQueueItem>): Promise\<void>

设置媒体播放列表。结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                 | 必填 | 说明                               |
| ------ | ------------------------------------ | ---- | ---------------------------------- |
| items  | Array<[AVQueueItem](#avqueueitem10)\> | 是   | 播放列表单项的队列,用以表示播放列表。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当播放列表设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
import image from '@ohos.multimedia.image';
import resourceManager from '@ohos.resourceManager';

let value : Uint8Array = await resourceManager.getRawFile('IMAGE_URI');
let imageSource : imageImageSource = image.createImageSource(value.buffer);
let imagePixel : image.PixelMap = await imageSource.createPixelMap({desiredSize:{width: 150, height: 150}});
let queueItemDescription_1 = {
    mediaId: '001',
    title: 'music_name',
    subtitle: 'music_sub_name',
    description: 'music_description',
    icon : imagePixel,
    iconUri: 'http://www.icon.uri.com',
    extras: {'extras':'any'}
};
let queueItem_1 = {
    itemId: 1,
    description: queueItemDescription_1
};
let queueItemDescription_2 = {
    mediaId: '002',
    title: 'music_name',
    subtitle: 'music_sub_name',
    description: 'music_description',
    icon: imagePixel,
    iconUri: 'http://www.xxx.com',
    extras: {'extras':'any'}
};
let queueItem_2 = {
    itemId: 2,
    description: queueItemDescription_2
};
let queueItemsArray = [queueItem_1, queueItem_2];
session.setAVQueueItems(queueItemsArray).then(() => {
    console.info(`SetAVQueueItems successfully`);
}).catch((err) => {
    console.info(`SetAVQueueItems BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### setAVQueueItems<sup>10+</sup>

setAVQueueItems(items: Array\<AVQueueItem>, callback: AsyncCallback\<void>): void

设置媒体播放列表。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ----------------------------------------------------------- |
| items    | Array<[AVQueueItem](#avqueueitem10)\> | 是   | 播放列表单项的队列,用以表示播放列表。                          |
| callback | AsyncCallback\<void>                 | 是   | 回调函数。当播放状态设置成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
import image from '@ohos.multimedia.image';
import resourceManager from '@ohos.resourceManager';

let value : Uint8Array = await resourceManager.getRawFile('IMAGE_URI');
let imageSource : imageImageSource = image.createImageSource(value.buffer);
let imagePixel : image.PixelMap = await imageSource.createPixelMap({desiredSize:{width: 150, height: 150}});
let queueItemDescription_1 = {
    mediaId: '001',
    title: 'music_name',
    subtitle: 'music_sub_name',
    description: 'music_description',
    icon: imagePixel,
    iconUri: 'http://www.icon.uri.com',
    extras: {'extras':'any'}
};
let queueItem_1 = {
    itemId: 1,
    description: queueItemDescription_1
};
let queueItemDescription_2 = {
    mediaId: '002',
    title: 'music_name',
    subtitle: 'music_sub_name',
    description: 'music_description',
    icon: imagePixel,
    iconUri: 'http://www.icon.uri.com',
    extras: {'extras':'any'}
};
let queueItem_2 = {
    itemId: 2,
    description: queueItemDescription_2
};
let queueItemsArray = [queueItem_1, queueItem_2];
session.setAVQueueItems(queueItemsArray, function (err) {
    if (err) {
        console.info(`SetAVQueueItems BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SetAVQueueItems successfully`);
    }
});
```

### setAVQueueTitle<sup>10+</sup>

setAVQueueTitle(title: string): Promise\<void>

设置媒体播放列表名称。结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名  | 类型   | 必填 | 说明           |
| ------ | ------ | ---- | -------------- |
| title  | string | 是   | 播放列表的名称。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当播放列表设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let queueTitle = 'QUEUE_TITLE';
session.setAVQueueTitle(queueTitle).then(() => {
    console.info(`SetAVQueueTitle successfully`);
}).catch((err) => {
    console.info(`SetAVQueueTitle BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### setAVQueueTitle<sup>10+</sup>

setAVQueueTitle(title: string, callback: AsyncCallback\<void>): void

设置媒体播放列表名称。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                                                         |
| -------- | --------------------- | ---- | ----------------------------------------------------------- |
| title    | string                | 是   | 播放列表名称字段。                          |
| callback | AsyncCallback\<void>  | 是   | 回调函数。当播放状态设置成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let queueTitle = 'QUEUE_TITLE';
session.setAVQueueTitle(queueTitle, function (err) {
    if (err) {
        console.info(`SetAVQueueTitle BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SetAVQueueTitle successfully`);
    }
});
```

### setLaunchAbility<sup>10+</sup>

setLaunchAbility(ability: WantAgent): Promise\<void>

设置一个WantAgent用于拉起会话的Ability。结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                          | 必填 | 说明                                                        |
| ------- | --------------------------------------------- | ---- | ----------------------------------------------------------- |
| ability | [WantAgent](js-apis-app-ability-wantAgent.md) | 是   | 应用的相关属性信息,如bundleName,abilityName,deviceId等。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当Ability设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
import wantAgent from '@ohos.app.ability.wantAgent';

//WantAgentInfo对象
let wantAgentInfo = {
    wants: [
        {
            deviceId: "deviceId",
            bundleName: "com.example.myapplication",
            abilityName: "EntryAbility",
            action: "action1",
            entities: ["entity1"],
            type: "MIMETYPE",
            uri: "key={true,true,false}",
            parameters:
                {
                    mykey0: 2222,
                    mykey1: [1, 2, 3],
                    mykey2: "[1, 2, 3]",
                    mykey3: "ssssssssssssssssssssssssss",
                    mykey4: [false, true, false],
                    mykey5: ["qqqqq", "wwwwww", "aaaaaaaaaaaaaaaaa"],
                    mykey6: true,
                }
        }
    ],
    operationType: wantAgent.OperationType.START_ABILITIES,
    requestCode: 0,
    wantAgentFlags:[wantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG]
}

wantAgent.getWantAgent(wantAgentInfo).then((agent) => {
    session.setLaunchAbility(agent).then(() => {
        console.info(`SetLaunchAbility successfully`);
    }).catch((err) => {
        console.info(`SetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`);
    });
});
```

### setLaunchAbility<sup>10+</sup>

setLaunchAbility(ability: WantAgent, callback: AsyncCallback\<void>): void

设置一个WantAgent用于拉起会话的Ability。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                          | 必填 | 说明                                                         |
| -------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| ability  | [WantAgent](js-apis-app-ability-wantAgent.md) | 是   | 应用的相关属性信息,如bundleName,abilityName,deviceId等。  |
| callback | AsyncCallback\<void>                          | 是   | 回调函数。当Ability设置成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
import wantAgent from '@ohos.app.ability.wantAgent';

//WantAgentInfo对象
let wantAgentInfo = {
    wants: [
        {
            deviceId: "deviceId",
            bundleName: "com.example.myapplication",
            abilityName: "EntryAbility",
            action: "action1",
            entities: ["entity1"],
            type: "MIMETYPE",
            uri: "key={true,true,false}",
            parameters:
                {
                    mykey0: 2222,
                    mykey1: [1, 2, 3],
                    mykey2: "[1, 2, 3]",
                    mykey3: "ssssssssssssssssssssssssss",
                    mykey4: [false, true, false],
                    mykey5: ["qqqqq", "wwwwww", "aaaaaaaaaaaaaaaaa"],
                    mykey6: true,
                }
        }
    ],
    operationType: wantAgent.OperationType.START_ABILITIES,
    requestCode: 0,
    wantAgentFlags:[wantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG]
}

wantAgent.getWantAgent(wantAgentInfo).then((agent) => {
    session.setLaunchAbility(agent, function (err) {
        if (err) {
            console.info(`SetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`);
        } else {
            console.info(`SetLaunchAbility successfully`);
        }
    });
});
```

### dispatchSessionEvent<sup>10+</sup>

dispatchSessionEvent(event: string, args: {[key: string]: Object}): Promise\<void>

媒体提供方设置一个会话内自定义事件,包括事件名和键值对形式的事件内容, 结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                          | 必填 | 说明                                                        |
| ------- | --------------------------------------------- | ---- | ----------------------------------------------------------- |
| event | string | 是   | 需要设置的会话事件的名称 |
| args | {[key: string]: any} | 是   | 需要传递的会话事件键值对 |

> **说明:**
> 参数args支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当事件设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let eventName = "dynamic_lyric";
let args = {
    lyric : "This is lyric"
}
await session.dispatchSessionEvent(eventName, args).catch((err) => {
    console.info(`dispatchSessionEvent BusinessError: code: ${err.code}, message: ${err.message}`);
})
```

### dispatchSessionEvent<sup>10+</sup>

dispatchSessionEvent(event: string, args: {[key: string]: Object}, callback: AsyncCallback\<void>): void

媒体提供方设置一个会话内自定义事件,包括事件名和键值对形式的事件内容, 结果通过callback异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                          | 必填 | 说明                                                        |
| ------- | --------------------------------------------- | ---- | ----------------------------------------------------------- |
| event | string | 是   | 需要设置的会话事件的名称 |
| args | {[key: string]: any} | 是   | 需要传递的会话事件键值对 |
| callback | AsyncCallback\<void>                          | 是   | 回调函数。当会话事件设置成功,err为undefined,否则返回错误对象。 |

> **说明:**
> 参数args支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let eventName = "dynamic_lyric";
let args = {
    lyric : "This is lyric"
}
await session.dispatchSessionEvent(eventName, args, (err) => {
    if(err) {
        console.info(`dispatchSessionEvent BusinessError: code: ${err.code}, message: ${err.message}`);
    }
})
```

### setExtras<sup>10+</sup>

setExtras(extras: {[key: string]: Object}): Promise\<void>

媒体提供方设置键值对形式的自定义媒体数据包, 结果通过Promise异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                          | 必填 | 说明                                                        |
| ------- | --------------------------------------------- | ---- | ----------------------------------------------------------- |
| extras | {[key: string]: Object} | 是   | 需要传递的自定义媒体数据包键值对 |

> **说明:**
> 参数extras支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当自定义媒体数据包设置成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let extras = {
    extras : "This is custom media packet"
}
await session.setExtras(extras).catch((err) => {
    console.info(`setExtras BusinessError: code: ${err.code}, message: ${err.message}`);
})
```

### setExtras<sup>10+</sup>

setExtras(extras: {[key: string]: Object}, callback: AsyncCallback\<void>): void

媒体提供方设置键值对形式的自定义媒体数据包, 结果通过callback异步回调方式返回。

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

**参数:**

| 参数名  | 类型                                          | 必填 | 说明                                                        |
| ------- | --------------------------------------------- | ---- | ----------------------------------------------------------- |
| extras | {[key: string]: any} | 是   | 需要传递的自定义媒体数据包键值对 |
| callback | AsyncCallback\<void>                          | 是   | 回调函数。当自定义媒体数据包设置成功,err为undefined,否则返回错误对象。 |

> **说明:**
> 参数extras支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let extras = {
    extras : "This is custom media packet"
}
await session.setExtras(extras, (err) => {
    if(err) {
        console.info(`setExtras BusinessError: code: ${err.code}, message: ${err.message}`);
    }
})
```

### getController<sup>10+</sup>

getController(): Promise\<AVSessionController>

获取本会话对应的控制器。结果通过Promise异步回调方式返回。

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

**返回值:**

| 类型                                                 | 说明                          |
| ---------------------------------------------------- | ----------------------------- |
| Promise<[AVSessionController](#avsessioncontroller10)> | Promise对象。返回会话控制器。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let controller;
session.getController().then((avcontroller) => {
    controller = avcontroller;
    console.info(`GetController : SUCCESS : sessionid : ${controller.sessionId}`);
}).catch((err) => {
    console.info(`GetController BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### getController<sup>10+</sup>

getController(callback: AsyncCallback\<AVSessionController>): void

获取本会话相应的控制器。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                                        | 必填 | 说明                       |
| -------- | ----------------------------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[AVSessionController](#avsessioncontroller10)\> | 是   | 回调函数。返回会话控制器。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
let controller;
session.getController(function (err, avcontroller) {
    if (err) {
        console.info(`GetController BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        controller = avcontroller;
        console.info(`GetController : SUCCESS : sessionid : ${controller.sessionId}`);
    }
});
```

### getAVCastController<sup>10+</sup>

getAVCastController(callback: AsyncCallback<AVCastController>): void

设备建立连接后,获取投播控制器。结果通过callback异步回调方式返回。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**参数:**

| 参数名    | 类型                                                        | 必填 | 说明                                                         |
| --------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| callback  | AsyncCallback<[AVCastController](#avcastcontroller10)\> | 是   | 回调函数,返回投播控制器实例。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600102  | The session does not exist. |
| 6600110  | The remote connection is not established. |

**示例:**

```js
let controller;
session.getAVCastController().then((avcontroller) => {
    controller = avcontroller;
    console.info(`getAVCastController : SUCCESS : sessionid : ${controller.sessionId}`);
}).catch((err) => {
    console.info(`getAVCastController BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### getAVCastController<sup>10+</sup>

getAVCastController(): Promise<AVCastController>;

设备建立连接后,获取投播控制器。结果通过callback异步回调方式返回。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**返回值:**

| 类型                                                        | 说明                                                         |
| --------- | ------------------------------------------------------------ |
| Promise<[AVCastController](#avcastcontroller10)\>  | Promise对象。返回投播控制器实例。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600102  | The session does not exist. |
| 6600110  | The remote connection is not established. |

**示例:**

```js
let controller;
session.getAVCastController(function (err, avcontroller) {
    if (err) {
        console.info(`getAVCastController BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        controller = avcontroller;
        console.info(`getAVCastController : SUCCESS : sessionid : ${controller.sessionId}`);
    }
});
```

### stopCasting<sup>10+</sup>

stopCasting(callback: AsyncCallback<void>): void

停止投播。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**参数:**

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

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.stopCasting(function (err) {
    if (err) {
        console.info(`GetController BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        controller = avcontroller;
        console.info(`GetController : SUCCESS : sessionid : ${controller.sessionId}`);
    }
});
```

### stopCasting<sup>10+</sup>

stopCasting(): Promise<void>;

停止投播。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当停止投播成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.stopCasting().then(() => {
    console.info(`stopCasting successfully`);
}).catch((err) => {
    console.info(`stopCasting BusinessError: code: ${err.code}, message: ${err.message}`);
});
```


### getOutputDevice<sup>10+</sup>

getOutputDevice(): Promise\<OutputDeviceInfo>

通过会话获取播放设备信息。结果通过Promise异步回调方式返回。

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

**返回值:**

| 类型                                           | 说明                              |
| ---------------------------------------------- | --------------------------------- |
| Promise<[OutputDeviceInfo](#outputdeviceinfo10)> | Promise对象。返回播放设备信息。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.getOutputDevice().then((outputDeviceInfo) => {
    console.info(`GetOutputDevice : SUCCESS : isRemote : ${outputDeviceInfo.isRemote}`);
}).catch((err) => {
    console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### getOutputDevice<sup>10+</sup>

getOutputDevice(callback: AsyncCallback\<OutputDeviceInfo>): void

通过会话获取播放设备相关信息。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                                                  | 必填 | 说明                           |
| -------- | ----------------------------------------------------- | ---- | ------------------------------ |
| callback | AsyncCallback<[OutputDeviceInfo](#outputdeviceinfo10)\> | 是   | 回调函数,返回播放设备信息。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.getOutputDevice(function (err, outputDeviceInfo) {
    if (err) {
        console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetOutputDevice : SUCCESS : isRemote : ${outputDeviceInfo.isRemote}`);
    }
});
```

### activate<sup>10+</sup>

activate(): Promise\<void>

激活会话,激活后可正常使用会话。结果通过Promise异步回调方式返回。

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

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当会话激活成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.activate().then(() => {
    console.info(`Activate : SUCCESS `);
}).catch((err) => {
    console.info(`Activate BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### activate<sup>10+</sup>

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

激活会话,激活后可正常使用会话。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。当会话激活成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.activate(function (err) {
    if (err) {
        console.info(`Activate BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`Activate : SUCCESS `);
    }
});
```

### deactivate<sup>10+</sup>

deactivate(): Promise\<void>

禁用当前会话的功能,可通过[activate](#activate10)恢复。结果通过Promise异步回调方式返回。

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

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当禁用会话成功,无返回结果,否则返回错误对象。|

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.deactivate().then(() => {
    console.info(`Deactivate : SUCCESS `);
}).catch((err) => {
    console.info(`Deactivate BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### deactivate<sup>10+</sup>

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

禁用当前会话。结果通过callback异步回调方式返回。

禁用当前会话的功能,可通过[activate](#activate10)恢复。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。当禁用会话成功,err为undefined,否则返回错误对象。|

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.deactivate(function (err) {
    if (err) {
        console.info(`Deactivate BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`Deactivate : SUCCESS `);
    }
});
```

### destroy<sup>10+</sup>

destroy(): Promise\<void>

销毁当前会话,使当前会话完全失效。结果通过Promise异步回调方式返回。

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

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当会话销毁成功,无返回结果,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.destroy().then(() => {
    console.info(`Destroy : SUCCESS `);
}).catch((err) => {
    console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`);
});
```

### destroy<sup>10+</sup>

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

销毁当前会话,使当前会话完全失效。结果通过callback异步回调方式返回。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。当会话销毁成功,err为undefined,否则返回错误对象。 |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.destroy(function (err) {
    if (err) {
        console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`Destroy : SUCCESS `);
    }
});
```

### on('play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind')<sup>10+</sup>

on(type: 'play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind', callback: () => void): void

设置播放命令监听事件。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| type     | string               | 是   | 事件回调类型,支持的事件包括:`'play'``'pause'``'stop'`` 'playNext'`` 'playPrevious'``'fastForward'`` 'rewind'`<br/>当对应的播放命令被发送到会话时,触发该事件回调。 |
| callback | callback: () => void | 是   | 回调函数。当监听事件注册成功,err为undefined,否则为错误对象。                                        |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.on('play', () => {
    console.info(`on play entry`);
});
session.on('pause', () => {
    console.info(`on pause entry`);
});
session.on('stop', () => {
    console.info(`on stop entry`);
});
session.on('playNext', () => {
    console.info(`on playNext entry`);
});
session.on('playPrevious', () => {
    console.info(`on playPrevious entry`);
});
session.on('fastForward', () => {
    console.info(`on fastForward entry`);
});
session.on('rewind', () => {
    console.info(`on rewind entry`);
});
```

### on('seek')<sup>10+</sup>

on(type: 'seek', callback: (time: number) => void): void

设置跳转节点监听事件。

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| type     | string                 | 是   | 事件回调类型,支持事件`'seek'`:当跳转节点命令被发送到会话时,触发该事件。 |
| callback | (time: number) => void | 是   | 回调函数。参数time是时间节点,单位为毫秒。                   |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**
The session does not exist
```js
session.on('seek', (time) => {
    console.info(`on seek entry time : ${time}`);
});
```

### on('setSpeed')<sup>10+</sup>

on(type: 'setSpeed', callback: (speed: number) => void): void

设置播放速率的监听事件。

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                                         |
| -------- | ----------------------- | ---- | ------------------------------------------------------------ |
| type     | string                  | 是   | 事件回调类型,支持事件`'setSpeed'`:当设置播放速率的命令被发送到会话时,触发该事件。 |
| callback | (speed: number) => void | 是   | 回调函数。参数speed是播放倍速。                              |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.on('setSpeed', (speed) => {
    console.info(`on setSpeed speed : ${speed}`);
});
```

### on('setLoopMode')<sup>10+</sup>

on(type: 'setLoopMode', callback: (mode: LoopMode) => void): void

设置循环模式的监听事件。

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

**参数:**

| 参数名    | 类型                                   | 必填 | 说明  |
| -------- | ------------------------------------- | ---- | ---- |
| type     | string                                | 是   | 事件回调类型,支持事件`'setLoopMode'`:当设置循环模式的命令被发送到会话时,触发该事件。 |
| callback | (mode: [LoopMode](#loopmode10)) => void | 是   | 回调函数。参数mode是循环模式。                               |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.on('setLoopMode', (mode) => {
    console.info(`on setLoopMode mode : ${mode}`);
});
```

### on('toggleFavorite')<sup>10+</sup>

on(type: 'toggleFavorite', callback: (assetId: string) => void): void

设置是否收藏的监听事件

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                    | 是   | 事件回调类型,支持事件`'toggleFavorite'`:当是否收藏的命令被发送到会话时,触发该事件。 |
| callback | (assetId: string) => void | 是   | 回调函数。参数assetId是媒体ID。                              |

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
session.on('toggleFavorite', (assetId) => {
    console.info(`on toggleFavorite mode : ${assetId}`);
});
```

### on('skipToQueueItem')<sup>10+</sup>

on(type: 'skipToQueueItem', callback: (itemId: number) => void): void

设置播放列表其中某项被选中的监听事件,session端可以选择对这个单项歌曲进行播放。

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                                                                      |
| -------- | ------------------------ | ---- | ---------------------------------------------------------------------------------------- |
| type     | string                   | 是   | 事件回调类型,支持事件`'skipToQueueItem'`:当播放列表选中单项的命令被发送到会话时,触发该事件。 |
| callback | (itemId: number) => void | 是   | 回调函数。参数itemId是选中的播放列表项的ID。                                                |
L
leiiyb 已提交
2759 2760

**错误码:**
2761
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
2762 2763 2764

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
2765 2766
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
2767 2768 2769 2770

**示例:**

```js
C
cheng 已提交
2771 2772
session.on('skipToQueueItem', (itemId) => {
    console.info(`on skipToQueueItem id : ${itemId}`);
L
leiiyb 已提交
2773 2774 2775
});
```

C
cheng 已提交
2776
### on('handleKeyEvent')<sup>10+</sup>
L
leiiyb 已提交
2777

C
cheng 已提交
2778
on(type: 'handleKeyEvent', callback: (event: KeyEvent) => void): void
L
leiiyb 已提交
2779

C
cheng 已提交
2780
设置按键事件的监听
L
leiiyb 已提交
2781 2782 2783 2784 2785

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

**参数:**

C
cheng 已提交
2786 2787 2788 2789
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'handleKeyEvent'`:当按键事件被发送到会话时,触发该事件。 |
| callback | (event: [KeyEvent](js-apis-keyevent.md)) => void | 是   | 回调函数。参数event是按键事件。                              |
L
leiiyb 已提交
2790 2791

**错误码:**
2792
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
2793 2794 2795

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
2796 2797
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
2798 2799 2800 2801

**示例:**

```js
C
cheng 已提交
2802 2803
session.on('handleKeyEvent', (event) => {
    console.info(`on handleKeyEvent event : ${event}`);
L
leiiyb 已提交
2804 2805 2806
});
```

C
cheng 已提交
2807
### on('outputDeviceChange')<sup>10+</sup>
2808

C
cheng 已提交
2809
on(type: 'outputDeviceChange', callback: (device: OutputDeviceInfo) => void): void
2810

C
cheng 已提交
2811
设置播放设备变化的监听事件。
2812 2813 2814 2815 2816

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

**参数:**

C
cheng 已提交
2817 2818 2819 2820
| 参数名   | 类型                                                    | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                                  | 是   | 事件回调类型,支持事件`'outputDeviceChange'`:当播放设备变化时,触发该事件。 |
| callback | (device: [OutputDeviceInfo](#outputdeviceinfo10)) => void | 是   | 回调函数。参数device是设备相关信息。                         |
2821 2822

**错误码:**
2823
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
2824 2825 2826 2827 2828 2829 2830 2831 2832

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
C
cheng 已提交
2833 2834 2835
session.on('outputDeviceChange', (device) => {
    console.info(`on outputDeviceChange device isRemote : ${device.isRemote}`);
});
2836 2837
```

C
cheng 已提交
2838
### on('commonCommand')<sup>10+</sup>
2839

C
cheng 已提交
2840
on(type: 'commonCommand', callback: (command: string, args: {[key: string]: Object}) => void): void
2841

C
cheng 已提交
2842
设置自定义控制命令变化的监听器。
2843 2844 2845 2846 2847

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

**参数:**

C
cheng 已提交
2848 2849 2850 2851
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'commonCommand'`:当自定义控制命令变化时,触发该事件。 |
| callback | (commonCommand: string, args: {[key:string]: Object}) => void         | 是   | 回调函数,commonCommand为变化的自定义控制命令名,args为自定义控制命令的参数,参数内容与sendCommand方法设置的参数内容完全一致。          |
2852

2853
**错误码:**
2854
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
2855 2856

| 错误码ID | 错误信息 |
C
cheng 已提交
2857
| -------- | ------------------------------ |
2858 2859 2860 2861 2862 2863
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
C
cheng 已提交
2864 2865 2866
session.on('commonCommand', (commonCommand, args) => {
    console.info(`OnCommonCommand, the command is ${commonCommand}, args: ${JSON.stringify(args)}`);
});
2867 2868
```

C
cheng 已提交
2869
### off('play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind')<sup>10+</sup>
2870

C
cheng 已提交
2871
off(type: 'play' | 'pause' | 'stop' | 'playNext' | 'playPrevious' | 'fastForward' | 'rewind', callback?: () => void): void
2872

C
cheng 已提交
2873
取消会话相关事件监听,关闭后,不再进行相关事件回调。
2874 2875 2876 2877 2878

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

**参数:**

C
cheng 已提交
2879 2880 2881 2882
| 参数名    | 类型                  | 必填 | 说明                                                                                                                         |
| -------- | -------------------- | ---- | ---------------------------------------------------------------------------------------------------------------------------- |
| type     | string               | 是   | 关闭对应的监听事件,支持的事件包括:`'play'`` 'pause'``'stop'``'playNext'`` 'playPrevious'`` 'fastForward'`` 'rewind'`。 |
| callback | callback: () => void | 否   | 回调函数。当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                            |
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
C
cheng 已提交
2895 2896 2897 2898 2899 2900 2901
session.off('play');
session.off('pause');
session.off('stop');
session.off('playNext');
session.off('playPrevious');
session.off('fastForward');
session.off('rewind');
2902 2903
```

C
cheng 已提交
2904
### off('seek')<sup>10+</sup>
2905

C
cheng 已提交
2906
off(type: 'seek', callback?: (time: number) => void): void
2907

C
cheng 已提交
2908
取消监听跳转节点事件。
2909 2910 2911 2912 2913

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

**参数:**

C
cheng 已提交
2914 2915 2916 2917
| 参数名   | 类型                   | 必填 | 说明                                          |
| -------- | ---------------------- | ---- | ----------------------------------------- |
| type     | string                 | 是   | 关闭对应的监听事件,支持关闭事件`'seek'`。       |
| callback | (time: number) => void | 否   | 回调函数,参数time是时间节点,单位为毫秒。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。        |
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |

**示例:**

```js
C
cheng 已提交
2930
session.off('seek');
2931 2932
```

C
cheng 已提交
2933
### off('setSpeed')<sup>10+</sup>
L
leiiyb 已提交
2934

C
cheng 已提交
2935
off(type: 'setSpeed', callback?: (speed: number) => void): void
L
leiiyb 已提交
2936

C
cheng 已提交
2937
取消监听播放速率变化事件。
L
leiiyb 已提交
2938 2939 2940

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

C
cheng 已提交
2941
**参数:**
L
leiiyb 已提交
2942

C
cheng 已提交
2943 2944 2945 2946
| 参数名   | 类型                    | 必填 | 说明                                           |
| -------- | ----------------------- | ---- | -------------------------------------------|
| type     | string                  | 是   | 关闭对应的监听事件,支持关闭事件`'setSpeed'`。    |
| callback | (speed: number) => void | 否   | 回调函数,参数speed是播放倍速。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                 |
L
leiiyb 已提交
2947 2948

**错误码:**
2949
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
2950 2951 2952

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
2953 2954
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
2955 2956 2957 2958

**示例:**

```js
C
cheng 已提交
2959
session.off('setSpeed');
L
leiiyb 已提交
2960 2961
```

C
cheng 已提交
2962
### off('setLoopMode')<sup>10+</sup>
L
leiiyb 已提交
2963

C
cheng 已提交
2964
off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void
L
leiiyb 已提交
2965

C
cheng 已提交
2966
取消监听循环模式变化事件。
L
leiiyb 已提交
2967 2968 2969 2970 2971

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

**参数:**

C
cheng 已提交
2972 2973 2974 2975
| 参数名   | 类型                                  | 必填 | 说明     |
| -------- | ------------------------------------- | ---- | ----- |
| type     | string | 是   | 关闭对应的监听事件,支持关闭事件`'setLoopMode'`。|
| callback | (mode: [LoopMode](#loopmode10)) => void | 否   | 回调函数,参数mode是循环模式。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
L
leiiyb 已提交
2976 2977

**错误码:**
2978
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
2979 2980 2981

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
2982 2983
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
2984 2985 2986 2987

**示例:**

```js
C
cheng 已提交
2988
session.off('setLoopMode');
L
leiiyb 已提交
2989 2990
```

C
cheng 已提交
2991
### off('toggleFavorite')<sup>10+</sup>
L
leiiyb 已提交
2992

C
cheng 已提交
2993
off(type: 'toggleFavorite', callback?: (assetId: string) => void): void
L
leiiyb 已提交
2994

C
cheng 已提交
2995
取消监听是否收藏的事件
L
leiiyb 已提交
2996 2997 2998

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

C
cheng 已提交
2999
**参数:**
L
leiiyb 已提交
3000

C
cheng 已提交
3001 3002 3003 3004
| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | -------------------------------------------------------- |
| type     | string                    | 是   | 关闭对应的监听事件,支持关闭事件`'toggleFavorite'`。            |
| callback | (assetId: string) => void | 否   | 回调函数,参数assetId是媒体ID。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                               |
L
leiiyb 已提交
3005 3006

**错误码:**
3007
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3008 3009 3010

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3011 3012
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
3013 3014 3015 3016

**示例:**

```js
C
cheng 已提交
3017
session.off('toggleFavorite');
L
leiiyb 已提交
3018 3019
```

C
cheng 已提交
3020
### off('skipToQueueItem')<sup>10+</sup>
L
leiiyb 已提交
3021

C
cheng 已提交
3022
off(type: 'skipToQueueItem', callback?: (itemId: number) => void): void
L
leiiyb 已提交
3023

C
cheng 已提交
3024
取消监听播放列表单项选中的事件
L
leiiyb 已提交
3025 3026 3027 3028 3029

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

**参数:**

C
cheng 已提交
3030 3031 3032 3033
| 参数名   | 类型                      | 必填 | 说明                                                                                                                                                        |
| -------- | ------------------------ | ---- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| type     | string                   | 是   | 关闭对应的监听事件,支持关闭事件`'skipToQueueItem'`。                                                                                                          |
| callback | (itemId: number) => void | 否   | 回调函数,参数itemId是播放列表单项ID。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
L
leiiyb 已提交
3034 3035

**错误码:**
3036
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3037 3038 3039

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3040 3041
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
3042 3043 3044 3045

**示例:**

```js
C
cheng 已提交
3046
session.off('skipToQueueItem');
L
leiiyb 已提交
3047 3048
```

C
cheng 已提交
3049
### off('handleKeyEvent')<sup>10+</sup>
L
leiiyb 已提交
3050

C
cheng 已提交
3051
off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void
L
leiiyb 已提交
3052

C
cheng 已提交
3053
取消监听按键事件。
L
leiiyb 已提交
3054 3055 3056

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

C
cheng 已提交
3057
**参数:**
L
leiiyb 已提交
3058

C
cheng 已提交
3059 3060 3061 3062
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 关闭对应的监听事件,支持关闭事件`'handleKeyEvent'`。             |
| callback | (event: [KeyEvent](js-apis-keyevent.md)) => void | 否   | 回调函数,参数event是按键事件。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                              |
L
leiiyb 已提交
3063 3064

**错误码:**
3065
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3066 3067 3068

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3069 3070
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
3071 3072 3073 3074

**示例:**

```js
C
cheng 已提交
3075
session.off('handleKeyEvent');
L
leiiyb 已提交
3076 3077
```

C
cheng 已提交
3078
### off('outputDeviceChange')<sup>10+</sup>
L
leiiyb 已提交
3079

C
cheng 已提交
3080
off(type: 'outputDeviceChange', callback?: (state: ConnectionState, device: OutputDeviceInfo) => void): void
L
leiiyb 已提交
3081

C
cheng 已提交
3082
取消监听播放设备变化的事件。
L
leiiyb 已提交
3083 3084 3085 3086 3087

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

**参数:**

C
cheng 已提交
3088 3089 3090 3091
| 参数名   | 类型                                                    | 必填 | 说明                                                      |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------ |
| type     | string                                                  | 是   | 关闭对应的监听事件,支持关闭事件`'outputDeviceChange'`。     |
| callback | (state: [ConnectionState](#connectionstate10), device: [OutputDeviceInfo](#outputdeviceinfo10)) => void | 否   | 回调函数,参数device是设备相关信息。<br>当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                        |
L
leiiyb 已提交
3092 3093

**错误码:**
3094
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3095 3096 3097

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3098 3099
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
3100 3101 3102 3103

**示例:**

```js
C
cheng 已提交
3104
session.off('outputDeviceChange');
L
leiiyb 已提交
3105 3106 3107
```


C
cheng 已提交
3108
### off('commonCommand')<sup>10+</sup>
L
leiiyb 已提交
3109

C
cheng 已提交
3110 3111 3112
off(type: 'commonCommand', callback?: (command: string, args: {[key:string]: Object}) => void): void

取消监听自定义控制命令的变化。
L
leiiyb 已提交
3113 3114 3115

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

C
cheng 已提交
3116
**参数:**
L
leiiyb 已提交
3117

C
cheng 已提交
3118 3119 3120 3121
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'commonCommand'`。    |
| callback | (command: string, args: {[key:string]: Object}) => void         | 否   | 回调函数,参数command是变化的自定义控制命令名,args为自定义控制命令的参数。<br>该参数为可选参数,若不填写该参数,则认为取消所有对command事件的监听。                      |
L
leiiyb 已提交
3122 3123

**错误码:**
3124
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3125 3126

| 错误码ID | 错误信息 |
C
cheng 已提交
3127
| -------- | ---------------- |
L
leiiyb 已提交
3128 3129
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
L
leiiyb 已提交
3130 3131 3132 3133

**示例:**

```js
C
cheng 已提交
3134
session.off('commonCommand');
L
leiiyb 已提交
3135 3136 3137 3138
```



C
cheng 已提交
3139
## AVSessionController<sup>10+</sup>
L
leiiyb 已提交
3140

C
cheng 已提交
3141
调用[avSession.createController](#avsessioncreatecontroller)后,返回会话控制器实例。控制器可查看会话ID,并可完成对会话发送命令及事件,获取会话元数据,播放状态信息等操作。
L
leiiyb 已提交
3142

C
cheng 已提交
3143
### 属性
L
leiiyb 已提交
3144

C
cheng 已提交
3145
**系统能力:** SystemCapability.Multimedia.AVSession.Core
L
leiiyb 已提交
3146

C
cheng 已提交
3147 3148 3149
| 名称      | 类型   | 可读 | 可写 | 说明                                    |
| :-------- | :----- | :--- | :--- | :-------------------------------------- |
| sessionId | string | 是   | 否   | AVSessionController对象唯一的会话标识。 |
L
leiiyb 已提交
3150 3151 3152 3153


**示例:**
```js
C
cheng 已提交
3154 3155 3156 3157 3158
let sessionId;
await avSession.createController(session.sessionId).then((controller) => {
    sessionId = controller.sessionId;
}).catch((err) => {
    console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3159 3160 3161
});
```

C
cheng 已提交
3162
### getAVPlaybackState<sup>10+</sup>
L
leiiyb 已提交
3163

C
cheng 已提交
3164
getAVPlaybackState(): Promise\<AVPlaybackState>
L
leiiyb 已提交
3165

C
cheng 已提交
3166
获取当前会话播放状态相关信息。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3167 3168 3169 3170 3171

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

**返回值:**

C
cheng 已提交
3172 3173 3174
| 类型                                          | 说明                        |
| --------------------------------------------- | --------------------------- |
| Promise<[AVPlaybackState](#avplaybackstate10)\> | Promise对象。返回播放状态对象。 |
L
leiiyb 已提交
3175 3176

**错误码:**
3177
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3178 3179 3180

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3181 3182
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3183
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3184 3185 3186

**示例:**
```js
C
cheng 已提交
3187 3188
controller.getAVPlaybackState().then((playbackState) => {
    console.info(`GetAVPlaybackState : SUCCESS : state : ${playbackState.state}`);
L
leiiyb 已提交
3189
}).catch((err) => {
C
cheng 已提交
3190
    console.info(`GetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3191 3192 3193
});
```

C
cheng 已提交
3194
### getAVPlaybackState<sup>10+</sup>
L
leiiyb 已提交
3195

C
cheng 已提交
3196
getAVPlaybackState(callback: AsyncCallback\<AVPlaybackState>): void
L
leiiyb 已提交
3197

C
cheng 已提交
3198
获取当前播放状态相关信息。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3199 3200 3201 3202 3203

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

**参数:**

C
cheng 已提交
3204 3205 3206
| 参数名   | 类型                                                | 必填 | 说明                         |
| -------- | --------------------------------------------------- | ---- | ---------------------------- |
| callback | AsyncCallback<[AVPlaybackState](#avplaybackstate10)\> | 是   | 回调函数,返回当前播放状态对象。 |
L
leiiyb 已提交
3207 3208

**错误码:**
3209
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3210 3211 3212

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3213 3214
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3215
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3216 3217 3218

**示例:**
```js
C
cheng 已提交
3219
controller.getAVPlaybackState(function (err, playbackState) {
L
leiiyb 已提交
3220
    if (err) {
C
cheng 已提交
3221
        console.info(`GetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3222
    } else {
C
cheng 已提交
3223
        console.info(`GetAVPlaybackState : SUCCESS : state : ${playbackState.state}`);
L
leiiyb 已提交
3224 3225 3226 3227
    }
});
```

C
cheng 已提交
3228
### getAVQueueItems<sup>10+</sup>
L
leiiyb 已提交
3229

C
cheng 已提交
3230
getAVQueueItems(): Promise\<Array\<AVQueueItem>>
L
leiiyb 已提交
3231

C
cheng 已提交
3232
获取当前会话播放列表相关信息。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3233 3234 3235

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

C
cheng 已提交
3236
**返回值:**
L
leiiyb 已提交
3237

C
cheng 已提交
3238 3239 3240
| 类型                                          | 说明                           |
| --------------------------------------------- | ----------------------------- |
| Promise<Array<[AVQueueItem](#avqueueitem10)\>\> | Promise对象。返回播放列表队列。 |
L
leiiyb 已提交
3241 3242

**错误码:**
3243
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3244 3245 3246

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3247 3248
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3249
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3250 3251 3252

**示例:**
```js
C
cheng 已提交
3253 3254 3255 3256
controller.getAVQueueItems().then((items) => {
    console.info(`GetAVQueueItems : SUCCESS : length : ${items.length}`);
}).catch((err) => {
    console.info(`GetAVQueueItems BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3257 3258 3259
});
```

C
cheng 已提交
3260
### getAVQueueItems<sup>10+</sup>
L
leiiyb 已提交
3261

C
cheng 已提交
3262
getAVQueueItems(callback: AsyncCallback\<Array\<AVQueueItem>>): void
L
leiiyb 已提交
3263

C
cheng 已提交
3264
获取当前播放列表相关信息。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3265 3266 3267 3268 3269

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

**参数:**

C
cheng 已提交
3270 3271 3272
| 参数名   | 类型                                                 | 必填 | 说明                      |
| -------- | --------------------------------------------------- | ---- | ------------------------- |
| callback | AsyncCallback<Array<[AVQueueItem](#avqueueitem10)\>\> | 是   | 回调函数,返回播放列表队列。 |
L
leiiyb 已提交
3273 3274

**错误码:**
3275
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3276 3277 3278

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3279 3280
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3281
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3282 3283 3284

**示例:**
```js
C
cheng 已提交
3285 3286 3287 3288 3289 3290
controller.getAVQueueItems(function (err, items) {
    if (err) {
        console.info(`GetAVQueueItems BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetAVQueueItems : SUCCESS : length : ${items.length}`);
    }
L
leiiyb 已提交
3291 3292 3293
});
```

C
cheng 已提交
3294
### getAVQueueTitle<sup>10+</sup>
L
leiiyb 已提交
3295

C
cheng 已提交
3296
getAVQueueTitle(): Promise\<string>
L
leiiyb 已提交
3297

C
cheng 已提交
3298
获取当前会话播放列表的名称。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3299 3300 3301

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

C
cheng 已提交
3302
**返回值:**
L
leiiyb 已提交
3303

C
cheng 已提交
3304 3305 3306
| 类型             | 说明                           |
| ---------------- | ----------------------------- |
| Promise<string\> | Promise对象。返回播放列表名称。 |
L
leiiyb 已提交
3307 3308

**错误码:**
3309
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3310 3311 3312

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3313 3314
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3315
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3316 3317 3318

**示例:**
```js
C
cheng 已提交
3319 3320 3321 3322
controller.getAVQueueTitle().then((title) => {
    console.info(`GetAVQueueTitle : SUCCESS : title : ${title}`);
}).catch((err) => {
    console.info(`GetAVQueueTitle BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3323 3324 3325
});
```

C
cheng 已提交
3326
### getAVQueueTitle<sup>10+</sup>
L
leiiyb 已提交
3327

C
cheng 已提交
3328
getAVQueueTitle(callback: AsyncCallback\<string>): void
L
leiiyb 已提交
3329

C
cheng 已提交
3330
获取当前播放列表的名称。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3331 3332 3333 3334 3335

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

**参数:**

C
cheng 已提交
3336 3337 3338
| 参数名   | 类型                    | 必填 | 说明                      |
| -------- | ---------------------- | ---- | ------------------------- |
| callback | AsyncCallback<string\> | 是   | 回调函数,返回播放列表名称。 |
L
leiiyb 已提交
3339 3340

**错误码:**
3341
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3342 3343 3344

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3345 3346
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3347
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3348 3349 3350

**示例:**
```js
C
cheng 已提交
3351 3352 3353 3354 3355 3356
controller.getAVQueueTitle(function (err, title) {
    if (err) {
        console.info(`GetAVQueueTitle BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetAVQueueTitle : SUCCESS : title : ${title}`);
    }
L
leiiyb 已提交
3357 3358 3359
});
```

C
cheng 已提交
3360
### skipToQueueItem<sup>10+</sup>
L
leiiyb 已提交
3361

C
cheng 已提交
3362
skipToQueueItem(itemId: number): Promise\<void>
L
leiiyb 已提交
3363

C
cheng 已提交
3364
设置指定播放列表单项的ID,发送给session端处理,session端可以选择对这个单项歌曲进行播放。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3365 3366 3367 3368 3369

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

**参数:**

C
cheng 已提交
3370 3371 3372 3373 3374 3375 3376 3377 3378
| 参数名  | 类型    | 必填 | 说明                                        |
| ------ | ------- | ---- | ------------------------------------------- |
| itemId | number  | 是   | 播放列表单项的ID值,用以表示选中的播放列表单项。 |

**返回值:**

| 类型           | 说明                                                             |
| -------------- | --------------------------------------------------------------- |
| Promise\<void> | Promise对象。当播放列表单项ID设置成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
3379 3380

**错误码:**
3381
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3382 3383 3384

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3385 3386
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3387
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3388 3389 3390 3391

**示例:**

```js
C
cheng 已提交
3392 3393 3394 3395 3396
let queueItemId = 0;
controller.skipToQueueItem(queueItemId).then(() => {
    console.info(`SkipToQueueItem successfully`);
}).catch((err) => {
    console.info(`SkipToQueueItem BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3397 3398 3399
});
```

C
cheng 已提交
3400
### skipToQueueItem<sup>10+</sup>
3401

C
cheng 已提交
3402
skipToQueueItem(itemId: number, callback: AsyncCallback\<void>): void
3403

C
cheng 已提交
3404
设置指定播放列表单项的ID,发送给session端处理,session端可以选择对这个单项歌曲进行播放。结果通过callback异步回调方式返回。
3405 3406 3407 3408 3409

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

**参数:**

C
cheng 已提交
3410 3411 3412 3413
| 参数名    | 类型                  | 必填 | 说明                                                        |
| -------- | --------------------- | ---- | ----------------------------------------------------------- |
| itemId   | number                | 是   | 播放列表单项的ID值,用以表示选中的播放列表单项。                |
| callback | AsyncCallback\<void>  | 是   | 回调函数。当播放状态设置成功,err为undefined,否则返回错误对象。 |
3414 3415 3416 3417 3418 3419 3420 3421

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3422
| 6600103  | The session controller does not exist. |
3423 3424 3425 3426

**示例:**

```js
C
cheng 已提交
3427 3428 3429 3430 3431 3432 3433
let queueItemId = 0;
controller.skipToQueueItem(queueItemId, function (err) {
    if (err) {
        console.info(`SkipToQueueItem BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SkipToQueueItem successfully`);
    }
3434 3435 3436
});
```

C
cheng 已提交
3437
### getAVMetadata<sup>10+</sup>
L
leiiyb 已提交
3438

C
cheng 已提交
3439
getAVMetadata(): Promise\<AVMetadata>
L
leiiyb 已提交
3440

C
cheng 已提交
3441
获取会话元数据。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3442 3443 3444

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

C
cheng 已提交
3445
**返回值:**
L
leiiyb 已提交
3446

C
cheng 已提交
3447 3448 3449
| 类型                                | 说明                          |
| ----------------------------------- | ----------------------------- |
| Promise<[AVMetadata](#avmetadata10)\> | Promise对象,返回会话元数据。 |
L
leiiyb 已提交
3450 3451

**错误码:**
3452
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3453 3454 3455

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3456 3457
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3458
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3459 3460 3461

**示例:**
```js
C
cheng 已提交
3462 3463 3464 3465
controller.getAVMetadata().then((metadata) => {
    console.info(`GetAVMetadata : SUCCESS : assetId : ${metadata.assetId}`);
}).catch((err) => {
    console.info(`GetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3466 3467 3468
});
```

C
cheng 已提交
3469
### getAVMetadata<sup>10+</sup>
L
leiiyb 已提交
3470

C
cheng 已提交
3471
getAVMetadata(callback: AsyncCallback\<AVMetadata>): void
L
leiiyb 已提交
3472

C
cheng 已提交
3473
获取会话元数据。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3474 3475 3476 3477 3478

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

**参数:**

C
cheng 已提交
3479 3480 3481
| 参数名   | 类型                                      | 必填 | 说明                       |
| -------- | ----------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[AVMetadata](#avmetadata10)\> | 是   | 回调函数,返回会话元数据。 |
L
leiiyb 已提交
3482 3483

**错误码:**
3484
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3485 3486 3487

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3488 3489
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3490
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3491 3492 3493

**示例:**
```js
C
cheng 已提交
3494 3495 3496 3497 3498 3499
controller.getAVMetadata(function (err, metadata) {
    if (err) {
        console.info(`GetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetAVMetadata : SUCCESS : assetId : ${metadata.assetId}`);
    }
L
leiiyb 已提交
3500 3501 3502
});
```

C
cheng 已提交
3503
### getOutputDevice<sup>10+</sup>
3504

C
cheng 已提交
3505
getOutputDevice(): Promise\<OutputDeviceInfo>
3506

C
cheng 已提交
3507
获取播放设备信息。结果通过Promise异步回调方式返回。
3508 3509 3510

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

C
cheng 已提交
3511
**返回值:**
3512

C
cheng 已提交
3513 3514 3515
| 类型                                            | 说明                              |
| ----------------------------------------------- | --------------------------------- |
| Promise<[OutputDeviceInfo](#outputdeviceinfo10)\> | Promise对象,返回播放设备信息。 |
3516 3517 3518 3519 3520

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
3521
| -------- | ---------------------------------------- |
3522
| 6600101  | Session service exception. |
C
cheng 已提交
3523
| 6600103  | The session controller does not exist. |
3524 3525 3526

**示例:**
```js
C
cheng 已提交
3527 3528 3529 3530
controller.getOutputDevice().then((deviceInfo) => {
    console.info(`GetOutputDevice : SUCCESS : isRemote : ${deviceInfo.isRemote}`);
}).catch((err) => {
    console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`);
3531 3532 3533
});
```

C
cheng 已提交
3534
### getOutputDevice<sup>10+</sup>
L
leiiyb 已提交
3535

C
cheng 已提交
3536
getOutputDevice(callback: AsyncCallback\<OutputDeviceInfo>): void
L
leiiyb 已提交
3537

C
cheng 已提交
3538
获取播放设备信息。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3539 3540 3541 3542 3543

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

**参数:**

C
cheng 已提交
3544 3545 3546
| 参数名   | 类型                                                  | 必填 | 说明                           |
| -------- | ----------------------------------------------------- | ---- | ------------------------------ |
| callback | AsyncCallback<[OutputDeviceInfo](#outputdeviceinfo10)\> | 是   | 回调函数,返回播放设备信息。 |
L
leiiyb 已提交
3547 3548

**错误码:**
3549
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3550 3551 3552

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3553
| 6600101  | Session service exception. |
C
cheng 已提交
3554
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3555 3556 3557 3558

**示例:**

```js
C
cheng 已提交
3559 3560 3561 3562 3563 3564 3565
controller.getOutputDevice(function (err, deviceInfo) {
    if (err) {
        console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetOutputDevice : SUCCESS : isRemote : ${deviceInfo.isRemote}`);
    }
});
L
leiiyb 已提交
3566 3567
```

C
cheng 已提交
3568
### getExtras<sup>10+</sup>
L
leiiyb 已提交
3569

C
cheng 已提交
3570
getExtras(): Promise\<{[key: string]: Object}>
L
leiiyb 已提交
3571

C
cheng 已提交
3572
获取媒体提供方设置的自定义媒体数据包。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3573 3574 3575

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

C
cheng 已提交
3576
**返回值:**
L
leiiyb 已提交
3577

C
cheng 已提交
3578 3579 3580
| 类型                                | 说明                          |
| ----------------------------------- | ----------------------------- |
| Promise<{[key: string]: Object}\>   | Promise对象,返回媒体提供方设置的自定义媒体数据包,数据包的内容与setExtras设置的内容完全一致。 |
L
leiiyb 已提交
3581 3582

**错误码:**
3583
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3584 3585 3586

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3587 3588
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3589 3590 3591
| 6600103  | The session controller does not exist. |
| 6600105  | Invalid session command. |
| 6600107  | Too many commands or events. |
L
leiiyb 已提交
3592 3593 3594

**示例:**
```js
C
cheng 已提交
3595 3596 3597
let extras = await controller.getExtras().catch((err) => {
    console.info(`getExtras BusinessError: code: ${err.code}, message: ${err.message}`);
});
L
leiiyb 已提交
3598 3599
```

C
cheng 已提交
3600
### getExtras<sup>10+</sup>
L
leiiyb 已提交
3601

C
cheng 已提交
3602
getExtras(callback: AsyncCallback\<{[key: string]: Object}>): void
L
leiiyb 已提交
3603

C
cheng 已提交
3604
获取媒体提供方设置的自定义媒体数据包,结果通过callback异步回调方式返回。
L
leiiyb 已提交
3605 3606 3607 3608 3609

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

**参数:**

C
cheng 已提交
3610 3611 3612
| 参数名   | 类型                                      | 必填 | 说明                       |
| -------- | ----------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<{[key: string]: Object}\> | 是   | 回调函数,返回媒体提供方设置的自定义媒体数据包,数据包的内容与setExtras设置的内容完全一致。 |
L
leiiyb 已提交
3613 3614

**错误码:**
3615
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3616 3617 3618

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3619 3620
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3621 3622 3623
| 6600103  | The session controller does not exist. |
| 6600105  | Invalid session command. |
| 6600107  | Too many commands or events. |
L
leiiyb 已提交
3624 3625 3626

**示例:**
```js
C
cheng 已提交
3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649
let metadata  = {
    assetId: "121278",
    title: "lose yourself",
    artist: "Eminem",
    author: "ST",
    album: "Slim shady",
    writer: "ST",
    composer: "ST",
    duration: 2222,
    mediaImage: "https://www.example.com/example.jpg",
    subtitle: "8 Mile",
    description: "Rap",
    lyric: "https://www.example.com/example.lrc",
    previousAssetId: "121277",
    nextAssetId: "121279",
};
controller.getExtras(function (err, extras) {
    if (err) {
        console.info(`getExtras BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`getExtras : SUCCESS : assetId : ${metadata.assetId}`);
    }
});
L
leiiyb 已提交
3650 3651
```

C
cheng 已提交
3652
### sendAVKeyEvent<sup>10+</sup>
L
leiiyb 已提交
3653

C
cheng 已提交
3654
sendAVKeyEvent(event: KeyEvent): Promise\<void>
L
leiiyb 已提交
3655

C
cheng 已提交
3656
发送按键事件到控制器对应的会话。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3657 3658 3659 3660 3661

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

**参数:**

C
cheng 已提交
3662 3663 3664
| 参数名 | 类型                                                         | 必填 | 说明       |
| ------ | ------------------------------------------------------------ | ---- | ---------- |
| event  | [KeyEvent](js-apis-keyevent.md) | 是   | 按键事件。 |
L
leiiyb 已提交
3665 3666

**错误码:**
3667
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3668 3669 3670

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3671 3672
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3673 3674 3675 3676 3677 3678 3679 3680 3681
| 6600103  | The session controller does not exist. |
| 6600105  | Invalid session command. |
| 6600106  | The session is not activated. |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当事件发送成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
3682 3683 3684 3685

**示例:**

```js
C
cheng 已提交
3686 3687 3688 3689 3690 3691 3692 3693
let keyItem = {code:0x49, pressedTime:2, deviceId:0};
let event = {action:2, key:keyItem, keys:[keyItem]};

controller.sendAVKeyEvent(event).then(() => {
    console.info(`SendAVKeyEvent Successfully`);
}).catch((err) => {
    console.info(`SendAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`);
});
L
leiiyb 已提交
3694 3695
```

C
cheng 已提交
3696
### sendAVKeyEvent<sup>10+</sup>
L
leiiyb 已提交
3697

C
cheng 已提交
3698
sendAVKeyEvent(event: KeyEvent, callback: AsyncCallback\<void>): void
L
leiiyb 已提交
3699

C
cheng 已提交
3700
发送按键事件到会话。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3701 3702 3703 3704 3705

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

**参数:**

C
cheng 已提交
3706 3707 3708 3709
| 参数名   | 类型                                                         | 必填 | 说明       |
| -------- | ------------------------------------------------------------ | ---- | ---------- |
| event    | [KeyEvent](js-apis-keyevent.md) | 是   | 按键事件。 |
| callback | AsyncCallback\<void>                                         | 是   | 回调函数。当事件发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
3710 3711

**错误码:**
3712
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3713 3714 3715

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3716 3717
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3718 3719 3720
| 6600103  | The session controller does not exist. |
| 6600105  | Invalid session command. |
| 6600106  | The session is not activated. |
L
leiiyb 已提交
3721 3722 3723 3724

**示例:**

```js
C
cheng 已提交
3725 3726 3727 3728 3729 3730 3731 3732 3733 3734
let keyItem = {code:0x49, pressedTime:2, deviceId:0};
let event = {action:2, key:keyItem, keys:[keyItem]};

controller.sendAVKeyEvent(event, function (err) {
    if (err) {
        console.info(`SendAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SendAVKeyEvent Successfully`);
    }
});
L
leiiyb 已提交
3735 3736
```

C
cheng 已提交
3737
### getLaunchAbility<sup>10+</sup>
3738

C
cheng 已提交
3739
getLaunchAbility(): Promise\<WantAgent>
3740

C
cheng 已提交
3741
获取应用在会话中保存的WantAgent对象。结果通过Promise异步回调方式返回。
3742 3743 3744

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

C
cheng 已提交
3745
**返回值:**
3746

C
cheng 已提交
3747 3748 3749
| 类型                                                    | 说明                                                         |
| ------------------------------------------------------- | ------------------------------------------------------------ |
| Promise<[WantAgent](js-apis-app-ability-wantAgent.md)\> | Promise对象,返回在[setLaunchAbility](#setlaunchability10)保存的对象,包括应用的相关属性信息,如bundleName,abilityName,deviceId等。 |
3750 3751 3752 3753 3754 3755 3756 3757

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3758
| 6600103  | The session controller does not exist. |
3759 3760 3761 3762

**示例:**

```js
C
cheng 已提交
3763 3764 3765 3766 3767 3768 3769
import wantAgent from '@ohos.app.ability.wantAgent';

controller.getLaunchAbility().then((agent) => {
    console.info(`GetLaunchAbility : SUCCESS : wantAgent : ${agent}`);
}).catch((err) => {
    console.info(`GetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`);
});
3770 3771
```

C
cheng 已提交
3772
### getLaunchAbility<sup>10+</sup>
L
leiiyb 已提交
3773

C
cheng 已提交
3774
getLaunchAbility(callback: AsyncCallback\<WantAgent>): void
L
leiiyb 已提交
3775

C
cheng 已提交
3776
获取应用在会话中保存的WantAgent对象。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3777 3778 3779 3780 3781 3782 3783

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
C
cheng 已提交
3784
| callback | AsyncCallback<[WantAgent](js-apis-app-ability-wantAgent.md)\> | 是   | 回调函数。返回在[setLaunchAbility](#setlaunchability10)保存的对象,包括应用的相关属性信息,如bundleName,abilityName,deviceId等。 |
L
leiiyb 已提交
3785 3786

**错误码:**
3787
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3788 3789 3790

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3791 3792
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
C
cheng 已提交
3793
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3794 3795 3796 3797

**示例:**

```js
C
cheng 已提交
3798 3799 3800 3801 3802 3803 3804 3805 3806
import wantAgent from '@ohos.app.ability.wantAgent';

controller.getLaunchAbility(function (err, agent) {
    if (err) {
        console.info(`GetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`GetLaunchAbility : SUCCESS : wantAgent : ${agent}`);
    }
});
L
leiiyb 已提交
3807 3808
```

C
cheng 已提交
3809
### getRealPlaybackPositionSync<sup>10+</sup>
L
leiiyb 已提交
3810

C
cheng 已提交
3811
getRealPlaybackPositionSync(): number
L
leiiyb 已提交
3812

C
cheng 已提交
3813
获取当前播放位置。
L
leiiyb 已提交
3814 3815 3816

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

C
cheng 已提交
3817
**返回值:**
L
leiiyb 已提交
3818

C
cheng 已提交
3819 3820 3821
| 类型   | 说明               |
| ------ | ------------------ |
| number | 时间节点,毫秒数。 |
L
leiiyb 已提交
3822 3823

**错误码:**
3824
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3825 3826 3827

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3828
| 6600101  | Session service exception. |
C
cheng 已提交
3829
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3830 3831 3832 3833

**示例:**

```js
C
cheng 已提交
3834
let time = controller.getRealPlaybackPositionSync();
L
leiiyb 已提交
3835 3836
```

C
cheng 已提交
3837
### isActive<sup>10+</sup>
L
leiiyb 已提交
3838

C
cheng 已提交
3839
isActive(): Promise\<boolean>
L
leiiyb 已提交
3840

C
cheng 已提交
3841
获取会话是否被激活。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3842 3843 3844

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

C
cheng 已提交
3845
**返回值:**
3846

C
cheng 已提交
3847 3848 3849
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise<boolean\> | Promise对象,返回会话是否为激活状态,true表示被激活,false表示禁用。 |
3850 3851 3852 3853 3854

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
3855
| -------- | ---------------------------------------- |
3856
| 6600101  | Session service exception. |
H
houyu 已提交
3857
| 6600102  | The session does not exist. |
C
cheng 已提交
3858
| 6600103  | The session controller does not exist. |
3859 3860 3861 3862

**示例:**

```js
C
cheng 已提交
3863 3864 3865 3866 3867
controller.isActive().then((isActive) => {
    console.info(`IsActive : SUCCESS : isactive : ${isActive}`);
}).catch((err) => {
    console.info(`IsActive BusinessError: code: ${err.code}, message: ${err.message}`);
});
3868 3869
```

C
cheng 已提交
3870
### isActive<sup>10+</sup>
3871

C
cheng 已提交
3872
isActive(callback: AsyncCallback\<boolean>): void
3873

C
cheng 已提交
3874
判断会话是否被激活。结果通过callback异步回调方式返回。
3875

C
cheng 已提交
3876
**系统能力:** SystemCapability.Multimedia.AVSession.Core
3877

C
cheng 已提交
3878
**参数:**
3879

C
cheng 已提交
3880 3881 3882
| 参数名   | 类型                    | 必填 | 说明                                                         |
| -------- | ----------------------- | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback<boolean\> | 是   | 回调函数,返回会话是否为激活状态,true表示被激活,false表示禁用。 |
3883

C
cheng 已提交
3884 3885
**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3886

C
cheng 已提交
3887 3888 3889 3890 3891
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3892 3893

**示例:**
C
cheng 已提交
3894

L
leiiyb 已提交
3895
```js
C
cheng 已提交
3896 3897 3898 3899 3900 3901
controller.isActive(function (err, isActive) {
    if (err) {
        console.info(`IsActive BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`IsActive : SUCCESS : isactive : ${isActive}`);
    }
L
leiiyb 已提交
3902 3903 3904
});
```

C
cheng 已提交
3905
### destroy<sup>10+</sup>
L
leiiyb 已提交
3906

C
cheng 已提交
3907
destroy(): Promise\<void>
L
leiiyb 已提交
3908

C
cheng 已提交
3909
销毁当前控制器,销毁后当前控制器不可再用。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
3910 3911 3912 3913 3914

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

**返回值:**

C
cheng 已提交
3915 3916 3917
| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当控制器销毁成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
3918 3919

**错误码:**
3920
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3921 3922 3923

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3924 3925
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3926 3927

**示例:**
C
cheng 已提交
3928

L
leiiyb 已提交
3929
```js
C
cheng 已提交
3930 3931
controller.destroy().then(() => {
    console.info(`Destroy : SUCCESS `);
L
leiiyb 已提交
3932
}).catch((err) => {
C
cheng 已提交
3933
    console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3934 3935 3936
});
```

C
cheng 已提交
3937
### destroy<sup>10+</sup>
L
leiiyb 已提交
3938

C
cheng 已提交
3939
destroy(callback: AsyncCallback\<void>): void
L
leiiyb 已提交
3940

C
cheng 已提交
3941
销毁当前控制器,销毁后当前控制器不可再用。结果通过callback异步回调方式返回。
L
leiiyb 已提交
3942 3943 3944 3945 3946

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

**参数:**

C
cheng 已提交
3947 3948 3949
| 参数名   | 类型                 | 必填 | 说明       |
| -------- | -------------------- | ---- | ---------- |
| callback | AsyncCallback\<void> | 是   | 回调函数。当控制器销毁成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
3950 3951

**错误码:**
3952
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
3953 3954 3955

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
3956 3957
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
3958 3959

**示例:**
C
cheng 已提交
3960

L
leiiyb 已提交
3961
```js
C
cheng 已提交
3962
controller.destroy(function (err) {
L
leiiyb 已提交
3963
    if (err) {
C
cheng 已提交
3964
        console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`);
L
leiiyb 已提交
3965
    } else {
C
cheng 已提交
3966
        console.info(`Destroy : SUCCESS `);
L
leiiyb 已提交
3967 3968 3969 3970
    }
});
```

C
cheng 已提交
3971
### getValidCommands<sup>10+</sup>
3972

C
cheng 已提交
3973
getValidCommands(): Promise\<Array\<AVControlCommandType>>
3974

C
cheng 已提交
3975
获取会话支持的有效命令。结果通过Promise异步回调方式返回。
3976 3977 3978 3979 3980

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

**返回值:**

C
cheng 已提交
3981 3982 3983
| 类型                                                         | 说明                              |
| ------------------------------------------------------------ | --------------------------------- |
| Promise<Array<[AVControlCommandType](#avcontrolcommandtype10)\>\> | Promise对象。返回有效命令的集合。 |
3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600103  | The session controller does not exist. |

**示例:**
C
cheng 已提交
3995

3996
```js
C
cheng 已提交
3997 3998
controller.getValidCommands.then((validCommands) => {
    console.info(`GetValidCommands : SUCCESS : size : ${validCommands.length}`);
3999
}).catch((err) => {
C
cheng 已提交
4000
    console.info(`GetValidCommands BusinessError: code: ${err.code}, message: ${err.message}`);
4001 4002 4003
});
```

C
cheng 已提交
4004
### getValidCommands<sup>10+</sup>
4005

C
cheng 已提交
4006
getValidCommands(callback: AsyncCallback\<Array\<AVControlCommandType>>): void
4007

C
cheng 已提交
4008
获取会话支持的有效命令。结果通过callback异步回调方式返回。
4009 4010 4011 4012 4013

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

**参数:**

C
cheng 已提交
4014 4015 4016
| 参数名   | 类型                                                         | 必填 | 说明                           |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------ |
| callback | AsyncCallback\<Array\<[AVControlCommandType](#avcontrolcommandtype10)\>\> | 是   | 回调函数,返回有效命令的集合。 |
4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600103  | The session controller does not exist. |

**示例:**
C
cheng 已提交
4028

4029
```js
C
cheng 已提交
4030
controller.getValidCommands(function (err, validCommands) {
4031
    if (err) {
C
cheng 已提交
4032
        console.info(`GetValidCommands BusinessError: code: ${err.code}, message: ${err.message}`);
4033
    } else {
C
cheng 已提交
4034
        console.info(`GetValidCommands : SUCCESS : size : ${validCommands.length}`);
4035 4036 4037 4038
    }
});
```

C
cheng 已提交
4039
### sendControlCommand<sup>10+</sup>
4040

C
cheng 已提交
4041
sendControlCommand(command: AVControlCommand): Promise\<void>
4042

C
cheng 已提交
4043 4044 4045 4046 4047
通过控制器发送命令到其对应的会话。结果通过Promise异步回调方式返回。

> **说明:**
>
> 媒体控制方在使用sendControlCommand命令前,需要确保控制对应的媒体会话注册了对应的监听,注册媒体会话相关监听的方法请参见接口[注册媒体会话相关监听](#onplaypausestopplaynextplaypreviousfastforwardrewind10)。
4048 4049 4050

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

C
cheng 已提交
4051 4052 4053 4054 4055 4056
**参数:**

| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| command | [AVControlCommand](#avcontrolcommand10) | 是   | 会话的相关命令和命令相关参数。 |

4057 4058
**返回值:**

C
cheng 已提交
4059 4060 4061
| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
4062 4063 4064 4065 4066 4067 4068 4069 4070

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
| 6600103  | The session controller does not exist. |
C
cheng 已提交
4071 4072 4073
| 6600105  | Invalid session command. |
| 6600106  | The session is not activated. |
| 6600107  | Too many commands or events. |
4074 4075

**示例:**
C
cheng 已提交
4076

4077
```js
C
cheng 已提交
4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090
let avCommand = {command:'play'};
// let avCommand = {command:'pause'};
// let avCommand = {command:'stop'};
// let avCommand = {command:'playNext'};
// let avCommand = {command:'playPrevious'};
// let avCommand = {command:'fastForward'};
// let avCommand = {command:'rewind'};
// let avCommand = {command:'seek', parameter:10};
// let avCommand = {command:'setSpeed', parameter:2.6};
// let avCommand = {command:'setLoopMode', parameter:avSession.LoopMode.LOOP_MODE_SINGLE};
// let avCommand = {command:'toggleFavorite', parameter:"false"};
controller.sendControlCommand(avCommand).then(() => {
    console.info(`SendControlCommand successfully`);
4091
}).catch((err) => {
C
cheng 已提交
4092
    console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
4093 4094 4095
});
```

C
cheng 已提交
4096
### sendControlCommand<sup>10+</sup>
4097

C
cheng 已提交
4098
sendControlCommand(command: AVControlCommand, callback: AsyncCallback\<void>): void
4099

C
cheng 已提交
4100 4101 4102 4103 4104
通过会话控制器发送命令到其对应的会话。结果通过callback异步回调方式返回。

> **说明:**
>
> 媒体控制方在使用sendControlCommand命令前,需要确保控制对应的媒体会话注册了对应的监听,注册媒体会话相关监听的方法请参见接口[注册媒体会话相关监听](#onplaypausestopplaynextplaypreviousfastforwardrewind10)。
4105 4106 4107 4108 4109

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

**参数:**

C
cheng 已提交
4110 4111 4112 4113
| 参数名   | 类型                                  | 必填 | 说明                           |
| -------- | ------------------------------------- | ---- | ------------------------------ |
| command  | [AVControlCommand](#avcontrolcommand10) | 是   | 会话的相关命令和命令相关参数。 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。                     |
4114 4115 4116 4117 4118

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4119 4120 4121 4122 4123 4124 4125
| -------- | ------------------------------- |
| 6600101  | Session service exception.                |
| 6600102  | The session does not exist.     |
| 6600103  | The session controller does not exist.   |
| 6600105  | Invalid session command.           |
| 6600106  | The session is not activated.                |
| 6600107  | Too many commands or events.      |
4126 4127

**示例:**
C
cheng 已提交
4128

4129
```js
C
cheng 已提交
4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141
let avCommand = {command:'play'};
// let avCommand = {command:'pause'};
// let avCommand = {command:'stop'};
// let avCommand = {command:'playNext'};
// let avCommand = {command:'playPrevious'};
// let avCommand = {command:'fastForward'};
// let avCommand = {command:'rewind'};
// let avCommand = {command:'seek', parameter:10};
// let avCommand = {command:'setSpeed', parameter:2.6};
// let avCommand = {command:'setLoopMode', parameter:avSession.LoopMode.LOOP_MODE_SINGLE};
// let avCommand = {command:'toggleFavorite', parameter:"false"};
controller.sendControlCommand(avCommand, function (err) {
4142
    if (err) {
C
cheng 已提交
4143
        console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
4144
    } else {
C
cheng 已提交
4145
        console.info(`SendControlCommand successfully`);
4146 4147 4148 4149
    }
});
```

C
cheng 已提交
4150
### sendCommonCommand<sup>10+</sup>
4151

C
cheng 已提交
4152
sendCommonCommand(command: string, args: {[key: string]: Object}): Promise\<void>
4153

C
cheng 已提交
4154
通过会话控制器发送自定义控制命令到其对应的会话。结果通过Promise异步回调方式返回。
4155 4156 4157 4158 4159

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

**参数:**

C
cheng 已提交
4160 4161 4162 4163 4164 4165 4166
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| command | string | 是   | 需要设置的自定义控制命令的名称 |
| args | {[key: string]: any} | 是   | 需要传递的控制命令键值对 |

> **说明:**
> 参数args支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。
4167 4168 4169

**返回值:**

C
cheng 已提交
4170 4171 4172
| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
4173 4174 4175 4176 4177 4178 4179 4180

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |
| 6600102  | The session does not exist. |
H
houyu 已提交
4181
| 6600103  | The session controller does not exist. |
C
cheng 已提交
4182 4183 4184
| 6600105  | Invalid session command. |
| 6600106  | The session is not activated. |
| 6600107  | Too many commands or events. |
4185 4186 4187 4188

**示例:**

```js
C
cheng 已提交
4189 4190 4191 4192 4193 4194 4195
let commandName = "my_command";
let args = {
    command : "This is my command"
}
await controller.sendCommonCommand(commandName, args).catch((err) => {
    console.info(`SendCommonCommand BusinessError: code: ${err.code}, message: ${err.message}`);
})
4196 4197
```

C
cheng 已提交
4198
### sendCommonCommand<sup>10+</sup>
4199

C
cheng 已提交
4200
sendCommonCommand(command: string, args: {[key: string]: Object}, callback: AsyncCallback\<void>): void
4201

C
cheng 已提交
4202
通过会话控制器发送自定义命令到其对应的会话。结果通过callback异步回调方式返回。
4203 4204 4205 4206 4207

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

**参数:**

C
cheng 已提交
4208 4209 4210 4211 4212 4213 4214 4215
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| command | string | 是   | 需要设置的自定义控制命令的名称 |
| args | {[key: string]: any} | 是   | 需要传递的控制命令键值对 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。                     |

> **说明:**
> 参数args支持的数据类型有:字符串、数字、布尔、对象、数组和文件描述符等,详细介绍请参见[@ohos.app.ability.Want(Want)](./js-apis-app-ability-want.md)。
4216 4217 4218 4219 4220

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4221 4222 4223 4224 4225 4226 4227
| -------- | ------------------------------- |
| 6600101  | Session service exception.                |
| 6600102  | The session does not exist.     |
| 6600103  | The session controller does not exist.   |
| 6600105  | Invalid session command.           |
| 6600106  | The session is not activated.                |
| 6600107  | Too many commands or events.      |
4228 4229 4230 4231

**示例:**

```js
C
cheng 已提交
4232 4233 4234 4235 4236 4237 4238
let commandName = "my_command";
let args = {
    command : "This is my command"
}
controller.sendCommonCommand(commandName, args, (err) => {
    if(err) {
        console.info(`SendCommonCommand BusinessError: code: ${err.code}, message: ${err.message}`);
4239
    }
C
cheng 已提交
4240
})
4241 4242
```

C
cheng 已提交
4243
### on('metadataChange')<sup>10+</sup>
L
leiiyb 已提交
4244

C
cheng 已提交
4245
on(type: 'metadataChange', filter: Array\<keyof AVMetadata> | 'all', callback: (data: AVMetadata) => void)
L
leiiyb 已提交
4246

C
cheng 已提交
4247
设置元数据变化的监听事件。
L
leiiyb 已提交
4248 4249 4250

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

C
cheng 已提交
4251
**参数:**
L
leiiyb 已提交
4252

C
cheng 已提交
4253 4254 4255 4256 4257
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'metadataChange'`:当元数据变化时,触发该事件。 |
| filter   | Array\<keyof&nbsp;[AVMetadata](#avmetadata10)\>&nbsp;&#124;&nbsp;'all' | 是   | 'all' 表示关注元数据所有字段变化;Array<keyof&nbsp;[AVMetadata](#avmetadata10)\> 表示关注Array中的字段变化。 |
| callback | (data: [AVMetadata](#avmetadata10)) => void                    | 是   | 回调函数,参数data是变化后的元数据。                         |
L
leiiyb 已提交
4258 4259

**错误码:**
4260
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4261 4262

| 错误码ID | 错误信息 |
C
cheng 已提交
4263
| -------- | ------------------------------ |
L
leiiyb 已提交
4264 4265
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4266 4267

**示例:**
C
cheng 已提交
4268

L
leiiyb 已提交
4269
```js
C
cheng 已提交
4270 4271 4272 4273 4274 4275 4276
controller.on('metadataChange', 'all', (metadata) => {
    console.info(`on metadataChange assetId : ${metadata.assetId}`);
});

let metaFilter = ['assetId', 'title', 'description'];
controller.on('metadataChange', metaFilter, (metadata) => {
    console.info(`on metadataChange assetId : ${metadata.assetId}`);
L
leiiyb 已提交
4277 4278 4279
});
```

C
cheng 已提交
4280
### on('playbackStateChange')<sup>10+</sup>
L
leiiyb 已提交
4281

C
cheng 已提交
4282
on(type: 'playbackStateChange', filter: Array\<keyof AVPlaybackState> | 'all', callback: (state: AVPlaybackState) => void)
L
leiiyb 已提交
4283

C
cheng 已提交
4284
设置播放状态变化的监听事件。
L
leiiyb 已提交
4285 4286 4287 4288 4289

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

**参数:**

C
cheng 已提交
4290 4291 4292 4293 4294
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'playbackStateChange'`:当播放状态变化时,触发该事件。 |
| filter   | Array\<keyof&nbsp;[AVPlaybackState](#avplaybackstate10)\>&nbsp;&#124;&nbsp;'all' | 是   | 'all' 表示关注播放状态所有字段变化;Array<keyof&nbsp;[AVPlaybackState](#avplaybackstate10)\> 表示关注Array中的字段变化。 |
| callback | (state: [AVPlaybackState](#avplaybackstate10)) => void         | 是   | 回调函数,参数state是变化后的播放状态。                      |
L
leiiyb 已提交
4295 4296

**错误码:**
4297
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4298 4299

| 错误码ID | 错误信息 |
C
cheng 已提交
4300
| -------- | ------------------------------ |
L
leiiyb 已提交
4301 4302
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4303 4304

**示例:**
C
cheng 已提交
4305

L
leiiyb 已提交
4306
```js
C
cheng 已提交
4307 4308 4309 4310 4311 4312 4313
controller.on('playbackStateChange', 'all', (playbackState) => {
    console.info(`on playbackStateChange state : ${playbackState.state}`);
});

let playbackFilter = ['state', 'speed', 'loopMode'];
controller.on('playbackStateChange', playbackFilter, (playbackState) => {
    console.info(`on playbackStateChange state : ${playbackState.state}`);
L
leiiyb 已提交
4314 4315 4316
});
```

C
cheng 已提交
4317
### on('sessionEvent')<sup>10+</sup>
L
leiiyb 已提交
4318

C
cheng 已提交
4319
on(type: 'sessionEvent', callback: (sessionEvent: string, args: {[key:string]: Object}) => void): void
L
leiiyb 已提交
4320

C
cheng 已提交
4321
媒体控制器设置会话自定义事件变化的监听器。
L
leiiyb 已提交
4322 4323 4324

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

C
cheng 已提交
4325
**参数:**
L
leiiyb 已提交
4326

C
cheng 已提交
4327 4328 4329 4330
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'sessionEvent'`:当会话事件变化时,触发该事件。 |
| callback | (sessionEvent: string, args: {[key:string]: object}) => void         | 是   | 回调函数,sessionEvent为变化的会话事件名,args为事件的参数。          |
L
leiiyb 已提交
4331 4332

**错误码:**
4333
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4334 4335

| 错误码ID | 错误信息 |
C
cheng 已提交
4336
| -------- | ------------------------------ |
L
leiiyb 已提交
4337 4338
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4339 4340

**示例:**
C
cheng 已提交
4341

L
leiiyb 已提交
4342
```js
C
cheng 已提交
4343 4344
controller.on('sessionEvent', (sessionEvent, args) => {
    console.info(`OnSessionEvent, sessionEvent is ${sessionEvent}, args: ${JSON.stringify(args)}`);
L
leiiyb 已提交
4345 4346 4347
});
```

C
cheng 已提交
4348
### on('queueItemsChange')<sup>10+</sup>
L
leiiyb 已提交
4349

C
cheng 已提交
4350
on(type: 'queueItemsChange', callback: (items: Array<[AVQueueItem](#avqueueitem10)\>) => void): void
L
leiiyb 已提交
4351

C
cheng 已提交
4352
媒体控制器设置会话自定义播放列表变化的监听器。
L
leiiyb 已提交
4353 4354 4355 4356 4357

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

**参数:**

C
cheng 已提交
4358 4359 4360 4361
| 参数名   | 类型                                                   | 必填 | 说明                                                                         |
| -------- | ----------------------------------------------------- | ---- | ---------------------------------------------------------------------------- |
| type     | string                                                | 是   | 事件回调类型,支持事件`'queueItemsChange'`:当session修改播放列表时,触发该事件。 |
| callback | (items: Array<[AVQueueItem](#avqueueitem10)\>) => void  | 是   | 回调函数,items为变化的播放列表。                            |
L
leiiyb 已提交
4362 4363

**错误码:**
4364
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4365 4366

| 错误码ID | 错误信息 |
C
cheng 已提交
4367
| -------- | ------------------------------ |
L
leiiyb 已提交
4368 4369
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4370 4371 4372 4373

**示例:**

```js
C
cheng 已提交
4374 4375
controller.on('queueItemsChange', (items) => {
    console.info(`OnQueueItemsChange, items length is ${items.length}`);
L
leiiyb 已提交
4376 4377 4378
});
```

C
cheng 已提交
4379
### on('queueTitleChange')<sup>10+</sup>
4380

C
cheng 已提交
4381
on(type: 'queueTitleChange', callback: (title: string) => void): void
4382

C
cheng 已提交
4383
媒体控制器设置会话自定义播放列表的名称变化的监听器。
4384 4385 4386

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

C
cheng 已提交
4387
**参数:**
4388

C
cheng 已提交
4389 4390 4391 4392
| 参数名   | 类型                     | 必填 | 说明                                                                             |
| -------- | ----------------------- | ---- | ------------------------------------------------------------------------------- |
| type     | string                  | 是   | 事件回调类型,支持事件`'queueTitleChange'`:当session修改播放列表名称时,触发该事件。 |
| callback | (title: string) => void | 是   | 回调函数,title为变化的播放列表名称。                                |
4393 4394 4395 4396 4397

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4398
| -------- | ------------------------------ |
4399 4400 4401 4402
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |

**示例:**
C
cheng 已提交
4403

4404
```js
C
cheng 已提交
4405 4406
controller.on('queueTitleChange', (title) => {
    console.info(`queueTitleChange, title is ${title}`);
4407 4408 4409
});
```

C
cheng 已提交
4410
### on('extrasChange')<sup>10+</sup>
4411

C
cheng 已提交
4412
on(type: 'extrasChange', callback: (extras: {[key:string]: Object}) => void): void
4413

C
cheng 已提交
4414
媒体控制器设置自定义媒体数据包事件变化的监听器。
4415 4416 4417 4418 4419

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

**参数:**

C
cheng 已提交
4420 4421 4422 4423
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'extrasChange'`:当媒体提供方设置自定义媒体数据包时,触发该事件。 |
| callback | (extras: {[key:string]: object}) => void         | 是   | 回调函数,extras为媒体提供方新设置的自定义媒体数据包,该自定义媒体数据包与dispatchSessionEvent方法设置的数据包完全一致。          |
4424 4425 4426 4427 4428

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4429
| -------- | ------------------------------ |
4430 4431
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
C
cheng 已提交
4432
| 401      | Parameter check failed                 |
4433 4434

**示例:**
C
cheng 已提交
4435

4436
```js
C
cheng 已提交
4437 4438
controller.on('extrasChange', (extras) => {
    console.info(`Caught extrasChange event,the new extra is: ${JSON.stringify(extras)}`);
4439 4440 4441
});
```

C
cheng 已提交
4442
### on('sessionDestroy')<sup>10+</sup>
L
leiiyb 已提交
4443

C
cheng 已提交
4444
on(type: 'sessionDestroy', callback: () => void)
L
leiiyb 已提交
4445

C
cheng 已提交
4446
会话销毁的监听事件。
L
leiiyb 已提交
4447 4448 4449 4450 4451

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

**参数:**

C
cheng 已提交
4452 4453 4454 4455
| 参数名   | 类型       | 必填 | 说明                                                         |
| -------- | ---------- | ---- | ------------------------------------------------------------ |
| type     | string     | 是   | 事件回调类型,支持事件`'sessionDestroy'`:当检测到会话销毁时,触发该事件)。 |
| callback | () => void | 是   | 回调函数。当监听事件注册成功,err为undefined,否则为错误对象。                  |
L
leiiyb 已提交
4456 4457

**错误码:**
4458
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4459 4460

| 错误码ID | 错误信息 |
C
cheng 已提交
4461
| -------- | ------------------------------ |
L
leiiyb 已提交
4462 4463
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4464 4465 4466 4467

**示例:**

```js
C
cheng 已提交
4468 4469
controller.on('sessionDestroy', () => {
    console.info(`on sessionDestroy : SUCCESS `);
L
leiiyb 已提交
4470 4471 4472
});
```

C
cheng 已提交
4473
### on('activeStateChange')<sup>10+</sup>
L
leiiyb 已提交
4474

C
cheng 已提交
4475
on(type: 'activeStateChange', callback: (isActive: boolean) => void)
L
leiiyb 已提交
4476

C
cheng 已提交
4477
会话的激活状态的监听事件。
L
leiiyb 已提交
4478 4479 4480 4481 4482

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

**参数:**

C
cheng 已提交
4483 4484 4485 4486
| 参数名   | 类型                        | 必填 | 说明                                                         |
| -------- | --------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                      | 是   | 事件回调类型,支持事件`'activeStateChange'`:当检测到会话的激活状态发生改变时,触发该事件。 |
| callback | (isActive: boolean) => void | 是   | 回调函数。参数isActive表示会话是否被激活。true表示被激活,false表示禁用。                   |
L
leiiyb 已提交
4487 4488

**错误码:**
4489
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4490 4491

| 错误码ID | 错误信息 |
C
cheng 已提交
4492
| -------- | ----------------------------- |
L
leiiyb 已提交
4493
| 6600101  | Session service exception. |
C
cheng 已提交
4494
| 6600103  |The session controller does not exist. |
L
leiiyb 已提交
4495 4496 4497 4498

**示例:**

```js
C
cheng 已提交
4499 4500
controller.on('activeStateChange', (isActive) => {
    console.info(`on activeStateChange : SUCCESS : isActive ${isActive}`);
L
leiiyb 已提交
4501 4502 4503
});
```

C
cheng 已提交
4504
### on('validCommandChange')<sup>10+</sup>
L
leiiyb 已提交
4505

C
cheng 已提交
4506
on(type: 'validCommandChange', callback: (commands: Array\<AVControlCommandType>) => void)
L
leiiyb 已提交
4507

C
cheng 已提交
4508
会话支持的有效命令变化监听事件。
L
leiiyb 已提交
4509 4510 4511

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

C
cheng 已提交
4512
**参数:**
L
leiiyb 已提交
4513

C
cheng 已提交
4514 4515 4516 4517
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'validCommandChange'`:当检测到会话的合法命令发生改变时,触发该事件。 |
| callback | (commands: Array<[AVControlCommandType](#avcontrolcommandtype10)\>) => void | 是   | 回调函数。参数commands是有效命令的集合。                     |
L
leiiyb 已提交
4518 4519

**错误码:**
4520
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4521 4522

| 错误码ID | 错误信息 |
C
cheng 已提交
4523
| -------- | ------------------------------ |
L
leiiyb 已提交
4524 4525
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4526 4527 4528 4529

**示例:**

```js
C
cheng 已提交
4530 4531 4532
controller.on('validCommandChange', (validCommands) => {
    console.info(`validCommandChange : SUCCESS : size : ${validCommands.size}`);
    console.info(`validCommandChange : SUCCESS : validCommands : ${validCommands.values()}`);
L
leiiyb 已提交
4533 4534 4535
});
```

C
cheng 已提交
4536
### on('outputDeviceChange')<sup>10+</sup>
L
leiiyb 已提交
4537

C
cheng 已提交
4538
on(type: 'outputDeviceChange', callback: (state: ConnectionState, device: OutputDeviceInfo) => void): void
L
leiiyb 已提交
4539

C
cheng 已提交
4540
设置播放设备变化的监听事件。
L
leiiyb 已提交
4541 4542 4543 4544 4545

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

**参数:**

C
cheng 已提交
4546 4547 4548 4549
| 参数名   | 类型                                                    | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                                  | 是   | 事件回调类型,支持事件为`'outputDeviceChange'`:当播放设备变化时,触发该事件)。 |
| callback | (state: [ConnectionState](#connectionstate10), device: [OutputDeviceInfo](#outputdeviceinfo10)) => void | 是   | 回调函数,参数device是设备相关信息。                         |
L
leiiyb 已提交
4550 4551

**错误码:**
4552
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4553 4554

| 错误码ID | 错误信息 |
C
cheng 已提交
4555
| -------- | ----------------------- |
L
leiiyb 已提交
4556 4557
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4558 4559 4560 4561

**示例:**

```js
C
cheng 已提交
4562 4563
controller.on('outputDeviceChange', (state, device) => {
    console.info(`on outputDeviceChange state: ${state}, device : ${device}`);
L
leiiyb 已提交
4564 4565 4566
});
```

C
cheng 已提交
4567
### off('metadataChange')<sup>10+</sup>
L
leiiyb 已提交
4568

C
cheng 已提交
4569
off(type: 'metadataChange', callback?: (data: AVMetadata) => void)
L
leiiyb 已提交
4570

C
cheng 已提交
4571
媒体控制器取消监听元数据变化的事件。
L
leiiyb 已提交
4572 4573 4574

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

C
cheng 已提交
4575
**参数:**
L
leiiyb 已提交
4576

C
cheng 已提交
4577 4578 4579 4580
| 参数名   | 类型                                               | 必填 | 说明                                                    |
| -------- | ------------------------------------------------ | ---- | ------------------------------------------------------ |
| type     | string                                           | 是   | 取消对应的监听事件,支持事件`'metadataChange'`。         |
| callback | (data: [AVMetadata](#avmetadata10)) => void        | 否   | 回调函数,参数data是变化后的元数据。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                         |
L
leiiyb 已提交
4581 4582

**错误码:**
4583
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4584 4585

| 错误码ID | 错误信息 |
C
cheng 已提交
4586
| -------- | ---------------- |
L
leiiyb 已提交
4587 4588
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4589 4590 4591 4592

**示例:**

```js
C
cheng 已提交
4593
controller.off('metadataChange');
L
leiiyb 已提交
4594 4595
```

C
cheng 已提交
4596
### off('playbackStateChange')<sup>10+</sup>
L
leiiyb 已提交
4597

C
cheng 已提交
4598
off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void)
L
leiiyb 已提交
4599

C
cheng 已提交
4600
媒体控制器取消监听播放状态变化的事件。
L
leiiyb 已提交
4601 4602 4603

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

C
cheng 已提交
4604
**参数:**
L
leiiyb 已提交
4605

C
cheng 已提交
4606 4607 4608 4609
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'playbackStateChange'`。    |
| callback | (state: [AVPlaybackState](#avplaybackstate10)) => void         | 否   | 回调函数,参数state是变化后的播放状态。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                      |
L
leiiyb 已提交
4610 4611

**错误码:**
4612
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4613 4614

| 错误码ID | 错误信息 |
C
cheng 已提交
4615
| -------- | ---------------- |
L
leiiyb 已提交
4616 4617
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4618 4619 4620

**示例:**

C
cheng 已提交
4621 4622
```js
controller.off('playbackStateChange');
L
leiiyb 已提交
4623 4624
```

C
cheng 已提交
4625
### off('sessionEvent')<sup>10+</sup>
L
leiiyb 已提交
4626

C
cheng 已提交
4627
off(type: 'sessionEvent', callback?: (sessionEvent: string, args: {[key:string]: Obejct}) => void): void
L
leiiyb 已提交
4628

C
cheng 已提交
4629
媒体控制器取消监听会话事件的变化通知。
L
leiiyb 已提交
4630 4631 4632 4633 4634

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

**参数:**

C
cheng 已提交
4635 4636 4637 4638
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'sessionEvent'`。    |
| callback | (sessionEvent: string, args: {[key:string]: object}) => void         | 否   | 回调函数,参数sessionEvent是变化的事件名,args为事件的参数。<br>该参数为可选参数,若不填写该参数,则认为取消所有对sessionEvent事件的监听。                      |
L
leiiyb 已提交
4639 4640

**错误码:**
4641
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4642 4643

| 错误码ID | 错误信息 |
C
cheng 已提交
4644
| -------- | ---------------- |
L
leiiyb 已提交
4645 4646
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4647 4648 4649 4650

**示例:**

```js
C
cheng 已提交
4651
controller.off('sessionEvent');
L
leiiyb 已提交
4652 4653
```

C
cheng 已提交
4654
### off('queueItemsChange')<sup>10+</sup>
L
leiiyb 已提交
4655

C
cheng 已提交
4656
off(type: 'queueItemsChange', callback?: (items: Array<[AVQueueItem](#avqueueitem10)\>) => void): void
L
leiiyb 已提交
4657

C
cheng 已提交
4658
媒体控制器取消监听播放列表变化的事件。
L
leiiyb 已提交
4659 4660 4661

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

C
cheng 已提交
4662
**参数:**
L
leiiyb 已提交
4663

C
cheng 已提交
4664 4665 4666 4667
| 参数名    | 类型                                                 | 必填 | 说明                                                                                                |
| -------- | ---------------------------------------------------- | ---- | --------------------------------------------------------------------------------------------------- |
| type     | string                                               | 是   | 取消对应的监听事件,支持事件`'queueItemsChange'`。                                                     |
| callback | (items: Array<[AVQueueItem](#avqueueitem10)\>) => void | 否   | 回调函数,参数items是变化的播放列表。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
L
leiiyb 已提交
4668 4669

**错误码:**
4670
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4671 4672

| 错误码ID | 错误信息 |
C
cheng 已提交
4673
| -------- | ---------------- |
L
leiiyb 已提交
4674 4675
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4676 4677 4678 4679

**示例:**

```js
C
cheng 已提交
4680
controller.off('queueItemsChange');
L
leiiyb 已提交
4681 4682
```

C
cheng 已提交
4683
### off('queueTitleChange')<sup>10+</sup>
L
leiiyb 已提交
4684

C
cheng 已提交
4685
off(type: 'queueTitleChange', callback?: (title: string) => void): void
L
leiiyb 已提交
4686

C
cheng 已提交
4687
媒体控制器取消监听播放列表名称变化的事件。
L
leiiyb 已提交
4688 4689 4690 4691 4692

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

**参数:**

C
cheng 已提交
4693 4694 4695 4696
| 参数名    | 类型                    | 必填 | 说明                                                                                                    |
| -------- | ----------------------- | ---- | ------------------------------------------------------------------------------------------------------- |
| type     | string                  | 是   | 取消对应的监听事件,支持事件`'queueTitleChange'`。                                                         |
| callback | (title: string) => void | 否   | 回调函数,参数items是变化的播放列表名称。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。 |
L
leiiyb 已提交
4697 4698

**错误码:**
4699
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4700 4701

| 错误码ID | 错误信息 |
C
cheng 已提交
4702
| -------- | ---------------- |
L
leiiyb 已提交
4703 4704
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4705 4706 4707 4708

**示例:**

```js
C
cheng 已提交
4709
controller.off('queueTitleChange');
L
leiiyb 已提交
4710 4711
```

C
cheng 已提交
4712
### off('extrasChange')<sup>10+</sup>
L
leiiyb 已提交
4713

C
cheng 已提交
4714
off(type: 'extrasChange', callback?: (extras: {[key:string]: Object}) => void): void
L
leiiyb 已提交
4715

C
cheng 已提交
4716
媒体控制器取消监听自定义媒体数据包变化事件。
L
leiiyb 已提交
4717 4718 4719

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

C
cheng 已提交
4720
**参数:**
L
leiiyb 已提交
4721

C
cheng 已提交
4722 4723 4724 4725
| 参数名    | 类型                    | 必填 | 说明                                                                                                    |
| -------- | ----------------------- | ---- | ------------------------------------------------------------------------------------------------------- |
| type     | string                  | 是   | 取消对应的监听事件,支持事件`'extrasChange'`。                                                         |
| callback | ({[key:string]: Object}) => void | 否   | 注册监听事件时的回调函数。<br>该参数为可选参数,若不填写该参数,则认为取消会话所有与此事件相关的监听。 |
L
leiiyb 已提交
4726 4727

**错误码:**
4728
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4729 4730

| 错误码ID | 错误信息 |
C
cheng 已提交
4731 4732
| -------- | ----------------                       |
| 6600101  | Session service exception.             |
L
leiiyb 已提交
4733
| 6600103  | The session controller does not exist. |
C
cheng 已提交
4734
| 401      | Parameter check failed                 |
L
leiiyb 已提交
4735 4736 4737 4738

**示例:**

```js
C
cheng 已提交
4739
controller.off('extrasChange');
L
leiiyb 已提交
4740 4741
```

C
cheng 已提交
4742
### off('sessionDestroy')<sup>10+</sup>
L
leiiyb 已提交
4743

C
cheng 已提交
4744
off(type: 'sessionDestroy', callback?: () => void)
L
leiiyb 已提交
4745

C
cheng 已提交
4746
媒体控制器取消监听会话的销毁事件。
L
leiiyb 已提交
4747 4748 4749 4750 4751

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

**参数:**

C
cheng 已提交
4752 4753 4754 4755
| 参数名   | 类型       | 必填 | 说明                                                      |
| -------- | ---------- | ---- | ----------------------------------------------------- |
| type     | string     | 是   | 取消对应的监听事件,支持事件`'sessionDestroy'`。         |
| callback | () => void | 否   | 回调函数。当监听事件取消成功,err为undefined,否则返回错误对象。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                                               |
L
leiiyb 已提交
4756 4757

**错误码:**
4758
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4759 4760

| 错误码ID | 错误信息 |
C
cheng 已提交
4761
| -------- | ---------------- |
L
leiiyb 已提交
4762 4763
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4764 4765 4766 4767

**示例:**

```js
C
cheng 已提交
4768
controller.off('sessionDestroy');
L
leiiyb 已提交
4769 4770
```

C
cheng 已提交
4771
### off('activeStateChange')<sup>10+</sup>
L
leiiyb 已提交
4772

C
cheng 已提交
4773
off(type: 'activeStateChange', callback?: (isActive: boolean) => void)
L
leiiyb 已提交
4774

C
cheng 已提交
4775
媒体控制器取消监听会话激活状态变化的事件。
L
liyuhang 已提交
4776

L
leiiyb 已提交
4777 4778 4779 4780
**系统能力:** SystemCapability.Multimedia.AVSession.Core

**参数:**

C
cheng 已提交
4781 4782 4783 4784
| 参数名   | 类型                        | 必填 | 说明                                                      |
| -------- | --------------------------- | ---- | ----------------------------------------------------- |
| type     | string                      | 是   | 取消对应的监听事件,支持事件`'activeStateChange'`。      |
| callback | (isActive: boolean) => void | 否   | 回调函数。参数isActive表示会话是否被激活。true表示被激活,false表示禁用。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                   |
L
leiiyb 已提交
4785 4786

**错误码:**
4787
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4788 4789

| 错误码ID | 错误信息 |
C
cheng 已提交
4790
| -------- | ---------------- |
L
leiiyb 已提交
4791 4792
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4793 4794 4795 4796

**示例:**

```js
C
cheng 已提交
4797
controller.off('activeStateChange');
L
leiiyb 已提交
4798 4799
```

C
cheng 已提交
4800
### off('validCommandChange')<sup>10+</sup>
L
leiiyb 已提交
4801

C
cheng 已提交
4802
off(type: 'validCommandChange', callback?: (commands: Array\<AVControlCommandType>) => void)
L
leiiyb 已提交
4803

C
cheng 已提交
4804
媒体控制器取消监听会话有效命令变化的事件。
L
liyuhang 已提交
4805

L
leiiyb 已提交
4806 4807 4808 4809
**系统能力:** SystemCapability.Multimedia.AVSession.Core

**参数:**

C
cheng 已提交
4810 4811 4812 4813
| 参数名   | 类型                                                         | 必填 | 说明                                                        |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'validCommandChange'`。         |
| callback | (commands: Array<[AVControlCommandType](#avcontrolcommandtype10)\>) => void | 否   | 回调函数。参数commands是有效命令的集合。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。          |
L
leiiyb 已提交
4814 4815

**错误码:**
4816
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4817

C
cheng 已提交
4818 4819 4820 4821
| 错误码ID | 错误信息           |
| -------- | ---------------- |
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4822 4823 4824 4825

**示例:**

```js
C
cheng 已提交
4826
controller.off('validCommandChange');
L
leiiyb 已提交
4827 4828
```

C
cheng 已提交
4829
### off('outputDeviceChange')<sup>10+</sup>
4830

C
cheng 已提交
4831
off(type: 'outputDeviceChange', callback?: (state: ConnectionState, device: OutputDeviceInfo) => void): void
4832

C
cheng 已提交
4833
媒体控制器取消监听分布式设备变化的事件。
4834 4835 4836 4837 4838

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

**参数:**

C
cheng 已提交
4839 4840 4841 4842
| 参数名   | 类型                                                    | 必填 | 说明                                                      |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------ |
| type     | string                                                  | 是   | 取消对应的监听事件,支持事件`'outputDeviceChange'`。      |
| callback | (state: [ConnectionState](#connectionstate10), device: [OutputDeviceInfo](#outputdeviceinfo10)) => void | 否   | 回调函数,参数device是设备相关信息。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                         |
4843 4844 4845 4846

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

C
cheng 已提交
4847 4848
| 错误码ID  | 错误信息          |
| -------- | ---------------- |
4849 4850 4851 4852
| 6600101  | Session service exception. |

**示例:**

C
cheng 已提交
4853 4854
```js
controller.off('outputDeviceChange');
4855 4856
```

C
cheng 已提交
4857
## AVCastController<sup>10+</sup>
4858

C
cheng 已提交
4859
在投播建立后,调用[avSession.getAVCastController](#getavcastcontroller10)后,返回会话控制器实例。控制器可查看会话ID,并可完成对会话发送命令及事件,获取会话元数据,播放状态信息等操作。
4860 4861


C
cheng 已提交
4862
### getAVPlaybackState<sup>10+</sup>
4863

C
cheng 已提交
4864
getAVPlaybackState(callback: AsyncCallback<AVPlaybackState>): void
4865

C
cheng 已提交
4866
设备建立连接后,获取投播控制器。结果通过callback异步回调方式返回。
4867

C
cheng 已提交
4868 4869 4870 4871 4872 4873 4874
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**参数:**

| 参数名    | 类型                                                        | 必填 | 说明                                                         |
| --------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| callback  | AsyncCallback<[[AVPlaybackState](#avplaybackstate10))\> | 是   | 回调函数,返回投播控制器实例。 |
4875

4876 4877 4878 4879
**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4880 4881 4882
| -------- | ---------------------------------------- |
| 6600102  | The session does not exist. |
| 6600110  | The remote connection is not established. |
4883 4884 4885 4886

**示例:**

```js
C
cheng 已提交
4887 4888 4889 4890 4891 4892 4893
let controller;
session.getAVCastController().then((avcontroller) => {
    controller = avcontroller;
    console.info(`getAVCastController : SUCCESS : sessionid : ${controller.sessionId}`);
}).catch((err) => {
    console.info(`getAVCastController BusinessError: code: ${err.code}, message: ${err.message}`);
});
4894 4895
```

C
cheng 已提交
4896
### getAVPlaybackState<sup>10+</sup>
L
leiiyb 已提交
4897

C
cheng 已提交
4898
getAVPlaybackState(): Promise<getAVPlaybackState>;
L
leiiyb 已提交
4899

C
cheng 已提交
4900
获取当前的远端播放状态。结果通过callback异步回调方式返回。
L
leiiyb 已提交
4901

C
cheng 已提交
4902
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
4903

C
cheng 已提交
4904
**返回值:**
L
leiiyb 已提交
4905

C
cheng 已提交
4906 4907 4908
| 类型                                                        | 说明                                                         |
| --------- | ------------------------------------------------------------ |
| Promise<[AVPlaybackState](#avplaybackstate10)\>  | Promise对象。返回投播控制器实例。 |
L
leiiyb 已提交
4909 4910

**错误码:**
4911
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4912 4913

| 错误码ID | 错误信息 |
C
cheng 已提交
4914 4915 4916
| -------- | ---------------------------------------- |
| 6600102  | The session does not exist. |
| 6600110  | The remote connection is not established. |
L
leiiyb 已提交
4917 4918 4919 4920

**示例:**

```js
C
cheng 已提交
4921 4922 4923 4924 4925 4926 4927 4928
let controller;
session.getAVPlaybackState(function (err, avcontroller) {
    if (err) {
        console.info(`getAVCastController BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        controller = avcontroller;
        console.info(`getAVCastController : SUCCESS : sessionid : ${controller.sessionId}`);
    }
L
leiiyb 已提交
4929 4930 4931
});
```

L
liyuhang 已提交
4932
### on('playbackStateChange')<sup>10+</sup>
L
leiiyb 已提交
4933 4934 4935 4936 4937

on(type: 'playbackStateChange', filter: Array\<keyof AVPlaybackState> | 'all', callback: (state: AVPlaybackState) => void)

设置播放状态变化的监听事件。

C
cheng 已提交
4938
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
4939 4940 4941 4942 4943 4944

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'playbackStateChange'`:当播放状态变化时,触发该事件。 |
L
liyuhang 已提交
4945 4946
| filter   | Array\<keyof&nbsp;[AVPlaybackState](#avplaybackstate10)\>&nbsp;&#124;&nbsp;'all' | 是   | 'all' 表示关注播放状态所有字段变化;Array<keyof&nbsp;[AVPlaybackState](#avplaybackstate10)\> 表示关注Array中的字段变化。 |
| callback | (state: [AVPlaybackState](#avplaybackstate10)) => void         | 是   | 回调函数,参数state是变化后的播放状态。                      |
L
leiiyb 已提交
4947 4948

**错误码:**
4949
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
4950 4951 4952

| 错误码ID | 错误信息 |
| -------- | ------------------------------ |
L
leiiyb 已提交
4953 4954
| 6600101  | Session service exception. |
| 6600103  | The session controller does not exist. |
L
leiiyb 已提交
4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968

**示例:**

```js
controller.on('playbackStateChange', 'all', (playbackState) => {
    console.info(`on playbackStateChange state : ${playbackState.state}`);
});

let playbackFilter = ['state', 'speed', 'loopMode'];
controller.on('playbackStateChange', playbackFilter, (playbackState) => {
    console.info(`on playbackStateChange state : ${playbackState.state}`);
});
```

C
cheng 已提交
4969
### off('playbackStateChange')<sup>10+</sup>
4970

C
cheng 已提交
4971
off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void)
4972

C
cheng 已提交
4973
媒体控制器取消监听播放状态变化的事件。
4974

C
cheng 已提交
4975
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
4976 4977 4978

**参数:**

C
cheng 已提交
4979 4980 4981 4982
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'playbackStateChange'`。    |
| callback | (state: [AVPlaybackState](#avplaybackstate10)) => void         | 否   | 回调函数,参数state是变化后的播放状态。<br>该参数为可选参数,若不填写该参数,则认为取消所有相关会话的事件监听。                      |
4983 4984 4985 4986 4987

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
4988
| -------- | ---------------- |
4989 4990 4991 4992 4993
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
4994
controller.off('playbackStateChange');
4995 4996
```

C
cheng 已提交
4997
### on('mediaItemChange')<sup>10+</sup>
4998

C
cheng 已提交
4999
on(type: 'mediaItemChange', callback: Callback<AVQueueItem>)
5000

C
cheng 已提交
5001
设置投播当前播放媒体内容的监听事件。
5002

C
cheng 已提交
5003
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5004 5005 5006

**参数:**

C
cheng 已提交
5007 5008 5009 5010
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'mediaItemChange'`:当播放状态变化时,触发该事件。 |
| callback | (state: [AVQueueItem](#avqueueitem10)) => void         | 是   | 回调函数,参数AVQueueItem是d当前正在播放的媒体内容。                      |
5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ------------------------------ |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
5022 5023
controller.on('mediaItemChange', (item) => {
    console.info(`on mediaItemChange state : ${item.itemId}`);
5024 5025 5026
});
```

C
cheng 已提交
5027
### off('mediaItemChange')<sup>10+</sup>
5028

C
cheng 已提交
5029
off(type: 'mediaItemChange')
5030

C
cheng 已提交
5031
取消设置投播当前播放媒体内容的监听事件。
5032

C
cheng 已提交
5033
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5034 5035 5036

**参数:**

C
cheng 已提交
5037 5038 5039
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'mediaItemChange'`。    |
5040 5041

**错误码:**
5042
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
5043 5044

| 错误码ID | 错误信息 |
C
cheng 已提交
5045
| -------- | ---------------- |
5046 5047 5048 5049 5050
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
5051
controller.off('mediaItemChange');
5052 5053
```

C
cheng 已提交
5054
### on('playNext')<sup>10+</sup>
5055

C
cheng 已提交
5056
on(type: 'playNext', callback: Callback<void>)
5057

C
cheng 已提交
5058
设置播放下一首资源的监听事件。
5059

C
cheng 已提交
5060
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5061 5062 5063 5064 5065

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
C
cheng 已提交
5066 5067
| type     | string                                                       | 是   | 事件回调类型,支持事件`'playNext'`:当播放下一首状态变化时,触发该事件。 |
| callback | Callback\<void\>         | 是   | 回调函数                      |
5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
| -------- | ------------------------------ |
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
5079 5080
controller.on('playNext', () => {
    console.info(`on playNext`);
5081 5082 5083
});
```

C
cheng 已提交
5084
### off('playNext')<sup>10+</sup>
L
leiiyb 已提交
5085

C
cheng 已提交
5086
off(type: 'playNext')
L
leiiyb 已提交
5087

C
cheng 已提交
5088
取消设置播放下一首资源的监听事件。
L
leiiyb 已提交
5089

C
cheng 已提交
5090
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5091 5092 5093

**参数:**

C
cheng 已提交
5094 5095 5096
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'playNext'`。    |
L
leiiyb 已提交
5097 5098

**错误码:**
5099
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5100 5101

| 错误码ID | 错误信息 |
C
cheng 已提交
5102
| -------- | ---------------- |
L
leiiyb 已提交
5103
| 6600101  | Session service exception. |
L
leiiyb 已提交
5104 5105 5106 5107

**示例:**

```js
C
cheng 已提交
5108
controller.off('playNext');
L
leiiyb 已提交
5109 5110
```

C
cheng 已提交
5111
### on('playPrevious')<sup>10+</sup>
L
leiiyb 已提交
5112

C
cheng 已提交
5113
on(type: 'playPrevious', callback: Callback<void>)
L
leiiyb 已提交
5114

C
cheng 已提交
5115
设置播放上一首资源的监听事件。
L
leiiyb 已提交
5116

C
cheng 已提交
5117
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5118 5119 5120

**参数:**

C
cheng 已提交
5121 5122 5123 5124
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'playPrevious'`:当播放下一首状态变化时,触发该事件。 |
| callback | Callback\<void\>         | 是   | 回调函数                      |
L
leiiyb 已提交
5125 5126

**错误码:**
5127
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5128 5129

| 错误码ID | 错误信息 |
C
cheng 已提交
5130
| -------- | ------------------------------ |
L
leiiyb 已提交
5131
| 6600101  | Session service exception. |
L
leiiyb 已提交
5132 5133 5134 5135

**示例:**

```js
C
cheng 已提交
5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164
controller.on('playPrevious', () => {
    console.info(`on playPrevious`);
    // 设置播放参数,开始播放
    var playItem = {
        itemId: 0,
        description: {
        mediaId: '12345',
        mediaName: 'song1',
        mediaType: 'AUDIO',
        mediaUri: 'http://resource1_address',
        mediaSize: 12345,
        startPosition: 0,
        duration: 0,
        artist: 'mysong',
        albumTitle: 'song1_title',
        albumCoverUri: "http://resource1_album_address",
        lyricUri: "http://resource1_lyric_address",
        iconUri: "http://resource1_icon_address",
        appName: 'MyMusic'
        }
    };
    // 准备播放,这个不会触发真正的播放,会进行加载和缓冲
    controller.prepare(playItem, () => {
        console.info('prepare done');
    });
    // 启动播放
    controller.start(playItem, () => {
        console.info('play done');
    });
L
leiiyb 已提交
5165 5166 5167
});
```

C
cheng 已提交
5168
### off('playPrevious')<sup>10+</sup>
L
leiiyb 已提交
5169

C
cheng 已提交
5170
off(type: 'playPrevious')
L
leiiyb 已提交
5171

C
cheng 已提交
5172
取消设置播放下一首资源的监听事件。
L
leiiyb 已提交
5173

C
cheng 已提交
5174
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5175 5176 5177

**参数:**

C
cheng 已提交
5178 5179 5180
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'playPrevious'`。    |
L
leiiyb 已提交
5181 5182

**错误码:**
5183
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5184 5185

| 错误码ID | 错误信息 |
C
cheng 已提交
5186
| -------- | ---------------- |
L
leiiyb 已提交
5187
| 6600101  | Session service exception. |
L
leiiyb 已提交
5188 5189 5190 5191

**示例:**

```js
C
cheng 已提交
5192
controller.off('playPrevious');
L
leiiyb 已提交
5193 5194
```

C
cheng 已提交
5195
### on('seekDone')<sup>10+</sup>
L
leiiyb 已提交
5196

C
cheng 已提交
5197
on(type: 'seekDone', callback: Callback<number>)
L
leiiyb 已提交
5198

C
cheng 已提交
5199
设置seek结束的监听事件。
L
leiiyb 已提交
5200

C
cheng 已提交
5201
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5202 5203 5204

**参数:**

C
cheng 已提交
5205 5206 5207 5208
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 事件回调类型,支持事件`'seekDone'`:当seek结束时,触发该事件。 |
| callback | Callback\<number\>         | 是   | 回调函数,返回seek后播放的位置                      |
L
leiiyb 已提交
5209 5210

**错误码:**
5211
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5212 5213

| 错误码ID | 错误信息 |
C
cheng 已提交
5214
| -------- | ------------------------------ |
L
leiiyb 已提交
5215
| 6600101  | Session service exception. |
L
leiiyb 已提交
5216 5217 5218 5219

**示例:**

```js
C
cheng 已提交
5220 5221
controller.on('seekDone', (pos) => {
    console.info(`on seekDone pos:${pos} `);
L
leiiyb 已提交
5222 5223 5224
});
```

C
cheng 已提交
5225
### off('seekDone')<sup>10+</sup>
L
leiiyb 已提交
5226

C
cheng 已提交
5227
off(type: 'seekDone')
L
leiiyb 已提交
5228

C
cheng 已提交
5229
取消设置seek结束的监听事件。
L
leiiyb 已提交
5230

C
cheng 已提交
5231
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5232 5233 5234

**参数:**

C
cheng 已提交
5235 5236 5237
| 参数名   | 类型                                                         | 必填 | 说明                                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- |
| type     | string                                                       | 是   | 取消对应的监听事件,支持事件`'seekDone'`。    |
L
leiiyb 已提交
5238 5239

**错误码:**
5240
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5241 5242 5243

| 错误码ID | 错误信息 |
| -------- | ---------------- |
L
leiiyb 已提交
5244
| 6600101  | Session service exception. |
L
leiiyb 已提交
5245 5246 5247 5248

**示例:**

```js
C
cheng 已提交
5249
controller.off('seekDone');
L
leiiyb 已提交
5250 5251
```

C
cheng 已提交
5252
### on('error')<sup>10+</sup>
L
leiiyb 已提交
5253

C
cheng 已提交
5254
on(type: 'error', callback: ErrorCallback): void
L
leiiyb 已提交
5255

C
cheng 已提交
5256
监听远端播放器的错误事件,该事件仅用于错误提示,不需要用户停止播控动作。
L
leiiyb 已提交
5257

C
cheng 已提交
5258
**系统能力:** SystemCapability.Multimedia.Media.AVCast
L
leiiyb 已提交
5259 5260 5261

**参数:**

C
cheng 已提交
5262 5263 5264 5265
| 参数名   | 类型     | 必填 | 说明                                                         |
| -------- | -------- | ---- | ------------------------------------------------------------ |
| type     | string   | 是   | 错误事件回调类型,支持的事件:'error',用户操作和系统都会触发此事件。 |
| callback | function | 是   | 错误事件回调方法:远端播放过程中发生的错误,会提供错误码ID和错误信息。 |
L
leiiyb 已提交
5266

C
cheng 已提交
5267
回调的**错误分类**<a name = error_info></a>可以分为以下几种:
L
leiiyb 已提交
5268

C
cheng 已提交
5269 5270 5271 5272 5273 5274 5275 5276 5277 5278
| 错误码ID | 错误信息              | 说明                                                         |
| -------- | --------------------- | ------------------------------------------------------------ |
| 201      | No Permission:        | 无权限执行此操作 |
| 401      | Invalid Parameter:    | 入参错误,表示调用无效。                                     |
| 5400101  | No Memory:            | 播放内存不足 |
| 5400102  | Operate Not Permit:   | 当前状态机不支持此操作,表示调用无效。                       |
| 5400103  | IO Error:             | 播放中发现码流异常|
| 5400104  | Network Timeout:      | 网络原因超时响应 |
| 5400105  | Service Died:         | 播放进程死亡 |
| 5400106  | Unsupport Format:     | 不支持的文件格式 |
L
leiiyb 已提交
5279 5280 5281 5282

**示例:**

```js
C
cheng 已提交
5283 5284 5285 5286
controller.on('error', (error) => {
  console.error('error happened,and error message is :' + error.message)
  console.error('error happened,and error code is :' + error.code)
})
L
leiiyb 已提交
5287 5288
```

C
cheng 已提交
5289
### off('error')<sup>10+</sup>
5290

C
cheng 已提交
5291
off(type: 'error'): void
5292

C
cheng 已提交
5293
取消监听播放的错误事件。
5294

C
cheng 已提交
5295
**系统能力:** SystemCapability.Multimedia.Media.AVCast
5296 5297 5298

**参数:**

C
cheng 已提交
5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329
| 参数名 | 类型   | 必填 | 说明                                      |
| ------ | ------ | ---- | ----------------------------------------- |
| type   | string | 是   | 错误事件回调类型,取消注册的事件:'error' |

**示例:**

```js
controller.off('error')
```


### sendControlCommand<sup>10+</sup>

sendControlCommand(command: AVCastControlCommand): Promise\<void>

通过控制器发送命令到其对应的会话。结果通过Promise异步回调方式返回。


**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

**参数:**

| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| command | [AVCastControlCommand](#avcastcontrolcommand10) | 是   | 会话的相关命令和命令相关参数。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
5330 5331

**错误码:**
5332
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
5333 5334

| 错误码ID | 错误信息 |
C
cheng 已提交
5335
| -------- | ---------------------------------------- |
5336
| 6600101  | Session service exception. |
C
cheng 已提交
5337
| 6600102  | The session does not exist. |
H
houyu 已提交
5338
| 6600103  | The session controller does not exist. |
C
cheng 已提交
5339 5340 5341
| 6600105  | Invalid session command. |
| 6600106  | The session is not activated. |
| 6600107  | Too many commands or events. |
5342 5343 5344 5345

**示例:**

```js
C
cheng 已提交
5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358
let avCommand = {command:'play'};
// let avCommand = {command:'pause'};
// let avCommand = {command:'stop'};
// let avCommand = {command:'playNext'};
// let avCommand = {command:'playPrevious'};
// let avCommand = {command:'fastForward'};
// let avCommand = {command:'rewind'};
// let avCommand = {command:'seek', parameter:10};
controller.sendControlCommand(avCommand).then(() => {
    console.info(`SendControlCommand successfully`);
}).catch((err) => {
    console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
});
5359 5360
```

C
cheng 已提交
5361
### sendControlCommand<sup>10+</sup>
5362

C
cheng 已提交
5363
sendControlCommand(command: AVCastControlCommand, callback: AsyncCallback\<void>): void
5364

C
cheng 已提交
5365
通过会话控制器发送命令到其对应的会话。结果通过callback异步回调方式返回。
5366

C
cheng 已提交
5367 5368

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5369 5370 5371

**参数:**

C
cheng 已提交
5372 5373 5374 5375
| 参数名   | 类型                                  | 必填 | 说明                           |
| -------- | ------------------------------------- | ---- | ------------------------------ |
| command  | [AVCastControlCommand](#avcastcontrolcommand10) | 是   | 会话的相关命令和命令相关参数。 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。                     |
5376 5377 5378 5379 5380

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
5381 5382 5383 5384 5385 5386 5387
| -------- | ------------------------------- |
| 6600101  | Session service exception.                |
| 6600102  | The session does not exist.     |
| 6600103  | The session controller does not exist.   |
| 6600105  | Invalid session command.           |
| 6600106  | The session is not activated.                |
| 6600107  | Too many commands or events.      |
5388 5389 5390 5391

**示例:**

```js
C
cheng 已提交
5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406
let avCommand = {command:'play'};
// let avCommand = {command:'pause'};
// let avCommand = {command:'stop'};
// let avCommand = {command:'playNext'};
// let avCommand = {command:'playPrevious'};
// let avCommand = {command:'fastForward'};
// let avCommand = {command:'rewind'};
// let avCommand = {command:'seek', parameter:10};
controller.sendControlCommand(avCommand, function (err) {
    if (err) {
        console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`SendControlCommand successfully`);
    }
});
5407 5408
```

C
cheng 已提交
5409
### prepare<sup>10+</sup>
5410

C
cheng 已提交
5411
prepare(item: AVQueueItem, callback: AsyncCallback<void>): void
5412

C
cheng 已提交
5413
启动播放某个媒体资源。结果通过callback异步回调方式返回。
5414

C
cheng 已提交
5415
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5416 5417 5418

**参数:**

C
cheng 已提交
5419 5420 5421 5422
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| item | [AVQueueItem](#avqueueitem10) | 是   | 播放列表中单项的相关属性。 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。    
5423 5424 5425 5426 5427

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
5428
| -------- | ---------------------------------------- |
5429 5430 5431 5432 5433
| 6600101  | Session service exception. |

**示例:**

```js
C
cheng 已提交
5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460
// 设置播放参数,开始播放
var playItem = {
    itemId: 0,
    description: {
    mediaId: '12345',
    mediaName: 'song1',
    mediaType: 'AUDIO',
    mediaUri: 'http://resource1_address',
    mediaSize: 12345,
    startPosition: 0,
    duration: 0,
    artist: 'mysong',
    albumTitle: 'song1_title',
    albumCoverUri: "http://resource1_album_address",
    lyricUri: "http://resource1_lyric_address",
    iconUri: "http://resource1_icon_address",
    appName: 'MyMusic'
    }
};
// 准备播放,这个不会触发真正的播放,会进行加载和缓冲
controller.prepare(playItem, () => {
  console.info('prepare done');
});
// 启动播放
controller.start(playItem, () => {
  console.info('play done');
});
5461 5462
```

5463

C
cheng 已提交
5464
### prepare<sup>10+</sup>
5465

C
cheng 已提交
5466 5467 5468
prepare(item: AVQueueItem): Promise<void>

启动播放某个媒体资源。结果通过Promise异步回调方式返回。
5469

C
cheng 已提交
5470 5471

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
5472 5473 5474

**参数:**

C
cheng 已提交
5475 5476 5477 5478 5479 5480 5481 5482 5483
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| item | [AVQueueItem](#avqueueitem10) | 是   | 播放列表中单项的相关属性。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
5484 5485 5486 5487 5488

**错误码:**
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)

| 错误码ID | 错误信息 |
C
cheng 已提交
5489 5490 5491
| -------- | ---------------------------------------- |
| 6600101  | Session service exception. |

5492 5493 5494 5495

**示例:**

```js
C
cheng 已提交
5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524
// 设置播放参数,开始播放
var playItem = {
    itemId: 0,
    description: {
        mediaId: '12345',
        mediaName: 'song1',
        mediaType: 'AUDIO',
        mediaUri: 'http://resource1_address',
        mediaSize: 12345,
        startPosition: 0,
        duration: 0,
        artist: 'mysong',
        albumTitle: 'song1_title',
        albumCoverUri: "http://resource1_album_address",
        lyricUri: "http://resource1_lyric_address",
        iconUri: "http://resource1_icon_address",
        appName: 'MyMusic'
    }
};
// 准备播放,这个不会触发真正的播放,会进行加载和缓冲
controller.prepare(playItem, () => {
    console.info('prepare done');
});
// 启动播放
controller.start(playItem).then(() => {
    console.info(`start successfully`);
}).catch((err) => {
    console.info(`start BusinessError: code: ${err.code}, message: ${err.message}`);
});
5525 5526
```

C
cheng 已提交
5527
### start<sup>10+</sup>
L
leiiyb 已提交
5528

C
cheng 已提交
5529
start(item: AVQueueItem, callback: AsyncCallback<void>): void
L
leiiyb 已提交
5530

C
cheng 已提交
5531
启动播放某个媒体资源。结果通过callback异步回调方式返回。
L
leiiyb 已提交
5532

C
cheng 已提交
5533
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5534 5535 5536

**参数:**

C
cheng 已提交
5537 5538 5539 5540
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| item | [AVQueueItem](#avqueueitem10) | 是   | 播放列表中单项的相关属性。 |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。    
L
leiiyb 已提交
5541 5542

**错误码:**
5543
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5544 5545

| 错误码ID | 错误信息 |
C
cheng 已提交
5546
| -------- | ---------------------------------------- |
L
leiiyb 已提交
5547
| 6600101  | Session service exception. |
L
leiiyb 已提交
5548 5549 5550 5551

**示例:**

```js
C
cheng 已提交
5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578
// 设置播放参数,开始播放
var playItem = {
itemId: 0,
description: {
  mediaId: '12345',
  mediaName: 'song1',
  mediaType: 'AUDIO',
  mediaUri: 'http://resource1_address',
  mediaSize: 12345,
  startPosition: 0,
  duration: 0,
  artist: 'mysong',
  albumTitle: 'song1_title',
  albumCoverUri: "http://resource1_album_address",
  lyricUri: "http://resource1_lyric_address",
  iconUri: "http://resource1_icon_address",
  appName: 'MyMusic'
}
};
// 准备播放,这个不会触发真正的播放,会进行加载和缓冲
controller.prepare(playItem, () => {
  console.info('prepare done');
});
// 启动播放
controller.start(playItem, () => {
  console.info('play done');
});
L
leiiyb 已提交
5579 5580 5581
```


C
cheng 已提交
5582
### start<sup>10+</sup>
L
leiiyb 已提交
5583

C
cheng 已提交
5584
start(item: AVQueueItem): Promise<void>
L
leiiyb 已提交
5585

C
cheng 已提交
5586 5587 5588 5589
启动播放某个媒体资源。结果通过Promise异步回调方式返回。


**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5590 5591 5592

**参数:**

C
cheng 已提交
5593 5594 5595 5596 5597 5598 5599 5600 5601
| 参数名    | 类型                                  | 必填 | 说明                           |
| ------- | ------------------------------------- | ---- | ------------------------------ |
| item | [AVQueueItem](#avqueueitem10) | 是   | 播放列表中单项的相关属性。 |

**返回值:**

| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当命令发送成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
5602 5603

**错误码:**
5604
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5605 5606

| 错误码ID | 错误信息 |
C
cheng 已提交
5607
| -------- | ---------------------------------------- |
L
leiiyb 已提交
5608
| 6600101  | Session service exception. |
C
cheng 已提交
5609

L
leiiyb 已提交
5610 5611 5612 5613

**示例:**

```js
C
cheng 已提交
5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642
// 设置播放参数,开始播放
var playItem = {
itemId: 0,
description: {
    mediaId: '12345',
    mediaName: 'song1',
    mediaType: 'AUDIO',
    mediaUri: 'http://resource1_address',
    mediaSize: 12345,
    startPosition: 0,
    duration: 0,
    artist: 'mysong',
    albumTitle: 'song1_title',
    albumCoverUri: "http://resource1_album_address",
    lyricUri: "http://resource1_lyric_address",
    iconUri: "http://resource1_icon_address",
    appName: 'MyMusic'
}
};
// 准备播放,这个不会触发真正的播放,会进行加载和缓冲
controller.prepare(playItem, () => {
    console.info('prepare done');
});
// 启动播放
controller.start(playItem).then(() => {
    console.info(`start successfully`);
}).catch((err) => {
    console.info(`start BusinessError: code: ${err.code}, message: ${err.message}`);
});
L
leiiyb 已提交
5643 5644
```

C
cheng 已提交
5645
### stopCasting<sup>10+</sup>
L
leiiyb 已提交
5646

C
cheng 已提交
5647
stopCasting(callback: AsyncCallback<void>): void
L
leiiyb 已提交
5648

C
cheng 已提交
5649
结束投播。结果通过callback异步回调方式返回。
L
leiiyb 已提交
5650

C
cheng 已提交
5651
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5652 5653 5654

**参数:**

C
cheng 已提交
5655 5656 5657
| 参数名   | 类型                                  | 必填 | 说明                                  |
| -------- | ------------------------------------- | ---- | ------------------------------------- |
| callback | AsyncCallback\<void>                  | 是   | 回调函数。当命令发送成功,err为undefined,否则返回错误对象。 |
L
leiiyb 已提交
5658 5659

**错误码:**
5660
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5661

C
cheng 已提交
5662 5663
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
5664
| 6600101  | Session service exception. |
L
leiiyb 已提交
5665 5666 5667 5668

**示例:**

```js
C
cheng 已提交
5669 5670 5671 5672 5673 5674 5675
avSession.stopCasting(function (err) {
    if (err) {
        console.info(`stopCasting BusinessError: code: ${err.code}, message: ${err.message}`);
    } else {
        console.info(`stopCasting successfully`);
    }
});
L
leiiyb 已提交
5676 5677
```

C
cheng 已提交
5678
### stopCasting<sup>10+</sup>
L
leiiyb 已提交
5679

C
cheng 已提交
5680
stopCasting(): Promise<void>
L
leiiyb 已提交
5681

C
cheng 已提交
5682
结束投播。结果通过Promise异步回调方式返回。
L
leiiyb 已提交
5683

C
cheng 已提交
5684
**系统能力:** SystemCapability.Multimedia.AVSession.AVCast
L
leiiyb 已提交
5685

C
cheng 已提交
5686
**返回值:**
L
leiiyb 已提交
5687

C
cheng 已提交
5688 5689 5690
| 类型           | 说明                          |
| -------------- | ----------------------------- |
| Promise\<void> | Promise对象。当停止投播索成功,无返回结果,否则返回错误对象。 |
L
leiiyb 已提交
5691 5692

**错误码:**
5693
以下错误码的详细介绍请参见[媒体会话管理错误码](../errorcodes/errorcode-avsession.md)
L
leiiyb 已提交
5694

C
cheng 已提交
5695 5696
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
L
leiiyb 已提交
5697
| 6600101  | Session service exception. |
L
leiiyb 已提交
5698 5699 5700 5701

**示例:**

```js
C
cheng 已提交
5702 5703 5704 5705 5706
avSession.stopCasting().then(() => {
    console.info(`stopCasting successfully`);
}).catch((err) => {
    console.info(`stopCasting BusinessError: code: ${err.code}, message: ${err.message}`);
});
L
leiiyb 已提交
5707 5708
```

C
cheng 已提交
5709

L
leiiyb 已提交
5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722
## SessionToken

会话令牌的信息。

**需要权限:** ohos.permission.MANAGE_MEDIA_RESOURCES,仅系统应用可用。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

| 名称      | 类型   | 必填 | 说明         |
| :-------- | :----- | :--- | :----------- |
| sessionId | string | 是   | 会话ID       |
C
cheng 已提交
5723 5724
| pid       | number | 否   | 会话的进程ID |
| uid       | number | 否   | 用户ID       |
L
leiiyb 已提交
5725

L
liyuhang 已提交
5726
## AVSessionType<sup>10+<sup>
L
leiiyb 已提交
5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746
当前会话支持的会话类型。

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

| 名称  | 类型   | 说明 |
| ----- | ------ | ---- |
| audio | string | 音频 |
| video | string | 视频 |

## AVSessionDescriptor

会话的相关描述信息。

**系统能力:** SystemCapability.Multimedia.AVSession.Manager

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

| 名称         | 类型                                                         | 可读 | 可写 | 说明                                                |
| ------------ | ------------------------------------------------------------ | ---- | --------------------------------------------------- | --------------------------------------------------- |
| sessionId    | string                                                       | 是  | 否 | 会话ID                                              |
L
liyuhang 已提交
5747
| type         | [AVSessionType](#avsessiontype10)                              | 是   | 否  | 会话类型                                            |
L
leiiyb 已提交
5748 5749 5750 5751
| sessionTag   | string                                                       | 是   | 否  | 会话的自定义名称                                    |
| elementName  | [ElementName](js-apis-bundle-ElementName.md)                 | 是   | 否  | 会话所属应用的信息(包含bundleName、abilityName等) |
| isActive     | boolean                                                      | 是   | 否  | 会话是否被激活                                      |
| isTopSession | boolean                                                      | 是   | 否  | 会话是否为最新的会话                                |
L
liyuhang 已提交
5752
| outputDevice | [OutputDeviceInfo](#outputdeviceinfo10)                        | 是   | 否  | 分布式设备相关信息                                  |
L
leiiyb 已提交
5753

L
liyuhang 已提交
5754
## AVControlCommandType<sup>10+</sup>
L
leiiyb 已提交
5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773

会话可传递的命令。

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

| 名称           | 类型   | 说明         |
| -------------- | ------ | ------------ |
| play           | string | 播放         |
| pause          | string | 暂停         |
| stop           | string | 停止         |
| playNext       | string | 下一首       |
| playPrevious   | string | 上一首       |
| fastForward    | string | 快进         |
| rewind         | string | 快退         |
| seek           | string | 跳转某一节点 |
| setSpeed       | string | 设置播放倍速 |
| setLoopMode    | string | 设置循环模式 |
| toggleFavorite | string | 是否收藏     |

L
liyuhang 已提交
5774
## AVControlCommand<sup>10+</sup>
L
leiiyb 已提交
5775 5776 5777 5778 5779 5780 5781

会话接受的命令的对象描述。

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

| 名称      | 类型                                              | 必填 | 说明           |
| --------- | ------------------------------------------------- | ---- | -------------- |
L
liyuhang 已提交
5782 5783
| command   | [AVControlCommandType](#avcontrolcommandtype10)     | 是   | 命令           |
| parameter | [LoopMode](#loopmode10) &#124; string &#124; number | 否   | 命令对应的参数 |
L
leiiyb 已提交
5784

C
cheng 已提交
5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816
## AVCastControlCommandType<sup>10+</sup>

投播控制器可传递的命令。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

| 名称           | 类型   | 说明         |
| -------------- | ------ | ------------ |
| play           | string | 播放         |
| pause          | string | 暂停         |
| stop           | string | 停止         |
| playNext       | string | 下一首       |
| playPrevious   | string | 上一首       |
| fastForward    | string | 快进         |
| rewind         | string | 快退         |
| seek           | numbder | 跳转某一节点 |
| setSpeed       | number | 设置播放倍速 |
| setLoopMode    | string | 设置循环模式 |
| toggleFavorite | string | 是否收藏     |
| setVolume      | number | 设置音量     |

## AVCastControlCommand<sup>10+</sup>

投播控制器接受的命令的对象描述。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

| 名称      | 类型                                              | 必填 | 说明           |
| --------- | ------------------------------------------------- | ---- | -------------- |
| command   | [AVCastControlCommandType](#avcastcontrolcommandtype10)     | 是   | 命令           |
| parameter | [LoopMode](#loopmode10) &#124; string &#124; number | 否   | 命令对应的参数 |

L
liyuhang 已提交
5817
## AVMetadata<sup>10+</sup>
L
leiiyb 已提交
5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831

媒体元数据的相关属性。

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

| 名称            | 类型                      | 必填 | 说明                                                                  |
| --------------- |-------------------------| ---- |---------------------------------------------------------------------|
| assetId         | string                  | 是   | 媒体ID。                                                               |
| title           | string                  | 否   | 标题。                                                                 |
| artist          | string                  | 否   | 艺术家。                                                                |
| author          | string                  | 否   | 专辑作者。                                                               |
| album           | string                  | 否   | 专辑名称。                                                               |
| writer          | string                  | 否   | 词作者。                                                                |
| composer        | string                  | 否   | 作曲者。                                                                |
5832
| duration        | number                  | 否   | 媒体时长,单位毫秒(ms)。                                                  |
L
leiiyb 已提交
5833 5834 5835 5836 5837 5838 5839 5840
| mediaImage      | image.PixelMap &#124; string | 否   | 图片的像素数据或者图片路径地址(本地路径或网络路径)。                             |
| publishDate     | Date                    | 否   | 发行日期。                                                               |
| subtitle        | string                  | 否   | 子标题。                                                                |
| description     | string                  | 否   | 媒体描述。                                                               |
| lyric           | string                  | 否   | 歌词文件路径地址(本地路径或网络路径) |
| previousAssetId | string                  | 否   | 上一首媒体ID。                                                            |
| nextAssetId     | string                  | 否   | 下一首媒体ID。                                                            |

5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856
## AVMediaDescription<sup>10+</sup>

播放列表媒体元数据的相关属性。

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

| 名称         | 类型                    | 必填  | 说明                     |
| ------------ | ----------------------- | ---- | ----------------------- |
| mediaId      | string                  | 是   | 播放列表媒体ID。          |
| title        | string                  | 否   | 播放列表媒体标题。        |
| subtitle     | string                  | 否   | 播放列表媒体子标题。      |
| description  | string                  | 否   | 播放列表媒体描述的文本。   |
| icon         | image.PixelMap          | 否   | 播放列表媒体图片像素数据。 |
| iconUri      | string                  | 否   | 播放列表媒体图片路径地址。 |
| extras       | {[key: string]: any}    | 否   | 播放列表媒体额外字段。     |
| mediaUri     | string                  | 否   | 播放列表媒体URI。         |
C
cheng 已提交
5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868
| mediaType     | string                  | 否   | 播放列表媒体类型。         |
| mediaSize     | number                  | 否   | 播放列表媒体的大小。         |
| albumTitle     | string                  | 否   | 播放列表媒体专辑标题。         |
| albumCoverUri     | string                  | 否   | 播放列表媒体专辑标题URI。    |
| lyricContent     | string                  | 否   | 播放列表媒体歌词内容。         |
| lyricUri     | string                  | 否   | 播放列表媒体歌词URI。         |
| artist     | string                  | 否   | 播放列表媒体专辑作者。         |
| fdSrc     | media.AVFileDescriptor        | 否   | 播放列表媒体本地文件的句柄。         |
| duration     | number                  | 否   | 播放列表媒体播放时长。         |
| startPosition     | number                  | 否   | 播放列表媒体起始播放位置。         |
| creditsPosition     | number                  | 否   | 播放列表媒体的片尾播放位置。         |
| appName     | string                  | 否   | 播放列表提供的应用的名字。         |
5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880

## AVQueueItem<sup>10+</sup>

播放列表中单项的相关属性。

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

| 名称         | 类型                                        | 必填 | 说明                        |
| ------------ | ------------------------------------------ | ---- | --------------------------- |
| itemId       | number                                     | 是   | 播放列表中单项的ID。          |
| description  | [AVMediaDescription](#avmediadescription10)  | 是   | 播放列表中单项的媒体元数据。   |

L
liyuhang 已提交
5881
## AVPlaybackState<sup>10+</sup>
L
leiiyb 已提交
5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892

媒体播放状态的相关属性。

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

| 名称         | 类型                                  | 必填 | 说明     |
| ------------ | ------------------------------------- | ---- | ------- |
| state        | [PlaybackState](#playbackstate)       | 否   | 播放状态 |
| speed        | number                                | 否   | 播放倍速 |
| position     | [PlaybackPosition](#playbackposition) | 否   | 播放位置 |
| bufferedTime | number                                | 否   | 缓冲时间 |
L
liyuhang 已提交
5893
| loopMode     | [LoopMode](#loopmode10)                 | 否   | 循环模式 |
L
leiiyb 已提交
5894
| isFavorite   | boolean                               | 否   | 是否收藏 |
5895 5896
| activeItemId<sup>10+</sup> | number                  | 否   | 正在播放的媒体Id |
| extras<sup>10+</sup> | {[key: string]: Object}       | 否   | 自定义媒体数据 |
L
leiiyb 已提交
5897

L
liyuhang 已提交
5898
## PlaybackPosition<sup>10+</sup>
L
leiiyb 已提交
5899 5900 5901 5902 5903 5904 5905 5906 5907 5908

媒体播放位置的相关属性。

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

| 名称        | 类型   | 必填 | 说明               |
| ----------- | ------ | ---- | ------------------ |
| elapsedTime | number | 是   | 已用时间,单位毫秒(ms)。 |
| updateTime  | number | 是   | 更新时间,单位毫秒(ms)。 |

C
cheng 已提交
5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974
## AVCastCategory<sup>10+</sup>

播放设备的类别枚举。

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

| 名称                        | 值   | 说明         |
| --------------------------- | ---- | ----------- |
| CATEGORY_LOCAL      | 0    | 本地播放,默认播放设备,声音从本机或者连接的蓝牙耳机设备出声。     |
| CATEGORY_REMOTE      | 1    | 远端播放,远端播放设备,声音从其他设备发出声音或者画面。  |

## ConnectionState<sup>10+</sup>

播放设备的类别枚举。

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

| 名称                        | 值   | 说明         |
| --------------------------- | ---- | ----------- |
| STATE_CONNECTING      | 0    | 设备连接中    |
| STATE_CONNECTED      | 1    | 设备连接成功 |
| STATE_DISCONNECTED      | 6    | 设备断开连接 |

## ProtocolType<sup>10+</sup>

远端设备支持的协议类型。

**系统能力:** SystemCapability.Multimedia.AVSession.AVCast

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

| 名称                        | 值   | 说明         |
| --------------------------- | ---- | ----------- |
| TYPE_LOCAL      | 0    | 本地设备    |
| TYPE_CAST_PLUS_MIRROR      | 1    | Cast+的镜像模式 |
| TYPE_CAST_PLUS_STREAM      | 2    | Cast+的Stream模式 |

## DeviceType<sup>10+</sup>

播放设备的类型枚举。

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

| 名称                        | 值   | 说明         |
| --------------------------- | ---- | ----------- |
| DEVICE_TYPE_LOCAL      | 0    | 本地播放类型     |
| DEVICE_TYPE_TV      | 2    | 电视  |
| DEVICE_TYPE_SMART_SPEAKER      | 3   | 音箱设备  |
| DEVICE_TYPE_BLUETOOTH      | 10   | 蓝牙设备  |


## DeviceInfo<sup>10+</sup>

播放设备的相关信息。

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

| 名称       | 类型           | 必填 | 说明                   |
| ---------- | -------------- | ---- | ---------------------- |
| castCategory   | AVCastCategory        | 是   | 播放设备的类别         |
| deviceId   | string | 是   | 播放设备的ID。  |
| deviceName | string | 是   | 播放设备的名称。    |
| deviceType | DeviceType | 是   | 播放设备的类型。    |
| ipAddress | string | 否   | 播放设备的ip地址。    |
| providerId | number | 否   | 播放设备提供商。    |

L
liyuhang 已提交
5975
## OutputDeviceInfo<sup>10+</sup>
L
leiiyb 已提交
5976 5977 5978 5979 5980 5981 5982

播放设备的相关信息。

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

| 名称       | 类型           | 必填 | 说明                   |
| ---------- | -------------- | ---- | ---------------------- |
C
cheng 已提交
5983
| devices | Array\<DeviceInfo\> | 是   | 播放设备的集合。    |
L
leiiyb 已提交
5984

L
liyuhang 已提交
5985
## PlaybackState<sup>10+</sup>
L
leiiyb 已提交
5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999

表示媒体播放状态的枚举。

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

| 名称                        | 值   | 说明         |
| --------------------------- | ---- | ----------- |
| PLAYBACK_STATE_INITIAL      | 0    | 初始状态     |
| PLAYBACK_STATE_PREPARE      | 1    | 播放准备状态  |
| PLAYBACK_STATE_PLAY         | 2    | 正在播放     |
| PLAYBACK_STATE_PAUSE        | 3    | 暂停         |
| PLAYBACK_STATE_FAST_FORWARD | 4    | 快进         |
| PLAYBACK_STATE_REWIND       | 5    | 快退         |
| PLAYBACK_STATE_STOP         | 6    | 停止         |
C
cheng 已提交
6000 6001 6002
| PLAYBACK_STATE_COMPLETED    | 7    | 播放完成     |
| PLAYBACK_STATE_RELEASED     | 8    | 释放         |
| PLAYBACK_STATE_ERROR        | 9    | 错误         |
L
leiiyb 已提交
6003 6004


L
liyuhang 已提交
6005
## LoopMode<sup>10+</sup>
L
leiiyb 已提交
6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017

表示媒体播放循环模式的枚举。

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

| 名称               | 值   | 说明     |
| ------------------ | ---- | -------- |
| LOOP_MODE_SEQUENCE | 0    | 顺序播放 |
| LOOP_MODE_SINGLE   | 1    | 单曲循环 |
| LOOP_MODE_LIST     | 2    | 表单循环 |
| LOOP_MODE_SHUFFLE  | 3    | 随机播放 |

L
liyuhang 已提交
6018
## AVSessionErrorCode<sup>10+</sup>
L
leiiyb 已提交
6019 6020 6021 6022 6023 6024 6025

会话发生错误时的错误码。

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

| 名称                           | 值      | 说明                             |
| ------------------------------ | ------- | ------------------------------- |
L
leiiyb 已提交
6026 6027 6028 6029 6030 6031
| ERR_CODE_SERVICE_EXCEPTION     | 6600101 | Session service exception.               |
| ERR_CODE_SESSION_NOT_EXIST     | 6600102 | The session does not exist.      |
| ERR_CODE_CONTROLLER_NOT_EXIST  | 6600103 | The session controller does not exist.   |
| ERR_CODE_REMOTE_CONNECTION_ERR | 6600104 | The remote session  connection failed.         |
| ERR_CODE_COMMAND_INVALID       | 6600105 | Invalid session command.           |
| ERR_CODE_SESSION_INACTIVE      | 6600106 | The session is not activated.                |
L
liyuhang 已提交
6032
| ERR_CODE_MESSAGE_OVERLOAD      | 6600107 | Too many commands or events.       |
C
cheng 已提交
6033 6034
| ERR_CODE_DEVICE_CONNECTION_FAILED      | 6600108 | Device connecting failed.       |
| ERR_CODE_REMOTE_CONNECTION_NOT_EXIST      | 6600109 | The remote connection is not established.       |
L
liyuhang 已提交
6035 6036

<!--no_check-->