@remotion/cli 4.0.487 → 4.0.489

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.
@@ -54,6 +54,12 @@ declare global {
54
54
  * @default true
55
55
  */
56
56
  readonly setKeyboardShortcutsEnabled: (enableShortcuts: boolean) => void;
57
+ /**
58
+ * Enable interactive editing in the Remotion Studio.
59
+ * @param enabled Boolean whether to enable interactive editing
60
+ * @default true
61
+ */
62
+ readonly setInteractivityEnabled: (enabled: boolean) => void;
57
63
  /**
58
64
  * Enable WIP client-side rendering in the Remotion Studio.
59
65
  * See https://www.remotion.dev/docs/client-side-rendering/ for notes.
@@ -20,7 +20,7 @@ const preview_server_2 = require("./preview-server");
20
20
  const still_frame_1 = require("./still-frame");
21
21
  const webpack_caching_1 = require("./webpack-caching");
22
22
  const webpack_poll_1 = require("./webpack-poll");
23
- const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, concurrencyOption, offthreadVideoCacheSizeInBytesOption, x264Option, audioBitrateOption, videoBitrateOption, scaleOption, crfOption, jpegQualityOption, enforceAudioOption, overwriteOption, chromeModeOption, mutedOption, videoCodecOption, colorSpaceOption, disallowParallelEncodingOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, glOption, gopSizeOption, headlessOption, numberOfGifLoopsOption, beepOnFinishOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, enableLambdaInsights, logLevelOption, delayRenderTimeoutInMillisecondsOption, publicDirOption, binariesDirectoryOption, preferLosslessOption, framesOption, forSeamlessAacConcatenationOption, audioCodecOption, publicPathOption, hardwareAccelerationOption, audioLatencyHintOption, enableCrossSiteIsolationOption, imageSequencePatternOption, darkModeOption, askAIOption, publicLicenseKeyOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, stillImageFormatOption, videoImageFormatOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, rspackOption, outDirOption, webpackPollOption, imageSequenceOption, bundleCacheOption, envFileOption, runsOption, noOpenOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
23
+ const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, concurrencyOption, offthreadVideoCacheSizeInBytesOption, x264Option, audioBitrateOption, videoBitrateOption, scaleOption, crfOption, jpegQualityOption, enforceAudioOption, overwriteOption, chromeModeOption, mutedOption, videoCodecOption, colorSpaceOption, disallowParallelEncodingOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, glOption, gopSizeOption, headlessOption, numberOfGifLoopsOption, beepOnFinishOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, enableLambdaInsights, logLevelOption, delayRenderTimeoutInMillisecondsOption, publicDirOption, binariesDirectoryOption, preferLosslessOption, framesOption, forSeamlessAacConcatenationOption, audioCodecOption, publicPathOption, hardwareAccelerationOption, audioLatencyHintOption, enableCrossSiteIsolationOption, imageSequencePatternOption, darkModeOption, askAIOption, publicLicenseKeyOption, experimentalClientSideRenderingOption, interactivityOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, stillImageFormatOption, videoImageFormatOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, rspackOption, outDirOption, webpackPollOption, imageSequenceOption, bundleCacheOption, envFileOption, runsOption, noOpenOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
24
24
  exports.Config = {
25
25
  get Bundling() {
26
26
  throw new Error('The config format has changed. Change `Config.Bundling.*()` calls to `Config.*()` in your config file.');
@@ -42,6 +42,7 @@ exports.Config = {
42
42
  },
43
43
  setMaxTimelineTracks: studio_server_1.StudioServerInternals.setMaxTimelineTracks,
44
44
  setKeyboardShortcutsEnabled: keyboardShortcutsOption.setConfig,
45
+ setInteractivityEnabled: interactivityOption.setConfig,
45
46
  setExperimentalClientSideRenderingEnabled: experimentalClientSideRenderingOption.setConfig,
46
47
  setAllowHtmlInCanvasEnabled: allowHtmlInCanvasOption.setConfig,
47
48
  setExperimentalRspackEnabled: rspackOption.setConfig,
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EXTRA_PACKAGES_DOCS = exports.EXTRA_PACKAGES = void 0;
4
4
  exports.EXTRA_PACKAGES = {
5
- mediabunny: '1.50.7',
6
- '@mediabunny/ac3': '1.50.7',
7
- '@mediabunny/mp3-encoder': '1.50.7',
8
- '@mediabunny/aac-encoder': '1.50.7',
9
- '@mediabunny/flac-encoder': '1.50.7',
10
- '@mediabunny/prores': '1.50.7',
5
+ mediabunny: '1.50.8',
6
+ '@mediabunny/ac3': '1.50.8',
7
+ '@mediabunny/mp3-encoder': '1.50.8',
8
+ '@mediabunny/aac-encoder': '1.50.8',
9
+ '@mediabunny/flac-encoder': '1.50.8',
10
+ '@mediabunny/prores': '1.50.8',
11
11
  zod: '4.3.6',
12
12
  };
13
13
  exports.EXTRA_PACKAGES_DOCS = {
@@ -1,15 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.parseCommandLine = void 0;
4
+ const client_1 = require("@remotion/renderer/client");
4
5
  const config_1 = require("./config");
5
6
  const parsed_cli_1 = require("./parsed-cli");
7
+ const { licenseKeyOption } = client_1.BrowserSafeApis.options;
6
8
  const parseCommandLine = () => {
7
9
  if (parsed_cli_1.parsedCli.png) {
8
10
  throw new Error('The --png flag has been removed. Use --sequence --image-format=png from now on.');
9
11
  }
10
- if (parsed_cli_1.parsedCli['license-key'] &&
11
- parsed_cli_1.parsedCli['license-key'].startsWith('rm_pub_')) {
12
- config_1.Config.setPublicLicenseKey(parsed_cli_1.parsedCli['license-key']);
12
+ const { value: licenseKey, source } = licenseKeyOption.getValue({
13
+ commandLine: parsed_cli_1.parsedCli,
14
+ });
15
+ if (source === 'cli' && (licenseKey === null || licenseKey === void 0 ? void 0 : licenseKey.startsWith('rm_pub_'))) {
16
+ config_1.Config.setPublicLicenseKey(licenseKey);
13
17
  }
14
18
  };
15
19
  exports.parseCommandLine = parseCommandLine;
@@ -699,6 +699,21 @@ declare const allowHtmlInCanvasOption: {
699
699
  };
700
700
  setConfig(value: boolean): void;
701
701
  id: "enable-experimental-client-side-rendering";
702
+ }, interactivityOption: {
703
+ name: string;
704
+ cliFlag: "disable-interactivity";
705
+ description: () => import("react/jsx-runtime").JSX.Element;
706
+ ssrName: null;
707
+ docLink: string;
708
+ type: boolean;
709
+ getValue: ({ commandLine }: {
710
+ commandLine: Record<string, unknown>;
711
+ }) => {
712
+ value: boolean;
713
+ source: string;
714
+ };
715
+ setConfig(value: boolean): void;
716
+ id: "disable-interactivity";
702
717
  }, imageSequencePatternOption: {
703
718
  name: string;
704
719
  cliFlag: "image-sequence-pattern";
@@ -1192,6 +1207,7 @@ export type CommandLineOptions = {
1192
1207
  [keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption> | null;
1193
1208
  [allowHtmlInCanvasOption.cliFlag]: TypeOfOption<typeof allowHtmlInCanvasOption>;
1194
1209
  [experimentalClientSideRenderingOption.cliFlag]: TypeOfOption<typeof experimentalClientSideRenderingOption>;
1210
+ [interactivityOption.cliFlag]: TypeOfOption<typeof interactivityOption> | null;
1195
1211
  [mutedOption.cliFlag]: TypeOfOption<typeof mutedOption>;
1196
1212
  [overrideHeightOption.cliFlag]: TypeOfOption<typeof overrideHeightOption>;
1197
1213
  [overrideWidthOption.cliFlag]: TypeOfOption<typeof overrideWidthOption>;
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.quietFlagProvided = exports.parsedCli = exports.BooleanFlags = void 0;
7
7
  const client_1 = require("@remotion/renderer/client");
8
8
  const minimist_1 = __importDefault(require("minimist"));
9
- const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, beepOnFinishOption, colorSpaceOption, concurrencyOption, disallowParallelEncodingOption, offthreadVideoCacheSizeInBytesOption, encodingBufferSizeOption, encodingMaxRateOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, numberOfGifLoopsOption, x264Option, enforceAudioOption, jpegQualityOption, audioBitrateOption, videoBitrateOption, audioCodecOption, publicPathOption, audioLatencyHintOption, darkModeOption, publicLicenseKeyOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, outDirOption, packageManagerOption, webpackPollOption, keyboardShortcutsOption, experimentalClientSideRenderingOption, imageSequencePatternOption, scaleOption, overwriteOption, crfOption, logLevelOption, videoCodecOption, stillFrameOption, imageSequenceOption, versionFlagOption, bundleCacheOption, envFileOption, glOption, gopSizeOption, runsOption, reproOption, mutedOption, headlessOption, disableGitSourceOption, delayRenderTimeoutInMillisecondsOption, framesOption, forSeamlessAacConcatenationOption, isProductionOption, noOpenOption, portOption, propsOption, configOption, browserOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
9
+ const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, beepOnFinishOption, colorSpaceOption, concurrencyOption, disallowParallelEncodingOption, offthreadVideoCacheSizeInBytesOption, encodingBufferSizeOption, encodingMaxRateOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, numberOfGifLoopsOption, x264Option, enforceAudioOption, jpegQualityOption, audioBitrateOption, videoBitrateOption, audioCodecOption, publicPathOption, audioLatencyHintOption, darkModeOption, publicLicenseKeyOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, outDirOption, packageManagerOption, webpackPollOption, keyboardShortcutsOption, experimentalClientSideRenderingOption, interactivityOption, imageSequencePatternOption, scaleOption, overwriteOption, crfOption, logLevelOption, videoCodecOption, stillFrameOption, imageSequenceOption, versionFlagOption, bundleCacheOption, envFileOption, glOption, gopSizeOption, runsOption, reproOption, mutedOption, headlessOption, disableGitSourceOption, delayRenderTimeoutInMillisecondsOption, framesOption, forSeamlessAacConcatenationOption, isProductionOption, noOpenOption, portOption, propsOption, configOption, browserOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
10
10
  exports.BooleanFlags = [
11
11
  overwriteOption.cliFlag,
12
12
  imageSequenceOption.cliFlag,
@@ -20,6 +20,7 @@ exports.BooleanFlags = [
20
20
  ignoreCertificateErrorsOption.cliFlag,
21
21
  headlessOption.cliFlag,
22
22
  keyboardShortcutsOption.cliFlag,
23
+ interactivityOption.cliFlag,
23
24
  allowHtmlInCanvasOption.cliFlag,
24
25
  experimentalClientSideRenderingOption.cliFlag,
25
26
  ipv4Option.cliFlag,
@@ -45,6 +46,7 @@ exports.parsedCli = (0, minimist_1.default)(process.argv.slice(2), {
45
46
  [ignoreCertificateErrorsOption.cliFlag]: null,
46
47
  [headlessOption.cliFlag]: null,
47
48
  [keyboardShortcutsOption.cliFlag]: null,
49
+ [interactivityOption.cliFlag]: null,
48
50
  [ipv4Option.cliFlag]: null,
49
51
  [beepOnFinishOption.cliFlag]: null,
50
52
  [disallowParallelEncodingOption.cliFlag]: null,
package/dist/render.js CHANGED
@@ -11,7 +11,7 @@ const get_cli_options_1 = require("./get-cli-options");
11
11
  const log_1 = require("./log");
12
12
  const parsed_cli_1 = require("./parsed-cli");
13
13
  const render_1 = require("./render-flows/render");
14
- const { x264Option, audioBitrateOption, offthreadVideoCacheSizeInBytesOption, scaleOption, crfOption, gopSizeOption, jpegQualityOption, videoBitrateOption, enforceAudioOption, mutedOption, colorSpaceOption, disallowParallelEncodingOption, enableMultiprocessOnLinuxOption, glOption, numberOfGifLoopsOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, delayRenderTimeoutInMillisecondsOption, headlessOption, overwriteOption, binariesDirectoryOption, forSeamlessAacConcatenationOption, separateAudioOption, audioCodecOption, publicPathOption, publicDirOption, metadataOption, hardwareAccelerationOption, chromeModeOption, offthreadVideoThreadsOption, audioLatencyHintOption, imageSequencePatternOption, mediaCacheSizeInBytesOption, darkModeOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, rspackOption, browserExecutableOption, everyNthFrameOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, concurrencyOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, bundleCacheOption, sampleRateOption, } = client_1.BrowserSafeApis.options;
14
+ const { x264Option, audioBitrateOption, offthreadVideoCacheSizeInBytesOption, scaleOption, crfOption, gopSizeOption, jpegQualityOption, videoBitrateOption, enforceAudioOption, mutedOption, colorSpaceOption, disallowParallelEncodingOption, enableMultiprocessOnLinuxOption, glOption, numberOfGifLoopsOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, delayRenderTimeoutInMillisecondsOption, headlessOption, overwriteOption, binariesDirectoryOption, forSeamlessAacConcatenationOption, separateAudioOption, audioCodecOption, publicPathOption, publicDirOption, metadataOption, hardwareAccelerationOption, chromeModeOption, offthreadVideoThreadsOption, audioLatencyHintOption, imageSequencePatternOption, mediaCacheSizeInBytesOption, darkModeOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, rspackOption, browserExecutableOption, everyNthFrameOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, concurrencyOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, bundleCacheOption, sampleRateOption, stillFrameOption, } = client_1.BrowserSafeApis.options;
15
15
  const render = async (remotionRoot, args, logLevel) => {
16
16
  const { file, remainingArgs, reason: entryPointReason, } = (0, entry_point_1.findEntryPoint)({ args, remotionRoot, logLevel, allowDirectory: true });
17
17
  if (!file) {
@@ -21,7 +21,7 @@ const render = async (remotionRoot, args, logLevel) => {
21
21
  process.exit(1);
22
22
  }
23
23
  const fullEntryPoint = (0, convert_entry_point_to_serve_url_1.convertEntryPointToServeUrl)(file);
24
- if (parsed_cli_1.parsedCli.frame) {
24
+ if (stillFrameOption.getValue({ commandLine: parsed_cli_1.parsedCli }).source === 'cli') {
25
25
  log_1.Log.error({ indent: false, logLevel }, '--frame flag was passed to the `render` command. This flag only works with the `still` command. Did you mean `--frames`? See reference: https://www.remotion.dev/docs/cli/');
26
26
  process.exit(1);
27
27
  }
@@ -112,6 +112,7 @@ const bundleOnCli = async ({ fullPath, remotionRoot, publicDir, onProgressCallba
112
112
  outDir: outDir !== null && outDir !== void 0 ? outDir : null,
113
113
  publicPath,
114
114
  askAIEnabled,
115
+ interactivityEnabled: true,
115
116
  keyboardShortcutsEnabled,
116
117
  rspack,
117
118
  // Ephemeral CLI bundles (render/still/compositions/benchmark) use a temp dir; symlink avoids copying huge public folders. `npx remotion bundle` passes a fixed outDir and keeps deep copy for deployable output.
package/dist/still.js CHANGED
@@ -11,7 +11,7 @@ const get_cli_options_1 = require("./get-cli-options");
11
11
  const log_1 = require("./log");
12
12
  const parsed_cli_1 = require("./parsed-cli");
13
13
  const still_1 = require("./render-flows/still");
14
- const { offthreadVideoCacheSizeInBytesOption, scaleOption, jpegQualityOption, enableMultiprocessOnLinuxOption, glOption, delayRenderTimeoutInMillisecondsOption, headlessOption, overwriteOption, binariesDirectoryOption, publicPathOption, publicDirOption, chromeModeOption, offthreadVideoThreadsOption, audioLatencyHintOption, mediaCacheSizeInBytesOption, darkModeOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, rspackOption, browserExecutableOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, bundleCacheOption, } = client_1.BrowserSafeApis.options;
14
+ const { offthreadVideoCacheSizeInBytesOption, scaleOption, jpegQualityOption, enableMultiprocessOnLinuxOption, glOption, delayRenderTimeoutInMillisecondsOption, headlessOption, overwriteOption, binariesDirectoryOption, publicPathOption, publicDirOption, chromeModeOption, offthreadVideoThreadsOption, audioLatencyHintOption, mediaCacheSizeInBytesOption, darkModeOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, rspackOption, browserExecutableOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, bundleCacheOption, framesOption, } = client_1.BrowserSafeApis.options;
15
15
  const still = async (remotionRoot, args, logLevel) => {
16
16
  const { file, remainingArgs, reason: entryPointReason, } = (0, entry_point_1.findEntryPoint)({ args, remotionRoot, logLevel, allowDirectory: true });
17
17
  if (!file) {
@@ -21,7 +21,7 @@ const still = async (remotionRoot, args, logLevel) => {
21
21
  process.exit(1);
22
22
  }
23
23
  const fullEntryPoint = (0, convert_entry_point_to_serve_url_1.convertEntryPointToServeUrl)(file);
24
- if (parsed_cli_1.parsedCli.frames) {
24
+ if (framesOption.getValue({ commandLine: parsed_cli_1.parsedCli }).source === 'cli') {
25
25
  log_1.Log.error({ indent: false, logLevel }, '--frames flag was passed to the `still` command. This flag only works with the `render` command. Did you mean `--frame`? See reference: https://www.remotion.dev/docs/cli/');
26
26
  process.exit(1);
27
27
  }
package/dist/studio.js CHANGED
@@ -13,7 +13,7 @@ const get_render_defaults_1 = require("./get-render-defaults");
13
13
  const log_1 = require("./log");
14
14
  const parsed_cli_1 = require("./parsed-cli");
15
15
  const queue_1 = require("./render-queue/queue");
16
- const { binariesDirectoryOption, publicDirOption, disableGitSourceOption, enableCrossSiteIsolationOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, audioLatencyHintOption, ipv4Option, rspackOption, webpackPollOption, noOpenOption, portOption, browserOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
16
+ const { binariesDirectoryOption, publicDirOption, disableGitSourceOption, enableCrossSiteIsolationOption, askAIOption, interactivityOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, audioLatencyHintOption, ipv4Option, rspackOption, webpackPollOption, noOpenOption, portOption, browserOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
17
17
  const studioCommand = async (remotionRoot, args, logLevel) => {
18
18
  var _a, _b, _c;
19
19
  const { file, reason } = (0, entry_point_1.findEntryPoint)({
@@ -74,11 +74,30 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
74
74
  const askAIEnabled = askAIOption.getValue({
75
75
  commandLine: parsed_cli_1.parsedCli,
76
76
  }).value;
77
+ const interactivityEnabled = interactivityOption.getValue({
78
+ commandLine: parsed_cli_1.parsedCli,
79
+ }).value;
77
80
  const gitSource = (0, get_github_repository_1.getGitSource)({ remotionRoot, disableGitSource, logLevel });
78
81
  const useRspack = rspackOption.getValue({ commandLine: parsed_cli_1.parsedCli }).value;
79
82
  if (useRspack) {
80
83
  log_1.Log.warn({ indent: false, logLevel }, 'Enabling experimental Rspack bundler.');
81
84
  }
85
+ const getStudioRuntimeConfig = () => ({
86
+ maxTimelineTracks: config_1.ConfigInternals.getMaxTimelineTracks(),
87
+ askAIEnabled: askAIOption.getValue({
88
+ commandLine: parsed_cli_1.parsedCli,
89
+ }).value,
90
+ interactivityEnabled: interactivityOption.getValue({
91
+ commandLine: parsed_cli_1.parsedCli,
92
+ }).value,
93
+ keyboardShortcutsEnabled: keyboardShortcutsOption.getValue({
94
+ commandLine: parsed_cli_1.parsedCli,
95
+ }).value,
96
+ bufferStateDelayInMilliseconds: config_1.ConfigInternals.getBufferStateDelayInMilliseconds(),
97
+ experimentalClientSideRenderingEnabled: experimentalClientSideRenderingOption.getValue({
98
+ commandLine: parsed_cli_1.parsedCli,
99
+ }).value,
100
+ });
82
101
  const result = await studio_server_1.StudioServerInternals.startStudio({
83
102
  previewEntry: require.resolve('@remotion/studio/previewEntry'),
84
103
  browserArgs: parsed_cli_1.parsedCli['browser-args'],
@@ -118,8 +137,10 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
118
137
  }).value,
119
138
  enableCrossSiteIsolation,
120
139
  askAIEnabled,
140
+ interactivityEnabled,
121
141
  forceNew: forceNewStudioOption.getValue({ commandLine: parsed_cli_1.parsedCli }).value,
122
142
  rspack: useRspack,
143
+ getStudioRuntimeConfig,
123
144
  });
124
145
  if (result.type === 'already-running') {
125
146
  return;
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.487",
6
+ "version": "4.0.489",
7
7
  "description": "Control Remotion features using the `npx remotion` command",
8
8
  "main": "dist/index.js",
9
9
  "bin": {
@@ -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.487",
40
- "@remotion/media-utils": "4.0.487",
41
- "@remotion/player": "4.0.487",
42
- "@remotion/renderer": "4.0.487",
43
- "@remotion/studio-shared": "4.0.487",
44
- "@remotion/studio-server": "4.0.487",
45
- "@remotion/studio": "4.0.487",
39
+ "@remotion/bundler": "4.0.489",
40
+ "@remotion/media-utils": "4.0.489",
41
+ "@remotion/player": "4.0.489",
42
+ "@remotion/renderer": "4.0.489",
43
+ "@remotion/studio-shared": "4.0.489",
44
+ "@remotion/studio-server": "4.0.489",
45
+ "@remotion/studio": "4.0.489",
46
46
  "dotenv": "17.3.1",
47
47
  "minimist": "1.2.6",
48
48
  "prompts": "2.4.2",
49
- "remotion": "4.0.487"
49
+ "remotion": "4.0.489"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "react": ">=16.8.0",
@@ -57,14 +57,14 @@
57
57
  "@types/prompts": "2.4.9",
58
58
  "@types/prettier": "2.7.2",
59
59
  "@types/node": "20.12.14",
60
- "@remotion/zod-types": "4.0.487",
61
- "@remotion/tailwind-v4": "4.0.487",
62
- "@remotion/enable-scss": "4.0.487",
63
- "@remotion/skia": "4.0.487",
60
+ "@remotion/zod-types": "4.0.489",
61
+ "@remotion/tailwind-v4": "4.0.489",
62
+ "@remotion/enable-scss": "4.0.489",
63
+ "@remotion/skia": "4.0.489",
64
64
  "react": "19.2.3",
65
65
  "react-dom": "19.2.3",
66
66
  "zod": "4.3.6",
67
- "@remotion/eslint-config-internal": "4.0.487",
67
+ "@remotion/eslint-config-internal": "4.0.489",
68
68
  "eslint": "9.19.0",
69
69
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
70
70
  },