@byteplus/veplayer 2.11.0 → 2.11.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 +33 -11
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.d.ts +6 -8
- package/esm/veplayer.development.js +36 -14
- package/esm/veplayer.live.d.ts +6 -8
- package/esm/veplayer.live.development.js +36 -14
- 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 +33 -11
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.d.ts +6 -8
- package/umd/veplayer.development.js +36 -14
- package/umd/veplayer.live.d.ts +6 -8
- package/umd/veplayer.live.development.js +36 -14
- 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 +6 -8
- package/veplayer.live.d.ts +6 -8
package/veplayer.d.ts
CHANGED
|
@@ -5819,6 +5819,7 @@ declare enum LicenseFeature {
|
|
|
5819
5819
|
H265 = "h265",
|
|
5820
5820
|
PRELOAD = "preload",
|
|
5821
5821
|
RTM = "rtm",
|
|
5822
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer",
|
|
5822
5823
|
ABR = "abr",
|
|
5823
5824
|
FLV_LOW_LATENCY = "flvLowLatency"
|
|
5824
5825
|
}
|
|
@@ -6313,7 +6314,8 @@ type ErrorCode = ValueOf<typeof ErrorCode>;
|
|
|
6313
6314
|
declare enum LiveLicenseFeature {
|
|
6314
6315
|
RTM = "rtm",
|
|
6315
6316
|
ABR = "abr",
|
|
6316
|
-
FLV_LOW_LATENCY = "flvLowLatency"
|
|
6317
|
+
FLV_LOW_LATENCY = "flvLowLatency",
|
|
6318
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer"
|
|
6317
6319
|
}
|
|
6318
6320
|
/** {zh}
|
|
6319
6321
|
* @list option
|
|
@@ -6347,9 +6349,6 @@ declare class LicenseEventEmitter {
|
|
|
6347
6349
|
start(player: any): void;
|
|
6348
6350
|
}
|
|
6349
6351
|
declare class LiveLicenseManager {
|
|
6350
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
6351
|
-
// @ts-ignore
|
|
6352
|
-
enableLiveLicenseCheck: boolean;
|
|
6353
6352
|
licenseSupportModuleList: LicenseFeature[];
|
|
6354
6353
|
licenseStatusResult?: LicenseStatus;
|
|
6355
6354
|
licenseCheckResult?: LicenseEdition;
|
|
@@ -11037,6 +11036,7 @@ declare namespace live {
|
|
|
11037
11036
|
H265 = "h265",
|
|
11038
11037
|
PRELOAD = "preload",
|
|
11039
11038
|
RTM = "rtm",
|
|
11039
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer",
|
|
11040
11040
|
ABR = "abr",
|
|
11041
11041
|
FLV_LOW_LATENCY = "flvLowLatency"
|
|
11042
11042
|
}
|
|
@@ -11588,7 +11588,8 @@ declare namespace live {
|
|
|
11588
11588
|
enum LiveLicenseFeature {
|
|
11589
11589
|
RTM = "rtm",
|
|
11590
11590
|
ABR = "abr",
|
|
11591
|
-
FLV_LOW_LATENCY = "flvLowLatency"
|
|
11591
|
+
FLV_LOW_LATENCY = "flvLowLatency",
|
|
11592
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer"
|
|
11592
11593
|
}
|
|
11593
11594
|
/** {zh}
|
|
11594
11595
|
* @list option
|
|
@@ -11623,9 +11624,6 @@ declare namespace live {
|
|
|
11623
11624
|
start(player: any): void;
|
|
11624
11625
|
}
|
|
11625
11626
|
class LiveLicenseManager {
|
|
11626
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
11627
|
-
// @ts-ignore
|
|
11628
|
-
enableLiveLicenseCheck: boolean;
|
|
11629
11627
|
licenseSupportModuleList: LicenseFeature[];
|
|
11630
11628
|
licenseStatusResult?: LicenseStatus;
|
|
11631
11629
|
licenseCheckResult?: LicenseEdition;
|
package/veplayer.live.d.ts
CHANGED
|
@@ -5819,6 +5819,7 @@ declare enum LicenseFeature {
|
|
|
5819
5819
|
H265 = "h265",
|
|
5820
5820
|
PRELOAD = "preload",
|
|
5821
5821
|
RTM = "rtm",
|
|
5822
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer",
|
|
5822
5823
|
ABR = "abr",
|
|
5823
5824
|
FLV_LOW_LATENCY = "flvLowLatency"
|
|
5824
5825
|
}
|
|
@@ -6313,7 +6314,8 @@ type ErrorCode = ValueOf<typeof ErrorCode>;
|
|
|
6313
6314
|
declare enum LiveLicenseFeature {
|
|
6314
6315
|
RTM = "rtm",
|
|
6315
6316
|
ABR = "abr",
|
|
6316
|
-
FLV_LOW_LATENCY = "flvLowLatency"
|
|
6317
|
+
FLV_LOW_LATENCY = "flvLowLatency",
|
|
6318
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer"
|
|
6317
6319
|
}
|
|
6318
6320
|
/** {zh}
|
|
6319
6321
|
* @list option
|
|
@@ -6347,9 +6349,6 @@ declare class LicenseEventEmitter {
|
|
|
6347
6349
|
start(player: any): void;
|
|
6348
6350
|
}
|
|
6349
6351
|
declare class LiveLicenseManager {
|
|
6350
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
6351
|
-
// @ts-ignore
|
|
6352
|
-
enableLiveLicenseCheck: boolean;
|
|
6353
6352
|
licenseSupportModuleList: LicenseFeature[];
|
|
6354
6353
|
licenseStatusResult?: LicenseStatus;
|
|
6355
6354
|
licenseCheckResult?: LicenseEdition;
|
|
@@ -11037,6 +11036,7 @@ declare namespace live {
|
|
|
11037
11036
|
H265 = "h265",
|
|
11038
11037
|
PRELOAD = "preload",
|
|
11039
11038
|
RTM = "rtm",
|
|
11039
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer",
|
|
11040
11040
|
ABR = "abr",
|
|
11041
11041
|
FLV_LOW_LATENCY = "flvLowLatency"
|
|
11042
11042
|
}
|
|
@@ -11588,7 +11588,8 @@ declare namespace live {
|
|
|
11588
11588
|
enum LiveLicenseFeature {
|
|
11589
11589
|
RTM = "rtm",
|
|
11590
11590
|
ABR = "abr",
|
|
11591
|
-
FLV_LOW_LATENCY = "flvLowLatency"
|
|
11591
|
+
FLV_LOW_LATENCY = "flvLowLatency",
|
|
11592
|
+
RTM_ADAPTIVE_BUFFER = "rtmAdaptiveBuffer"
|
|
11592
11593
|
}
|
|
11593
11594
|
/** {zh}
|
|
11594
11595
|
* @list option
|
|
@@ -11623,9 +11624,6 @@ declare namespace live {
|
|
|
11623
11624
|
start(player: any): void;
|
|
11624
11625
|
}
|
|
11625
11626
|
class LiveLicenseManager {
|
|
11626
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
11627
|
-
// @ts-ignore
|
|
11628
|
-
enableLiveLicenseCheck: boolean;
|
|
11629
11627
|
licenseSupportModuleList: LicenseFeature[];
|
|
11630
11628
|
licenseStatusResult?: LicenseStatus;
|
|
11631
11629
|
licenseCheckResult?: LicenseEdition;
|