@rendley/sdk 1.12.16 → 1.12.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.
package/dist/Engine.d.ts
CHANGED
|
@@ -759,6 +759,8 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
759
759
|
clipVideoFilmstripMaxWidth: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
760
760
|
clipVideoFilmstripMaxWorkers: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
761
761
|
clipVideoFilmstripKeyframesOnly: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
762
|
+
clipAudioSeekThreshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
763
|
+
clipVideoSeekThreshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
762
764
|
renderShowPreview: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
763
765
|
renderMaxQueueSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
764
766
|
renderThrottleFactor: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -798,6 +800,8 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
798
800
|
clipVideoFilmstripMaxWidth: number;
|
|
799
801
|
clipVideoFilmstripMaxWorkers: number;
|
|
800
802
|
clipVideoFilmstripKeyframesOnly: boolean;
|
|
803
|
+
clipAudioSeekThreshold: number;
|
|
804
|
+
clipVideoSeekThreshold: number;
|
|
801
805
|
renderShowPreview: boolean;
|
|
802
806
|
renderMaxQueueSize: number;
|
|
803
807
|
renderThrottleFactor: number;
|
|
@@ -837,6 +841,8 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
837
841
|
clipVideoFilmstripMaxWidth?: number | undefined;
|
|
838
842
|
clipVideoFilmstripMaxWorkers?: number | undefined;
|
|
839
843
|
clipVideoFilmstripKeyframesOnly?: boolean | undefined;
|
|
844
|
+
clipAudioSeekThreshold?: number | undefined;
|
|
845
|
+
clipVideoSeekThreshold?: number | undefined;
|
|
840
846
|
renderShowPreview?: boolean | undefined;
|
|
841
847
|
renderMaxQueueSize?: number | undefined;
|
|
842
848
|
renderThrottleFactor?: number | undefined;
|
|
@@ -1017,6 +1023,8 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1017
1023
|
clipVideoFilmstripMaxWidth: number;
|
|
1018
1024
|
clipVideoFilmstripMaxWorkers: number;
|
|
1019
1025
|
clipVideoFilmstripKeyframesOnly: boolean;
|
|
1026
|
+
clipAudioSeekThreshold: number;
|
|
1027
|
+
clipVideoSeekThreshold: number;
|
|
1020
1028
|
renderShowPreview: boolean;
|
|
1021
1029
|
renderMaxQueueSize: number;
|
|
1022
1030
|
renderThrottleFactor: number;
|
|
@@ -1197,6 +1205,8 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1197
1205
|
clipVideoFilmstripMaxWidth?: number | undefined;
|
|
1198
1206
|
clipVideoFilmstripMaxWorkers?: number | undefined;
|
|
1199
1207
|
clipVideoFilmstripKeyframesOnly?: boolean | undefined;
|
|
1208
|
+
clipAudioSeekThreshold?: number | undefined;
|
|
1209
|
+
clipVideoSeekThreshold?: number | undefined;
|
|
1200
1210
|
renderShowPreview?: boolean | undefined;
|
|
1201
1211
|
renderMaxQueueSize?: number | undefined;
|
|
1202
1212
|
renderThrottleFactor?: number | undefined;
|
|
@@ -1457,6 +1467,8 @@ export declare class Engine {
|
|
|
1457
1467
|
clipVideoFilmstripMaxWidth: number;
|
|
1458
1468
|
clipVideoFilmstripMaxWorkers: number;
|
|
1459
1469
|
clipVideoFilmstripKeyframesOnly: boolean;
|
|
1470
|
+
clipAudioSeekThreshold: number;
|
|
1471
|
+
clipVideoSeekThreshold: number;
|
|
1460
1472
|
renderShowPreview: boolean;
|
|
1461
1473
|
renderMaxQueueSize: number;
|
|
1462
1474
|
renderThrottleFactor: number;
|