@remotion/serverless-client 4.0.462 → 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 +20 -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,7 +755,17 @@ var sequenceStyleSchema = {
|
|
|
753
755
|
type: "hidden"
|
|
754
756
|
}
|
|
755
757
|
};
|
|
758
|
+
var sequenceStyleSchema = {
|
|
759
|
+
...sequenceVisualStyleSchema,
|
|
760
|
+
...sequencePremountSchema
|
|
761
|
+
};
|
|
762
|
+
var hiddenField = {
|
|
763
|
+
type: "boolean",
|
|
764
|
+
default: false,
|
|
765
|
+
description: "Hidden"
|
|
766
|
+
};
|
|
756
767
|
var sequenceSchema = {
|
|
768
|
+
hidden: hiddenField,
|
|
757
769
|
layout: {
|
|
758
770
|
type: "enum",
|
|
759
771
|
default: "absolute-fill",
|
|
@@ -1124,7 +1136,7 @@ var validateFramesPerFunction = ({
|
|
|
1124
1136
|
import * as tty from "tty";
|
|
1125
1137
|
|
|
1126
1138
|
// ../core/dist/esm/version.mjs
|
|
1127
|
-
var VERSION = "4.0.
|
|
1139
|
+
var VERSION = "4.0.464";
|
|
1128
1140
|
|
|
1129
1141
|
// ../renderer/dist/esm/error-handling.mjs
|
|
1130
1142
|
var isColorSupported = () => {
|
|
@@ -1406,6 +1418,10 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
1406
1418
|
Log.info({ indent, logLevel });
|
|
1407
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");
|
|
1408
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
|
+
}
|
|
1409
1425
|
if (err.message.includes("Error creating WebGL context")) {
|
|
1410
1426
|
Log.info({ indent, logLevel });
|
|
1411
1427
|
Log.warn({
|
|
@@ -1416,6 +1432,7 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
1416
1432
|
indent,
|
|
1417
1433
|
logLevel
|
|
1418
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");
|
|
1419
1436
|
}
|
|
1420
1437
|
if (err.message.includes("The bucket does not allow ACLs")) {
|
|
1421
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
|
},
|