@remotion/cli 4.0.140 → 4.0.141
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/index.d.ts +3 -3
- package/dist/parse-command-line.d.ts +3 -3
- package/package.json +10 -10
- package/dist/parsed-cli.d.ts +0 -6
- package/dist/parsed-cli.js +0 -43
package/dist/index.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export declare const CliInternals: {
|
|
|
103
103
|
parsedCli: {
|
|
104
104
|
"browser-executable": import("@remotion/renderer").BrowserExecutable;
|
|
105
105
|
"pixel-format": "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
106
|
-
"image-format": "png" | "jpeg" | "
|
|
106
|
+
"image-format": "png" | "jpeg" | "pdf" | "webp" | "none";
|
|
107
107
|
"prores-profile": "4444-xq" | "4444" | "hq" | "standard" | "light" | "proxy";
|
|
108
108
|
"bundle-cache": string;
|
|
109
109
|
"env-file": string;
|
|
@@ -150,7 +150,7 @@ export declare const CliInternals: {
|
|
|
150
150
|
"out-dir": string;
|
|
151
151
|
ipv4: boolean;
|
|
152
152
|
repro: boolean;
|
|
153
|
-
"x264-preset": "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "
|
|
153
|
+
"x264-preset": "medium" | "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
154
154
|
"number-of-gif-loops": number | null;
|
|
155
155
|
"offthreadvideo-cache-size-in-bytes": number | null;
|
|
156
156
|
"color-space": "default" | "bt709" | "bt2020-ncl";
|
|
@@ -175,7 +175,7 @@ export declare const CliInternals: {
|
|
|
175
175
|
downloadName: string | null;
|
|
176
176
|
outName: string | null;
|
|
177
177
|
configImageFormat: "png" | "jpeg" | "pdf" | "webp" | null;
|
|
178
|
-
cliFlag: "png" | "jpeg" | "
|
|
178
|
+
cliFlag: "png" | "jpeg" | "pdf" | "webp" | "none" | null;
|
|
179
179
|
isLambda: boolean;
|
|
180
180
|
fromUi: "png" | "jpeg" | "pdf" | "webp" | null;
|
|
181
181
|
}) => {
|
|
@@ -147,17 +147,17 @@ declare const beepOnFinishOption: {
|
|
|
147
147
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
148
148
|
ssrName: "x264Preset";
|
|
149
149
|
docLink: string;
|
|
150
|
-
type: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "
|
|
150
|
+
type: "medium" | "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
151
151
|
getValue: ({ commandLine }: {
|
|
152
152
|
commandLine: Record<string, unknown>;
|
|
153
153
|
}) => {
|
|
154
|
-
value: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "
|
|
154
|
+
value: "medium" | "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "slow" | "slower" | "veryslow" | "placebo";
|
|
155
155
|
source: string;
|
|
156
156
|
} | {
|
|
157
157
|
value: null;
|
|
158
158
|
source: string;
|
|
159
159
|
};
|
|
160
|
-
setConfig: (profile: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "
|
|
160
|
+
setConfig: (profile: "medium" | "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "slow" | "slower" | "veryslow" | "placebo" | null) => void;
|
|
161
161
|
}, enforceAudioOption: {
|
|
162
162
|
name: string;
|
|
163
163
|
cliFlag: "enforce-audio-track";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.141",
|
|
4
4
|
"description": "CLI for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"dotenv": "9.0.2",
|
|
33
33
|
"minimist": "1.2.6",
|
|
34
34
|
"prompts": "2.4.2",
|
|
35
|
-
"@remotion/bundler": "4.0.
|
|
36
|
-
"@remotion/media-utils": "4.0.
|
|
37
|
-
"@remotion/
|
|
38
|
-
"@remotion/studio": "4.0.
|
|
39
|
-
"@remotion/
|
|
40
|
-
"remotion": "4.0.
|
|
41
|
-
"@remotion/studio
|
|
35
|
+
"@remotion/bundler": "4.0.141",
|
|
36
|
+
"@remotion/media-utils": "4.0.141",
|
|
37
|
+
"@remotion/renderer": "4.0.141",
|
|
38
|
+
"@remotion/studio-server": "4.0.141",
|
|
39
|
+
"@remotion/player": "4.0.141",
|
|
40
|
+
"remotion": "4.0.141",
|
|
41
|
+
"@remotion/studio": "4.0.141"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=16.8.0",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"react-dom": "18.2.0",
|
|
64
64
|
"vitest": "0.31.1",
|
|
65
65
|
"zod": "^3.22.3",
|
|
66
|
-
"@remotion/zod-types": "4.0.
|
|
67
|
-
"@remotion/tailwind": "4.0.
|
|
66
|
+
"@remotion/zod-types": "4.0.141",
|
|
67
|
+
"@remotion/tailwind": "4.0.141"
|
|
68
68
|
},
|
|
69
69
|
"keywords": [
|
|
70
70
|
"remotion",
|
package/dist/parsed-cli.d.ts
DELETED
package/dist/parsed-cli.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.quietFlagProvided = exports.parsedCli = exports.BooleanFlags = void 0;
|
|
7
|
-
const client_1 = require("@remotion/renderer/client");
|
|
8
|
-
const minimist_1 = __importDefault(require("minimist"));
|
|
9
|
-
exports.BooleanFlags = [
|
|
10
|
-
'overwrite',
|
|
11
|
-
'force',
|
|
12
|
-
'sequence',
|
|
13
|
-
'help',
|
|
14
|
-
'quiet',
|
|
15
|
-
'q',
|
|
16
|
-
'muted',
|
|
17
|
-
client_1.BrowserSafeApis.options.enforceAudioOption.cliFlag,
|
|
18
|
-
// Lambda flags
|
|
19
|
-
'force',
|
|
20
|
-
'disable-chunk-optimization',
|
|
21
|
-
'save-browser-logs',
|
|
22
|
-
'disable-cloudwatch',
|
|
23
|
-
'enable-lambda-insights',
|
|
24
|
-
'yes',
|
|
25
|
-
'y',
|
|
26
|
-
'disable-web-security',
|
|
27
|
-
'ignore-certificate-errors',
|
|
28
|
-
'disable-headless',
|
|
29
|
-
'disable-keyboard-shortcuts',
|
|
30
|
-
'default-only',
|
|
31
|
-
'no-open',
|
|
32
|
-
'ipv4',
|
|
33
|
-
client_1.BrowserSafeApis.options.beepOnFinishOption.cliFlag,
|
|
34
|
-
'repro',
|
|
35
|
-
];
|
|
36
|
-
exports.parsedCli = (0, minimist_1.default)(process.argv.slice(2), {
|
|
37
|
-
boolean: exports.BooleanFlags,
|
|
38
|
-
default: {
|
|
39
|
-
overwrite: true,
|
|
40
|
-
},
|
|
41
|
-
});
|
|
42
|
-
const quietFlagProvided = () => exports.parsedCli.quiet || exports.parsedCli.q;
|
|
43
|
-
exports.quietFlagProvided = quietFlagProvided;
|