@remotion/renderer 4.0.118 → 4.0.119
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 +60 -60
- package/dist/get-extension-from-codec.d.ts +2 -2
- package/dist/index.d.ts +27 -27
- package/dist/options/color-space.d.ts +3 -3
- package/dist/options/index.d.ts +8 -8
- package/dist/options/options-map.d.ts +14 -14
- package/dist/options/video-codec.d.ts +1 -1
- package/dist/pixel-format.d.ts +1 -1
- package/dist/pure.d.ts +3 -3
- package/dist/validate-output-filename.d.ts +1 -1
- package/package.json +9 -9
package/dist/client.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
export { AvailableOptions, TypeOfOption } from './options';
|
|
2
2
|
export declare const BrowserSafeApis: {
|
|
3
|
-
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
3
|
+
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">(codec: T, audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null) => import("./file-extensions").FileExtension;
|
|
4
4
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"];
|
|
5
5
|
validAudioCodecs: readonly ["pcm-16", "aac", "mp3", "opus"];
|
|
6
|
-
getDefaultCrfForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
7
|
-
getValidCrfRanges: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
8
|
-
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
6
|
+
getDefaultCrfForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => number;
|
|
7
|
+
getValidCrfRanges: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => [number, number];
|
|
8
|
+
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null | undefined) => boolean;
|
|
9
9
|
proResProfileOptions: readonly ["4444-xq", "4444", "hq", "standard", "light", "proxy"];
|
|
10
10
|
x264PresetOptions: readonly ["ultrafast", "superfast", "veryfast", "faster", "fast", "medium", "slow", "slower", "veryslow", "placebo"];
|
|
11
11
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
12
12
|
validOpenGlRenderers: readonly ["swangle", "angle", "egl", "swiftshader", "vulkan", "angle-egl"];
|
|
13
|
-
validPixelFormatsForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
13
|
+
validPixelFormatsForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le")[];
|
|
14
14
|
validVideoImageFormats: readonly ["png", "jpeg", "none"];
|
|
15
15
|
validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
|
|
16
|
-
DEFAULT_PIXEL_FORMAT: "yuv420p" | "
|
|
16
|
+
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
17
17
|
DEFAULT_TIMEOUT: number;
|
|
18
18
|
supportedAudioCodecs: {
|
|
19
19
|
readonly h264: readonly ["aac", "pcm-16", "mp3"];
|
|
@@ -31,11 +31,11 @@ export declare const BrowserSafeApis: {
|
|
|
31
31
|
h264: {
|
|
32
32
|
default: import("./file-extensions").FileExtension;
|
|
33
33
|
forAudioCodec: {
|
|
34
|
-
|
|
34
|
+
mp3: {
|
|
35
35
|
possible: import("./file-extensions").FileExtension[];
|
|
36
36
|
default: import("./file-extensions").FileExtension;
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
aac: {
|
|
39
39
|
possible: import("./file-extensions").FileExtension[];
|
|
40
40
|
default: import("./file-extensions").FileExtension;
|
|
41
41
|
};
|
|
@@ -61,11 +61,11 @@ export declare const BrowserSafeApis: {
|
|
|
61
61
|
vp8: {
|
|
62
62
|
default: import("./file-extensions").FileExtension;
|
|
63
63
|
forAudioCodec: {
|
|
64
|
-
|
|
64
|
+
"pcm-16": {
|
|
65
65
|
possible: import("./file-extensions").FileExtension[];
|
|
66
66
|
default: import("./file-extensions").FileExtension;
|
|
67
67
|
};
|
|
68
|
-
|
|
68
|
+
opus: {
|
|
69
69
|
possible: import("./file-extensions").FileExtension[];
|
|
70
70
|
default: import("./file-extensions").FileExtension;
|
|
71
71
|
};
|
|
@@ -74,20 +74,20 @@ export declare const BrowserSafeApis: {
|
|
|
74
74
|
vp9: {
|
|
75
75
|
default: import("./file-extensions").FileExtension;
|
|
76
76
|
forAudioCodec: {
|
|
77
|
-
|
|
77
|
+
"pcm-16": {
|
|
78
78
|
possible: import("./file-extensions").FileExtension[];
|
|
79
79
|
default: import("./file-extensions").FileExtension;
|
|
80
80
|
};
|
|
81
|
-
|
|
81
|
+
opus: {
|
|
82
82
|
possible: import("./file-extensions").FileExtension[];
|
|
83
83
|
default: import("./file-extensions").FileExtension;
|
|
84
84
|
};
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
-
|
|
87
|
+
mp3: {
|
|
88
88
|
default: import("./file-extensions").FileExtension;
|
|
89
89
|
forAudioCodec: {
|
|
90
|
-
|
|
90
|
+
mp3: {
|
|
91
91
|
possible: import("./file-extensions").FileExtension[];
|
|
92
92
|
default: import("./file-extensions").FileExtension;
|
|
93
93
|
};
|
|
@@ -110,22 +110,22 @@ export declare const BrowserSafeApis: {
|
|
|
110
110
|
};
|
|
111
111
|
};
|
|
112
112
|
};
|
|
113
|
-
|
|
113
|
+
wav: {
|
|
114
114
|
default: import("./file-extensions").FileExtension;
|
|
115
115
|
forAudioCodec: {
|
|
116
|
-
mp3: {
|
|
117
|
-
possible: import("./file-extensions").FileExtension[];
|
|
118
|
-
default: import("./file-extensions").FileExtension;
|
|
119
|
-
};
|
|
120
116
|
"pcm-16": {
|
|
121
117
|
possible: import("./file-extensions").FileExtension[];
|
|
122
118
|
default: import("./file-extensions").FileExtension;
|
|
123
119
|
};
|
|
124
120
|
};
|
|
125
121
|
};
|
|
126
|
-
|
|
122
|
+
prores: {
|
|
127
123
|
default: import("./file-extensions").FileExtension;
|
|
128
124
|
forAudioCodec: {
|
|
125
|
+
aac: {
|
|
126
|
+
possible: import("./file-extensions").FileExtension[];
|
|
127
|
+
default: import("./file-extensions").FileExtension;
|
|
128
|
+
};
|
|
129
129
|
"pcm-16": {
|
|
130
130
|
possible: import("./file-extensions").FileExtension[];
|
|
131
131
|
default: import("./file-extensions").FileExtension;
|
|
@@ -152,37 +152,37 @@ export declare const BrowserSafeApis: {
|
|
|
152
152
|
};
|
|
153
153
|
defaultAudioCodecs: {
|
|
154
154
|
h264: {
|
|
155
|
-
compressed: "
|
|
156
|
-
lossless: "
|
|
155
|
+
compressed: "mp3" | "aac" | "pcm-16" | null;
|
|
156
|
+
lossless: "mp3" | "aac" | "pcm-16" | null;
|
|
157
157
|
};
|
|
158
158
|
h265: {
|
|
159
159
|
compressed: "aac" | "pcm-16" | null;
|
|
160
160
|
lossless: "aac" | "pcm-16" | null;
|
|
161
161
|
};
|
|
162
162
|
vp8: {
|
|
163
|
-
compressed: "
|
|
164
|
-
lossless: "
|
|
163
|
+
compressed: "pcm-16" | "opus" | null;
|
|
164
|
+
lossless: "pcm-16" | "opus" | null;
|
|
165
165
|
};
|
|
166
166
|
vp9: {
|
|
167
|
-
compressed: "
|
|
168
|
-
lossless: "
|
|
167
|
+
compressed: "pcm-16" | "opus" | null;
|
|
168
|
+
lossless: "pcm-16" | "opus" | null;
|
|
169
169
|
};
|
|
170
|
-
|
|
171
|
-
compressed: "
|
|
172
|
-
lossless: "
|
|
170
|
+
mp3: {
|
|
171
|
+
compressed: "mp3" | "pcm-16" | null;
|
|
172
|
+
lossless: "mp3" | "pcm-16" | null;
|
|
173
173
|
};
|
|
174
174
|
aac: {
|
|
175
175
|
compressed: "aac" | "pcm-16" | null;
|
|
176
176
|
lossless: "aac" | "pcm-16" | null;
|
|
177
177
|
};
|
|
178
|
-
mp3: {
|
|
179
|
-
compressed: "mp3" | "pcm-16" | null;
|
|
180
|
-
lossless: "mp3" | "pcm-16" | null;
|
|
181
|
-
};
|
|
182
178
|
wav: {
|
|
183
179
|
compressed: "pcm-16" | null;
|
|
184
180
|
lossless: "pcm-16" | null;
|
|
185
181
|
};
|
|
182
|
+
prores: {
|
|
183
|
+
compressed: "aac" | "pcm-16" | null;
|
|
184
|
+
lossless: "aac" | "pcm-16" | null;
|
|
185
|
+
};
|
|
186
186
|
"h264-mkv": {
|
|
187
187
|
compressed: "mp3" | "pcm-16" | null;
|
|
188
188
|
lossless: "mp3" | "pcm-16" | null;
|
|
@@ -192,10 +192,10 @@ export declare const BrowserSafeApis: {
|
|
|
192
192
|
lossless: null;
|
|
193
193
|
};
|
|
194
194
|
};
|
|
195
|
-
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "
|
|
196
|
-
validateOutputFilename: <T_1 extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
195
|
+
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">;
|
|
196
|
+
validateOutputFilename: <T_1 extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">({ codec, audioCodec, extension, preferLossless, }: {
|
|
197
197
|
codec: T_1;
|
|
198
|
-
audioCodec: "
|
|
198
|
+
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
199
199
|
extension: string;
|
|
200
200
|
preferLossless: boolean;
|
|
201
201
|
}) => void;
|
|
@@ -314,17 +314,17 @@ export declare const BrowserSafeApis: {
|
|
|
314
314
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
315
315
|
ssrName: string;
|
|
316
316
|
docLink: string;
|
|
317
|
-
type: "h264" | "h265" | "vp8" | "vp9" | "
|
|
317
|
+
type: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
318
318
|
getValue: ({ commandLine }: {
|
|
319
319
|
commandLine: Record<string, unknown>;
|
|
320
320
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
321
321
|
outName: string | null;
|
|
322
322
|
downloadName: string | null;
|
|
323
|
-
configFile: "h264" | "h265" | "vp8" | "vp9" | "
|
|
324
|
-
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
325
|
-
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
323
|
+
configFile: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
324
|
+
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
325
|
+
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
326
326
|
}) => {
|
|
327
|
-
value: "h264" | "h265" | "vp8" | "vp9" | "
|
|
327
|
+
value: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
328
328
|
source: string;
|
|
329
329
|
};
|
|
330
330
|
setConfig: (newCodec: import("./codec").CodecOrUndefined) => void;
|
|
@@ -363,14 +363,14 @@ export declare const BrowserSafeApis: {
|
|
|
363
363
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
364
364
|
docLink: string;
|
|
365
365
|
ssrName: string;
|
|
366
|
-
type: "
|
|
366
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
367
367
|
getValue: ({ commandLine }: {
|
|
368
368
|
commandLine: Record<string, unknown>;
|
|
369
369
|
}) => {
|
|
370
370
|
source: string;
|
|
371
|
-
value: "
|
|
371
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
372
372
|
};
|
|
373
|
-
setConfig: (value: "
|
|
373
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
374
374
|
};
|
|
375
375
|
deleteAfterOption: {
|
|
376
376
|
name: string;
|
|
@@ -727,14 +727,14 @@ export declare const BrowserSafeApis: {
|
|
|
727
727
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
728
728
|
docLink: string;
|
|
729
729
|
ssrName: string;
|
|
730
|
-
type: "
|
|
730
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
731
731
|
getValue: ({ commandLine }: {
|
|
732
732
|
commandLine: Record<string, unknown>;
|
|
733
733
|
}) => {
|
|
734
734
|
source: string;
|
|
735
|
-
value: "
|
|
735
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
736
736
|
};
|
|
737
|
-
setConfig: (value: "
|
|
737
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
738
738
|
};
|
|
739
739
|
readonly codec: {
|
|
740
740
|
name: string;
|
|
@@ -742,17 +742,17 @@ export declare const BrowserSafeApis: {
|
|
|
742
742
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
743
743
|
ssrName: string;
|
|
744
744
|
docLink: string;
|
|
745
|
-
type: "h264" | "h265" | "vp8" | "vp9" | "
|
|
745
|
+
type: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
746
746
|
getValue: ({ commandLine }: {
|
|
747
747
|
commandLine: Record<string, unknown>;
|
|
748
748
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
749
749
|
outName: string | null;
|
|
750
750
|
downloadName: string | null;
|
|
751
|
-
configFile: "h264" | "h265" | "vp8" | "vp9" | "
|
|
752
|
-
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
753
|
-
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
751
|
+
configFile: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
752
|
+
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
753
|
+
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
754
754
|
}) => {
|
|
755
|
-
value: "h264" | "h265" | "vp8" | "vp9" | "
|
|
755
|
+
value: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
756
756
|
source: string;
|
|
757
757
|
};
|
|
758
758
|
setConfig: (newCodec: import("./codec").CodecOrUndefined) => void;
|
|
@@ -1232,14 +1232,14 @@ export declare const BrowserSafeApis: {
|
|
|
1232
1232
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1233
1233
|
docLink: string;
|
|
1234
1234
|
ssrName: string;
|
|
1235
|
-
type: "
|
|
1235
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
1236
1236
|
getValue: ({ commandLine }: {
|
|
1237
1237
|
commandLine: Record<string, unknown>;
|
|
1238
1238
|
}) => {
|
|
1239
1239
|
source: string;
|
|
1240
|
-
value: "
|
|
1240
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
1241
1241
|
};
|
|
1242
|
-
setConfig: (value: "
|
|
1242
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
1243
1243
|
};
|
|
1244
1244
|
readonly muted: {
|
|
1245
1245
|
name: string;
|
|
@@ -1478,14 +1478,14 @@ export declare const BrowserSafeApis: {
|
|
|
1478
1478
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1479
1479
|
docLink: string;
|
|
1480
1480
|
ssrName: string;
|
|
1481
|
-
type: "
|
|
1481
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
1482
1482
|
getValue: ({ commandLine }: {
|
|
1483
1483
|
commandLine: Record<string, unknown>;
|
|
1484
1484
|
}) => {
|
|
1485
1485
|
source: string;
|
|
1486
|
-
value: "
|
|
1486
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
1487
1487
|
};
|
|
1488
|
-
setConfig: (value: "
|
|
1488
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
1489
1489
|
};
|
|
1490
1490
|
readonly audioBitrate: {
|
|
1491
1491
|
name: string;
|
|
@@ -1761,8 +1761,8 @@ export declare const BrowserSafeApis: {
|
|
|
1761
1761
|
};
|
|
1762
1762
|
};
|
|
1763
1763
|
};
|
|
1764
|
-
codecSupportsCrf: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
1765
|
-
codecSupportsVideoBitrate: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
1764
|
+
codecSupportsCrf: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => boolean;
|
|
1765
|
+
codecSupportsVideoBitrate: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => boolean;
|
|
1766
1766
|
logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
1767
1767
|
getOutputCodecOrUndefined: () => import("./codec").CodecOrUndefined;
|
|
1768
1768
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AudioCodec } from './audio-codec';
|
|
2
2
|
import type { Codec } from './codec';
|
|
3
3
|
import type { FileExtension } from './file-extensions';
|
|
4
|
-
export declare const getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
5
|
-
export declare const makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "
|
|
4
|
+
export declare const getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">(codec: T, audioCodec: AudioCodec | null) => FileExtension;
|
|
5
|
+
export declare const makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif")[]>;
|
|
6
6
|
export declare const defaultCodecsForFileExtension: Record<FileExtension, Codec>;
|
package/dist/index.d.ts
CHANGED
|
@@ -68,10 +68,10 @@ export declare const RenderInternals: {
|
|
|
68
68
|
width: number;
|
|
69
69
|
height: number;
|
|
70
70
|
scale: number;
|
|
71
|
-
codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
71
|
+
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
72
72
|
wantsImageSequence: boolean;
|
|
73
73
|
}) => void;
|
|
74
|
-
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
74
|
+
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">(codec: T, audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null) => import("./file-extensions").FileExtension;
|
|
75
75
|
tmpDir: (str: string) => string;
|
|
76
76
|
deleteDirectory: (directory: string) => void;
|
|
77
77
|
isServeUrl: (potentialUrl: string) => boolean;
|
|
@@ -128,7 +128,7 @@ export declare const RenderInternals: {
|
|
|
128
128
|
};
|
|
129
129
|
registerErrorSymbolicationLock: () => number;
|
|
130
130
|
unlockErrorSymbolicationLock: (id: number) => void;
|
|
131
|
-
canUseParallelEncoding: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
131
|
+
canUseParallelEncoding: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => boolean;
|
|
132
132
|
mimeContentType: typeof mimeContentType;
|
|
133
133
|
mimeLookup: typeof mimeLookup;
|
|
134
134
|
validateConcurrency: ({ setting, value, checkIfValidForCurrentMachine, }: {
|
|
@@ -142,11 +142,11 @@ export declare const RenderInternals: {
|
|
|
142
142
|
DEFAULT_OPENGL_RENDERER: "angle" | "swangle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
143
143
|
validateOpenGlRenderer: (option: unknown) => "angle" | "swangle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
144
144
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"];
|
|
145
|
-
DEFAULT_PIXEL_FORMAT: "yuv420p" | "
|
|
145
|
+
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
146
146
|
validateJpegQuality: (q: unknown) => void;
|
|
147
147
|
DEFAULT_TIMEOUT: number;
|
|
148
|
-
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "
|
|
149
|
-
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
148
|
+
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
149
|
+
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null | undefined) => boolean;
|
|
150
150
|
logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
151
151
|
isEqualOrBelowLogLevel: (currentLevel: "verbose" | "info" | "warn" | "error", level: "verbose" | "info" | "warn" | "error") => boolean;
|
|
152
152
|
isValidLogLevel: (level: string) => boolean;
|
|
@@ -163,10 +163,10 @@ export declare const RenderInternals: {
|
|
|
163
163
|
output: string;
|
|
164
164
|
onProgress: (p: number) => void;
|
|
165
165
|
numberOfFrames: number;
|
|
166
|
-
codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
166
|
+
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
167
167
|
fps: number;
|
|
168
168
|
numberOfGifLoops: number | null;
|
|
169
|
-
audioCodec: "
|
|
169
|
+
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
170
170
|
audioBitrate: string | null;
|
|
171
171
|
indent: boolean;
|
|
172
172
|
logLevel: "verbose" | "info" | "warn" | "error";
|
|
@@ -174,19 +174,19 @@ export declare const RenderInternals: {
|
|
|
174
174
|
getMinConcurrency: () => number;
|
|
175
175
|
getMaxConcurrency: () => number;
|
|
176
176
|
getDefaultAudioCodec: ({ codec, preferLossless, }: {
|
|
177
|
-
codec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
177
|
+
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
178
178
|
preferLossless: boolean;
|
|
179
|
-
}) => "
|
|
179
|
+
}) => "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
180
180
|
validAudioCodecs: readonly ["pcm-16", "aac", "mp3", "opus"];
|
|
181
181
|
defaultFileExtensionMap: {
|
|
182
182
|
h264: {
|
|
183
183
|
default: import("./file-extensions").FileExtension;
|
|
184
184
|
forAudioCodec: {
|
|
185
|
-
|
|
185
|
+
mp3: {
|
|
186
186
|
possible: import("./file-extensions").FileExtension[];
|
|
187
187
|
default: import("./file-extensions").FileExtension;
|
|
188
188
|
};
|
|
189
|
-
|
|
189
|
+
aac: {
|
|
190
190
|
possible: import("./file-extensions").FileExtension[];
|
|
191
191
|
default: import("./file-extensions").FileExtension;
|
|
192
192
|
};
|
|
@@ -212,11 +212,11 @@ export declare const RenderInternals: {
|
|
|
212
212
|
vp8: {
|
|
213
213
|
default: import("./file-extensions").FileExtension;
|
|
214
214
|
forAudioCodec: {
|
|
215
|
-
|
|
215
|
+
"pcm-16": {
|
|
216
216
|
possible: import("./file-extensions").FileExtension[];
|
|
217
217
|
default: import("./file-extensions").FileExtension;
|
|
218
218
|
};
|
|
219
|
-
|
|
219
|
+
opus: {
|
|
220
220
|
possible: import("./file-extensions").FileExtension[];
|
|
221
221
|
default: import("./file-extensions").FileExtension;
|
|
222
222
|
};
|
|
@@ -225,20 +225,20 @@ export declare const RenderInternals: {
|
|
|
225
225
|
vp9: {
|
|
226
226
|
default: import("./file-extensions").FileExtension;
|
|
227
227
|
forAudioCodec: {
|
|
228
|
-
|
|
228
|
+
"pcm-16": {
|
|
229
229
|
possible: import("./file-extensions").FileExtension[];
|
|
230
230
|
default: import("./file-extensions").FileExtension;
|
|
231
231
|
};
|
|
232
|
-
|
|
232
|
+
opus: {
|
|
233
233
|
possible: import("./file-extensions").FileExtension[];
|
|
234
234
|
default: import("./file-extensions").FileExtension;
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
|
-
|
|
238
|
+
mp3: {
|
|
239
239
|
default: import("./file-extensions").FileExtension;
|
|
240
240
|
forAudioCodec: {
|
|
241
|
-
|
|
241
|
+
mp3: {
|
|
242
242
|
possible: import("./file-extensions").FileExtension[];
|
|
243
243
|
default: import("./file-extensions").FileExtension;
|
|
244
244
|
};
|
|
@@ -261,22 +261,22 @@ export declare const RenderInternals: {
|
|
|
261
261
|
};
|
|
262
262
|
};
|
|
263
263
|
};
|
|
264
|
-
|
|
264
|
+
wav: {
|
|
265
265
|
default: import("./file-extensions").FileExtension;
|
|
266
266
|
forAudioCodec: {
|
|
267
|
-
mp3: {
|
|
268
|
-
possible: import("./file-extensions").FileExtension[];
|
|
269
|
-
default: import("./file-extensions").FileExtension;
|
|
270
|
-
};
|
|
271
267
|
"pcm-16": {
|
|
272
268
|
possible: import("./file-extensions").FileExtension[];
|
|
273
269
|
default: import("./file-extensions").FileExtension;
|
|
274
270
|
};
|
|
275
271
|
};
|
|
276
272
|
};
|
|
277
|
-
|
|
273
|
+
prores: {
|
|
278
274
|
default: import("./file-extensions").FileExtension;
|
|
279
275
|
forAudioCodec: {
|
|
276
|
+
aac: {
|
|
277
|
+
possible: import("./file-extensions").FileExtension[];
|
|
278
|
+
default: import("./file-extensions").FileExtension;
|
|
279
|
+
};
|
|
280
280
|
"pcm-16": {
|
|
281
281
|
possible: import("./file-extensions").FileExtension[];
|
|
282
282
|
default: import("./file-extensions").FileExtension;
|
|
@@ -313,8 +313,8 @@ export declare const RenderInternals: {
|
|
|
313
313
|
readonly vp9: readonly ["opus", "pcm-16"];
|
|
314
314
|
readonly wav: readonly ["pcm-16"];
|
|
315
315
|
};
|
|
316
|
-
makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "
|
|
317
|
-
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "
|
|
316
|
+
makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif")[]>;
|
|
317
|
+
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">;
|
|
318
318
|
getExecutablePath: (type: "ffmpeg" | "ffprobe" | "compositor", indent: boolean, logLevel: "verbose" | "info" | "warn" | "error") => string;
|
|
319
319
|
callFf: ({ args, bin, indent, logLevel, options, }: {
|
|
320
320
|
bin: "ffmpeg" | "ffprobe";
|
|
@@ -326,7 +326,7 @@ export declare const RenderInternals: {
|
|
|
326
326
|
validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
|
|
327
327
|
validVideoImageFormats: readonly ["png", "jpeg", "none"];
|
|
328
328
|
DEFAULT_STILL_IMAGE_FORMAT: "jpeg" | "png" | "webp" | "pdf";
|
|
329
|
-
DEFAULT_VIDEO_IMAGE_FORMAT: "
|
|
329
|
+
DEFAULT_VIDEO_IMAGE_FORMAT: "jpeg" | "png" | "none";
|
|
330
330
|
DEFAULT_JPEG_QUALITY: number;
|
|
331
331
|
chalk: {
|
|
332
332
|
enabled: () => boolean;
|
|
@@ -6,13 +6,13 @@ export declare const colorSpaceOption: {
|
|
|
6
6
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
docLink: string;
|
|
8
8
|
ssrName: string;
|
|
9
|
-
type: "
|
|
9
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
10
10
|
getValue: ({ commandLine }: {
|
|
11
11
|
commandLine: Record<string, unknown>;
|
|
12
12
|
}) => {
|
|
13
13
|
source: string;
|
|
14
|
-
value: "
|
|
14
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
15
15
|
};
|
|
16
|
-
setConfig: (value: "
|
|
16
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
17
17
|
};
|
|
18
18
|
export declare const validateColorSpace: (option: unknown) => void;
|
package/dist/options/index.d.ts
CHANGED
|
@@ -114,17 +114,17 @@ export declare const allOptions: {
|
|
|
114
114
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
115
115
|
ssrName: string;
|
|
116
116
|
docLink: string;
|
|
117
|
-
type: "h264" | "h265" | "vp8" | "vp9" | "
|
|
117
|
+
type: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
118
118
|
getValue: ({ commandLine }: {
|
|
119
119
|
commandLine: Record<string, unknown>;
|
|
120
120
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
121
121
|
outName: string | null;
|
|
122
122
|
downloadName: string | null;
|
|
123
|
-
configFile: "h264" | "h265" | "vp8" | "vp9" | "
|
|
124
|
-
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
125
|
-
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
123
|
+
configFile: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
124
|
+
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
125
|
+
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
126
126
|
}) => {
|
|
127
|
-
value: "h264" | "h265" | "vp8" | "vp9" | "
|
|
127
|
+
value: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
128
128
|
source: string;
|
|
129
129
|
};
|
|
130
130
|
setConfig: (newCodec: import("..").CodecOrUndefined) => void;
|
|
@@ -163,14 +163,14 @@ export declare const allOptions: {
|
|
|
163
163
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
164
164
|
docLink: string;
|
|
165
165
|
ssrName: string;
|
|
166
|
-
type: "
|
|
166
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
167
167
|
getValue: ({ commandLine }: {
|
|
168
168
|
commandLine: Record<string, unknown>;
|
|
169
169
|
}) => {
|
|
170
170
|
source: string;
|
|
171
|
-
value: "
|
|
171
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
172
172
|
};
|
|
173
|
-
setConfig: (value: "
|
|
173
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
174
174
|
};
|
|
175
175
|
deleteAfterOption: {
|
|
176
176
|
name: string;
|
|
@@ -108,14 +108,14 @@ export declare const optionsMap: {
|
|
|
108
108
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
109
109
|
docLink: string;
|
|
110
110
|
ssrName: string;
|
|
111
|
-
type: "
|
|
111
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
112
112
|
getValue: ({ commandLine }: {
|
|
113
113
|
commandLine: Record<string, unknown>;
|
|
114
114
|
}) => {
|
|
115
115
|
source: string;
|
|
116
|
-
value: "
|
|
116
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
117
117
|
};
|
|
118
|
-
setConfig: (value: "
|
|
118
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
119
119
|
};
|
|
120
120
|
readonly codec: {
|
|
121
121
|
name: string;
|
|
@@ -123,17 +123,17 @@ export declare const optionsMap: {
|
|
|
123
123
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
124
124
|
ssrName: string;
|
|
125
125
|
docLink: string;
|
|
126
|
-
type: "h264" | "h265" | "vp8" | "vp9" | "
|
|
126
|
+
type: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
127
127
|
getValue: ({ commandLine }: {
|
|
128
128
|
commandLine: Record<string, unknown>;
|
|
129
129
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
130
130
|
outName: string | null;
|
|
131
131
|
downloadName: string | null;
|
|
132
|
-
configFile: "h264" | "h265" | "vp8" | "vp9" | "
|
|
133
|
-
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
134
|
-
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "
|
|
132
|
+
configFile: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
133
|
+
uiCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
134
|
+
compositionCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | null;
|
|
135
135
|
}) => {
|
|
136
|
-
value: "h264" | "h265" | "vp8" | "vp9" | "
|
|
136
|
+
value: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
137
137
|
source: string;
|
|
138
138
|
};
|
|
139
139
|
setConfig: (newCodec: import("..").CodecOrUndefined) => void;
|
|
@@ -613,14 +613,14 @@ export declare const optionsMap: {
|
|
|
613
613
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
614
614
|
docLink: string;
|
|
615
615
|
ssrName: string;
|
|
616
|
-
type: "
|
|
616
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
617
617
|
getValue: ({ commandLine }: {
|
|
618
618
|
commandLine: Record<string, unknown>;
|
|
619
619
|
}) => {
|
|
620
620
|
source: string;
|
|
621
|
-
value: "
|
|
621
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
622
622
|
};
|
|
623
|
-
setConfig: (value: "
|
|
623
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
624
624
|
};
|
|
625
625
|
readonly muted: {
|
|
626
626
|
name: string;
|
|
@@ -859,14 +859,14 @@ export declare const optionsMap: {
|
|
|
859
859
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
860
860
|
docLink: string;
|
|
861
861
|
ssrName: string;
|
|
862
|
-
type: "
|
|
862
|
+
type: "default" | "bt709" | "bt2020-ncl";
|
|
863
863
|
getValue: ({ commandLine }: {
|
|
864
864
|
commandLine: Record<string, unknown>;
|
|
865
865
|
}) => {
|
|
866
866
|
source: string;
|
|
867
|
-
value: "
|
|
867
|
+
value: "default" | "bt709" | "bt2020-ncl";
|
|
868
868
|
};
|
|
869
|
-
setConfig: (value: "
|
|
869
|
+
setConfig: (value: "default" | "bt709" | "bt2020-ncl") => void;
|
|
870
870
|
};
|
|
871
871
|
readonly audioBitrate: {
|
|
872
872
|
name: string;
|
|
@@ -6,7 +6,7 @@ export declare const videoCodecOption: {
|
|
|
6
6
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
ssrName: string;
|
|
8
8
|
docLink: string;
|
|
9
|
-
type: "h264" | "h265" | "vp8" | "vp9" | "
|
|
9
|
+
type: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
10
10
|
getValue: ({ commandLine }: {
|
|
11
11
|
commandLine: Record<string, unknown>;
|
|
12
12
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
package/dist/pixel-format.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import type { Codec } from './codec';
|
|
|
2
2
|
export declare const validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
3
3
|
export type PixelFormat = (typeof validPixelFormats)[number];
|
|
4
4
|
export declare const DEFAULT_PIXEL_FORMAT: PixelFormat;
|
|
5
|
-
export declare const validPixelFormatsForCodec: (codec: Codec) => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "
|
|
5
|
+
export declare const validPixelFormatsForCodec: (codec: Codec) => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le")[];
|
|
6
6
|
export declare const validateSelectedPixelFormatAndCodecCombination: (pixelFormat: PixelFormat | undefined, codec: Codec) => undefined;
|
package/dist/pure.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const NoReactAPIs: {
|
|
2
2
|
wrapWithErrorHandling: <A extends unknown[], R>(fn: (...args: A) => Promise<R>) => (...args: A) => Promise<R>;
|
|
3
3
|
getExtensionOfFilename: (filename: string | null) => string | null;
|
|
4
|
-
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
5
|
-
validateOutputFilename: <T_1 extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
4
|
+
getFileExtensionFromCodec: <T extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">(codec: T, audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null) => import("./file-extensions").FileExtension;
|
|
5
|
+
validateOutputFilename: <T_1 extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">({ codec, audioCodec, extension, preferLossless, }: {
|
|
6
6
|
codec: T_1;
|
|
7
|
-
audioCodec: "
|
|
7
|
+
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
8
8
|
extension: string;
|
|
9
9
|
preferLossless: boolean;
|
|
10
10
|
}) => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AudioCodec } from './audio-codec';
|
|
2
|
-
export declare const validateOutputFilename: <T extends "h264" | "h265" | "vp8" | "vp9" | "
|
|
2
|
+
export declare const validateOutputFilename: <T extends "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">({ codec, audioCodec, extension, preferLossless, }: {
|
|
3
3
|
codec: T;
|
|
4
4
|
audioCodec: AudioCodec | null;
|
|
5
5
|
extension: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.119",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"extract-zip": "2.0.1",
|
|
19
19
|
"source-map": "^0.8.0-beta.0",
|
|
20
20
|
"ws": "8.7.0",
|
|
21
|
-
"remotion": "4.0.
|
|
21
|
+
"remotion": "4.0.119"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": ">=16.8.0",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"vitest": "0.31.1"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
44
|
-
"@remotion/compositor-
|
|
45
|
-
"@remotion/compositor-
|
|
46
|
-
"@remotion/compositor-linux-arm64-
|
|
47
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
48
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
49
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
43
|
+
"@remotion/compositor-darwin-arm64": "4.0.119",
|
|
44
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.119",
|
|
45
|
+
"@remotion/compositor-darwin-x64": "4.0.119",
|
|
46
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.119",
|
|
47
|
+
"@remotion/compositor-linux-x64-musl": "4.0.119",
|
|
48
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.119",
|
|
49
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.119"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"remotion",
|