@remotion/serverless-client 4.0.463 → 4.0.464
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/esm/index.mjs +14 -3
- package/package.json +5 -5
package/dist/esm/index.mjs
CHANGED
|
@@ -707,7 +707,7 @@ var proResProfileOptions = [
|
|
|
707
707
|
"light",
|
|
708
708
|
"proxy"
|
|
709
709
|
];
|
|
710
|
-
var
|
|
710
|
+
var sequenceVisualStyleSchema = {
|
|
711
711
|
"style.translate": {
|
|
712
712
|
type: "translate",
|
|
713
713
|
step: 1,
|
|
@@ -735,7 +735,9 @@ var sequenceStyleSchema = {
|
|
|
735
735
|
step: 0.01,
|
|
736
736
|
default: 1,
|
|
737
737
|
description: "Opacity"
|
|
738
|
-
}
|
|
738
|
+
}
|
|
739
|
+
};
|
|
740
|
+
var sequencePremountSchema = {
|
|
739
741
|
premountFor: {
|
|
740
742
|
type: "number",
|
|
741
743
|
default: 0,
|
|
@@ -753,6 +755,10 @@ var sequenceStyleSchema = {
|
|
|
753
755
|
type: "hidden"
|
|
754
756
|
}
|
|
755
757
|
};
|
|
758
|
+
var sequenceStyleSchema = {
|
|
759
|
+
...sequenceVisualStyleSchema,
|
|
760
|
+
...sequencePremountSchema
|
|
761
|
+
};
|
|
756
762
|
var hiddenField = {
|
|
757
763
|
type: "boolean",
|
|
758
764
|
default: false,
|
|
@@ -1130,7 +1136,7 @@ var validateFramesPerFunction = ({
|
|
|
1130
1136
|
import * as tty from "tty";
|
|
1131
1137
|
|
|
1132
1138
|
// ../core/dist/esm/version.mjs
|
|
1133
|
-
var VERSION = "4.0.
|
|
1139
|
+
var VERSION = "4.0.464";
|
|
1134
1140
|
|
|
1135
1141
|
// ../renderer/dist/esm/error-handling.mjs
|
|
1136
1142
|
var isColorSupported = () => {
|
|
@@ -1412,6 +1418,10 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
1412
1418
|
Log.info({ indent, logLevel });
|
|
1413
1419
|
Log.info({ indent, logLevel }, "\uD83D\uDCA1 This error indicates that your Lambda concurrency limit is too low. See: https://www.remotion.dev/docs/lambda/troubleshooting/rate-limit");
|
|
1414
1420
|
}
|
|
1421
|
+
if (err.message.includes("Failed to acquire WebGL2 context") || err.message.includes("Failed to acquire WebGL context")) {
|
|
1422
|
+
Log.info({ indent, logLevel });
|
|
1423
|
+
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
|
|
1424
|
+
}
|
|
1415
1425
|
if (err.message.includes("Error creating WebGL context")) {
|
|
1416
1426
|
Log.info({ indent, logLevel });
|
|
1417
1427
|
Log.warn({
|
|
@@ -1422,6 +1432,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
1422
1432
|
indent,
|
|
1423
1433
|
logLevel
|
|
1424
1434
|
}, "\uD83D\uDCA1 Check how it's done at https://www.remotion.dev/docs/chromium-flags#--gl");
|
|
1435
|
+
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue at https://remotion.dev/docs/troubleshooting/webgl2-context");
|
|
1425
1436
|
}
|
|
1426
1437
|
if (err.message.includes("The bucket does not allow ACLs")) {
|
|
1427
1438
|
Log.info({ indent, logLevel });
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/serverless-client"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/serverless-client",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.464",
|
|
7
7
|
"main": "dist",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"lint": "eslint src",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"remotion": "4.0.
|
|
27
|
-
"@remotion/streaming": "4.0.
|
|
28
|
-
"@remotion/renderer": "4.0.
|
|
29
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
26
|
+
"remotion": "4.0.464",
|
|
27
|
+
"@remotion/streaming": "4.0.464",
|
|
28
|
+
"@remotion/renderer": "4.0.464",
|
|
29
|
+
"@remotion/eslint-config-internal": "4.0.464",
|
|
30
30
|
"eslint": "9.19.0",
|
|
31
31
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
32
32
|
},
|