@remotion/renderer 4.0.317 → 4.0.319
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 +3 -0
- package/dist/esm/index.mjs +3 -0
- package/package.json +13 -13
|
@@ -66,6 +66,9 @@ const TESTED_VERSION = '134.0.6998.35';
|
|
|
66
66
|
const PLAYWRIGHT_VERSION = '1161'; // 134.0.6998.35
|
|
67
67
|
function getChromeDownloadUrl({ platform, version, chromeMode, }) {
|
|
68
68
|
if (platform === 'linux-arm64') {
|
|
69
|
+
if (chromeMode === 'chrome-for-testing') {
|
|
70
|
+
return `https://playwright.azureedge.net/builds/chromium/${version !== null && version !== void 0 ? version : PLAYWRIGHT_VERSION}/chromium-linux-arm64.zip`;
|
|
71
|
+
}
|
|
69
72
|
return `https://playwright.azureedge.net/builds/chromium/${version !== null && version !== void 0 ? version : PLAYWRIGHT_VERSION}/chromium-headless-shell-linux-arm64.zip`;
|
|
70
73
|
}
|
|
71
74
|
if (chromeMode === 'headless-shell') {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -4720,6 +4720,9 @@ function getChromeDownloadUrl({
|
|
|
4720
4720
|
chromeMode
|
|
4721
4721
|
}) {
|
|
4722
4722
|
if (platform2 === "linux-arm64") {
|
|
4723
|
+
if (chromeMode === "chrome-for-testing") {
|
|
4724
|
+
return `https://playwright.azureedge.net/builds/chromium/${version ?? PLAYWRIGHT_VERSION}/chromium-linux-arm64.zip`;
|
|
4725
|
+
}
|
|
4723
4726
|
return `https://playwright.azureedge.net/builds/chromium/${version ?? PLAYWRIGHT_VERSION}/chromium-headless-shell-linux-arm64.zip`;
|
|
4724
4727
|
}
|
|
4725
4728
|
if (chromeMode === "headless-shell") {
|
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.319",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"extract-zip": "2.0.1",
|
|
19
19
|
"source-map": "^0.8.0-beta.0",
|
|
20
20
|
"ws": "8.17.1",
|
|
21
|
-
"remotion": "4.0.
|
|
22
|
-
"@remotion/streaming": "4.0.
|
|
21
|
+
"remotion": "4.0.319",
|
|
22
|
+
"@remotion/streaming": "4.0.319"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">=16.8.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"react-dom": "19.0.0",
|
|
34
34
|
"@types/ws": "8.5.10",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
|
-
"@remotion/
|
|
37
|
-
"@remotion/
|
|
36
|
+
"@remotion/eslint-config-internal": "4.0.319",
|
|
37
|
+
"@remotion/example-videos": "4.0.319"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
41
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
42
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
43
|
-
"@remotion/compositor-linux-x64-
|
|
44
|
-
"@remotion/compositor-
|
|
45
|
-
"@remotion/compositor-
|
|
46
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
40
|
+
"@remotion/compositor-darwin-arm64": "4.0.319",
|
|
41
|
+
"@remotion/compositor-darwin-x64": "4.0.319",
|
|
42
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.319",
|
|
43
|
+
"@remotion/compositor-linux-x64-musl": "4.0.319",
|
|
44
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.319",
|
|
45
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.319",
|
|
46
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.319"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"remotion",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
"scripts": {
|
|
100
|
-
"formatting": "prettier src --check",
|
|
100
|
+
"formatting": "prettier --experimental-cli src --check",
|
|
101
101
|
"lint": "eslint src",
|
|
102
102
|
"test": "bun test src",
|
|
103
103
|
"make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
|