@volcengine/veplayer 2.4.2-rc.5 → 2.4.2-rc.7
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 -6
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.d.ts +4 -0
- package/esm/veplayer.development.js +10 -8
- package/esm/veplayer.live.d.ts +4 -0
- package/esm/veplayer.live.development.js +10 -8
- 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 -6
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.d.ts +4 -0
- package/umd/veplayer.development.js +10 -8
- package/umd/veplayer.live.d.ts +4 -0
- package/umd/veplayer.live.development.js +10 -8
- 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
- package/veplayer.d.ts +4 -0
- package/veplayer.live.d.ts +4 -0
package/umd/veplayer.d.ts
CHANGED
|
@@ -5584,6 +5584,8 @@ interface Rtm {
|
|
|
5584
5584
|
* @default false
|
|
5585
5585
|
*/
|
|
5586
5586
|
seamlesslyReload?: boolean;
|
|
5587
|
+
enableSei?: boolean;
|
|
5588
|
+
enableOriginSdpLogger?: boolean;
|
|
5587
5589
|
}
|
|
5588
5590
|
/** {zh}
|
|
5589
5591
|
* @list option
|
|
@@ -10399,6 +10401,8 @@ declare namespace live {
|
|
|
10399
10401
|
* @default false
|
|
10400
10402
|
*/
|
|
10401
10403
|
seamlesslyReload?: boolean;
|
|
10404
|
+
enableSei?: boolean;
|
|
10405
|
+
enableOriginSdpLogger?: boolean;
|
|
10402
10406
|
}
|
|
10403
10407
|
/** {zh}
|
|
10404
10408
|
* @list option
|
|
@@ -13746,7 +13746,7 @@ var __publicField = (obj, key, value) => {
|
|
|
13746
13746
|
* @returns
|
|
13747
13747
|
*/
|
|
13748
13748
|
get playerVersion() {
|
|
13749
|
-
return "2.4.2-rc.
|
|
13749
|
+
return "2.4.2-rc.7";
|
|
13750
13750
|
}
|
|
13751
13751
|
/** {zh}
|
|
13752
13752
|
* @brief 获取当前播放视频的清晰度唯一标识(definition)。
|
|
@@ -27789,11 +27789,13 @@ var __publicField = (obj, key, value) => {
|
|
|
27789
27789
|
}
|
|
27790
27790
|
}
|
|
27791
27791
|
_createTea() {
|
|
27792
|
-
SDK.
|
|
27793
|
-
|
|
27794
|
-
|
|
27795
|
-
|
|
27796
|
-
|
|
27792
|
+
if (!SDK.inited) {
|
|
27793
|
+
SDK.init({
|
|
27794
|
+
...this.config,
|
|
27795
|
+
app_id: 468759,
|
|
27796
|
+
channel: "cn"
|
|
27797
|
+
});
|
|
27798
|
+
}
|
|
27797
27799
|
SDK.start();
|
|
27798
27800
|
SDK.config({
|
|
27799
27801
|
user_unique_id: this._userId,
|
|
@@ -27811,10 +27813,10 @@ var __publicField = (obj, key, value) => {
|
|
|
27811
27813
|
user_id: this._userId,
|
|
27812
27814
|
device_id: this._deviceId,
|
|
27813
27815
|
ext: {
|
|
27814
|
-
veplayer_version: "2.4.2-rc.
|
|
27816
|
+
veplayer_version: "2.4.2-rc.7",
|
|
27815
27817
|
flv_version: "3.0.19-rc.0",
|
|
27816
27818
|
hls_version: "3.0.19-rc.0",
|
|
27817
|
-
rts_version: "0.2.1-alpha.
|
|
27819
|
+
rts_version: "0.2.1-alpha.13"
|
|
27818
27820
|
}
|
|
27819
27821
|
});
|
|
27820
27822
|
}
|
package/umd/veplayer.live.d.ts
CHANGED
|
@@ -5584,6 +5584,8 @@ interface Rtm {
|
|
|
5584
5584
|
* @default false
|
|
5585
5585
|
*/
|
|
5586
5586
|
seamlesslyReload?: boolean;
|
|
5587
|
+
enableSei?: boolean;
|
|
5588
|
+
enableOriginSdpLogger?: boolean;
|
|
5587
5589
|
}
|
|
5588
5590
|
/** {zh}
|
|
5589
5591
|
* @list option
|
|
@@ -10399,6 +10401,8 @@ declare namespace live {
|
|
|
10399
10401
|
* @default false
|
|
10400
10402
|
*/
|
|
10401
10403
|
seamlesslyReload?: boolean;
|
|
10404
|
+
enableSei?: boolean;
|
|
10405
|
+
enableOriginSdpLogger?: boolean;
|
|
10402
10406
|
}
|
|
10403
10407
|
/** {zh}
|
|
10404
10408
|
* @list option
|
|
@@ -13746,7 +13746,7 @@ var __publicField = (obj, key, value) => {
|
|
|
13746
13746
|
* @returns
|
|
13747
13747
|
*/
|
|
13748
13748
|
get playerVersion() {
|
|
13749
|
-
return "2.4.2-rc.
|
|
13749
|
+
return "2.4.2-rc.7";
|
|
13750
13750
|
}
|
|
13751
13751
|
/** {zh}
|
|
13752
13752
|
* @brief 获取当前播放视频的清晰度唯一标识(definition)。
|
|
@@ -27789,11 +27789,13 @@ var __publicField = (obj, key, value) => {
|
|
|
27789
27789
|
}
|
|
27790
27790
|
}
|
|
27791
27791
|
_createTea() {
|
|
27792
|
-
SDK.
|
|
27793
|
-
|
|
27794
|
-
|
|
27795
|
-
|
|
27796
|
-
|
|
27792
|
+
if (!SDK.inited) {
|
|
27793
|
+
SDK.init({
|
|
27794
|
+
...this.config,
|
|
27795
|
+
app_id: 468759,
|
|
27796
|
+
channel: "cn"
|
|
27797
|
+
});
|
|
27798
|
+
}
|
|
27797
27799
|
SDK.start();
|
|
27798
27800
|
SDK.config({
|
|
27799
27801
|
user_unique_id: this._userId,
|
|
@@ -27811,10 +27813,10 @@ var __publicField = (obj, key, value) => {
|
|
|
27811
27813
|
user_id: this._userId,
|
|
27812
27814
|
device_id: this._deviceId,
|
|
27813
27815
|
ext: {
|
|
27814
|
-
veplayer_version: "2.4.2-rc.
|
|
27816
|
+
veplayer_version: "2.4.2-rc.7",
|
|
27815
27817
|
flv_version: "3.0.19-rc.0",
|
|
27816
27818
|
hls_version: "3.0.19-rc.0",
|
|
27817
|
-
rts_version: "0.2.1-alpha.
|
|
27819
|
+
rts_version: "0.2.1-alpha.13"
|
|
27818
27820
|
}
|
|
27819
27821
|
});
|
|
27820
27822
|
}
|