@remotion/cli 4.0.488 → 4.0.490

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.
@@ -96,6 +96,7 @@ exports.listOfRemotionPackages = [
96
96
  '@remotion/web-renderer',
97
97
  '@remotion/design',
98
98
  '@remotion/light-leaks',
99
+ '@remotion/rough-notation',
99
100
  '@remotion/starburst',
100
101
  '@remotion/vercel',
101
102
  '@remotion/sfx',
package/dist/studio.js CHANGED
@@ -82,6 +82,22 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
82
82
  if (useRspack) {
83
83
  log_1.Log.warn({ indent: false, logLevel }, 'Enabling experimental Rspack bundler.');
84
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
+ });
85
101
  const result = await studio_server_1.StudioServerInternals.startStudio({
86
102
  previewEntry: require.resolve('@remotion/studio/previewEntry'),
87
103
  browserArgs: parsed_cli_1.parsedCli['browser-args'],
@@ -124,6 +140,7 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
124
140
  interactivityEnabled,
125
141
  forceNew: forceNewStudioOption.getValue({ commandLine: parsed_cli_1.parsedCli }).value,
126
142
  rspack: useRspack,
143
+ getStudioRuntimeConfig,
127
144
  });
128
145
  if (result.type === 'already-running') {
129
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.488",
6
+ "version": "4.0.490",
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.488",
40
- "@remotion/media-utils": "4.0.488",
41
- "@remotion/player": "4.0.488",
42
- "@remotion/renderer": "4.0.488",
43
- "@remotion/studio-shared": "4.0.488",
44
- "@remotion/studio-server": "4.0.488",
45
- "@remotion/studio": "4.0.488",
39
+ "@remotion/bundler": "4.0.490",
40
+ "@remotion/media-utils": "4.0.490",
41
+ "@remotion/player": "4.0.490",
42
+ "@remotion/renderer": "4.0.490",
43
+ "@remotion/studio-shared": "4.0.490",
44
+ "@remotion/studio-server": "4.0.490",
45
+ "@remotion/studio": "4.0.490",
46
46
  "dotenv": "17.3.1",
47
47
  "minimist": "1.2.6",
48
48
  "prompts": "2.4.2",
49
- "remotion": "4.0.488"
49
+ "remotion": "4.0.490"
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.488",
61
- "@remotion/tailwind-v4": "4.0.488",
62
- "@remotion/enable-scss": "4.0.488",
63
- "@remotion/skia": "4.0.488",
60
+ "@remotion/zod-types": "4.0.490",
61
+ "@remotion/tailwind-v4": "4.0.490",
62
+ "@remotion/enable-scss": "4.0.490",
63
+ "@remotion/skia": "4.0.490",
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.488",
67
+ "@remotion/eslint-config-internal": "4.0.490",
68
68
  "eslint": "9.19.0",
69
69
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
70
70
  },