@remotion/renderer 4.0.417 → 4.0.418
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/browser/BrowserFetcher.js +7 -1
- package/dist/esm/index.mjs +7 -1
- package/package.json +13 -13
|
@@ -69,9 +69,15 @@ function getChromeDownloadUrl({ platform, version, chromeMode, }) {
|
|
|
69
69
|
if (chromeMode === 'chrome-for-testing') {
|
|
70
70
|
return `https://playwright.azureedge.net/builds/chromium/${version !== null && version !== void 0 ? version : PLAYWRIGHT_VERSION}/chromium-linux-arm64.zip`;
|
|
71
71
|
}
|
|
72
|
-
|
|
72
|
+
if (version) {
|
|
73
|
+
return `https://playwright.azureedge.net/builds/chromium/${version !== null && version !== void 0 ? version : PLAYWRIGHT_VERSION}/chromium-headless-shell-linux-arm64.zip`;
|
|
74
|
+
}
|
|
75
|
+
return `https://remotion.media/chromium-headless-shell-linux-arm64-${exports.TESTED_VERSION}.zip?clearcache`;
|
|
73
76
|
}
|
|
74
77
|
if (chromeMode === 'headless-shell') {
|
|
78
|
+
if (platform === 'linux64' && version === null) {
|
|
79
|
+
return `https://remotion.media/chromium-headless-shell-linux-x64-${exports.TESTED_VERSION}.zip?clearcache`;
|
|
80
|
+
}
|
|
75
81
|
return `https://storage.googleapis.com/chrome-for-testing-public/${version !== null && version !== void 0 ? version : exports.TESTED_VERSION}/${platform}/chrome-headless-shell-${platform}.zip`;
|
|
76
82
|
}
|
|
77
83
|
return `https://storage.googleapis.com/chrome-for-testing-public/${version !== null && version !== void 0 ? version : exports.TESTED_VERSION}/${platform}/chrome-${platform}.zip`;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -4798,9 +4798,15 @@ function getChromeDownloadUrl({
|
|
|
4798
4798
|
if (chromeMode === "chrome-for-testing") {
|
|
4799
4799
|
return `https://playwright.azureedge.net/builds/chromium/${version ?? PLAYWRIGHT_VERSION}/chromium-linux-arm64.zip`;
|
|
4800
4800
|
}
|
|
4801
|
-
|
|
4801
|
+
if (version) {
|
|
4802
|
+
return `https://playwright.azureedge.net/builds/chromium/${version ?? PLAYWRIGHT_VERSION}/chromium-headless-shell-linux-arm64.zip`;
|
|
4803
|
+
}
|
|
4804
|
+
return `https://remotion.media/chromium-headless-shell-linux-arm64-${TESTED_VERSION}.zip?clearcache`;
|
|
4802
4805
|
}
|
|
4803
4806
|
if (chromeMode === "headless-shell") {
|
|
4807
|
+
if (platform2 === "linux64" && version === null) {
|
|
4808
|
+
return `https://remotion.media/chromium-headless-shell-linux-x64-${TESTED_VERSION}.zip?clearcache`;
|
|
4809
|
+
}
|
|
4804
4810
|
return `https://storage.googleapis.com/chrome-for-testing-public/${version ?? TESTED_VERSION}/${platform2}/chrome-headless-shell-${platform2}.zip`;
|
|
4805
4811
|
}
|
|
4806
4812
|
return `https://storage.googleapis.com/chrome-for-testing-public/${version ?? TESTED_VERSION}/${platform2}/chrome-${platform2}.zip`;
|
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.418",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"execa": "5.1.1",
|
|
25
25
|
"extract-zip": "2.0.1",
|
|
26
|
-
"remotion": "4.0.
|
|
27
|
-
"@remotion/streaming": "4.0.
|
|
26
|
+
"remotion": "4.0.418",
|
|
27
|
+
"@remotion/streaming": "4.0.418",
|
|
28
28
|
"source-map": "^0.8.0-beta.0",
|
|
29
29
|
"ws": "8.17.1",
|
|
30
|
-
"@remotion/licensing": "4.0.
|
|
30
|
+
"@remotion/licensing": "4.0.418"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8.0",
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"react-dom": "19.2.3",
|
|
42
42
|
"@typescript/native-preview": "7.0.0-dev.20260105.1",
|
|
43
43
|
"@types/ws": "8.5.10",
|
|
44
|
-
"@remotion/example-videos": "4.0.
|
|
45
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
44
|
+
"@remotion/example-videos": "4.0.418",
|
|
45
|
+
"@remotion/eslint-config-internal": "4.0.418",
|
|
46
46
|
"eslint": "9.19.0",
|
|
47
47
|
"@types/node": "20.12.14"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
51
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
52
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
53
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
54
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
55
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
56
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
50
|
+
"@remotion/compositor-darwin-arm64": "4.0.418",
|
|
51
|
+
"@remotion/compositor-darwin-x64": "4.0.418",
|
|
52
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.418",
|
|
53
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.418",
|
|
54
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.418",
|
|
55
|
+
"@remotion/compositor-linux-x64-musl": "4.0.418",
|
|
56
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.418"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
59
59
|
"remotion",
|