@remotion/renderer 4.0.169 → 4.0.170
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.
|
@@ -37,6 +37,9 @@ const gLibCErrorMessage = (libCString) => {
|
|
|
37
37
|
};
|
|
38
38
|
exports.gLibCErrorMessage = gLibCErrorMessage;
|
|
39
39
|
const checkLibCRequirement = (logLevel, indent) => {
|
|
40
|
+
if (process.platform === 'win32' || process.platform === 'darwin') {
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
40
43
|
const { report } = process;
|
|
41
44
|
if (report) {
|
|
42
45
|
const rep = report.getReport();
|
|
@@ -12,7 +12,7 @@ const getRealFrameRange = (durationInFrames, frameRange) => {
|
|
|
12
12
|
return [frameRange, frameRange];
|
|
13
13
|
}
|
|
14
14
|
if (frameRange[1] >= durationInFrames || frameRange[0] < 0) {
|
|
15
|
-
throw new Error(`
|
|
15
|
+
throw new Error(`The "durationInFrames" of the <Composition /> was evaluated to be ${durationInFrames}, but frame range ${frameRange.join('-')} is not inbetween 0-${durationInFrames - 1}`);
|
|
16
16
|
}
|
|
17
17
|
return frameRange;
|
|
18
18
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.170",
|
|
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.
|
|
21
|
+
"remotion": "4.0.170"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": ">=16.8.0",
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
"react-dom": "18.3.1",
|
|
42
42
|
"vitest": "0.31.1",
|
|
43
43
|
"@types/ws": "8.5.10",
|
|
44
|
-
"@remotion/streaming": "4.0.
|
|
44
|
+
"@remotion/streaming": "4.0.170"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@remotion/compositor-darwin-
|
|
48
|
-
"@remotion/compositor-linux-arm64-
|
|
49
|
-
"@remotion/compositor-
|
|
50
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
51
|
-
"@remotion/compositor-linux-
|
|
52
|
-
"@remotion/compositor-
|
|
53
|
-
"@remotion/compositor-
|
|
47
|
+
"@remotion/compositor-darwin-arm64": "4.0.170",
|
|
48
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.170",
|
|
49
|
+
"@remotion/compositor-darwin-x64": "4.0.170",
|
|
50
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.170",
|
|
51
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.170",
|
|
52
|
+
"@remotion/compositor-linux-x64-musl": "4.0.170",
|
|
53
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.170"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"remotion",
|