@remotion/renderer 4.0.311 → 4.0.313
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/client.d.ts +30 -0
- package/dist/esm/client.mjs +246 -192
- package/dist/esm/index.mjs +51 -26
- package/dist/get-frame-padded-index.d.ts +7 -1
- package/dist/get-frame-padded-index.js +17 -8
- package/dist/index.d.ts +15 -0
- package/dist/memory/get-available-memory.js +1 -1
- package/dist/options/image-sequence-pattern.d.ts +15 -0
- package/dist/options/image-sequence-pattern.js +30 -0
- package/dist/options/index.d.ts +15 -0
- package/dist/options/index.js +2 -0
- package/dist/options/options-map.d.ts +15 -0
- package/dist/options/options-map.js +2 -0
- package/dist/options/video-codec.js +13 -0
- package/dist/render-frame-and-retry-target-close.d.ts +2 -1
- package/dist/render-frame-and-retry-target-close.js +4 -1
- package/dist/render-frame-with-option-to-reject.d.ts +2 -1
- package/dist/render-frame-with-option-to-reject.js +2 -1
- package/dist/render-frame.d.ts +2 -1
- package/dist/render-frame.js +2 -1
- package/dist/render-frames.js +11 -4
- package/dist/render-media.js +1 -0
- package/package.json +12 -12
package/dist/client.d.ts
CHANGED
|
@@ -917,6 +917,21 @@ export declare const BrowserSafeApis: {
|
|
|
917
917
|
};
|
|
918
918
|
setConfig(value: boolean): void;
|
|
919
919
|
};
|
|
920
|
+
imageSequencePatternOption: {
|
|
921
|
+
name: string;
|
|
922
|
+
cliFlag: "image-sequence-pattern";
|
|
923
|
+
ssrName: string;
|
|
924
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
925
|
+
docLink: null;
|
|
926
|
+
type: string | null;
|
|
927
|
+
getValue: ({ commandLine }: {
|
|
928
|
+
commandLine: Record<string, unknown>;
|
|
929
|
+
}) => {
|
|
930
|
+
value: string;
|
|
931
|
+
source: string;
|
|
932
|
+
};
|
|
933
|
+
setConfig: (pattern: string | null) => void;
|
|
934
|
+
};
|
|
920
935
|
};
|
|
921
936
|
validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
|
|
922
937
|
optionsMap: {
|
|
@@ -1797,6 +1812,21 @@ export declare const BrowserSafeApis: {
|
|
|
1797
1812
|
setConfig: (newChromeMode: import("./options/chrome-mode").ChromeMode) => void;
|
|
1798
1813
|
type: import("./options/chrome-mode").ChromeMode;
|
|
1799
1814
|
};
|
|
1815
|
+
readonly imageSequencePattern: {
|
|
1816
|
+
name: string;
|
|
1817
|
+
cliFlag: "image-sequence-pattern";
|
|
1818
|
+
ssrName: string;
|
|
1819
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1820
|
+
docLink: null;
|
|
1821
|
+
type: string | null;
|
|
1822
|
+
getValue: ({ commandLine }: {
|
|
1823
|
+
commandLine: Record<string, unknown>;
|
|
1824
|
+
}) => {
|
|
1825
|
+
value: string;
|
|
1826
|
+
source: string;
|
|
1827
|
+
};
|
|
1828
|
+
setConfig: (pattern: string | null) => void;
|
|
1829
|
+
};
|
|
1800
1830
|
};
|
|
1801
1831
|
readonly renderMediaOnLambda: {
|
|
1802
1832
|
readonly offthreadVideoCacheSizeInBytes: {
|