stormcloud-video-player 0.2.14 → 0.2.16
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/README.md +92 -11
- package/dist/stormcloud-vp.min.js +2 -2
- package/lib/index.cjs +397 -256
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +2 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +397 -256
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +91 -30
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +2 -0
- package/lib/players/FilePlayer.cjs +12 -1
- package/lib/players/FilePlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.cjs +104 -33
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/index.cjs +116 -34
- package/lib/players/index.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.cjs +27 -8
- package/lib/sdk/hlsAdPlayer.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.cjs +372 -252
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -114,6 +114,8 @@ declare class StormcloudVideoPlayer {
|
|
|
114
114
|
private totalAdsInBreak;
|
|
115
115
|
private showAds;
|
|
116
116
|
private isLiveStream;
|
|
117
|
+
private nativeHlsMode;
|
|
118
|
+
private videoSrcProtection;
|
|
117
119
|
constructor(config: StormcloudVideoPlayerConfig);
|
|
118
120
|
private createAdPlayer;
|
|
119
121
|
load(): Promise<void>;
|
package/lib/index.d.ts
CHANGED
|
@@ -114,6 +114,8 @@ declare class StormcloudVideoPlayer {
|
|
|
114
114
|
private totalAdsInBreak;
|
|
115
115
|
private showAds;
|
|
116
116
|
private isLiveStream;
|
|
117
|
+
private nativeHlsMode;
|
|
118
|
+
private videoSrcProtection;
|
|
117
119
|
constructor(config: StormcloudVideoPlayerConfig);
|
|
118
120
|
private createAdPlayer;
|
|
119
121
|
load(): Promise<void>;
|