@remotion/cli 4.0.425 → 4.0.426
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/benchmark.js +25 -7
- package/dist/bundle.js +10 -3
- package/dist/compositions.js +7 -1
- package/dist/config/index.d.ts +16 -3
- package/dist/config/index.js +11 -19
- package/dist/config/preview-server.js +3 -1
- package/dist/extra-packages.js +2 -2
- package/dist/get-cli-options.d.ts +0 -5
- package/dist/get-cli-options.js +11 -29
- package/dist/get-config-file-name.js +7 -4
- package/dist/get-env.js +11 -15
- package/dist/get-input-props.js +8 -5
- package/dist/index.d.ts +1 -6
- package/dist/index.js +9 -3
- package/dist/list-of-remotion-packages.js +2 -0
- package/dist/parse-command-line.d.ts +0 -657
- package/dist/parse-command-line.js +0 -17
- package/dist/parsed-cli.d.ts +1104 -1
- package/dist/parsed-cli.js +24 -33
- package/dist/render-flows/render.d.ts +3 -1
- package/dist/render-flows/render.js +8 -1
- package/dist/render-flows/still.d.ts +3 -1
- package/dist/render-flows/still.js +3 -1
- package/dist/render-queue/process-still.js +7 -1
- package/dist/render-queue/process-video.js +7 -1
- package/dist/render.js +25 -4
- package/dist/setup-cache.d.ts +6 -2
- package/dist/setup-cache.js +5 -3
- package/dist/still.js +18 -2
- package/dist/studio.js +11 -18
- package/package.json +15 -15
package/dist/parsed-cli.d.ts
CHANGED
|
@@ -1,6 +1,1109 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AudioCodec, StillImageFormat, VideoImageFormat } from '@remotion/renderer';
|
|
2
|
+
import type { TypeOfOption } from '@remotion/renderer/client';
|
|
3
|
+
declare const beepOnFinishOption: {
|
|
4
|
+
name: string;
|
|
5
|
+
cliFlag: "beep-on-finish";
|
|
6
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
ssrName: null;
|
|
8
|
+
docLink: string;
|
|
9
|
+
type: boolean;
|
|
10
|
+
getValue: ({ commandLine }: {
|
|
11
|
+
commandLine: Record<string, unknown>;
|
|
12
|
+
}) => {
|
|
13
|
+
value: boolean;
|
|
14
|
+
source: string;
|
|
15
|
+
};
|
|
16
|
+
setConfig(value: boolean): void;
|
|
17
|
+
id: "beep-on-finish";
|
|
18
|
+
}, colorSpaceOption: {
|
|
19
|
+
name: string;
|
|
20
|
+
cliFlag: "color-space";
|
|
21
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
docLink: string;
|
|
23
|
+
ssrName: string;
|
|
24
|
+
type: "bt2020-ncl" | "bt601" | "bt709" | "default" | null;
|
|
25
|
+
getValue: ({ commandLine }: {
|
|
26
|
+
commandLine: Record<string, unknown>;
|
|
27
|
+
}) => {
|
|
28
|
+
source: string;
|
|
29
|
+
value: "bt2020-ncl" | "bt601" | "bt709" | "default";
|
|
30
|
+
};
|
|
31
|
+
setConfig: (value: "bt2020-ncl" | "bt601" | "bt709" | "default" | null) => void;
|
|
32
|
+
id: "color-space";
|
|
33
|
+
}, concurrencyOption: {
|
|
34
|
+
name: string;
|
|
35
|
+
cliFlag: "concurrency";
|
|
36
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
ssrName: "concurrency";
|
|
38
|
+
docLink: string;
|
|
39
|
+
type: import("@remotion/renderer").Concurrency;
|
|
40
|
+
getValue: ({ commandLine }: {
|
|
41
|
+
commandLine: Record<string, unknown>;
|
|
42
|
+
}) => {
|
|
43
|
+
source: string;
|
|
44
|
+
value: import("@remotion/renderer").Concurrency;
|
|
45
|
+
};
|
|
46
|
+
setConfig: (value: import("@remotion/renderer").Concurrency) => void;
|
|
47
|
+
id: "concurrency";
|
|
48
|
+
}, disallowParallelEncodingOption: {
|
|
49
|
+
name: string;
|
|
50
|
+
cliFlag: "disallow-parallel-encoding";
|
|
51
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
ssrName: string;
|
|
53
|
+
docLink: string;
|
|
54
|
+
type: boolean;
|
|
55
|
+
getValue: ({ commandLine }: {
|
|
56
|
+
commandLine: Record<string, unknown>;
|
|
57
|
+
}) => {
|
|
58
|
+
value: boolean;
|
|
59
|
+
source: string;
|
|
60
|
+
};
|
|
61
|
+
setConfig(value: boolean): void;
|
|
62
|
+
id: "disallow-parallel-encoding";
|
|
63
|
+
}, offthreadVideoCacheSizeInBytesOption: {
|
|
64
|
+
name: string;
|
|
65
|
+
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
66
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
67
|
+
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
68
|
+
docLink: string;
|
|
69
|
+
type: number | null;
|
|
70
|
+
getValue: ({ commandLine }: {
|
|
71
|
+
commandLine: Record<string, unknown>;
|
|
72
|
+
}) => {
|
|
73
|
+
source: string;
|
|
74
|
+
value: number;
|
|
75
|
+
} | {
|
|
76
|
+
source: string;
|
|
77
|
+
value: null;
|
|
78
|
+
};
|
|
79
|
+
setConfig: (size: number | null) => void;
|
|
80
|
+
id: "offthreadvideo-cache-size-in-bytes";
|
|
81
|
+
}, encodingBufferSizeOption: {
|
|
82
|
+
name: string;
|
|
83
|
+
cliFlag: "buffer-size";
|
|
84
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
85
|
+
ssrName: "encodingBufferSize";
|
|
86
|
+
docLink: string;
|
|
87
|
+
type: string | null;
|
|
88
|
+
getValue: ({ commandLine }: {
|
|
89
|
+
commandLine: Record<string, unknown>;
|
|
90
|
+
}) => {
|
|
91
|
+
value: string;
|
|
92
|
+
source: string;
|
|
93
|
+
} | {
|
|
94
|
+
value: null;
|
|
95
|
+
source: string;
|
|
96
|
+
};
|
|
97
|
+
setConfig: (bitrate: string | null) => void;
|
|
98
|
+
id: "buffer-size";
|
|
99
|
+
}, encodingMaxRateOption: {
|
|
100
|
+
name: string;
|
|
101
|
+
cliFlag: "max-rate";
|
|
102
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
103
|
+
ssrName: "encodingMaxRate";
|
|
104
|
+
docLink: string;
|
|
105
|
+
type: string | null;
|
|
106
|
+
getValue: ({ commandLine }: {
|
|
107
|
+
commandLine: Record<string, unknown>;
|
|
108
|
+
}) => {
|
|
109
|
+
value: string;
|
|
110
|
+
source: string;
|
|
111
|
+
} | {
|
|
112
|
+
value: null;
|
|
113
|
+
source: string;
|
|
114
|
+
};
|
|
115
|
+
setConfig: (newMaxRate: string | null) => void;
|
|
116
|
+
id: "max-rate";
|
|
117
|
+
}, deleteAfterOption: {
|
|
118
|
+
name: string;
|
|
119
|
+
cliFlag: "delete-after";
|
|
120
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
121
|
+
ssrName: "deleteAfter";
|
|
122
|
+
docLink: string;
|
|
123
|
+
type: import("@remotion/renderer").DeleteAfter | null;
|
|
124
|
+
getValue: ({ commandLine }: {
|
|
125
|
+
commandLine: Record<string, unknown>;
|
|
126
|
+
}) => {
|
|
127
|
+
source: string;
|
|
128
|
+
value: import("@remotion/renderer").DeleteAfter;
|
|
129
|
+
} | {
|
|
130
|
+
source: string;
|
|
131
|
+
value: null;
|
|
132
|
+
};
|
|
133
|
+
setConfig: (value: import("@remotion/renderer").DeleteAfter | null) => void;
|
|
134
|
+
id: "delete-after";
|
|
135
|
+
}, folderExpiryOption: {
|
|
136
|
+
name: string;
|
|
137
|
+
cliFlag: "enable-folder-expiry";
|
|
138
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
139
|
+
ssrName: "enableFolderExpiry";
|
|
140
|
+
docLink: string;
|
|
141
|
+
type: boolean | null;
|
|
142
|
+
getValue: ({ commandLine }: {
|
|
143
|
+
commandLine: Record<string, unknown>;
|
|
144
|
+
}) => {
|
|
145
|
+
source: string;
|
|
146
|
+
value: boolean | null;
|
|
147
|
+
};
|
|
148
|
+
setConfig: (value: boolean | null) => void;
|
|
149
|
+
id: "enable-folder-expiry";
|
|
150
|
+
}, enableMultiprocessOnLinuxOption: {
|
|
151
|
+
name: string;
|
|
152
|
+
cliFlag: "enable-multiprocess-on-linux";
|
|
153
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
154
|
+
ssrName: string;
|
|
155
|
+
docLink: string;
|
|
156
|
+
type: boolean;
|
|
157
|
+
getValue: ({ commandLine }: {
|
|
158
|
+
commandLine: Record<string, unknown>;
|
|
159
|
+
}) => {
|
|
160
|
+
source: string;
|
|
161
|
+
value: boolean;
|
|
162
|
+
};
|
|
163
|
+
setConfig: (value: boolean) => void;
|
|
164
|
+
id: "enable-multiprocess-on-linux";
|
|
165
|
+
}, numberOfGifLoopsOption: {
|
|
166
|
+
name: string;
|
|
167
|
+
cliFlag: "number-of-gif-loops";
|
|
168
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
169
|
+
ssrName: "numberOfGifLoops";
|
|
170
|
+
docLink: string;
|
|
171
|
+
type: number | null;
|
|
172
|
+
getValue: ({ commandLine }: {
|
|
173
|
+
commandLine: Record<string, unknown>;
|
|
174
|
+
}) => {
|
|
175
|
+
value: number;
|
|
176
|
+
source: string;
|
|
177
|
+
} | {
|
|
178
|
+
value: null;
|
|
179
|
+
source: string;
|
|
180
|
+
};
|
|
181
|
+
setConfig: (newLoop: import("@remotion/renderer").NumberOfGifLoops) => void;
|
|
182
|
+
id: "number-of-gif-loops";
|
|
183
|
+
}, x264Option: {
|
|
184
|
+
name: string;
|
|
185
|
+
cliFlag: "x264-preset";
|
|
186
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
187
|
+
ssrName: "x264Preset";
|
|
188
|
+
docLink: string;
|
|
189
|
+
type: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null;
|
|
190
|
+
getValue: ({ commandLine }: {
|
|
191
|
+
commandLine: Record<string, unknown>;
|
|
192
|
+
}) => {
|
|
193
|
+
value: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow";
|
|
194
|
+
source: string;
|
|
195
|
+
} | {
|
|
196
|
+
value: null;
|
|
197
|
+
source: string;
|
|
198
|
+
};
|
|
199
|
+
setConfig: (profile: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null) => void;
|
|
200
|
+
id: "x264-preset";
|
|
201
|
+
}, enforceAudioOption: {
|
|
202
|
+
name: string;
|
|
203
|
+
cliFlag: "enforce-audio-track";
|
|
204
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
205
|
+
ssrName: string;
|
|
206
|
+
docLink: string;
|
|
207
|
+
type: boolean;
|
|
208
|
+
getValue: ({ commandLine }: {
|
|
209
|
+
commandLine: Record<string, unknown>;
|
|
210
|
+
}) => {
|
|
211
|
+
source: string;
|
|
212
|
+
value: true;
|
|
213
|
+
} | {
|
|
214
|
+
source: string;
|
|
215
|
+
value: false;
|
|
216
|
+
};
|
|
217
|
+
setConfig: (value: boolean) => void;
|
|
218
|
+
id: "enforce-audio-track";
|
|
219
|
+
}, jpegQualityOption: {
|
|
220
|
+
name: string;
|
|
221
|
+
cliFlag: "jpeg-quality";
|
|
222
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
223
|
+
ssrName: string;
|
|
224
|
+
docLink: string;
|
|
225
|
+
type: number;
|
|
226
|
+
setConfig: (q: number | undefined) => void;
|
|
227
|
+
getValue: ({ commandLine }: {
|
|
228
|
+
commandLine: Record<string, unknown>;
|
|
229
|
+
}) => {
|
|
230
|
+
source: string;
|
|
231
|
+
value: number;
|
|
232
|
+
};
|
|
233
|
+
id: "jpeg-quality";
|
|
234
|
+
}, audioBitrateOption: {
|
|
235
|
+
name: string;
|
|
236
|
+
cliFlag: "audio-bitrate";
|
|
237
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
238
|
+
ssrName: string;
|
|
239
|
+
docLink: string;
|
|
240
|
+
type: string;
|
|
241
|
+
getValue: ({ commandLine }: {
|
|
242
|
+
commandLine: Record<string, unknown>;
|
|
243
|
+
}) => {
|
|
244
|
+
value: string;
|
|
245
|
+
source: string;
|
|
246
|
+
} | {
|
|
247
|
+
value: null;
|
|
248
|
+
source: string;
|
|
249
|
+
};
|
|
250
|
+
setConfig: (value: string | null) => void;
|
|
251
|
+
id: "audio-bitrate";
|
|
252
|
+
}, videoBitrateOption: {
|
|
253
|
+
name: string;
|
|
254
|
+
cliFlag: "video-bitrate";
|
|
255
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
256
|
+
ssrName: string;
|
|
257
|
+
docLink: string;
|
|
258
|
+
type: string | null;
|
|
259
|
+
getValue: ({ commandLine }: {
|
|
260
|
+
commandLine: Record<string, unknown>;
|
|
261
|
+
}) => {
|
|
262
|
+
source: string;
|
|
263
|
+
value: string | null;
|
|
264
|
+
};
|
|
265
|
+
setConfig: (bitrate: string | null) => void;
|
|
266
|
+
id: "video-bitrate";
|
|
267
|
+
}, audioCodecOption: {
|
|
268
|
+
cliFlag: "audio-codec";
|
|
269
|
+
setConfig: (audioCodec: "aac" | "mp3" | "opus" | "pcm-16" | null) => void;
|
|
270
|
+
getValue: ({ commandLine }: {
|
|
271
|
+
commandLine: Record<string, unknown>;
|
|
272
|
+
}) => {
|
|
273
|
+
source: string;
|
|
274
|
+
value: "aac" | "mp3" | "opus" | "pcm-16";
|
|
275
|
+
} | {
|
|
276
|
+
source: string;
|
|
277
|
+
value: null;
|
|
278
|
+
};
|
|
279
|
+
description: () => string;
|
|
280
|
+
docLink: string;
|
|
281
|
+
name: string;
|
|
282
|
+
ssrName: "audioCodec";
|
|
283
|
+
type: "aac" | "mp3" | "opus" | "pcm-16";
|
|
284
|
+
id: "audio-codec";
|
|
285
|
+
}, publicPathOption: {
|
|
286
|
+
name: string;
|
|
287
|
+
cliFlag: "public-path";
|
|
288
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
289
|
+
ssrName: "publicPath";
|
|
290
|
+
docLink: string;
|
|
291
|
+
getValue: ({ commandLine }: {
|
|
292
|
+
commandLine: Record<string, unknown>;
|
|
293
|
+
}) => {
|
|
294
|
+
source: string;
|
|
295
|
+
value: string;
|
|
296
|
+
} | {
|
|
297
|
+
source: string;
|
|
298
|
+
value: null;
|
|
299
|
+
};
|
|
300
|
+
setConfig: (value: string | null) => void;
|
|
301
|
+
type: string | null;
|
|
302
|
+
id: "public-path";
|
|
303
|
+
}, audioLatencyHintOption: {
|
|
304
|
+
name: string;
|
|
305
|
+
cliFlag: "audio-latency-hint";
|
|
306
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
307
|
+
ssrName: "audioLatencyHint";
|
|
308
|
+
docLink: string;
|
|
309
|
+
type: AudioContextLatencyCategory;
|
|
310
|
+
getValue: ({ commandLine }: {
|
|
311
|
+
commandLine: Record<string, unknown>;
|
|
312
|
+
}) => {
|
|
313
|
+
value: AudioContextLatencyCategory;
|
|
314
|
+
source: string;
|
|
315
|
+
} | {
|
|
316
|
+
value: null;
|
|
317
|
+
source: string;
|
|
318
|
+
};
|
|
319
|
+
setConfig: (profile: AudioContextLatencyCategory | null) => void;
|
|
320
|
+
id: "audio-latency-hint";
|
|
321
|
+
}, darkModeOption: {
|
|
322
|
+
name: string;
|
|
323
|
+
cliFlag: "dark-mode";
|
|
324
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
325
|
+
ssrName: string;
|
|
326
|
+
docLink: string;
|
|
327
|
+
type: boolean;
|
|
328
|
+
getValue: ({ commandLine }: {
|
|
329
|
+
commandLine: Record<string, unknown>;
|
|
330
|
+
}) => {
|
|
331
|
+
source: string;
|
|
332
|
+
value: boolean;
|
|
333
|
+
};
|
|
334
|
+
setConfig: (value: boolean) => void;
|
|
335
|
+
id: "dark-mode";
|
|
336
|
+
}, publicLicenseKeyOption: {
|
|
337
|
+
name: string;
|
|
338
|
+
cliFlag: "public-license-key";
|
|
339
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
340
|
+
ssrName: "publicLicenseKey";
|
|
341
|
+
docLink: string;
|
|
342
|
+
getValue: ({ commandLine }: {
|
|
343
|
+
commandLine: Record<string, unknown>;
|
|
344
|
+
}) => {
|
|
345
|
+
source: string;
|
|
346
|
+
value: string | null;
|
|
347
|
+
};
|
|
348
|
+
setConfig: (value: string | null) => void;
|
|
349
|
+
type: string | null;
|
|
350
|
+
id: "public-license-key";
|
|
351
|
+
}, forceNewStudioOption: {
|
|
352
|
+
name: string;
|
|
353
|
+
cliFlag: "force-new";
|
|
354
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
355
|
+
ssrName: null;
|
|
356
|
+
docLink: string;
|
|
357
|
+
type: boolean;
|
|
358
|
+
getValue: ({ commandLine }: {
|
|
359
|
+
commandLine: Record<string, unknown>;
|
|
360
|
+
}) => {
|
|
361
|
+
value: boolean;
|
|
362
|
+
source: string;
|
|
363
|
+
};
|
|
364
|
+
setConfig(value: boolean): void;
|
|
365
|
+
id: "force-new";
|
|
366
|
+
}, numberOfSharedAudioTagsOption: {
|
|
367
|
+
name: string;
|
|
368
|
+
cliFlag: "number-of-shared-audio-tags";
|
|
369
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
370
|
+
ssrName: null;
|
|
371
|
+
docLink: string;
|
|
372
|
+
type: number;
|
|
373
|
+
getValue: ({ commandLine }: {
|
|
374
|
+
commandLine: Record<string, unknown>;
|
|
375
|
+
}) => {
|
|
376
|
+
value: number;
|
|
377
|
+
source: string;
|
|
378
|
+
};
|
|
379
|
+
setConfig(value: number): void;
|
|
380
|
+
id: "number-of-shared-audio-tags";
|
|
381
|
+
}, ipv4Option: {
|
|
382
|
+
name: string;
|
|
383
|
+
cliFlag: "ipv4";
|
|
384
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
385
|
+
ssrName: null;
|
|
386
|
+
docLink: string;
|
|
387
|
+
type: boolean;
|
|
388
|
+
getValue: ({ commandLine }: {
|
|
389
|
+
commandLine: Record<string, unknown>;
|
|
390
|
+
}) => {
|
|
391
|
+
value: boolean;
|
|
392
|
+
source: string;
|
|
393
|
+
};
|
|
394
|
+
setConfig(value: boolean): void;
|
|
395
|
+
id: "ipv4";
|
|
396
|
+
}, pixelFormatOption: {
|
|
397
|
+
name: string;
|
|
398
|
+
cliFlag: "pixel-format";
|
|
399
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
400
|
+
ssrName: "pixelFormat";
|
|
401
|
+
docLink: string;
|
|
402
|
+
type: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le";
|
|
403
|
+
getValue: ({ commandLine }: {
|
|
404
|
+
commandLine: Record<string, unknown>;
|
|
405
|
+
}) => {
|
|
406
|
+
source: string;
|
|
407
|
+
value: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le";
|
|
408
|
+
};
|
|
409
|
+
setConfig: (value: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le") => void;
|
|
410
|
+
id: "pixel-format";
|
|
411
|
+
}, browserExecutableOption: {
|
|
412
|
+
name: string;
|
|
413
|
+
cliFlag: "browser-executable";
|
|
414
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
415
|
+
ssrName: "browserExecutable";
|
|
416
|
+
docLink: string;
|
|
417
|
+
type: import("@remotion/renderer").BrowserExecutable;
|
|
418
|
+
getValue: ({ commandLine }: {
|
|
419
|
+
commandLine: Record<string, unknown>;
|
|
420
|
+
}) => {
|
|
421
|
+
source: string;
|
|
422
|
+
value: import("@remotion/renderer").BrowserExecutable;
|
|
423
|
+
};
|
|
424
|
+
setConfig: (value: import("@remotion/renderer").BrowserExecutable) => void;
|
|
425
|
+
id: "browser-executable";
|
|
426
|
+
}, everyNthFrameOption: {
|
|
427
|
+
name: string;
|
|
428
|
+
cliFlag: "every-nth-frame";
|
|
429
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
430
|
+
ssrName: "everyNthFrame";
|
|
431
|
+
docLink: string;
|
|
432
|
+
type: number;
|
|
433
|
+
getValue: ({ commandLine }: {
|
|
434
|
+
commandLine: Record<string, unknown>;
|
|
435
|
+
}) => {
|
|
436
|
+
source: string;
|
|
437
|
+
value: number;
|
|
438
|
+
};
|
|
439
|
+
setConfig: (value: number) => void;
|
|
440
|
+
id: "every-nth-frame";
|
|
441
|
+
}, proResProfileOption: {
|
|
442
|
+
name: string;
|
|
443
|
+
cliFlag: "prores-profile";
|
|
444
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
445
|
+
ssrName: "proResProfile";
|
|
446
|
+
docLink: string;
|
|
447
|
+
type: import("@remotion/renderer/client").ProResProfile | undefined;
|
|
448
|
+
getValue: ({ commandLine }: {
|
|
449
|
+
commandLine: Record<string, unknown>;
|
|
450
|
+
}) => {
|
|
451
|
+
source: string;
|
|
452
|
+
value: import("@remotion/renderer/client").ProResProfile;
|
|
453
|
+
} | {
|
|
454
|
+
source: string;
|
|
455
|
+
value: undefined;
|
|
456
|
+
};
|
|
457
|
+
setConfig: (value: import("@remotion/renderer/client").ProResProfile | undefined) => void;
|
|
458
|
+
id: "prores-profile";
|
|
459
|
+
}, userAgentOption: {
|
|
460
|
+
name: string;
|
|
461
|
+
cliFlag: "user-agent";
|
|
462
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
463
|
+
ssrName: "userAgent";
|
|
464
|
+
docLink: string;
|
|
465
|
+
type: string | null;
|
|
466
|
+
getValue: ({ commandLine }: {
|
|
467
|
+
commandLine: Record<string, unknown>;
|
|
468
|
+
}) => {
|
|
469
|
+
source: string;
|
|
470
|
+
value: string;
|
|
471
|
+
} | {
|
|
472
|
+
source: string;
|
|
473
|
+
value: null;
|
|
474
|
+
};
|
|
475
|
+
setConfig: (value: string | null) => void;
|
|
476
|
+
id: "user-agent";
|
|
477
|
+
}, disableWebSecurityOption: {
|
|
478
|
+
name: string;
|
|
479
|
+
cliFlag: "disable-web-security";
|
|
480
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
481
|
+
ssrName: "disableWebSecurity";
|
|
482
|
+
docLink: string;
|
|
483
|
+
type: boolean;
|
|
484
|
+
getValue: ({ commandLine }: {
|
|
485
|
+
commandLine: Record<string, unknown>;
|
|
486
|
+
}) => {
|
|
487
|
+
source: string;
|
|
488
|
+
value: boolean;
|
|
489
|
+
};
|
|
490
|
+
setConfig: (value: boolean) => void;
|
|
491
|
+
id: "disable-web-security";
|
|
492
|
+
}, ignoreCertificateErrorsOption: {
|
|
493
|
+
name: string;
|
|
494
|
+
cliFlag: "ignore-certificate-errors";
|
|
495
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
496
|
+
ssrName: "ignoreCertificateErrors";
|
|
497
|
+
docLink: string;
|
|
498
|
+
type: boolean;
|
|
499
|
+
getValue: ({ commandLine }: {
|
|
500
|
+
commandLine: Record<string, unknown>;
|
|
501
|
+
}) => {
|
|
502
|
+
source: string;
|
|
503
|
+
value: boolean;
|
|
504
|
+
};
|
|
505
|
+
setConfig: (value: boolean) => void;
|
|
506
|
+
id: "ignore-certificate-errors";
|
|
507
|
+
}, overrideHeightOption: {
|
|
508
|
+
name: string;
|
|
509
|
+
cliFlag: "height";
|
|
510
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
511
|
+
ssrName: null;
|
|
512
|
+
docLink: string;
|
|
513
|
+
type: number | null;
|
|
514
|
+
getValue: ({ commandLine }: {
|
|
515
|
+
commandLine: Record<string, unknown>;
|
|
516
|
+
}) => {
|
|
517
|
+
source: string;
|
|
518
|
+
value: number;
|
|
519
|
+
} | {
|
|
520
|
+
source: string;
|
|
521
|
+
value: null;
|
|
522
|
+
};
|
|
523
|
+
setConfig: (height: number | null) => void;
|
|
524
|
+
id: "height";
|
|
525
|
+
}, overrideWidthOption: {
|
|
526
|
+
name: string;
|
|
527
|
+
cliFlag: "width";
|
|
528
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
529
|
+
ssrName: null;
|
|
530
|
+
docLink: string;
|
|
531
|
+
type: number | null;
|
|
532
|
+
getValue: ({ commandLine }: {
|
|
533
|
+
commandLine: Record<string, unknown>;
|
|
534
|
+
}) => {
|
|
535
|
+
source: string;
|
|
536
|
+
value: number;
|
|
537
|
+
} | {
|
|
538
|
+
source: string;
|
|
539
|
+
value: null;
|
|
540
|
+
};
|
|
541
|
+
setConfig: (width: number | null) => void;
|
|
542
|
+
id: "width";
|
|
543
|
+
}, overrideFpsOption: {
|
|
544
|
+
name: string;
|
|
545
|
+
cliFlag: "fps";
|
|
546
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
547
|
+
ssrName: null;
|
|
548
|
+
docLink: string;
|
|
549
|
+
type: number | null;
|
|
550
|
+
getValue: ({ commandLine }: {
|
|
551
|
+
commandLine: Record<string, unknown>;
|
|
552
|
+
}) => {
|
|
553
|
+
source: string;
|
|
554
|
+
value: number;
|
|
555
|
+
} | {
|
|
556
|
+
source: string;
|
|
557
|
+
value: null;
|
|
558
|
+
};
|
|
559
|
+
setConfig: (fps: number | null) => void;
|
|
560
|
+
id: "fps";
|
|
561
|
+
}, overrideDurationOption: {
|
|
562
|
+
name: string;
|
|
563
|
+
cliFlag: "duration";
|
|
564
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
565
|
+
ssrName: null;
|
|
566
|
+
docLink: string;
|
|
567
|
+
type: number | null;
|
|
568
|
+
getValue: ({ commandLine }: {
|
|
569
|
+
commandLine: Record<string, unknown>;
|
|
570
|
+
}) => {
|
|
571
|
+
source: string;
|
|
572
|
+
value: number;
|
|
573
|
+
} | {
|
|
574
|
+
source: string;
|
|
575
|
+
value: null;
|
|
576
|
+
};
|
|
577
|
+
setConfig: (duration: number | null) => void;
|
|
578
|
+
id: "duration";
|
|
579
|
+
}, outDirOption: {
|
|
580
|
+
name: string;
|
|
581
|
+
cliFlag: "out-dir";
|
|
582
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
583
|
+
ssrName: "outDir";
|
|
584
|
+
docLink: string;
|
|
585
|
+
getValue: ({ commandLine }: {
|
|
586
|
+
commandLine: Record<string, unknown>;
|
|
587
|
+
}) => {
|
|
588
|
+
source: string;
|
|
589
|
+
value: string;
|
|
590
|
+
} | {
|
|
591
|
+
source: string;
|
|
592
|
+
value: null;
|
|
593
|
+
};
|
|
594
|
+
setConfig: (value: string | null) => void;
|
|
595
|
+
type: string | null;
|
|
596
|
+
id: "out-dir";
|
|
597
|
+
}, packageManagerOption: {
|
|
598
|
+
name: string;
|
|
599
|
+
cliFlag: "package-manager";
|
|
600
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
601
|
+
ssrName: "packageManager";
|
|
602
|
+
docLink: string;
|
|
603
|
+
getValue: ({ commandLine }: {
|
|
604
|
+
commandLine: Record<string, unknown>;
|
|
605
|
+
}) => {
|
|
606
|
+
source: string;
|
|
607
|
+
value: string;
|
|
608
|
+
} | {
|
|
609
|
+
source: string;
|
|
610
|
+
value: null;
|
|
611
|
+
};
|
|
612
|
+
setConfig: (value: string | null) => void;
|
|
613
|
+
type: string | null;
|
|
614
|
+
id: "package-manager";
|
|
615
|
+
}, webpackPollOption: {
|
|
616
|
+
name: string;
|
|
617
|
+
cliFlag: "webpack-poll";
|
|
618
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
619
|
+
ssrName: null;
|
|
620
|
+
docLink: string;
|
|
621
|
+
getValue: ({ commandLine }: {
|
|
622
|
+
commandLine: Record<string, unknown>;
|
|
623
|
+
}) => {
|
|
624
|
+
source: string;
|
|
625
|
+
value: number;
|
|
626
|
+
} | {
|
|
627
|
+
source: string;
|
|
628
|
+
value: null;
|
|
629
|
+
};
|
|
630
|
+
setConfig: (value: number | null) => void;
|
|
631
|
+
type: number | null;
|
|
632
|
+
id: "webpack-poll";
|
|
633
|
+
}, keyboardShortcutsOption: {
|
|
634
|
+
name: string;
|
|
635
|
+
cliFlag: "disable-keyboard-shortcuts";
|
|
636
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
637
|
+
ssrName: null;
|
|
638
|
+
docLink: string;
|
|
639
|
+
type: boolean;
|
|
640
|
+
getValue: ({ commandLine }: {
|
|
641
|
+
commandLine: Record<string, unknown>;
|
|
642
|
+
}) => {
|
|
643
|
+
value: boolean;
|
|
644
|
+
source: string;
|
|
645
|
+
};
|
|
646
|
+
setConfig(value: boolean): void;
|
|
647
|
+
id: "disable-keyboard-shortcuts";
|
|
648
|
+
}, experimentalClientSideRenderingOption: {
|
|
649
|
+
name: string;
|
|
650
|
+
cliFlag: "enable-experimental-client-side-rendering";
|
|
651
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
652
|
+
ssrName: null;
|
|
653
|
+
docLink: string;
|
|
654
|
+
type: boolean;
|
|
655
|
+
getValue: ({ commandLine }: {
|
|
656
|
+
commandLine: Record<string, unknown>;
|
|
657
|
+
}) => {
|
|
658
|
+
value: boolean;
|
|
659
|
+
source: string;
|
|
660
|
+
};
|
|
661
|
+
setConfig(value: boolean): void;
|
|
662
|
+
id: "enable-experimental-client-side-rendering";
|
|
663
|
+
}, imageSequencePatternOption: {
|
|
664
|
+
name: string;
|
|
665
|
+
cliFlag: "image-sequence-pattern";
|
|
666
|
+
ssrName: string;
|
|
667
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
668
|
+
docLink: null;
|
|
669
|
+
type: string | null;
|
|
670
|
+
getValue: ({ commandLine }: {
|
|
671
|
+
commandLine: Record<string, unknown>;
|
|
672
|
+
}) => {
|
|
673
|
+
value: string;
|
|
674
|
+
source: string;
|
|
675
|
+
};
|
|
676
|
+
setConfig: (pattern: string | null) => void;
|
|
677
|
+
id: "image-sequence-pattern";
|
|
678
|
+
}, scaleOption: {
|
|
679
|
+
name: string;
|
|
680
|
+
cliFlag: "scale";
|
|
681
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
682
|
+
ssrName: string;
|
|
683
|
+
docLink: string;
|
|
684
|
+
type: number;
|
|
685
|
+
getValue: ({ commandLine }: {
|
|
686
|
+
commandLine: Record<string, unknown>;
|
|
687
|
+
}) => {
|
|
688
|
+
source: string;
|
|
689
|
+
value: number;
|
|
690
|
+
};
|
|
691
|
+
setConfig: (scale: number) => void;
|
|
692
|
+
id: "scale";
|
|
693
|
+
}, overwriteOption: {
|
|
694
|
+
name: string;
|
|
695
|
+
cliFlag: "overwrite";
|
|
696
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
697
|
+
ssrName: string;
|
|
698
|
+
docLink: string;
|
|
699
|
+
type: boolean;
|
|
700
|
+
getValue: ({ commandLine }: {
|
|
701
|
+
commandLine: Record<string, unknown>;
|
|
702
|
+
}, defaultValue: boolean) => {
|
|
703
|
+
source: string;
|
|
704
|
+
value: boolean;
|
|
705
|
+
};
|
|
706
|
+
setConfig: (value: boolean) => void;
|
|
707
|
+
id: "overwrite";
|
|
708
|
+
}, crfOption: {
|
|
709
|
+
name: string;
|
|
710
|
+
cliFlag: "crf";
|
|
711
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
712
|
+
ssrName: string;
|
|
713
|
+
docLink: string;
|
|
714
|
+
type: number;
|
|
715
|
+
getValue: ({ commandLine }: {
|
|
716
|
+
commandLine: Record<string, unknown>;
|
|
717
|
+
}) => {
|
|
718
|
+
source: string;
|
|
719
|
+
value: import("@remotion/renderer").Crf;
|
|
720
|
+
};
|
|
721
|
+
setConfig: (crf: import("@remotion/renderer").Crf) => void;
|
|
722
|
+
id: "crf";
|
|
723
|
+
}, logLevelOption: {
|
|
724
|
+
cliFlag: "log";
|
|
725
|
+
name: string;
|
|
726
|
+
ssrName: string;
|
|
727
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
728
|
+
docLink: string;
|
|
729
|
+
getValue: ({ commandLine }: {
|
|
730
|
+
commandLine: Record<string, unknown>;
|
|
731
|
+
}) => {
|
|
732
|
+
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
733
|
+
source: string;
|
|
734
|
+
};
|
|
735
|
+
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
736
|
+
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
737
|
+
id: "log";
|
|
738
|
+
}, videoCodecOption: {
|
|
739
|
+
name: string;
|
|
740
|
+
cliFlag: "codec";
|
|
741
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
742
|
+
ssrName: string;
|
|
743
|
+
docLink: string;
|
|
744
|
+
type: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav";
|
|
745
|
+
getValue: ({ commandLine }: {
|
|
746
|
+
commandLine: Record<string, unknown>;
|
|
747
|
+
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
748
|
+
outName: string | null;
|
|
749
|
+
downloadName: string | null;
|
|
750
|
+
configFile: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
751
|
+
uiCodec: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
752
|
+
compositionCodec: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
753
|
+
}) => {
|
|
754
|
+
value: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav";
|
|
755
|
+
source: string;
|
|
756
|
+
};
|
|
757
|
+
setConfig: (newCodec: import("@remotion/renderer").CodecOrUndefined) => void;
|
|
758
|
+
id: "codec";
|
|
759
|
+
}, stillFrameOption: {
|
|
760
|
+
name: string;
|
|
761
|
+
cliFlag: "frame";
|
|
762
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
763
|
+
ssrName: "frame";
|
|
764
|
+
docLink: string;
|
|
765
|
+
getValue: ({ commandLine }: {
|
|
766
|
+
commandLine: Record<string, unknown>;
|
|
767
|
+
}) => {
|
|
768
|
+
source: string;
|
|
769
|
+
value: number;
|
|
770
|
+
} | {
|
|
771
|
+
source: string;
|
|
772
|
+
value: null;
|
|
773
|
+
};
|
|
774
|
+
setConfig: (value: number | null) => void;
|
|
775
|
+
type: number | null;
|
|
776
|
+
id: "frame";
|
|
777
|
+
}, imageSequenceOption: {
|
|
778
|
+
name: string;
|
|
779
|
+
cliFlag: "sequence";
|
|
780
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
781
|
+
ssrName: null;
|
|
782
|
+
docLink: string;
|
|
783
|
+
getValue: ({ commandLine }: {
|
|
784
|
+
commandLine: Record<string, unknown>;
|
|
785
|
+
}) => {
|
|
786
|
+
source: string;
|
|
787
|
+
value: boolean;
|
|
788
|
+
};
|
|
789
|
+
setConfig: (value: boolean) => void;
|
|
790
|
+
type: boolean;
|
|
791
|
+
id: "sequence";
|
|
792
|
+
}, versionFlagOption: {
|
|
793
|
+
name: string;
|
|
794
|
+
cliFlag: "version";
|
|
795
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
796
|
+
ssrName: null;
|
|
797
|
+
docLink: string;
|
|
798
|
+
getValue: ({ commandLine }: {
|
|
799
|
+
commandLine: Record<string, unknown>;
|
|
800
|
+
}) => {
|
|
801
|
+
source: string;
|
|
802
|
+
value: string;
|
|
803
|
+
} | {
|
|
804
|
+
source: string;
|
|
805
|
+
value: null;
|
|
806
|
+
};
|
|
807
|
+
setConfig: () => never;
|
|
808
|
+
type: string | null;
|
|
809
|
+
id: "version";
|
|
810
|
+
}, bundleCacheOption: {
|
|
811
|
+
name: string;
|
|
812
|
+
cliFlag: "bundle-cache";
|
|
813
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
814
|
+
ssrName: null;
|
|
815
|
+
docLink: string;
|
|
816
|
+
getValue: ({ commandLine }: {
|
|
817
|
+
commandLine: Record<string, unknown>;
|
|
818
|
+
}) => {
|
|
819
|
+
source: string;
|
|
820
|
+
value: boolean;
|
|
821
|
+
};
|
|
822
|
+
setConfig: (value: boolean) => void;
|
|
823
|
+
type: boolean;
|
|
824
|
+
id: "bundle-cache";
|
|
825
|
+
}, envFileOption: {
|
|
826
|
+
name: string;
|
|
827
|
+
cliFlag: "env-file";
|
|
828
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
829
|
+
ssrName: null;
|
|
830
|
+
docLink: string;
|
|
831
|
+
getValue: ({ commandLine }: {
|
|
832
|
+
commandLine: Record<string, unknown>;
|
|
833
|
+
}) => {
|
|
834
|
+
source: string;
|
|
835
|
+
value: string;
|
|
836
|
+
} | {
|
|
837
|
+
source: string;
|
|
838
|
+
value: null;
|
|
839
|
+
};
|
|
840
|
+
setConfig: (value: string | null) => void;
|
|
841
|
+
type: string | null;
|
|
842
|
+
id: "env-file";
|
|
843
|
+
}, glOption: {
|
|
844
|
+
cliFlag: "gl";
|
|
845
|
+
docLink: string;
|
|
846
|
+
name: string;
|
|
847
|
+
type: "angle" | "angle-egl" | "egl" | "swangle" | "swiftshader" | "vulkan" | null;
|
|
848
|
+
ssrName: string;
|
|
849
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
850
|
+
getValue: ({ commandLine }: {
|
|
851
|
+
commandLine: Record<string, unknown>;
|
|
852
|
+
}) => {
|
|
853
|
+
value: "angle" | "angle-egl" | "egl" | "swangle" | "swiftshader" | "vulkan";
|
|
854
|
+
source: string;
|
|
855
|
+
} | {
|
|
856
|
+
value: null;
|
|
857
|
+
source: string;
|
|
858
|
+
};
|
|
859
|
+
setConfig: (value: "angle" | "angle-egl" | "egl" | "swangle" | "swiftshader" | "vulkan" | null) => void;
|
|
860
|
+
id: "gl";
|
|
861
|
+
}, runsOption: {
|
|
862
|
+
name: string;
|
|
863
|
+
cliFlag: "runs";
|
|
864
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
865
|
+
ssrName: null;
|
|
866
|
+
docLink: string;
|
|
867
|
+
type: number;
|
|
868
|
+
getValue: ({ commandLine }: {
|
|
869
|
+
commandLine: Record<string, unknown>;
|
|
870
|
+
}) => {
|
|
871
|
+
value: number;
|
|
872
|
+
source: string;
|
|
873
|
+
};
|
|
874
|
+
setConfig: (value: number) => void;
|
|
875
|
+
id: "runs";
|
|
876
|
+
}, reproOption: {
|
|
877
|
+
name: string;
|
|
878
|
+
cliFlag: "repro";
|
|
879
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
880
|
+
ssrName: string;
|
|
881
|
+
docLink: string;
|
|
882
|
+
type: boolean;
|
|
883
|
+
getValue: ({ commandLine }: {
|
|
884
|
+
commandLine: Record<string, unknown>;
|
|
885
|
+
}) => {
|
|
886
|
+
value: boolean;
|
|
887
|
+
source: string;
|
|
888
|
+
};
|
|
889
|
+
setConfig: (should: boolean) => void;
|
|
890
|
+
id: "repro";
|
|
891
|
+
}, mutedOption: {
|
|
892
|
+
name: string;
|
|
893
|
+
cliFlag: "muted";
|
|
894
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
895
|
+
ssrName: string;
|
|
896
|
+
docLink: string;
|
|
897
|
+
type: boolean;
|
|
898
|
+
getValue: ({ commandLine }: {
|
|
899
|
+
commandLine: Record<string, unknown>;
|
|
900
|
+
}) => {
|
|
901
|
+
source: string;
|
|
902
|
+
value: boolean;
|
|
903
|
+
};
|
|
904
|
+
setConfig: () => void;
|
|
905
|
+
id: "muted";
|
|
906
|
+
}, headlessOption: {
|
|
907
|
+
name: string;
|
|
908
|
+
cliFlag: "disable-headless";
|
|
909
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
910
|
+
ssrName: string;
|
|
911
|
+
docLink: string;
|
|
912
|
+
type: boolean;
|
|
913
|
+
getValue: ({ commandLine }: {
|
|
914
|
+
commandLine: Record<string, unknown>;
|
|
915
|
+
}) => {
|
|
916
|
+
source: string;
|
|
917
|
+
value: boolean;
|
|
918
|
+
};
|
|
919
|
+
setConfig: (value: boolean) => void;
|
|
920
|
+
id: "disable-headless";
|
|
921
|
+
}, framesOption: {
|
|
922
|
+
name: string;
|
|
923
|
+
cliFlag: "frames";
|
|
924
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
925
|
+
ssrName: "frameRange";
|
|
926
|
+
docLink: string;
|
|
927
|
+
type: import("@remotion/renderer").FrameRange | null;
|
|
928
|
+
getValue: ({ commandLine }: {
|
|
929
|
+
commandLine: Record<string, unknown>;
|
|
930
|
+
}) => {
|
|
931
|
+
source: string;
|
|
932
|
+
value: import("@remotion/renderer").FrameRange | null;
|
|
933
|
+
};
|
|
934
|
+
setConfig: (value: import("@remotion/renderer").FrameRange | null) => void;
|
|
935
|
+
id: "frames";
|
|
936
|
+
}, noOpenOption: {
|
|
937
|
+
name: string;
|
|
938
|
+
cliFlag: "no-open";
|
|
939
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
940
|
+
ssrName: null;
|
|
941
|
+
docLink: string;
|
|
942
|
+
type: boolean;
|
|
943
|
+
getValue: ({ commandLine }: {
|
|
944
|
+
commandLine: Record<string, unknown>;
|
|
945
|
+
}) => {
|
|
946
|
+
value: true;
|
|
947
|
+
source: string;
|
|
948
|
+
} | {
|
|
949
|
+
value: false;
|
|
950
|
+
source: string;
|
|
951
|
+
};
|
|
952
|
+
setConfig: (shouldOpen: boolean) => void;
|
|
953
|
+
id: "no-open";
|
|
954
|
+
}, portOption: {
|
|
955
|
+
name: string;
|
|
956
|
+
cliFlag: "port";
|
|
957
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
958
|
+
ssrName: null;
|
|
959
|
+
docLink: string;
|
|
960
|
+
getValue: ({ commandLine }: {
|
|
961
|
+
commandLine: Record<string, unknown>;
|
|
962
|
+
}) => {
|
|
963
|
+
source: string;
|
|
964
|
+
value: number;
|
|
965
|
+
} | {
|
|
966
|
+
source: string;
|
|
967
|
+
value: null;
|
|
968
|
+
};
|
|
969
|
+
setConfig: (value: number | null) => void;
|
|
970
|
+
type: number | null;
|
|
971
|
+
id: "port";
|
|
972
|
+
}, propsOption: {
|
|
973
|
+
name: string;
|
|
974
|
+
cliFlag: "props";
|
|
975
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
976
|
+
ssrName: null;
|
|
977
|
+
docLink: string;
|
|
978
|
+
getValue: ({ commandLine }: {
|
|
979
|
+
commandLine: Record<string, unknown>;
|
|
980
|
+
}) => {
|
|
981
|
+
source: string;
|
|
982
|
+
value: string;
|
|
983
|
+
} | {
|
|
984
|
+
source: string;
|
|
985
|
+
value: null;
|
|
986
|
+
};
|
|
987
|
+
setConfig: () => never;
|
|
988
|
+
type: string | null;
|
|
989
|
+
id: "props";
|
|
990
|
+
}, configOption: {
|
|
991
|
+
name: string;
|
|
992
|
+
cliFlag: "config";
|
|
993
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
994
|
+
ssrName: null;
|
|
995
|
+
docLink: string;
|
|
996
|
+
getValue: ({ commandLine }: {
|
|
997
|
+
commandLine: Record<string, unknown>;
|
|
998
|
+
}) => {
|
|
999
|
+
source: string;
|
|
1000
|
+
value: string;
|
|
1001
|
+
} | {
|
|
1002
|
+
source: string;
|
|
1003
|
+
value: null;
|
|
1004
|
+
};
|
|
1005
|
+
setConfig: () => never;
|
|
1006
|
+
type: string | null;
|
|
1007
|
+
id: "config";
|
|
1008
|
+
}, browserOption: {
|
|
1009
|
+
name: string;
|
|
1010
|
+
cliFlag: "browser";
|
|
1011
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1012
|
+
ssrName: null;
|
|
1013
|
+
docLink: string;
|
|
1014
|
+
getValue: ({ commandLine }: {
|
|
1015
|
+
commandLine: Record<string, unknown>;
|
|
1016
|
+
}) => {
|
|
1017
|
+
source: string;
|
|
1018
|
+
value: string;
|
|
1019
|
+
} | {
|
|
1020
|
+
source: string;
|
|
1021
|
+
value: null;
|
|
1022
|
+
};
|
|
1023
|
+
setConfig: () => never;
|
|
1024
|
+
type: string | null;
|
|
1025
|
+
id: "browser";
|
|
1026
|
+
};
|
|
1027
|
+
export type CommandLineOptions = {
|
|
1028
|
+
[browserExecutableOption.cliFlag]: TypeOfOption<typeof browserExecutableOption>;
|
|
1029
|
+
[pixelFormatOption.cliFlag]: TypeOfOption<typeof pixelFormatOption>;
|
|
1030
|
+
['image-format']: VideoImageFormat | StillImageFormat;
|
|
1031
|
+
[proResProfileOption.cliFlag]: TypeOfOption<typeof proResProfileOption>;
|
|
1032
|
+
[x264Option.cliFlag]: TypeOfOption<typeof x264Option>;
|
|
1033
|
+
[bundleCacheOption.cliFlag]: TypeOfOption<typeof bundleCacheOption>;
|
|
1034
|
+
[envFileOption.cliFlag]: TypeOfOption<typeof envFileOption>;
|
|
1035
|
+
[ignoreCertificateErrorsOption.cliFlag]: TypeOfOption<typeof ignoreCertificateErrorsOption>;
|
|
1036
|
+
[darkModeOption.cliFlag]: TypeOfOption<typeof darkModeOption>;
|
|
1037
|
+
[disableWebSecurityOption.cliFlag]: TypeOfOption<typeof disableWebSecurityOption>;
|
|
1038
|
+
[everyNthFrameOption.cliFlag]: TypeOfOption<typeof everyNthFrameOption>;
|
|
1039
|
+
[numberOfGifLoopsOption.cliFlag]: TypeOfOption<typeof numberOfGifLoopsOption>;
|
|
1040
|
+
[numberOfSharedAudioTagsOption.cliFlag]: TypeOfOption<typeof numberOfSharedAudioTagsOption>;
|
|
1041
|
+
[offthreadVideoCacheSizeInBytesOption.cliFlag]: TypeOfOption<typeof offthreadVideoCacheSizeInBytesOption>;
|
|
1042
|
+
[colorSpaceOption.cliFlag]: TypeOfOption<typeof colorSpaceOption>;
|
|
1043
|
+
[disallowParallelEncodingOption.cliFlag]: TypeOfOption<typeof disallowParallelEncodingOption>;
|
|
1044
|
+
[beepOnFinishOption.cliFlag]: TypeOfOption<typeof beepOnFinishOption>;
|
|
1045
|
+
[versionFlagOption.cliFlag]: TypeOfOption<typeof versionFlagOption>;
|
|
1046
|
+
[videoCodecOption.cliFlag]: TypeOfOption<typeof videoCodecOption>;
|
|
1047
|
+
[concurrencyOption.cliFlag]: TypeOfOption<typeof concurrencyOption>;
|
|
1048
|
+
timeout: number;
|
|
1049
|
+
[configOption.cliFlag]: TypeOfOption<typeof configOption>;
|
|
1050
|
+
['public-dir']: string;
|
|
1051
|
+
[audioBitrateOption.cliFlag]: TypeOfOption<typeof audioBitrateOption>;
|
|
1052
|
+
[videoBitrateOption.cliFlag]: TypeOfOption<typeof videoBitrateOption>;
|
|
1053
|
+
[encodingBufferSizeOption.cliFlag]: TypeOfOption<typeof encodingBufferSizeOption>;
|
|
1054
|
+
[encodingMaxRateOption.cliFlag]: TypeOfOption<typeof encodingMaxRateOption>;
|
|
1055
|
+
[audioCodecOption.cliFlag]: AudioCodec;
|
|
1056
|
+
[publicPathOption.cliFlag]: string;
|
|
1057
|
+
[crfOption.cliFlag]: TypeOfOption<typeof crfOption>;
|
|
1058
|
+
force: boolean;
|
|
1059
|
+
output: string | undefined;
|
|
1060
|
+
[overwriteOption.cliFlag]: TypeOfOption<typeof overwriteOption>;
|
|
1061
|
+
png: boolean;
|
|
1062
|
+
[propsOption.cliFlag]: TypeOfOption<typeof propsOption>;
|
|
1063
|
+
quality: number;
|
|
1064
|
+
[jpegQualityOption.cliFlag]: TypeOfOption<typeof jpegQualityOption>;
|
|
1065
|
+
[framesOption.cliFlag]: string | number;
|
|
1066
|
+
[scaleOption.cliFlag]: TypeOfOption<typeof scaleOption>;
|
|
1067
|
+
[imageSequenceOption.cliFlag]: TypeOfOption<typeof imageSequenceOption>;
|
|
1068
|
+
quiet: boolean;
|
|
1069
|
+
q: boolean;
|
|
1070
|
+
[logLevelOption.cliFlag]: TypeOfOption<typeof logLevelOption>;
|
|
1071
|
+
help: boolean;
|
|
1072
|
+
[portOption.cliFlag]: TypeOfOption<typeof portOption>;
|
|
1073
|
+
[stillFrameOption.cliFlag]: TypeOfOption<typeof stillFrameOption>;
|
|
1074
|
+
[headlessOption.cliFlag]: TypeOfOption<typeof headlessOption>;
|
|
1075
|
+
[keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption>;
|
|
1076
|
+
[experimentalClientSideRenderingOption.cliFlag]: TypeOfOption<typeof experimentalClientSideRenderingOption>;
|
|
1077
|
+
[mutedOption.cliFlag]: TypeOfOption<typeof mutedOption>;
|
|
1078
|
+
[overrideHeightOption.cliFlag]: TypeOfOption<typeof overrideHeightOption>;
|
|
1079
|
+
[overrideWidthOption.cliFlag]: TypeOfOption<typeof overrideWidthOption>;
|
|
1080
|
+
[overrideFpsOption.cliFlag]: TypeOfOption<typeof overrideFpsOption>;
|
|
1081
|
+
[overrideDurationOption.cliFlag]: TypeOfOption<typeof overrideDurationOption>;
|
|
1082
|
+
[runsOption.cliFlag]: TypeOfOption<typeof runsOption>;
|
|
1083
|
+
concurrencies: string;
|
|
1084
|
+
[enforceAudioOption.cliFlag]: TypeOfOption<typeof enforceAudioOption>;
|
|
1085
|
+
[glOption.cliFlag]: TypeOfOption<typeof glOption>;
|
|
1086
|
+
[packageManagerOption.cliFlag]: TypeOfOption<typeof packageManagerOption>;
|
|
1087
|
+
[webpackPollOption.cliFlag]: TypeOfOption<typeof webpackPollOption>;
|
|
1088
|
+
[noOpenOption.cliFlag]: TypeOfOption<typeof noOpenOption>;
|
|
1089
|
+
[browserOption.cliFlag]: TypeOfOption<typeof browserOption>;
|
|
1090
|
+
['browser-args']: string;
|
|
1091
|
+
[userAgentOption.cliFlag]: TypeOfOption<typeof userAgentOption>;
|
|
1092
|
+
[outDirOption.cliFlag]: TypeOfOption<typeof outDirOption>;
|
|
1093
|
+
[audioLatencyHintOption.cliFlag]: AudioContextLatencyCategory;
|
|
1094
|
+
[ipv4Option.cliFlag]: TypeOfOption<typeof ipv4Option>;
|
|
1095
|
+
[deleteAfterOption.cliFlag]: TypeOfOption<typeof deleteAfterOption>;
|
|
1096
|
+
[folderExpiryOption.cliFlag]: TypeOfOption<typeof folderExpiryOption>;
|
|
1097
|
+
[enableMultiprocessOnLinuxOption.cliFlag]: TypeOfOption<typeof enableMultiprocessOnLinuxOption>;
|
|
1098
|
+
[reproOption.cliFlag]: TypeOfOption<typeof reproOption>;
|
|
1099
|
+
[imageSequencePatternOption.cliFlag]: TypeOfOption<typeof imageSequencePatternOption>;
|
|
1100
|
+
'license-key': string;
|
|
1101
|
+
[publicLicenseKeyOption.cliFlag]: string;
|
|
1102
|
+
[forceNewStudioOption.cliFlag]: TypeOfOption<typeof forceNewStudioOption>;
|
|
1103
|
+
};
|
|
2
1104
|
export declare const BooleanFlags: string[];
|
|
3
1105
|
export declare const parsedCli: CommandLineOptions & {
|
|
4
1106
|
_: string[];
|
|
5
1107
|
};
|
|
6
1108
|
export declare const quietFlagProvided: () => boolean;
|
|
1109
|
+
export {};
|