@remotion/serverless-client 4.0.447 → 4.0.448
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/constants.d.ts +3 -0
- package/dist/esm/index.mjs +5 -1
- package/package.json +5 -5
package/dist/constants.d.ts
CHANGED
|
@@ -117,6 +117,7 @@ export type ServerlessStartPayload<Provider extends CloudProvider> = {
|
|
|
117
117
|
licenseKey: string | null;
|
|
118
118
|
storageClass: Provider['storageClass'] | null;
|
|
119
119
|
isProduction: boolean | null;
|
|
120
|
+
sampleRate: number;
|
|
120
121
|
};
|
|
121
122
|
export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
122
123
|
info: {
|
|
@@ -177,6 +178,7 @@ export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
|
177
178
|
licenseKey: string | null;
|
|
178
179
|
storageClass: Provider['storageClass'] | null;
|
|
179
180
|
isProduction: boolean;
|
|
181
|
+
sampleRate: number;
|
|
180
182
|
};
|
|
181
183
|
status: ServerlessStatusPayload<Provider>;
|
|
182
184
|
renderer: {
|
|
@@ -229,6 +231,7 @@ export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
|
229
231
|
progressEveryNthFrame: number;
|
|
230
232
|
forcePathStyle: boolean;
|
|
231
233
|
metadata: Record<string, string> | null;
|
|
234
|
+
sampleRate: number;
|
|
232
235
|
};
|
|
233
236
|
still: {
|
|
234
237
|
type: ServerlessRoutines.still;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1000,7 +1000,7 @@ var validateFramesPerFunction = ({
|
|
|
1000
1000
|
import * as tty from "tty";
|
|
1001
1001
|
|
|
1002
1002
|
// ../core/dist/esm/version.mjs
|
|
1003
|
-
var VERSION = "4.0.
|
|
1003
|
+
var VERSION = "4.0.448";
|
|
1004
1004
|
|
|
1005
1005
|
// ../renderer/dist/esm/error-handling.mjs
|
|
1006
1006
|
var isColorSupported = () => {
|
|
@@ -1313,6 +1313,10 @@ var printUsefulErrorMessage = (err, logLevel, indent) => {
|
|
|
1313
1313
|
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires at least Libc 2.35.");
|
|
1314
1314
|
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/2439");
|
|
1315
1315
|
}
|
|
1316
|
+
if (err.message.includes("AVCaptureDeviceTypeContinuityCamera")) {
|
|
1317
|
+
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Remotion requires macOS 13 (Ventura) or later.");
|
|
1318
|
+
Log.info({ indent, logLevel }, "\uD83D\uDCA1 Get help for this issue: https://github.com/remotion-dev/remotion/issues/7027");
|
|
1319
|
+
}
|
|
1316
1320
|
if (err.message.includes("EBADF")) {
|
|
1317
1321
|
Log.info({ indent, logLevel }, "\uD83D\uDCA1 This error might be fixed by changing your Node version:");
|
|
1318
1322
|
Log.info({ indent, logLevel }, " https://github.com/remotion-dev/remotion/issues/2452");
|
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.448",
|
|
7
7
|
"main": "dist",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"scripts": {
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"remotion": "4.0.
|
|
28
|
-
"@remotion/streaming": "4.0.
|
|
29
|
-
"@remotion/renderer": "4.0.
|
|
30
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
27
|
+
"remotion": "4.0.448",
|
|
28
|
+
"@remotion/streaming": "4.0.448",
|
|
29
|
+
"@remotion/renderer": "4.0.448",
|
|
30
|
+
"@remotion/eslint-config-internal": "4.0.448",
|
|
31
31
|
"eslint": "9.19.0",
|
|
32
32
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
33
33
|
},
|