@volcengine/veplayer 2.12.1 → 2.12.2-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/veplayer.d.ts CHANGED
@@ -5424,6 +5424,7 @@ declare namespace error {
5424
5424
  declare namespace event {
5425
5425
  const BaseEvents: {
5426
5426
  SEI: string;
5427
+ SEI_IN_TIME: string;
5427
5428
  PLAYER_CREATE_FINISH: string;
5428
5429
  FALLBACK_ERROR: string;
5429
5430
  FALLBACK: string;
@@ -5468,6 +5469,7 @@ declare namespace event {
5468
5469
  };
5469
5470
  const Events: {
5470
5471
  SEI: string;
5472
+ SEI_IN_TIME: string;
5471
5473
  PLAYER_CREATE_FINISH: string;
5472
5474
  FALLBACK_ERROR: string;
5473
5475
  FALLBACK: string;
@@ -13643,6 +13645,13 @@ declare namespace live {
13643
13645
  * The player parses the SEI information.
13644
13646
  */
13645
13647
  SEI = "sei",
13648
+ /** {zh}
13649
+ * SEI 信息与播放进度对齐。SEI 在解析后会被缓存,待播放进度到达该 SEI 对应的时间点时抛出。
13650
+ */
13651
+ /** {en}
13652
+ * The SEI information is aligned with the playback progress. The player caches the parsed SEI and emits it when the playback progress reaches the timestamp of the SEI.
13653
+ */
13654
+ SEI_IN_TIME = "seiInTime",
13646
13655
  /** {zh}
13647
13656
  * 时移状态切换
13648
13657
  */
@@ -14314,6 +14323,67 @@ declare namespace live {
14314
14323
  uuid: string;
14315
14324
  };
14316
14325
  }) => void;
14326
+ /** {zh}
14327
+ * SEI 信息与播放进度对齐。
14328
+ * @param data SEI 信息,与 SEI 事件的回调数据结构一致
14329
+ */
14330
+ /** {en}
14331
+ * The SEI information is aligned with the playback progress.
14332
+ * @param data The SEI information. The data structure is the same as that of the SEI event.
14333
+ */
14334
+ [LiveEvents.SEI_IN_TIME]: (data: {
14335
+ /** {zh}
14336
+ * 原始 PTS。视频帧在实际推流中的显示时间戳 PTS。
14337
+ */
14338
+ /** {en}
14339
+ * The actual presentation timestamp (PTS) of the video frame.
14340
+ */
14341
+ originPts: number;
14342
+ /** {zh}
14343
+ * 修正后的 PTS。在直播场景中,播放器会根据观众进入直播间时间,从 0 开始重新定义显示时间戳 PTS。
14344
+ */
14345
+ /** {en}
14346
+ * The adjusted presentation timestamp (PTS). The player adjusts the presentation timestamp based on the time the audience enters the live room.
14347
+ */
14348
+ pts: number;
14349
+ /** {zh}
14350
+ * 该 SEI 消息在当前直播视频中的时间点,单位为 s。
14351
+ */
14352
+ /** {en}
14353
+ * The timestamp of the SEI message in the current live stream, in seconds.
14354
+ */
14355
+ time: number;
14356
+ data: {
14357
+ /** {zh}
14358
+ * SEI 数据。
14359
+ */
14360
+ /** {en}
14361
+ * The SEI data.
14362
+ */
14363
+ payload: Uint8Array;
14364
+ /** {zh}
14365
+ * SEI 类型。
14366
+ */
14367
+ /** {en}
14368
+ * The SEI type.
14369
+ */
14370
+ type: number;
14371
+ /** {zh}
14372
+ * SEI 大小。
14373
+ */
14374
+ /** {en}
14375
+ * The SEI size.
14376
+ */
14377
+ size: number;
14378
+ /** {zh}
14379
+ * SEI UUID,不存在则为空字符串。
14380
+ */
14381
+ /** {en}
14382
+ * The SEI UUID or an empty string if the SEI UUID doesn't exist.
14383
+ */
14384
+ uuid: string;
14385
+ };
14386
+ }) => void;
14317
14387
  /** {zh}
14318
14388
  * @brief 时移状态切换。
14319
14389
  * @param isTimeShift 是否是时移状态。
@@ -14555,6 +14625,7 @@ declare namespace live {
14555
14625
  HLS_PLAYOUT_LIMIT_REACHED: HLS.Events.PLAYOUT_LIMIT_REACHED;
14556
14626
  HLS_EVENT_CUE_ENTER: HLS.Events.EVENT_CUE_ENTER;
14557
14627
  SEI: string;
14628
+ SEI_IN_TIME: string;
14558
14629
  PLAYER_CREATE_FINISH: string;
14559
14630
  FALLBACK_ERROR: string;
14560
14631
  FALLBACK: string;
@@ -10905,6 +10905,8 @@ var ZH = {
10905
10905
  const BaseEvents = {
10906
10906
  // sei
10907
10907
  SEI: "sei",
10908
+ // sei,在播放时间对齐到该 sei 的时间戳时抛出
10909
+ SEI_IN_TIME: "seiInTime",
10908
10910
  // 播放器完成创建
10909
10911
  PLAYER_CREATE_FINISH: "playerCreateFinish",
10910
10912
  FALLBACK_ERROR: "fallbackError",
@@ -10965,6 +10967,10 @@ const EVENT_TRANSFORMATION = {
10965
10967
  event: "core_event",
10966
10968
  shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.sei"
10967
10969
  },
10970
+ [BaseEvents.SEI_IN_TIME]: {
10971
+ event: "core_event",
10972
+ shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.seiintime"
10973
+ },
10968
10974
  [BaseEvents.RTM_NETWORK]: {
10969
10975
  event: "core_event",
10970
10976
  shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.rtcnetwork"
@@ -14711,7 +14717,7 @@ class VePlayerBase {
14711
14717
  * @brief Retrieve the player SDK version number.
14712
14718
  */
14713
14719
  get playerVersion() {
14714
- return "2.12.1";
14720
+ return "2.12.2-rc.0";
14715
14721
  }
14716
14722
  /** {zh}
14717
14723
  * @brief 获取当前播放视频的清晰度唯一标识(definition)。
@@ -56506,7 +56512,7 @@ let Logger$1 = class Logger2 extends Plugin {
56506
56512
  device_id: deviceId,
56507
56513
  error_report_stop: true,
56508
56514
  ext: {
56509
- veplayer_version: "2.12.1",
56515
+ veplayer_version: "2.12.2-rc.0",
56510
56516
  flv_version: "3.0.24-rc.6",
56511
56517
  hls_version: "3.0.24-rc.2",
56512
56518
  rts_version: "0.2.1-alpha.64"
@@ -74304,7 +74310,7 @@ async function prepare(options) {
74304
74310
  }
74305
74311
  await ((_a = liveVeStrategy.veStrategyManager) == null ? void 0 : _a.init({
74306
74312
  ...options,
74307
- playerVersion: "2.12.1",
74313
+ playerVersion: "2.12.2-rc.0",
74308
74314
  type: "LIVE"
74309
74315
  }));
74310
74316
  return liveVeStrategy.veStrategyManager;
@@ -5424,6 +5424,7 @@ declare namespace error {
5424
5424
  declare namespace event {
5425
5425
  const BaseEvents: {
5426
5426
  SEI: string;
5427
+ SEI_IN_TIME: string;
5427
5428
  PLAYER_CREATE_FINISH: string;
5428
5429
  FALLBACK_ERROR: string;
5429
5430
  FALLBACK: string;
@@ -5468,6 +5469,7 @@ declare namespace event {
5468
5469
  };
5469
5470
  const Events: {
5470
5471
  SEI: string;
5472
+ SEI_IN_TIME: string;
5471
5473
  PLAYER_CREATE_FINISH: string;
5472
5474
  FALLBACK_ERROR: string;
5473
5475
  FALLBACK: string;
@@ -13643,6 +13645,13 @@ declare namespace live {
13643
13645
  * The player parses the SEI information.
13644
13646
  */
13645
13647
  SEI = "sei",
13648
+ /** {zh}
13649
+ * SEI 信息与播放进度对齐。SEI 在解析后会被缓存,待播放进度到达该 SEI 对应的时间点时抛出。
13650
+ */
13651
+ /** {en}
13652
+ * The SEI information is aligned with the playback progress. The player caches the parsed SEI and emits it when the playback progress reaches the timestamp of the SEI.
13653
+ */
13654
+ SEI_IN_TIME = "seiInTime",
13646
13655
  /** {zh}
13647
13656
  * 时移状态切换
13648
13657
  */
@@ -14314,6 +14323,67 @@ declare namespace live {
14314
14323
  uuid: string;
14315
14324
  };
14316
14325
  }) => void;
14326
+ /** {zh}
14327
+ * SEI 信息与播放进度对齐。
14328
+ * @param data SEI 信息,与 SEI 事件的回调数据结构一致
14329
+ */
14330
+ /** {en}
14331
+ * The SEI information is aligned with the playback progress.
14332
+ * @param data The SEI information. The data structure is the same as that of the SEI event.
14333
+ */
14334
+ [LiveEvents.SEI_IN_TIME]: (data: {
14335
+ /** {zh}
14336
+ * 原始 PTS。视频帧在实际推流中的显示时间戳 PTS。
14337
+ */
14338
+ /** {en}
14339
+ * The actual presentation timestamp (PTS) of the video frame.
14340
+ */
14341
+ originPts: number;
14342
+ /** {zh}
14343
+ * 修正后的 PTS。在直播场景中,播放器会根据观众进入直播间时间,从 0 开始重新定义显示时间戳 PTS。
14344
+ */
14345
+ /** {en}
14346
+ * The adjusted presentation timestamp (PTS). The player adjusts the presentation timestamp based on the time the audience enters the live room.
14347
+ */
14348
+ pts: number;
14349
+ /** {zh}
14350
+ * 该 SEI 消息在当前直播视频中的时间点,单位为 s。
14351
+ */
14352
+ /** {en}
14353
+ * The timestamp of the SEI message in the current live stream, in seconds.
14354
+ */
14355
+ time: number;
14356
+ data: {
14357
+ /** {zh}
14358
+ * SEI 数据。
14359
+ */
14360
+ /** {en}
14361
+ * The SEI data.
14362
+ */
14363
+ payload: Uint8Array;
14364
+ /** {zh}
14365
+ * SEI 类型。
14366
+ */
14367
+ /** {en}
14368
+ * The SEI type.
14369
+ */
14370
+ type: number;
14371
+ /** {zh}
14372
+ * SEI 大小。
14373
+ */
14374
+ /** {en}
14375
+ * The SEI size.
14376
+ */
14377
+ size: number;
14378
+ /** {zh}
14379
+ * SEI UUID,不存在则为空字符串。
14380
+ */
14381
+ /** {en}
14382
+ * The SEI UUID or an empty string if the SEI UUID doesn't exist.
14383
+ */
14384
+ uuid: string;
14385
+ };
14386
+ }) => void;
14317
14387
  /** {zh}
14318
14388
  * @brief 时移状态切换。
14319
14389
  * @param isTimeShift 是否是时移状态。
@@ -14555,6 +14625,7 @@ declare namespace live {
14555
14625
  HLS_PLAYOUT_LIMIT_REACHED: HLS.Events.PLAYOUT_LIMIT_REACHED;
14556
14626
  HLS_EVENT_CUE_ENTER: HLS.Events.EVENT_CUE_ENTER;
14557
14627
  SEI: string;
14628
+ SEI_IN_TIME: string;
14558
14629
  PLAYER_CREATE_FINISH: string;
14559
14630
  FALLBACK_ERROR: string;
14560
14631
  FALLBACK: string;
@@ -10905,6 +10905,8 @@ var ZH = {
10905
10905
  const BaseEvents = {
10906
10906
  // sei
10907
10907
  SEI: "sei",
10908
+ // sei,在播放时间对齐到该 sei 的时间戳时抛出
10909
+ SEI_IN_TIME: "seiInTime",
10908
10910
  // 播放器完成创建
10909
10911
  PLAYER_CREATE_FINISH: "playerCreateFinish",
10910
10912
  FALLBACK_ERROR: "fallbackError",
@@ -10965,6 +10967,10 @@ const EVENT_TRANSFORMATION = {
10965
10967
  event: "core_event",
10966
10968
  shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.sei"
10967
10969
  },
10970
+ [BaseEvents.SEI_IN_TIME]: {
10971
+ event: "core_event",
10972
+ shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.seiintime"
10973
+ },
10968
10974
  [BaseEvents.RTM_NETWORK]: {
10969
10975
  event: "core_event",
10970
10976
  shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.rtcnetwork"
@@ -14711,7 +14717,7 @@ class VePlayerBase {
14711
14717
  * @brief Retrieve the player SDK version number.
14712
14718
  */
14713
14719
  get playerVersion() {
14714
- return "2.12.1";
14720
+ return "2.12.2-rc.0";
14715
14721
  }
14716
14722
  /** {zh}
14717
14723
  * @brief 获取当前播放视频的清晰度唯一标识(definition)。
@@ -56506,7 +56512,7 @@ let Logger$1 = class Logger2 extends Plugin {
56506
56512
  device_id: deviceId,
56507
56513
  error_report_stop: true,
56508
56514
  ext: {
56509
- veplayer_version: "2.12.1",
56515
+ veplayer_version: "2.12.2-rc.0",
56510
56516
  flv_version: "3.0.24-rc.6",
56511
56517
  hls_version: "3.0.24-rc.2",
56512
56518
  rts_version: "0.2.1-alpha.64"
@@ -74310,7 +74316,7 @@ async function prepare(options) {
74310
74316
  }
74311
74317
  await ((_a = liveVeStrategy.veStrategyManager) == null ? void 0 : _a.init({
74312
74318
  ...options,
74313
- playerVersion: "2.12.1",
74319
+ playerVersion: "2.12.2-rc.0",
74314
74320
  type: "LIVE"
74315
74321
  }));
74316
74322
  return liveVeStrategy.veStrategyManager;