@rendley/sdk 1.11.15 → 1.11.17

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.
Files changed (25) hide show
  1. package/dist/Engine.d.ts +11 -3
  2. package/dist/index.cjs +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/modules/clip/Clip.d.ts +9 -0
  5. package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -0
  6. package/dist/modules/clip/clips/custom/CustomClip.d.ts +1 -0
  7. package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +1 -0
  8. package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -0
  9. package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -0
  10. package/dist/modules/clip/clips/text/TextClip.d.ts +1 -0
  11. package/dist/modules/clip/clips/video/VideoClip.d.ts +52 -21
  12. package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +8 -0
  13. package/dist/modules/ffmpeg/FFmpeg.d.ts +2 -0
  14. package/dist/modules/filmstrip-extractor/FilmstripExtractor.d.ts +30 -0
  15. package/dist/modules/filmstrip-extractor/FilmstripExtractor.types.d.ts +34 -0
  16. package/dist/modules/filmstrip-extractor/FilmstripExtractorWorker.d.ts +5 -0
  17. package/dist/modules/library/Library.d.ts +13 -1
  18. package/dist/modules/library/MediaData.d.ts +32 -3
  19. package/dist/modules/settings/Settings.d.ts +56 -0
  20. package/dist/modules/storage/StorageProviderBase.d.ts +1 -0
  21. package/dist/modules/subtitles/SubtitleManager.d.ts +4 -4
  22. package/package.json +1 -1
  23. /package/dist/modules/background-timer/{background-timer.d.ts → BackgroundTimer.d.ts} +0 -0
  24. /package/dist/modules/background-timer/{backround-timer.types.d.ts → BackgroundTimer.types.d.ts} +0 -0
  25. /package/dist/modules/background-timer/{background-timer-worker.d.ts → BackgroundTimerWorker.d.ts} +0 -0
package/dist/Engine.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as PIXI from "pixi.js";
2
2
  import { z } from "zod";
3
- import { BackgroundTimer } from "./modules/background-timer/background-timer";
3
+ import { BackgroundTimer } from "./modules/background-timer/BackgroundTimer";
4
4
  import { CustomClip } from "./modules/clip/clips/custom/CustomClip";
5
5
  import { Display, DisplayOptions } from "./modules/display/Display";
6
6
  import { EventEmitter } from "./modules/event-emitter";
@@ -68,13 +68,13 @@ export declare class Engine {
68
68
  private settings;
69
69
  readonly events: EventEmitter;
70
70
  private initialized;
71
+ private initializing;
71
72
  private license?;
72
73
  private projectId;
73
74
  private isDestroying;
74
75
  private createdAt;
75
76
  private onSetupLibrary?;
76
77
  private initOptions;
77
- private forcedSettings?;
78
78
  private ready;
79
79
  private readonly renderer;
80
80
  private readonly backgroundTimer;
@@ -212,6 +212,7 @@ export declare class Engine {
212
212
  type: string;
213
213
  id: string;
214
214
  filename: string;
215
+ name?: string | undefined;
215
216
  permanentUrl?: string | undefined;
216
217
  hash?: string | undefined;
217
218
  mimeType?: string | undefined;
@@ -224,7 +225,7 @@ export declare class Engine {
224
225
  projectId?: string | undefined;
225
226
  subtitlesManager?: {
226
227
  scale: number;
227
- textMode: "full" | "partial";
228
+ textMode: "partial" | "full";
228
229
  highlightAnimation: import("./modules/subtitles").HighlightAnimationEnum;
229
230
  highlightAnimationSpeed: number;
230
231
  mainTextStyle: {
@@ -264,6 +265,13 @@ export declare class Engine {
264
265
  clipAudioSampleRate: number;
265
266
  clipAudioSampleForceMono: boolean;
266
267
  clipVideoStoreSamples: boolean;
268
+ clipVideoStoreFilmstrip: boolean;
269
+ clipVideoFilmstripInterval: number;
270
+ clipVideoFilmstripMaxFrames: number;
271
+ clipVideoFilmstripMaxHeight: number;
272
+ clipVideoFilmstripMaxWidth: number;
273
+ clipVideoFilmstripMaxWorkers: number;
274
+ clipVideoFilmstripKeyframesOnly: boolean;
267
275
  renderShowPreview: boolean;
268
276
  renderMaxQueueSize: number;
269
277
  renderThrottleFactor: number;