@remotion/lambda 3.3.79 → 3.3.80
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/functions/launch.js
CHANGED
|
@@ -230,6 +230,7 @@ const innerLaunchHandler = async (params, options) => {
|
|
|
230
230
|
};
|
|
231
231
|
return payload;
|
|
232
232
|
});
|
|
233
|
+
console.log('Render plan: ', chunks.map((c, i) => `Chunk ${i} (Frames ${c[0] - c[1]})`).join(', '));
|
|
233
234
|
const renderMetadata = {
|
|
234
235
|
startedDate,
|
|
235
236
|
videoConfig: comp,
|
|
@@ -292,10 +293,8 @@ const innerLaunchHandler = async (params, options) => {
|
|
|
292
293
|
downloadBehavior: null,
|
|
293
294
|
customCredentials: null,
|
|
294
295
|
});
|
|
295
|
-
await Promise.all(lambdaPayloads.map(async (payload
|
|
296
|
-
const callingLambdaTimer = (0, timer_1.timer)('Calling chunk ' + index);
|
|
296
|
+
await Promise.all(lambdaPayloads.map(async (payload) => {
|
|
297
297
|
await callFunctionWithRetry({ payload, retries: 0, functionName });
|
|
298
|
-
callingLambdaTimer.end();
|
|
299
298
|
}));
|
|
300
299
|
reqSend.end();
|
|
301
300
|
let lastProgressUploaded = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.80",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"@aws-sdk/credential-providers": "3.272.0",
|
|
24
24
|
"@aws-sdk/lib-storage": "3.272.0",
|
|
25
25
|
"@aws-sdk/s3-request-presigner": "3.272.0",
|
|
26
|
-
"@remotion/bundler": "3.3.
|
|
27
|
-
"@remotion/cli": "3.3.
|
|
28
|
-
"@remotion/renderer": "3.3.
|
|
26
|
+
"@remotion/bundler": "3.3.80",
|
|
27
|
+
"@remotion/cli": "3.3.80",
|
|
28
|
+
"@remotion/renderer": "3.3.80",
|
|
29
29
|
"aws-policies": "^1.0.1",
|
|
30
30
|
"mime-types": "2.1.34",
|
|
31
|
-
"remotion": "3.3.
|
|
31
|
+
"remotion": "3.3.80"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jonny/eslint-config": "3.0.266",
|
|
35
|
-
"@remotion/bundler": "3.3.
|
|
36
|
-
"@remotion/compositor-linux-arm64-musl": "3.3.
|
|
37
|
-
"@remotion/compositor-linux-x64-musl": "3.3.
|
|
35
|
+
"@remotion/bundler": "3.3.80",
|
|
36
|
+
"@remotion/compositor-linux-arm64-musl": "3.3.80",
|
|
37
|
+
"@remotion/compositor-linux-x64-musl": "3.3.80",
|
|
38
38
|
"@types/mime-types": "2.1.1",
|
|
39
39
|
"@types/minimist": "1.2.2",
|
|
40
40
|
"@types/node": "^14.14.14",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"zip-lib": "^0.7.2"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@remotion/bundler": "3.3.
|
|
51
|
+
"@remotion/bundler": "3.3.80"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|
package/remotionlambda-x64.zip
CHANGED
|
Binary file
|