@rendley/sdk 1.11.16 → 1.11.18
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/Engine.d.ts +13 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +9 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -0
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +1 -0
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +1 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -0
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -0
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -0
- package/dist/modules/clip/clips/video/VideoClip.d.ts +52 -21
- package/dist/modules/display/Display.d.ts +3 -0
- package/dist/modules/display/Display.types.d.ts +5 -0
- package/dist/modules/display/index.d.ts +1 -0
- package/dist/modules/display/renderer/PixiRenderer.d.ts +2 -0
- package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +8 -0
- package/dist/modules/ffmpeg/FFmpeg.d.ts +2 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.d.ts +30 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.types.d.ts +34 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractorWorker.d.ts +5 -0
- package/dist/modules/library/Library.d.ts +13 -1
- package/dist/modules/library/MediaData.d.ts +32 -3
- package/dist/modules/settings/Settings.d.ts +80 -0
- package/dist/modules/storage/StorageProviderBase.d.ts +1 -0
- package/dist/modules/subtitles/SubtitleManager.d.ts +4 -4
- package/package.json +1 -1
- /package/dist/modules/background-timer/{background-timer.d.ts → BackgroundTimer.d.ts} +0 -0
- /package/dist/modules/background-timer/{backround-timer.types.d.ts → BackgroundTimer.types.d.ts} +0 -0
- /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/
|
|
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: "
|
|
228
|
+
textMode: "partial" | "full";
|
|
228
229
|
highlightAnimation: import("./modules/subtitles").HighlightAnimationEnum;
|
|
229
230
|
highlightAnimationSpeed: number;
|
|
230
231
|
mainTextStyle: {
|
|
@@ -263,7 +264,16 @@ export declare class Engine {
|
|
|
263
264
|
clipAudioStoreSamples: boolean;
|
|
264
265
|
clipAudioSampleRate: number;
|
|
265
266
|
clipAudioSampleForceMono: boolean;
|
|
267
|
+
clipAudioMonoMixType: import("./modules/settings").MonoMixType;
|
|
268
|
+
clipAudioMonoChannelsWeight: number[];
|
|
266
269
|
clipVideoStoreSamples: boolean;
|
|
270
|
+
clipVideoStoreFilmstrip: boolean;
|
|
271
|
+
clipVideoFilmstripInterval: number;
|
|
272
|
+
clipVideoFilmstripMaxFrames: number;
|
|
273
|
+
clipVideoFilmstripMaxHeight: number;
|
|
274
|
+
clipVideoFilmstripMaxWidth: number;
|
|
275
|
+
clipVideoFilmstripMaxWorkers: number;
|
|
276
|
+
clipVideoFilmstripKeyframesOnly: boolean;
|
|
267
277
|
renderShowPreview: boolean;
|
|
268
278
|
renderMaxQueueSize: number;
|
|
269
279
|
renderThrottleFactor: number;
|