@remotion/renderer 4.0.14 → 4.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/renderer",
3
- "version": "4.0.14",
3
+ "version": "4.0.15",
4
4
  "description": "Renderer for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "extract-zip": "2.0.1",
19
19
  "source-map": "^0.8.0-beta.0",
20
20
  "ws": "8.7.0",
21
- "remotion": "4.0.14"
21
+ "remotion": "4.0.15"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "react": ">=16.8.0",
@@ -42,13 +42,13 @@
42
42
  "zod": "^3.21.4"
43
43
  },
44
44
  "optionalDependencies": {
45
- "@remotion/compositor-darwin-arm64": "4.0.14",
46
- "@remotion/compositor-darwin-x64": "4.0.14",
47
- "@remotion/compositor-linux-arm64-musl": "4.0.14",
48
- "@remotion/compositor-linux-x64-gnu": "4.0.14",
49
- "@remotion/compositor-linux-arm64-gnu": "4.0.14",
50
- "@remotion/compositor-win32-x64-msvc": "4.0.14",
51
- "@remotion/compositor-linux-x64-musl": "4.0.14"
45
+ "@remotion/compositor-darwin-arm64": "4.0.15",
46
+ "@remotion/compositor-linux-arm64-gnu": "4.0.15",
47
+ "@remotion/compositor-linux-x64-gnu": "4.0.15",
48
+ "@remotion/compositor-linux-arm64-musl": "4.0.15",
49
+ "@remotion/compositor-darwin-x64": "4.0.15",
50
+ "@remotion/compositor-win32-x64-msvc": "4.0.15",
51
+ "@remotion/compositor-linux-x64-musl": "4.0.15"
52
52
  },
53
53
  "keywords": [
54
54
  "remotion",
@@ -1,36 +0,0 @@
1
- import {execSync} from 'node:child_process';
2
- import {existsSync, mkdirSync, unlinkSync} from 'node:fs';
3
- import {toolchains} from './toolchains.mjs';
4
-
5
- const unpatched = [
6
- 'x86_64-apple-darwin',
7
- 'aarch64-apple-darwin',
8
- 'x86_64-pc-windows-gnu',
9
- ];
10
-
11
- for (const toolchain of toolchains) {
12
- process.stdout.write(toolchain + '...');
13
-
14
- execSync(
15
- `curl https://remotion-ffmpeg-binaries.s3.eu-central-1.amazonaws.com/${toolchain}.zip -o ${toolchain}.zip`
16
- );
17
-
18
- if (!existsSync('toolchains')) {
19
- mkdirSync('toolchains');
20
- }
21
-
22
- if (!existsSync('toolchains/' + toolchain)) {
23
- mkdirSync('toolchains/' + toolchain);
24
- }
25
-
26
- execSync(`tar -xzf ../../${toolchain}.zip`, {
27
- cwd: `toolchains/${toolchain}`,
28
- });
29
-
30
- unlinkSync(`${toolchain}.zip`);
31
- process.stdout.write('Done.\n');
32
- }
33
-
34
- for (const target of unpatched) {
35
- execSync(`rustup target add ${target}`);
36
- }