@remotion/lambda 4.0.357 → 4.0.358
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 +6 -5
- package/dist/test/mock-implementation.d.ts +7 -0
- package/package.json +94 -92
- package/remotionlambda-arm64.zip +0 -0
- package/LICENSE.md +0 -49
package/dist/esm/index.mjs
CHANGED
|
@@ -18,7 +18,7 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
18
18
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
19
19
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
20
20
|
|
|
21
|
-
// ../../node_modules/.
|
|
21
|
+
// ../../node_modules/.bun/mime-db@1.51.0/node_modules/mime-db/db.json
|
|
22
22
|
var require_db = __commonJS((exports, module) => {
|
|
23
23
|
module.exports = {
|
|
24
24
|
"application/1d-interleaved-parityfec": {
|
|
@@ -8493,7 +8493,7 @@ var require_db = __commonJS((exports, module) => {
|
|
|
8493
8493
|
};
|
|
8494
8494
|
});
|
|
8495
8495
|
|
|
8496
|
-
// ../../node_modules/.
|
|
8496
|
+
// ../../node_modules/.bun/mime-db@1.51.0/node_modules/mime-db/index.js
|
|
8497
8497
|
var require_mime_db = __commonJS((exports, module) => {
|
|
8498
8498
|
/*!
|
|
8499
8499
|
* mime-db
|
|
@@ -8503,7 +8503,7 @@ var require_mime_db = __commonJS((exports, module) => {
|
|
|
8503
8503
|
module.exports = require_db();
|
|
8504
8504
|
});
|
|
8505
8505
|
|
|
8506
|
-
// ../../node_modules/.
|
|
8506
|
+
// ../../node_modules/.bun/mime-types@2.1.34/node_modules/mime-types/index.js
|
|
8507
8507
|
var require_mime_types = __commonJS((exports) => {
|
|
8508
8508
|
/*!
|
|
8509
8509
|
* mime-types
|
|
@@ -8604,7 +8604,7 @@ var require_package = __commonJS((exports, module) => {
|
|
|
8604
8604
|
url: "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
8605
8605
|
},
|
|
8606
8606
|
name: "@remotion/lambda",
|
|
8607
|
-
version: "4.0.
|
|
8607
|
+
version: "4.0.358",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
sideEffects: false,
|
|
@@ -8652,7 +8652,8 @@ var require_package = __commonJS((exports, module) => {
|
|
|
8652
8652
|
eslint: "9.19.0",
|
|
8653
8653
|
next: "15.4.7",
|
|
8654
8654
|
pureimage: "0.4.13",
|
|
8655
|
-
"zip-lib": "^0.7.2"
|
|
8655
|
+
"zip-lib": "^0.7.2",
|
|
8656
|
+
"@types/node": "20.12.14"
|
|
8656
8657
|
},
|
|
8657
8658
|
peerDependencies: {
|
|
8658
8659
|
"@remotion/bundler": "workspace:*"
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { AwsProvider } from '@remotion/lambda-client';
|
|
2
|
+
import type { FullClientSpecifics, GetBrowserInstance, InsideFunctionSpecifics, InvokeWebhookParams } from '@remotion/serverless';
|
|
3
|
+
export declare const getBrowserInstance: GetBrowserInstance;
|
|
4
|
+
export declare const mockServerImplementation: InsideFunctionSpecifics<AwsProvider>;
|
|
5
|
+
export declare const resetWebhookCalls: () => void;
|
|
6
|
+
export declare const getWebhookCalls: () => InvokeWebhookParams[];
|
|
7
|
+
export declare const mockFullClientSpecifics: FullClientSpecifics<AwsProvider>;
|
package/package.json
CHANGED
|
@@ -1,93 +1,95 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
4
|
+
},
|
|
5
|
+
"name": "@remotion/lambda",
|
|
6
|
+
"version": "4.0.358",
|
|
7
|
+
"description": "Render Remotion videos on AWS Lambda",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"scripts": {
|
|
11
|
+
"formatting": "prettier --experimental-cli src --check",
|
|
12
|
+
"lint": "eslint src",
|
|
13
|
+
"testlambda": "exit 0",
|
|
14
|
+
"test": "bun test src/test/unit",
|
|
15
|
+
"make": "tsc -d && bun --env-file=../.env.bundle bundle.ts",
|
|
16
|
+
"makeruntime": "bun build.ts",
|
|
17
|
+
"prepublishOnly": "bun build.ts && bun ensure-version-match.js"
|
|
18
|
+
},
|
|
19
|
+
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@aws-sdk/s3-request-presigner": "3.787.0",
|
|
23
|
+
"@aws-sdk/middleware-flexible-checksums": "3.787.0",
|
|
24
|
+
"@aws-sdk/client-lambda": "3.787.0",
|
|
25
|
+
"@aws-sdk/client-s3": "3.787.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.787.0",
|
|
27
|
+
"@aws-sdk/client-iam": "3.787.0",
|
|
28
|
+
"@aws-sdk/client-cloudwatch-logs": "3.787.0",
|
|
29
|
+
"@aws-sdk/client-service-quotas": "3.787.0",
|
|
30
|
+
"@aws-sdk/lib-storage": "3.787.0",
|
|
31
|
+
"@remotion/bundler": "4.0.357",
|
|
32
|
+
"@remotion/cli": "4.0.357",
|
|
33
|
+
"@remotion/lambda-client": "4.0.357",
|
|
34
|
+
"@remotion/renderer": "4.0.357",
|
|
35
|
+
"@remotion/serverless": "4.0.357",
|
|
36
|
+
"@remotion/streaming": "4.0.357",
|
|
37
|
+
"@smithy/abort-controller": "4.0.1",
|
|
38
|
+
"remotion": "4.0.357",
|
|
39
|
+
"zod": "3.22.3"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@remotion/bundler": "4.0.357",
|
|
43
|
+
"@types/express": "^5.0.0",
|
|
44
|
+
"express": "4.21.0",
|
|
45
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.357",
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.357",
|
|
47
|
+
"mime-types": "2.1.34",
|
|
48
|
+
"@types/mime-types": "2.1.1",
|
|
49
|
+
"@types/minimist": "1.2.2",
|
|
50
|
+
"@types/prompt": "^1.1.0",
|
|
51
|
+
"eslint": "9.19.0",
|
|
52
|
+
"next": "15.4.7",
|
|
53
|
+
"pureimage": "0.4.13",
|
|
54
|
+
"zip-lib": "^0.7.2",
|
|
55
|
+
"@types/node": "20.12.14"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@remotion/bundler": "4.0.357"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
62
|
+
},
|
|
63
|
+
"exports": {
|
|
64
|
+
"./package.json": "./package.json",
|
|
65
|
+
".": {
|
|
66
|
+
"types": "./dist/index.d.ts",
|
|
67
|
+
"require": "./dist/index.js",
|
|
68
|
+
"module": "./dist/esm/index.mjs",
|
|
69
|
+
"import": "./dist/esm/index.mjs"
|
|
70
|
+
},
|
|
71
|
+
"./client": {
|
|
72
|
+
"types": "./dist/client.d.ts",
|
|
73
|
+
"require": "./dist/client.js",
|
|
74
|
+
"module": "./dist/esm/client.mjs",
|
|
75
|
+
"import": "./dist/esm/client.mjs"
|
|
76
|
+
},
|
|
77
|
+
"./policies": {
|
|
78
|
+
"types": "./dist/policies.d.ts",
|
|
79
|
+
"require": "./dist/policies.js",
|
|
80
|
+
"module": "./dist/esm/policies.mjs",
|
|
81
|
+
"import": "./dist/esm/policies.mjs"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"typesVersions": {
|
|
85
|
+
">=1.0": {
|
|
86
|
+
"client": [
|
|
87
|
+
"./dist/client.d.ts"
|
|
88
|
+
],
|
|
89
|
+
"policies": [
|
|
90
|
+
"./dist/policies.d.ts"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"homepage": "https://www.remotion.dev/docs/lambda"
|
|
95
|
+
}
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|
package/LICENSE.md
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Remotion License
|
|
2
|
-
|
|
3
|
-
In Remotion 5.0, the license will slightly change. [View the changes here](https://github.com/remotion-dev/remotion/pull/3750).
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Depending on the type of your legal entity, you are granted permission to use Remotion for your project. Individuals and small companies are allowed to use Remotion to create videos for free (even commercial), while a company license is required for for-profit organizations of a certain size. This two-tier system was designed to ensure funding for this project while still allowing the source code to be available and the program to be free for most. Read below for the exact terms of use.
|
|
8
|
-
|
|
9
|
-
- [Free License](#free-license)
|
|
10
|
-
- [Company License](#company-license)
|
|
11
|
-
|
|
12
|
-
## Free License
|
|
13
|
-
|
|
14
|
-
Copyright © 2025 [Remotion](https://www.remotion.dev)
|
|
15
|
-
|
|
16
|
-
### Eligibility
|
|
17
|
-
|
|
18
|
-
You are eligible to use Remotion for free if you are:
|
|
19
|
-
|
|
20
|
-
- an individual
|
|
21
|
-
- a for-profit organization with up to 3 employees
|
|
22
|
-
- a non-profit or not-for-profit organization
|
|
23
|
-
- evaluating whether Remotion is a good fit, and are not yet using it in a commercial way
|
|
24
|
-
|
|
25
|
-
### Allowed use cases
|
|
26
|
-
|
|
27
|
-
Permission is hereby granted, free of charge, to any person eligible for the "Free License", to use the software non-commercially or commercially for the purpose of creating videos and images and to modify the software to their own liking, for the purpose of fulfilling their custom use case or to contribute bug fixes or improvements back to Remotion.
|
|
28
|
-
|
|
29
|
-
### Disallowed use cases
|
|
30
|
-
|
|
31
|
-
It is not allowed to copy or modify Remotion code for the purpose of selling, renting, licensing, relicensing, or sublicensing your own derivate of Remotion.
|
|
32
|
-
|
|
33
|
-
### Warranty notice
|
|
34
|
-
|
|
35
|
-
The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the author or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
|
|
36
|
-
|
|
37
|
-
### Support
|
|
38
|
-
|
|
39
|
-
Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
|
|
40
|
-
|
|
41
|
-
## Company License
|
|
42
|
-
|
|
43
|
-
You are required to obtain a Company License to use Remotion if you are not within the group of entities eligible for a Free License. This license will enable you to use Remotion for the allowed use cases specified in the Free License, and give you access to prioritized support (read the [Support Policy](https://www.remotion.dev/docs/support)).
|
|
44
|
-
|
|
45
|
-
Visit [remotion.pro](https://www.remotion.pro/license) for pricing and to buy a license.
|
|
46
|
-
|
|
47
|
-
### FAQs
|
|
48
|
-
|
|
49
|
-
Are you not sure whether you need a Company License because of an edge case? Here are some [frequently asked questions](https://www.remotion.pro/faq).
|