@volcengine/veplayer 2.10.3 → 2.10.4-rc.1
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 +9 -4
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.d.ts +2 -1
- package/esm/veplayer.development.js +10 -5
- package/esm/veplayer.live.d.ts +2 -1
- package/esm/veplayer.live.development.js +10 -5
- 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 +9 -4
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.d.ts +2 -1
- package/umd/veplayer.development.js +10 -5
- package/umd/veplayer.live.d.ts +2 -1
- package/umd/veplayer.live.development.js +10 -5
- 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 +2 -1
- package/veplayer.live.d.ts +2 -1
|
@@ -26571,10 +26571,10 @@ let Logger$1 = class Logger2 extends Plugin$2 {
|
|
|
26571
26571
|
device_id: deviceId,
|
|
26572
26572
|
error_report_stop: true,
|
|
26573
26573
|
ext: {
|
|
26574
|
-
veplayer_version: "2.3.
|
|
26575
|
-
flv_version: "3.0.23-rc.
|
|
26574
|
+
veplayer_version: "2.3.1-rc.1",
|
|
26575
|
+
flv_version: "3.0.23-rc.7",
|
|
26576
26576
|
hls_version: "3.0.21-rc.21",
|
|
26577
|
-
rts_version: "0.2.1-alpha.
|
|
26577
|
+
rts_version: "0.2.1-alpha.62"
|
|
26578
26578
|
}
|
|
26579
26579
|
});
|
|
26580
26580
|
}
|
|
@@ -28525,6 +28525,10 @@ async function isRTMSupportCodec(codec = RTMCodec.H264) {
|
|
|
28525
28525
|
return RtmPlugin.isSupportedH264();
|
|
28526
28526
|
return false;
|
|
28527
28527
|
}
|
|
28528
|
+
async function isRTMSeiSupported() {
|
|
28529
|
+
const { RtmPlugin } = await load$4(DynamicModule$5.PluginRtm);
|
|
28530
|
+
return RtmPlugin.isEncodedTransformSupported();
|
|
28531
|
+
}
|
|
28528
28532
|
const strategy = window["VePlayer"].strategy;
|
|
28529
28533
|
const util$1 = window["VePlayer"].util;
|
|
28530
28534
|
const DynamicModule$4 = window["VePlayer"].DynamicModule;
|
|
@@ -49947,7 +49951,7 @@ async function prepare(options) {
|
|
|
49947
49951
|
}
|
|
49948
49952
|
await ((_a = liveVeStrategy.veStrategyManager) == null ? void 0 : _a.init({
|
|
49949
49953
|
...options,
|
|
49950
|
-
playerVersion: "2.3.
|
|
49954
|
+
playerVersion: "2.3.1-rc.1",
|
|
49951
49955
|
type: "LIVE"
|
|
49952
49956
|
}));
|
|
49953
49957
|
return liveVeStrategy.veStrategyManager;
|
|
@@ -49994,6 +49998,7 @@ export {
|
|
|
49994
49998
|
isFLVSupported,
|
|
49995
49999
|
isMMSSupported,
|
|
49996
50000
|
isMseSupported,
|
|
50001
|
+
isRTMSeiSupported,
|
|
49997
50002
|
isRTMSupportCodec,
|
|
49998
50003
|
isRTMSupported,
|
|
49999
50004
|
isSoftDecodeSupported,
|