@remotion/cli 4.0.153 → 4.0.155

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 CHANGED
@@ -106,6 +106,7 @@ const benchmarkCommand = async (remotionRoot, args, logLevel) => {
106
106
  const { inputProps, envVariables, browserExecutable, proResProfile, frameRange: defaultFrameRange, pixelFormat, everyNthFrame, ffmpegOverride, height, width, concurrency: unparsedConcurrency, disableWebSecurity, userAgent, ignoreCertificateErrors, } = (0, get_cli_options_1.getCliOptions)({
107
107
  isStill: false,
108
108
  logLevel,
109
+ indent: false,
109
110
  });
110
111
  log_1.Log.verbose({ indent: false, logLevel }, 'Entry point:', fullEntryPoint, 'reason:', reason);
111
112
  const scale = scaleOption.getValue({ commandLine: parsed_cli_1.parsedCli }).value;
@@ -8,11 +8,12 @@ const log_1 = require("../log");
8
8
  const parsed_cli_1 = require("../parsed-cli");
9
9
  exports.ENSURE_COMMAND = 'ensure';
10
10
  const ensureCommand = async (logLevel) => {
11
+ const indent = false;
11
12
  const { browserExecutable } = (0, get_cli_options_1.getCliOptions)({
12
13
  isStill: false,
13
14
  logLevel,
15
+ indent,
14
16
  });
15
- const indent = false;
16
17
  const status = await (0, renderer_1.ensureBrowser)({
17
18
  browserExecutable,
18
19
  logLevel,
@@ -31,6 +31,7 @@ const listCompositionsCommand = async (remotionRoot, args, logLevel) => {
31
31
  const { browserExecutable, envVariables, inputProps, ignoreCertificateErrors, userAgent, disableWebSecurity, } = (0, get_cli_options_1.getCliOptions)({
32
32
  isStill: false,
33
33
  logLevel,
34
+ indent: false,
34
35
  });
35
36
  const chromiumOptions = {
36
37
  disableWebSecurity,
@@ -7,7 +7,7 @@ const progress_bar_1 = require("./progress-bar");
7
7
  const truthy_1 = require("./truthy");
8
8
  const getFileSizeDownloadBar = (downloaded) => {
9
9
  const desiredLength = (0, make_progress_bar_1.makeProgressBar)(0).length;
10
- return `[${studio_server_1.StudioServerInternals.formatBytes(downloaded).padEnd(desiredLength - 2, ' ')}]`;
10
+ return `${studio_server_1.StudioServerInternals.formatBytes(downloaded).padEnd(desiredLength - 2, ' ')}`;
11
11
  };
12
12
  exports.getFileSizeDownloadBar = getFileSizeDownloadBar;
13
13
  const makeMultiDownloadProgress = (progresses) => {
@@ -3,6 +3,7 @@ export declare const getAndValidateAbsoluteOutputFile: (relativeOutputLocation:
3
3
  export declare const getCliOptions: (options: {
4
4
  isStill: boolean;
5
5
  logLevel: LogLevel;
6
+ indent: boolean;
6
7
  }) => {
7
8
  concurrency: string | number | null;
8
9
  frameRange: import("@remotion/renderer").FrameRange | null;
@@ -58,7 +58,7 @@ const getCliOptions = (options) => {
58
58
  frameRange,
59
59
  shouldOutputImageSequence,
60
60
  inputProps: (0, get_input_props_1.getInputProps)(null, options.logLevel),
61
- envVariables: (0, get_env_1.getEnvironmentVariables)(null, options.logLevel, false),
61
+ envVariables: (0, get_env_1.getEnvironmentVariables)(null, options.logLevel, options.indent),
62
62
  pixelFormat,
63
63
  proResProfile,
64
64
  everyNthFrame,
package/dist/gpu.js CHANGED
@@ -14,6 +14,7 @@ const gpuCommand = async (logLevel) => {
14
14
  const { browserExecutable, disableWebSecurity, ignoreCertificateErrors, userAgent, } = (0, get_cli_options_1.getCliOptions)({
15
15
  isStill: false,
16
16
  logLevel,
17
+ indent: false,
17
18
  });
18
19
  const enableMultiProcessOnLinux = enableMultiprocessOnLinuxOption.getValue({
19
20
  commandLine: parsed_cli_1.parsedCli,
package/dist/index.d.ts CHANGED
@@ -71,6 +71,7 @@ export declare const CliInternals: {
71
71
  getCliOptions: (options: {
72
72
  isStill: boolean;
73
73
  logLevel: "verbose" | "info" | "warn" | "error";
74
+ indent: boolean;
74
75
  }) => {
75
76
  concurrency: string | number | null;
76
77
  frameRange: import("@remotion/renderer").FrameRange | null;
@@ -15,6 +15,7 @@ const processStill = async ({ job, remotionRoot, entryPoint, onProgress, addClea
15
15
  const { browserExecutable } = (0, get_cli_options_1.getCliOptions)({
16
16
  isStill: true,
17
17
  logLevel: job.logLevel,
18
+ indent: true,
18
19
  });
19
20
  const publicDir = publicDirOption.getValue({
20
21
  commandLine: parsed_cli_1.parsedCli,
@@ -19,6 +19,7 @@ const processVideoJob = async ({ job, remotionRoot, entryPoint, onProgress, addC
19
19
  const { browserExecutable, ffmpegOverride } = (0, get_cli_options_1.getCliOptions)({
20
20
  isStill: true,
21
21
  logLevel,
22
+ indent: true,
22
23
  });
23
24
  const fullEntryPoint = (0, convert_entry_point_to_serve_url_1.convertEntryPointToServeUrl)(entryPoint);
24
25
  await (0, render_1.renderVideoFlow)({
package/dist/render.js CHANGED
@@ -28,6 +28,7 @@ const render = async (remotionRoot, args, logLevel) => {
28
28
  const { concurrency, frameRange, shouldOutputImageSequence, inputProps, envVariables, browserExecutable, everyNthFrame, userAgent, disableWebSecurity, ignoreCertificateErrors, height, width, ffmpegOverride, proResProfile, pixelFormat, } = (0, get_cli_options_1.getCliOptions)({
29
29
  isStill: false,
30
30
  logLevel,
31
+ indent: false,
31
32
  });
32
33
  const x264Preset = x264Option.getValue({ commandLine: parsed_cli_1.parsedCli }).value;
33
34
  const audioBitrate = audioBitrateOption.getValue({
package/dist/still.js CHANGED
@@ -28,6 +28,7 @@ const still = async (remotionRoot, args, logLevel) => {
28
28
  const { browserExecutable, envVariables, height, inputProps, stillFrame, width, disableWebSecurity, ignoreCertificateErrors, userAgent, } = (0, get_cli_options_1.getCliOptions)({
29
29
  isStill: true,
30
30
  logLevel,
31
+ indent: false,
31
32
  });
32
33
  const jpegQuality = jpegQualityOption.getValue({
33
34
  commandLine: parsed_cli_1.parsedCli,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/cli",
3
- "version": "4.0.153",
3
+ "version": "4.0.155",
4
4
  "description": "CLI for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -32,14 +32,14 @@
32
32
  "dotenv": "9.0.2",
33
33
  "minimist": "1.2.6",
34
34
  "prompts": "2.4.2",
35
- "@remotion/bundler": "4.0.153",
36
- "@remotion/media-utils": "4.0.153",
37
- "@remotion/player": "4.0.153",
38
- "@remotion/studio-shared": "4.0.153",
39
- "@remotion/studio": "4.0.153",
40
- "remotion": "4.0.153",
41
- "@remotion/renderer": "4.0.153",
42
- "@remotion/studio-server": "4.0.153"
35
+ "@remotion/bundler": "4.0.155",
36
+ "@remotion/media-utils": "4.0.155",
37
+ "@remotion/player": "4.0.155",
38
+ "@remotion/renderer": "4.0.155",
39
+ "@remotion/studio-server": "4.0.155",
40
+ "@remotion/studio-shared": "4.0.155",
41
+ "@remotion/studio": "4.0.155",
42
+ "remotion": "4.0.155"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": ">=16.8.0",
@@ -63,9 +63,9 @@
63
63
  "react-dom": "18.3.1",
64
64
  "vitest": "0.31.1",
65
65
  "zod": "3.22.3",
66
- "@remotion/zod-types": "4.0.153",
67
- "@remotion/skia": "4.0.153",
68
- "@remotion/tailwind": "4.0.153"
66
+ "@remotion/zod-types": "4.0.155",
67
+ "@remotion/tailwind": "4.0.155",
68
+ "@remotion/skia": "4.0.155"
69
69
  },
70
70
  "keywords": [
71
71
  "remotion",