@volcengine/veplayer 2.9.3-rc.1 → 2.9.3-rc.2
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.biz.live.development.js +8 -1
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.development.js +10 -3
- package/esm/veplayer.live.development.js +10 -3
- package/esm/veplayer.live.production.js +2 -2
- package/esm/veplayer.production.js +2 -2
- package/esm/veplayer.vod.development.js +1 -1
- package/esm/veplayer.vod.production.js +1 -1
- package/package.json +1 -1
- package/umd/veplayer.biz.live.development.js +8 -1
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.development.js +10 -3
- package/umd/veplayer.live.development.js +10 -3
- package/umd/veplayer.live.production.js +1 -1
- package/umd/veplayer.production.js +1 -1
- package/umd/veplayer.vod.development.js +1 -1
- package/umd/veplayer.vod.production.js +1 -1
|
@@ -27018,6 +27018,10 @@ function getDefaultLog() {
|
|
|
27018
27018
|
// rts state change
|
|
27019
27019
|
rtcstatechange: {
|
|
27020
27020
|
event_key: "rtcstatechange"
|
|
27021
|
+
},
|
|
27022
|
+
// rtc 2s 间隔卡顿数据
|
|
27023
|
+
rtc_network: {
|
|
27024
|
+
event_key: "rtc_network"
|
|
27021
27025
|
}
|
|
27022
27026
|
};
|
|
27023
27027
|
}
|
|
@@ -27029,7 +27033,7 @@ function getCommonLog(options) {
|
|
|
27029
27033
|
live_sdk_version: getPlayerCore(player) || player.hlsOps ? "2" : "-1",
|
|
27030
27034
|
player_sdk_version: player.version,
|
|
27031
27035
|
// eslint-disable-next-line no-undef
|
|
27032
|
-
logger_version: "1.1.0-alpha.
|
|
27036
|
+
logger_version: "1.1.0-alpha.24",
|
|
27033
27037
|
// 由rollup 在编译时注入
|
|
27034
27038
|
product_line: options.product_line,
|
|
27035
27039
|
user_id: options.user_id,
|
|
@@ -27519,6 +27523,9 @@ var XgLiveLogger = /* @__PURE__ */ function() {
|
|
|
27519
27523
|
state
|
|
27520
27524
|
}, this.log.rtcstatechange));
|
|
27521
27525
|
break;
|
|
27526
|
+
case "core.rtcnetwork":
|
|
27527
|
+
this.logmanager.push(Object.assign(info, this.log.rtc_network));
|
|
27528
|
+
break;
|
|
27522
27529
|
}
|
|
27523
27530
|
};
|
|
27524
27531
|
_proto2.handleDegrade = function handleDegrade(payload) {
|