@remotion/renderer 4.0.507 → 4.0.508

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.
@@ -4888,26 +4888,27 @@ var mediaCacheSizeInBytesOption = {
4888
4888
  cliFlag: cliFlag88,
4889
4889
  description: () => /* @__PURE__ */ jsxs57(Fragment83, {
4890
4890
  children: [
4891
- "Specify the maximum size of the cache that ",
4891
+ "Specify the memory budget for decoded media cached by",
4892
+ " ",
4892
4893
  /* @__PURE__ */ jsx83("code", {
4893
4894
  children: "<Video>"
4894
4895
  }),
4895
- " and",
4896
- " ",
4896
+ " and ",
4897
4897
  /* @__PURE__ */ jsx83("code", {
4898
4898
  children: "<Audio>"
4899
4899
  }),
4900
- " from ",
4900
+ " from",
4901
+ " ",
4901
4902
  /* @__PURE__ */ jsx83("code", {
4902
4903
  children: "@remotion/media"
4903
4904
  }),
4904
- " may use combined, in bytes. ",
4905
+ ", in bytes. This value also determines the maximum read cache size for each distinct media source. It is not a limit on total memory usage. ",
4905
4906
  /* @__PURE__ */ jsx83("br", {}),
4906
4907
  "The default is half of the available system memory when the render starts."
4907
4908
  ]
4908
4909
  }),
4909
4910
  ssrName: "mediaCacheSizeInBytes",
4910
- docLink: "https://www.remotion.dev/docs/media/video#setting-the-cache-size",
4911
+ docLink: "https://www.remotion.dev/docs/media/cache",
4911
4912
  type: 0,
4912
4913
  getValue: ({ commandLine }) => {
4913
4914
  if (commandLine[cliFlag88] !== undefined) {
@@ -11,16 +11,15 @@ const cliFlag = 'media-cache-size-in-bytes';
11
11
  exports.mediaCacheSizeInBytesOption = {
12
12
  name: '@remotion/media cache size',
13
13
  cliFlag,
14
- description: () => (jsx_runtime_1.jsxs(jsx_runtime_1.Fragment, { children: ["Specify the maximum size of the cache that ",
15
- jsx_runtime_1.jsx("code", { children: "<Video>" }),
16
- " and", ' ', jsx_runtime_1.jsx("code", { children: "<Audio>" }),
17
- " from ",
18
- jsx_runtime_1.jsx("code", { children: "@remotion/media" }),
19
- " may use combined, in bytes. ",
14
+ description: () => (jsx_runtime_1.jsxs(jsx_runtime_1.Fragment, { children: ["Specify the memory budget for decoded media cached by", ' ', jsx_runtime_1.jsx("code", { children: "<Video>" }),
15
+ " and ",
16
+ jsx_runtime_1.jsx("code", { children: "<Audio>" }),
17
+ " from", ' ', jsx_runtime_1.jsx("code", { children: "@remotion/media" }),
18
+ ", in bytes. This value also determines the maximum read cache size for each distinct media source. It is not a limit on total memory usage. ",
20
19
  jsx_runtime_1.jsx("br", {}),
21
20
  "The default is half of the available system memory when the render starts."] })),
22
21
  ssrName: 'mediaCacheSizeInBytes',
23
- docLink: 'https://www.remotion.dev/docs/media/video#setting-the-cache-size',
22
+ docLink: 'https://www.remotion.dev/docs/media/cache',
24
23
  type: 0,
25
24
  getValue: ({ commandLine }) => {
26
25
  if (commandLine[cliFlag] !== undefined) {
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.507",
6
+ "version": "4.0.508",
7
7
  "description": "Render Remotion videos using Node.js or Bun",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "execa": "5.1.1",
25
- "remotion": "4.0.507",
26
- "@remotion/streaming": "4.0.507",
25
+ "remotion": "4.0.508",
26
+ "@remotion/streaming": "4.0.508",
27
27
  "source-map": "0.8.0",
28
28
  "ws": "8.21.0",
29
- "@remotion/licensing": "4.0.507"
29
+ "@remotion/licensing": "4.0.508"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": ">=16.8.0",
@@ -40,19 +40,19 @@
40
40
  "react-dom": "19.2.3",
41
41
  "@typescript/native-preview": "7.0.0-dev.20260217.1",
42
42
  "@types/ws": "8.5.10",
43
- "@remotion/example-videos": "4.0.507",
44
- "@remotion/eslint-config-internal": "4.0.507",
43
+ "@remotion/example-videos": "4.0.508",
44
+ "@remotion/eslint-config-internal": "4.0.508",
45
45
  "eslint": "9.19.0",
46
46
  "@types/node": "20.12.14"
47
47
  },
48
48
  "optionalDependencies": {
49
- "@remotion/compositor-darwin-arm64": "4.0.507",
50
- "@remotion/compositor-darwin-x64": "4.0.507",
51
- "@remotion/compositor-linux-arm64-gnu": "4.0.507",
52
- "@remotion/compositor-linux-arm64-musl": "4.0.507",
53
- "@remotion/compositor-linux-x64-gnu": "4.0.507",
54
- "@remotion/compositor-linux-x64-musl": "4.0.507",
55
- "@remotion/compositor-win32-x64-msvc": "4.0.507"
49
+ "@remotion/compositor-darwin-arm64": "4.0.508",
50
+ "@remotion/compositor-darwin-x64": "4.0.508",
51
+ "@remotion/compositor-linux-arm64-gnu": "4.0.508",
52
+ "@remotion/compositor-linux-arm64-musl": "4.0.508",
53
+ "@remotion/compositor-linux-x64-gnu": "4.0.508",
54
+ "@remotion/compositor-linux-x64-musl": "4.0.508",
55
+ "@remotion/compositor-win32-x64-msvc": "4.0.508"
56
56
  },
57
57
  "keywords": [
58
58
  "remotion",