@rendley/sdk 1.13.0 → 1.14.0
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 +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/classes.d.ts +1 -0
- package/dist/libs/ffmpeg/const.d.ts +1 -0
- package/dist/libs/ffmpeg/types.d.ts +6 -2
- package/dist/modules/clip/clips/adjustment/AdjustmentClip.d.ts +1 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -1
- package/dist/modules/clip/clips/gif/GifClip.d.ts +1 -0
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +1 -1
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -1
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +4 -4
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -1
- package/dist/modules/clip/clips/text/TextStyle.d.ts +4 -4
- package/dist/modules/clip/clips/video/VideoClip.d.ts +5 -1
- package/dist/modules/ffmpeg/FFmpeg.d.ts +1 -0
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.d.ts +1 -1
- package/dist/modules/filmstrip-extractor/FilmstripExtractor.types.d.ts +2 -1
- package/dist/modules/library/MediaData.d.ts +17 -7
- package/dist/modules/renderer/Renderer.d.ts +2 -0
- package/dist/modules/settings/Settings.d.ts +8 -0
- package/dist/modules/storage/StorageProviderBase.d.ts +1 -1
- package/dist/modules/timeline/Timeline.d.ts +1 -0
- package/dist/utils/browser/checkVideoCompatibilityOrTranscode.d.ts +18 -0
- package/dist/utils/file/urlToBlobChunks.d.ts +1 -0
- package/dist/utils/transcode/transcodeMedia.d.ts +25 -0
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -832,6 +832,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
832
832
|
}>>;
|
|
833
833
|
settings: z.ZodOptional<z.ZodObject<{
|
|
834
834
|
m3u8MaxResolution: z.ZodDefault<z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>>;
|
|
835
|
+
useInternalTranscoder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
835
836
|
clipAudioStoreSamples: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
836
837
|
clipAudioSampleRate: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
837
838
|
clipAudioSampleForceMono: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -876,6 +877,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
876
877
|
mediaHashAlgorithm: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("./types").HashAlgorithmEnum>>>;
|
|
877
878
|
}, "strip", z.ZodTypeAny, {
|
|
878
879
|
m3u8MaxResolution: [number, number];
|
|
880
|
+
useInternalTranscoder: boolean;
|
|
879
881
|
clipAudioStoreSamples: boolean;
|
|
880
882
|
clipAudioSampleRate: number;
|
|
881
883
|
clipAudioSampleForceMono: boolean;
|
|
@@ -920,6 +922,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
920
922
|
mediaHashAlgorithm: import("./types").HashAlgorithmEnum;
|
|
921
923
|
}, {
|
|
922
924
|
m3u8MaxResolution?: [number, number] | undefined;
|
|
925
|
+
useInternalTranscoder?: boolean | undefined;
|
|
923
926
|
clipAudioStoreSamples?: boolean | undefined;
|
|
924
927
|
clipAudioSampleRate?: number | undefined;
|
|
925
928
|
clipAudioSampleForceMono?: boolean | undefined;
|
|
@@ -1120,6 +1123,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1120
1123
|
} | undefined;
|
|
1121
1124
|
settings?: {
|
|
1122
1125
|
m3u8MaxResolution: [number, number];
|
|
1126
|
+
useInternalTranscoder: boolean;
|
|
1123
1127
|
clipAudioStoreSamples: boolean;
|
|
1124
1128
|
clipAudioSampleRate: number;
|
|
1125
1129
|
clipAudioSampleForceMono: boolean;
|
|
@@ -1320,6 +1324,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1320
1324
|
} | undefined;
|
|
1321
1325
|
settings?: {
|
|
1322
1326
|
m3u8MaxResolution?: [number, number] | undefined;
|
|
1327
|
+
useInternalTranscoder?: boolean | undefined;
|
|
1323
1328
|
clipAudioStoreSamples?: boolean | undefined;
|
|
1324
1329
|
clipAudioSampleRate?: number | undefined;
|
|
1325
1330
|
clipAudioSampleForceMono?: boolean | undefined;
|
|
@@ -1607,6 +1612,7 @@ export declare class Engine {
|
|
|
1607
1612
|
} | undefined;
|
|
1608
1613
|
settings?: {
|
|
1609
1614
|
m3u8MaxResolution: [number, number];
|
|
1615
|
+
useInternalTranscoder: boolean;
|
|
1610
1616
|
clipAudioStoreSamples: boolean;
|
|
1611
1617
|
clipAudioSampleRate: number;
|
|
1612
1618
|
clipAudioSampleForceMono: boolean;
|