@rendley/sdk 1.12.1 → 1.12.3
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 +18 -15
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/classes.d.ts +21 -4
- package/dist/libs/ffmpeg/const.d.ts +1 -0
- package/dist/libs/ffmpeg/types.d.ts +4 -1
- package/dist/libs/ffmpeg/worker.d.ts +0 -3
- package/dist/modules/background-timer/BackgroundTimerWorker.d.ts +0 -3
- package/dist/modules/clip/ClipStyle.d.ts +1 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +2 -2
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +2 -2
- package/dist/modules/clip/clips/video/VideoClip.d.ts +3 -2
- package/dist/modules/clip/utils/generateRawData.d.ts +1 -1
- package/dist/modules/effect/built-in-effects/BuiltInReflectionEffect.d.ts +1 -1
- package/dist/modules/filmstrip-extractor/FilmstripExtractorWorker.d.ts +0 -3
- package/dist/modules/library/EffectData.d.ts +24 -24
- package/dist/modules/library/MediaData.d.ts +3 -3
- package/dist/modules/library/TransitionData.d.ts +24 -24
- package/dist/modules/renderer/Renderer.d.ts +1 -0
- package/dist/modules/settings/Settings.d.ts +24 -0
- package/package.json +4 -4
package/dist/Engine.d.ts
CHANGED
|
@@ -176,7 +176,7 @@ export declare class Engine {
|
|
|
176
176
|
id: string;
|
|
177
177
|
provider: string;
|
|
178
178
|
properties: {
|
|
179
|
-
type: import("
|
|
179
|
+
type: import(".").PropertyDescriptionTypeEnum;
|
|
180
180
|
name: string;
|
|
181
181
|
defaultValue: Required<any>;
|
|
182
182
|
label?: string | undefined;
|
|
@@ -186,9 +186,9 @@ export declare class Engine {
|
|
|
186
186
|
inputTextures?: {
|
|
187
187
|
name: string;
|
|
188
188
|
url: string;
|
|
189
|
-
wrapMode?: import("
|
|
190
|
-
scaleMode?: import("
|
|
191
|
-
mipmap?: import("
|
|
189
|
+
wrapMode?: import(".").InputTextureWrapMode | undefined;
|
|
190
|
+
scaleMode?: import(".").InputTextureScaleMode | undefined;
|
|
191
|
+
mipmap?: import(".").InputTextureMipmapMode | undefined;
|
|
192
192
|
}[] | undefined;
|
|
193
193
|
}[];
|
|
194
194
|
transitions: {
|
|
@@ -196,7 +196,7 @@ export declare class Engine {
|
|
|
196
196
|
id: string;
|
|
197
197
|
provider: string;
|
|
198
198
|
properties: {
|
|
199
|
-
type: import("
|
|
199
|
+
type: import(".").PropertyDescriptionTypeEnum;
|
|
200
200
|
name: string;
|
|
201
201
|
defaultValue: Required<any>;
|
|
202
202
|
label?: string | undefined;
|
|
@@ -206,9 +206,9 @@ export declare class Engine {
|
|
|
206
206
|
inputTextures?: {
|
|
207
207
|
name: string;
|
|
208
208
|
url: string;
|
|
209
|
-
wrapMode?: import("
|
|
210
|
-
scaleMode?: import("
|
|
211
|
-
mipmap?: import("
|
|
209
|
+
wrapMode?: import(".").InputTextureWrapMode | undefined;
|
|
210
|
+
scaleMode?: import(".").InputTextureScaleMode | undefined;
|
|
211
|
+
mipmap?: import(".").InputTextureMipmapMode | undefined;
|
|
212
212
|
}[] | undefined;
|
|
213
213
|
}[];
|
|
214
214
|
media: {
|
|
@@ -229,7 +229,7 @@ export declare class Engine {
|
|
|
229
229
|
subtitlesManager?: {
|
|
230
230
|
scale: number;
|
|
231
231
|
textMode: "partial" | "full";
|
|
232
|
-
highlightAnimation: import("
|
|
232
|
+
highlightAnimation: import(".").HighlightAnimationEnum;
|
|
233
233
|
highlightAnimationSpeed: number;
|
|
234
234
|
mainTextStyle: {
|
|
235
235
|
color: string;
|
|
@@ -267,7 +267,7 @@ export declare class Engine {
|
|
|
267
267
|
clipAudioStoreSamples: boolean;
|
|
268
268
|
clipAudioSampleRate: number;
|
|
269
269
|
clipAudioSampleForceMono: boolean;
|
|
270
|
-
clipAudioMonoMixType: import("
|
|
270
|
+
clipAudioMonoMixType: import(".").MonoMixType;
|
|
271
271
|
clipAudioMonoChannelsWeight: number[];
|
|
272
272
|
clipVideoStoreSamples: boolean;
|
|
273
273
|
clipVideoStoreFilmstrip: boolean;
|
|
@@ -282,22 +282,25 @@ export declare class Engine {
|
|
|
282
282
|
renderThrottleFactor: number;
|
|
283
283
|
renderAudioUseWorker: boolean;
|
|
284
284
|
renderCancelFailTimeout: number;
|
|
285
|
+
renderVideoUseDirectFrames: boolean;
|
|
285
286
|
decoderUseWebCodecs: boolean;
|
|
286
|
-
decoderPreferredAcceleration: import("
|
|
287
|
+
decoderPreferredAcceleration: import(".").PreferredAcceleration;
|
|
288
|
+
decoderUseSeparateWorker: boolean;
|
|
289
|
+
decoderUseSubImage: boolean;
|
|
287
290
|
encoderCodec: VideoCodec;
|
|
288
291
|
encoderUseWebCodecs: boolean;
|
|
289
292
|
encoderUseAlpha: boolean;
|
|
290
293
|
encoderBitrate: number;
|
|
291
|
-
encoderBitrateMode: import("
|
|
292
|
-
encoderPerformanceMode: import("
|
|
294
|
+
encoderBitrateMode: import(".").BitrateMode;
|
|
295
|
+
encoderPerformanceMode: import(".").PerformanceMode;
|
|
293
296
|
encoderDeadline: number;
|
|
294
297
|
encoderCrf: number;
|
|
295
298
|
encoderForcedCodecRFCString: string;
|
|
296
|
-
encoderPreferredAcceleration: import("
|
|
299
|
+
encoderPreferredAcceleration: import(".").PreferredAcceleration;
|
|
297
300
|
encoderKeyframeInterval: number;
|
|
298
301
|
subtitlesScaleOnResize: boolean;
|
|
299
302
|
subtitlesAutoWrapOnResize: boolean;
|
|
300
|
-
viewAutoLayoutOnResize: import("
|
|
303
|
+
viewAutoLayoutOnResize: import(".").AutoLayoutMode;
|
|
301
304
|
} | undefined;
|
|
302
305
|
};
|
|
303
306
|
private static _deserializationPromiseAction;
|