@remotion/renderer 4.0.460 → 4.0.461
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/client.d.ts +0 -16
- package/dist/esm/client.mjs +522 -554
- package/dist/options/index.d.ts +0 -16
- package/dist/options/index.js +0 -2
- package/package.json +14 -14
package/dist/options/index.d.ts
CHANGED
|
@@ -1069,22 +1069,6 @@ export declare const allOptions: {
|
|
|
1069
1069
|
setConfig(value: boolean): void;
|
|
1070
1070
|
id: "enable-experimental-client-side-rendering";
|
|
1071
1071
|
};
|
|
1072
|
-
experimentalVisualModeOption: {
|
|
1073
|
-
name: string;
|
|
1074
|
-
cliFlag: "experimental-visual-mode";
|
|
1075
|
-
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1076
|
-
ssrName: null;
|
|
1077
|
-
docLink: string;
|
|
1078
|
-
type: boolean;
|
|
1079
|
-
getValue: ({ commandLine }: {
|
|
1080
|
-
commandLine: Record<string, unknown>;
|
|
1081
|
-
}) => {
|
|
1082
|
-
value: boolean;
|
|
1083
|
-
source: string;
|
|
1084
|
-
};
|
|
1085
|
-
setConfig(value: boolean): void;
|
|
1086
|
-
id: "experimental-visual-mode";
|
|
1087
|
-
};
|
|
1088
1072
|
keyboardShortcutsOption: {
|
|
1089
1073
|
name: string;
|
|
1090
1074
|
cliFlag: "disable-keyboard-shortcuts";
|
package/dist/options/index.js
CHANGED
|
@@ -31,7 +31,6 @@ const enforce_audio_1 = require("./enforce-audio");
|
|
|
31
31
|
const env_file_1 = require("./env-file");
|
|
32
32
|
const every_nth_frame_1 = require("./every-nth-frame");
|
|
33
33
|
const experimental_client_side_rendering_1 = require("./experimental-client-side-rendering");
|
|
34
|
-
const experimental_visual_mode_1 = require("./experimental-visual-mode");
|
|
35
34
|
const folder_expiry_1 = require("./folder-expiry");
|
|
36
35
|
const for_seamless_aac_concatenation_1 = require("./for-seamless-aac-concatenation");
|
|
37
36
|
const force_new_studio_1 = require("./force-new-studio");
|
|
@@ -155,7 +154,6 @@ exports.allOptions = {
|
|
|
155
154
|
isProductionOption: is_production_1.isProductionOption,
|
|
156
155
|
askAIOption: ask_ai_1.askAIOption,
|
|
157
156
|
experimentalClientSideRenderingOption: experimental_client_side_rendering_1.experimentalClientSideRenderingOption,
|
|
158
|
-
experimentalVisualModeOption: experimental_visual_mode_1.experimentalVisualModeOption,
|
|
159
157
|
keyboardShortcutsOption: keyboard_shortcuts_1.keyboardShortcutsOption,
|
|
160
158
|
framesOption: frames_1.framesOption,
|
|
161
159
|
forceNewStudioOption: force_new_studio_1.forceNewStudioOption,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/renderer",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.461",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"execa": "5.1.1",
|
|
26
26
|
"extract-zip": "2.0.1",
|
|
27
|
-
"remotion": "4.0.
|
|
28
|
-
"@remotion/streaming": "4.0.
|
|
29
|
-
"source-map": "
|
|
27
|
+
"remotion": "4.0.461",
|
|
28
|
+
"@remotion/streaming": "4.0.461",
|
|
29
|
+
"source-map": "0.8.0-beta.0",
|
|
30
30
|
"ws": "8.17.1",
|
|
31
|
-
"@remotion/licensing": "4.0.
|
|
31
|
+
"@remotion/licensing": "4.0.461"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": ">=16.8.0",
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"react-dom": "19.2.3",
|
|
43
43
|
"@typescript/native-preview": "7.0.0-dev.20260217.1",
|
|
44
44
|
"@types/ws": "8.5.10",
|
|
45
|
-
"@remotion/example-videos": "4.0.
|
|
46
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
45
|
+
"@remotion/example-videos": "4.0.461",
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.461",
|
|
47
47
|
"eslint": "9.19.0",
|
|
48
48
|
"@types/node": "20.12.14"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
52
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
53
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
54
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
55
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
56
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
57
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
51
|
+
"@remotion/compositor-darwin-arm64": "4.0.461",
|
|
52
|
+
"@remotion/compositor-darwin-x64": "4.0.461",
|
|
53
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.461",
|
|
54
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.461",
|
|
55
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.461",
|
|
56
|
+
"@remotion/compositor-linux-x64-musl": "4.0.461",
|
|
57
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.461"
|
|
58
58
|
},
|
|
59
59
|
"keywords": [
|
|
60
60
|
"remotion",
|