@remotion/lambda 4.0.0 → 4.0.2
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
|
@@ -143,11 +143,13 @@ const innerLaunchHandler = async (params, options) => {
|
|
|
143
143
|
serialized: params.inputProps,
|
|
144
144
|
propsType: 'input-props',
|
|
145
145
|
});
|
|
146
|
+
const inputProps = await inputPropsPromise;
|
|
147
|
+
renderer_1.RenderInternals.Log.info('Validating composition, input props:', inputProps);
|
|
146
148
|
const comp = await (0, validate_composition_1.validateComposition)({
|
|
147
149
|
serveUrl: params.serveUrl,
|
|
148
150
|
composition: params.composition,
|
|
149
151
|
browserInstance,
|
|
150
|
-
inputProps
|
|
152
|
+
inputProps,
|
|
151
153
|
envVariables: (_b = params.envVariables) !== null && _b !== void 0 ? _b : {},
|
|
152
154
|
timeoutInMilliseconds: params.timeoutInMilliseconds,
|
|
153
155
|
chromiumOptions: params.chromiumOptions,
|
|
@@ -157,6 +159,7 @@ const innerLaunchHandler = async (params, options) => {
|
|
|
157
159
|
logLevel: params.logLevel,
|
|
158
160
|
server: undefined,
|
|
159
161
|
});
|
|
162
|
+
renderer_1.RenderInternals.Log.info('Composition validated, resolved props', comp.props);
|
|
160
163
|
remotion_1.Internals.validateDurationInFrames(comp.durationInFrames, {
|
|
161
164
|
component: 'passed to a Lambda render',
|
|
162
165
|
allowFloats: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@aws-sdk/s3-request-presigner": "3.338.0",
|
|
26
26
|
"aws-policies": "^1.0.1",
|
|
27
27
|
"mime-types": "2.1.34",
|
|
28
|
-
"@remotion/bundler": "4.0.
|
|
29
|
-
"@remotion/cli": "4.0.
|
|
30
|
-
"remotion": "4.0.
|
|
31
|
-
"
|
|
28
|
+
"@remotion/bundler": "4.0.2",
|
|
29
|
+
"@remotion/cli": "4.0.2",
|
|
30
|
+
"@remotion/renderer": "4.0.2",
|
|
31
|
+
"remotion": "4.0.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jonny/eslint-config": "3.0.266",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"typescript": "4.9.5",
|
|
44
44
|
"vitest": "0.31.1",
|
|
45
45
|
"zip-lib": "^0.7.2",
|
|
46
|
-
"@remotion/bundler": "4.0.
|
|
47
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
46
|
+
"@remotion/bundler": "4.0.2",
|
|
47
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.2"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@remotion/bundler": "4.0.
|
|
50
|
+
"@remotion/bundler": "4.0.2"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|