stormcloud-video-player 0.3.63 → 0.3.65
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/dist/stormcloud-vp.min.js +3 -1
- package/lib/index.cjs +325 -215
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +35 -1
- package/lib/index.d.ts +35 -1
- package/lib/index.js +266 -216
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +241 -215
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +5 -0
- package/lib/players/HlsPlayer.cjs +241 -215
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/index.cjs +241 -215
- package/lib/players/index.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.cjs +241 -215
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/utils/mqttClient.cjs +245 -0
- package/lib/utils/mqttClient.cjs.map +1 -0
- package/lib/utils/mqttClient.d.cts +13 -0
- package/lib/utils/mqttConfig.cjs +141 -0
- package/lib/utils/mqttConfig.cjs.map +1 -0
- package/lib/utils/mqttConfig.d.cts +20 -0
- package/lib/utils/tracking.cjs +182 -170
- package/lib/utils/tracking.cjs.map +1 -1
- package/package.json +3 -1
- package/src/certs/emqxsl-ca.crt +22 -0
|
@@ -9,6 +9,7 @@ declare class StormcloudVideoPlayer {
|
|
|
9
9
|
private inAdBreak;
|
|
10
10
|
private currentAdBreakStartWallClockMs;
|
|
11
11
|
private expectedAdBreakDurationMs;
|
|
12
|
+
private scteAdBreakEndWallClockMs;
|
|
12
13
|
private adStopTimerId;
|
|
13
14
|
private adStartTimerId;
|
|
14
15
|
private adFailsafeTimerId;
|
|
@@ -105,6 +106,9 @@ declare class StormcloudVideoPlayer {
|
|
|
105
106
|
private activatePendingScte35CuesForFragment;
|
|
106
107
|
private onScte35Marker;
|
|
107
108
|
private startScte35AdBreak;
|
|
109
|
+
private resolveScteBreakStartWallClockMs;
|
|
110
|
+
private setAdBreakDurationBoundary;
|
|
111
|
+
private scheduleAdStopAtBreakBoundary;
|
|
108
112
|
private parseCueOutDuration;
|
|
109
113
|
private parseCueOutCont;
|
|
110
114
|
private parseAttributeList;
|
|
@@ -188,6 +192,7 @@ declare class StormcloudVideoPlayer {
|
|
|
188
192
|
private selectVastTagsForBreak;
|
|
189
193
|
private logAdState;
|
|
190
194
|
private getRemainingAdMs;
|
|
195
|
+
private getAdBreakEndWallClockMs;
|
|
191
196
|
private findBreakForTime;
|
|
192
197
|
toggleMute(): void;
|
|
193
198
|
toggleFullscreen(): Promise<void>;
|