@byteplus/veplayer 2.12.2-rc.0 → 2.13.1-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/index.d.ts +0 -2
- package/esm/veplayer.biz.live.development.js +154 -8
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.d.ts +86 -75
- package/esm/veplayer.development.js +157 -15
- package/esm/veplayer.live.d.ts +86 -75
- package/esm/veplayer.live.development.js +157 -15
- package/esm/veplayer.live.production.js +3 -3
- package/esm/veplayer.production.js +3 -3
- package/esm/veplayer.vod.d.ts +0 -2
- package/esm/veplayer.vod.development.js +1 -7
- package/esm/veplayer.vod.production.js +2 -2
- package/package.json +1 -1
- package/umd/index.d.ts +0 -2
- package/umd/veplayer.biz.live.development.js +154 -8
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.d.ts +86 -75
- package/umd/veplayer.development.js +157 -15
- package/umd/veplayer.live.d.ts +86 -75
- package/umd/veplayer.live.development.js +157 -15
- package/umd/veplayer.live.production.js +1 -1
- package/umd/veplayer.production.js +1 -1
- package/umd/veplayer.vod.d.ts +0 -2
- package/umd/veplayer.vod.development.js +1 -7
- package/umd/veplayer.vod.production.js +1 -1
- package/veplayer.d.ts +86 -75
- package/veplayer.live.d.ts +86 -75
- package/veplayer.vod.d.ts +0 -2
package/esm/veplayer.d.ts
CHANGED
|
@@ -5424,7 +5424,6 @@ declare namespace error {
|
|
|
5424
5424
|
declare namespace event {
|
|
5425
5425
|
const BaseEvents: {
|
|
5426
5426
|
SEI: string;
|
|
5427
|
-
SEI_IN_TIME: string;
|
|
5428
5427
|
PLAYER_CREATE_FINISH: string;
|
|
5429
5428
|
FALLBACK_ERROR: string;
|
|
5430
5429
|
FALLBACK: string;
|
|
@@ -5469,7 +5468,6 @@ declare namespace event {
|
|
|
5469
5468
|
};
|
|
5470
5469
|
const Events: {
|
|
5471
5470
|
SEI: string;
|
|
5472
|
-
SEI_IN_TIME: string;
|
|
5473
5471
|
PLAYER_CREATE_FINISH: string;
|
|
5474
5472
|
FALLBACK_ERROR: string;
|
|
5475
5473
|
FALLBACK: string;
|
|
@@ -6219,6 +6217,7 @@ interface PrepareOptions {
|
|
|
6219
6217
|
logger?: LoggerConfig;
|
|
6220
6218
|
}
|
|
6221
6219
|
interface LiveEN {
|
|
6220
|
+
INVALID_PARAMETER: string;
|
|
6222
6221
|
ERROR_TYPES?: any;
|
|
6223
6222
|
// eslint-disable-next-line @typescript-eslint/member-ordering
|
|
6224
6223
|
[key: string]: string | unknown;
|
|
@@ -7060,9 +7059,11 @@ interface Rtm {
|
|
|
7060
7059
|
checkStatsErrorDelay?: number;
|
|
7061
7060
|
/** {zh}
|
|
7062
7061
|
* @brief 是否打开 RTM SEI
|
|
7062
|
+
* @default true
|
|
7063
7063
|
*/
|
|
7064
7064
|
/** {en}
|
|
7065
7065
|
* @brief enable RTM SEI data.
|
|
7066
|
+
* @default true
|
|
7066
7067
|
*/
|
|
7067
7068
|
enableSei?: boolean;
|
|
7068
7069
|
}
|
|
@@ -7307,6 +7308,32 @@ interface RTMNetWorkInfo {
|
|
|
7307
7308
|
*/
|
|
7308
7309
|
avgLostRate?: number;
|
|
7309
7310
|
}
|
|
7311
|
+
/** {zh}
|
|
7312
|
+
* @list option
|
|
7313
|
+
* @kind property
|
|
7314
|
+
* @brief 服务端 SEI 延迟统计。
|
|
7315
|
+
*/
|
|
7316
|
+
/** {en}
|
|
7317
|
+
* @list option
|
|
7318
|
+
* @kind property
|
|
7319
|
+
* @brief Server SEI delay statistics.
|
|
7320
|
+
*/
|
|
7321
|
+
interface SEIDelayStats {
|
|
7322
|
+
/** {zh}
|
|
7323
|
+
* @brief 服务端链路延迟,单位为毫秒。没有有效的服务端 SEI 数据时为空。
|
|
7324
|
+
*/
|
|
7325
|
+
/** {en}
|
|
7326
|
+
* @brief Server-side transfer delay in milliseconds. Empty when valid server SEI data is unavailable.
|
|
7327
|
+
*/
|
|
7328
|
+
delay_s2s?: number;
|
|
7329
|
+
/** {zh}
|
|
7330
|
+
* @brief 推流端到播放端的延迟,单位为毫秒。没有有效的服务端 SEI 数据时为空。
|
|
7331
|
+
*/
|
|
7332
|
+
/** {en}
|
|
7333
|
+
* @brief Stream-to-end playback delay in milliseconds. Empty when valid server SEI data is unavailable.
|
|
7334
|
+
*/
|
|
7335
|
+
delay_s2e?: number;
|
|
7336
|
+
}
|
|
7310
7337
|
/** {zh}
|
|
7311
7338
|
* @list option
|
|
7312
7339
|
* @kind property
|
|
@@ -7317,7 +7344,7 @@ interface RTMNetWorkInfo {
|
|
|
7317
7344
|
* @kind property
|
|
7318
7345
|
* @brief RTM live stream information.
|
|
7319
7346
|
*/
|
|
7320
|
-
interface StatsSnapShoot {
|
|
7347
|
+
interface StatsSnapShoot extends SEIDelayStats {
|
|
7321
7348
|
/** {en}
|
|
7322
7349
|
* @brief Video information.
|
|
7323
7350
|
*/
|
|
@@ -7548,7 +7575,7 @@ interface StatsSnapShoot {
|
|
|
7548
7575
|
* @kind property
|
|
7549
7576
|
* @brief Basic information for live stream playback.
|
|
7550
7577
|
*/
|
|
7551
|
-
interface Stats$0 {
|
|
7578
|
+
interface Stats$0 extends SEIDelayStats {
|
|
7552
7579
|
/** {zh}
|
|
7553
7580
|
* @brief 音频格式。
|
|
7554
7581
|
* @hidden
|
|
@@ -7706,6 +7733,7 @@ declare class VePlayerLive extends VePlayerBase {
|
|
|
7706
7733
|
* @hidden
|
|
7707
7734
|
*/
|
|
7708
7735
|
_protocolManager?: ProtocolManager;
|
|
7736
|
+
private _seiDelayStats;
|
|
7709
7737
|
/** {zh}
|
|
7710
7738
|
* @hidden
|
|
7711
7739
|
* @param options
|
|
@@ -7736,6 +7764,13 @@ declare class VePlayerLive extends VePlayerBase {
|
|
|
7736
7764
|
* @hidden
|
|
7737
7765
|
*/
|
|
7738
7766
|
get hls(): any;
|
|
7767
|
+
/** {zh}
|
|
7768
|
+
* @hidden
|
|
7769
|
+
*/
|
|
7770
|
+
/** {en}
|
|
7771
|
+
* @hidden
|
|
7772
|
+
*/
|
|
7773
|
+
destroy(): void;
|
|
7739
7774
|
/** {zh}
|
|
7740
7775
|
* @brief 调用此方法开启直播日志上报。
|
|
7741
7776
|
*/
|
|
@@ -7888,6 +7923,10 @@ declare class VePlayerLive extends VePlayerBase {
|
|
|
7888
7923
|
*/
|
|
7889
7924
|
source?: string;
|
|
7890
7925
|
}, needUpdateProtocol?: boolean): Promise<void>;
|
|
7926
|
+
private _resetSEIDelayStats;
|
|
7927
|
+
private _handleSEI;
|
|
7928
|
+
private _getPlayerBufferTime;
|
|
7929
|
+
private _mergeSEIDelayStats;
|
|
7891
7930
|
}
|
|
7892
7931
|
/** {zh}
|
|
7893
7932
|
* @detail api
|
|
@@ -11541,6 +11580,7 @@ declare namespace live {
|
|
|
11541
11580
|
logger?: LoggerConfig;
|
|
11542
11581
|
}
|
|
11543
11582
|
interface LiveEN {
|
|
11583
|
+
INVALID_PARAMETER: string;
|
|
11544
11584
|
ERROR_TYPES?: any;
|
|
11545
11585
|
// eslint-disable-next-line @typescript-eslint/member-ordering
|
|
11546
11586
|
[key: string]: string | unknown;
|
|
@@ -12392,9 +12432,11 @@ declare namespace live {
|
|
|
12392
12432
|
checkStatsErrorDelay?: number;
|
|
12393
12433
|
/** {zh}
|
|
12394
12434
|
* @brief 是否打开 RTM SEI
|
|
12435
|
+
* @default true
|
|
12395
12436
|
*/
|
|
12396
12437
|
/** {en}
|
|
12397
12438
|
* @brief enable RTM SEI data.
|
|
12439
|
+
* @default true
|
|
12398
12440
|
*/
|
|
12399
12441
|
enableSei?: boolean;
|
|
12400
12442
|
}
|
|
@@ -12639,6 +12681,32 @@ declare namespace live {
|
|
|
12639
12681
|
*/
|
|
12640
12682
|
avgLostRate?: number;
|
|
12641
12683
|
}
|
|
12684
|
+
/** {zh}
|
|
12685
|
+
* @list option
|
|
12686
|
+
* @kind property
|
|
12687
|
+
* @brief 服务端 SEI 延迟统计。
|
|
12688
|
+
*/
|
|
12689
|
+
/** {en}
|
|
12690
|
+
* @list option
|
|
12691
|
+
* @kind property
|
|
12692
|
+
* @brief Server SEI delay statistics.
|
|
12693
|
+
*/
|
|
12694
|
+
interface SEIDelayStats {
|
|
12695
|
+
/** {zh}
|
|
12696
|
+
* @brief 服务端链路延迟,单位为毫秒。没有有效的服务端 SEI 数据时为空。
|
|
12697
|
+
*/
|
|
12698
|
+
/** {en}
|
|
12699
|
+
* @brief Server-side transfer delay in milliseconds. Empty when valid server SEI data is unavailable.
|
|
12700
|
+
*/
|
|
12701
|
+
delay_s2s?: number;
|
|
12702
|
+
/** {zh}
|
|
12703
|
+
* @brief 推流端到播放端的延迟,单位为毫秒。没有有效的服务端 SEI 数据时为空。
|
|
12704
|
+
*/
|
|
12705
|
+
/** {en}
|
|
12706
|
+
* @brief Stream-to-end playback delay in milliseconds. Empty when valid server SEI data is unavailable.
|
|
12707
|
+
*/
|
|
12708
|
+
delay_s2e?: number;
|
|
12709
|
+
}
|
|
12642
12710
|
/** {zh}
|
|
12643
12711
|
* @list option
|
|
12644
12712
|
* @kind property
|
|
@@ -12649,7 +12717,7 @@ declare namespace live {
|
|
|
12649
12717
|
* @kind property
|
|
12650
12718
|
* @brief RTM live stream information.
|
|
12651
12719
|
*/
|
|
12652
|
-
interface StatsSnapShoot {
|
|
12720
|
+
interface StatsSnapShoot extends SEIDelayStats {
|
|
12653
12721
|
/** {en}
|
|
12654
12722
|
* @brief Video information.
|
|
12655
12723
|
*/
|
|
@@ -12880,7 +12948,7 @@ declare namespace live {
|
|
|
12880
12948
|
* @kind property
|
|
12881
12949
|
* @brief Basic information for live stream playback.
|
|
12882
12950
|
*/
|
|
12883
|
-
interface Stats$0 {
|
|
12951
|
+
interface Stats$0 extends SEIDelayStats {
|
|
12884
12952
|
/** {zh}
|
|
12885
12953
|
* @brief 音频格式。
|
|
12886
12954
|
* @hidden
|
|
@@ -13038,6 +13106,7 @@ declare namespace live {
|
|
|
13038
13106
|
* @hidden
|
|
13039
13107
|
*/
|
|
13040
13108
|
_protocolManager?: ProtocolManager;
|
|
13109
|
+
private _seiDelayStats;
|
|
13041
13110
|
/** {zh}
|
|
13042
13111
|
* @hidden
|
|
13043
13112
|
* @param options
|
|
@@ -13068,6 +13137,13 @@ declare namespace live {
|
|
|
13068
13137
|
* @hidden
|
|
13069
13138
|
*/
|
|
13070
13139
|
get hls(): any;
|
|
13140
|
+
/** {zh}
|
|
13141
|
+
* @hidden
|
|
13142
|
+
*/
|
|
13143
|
+
/** {en}
|
|
13144
|
+
* @hidden
|
|
13145
|
+
*/
|
|
13146
|
+
destroy(): void;
|
|
13071
13147
|
/** {zh}
|
|
13072
13148
|
* @brief 调用此方法开启直播日志上报。
|
|
13073
13149
|
*/
|
|
@@ -13220,6 +13296,10 @@ declare namespace live {
|
|
|
13220
13296
|
*/
|
|
13221
13297
|
source?: string;
|
|
13222
13298
|
}, needUpdateProtocol?: boolean): Promise<void>;
|
|
13299
|
+
private _resetSEIDelayStats;
|
|
13300
|
+
private _handleSEI;
|
|
13301
|
+
private _getPlayerBufferTime;
|
|
13302
|
+
private _mergeSEIDelayStats;
|
|
13223
13303
|
}
|
|
13224
13304
|
/** {zh}
|
|
13225
13305
|
* @detail api
|
|
@@ -13645,13 +13725,6 @@ declare namespace live {
|
|
|
13645
13725
|
* The player parses the SEI information.
|
|
13646
13726
|
*/
|
|
13647
13727
|
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",
|
|
13655
13728
|
/** {zh}
|
|
13656
13729
|
* 时移状态切换
|
|
13657
13730
|
*/
|
|
@@ -14323,67 +14396,6 @@ declare namespace live {
|
|
|
14323
14396
|
uuid: string;
|
|
14324
14397
|
};
|
|
14325
14398
|
}) => 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;
|
|
14387
14399
|
/** {zh}
|
|
14388
14400
|
* @brief 时移状态切换。
|
|
14389
14401
|
* @param isTimeShift 是否是时移状态。
|
|
@@ -14625,7 +14637,6 @@ declare namespace live {
|
|
|
14625
14637
|
HLS_PLAYOUT_LIMIT_REACHED: HLS.Events.PLAYOUT_LIMIT_REACHED;
|
|
14626
14638
|
HLS_EVENT_CUE_ENTER: HLS.Events.EVENT_CUE_ENTER;
|
|
14627
14639
|
SEI: string;
|
|
14628
|
-
SEI_IN_TIME: string;
|
|
14629
14640
|
PLAYER_CREATE_FINISH: string;
|
|
14630
14641
|
FALLBACK_ERROR: string;
|
|
14631
14642
|
FALLBACK: string;
|
|
@@ -10905,8 +10905,6 @@ var ZH = {
|
|
|
10905
10905
|
const BaseEvents = {
|
|
10906
10906
|
// sei
|
|
10907
10907
|
SEI: "sei",
|
|
10908
|
-
// sei,在播放时间对齐到该 sei 的时间戳时抛出
|
|
10909
|
-
SEI_IN_TIME: "seiInTime",
|
|
10910
10908
|
// 播放器完成创建
|
|
10911
10909
|
PLAYER_CREATE_FINISH: "playerCreateFinish",
|
|
10912
10910
|
FALLBACK_ERROR: "fallbackError",
|
|
@@ -10967,10 +10965,6 @@ const EVENT_TRANSFORMATION = {
|
|
|
10967
10965
|
event: "core_event",
|
|
10968
10966
|
shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.sei"
|
|
10969
10967
|
},
|
|
10970
|
-
[BaseEvents.SEI_IN_TIME]: {
|
|
10971
|
-
event: "core_event",
|
|
10972
|
-
shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.seiintime"
|
|
10973
|
-
},
|
|
10974
10968
|
[BaseEvents.RTM_NETWORK]: {
|
|
10975
10969
|
event: "core_event",
|
|
10976
10970
|
shouldCallback: (data2) => (data2 == null ? void 0 : data2.eventName) === "core.rtcnetwork"
|
|
@@ -14717,7 +14711,7 @@ class VePlayerBase {
|
|
|
14717
14711
|
* @brief Retrieve the player SDK version number.
|
|
14718
14712
|
*/
|
|
14719
14713
|
get playerVersion() {
|
|
14720
|
-
return "2.
|
|
14714
|
+
return "2.13.1-rc.0";
|
|
14721
14715
|
}
|
|
14722
14716
|
/** {zh}
|
|
14723
14717
|
* @brief 获取当前播放视频的清晰度唯一标识(definition)。
|
|
@@ -56512,7 +56506,7 @@ let Logger$1 = class Logger2 extends Plugin {
|
|
|
56512
56506
|
device_id: deviceId,
|
|
56513
56507
|
error_report_stop: true,
|
|
56514
56508
|
ext: {
|
|
56515
|
-
veplayer_version: "2.
|
|
56509
|
+
veplayer_version: "2.13.1-rc.0",
|
|
56516
56510
|
flv_version: "3.0.24-rc.6",
|
|
56517
56511
|
hls_version: "3.0.24-rc.2",
|
|
56518
56512
|
rts_version: "0.2.1-alpha.64"
|
|
@@ -56526,7 +56520,6 @@ function normalizeNumber(value, transform2) {
|
|
|
56526
56520
|
return transform2 ? transform2(value) : value.toString();
|
|
56527
56521
|
}
|
|
56528
56522
|
function getDefaultRow(data2) {
|
|
56529
|
-
var _a;
|
|
56530
56523
|
return {
|
|
56531
56524
|
rows: [
|
|
56532
56525
|
{
|
|
@@ -56567,7 +56560,10 @@ function getDefaultRow(data2) {
|
|
|
56567
56560
|
{
|
|
56568
56561
|
key: "bufferEnd",
|
|
56569
56562
|
labelTextKey: "BUFFER_END",
|
|
56570
|
-
value: normalizeNumber(
|
|
56563
|
+
value: normalizeNumber(
|
|
56564
|
+
data2.bufferEnd,
|
|
56565
|
+
(value) => Number(value.toFixed(2)).toString()
|
|
56566
|
+
)
|
|
56571
56567
|
},
|
|
56572
56568
|
{
|
|
56573
56569
|
key: "currentTime",
|
|
@@ -73909,6 +73905,79 @@ class LiveVeStrategy {
|
|
|
73909
73905
|
}
|
|
73910
73906
|
}
|
|
73911
73907
|
const liveVeStrategy = new LiveVeStrategy();
|
|
73908
|
+
const isNumber = (value) => typeof value === "number" && Number.isFinite(value);
|
|
73909
|
+
const getTimestamp = (delaySEI, currentKey, legacyKey) => {
|
|
73910
|
+
const currentValue = delaySEI[currentKey];
|
|
73911
|
+
if (isNumber(currentValue)) {
|
|
73912
|
+
return currentValue;
|
|
73913
|
+
}
|
|
73914
|
+
const legacyValue = delaySEI[legacyKey];
|
|
73915
|
+
return isNumber(legacyValue) ? legacyValue : void 0;
|
|
73916
|
+
};
|
|
73917
|
+
const utf8ArrayToString = (array) => {
|
|
73918
|
+
let result = "";
|
|
73919
|
+
let index = 0;
|
|
73920
|
+
while (index < array.length) {
|
|
73921
|
+
const first = array[index++];
|
|
73922
|
+
if (first < 128) {
|
|
73923
|
+
result += String.fromCharCode(first);
|
|
73924
|
+
} else if (first < 224) {
|
|
73925
|
+
const second = array[index++];
|
|
73926
|
+
result += String.fromCharCode((first & 31) << 6 | second & 63);
|
|
73927
|
+
} else {
|
|
73928
|
+
const second = array[index++];
|
|
73929
|
+
const third = array[index++];
|
|
73930
|
+
result += String.fromCharCode(
|
|
73931
|
+
(first & 15) << 12 | (second & 63) << 6 | third & 63
|
|
73932
|
+
);
|
|
73933
|
+
}
|
|
73934
|
+
}
|
|
73935
|
+
return result;
|
|
73936
|
+
};
|
|
73937
|
+
const getSEIDelayStats = (sei, bufferTime = 0, now3 = Date.now()) => {
|
|
73938
|
+
if ((sei == null ? void 0 : sei.code) !== 100 || !sei.content) {
|
|
73939
|
+
return;
|
|
73940
|
+
}
|
|
73941
|
+
try {
|
|
73942
|
+
const rawSEI = utf8ArrayToString(sei.content);
|
|
73943
|
+
const jsonStart = rawSEI.indexOf("{");
|
|
73944
|
+
const jsonEnd = rawSEI.lastIndexOf("}");
|
|
73945
|
+
if (jsonStart < 0 || jsonEnd < jsonStart) {
|
|
73946
|
+
return;
|
|
73947
|
+
}
|
|
73948
|
+
const seiContent = JSON.parse(rawSEI.slice(jsonStart, jsonEnd + 1));
|
|
73949
|
+
const delaySEI = seiContent == null ? void 0 : seiContent.video_e2e_delay;
|
|
73950
|
+
if (!delaySEI || typeof delaySEI !== "object") {
|
|
73951
|
+
return;
|
|
73952
|
+
}
|
|
73953
|
+
const push3 = getTimestamp(delaySEI, "push_edge_ts", "push_node");
|
|
73954
|
+
const source = getTimestamp(delaySEI, "source_ts", "source_node");
|
|
73955
|
+
const cmafSource = getTimestamp(
|
|
73956
|
+
delaySEI,
|
|
73957
|
+
"cmaf_source_ts",
|
|
73958
|
+
"cmaf_source_node"
|
|
73959
|
+
);
|
|
73960
|
+
const hlsSource = getTimestamp(
|
|
73961
|
+
delaySEI,
|
|
73962
|
+
"hls_source_ts",
|
|
73963
|
+
"hls_source_node"
|
|
73964
|
+
);
|
|
73965
|
+
const pull = getTimestamp(delaySEI, "pull_edge_ts", "pull_node");
|
|
73966
|
+
const start = push3 ?? source;
|
|
73967
|
+
const end = pull ?? hlsSource ?? cmafSource;
|
|
73968
|
+
if (!isNumber(start) || !isNumber(end)) {
|
|
73969
|
+
return;
|
|
73970
|
+
}
|
|
73971
|
+
const delayS2S = end - start;
|
|
73972
|
+
const safeBufferTime = isNumber(bufferTime) ? Math.max(0, bufferTime) : 0;
|
|
73973
|
+
return {
|
|
73974
|
+
delay_s2s: delayS2S,
|
|
73975
|
+
delay_s2e: delayS2S + Math.max(0, now3 - end) + safeBufferTime
|
|
73976
|
+
};
|
|
73977
|
+
} catch (e2) {
|
|
73978
|
+
return;
|
|
73979
|
+
}
|
|
73980
|
+
};
|
|
73912
73981
|
VeI18n.extend([
|
|
73913
73982
|
{
|
|
73914
73983
|
LANG: "zh-cn",
|
|
@@ -73947,6 +74016,22 @@ class VePlayerLive extends VePlayerBase {
|
|
|
73947
74016
|
* @hidden
|
|
73948
74017
|
*/
|
|
73949
74018
|
__publicField(this, "_protocolManager");
|
|
74019
|
+
__publicField(this, "_seiDelayStats", {});
|
|
74020
|
+
__publicField(this, "_resetSEIDelayStats", () => {
|
|
74021
|
+
this._seiDelayStats = {};
|
|
74022
|
+
});
|
|
74023
|
+
__publicField(this, "_handleSEI", (data2) => {
|
|
74024
|
+
const stats = getSEIDelayStats(data2 == null ? void 0 : data2.sei, this._getPlayerBufferTime());
|
|
74025
|
+
if (stats) {
|
|
74026
|
+
this._seiDelayStats = stats;
|
|
74027
|
+
}
|
|
74028
|
+
});
|
|
74029
|
+
this.on(Events.SEI, this._handleSEI);
|
|
74030
|
+
this.on(Events.URL_CHANGE, this._resetSEIDelayStats);
|
|
74031
|
+
this.on(Events.SOURCE_CHANGE, this._resetSEIDelayStats);
|
|
74032
|
+
this.on(Events.DEFINITION_CHANGE, this._resetSEIDelayStats);
|
|
74033
|
+
this.on(Events.REPLAY, this._resetSEIDelayStats);
|
|
74034
|
+
this.on(Events.FALLBACK, this._resetSEIDelayStats);
|
|
73950
74035
|
}
|
|
73951
74036
|
/** {zh}
|
|
73952
74037
|
* @brief 获取已经播放的时长,不包含暂停和等待时间,单位为秒。
|
|
@@ -73988,6 +74073,22 @@ class VePlayerLive extends VePlayerBase {
|
|
|
73988
74073
|
var _a, _b;
|
|
73989
74074
|
return (_b = (_a = this._player.plugins) == null ? void 0 : _a.hls) == null ? void 0 : _b.hls;
|
|
73990
74075
|
}
|
|
74076
|
+
/** {zh}
|
|
74077
|
+
* @hidden
|
|
74078
|
+
*/
|
|
74079
|
+
/** {en}
|
|
74080
|
+
* @hidden
|
|
74081
|
+
*/
|
|
74082
|
+
destroy() {
|
|
74083
|
+
this.off(Events.SEI, this._handleSEI);
|
|
74084
|
+
this.off(Events.URL_CHANGE, this._resetSEIDelayStats);
|
|
74085
|
+
this.off(Events.SOURCE_CHANGE, this._resetSEIDelayStats);
|
|
74086
|
+
this.off(Events.DEFINITION_CHANGE, this._resetSEIDelayStats);
|
|
74087
|
+
this.off(Events.REPLAY, this._resetSEIDelayStats);
|
|
74088
|
+
this.off(Events.FALLBACK, this._resetSEIDelayStats);
|
|
74089
|
+
this._resetSEIDelayStats();
|
|
74090
|
+
super.destroy();
|
|
74091
|
+
}
|
|
73991
74092
|
/** {zh}
|
|
73992
74093
|
* @brief 调用此方法开启直播日志上报。
|
|
73993
74094
|
*/
|
|
@@ -74124,7 +74225,8 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74124
74225
|
*/
|
|
74125
74226
|
async getRTMStats() {
|
|
74126
74227
|
var _a, _b, _c;
|
|
74127
|
-
|
|
74228
|
+
const stats = await ((_c = (_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.rts) == null ? void 0 : _c.getStatsSnapshoot());
|
|
74229
|
+
return this._mergeSEIDelayStats(stats);
|
|
74128
74230
|
}
|
|
74129
74231
|
/** {zh}
|
|
74130
74232
|
* @brief 获取 FLV 拉流的播放信息。
|
|
@@ -74135,7 +74237,8 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74135
74237
|
*/
|
|
74136
74238
|
getFLVStats() {
|
|
74137
74239
|
var _a, _b, _c;
|
|
74138
|
-
|
|
74240
|
+
const stats = (_c = (_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.flv) == null ? void 0 : _c.getStats();
|
|
74241
|
+
return this._mergeSEIDelayStats(stats);
|
|
74139
74242
|
}
|
|
74140
74243
|
/** {zh}
|
|
74141
74244
|
* @brief 获取 HLS 拉流的播放信息。
|
|
@@ -74147,8 +74250,9 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74147
74250
|
* @hidden
|
|
74148
74251
|
*/
|
|
74149
74252
|
getHLSStats() {
|
|
74150
|
-
var _a, _b, _c;
|
|
74151
|
-
|
|
74253
|
+
var _a, _b, _c, _d;
|
|
74254
|
+
const stats = ((_d = (_c = (_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.hls) == null ? void 0 : _c.getStats) == null ? void 0 : _d.call(_c)) ?? {};
|
|
74255
|
+
return this._mergeSEIDelayStats(stats);
|
|
74152
74256
|
}
|
|
74153
74257
|
/** {en}
|
|
74154
74258
|
* @brief This method is used to update the playlist, supporting updates to source, resolution, and related information.
|
|
@@ -74176,6 +74280,40 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74176
74280
|
}
|
|
74177
74281
|
return super.updatePlaylist(playlist, target);
|
|
74178
74282
|
}
|
|
74283
|
+
_getPlayerBufferTime() {
|
|
74284
|
+
var _a, _b, _c, _d, _e2;
|
|
74285
|
+
try {
|
|
74286
|
+
const rtm = ((_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.rts) ?? ((_d = (_c = this._player) == null ? void 0 : _c.plugins) == null ? void 0 : _d.rtm);
|
|
74287
|
+
if (rtm) {
|
|
74288
|
+
const jitterBufferDelay = rtm.jitterBufferDelay;
|
|
74289
|
+
if (Number.isFinite(jitterBufferDelay) && jitterBufferDelay >= 0) {
|
|
74290
|
+
return jitterBufferDelay;
|
|
74291
|
+
}
|
|
74292
|
+
}
|
|
74293
|
+
} catch (e2) {
|
|
74294
|
+
}
|
|
74295
|
+
const video = (_e2 = this._player) == null ? void 0 : _e2.video;
|
|
74296
|
+
const buffered = video == null ? void 0 : video.buffered;
|
|
74297
|
+
if (!video || !(buffered == null ? void 0 : buffered.length)) {
|
|
74298
|
+
return 0;
|
|
74299
|
+
}
|
|
74300
|
+
try {
|
|
74301
|
+
return Math.trunc(
|
|
74302
|
+
(buffered.end(buffered.length - 1) - video.currentTime) * 1e3
|
|
74303
|
+
);
|
|
74304
|
+
} catch (e2) {
|
|
74305
|
+
return 0;
|
|
74306
|
+
}
|
|
74307
|
+
}
|
|
74308
|
+
_mergeSEIDelayStats(stats) {
|
|
74309
|
+
if (!stats) {
|
|
74310
|
+
return stats;
|
|
74311
|
+
}
|
|
74312
|
+
return {
|
|
74313
|
+
...stats,
|
|
74314
|
+
...this._seiDelayStats
|
|
74315
|
+
};
|
|
74316
|
+
}
|
|
74179
74317
|
}
|
|
74180
74318
|
async function createLivePlayer(options) {
|
|
74181
74319
|
var _a, _b, _c, _d, _e2, _f, _g, _h, _i2, _j, _k;
|
|
@@ -74208,6 +74346,10 @@ async function createLivePlayer(options) {
|
|
|
74208
74346
|
playerOptions,
|
|
74209
74347
|
recommendation
|
|
74210
74348
|
);
|
|
74349
|
+
finalOptions.rtm = {
|
|
74350
|
+
enableSei: true,
|
|
74351
|
+
...finalOptions.rtm
|
|
74352
|
+
};
|
|
74211
74353
|
await liveLicenseManager.create();
|
|
74212
74354
|
const licenseFatalError = liveLicenseManager.getLicenseFatalError();
|
|
74213
74355
|
const protocolManager = await ProtocolManager.create(finalOptions);
|
|
@@ -74311,7 +74453,7 @@ async function prepare(options) {
|
|
|
74311
74453
|
}
|
|
74312
74454
|
await ((_a = liveVeStrategy.veStrategyManager) == null ? void 0 : _a.init({
|
|
74313
74455
|
...options,
|
|
74314
|
-
playerVersion: "2.
|
|
74456
|
+
playerVersion: "2.13.1-rc.0",
|
|
74315
74457
|
type: "LIVE"
|
|
74316
74458
|
}));
|
|
74317
74459
|
return liveVeStrategy.veStrategyManager;
|