@remotion/cli 4.0.405 → 4.0.407
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/chalk/index.d.ts +2 -2
- package/dist/index.d.ts +13 -13
- package/dist/log.d.ts +11 -11
- package/dist/parse-command-line.d.ts +9 -9
- package/package.json +14 -14
package/dist/chalk/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ export declare const chalk: {
|
|
|
4
4
|
styles: Record<string, {
|
|
5
5
|
codes: [number, number];
|
|
6
6
|
name: string;
|
|
7
|
-
wrap?: (input: string, newline: boolean) => string;
|
|
7
|
+
wrap?: ((input: string, newline: boolean) => string) | undefined;
|
|
8
8
|
}>;
|
|
9
9
|
keys: Record<string, string[]>;
|
|
10
|
-
alias?: (name: string, col: string) => void;
|
|
10
|
+
alias?: ((name: string, col: string) => void) | undefined;
|
|
11
11
|
} & {
|
|
12
12
|
reset: (str: string) => string;
|
|
13
13
|
bold: (str: string) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -14,10 +14,10 @@ export declare const CliInternals: {
|
|
|
14
14
|
styles: Record<string, {
|
|
15
15
|
codes: [number, number];
|
|
16
16
|
name: string;
|
|
17
|
-
wrap?: (input: string, newline: boolean) => string;
|
|
17
|
+
wrap?: ((input: string, newline: boolean) => string) | undefined;
|
|
18
18
|
}>;
|
|
19
19
|
keys: Record<string, string[]>;
|
|
20
|
-
alias?: (name: string, col: string) => void;
|
|
20
|
+
alias?: ((name: string, col: string) => void) | undefined;
|
|
21
21
|
} & {
|
|
22
22
|
reset: (str: string) => string;
|
|
23
23
|
bold: (str: string) => string;
|
|
@@ -60,20 +60,20 @@ export declare const CliInternals: {
|
|
|
60
60
|
};
|
|
61
61
|
makeProgressBar: (percentage: number, noColor: boolean) => string;
|
|
62
62
|
Log: {
|
|
63
|
-
formatLogs: (logLevel:
|
|
64
|
-
tag?: string;
|
|
65
|
-
}, args:
|
|
63
|
+
formatLogs: (logLevel: "error" | "info" | "trace" | "verbose" | "warn", options: import("@remotion/renderer").LogOptions & {
|
|
64
|
+
tag?: string | undefined;
|
|
65
|
+
}, args: [message?: any, ...optionalParams: any[]]) => string[];
|
|
66
66
|
trace: (options: import("@remotion/renderer").LogOptions & {
|
|
67
|
-
tag?: string;
|
|
68
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
67
|
+
tag?: string | undefined;
|
|
68
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
69
69
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
70
|
-
tag?: string;
|
|
71
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
72
|
-
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) =>
|
|
73
|
-
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) =>
|
|
70
|
+
tag?: string | undefined;
|
|
71
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
72
|
+
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
73
|
+
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
74
74
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
75
|
-
tag?: string;
|
|
76
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
75
|
+
tag?: string | undefined;
|
|
76
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
77
77
|
};
|
|
78
78
|
getCliOptions: (options: {
|
|
79
79
|
isStill: boolean;
|
package/dist/log.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const Log: {
|
|
2
|
-
formatLogs: (logLevel:
|
|
3
|
-
tag?: string;
|
|
4
|
-
}, args:
|
|
2
|
+
formatLogs: (logLevel: "error" | "info" | "trace" | "verbose" | "warn", options: import("@remotion/renderer").LogOptions & {
|
|
3
|
+
tag?: string | undefined;
|
|
4
|
+
}, args: [message?: any, ...optionalParams: any[]]) => string[];
|
|
5
5
|
trace: (options: import("@remotion/renderer").LogOptions & {
|
|
6
|
-
tag?: string;
|
|
7
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
6
|
+
tag?: string | undefined;
|
|
7
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
8
8
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
9
|
-
tag?: string;
|
|
10
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
11
|
-
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) =>
|
|
12
|
-
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) =>
|
|
9
|
+
tag?: string | undefined;
|
|
10
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
11
|
+
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
12
|
+
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
13
13
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
14
|
-
tag?: string;
|
|
15
|
-
}, message?: any, ...optionalParams: any[]) =>
|
|
14
|
+
tag?: string | undefined;
|
|
15
|
+
}, message?: any, ...optionalParams: any[]) => void | boolean;
|
|
16
16
|
};
|
|
@@ -21,14 +21,14 @@ declare const beepOnFinishOption: {
|
|
|
21
21
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
docLink: string;
|
|
23
23
|
ssrName: string;
|
|
24
|
-
type:
|
|
24
|
+
type: "bt2020-ncl" | "bt709" | "default" | null;
|
|
25
25
|
getValue: ({ commandLine }: {
|
|
26
26
|
commandLine: Record<string, unknown>;
|
|
27
27
|
}) => {
|
|
28
28
|
source: string;
|
|
29
|
-
value:
|
|
29
|
+
value: "bt2020-ncl" | "bt709" | "default";
|
|
30
30
|
};
|
|
31
|
-
setConfig: (value: "
|
|
31
|
+
setConfig: (value: "bt2020-ncl" | "bt709" | "default" | null) => void;
|
|
32
32
|
}, disallowParallelEncodingOption: {
|
|
33
33
|
name: string;
|
|
34
34
|
cliFlag: "disallow-parallel-encoding";
|
|
@@ -162,17 +162,17 @@ declare const beepOnFinishOption: {
|
|
|
162
162
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
163
163
|
ssrName: "x264Preset";
|
|
164
164
|
docLink: string;
|
|
165
|
-
type:
|
|
165
|
+
type: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null;
|
|
166
166
|
getValue: ({ commandLine }: {
|
|
167
167
|
commandLine: Record<string, unknown>;
|
|
168
168
|
}) => {
|
|
169
|
-
value:
|
|
169
|
+
value: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow";
|
|
170
170
|
source: string;
|
|
171
171
|
} | {
|
|
172
172
|
value: null;
|
|
173
173
|
source: string;
|
|
174
174
|
};
|
|
175
|
-
setConfig: (profile:
|
|
175
|
+
setConfig: (profile: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null) => void;
|
|
176
176
|
}, enforceAudioOption: {
|
|
177
177
|
name: string;
|
|
178
178
|
cliFlag: "enforce-audio-track";
|
|
@@ -237,12 +237,12 @@ declare const beepOnFinishOption: {
|
|
|
237
237
|
setConfig: (bitrate: string | null) => void;
|
|
238
238
|
}, audioCodecOption: {
|
|
239
239
|
cliFlag: "audio-codec";
|
|
240
|
-
setConfig: (audioCodec: "
|
|
240
|
+
setConfig: (audioCodec: "aac" | "mp3" | "opus" | "pcm-16" | null) => void;
|
|
241
241
|
getValue: ({ commandLine }: {
|
|
242
242
|
commandLine: Record<string, unknown>;
|
|
243
243
|
}) => {
|
|
244
244
|
source: string;
|
|
245
|
-
value:
|
|
245
|
+
value: "aac" | "mp3" | "opus" | "pcm-16";
|
|
246
246
|
} | {
|
|
247
247
|
source: string;
|
|
248
248
|
value: null;
|
|
@@ -251,7 +251,7 @@ declare const beepOnFinishOption: {
|
|
|
251
251
|
docLink: string;
|
|
252
252
|
name: string;
|
|
253
253
|
ssrName: "audioCodec";
|
|
254
|
-
type:
|
|
254
|
+
type: "aac" | "mp3" | "opus" | "pcm-16";
|
|
255
255
|
}, publicPathOption: {
|
|
256
256
|
name: string;
|
|
257
257
|
cliFlag: "public-path";
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.407",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
37
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@remotion/bundler": "4.0.
|
|
40
|
-
"@remotion/media-utils": "4.0.
|
|
41
|
-
"@remotion/player": "4.0.
|
|
42
|
-
"@remotion/renderer": "4.0.
|
|
43
|
-
"@remotion/studio-shared": "4.0.
|
|
44
|
-
"@remotion/studio-server": "4.0.
|
|
45
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.407",
|
|
40
|
+
"@remotion/media-utils": "4.0.407",
|
|
41
|
+
"@remotion/player": "4.0.407",
|
|
42
|
+
"@remotion/renderer": "4.0.407",
|
|
43
|
+
"@remotion/studio-shared": "4.0.407",
|
|
44
|
+
"@remotion/studio-server": "4.0.407",
|
|
45
|
+
"@remotion/studio": "4.0.407",
|
|
46
46
|
"dotenv": "9.0.2",
|
|
47
47
|
"minimist": "1.2.6",
|
|
48
48
|
"prompts": "2.4.2",
|
|
49
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.407"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8.0",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@types/prompts": "^2.4.1",
|
|
58
58
|
"@types/prettier": "^2.7.2",
|
|
59
59
|
"@types/node": "20.12.14",
|
|
60
|
-
"@remotion/zod-types": "4.0.
|
|
61
|
-
"@remotion/tailwind-v4": "4.0.
|
|
62
|
-
"@remotion/enable-scss": "4.0.
|
|
63
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.407",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.407",
|
|
62
|
+
"@remotion/enable-scss": "4.0.407",
|
|
63
|
+
"@remotion/skia": "4.0.407",
|
|
64
64
|
"react": "19.2.3",
|
|
65
65
|
"react-dom": "19.2.3",
|
|
66
66
|
"zod": "3.22.3",
|
|
67
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.407",
|
|
68
68
|
"eslint": "9.19.0"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [
|