@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.live.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",
|
|
@@ -73915,6 +73911,79 @@ class LiveVeStrategy {
|
|
|
73915
73911
|
}
|
|
73916
73912
|
}
|
|
73917
73913
|
const liveVeStrategy = new LiveVeStrategy();
|
|
73914
|
+
const isNumber = (value) => typeof value === "number" && Number.isFinite(value);
|
|
73915
|
+
const getTimestamp = (delaySEI, currentKey, legacyKey) => {
|
|
73916
|
+
const currentValue = delaySEI[currentKey];
|
|
73917
|
+
if (isNumber(currentValue)) {
|
|
73918
|
+
return currentValue;
|
|
73919
|
+
}
|
|
73920
|
+
const legacyValue = delaySEI[legacyKey];
|
|
73921
|
+
return isNumber(legacyValue) ? legacyValue : void 0;
|
|
73922
|
+
};
|
|
73923
|
+
const utf8ArrayToString = (array) => {
|
|
73924
|
+
let result = "";
|
|
73925
|
+
let index = 0;
|
|
73926
|
+
while (index < array.length) {
|
|
73927
|
+
const first = array[index++];
|
|
73928
|
+
if (first < 128) {
|
|
73929
|
+
result += String.fromCharCode(first);
|
|
73930
|
+
} else if (first < 224) {
|
|
73931
|
+
const second = array[index++];
|
|
73932
|
+
result += String.fromCharCode((first & 31) << 6 | second & 63);
|
|
73933
|
+
} else {
|
|
73934
|
+
const second = array[index++];
|
|
73935
|
+
const third = array[index++];
|
|
73936
|
+
result += String.fromCharCode(
|
|
73937
|
+
(first & 15) << 12 | (second & 63) << 6 | third & 63
|
|
73938
|
+
);
|
|
73939
|
+
}
|
|
73940
|
+
}
|
|
73941
|
+
return result;
|
|
73942
|
+
};
|
|
73943
|
+
const getSEIDelayStats = (sei, bufferTime = 0, now3 = Date.now()) => {
|
|
73944
|
+
if ((sei == null ? void 0 : sei.code) !== 100 || !sei.content) {
|
|
73945
|
+
return;
|
|
73946
|
+
}
|
|
73947
|
+
try {
|
|
73948
|
+
const rawSEI = utf8ArrayToString(sei.content);
|
|
73949
|
+
const jsonStart = rawSEI.indexOf("{");
|
|
73950
|
+
const jsonEnd = rawSEI.lastIndexOf("}");
|
|
73951
|
+
if (jsonStart < 0 || jsonEnd < jsonStart) {
|
|
73952
|
+
return;
|
|
73953
|
+
}
|
|
73954
|
+
const seiContent = JSON.parse(rawSEI.slice(jsonStart, jsonEnd + 1));
|
|
73955
|
+
const delaySEI = seiContent == null ? void 0 : seiContent.video_e2e_delay;
|
|
73956
|
+
if (!delaySEI || typeof delaySEI !== "object") {
|
|
73957
|
+
return;
|
|
73958
|
+
}
|
|
73959
|
+
const push3 = getTimestamp(delaySEI, "push_edge_ts", "push_node");
|
|
73960
|
+
const source = getTimestamp(delaySEI, "source_ts", "source_node");
|
|
73961
|
+
const cmafSource = getTimestamp(
|
|
73962
|
+
delaySEI,
|
|
73963
|
+
"cmaf_source_ts",
|
|
73964
|
+
"cmaf_source_node"
|
|
73965
|
+
);
|
|
73966
|
+
const hlsSource = getTimestamp(
|
|
73967
|
+
delaySEI,
|
|
73968
|
+
"hls_source_ts",
|
|
73969
|
+
"hls_source_node"
|
|
73970
|
+
);
|
|
73971
|
+
const pull = getTimestamp(delaySEI, "pull_edge_ts", "pull_node");
|
|
73972
|
+
const start = push3 ?? source;
|
|
73973
|
+
const end = pull ?? hlsSource ?? cmafSource;
|
|
73974
|
+
if (!isNumber(start) || !isNumber(end)) {
|
|
73975
|
+
return;
|
|
73976
|
+
}
|
|
73977
|
+
const delayS2S = end - start;
|
|
73978
|
+
const safeBufferTime = isNumber(bufferTime) ? Math.max(0, bufferTime) : 0;
|
|
73979
|
+
return {
|
|
73980
|
+
delay_s2s: delayS2S,
|
|
73981
|
+
delay_s2e: delayS2S + Math.max(0, now3 - end) + safeBufferTime
|
|
73982
|
+
};
|
|
73983
|
+
} catch (e2) {
|
|
73984
|
+
return;
|
|
73985
|
+
}
|
|
73986
|
+
};
|
|
73918
73987
|
VeI18n.extend([
|
|
73919
73988
|
{
|
|
73920
73989
|
LANG: "zh-cn",
|
|
@@ -73953,6 +74022,22 @@ class VePlayerLive extends VePlayerBase {
|
|
|
73953
74022
|
* @hidden
|
|
73954
74023
|
*/
|
|
73955
74024
|
__publicField(this, "_protocolManager");
|
|
74025
|
+
__publicField(this, "_seiDelayStats", {});
|
|
74026
|
+
__publicField(this, "_resetSEIDelayStats", () => {
|
|
74027
|
+
this._seiDelayStats = {};
|
|
74028
|
+
});
|
|
74029
|
+
__publicField(this, "_handleSEI", (data2) => {
|
|
74030
|
+
const stats = getSEIDelayStats(data2 == null ? void 0 : data2.sei, this._getPlayerBufferTime());
|
|
74031
|
+
if (stats) {
|
|
74032
|
+
this._seiDelayStats = stats;
|
|
74033
|
+
}
|
|
74034
|
+
});
|
|
74035
|
+
this.on(Events.SEI, this._handleSEI);
|
|
74036
|
+
this.on(Events.URL_CHANGE, this._resetSEIDelayStats);
|
|
74037
|
+
this.on(Events.SOURCE_CHANGE, this._resetSEIDelayStats);
|
|
74038
|
+
this.on(Events.DEFINITION_CHANGE, this._resetSEIDelayStats);
|
|
74039
|
+
this.on(Events.REPLAY, this._resetSEIDelayStats);
|
|
74040
|
+
this.on(Events.FALLBACK, this._resetSEIDelayStats);
|
|
73956
74041
|
}
|
|
73957
74042
|
/** {zh}
|
|
73958
74043
|
* @brief 获取已经播放的时长,不包含暂停和等待时间,单位为秒。
|
|
@@ -73994,6 +74079,22 @@ class VePlayerLive extends VePlayerBase {
|
|
|
73994
74079
|
var _a, _b;
|
|
73995
74080
|
return (_b = (_a = this._player.plugins) == null ? void 0 : _a.hls) == null ? void 0 : _b.hls;
|
|
73996
74081
|
}
|
|
74082
|
+
/** {zh}
|
|
74083
|
+
* @hidden
|
|
74084
|
+
*/
|
|
74085
|
+
/** {en}
|
|
74086
|
+
* @hidden
|
|
74087
|
+
*/
|
|
74088
|
+
destroy() {
|
|
74089
|
+
this.off(Events.SEI, this._handleSEI);
|
|
74090
|
+
this.off(Events.URL_CHANGE, this._resetSEIDelayStats);
|
|
74091
|
+
this.off(Events.SOURCE_CHANGE, this._resetSEIDelayStats);
|
|
74092
|
+
this.off(Events.DEFINITION_CHANGE, this._resetSEIDelayStats);
|
|
74093
|
+
this.off(Events.REPLAY, this._resetSEIDelayStats);
|
|
74094
|
+
this.off(Events.FALLBACK, this._resetSEIDelayStats);
|
|
74095
|
+
this._resetSEIDelayStats();
|
|
74096
|
+
super.destroy();
|
|
74097
|
+
}
|
|
73997
74098
|
/** {zh}
|
|
73998
74099
|
* @brief 调用此方法开启直播日志上报。
|
|
73999
74100
|
*/
|
|
@@ -74130,7 +74231,8 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74130
74231
|
*/
|
|
74131
74232
|
async getRTMStats() {
|
|
74132
74233
|
var _a, _b, _c;
|
|
74133
|
-
|
|
74234
|
+
const stats = await ((_c = (_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.rts) == null ? void 0 : _c.getStatsSnapshoot());
|
|
74235
|
+
return this._mergeSEIDelayStats(stats);
|
|
74134
74236
|
}
|
|
74135
74237
|
/** {zh}
|
|
74136
74238
|
* @brief 获取 FLV 拉流的播放信息。
|
|
@@ -74141,7 +74243,8 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74141
74243
|
*/
|
|
74142
74244
|
getFLVStats() {
|
|
74143
74245
|
var _a, _b, _c;
|
|
74144
|
-
|
|
74246
|
+
const stats = (_c = (_b = (_a = this._player) == null ? void 0 : _a.plugins) == null ? void 0 : _b.flv) == null ? void 0 : _c.getStats();
|
|
74247
|
+
return this._mergeSEIDelayStats(stats);
|
|
74145
74248
|
}
|
|
74146
74249
|
/** {zh}
|
|
74147
74250
|
* @brief 获取 HLS 拉流的播放信息。
|
|
@@ -74153,8 +74256,9 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74153
74256
|
* @hidden
|
|
74154
74257
|
*/
|
|
74155
74258
|
getHLSStats() {
|
|
74156
|
-
var _a, _b, _c;
|
|
74157
|
-
|
|
74259
|
+
var _a, _b, _c, _d;
|
|
74260
|
+
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)) ?? {};
|
|
74261
|
+
return this._mergeSEIDelayStats(stats);
|
|
74158
74262
|
}
|
|
74159
74263
|
/** {en}
|
|
74160
74264
|
* @brief This method is used to update the playlist, supporting updates to source, resolution, and related information.
|
|
@@ -74182,6 +74286,40 @@ class VePlayerLive extends VePlayerBase {
|
|
|
74182
74286
|
}
|
|
74183
74287
|
return super.updatePlaylist(playlist, target);
|
|
74184
74288
|
}
|
|
74289
|
+
_getPlayerBufferTime() {
|
|
74290
|
+
var _a, _b, _c, _d, _e2;
|
|
74291
|
+
try {
|
|
74292
|
+
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);
|
|
74293
|
+
if (rtm) {
|
|
74294
|
+
const jitterBufferDelay = rtm.jitterBufferDelay;
|
|
74295
|
+
if (Number.isFinite(jitterBufferDelay) && jitterBufferDelay >= 0) {
|
|
74296
|
+
return jitterBufferDelay;
|
|
74297
|
+
}
|
|
74298
|
+
}
|
|
74299
|
+
} catch (e2) {
|
|
74300
|
+
}
|
|
74301
|
+
const video = (_e2 = this._player) == null ? void 0 : _e2.video;
|
|
74302
|
+
const buffered = video == null ? void 0 : video.buffered;
|
|
74303
|
+
if (!video || !(buffered == null ? void 0 : buffered.length)) {
|
|
74304
|
+
return 0;
|
|
74305
|
+
}
|
|
74306
|
+
try {
|
|
74307
|
+
return Math.trunc(
|
|
74308
|
+
(buffered.end(buffered.length - 1) - video.currentTime) * 1e3
|
|
74309
|
+
);
|
|
74310
|
+
} catch (e2) {
|
|
74311
|
+
return 0;
|
|
74312
|
+
}
|
|
74313
|
+
}
|
|
74314
|
+
_mergeSEIDelayStats(stats) {
|
|
74315
|
+
if (!stats) {
|
|
74316
|
+
return stats;
|
|
74317
|
+
}
|
|
74318
|
+
return {
|
|
74319
|
+
...stats,
|
|
74320
|
+
...this._seiDelayStats
|
|
74321
|
+
};
|
|
74322
|
+
}
|
|
74185
74323
|
}
|
|
74186
74324
|
async function createLivePlayer(options) {
|
|
74187
74325
|
var _a, _b, _c, _d, _e2, _f, _g, _h, _i2, _j, _k;
|
|
@@ -74214,6 +74352,10 @@ async function createLivePlayer(options) {
|
|
|
74214
74352
|
playerOptions,
|
|
74215
74353
|
recommendation
|
|
74216
74354
|
);
|
|
74355
|
+
finalOptions.rtm = {
|
|
74356
|
+
enableSei: true,
|
|
74357
|
+
...finalOptions.rtm
|
|
74358
|
+
};
|
|
74217
74359
|
await liveLicenseManager.create();
|
|
74218
74360
|
const licenseFatalError = liveLicenseManager.getLicenseFatalError();
|
|
74219
74361
|
const protocolManager = await ProtocolManager.create(finalOptions);
|
|
@@ -74317,7 +74459,7 @@ async function prepare(options) {
|
|
|
74317
74459
|
}
|
|
74318
74460
|
await ((_a = liveVeStrategy.veStrategyManager) == null ? void 0 : _a.init({
|
|
74319
74461
|
...options,
|
|
74320
|
-
playerVersion: "2.
|
|
74462
|
+
playerVersion: "2.13.1-rc.0",
|
|
74321
74463
|
type: "LIVE"
|
|
74322
74464
|
}));
|
|
74323
74465
|
return liveVeStrategy.veStrategyManager;
|