@remotion/lambda 3.0.0-lambda.310 → 3.0.0-lambda.335
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/admin/make-layer-public.js +65 -48
- package/dist/admin/make-layer-public.js.map +1 -1
- package/dist/api/create-function.d.ts +3 -1
- package/dist/api/create-function.d.ts.map +1 -1
- package/dist/api/create-function.js +3 -3
- package/dist/api/create-function.js.map +1 -1
- package/dist/api/deploy-function.d.ts +3 -0
- package/dist/api/deploy-function.d.ts.map +1 -1
- package/dist/api/deploy-function.js +4 -0
- package/dist/api/deploy-function.js.map +1 -1
- package/dist/api/download-media.d.ts.map +1 -1
- package/dist/api/download-media.js +4 -15
- package/dist/api/download-media.js.map +1 -1
- package/dist/api/render-media-on-lambda.d.ts +4 -3
- package/dist/api/render-media-on-lambda.d.ts.map +1 -1
- package/dist/api/render-media-on-lambda.js +6 -1
- package/dist/api/render-media-on-lambda.js.map +1 -1
- package/dist/api/render-still-on-lambda.d.ts +3 -2
- package/dist/api/render-still-on-lambda.d.ts.map +1 -1
- package/dist/api/render-still-on-lambda.js +4 -1
- package/dist/api/render-still-on-lambda.js.map +1 -1
- package/dist/cli/args.d.ts +2 -0
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/commands/functions/deploy.d.ts.map +1 -1
- package/dist/cli/commands/functions/deploy.js +7 -2
- package/dist/cli/commands/functions/deploy.js.map +1 -1
- package/dist/cli/commands/render/render.d.ts.map +1 -1
- package/dist/cli/commands/render/render.js +2 -1
- package/dist/cli/commands/render/render.js.map +1 -1
- package/dist/cli/commands/still.d.ts.map +1 -1
- package/dist/cli/commands/still.js +2 -1
- package/dist/cli/commands/still.js.map +1 -1
- package/dist/functions/helpers/concat-videos.d.ts.map +1 -1
- package/dist/functions/helpers/concat-videos.js +4 -2
- package/dist/functions/helpers/concat-videos.js.map +1 -1
- package/dist/functions/helpers/get-browser-instance.d.ts +1 -2
- package/dist/functions/helpers/get-browser-instance.d.ts.map +1 -1
- package/dist/functions/helpers/get-browser-instance.js.map +1 -1
- package/dist/functions/helpers/get-chromium-executable-path.d.ts +1 -1
- package/dist/functions/helpers/get-chromium-executable-path.d.ts.map +1 -1
- package/dist/functions/helpers/get-chromium-executable-path.js.map +1 -1
- package/dist/functions/helpers/read-with-progress.d.ts +5 -3
- package/dist/functions/helpers/read-with-progress.d.ts.map +1 -1
- package/dist/functions/helpers/read-with-progress.js +4 -12
- package/dist/functions/helpers/read-with-progress.js.map +1 -1
- package/dist/functions/launch.d.ts.map +1 -1
- package/dist/functions/launch.js +1 -0
- package/dist/functions/launch.js.map +1 -1
- package/dist/functions/renderer.d.ts.map +1 -1
- package/dist/functions/renderer.js +11 -10
- package/dist/functions/renderer.js.map +1 -1
- package/dist/functions/start.d.ts.map +1 -1
- package/dist/functions/start.js +2 -3
- package/dist/functions/start.js.map +1 -1
- package/dist/functions/still.d.ts.map +1 -1
- package/dist/functions/still.js +5 -8
- package/dist/functions/still.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/shared/constants.d.ts +8 -7
- package/dist/shared/constants.d.ts.map +1 -1
- package/dist/shared/constants.js +3 -7
- package/dist/shared/constants.js.map +1 -1
- package/dist/shared/hosted-layers.d.ts +9 -5
- package/dist/shared/hosted-layers.d.ts.map +1 -1
- package/dist/shared/hosted-layers.js +284 -140
- package/dist/shared/hosted-layers.js.map +1 -1
- package/dist/shared/random-hash.d.ts +3 -1
- package/dist/shared/random-hash.d.ts.map +1 -1
- package/dist/shared/random-hash.js +2 -1
- package/dist/shared/random-hash.js.map +1 -1
- package/dist/shared/validate-architecture.d.ts +5 -0
- package/dist/shared/validate-architecture.d.ts.map +1 -0
- package/dist/shared/validate-architecture.js +15 -0
- package/dist/shared/validate-architecture.js.map +1 -0
- package/dist/shared/validate-serveurl.d.ts +2 -0
- package/dist/shared/validate-serveurl.d.ts.map +1 -0
- package/dist/shared/validate-serveurl.js +10 -0
- package/dist/shared/validate-serveurl.js.map +1 -0
- package/package.json +8 -7
- package/remotionlambda.zip +0 -0
- package/dist/functions/helpers/presign-url.d.ts +0 -2
- package/dist/functions/helpers/presign-url.d.ts.map +0 -1
- package/dist/functions/helpers/presign-url.js +0 -9
- package/dist/functions/helpers/presign-url.js.map +0 -1
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { ChromiumOptions } from '@remotion/renderer
|
|
1
|
+
import { ChromiumOptions } from '@remotion/renderer';
|
|
2
2
|
import { Codec, FrameRange, ImageFormat, LogLevel, PixelFormat, ProResProfile, VideoConfig } from 'remotion';
|
|
3
3
|
import { ChunkRetry } from '../functions/helpers/get-retry-stats';
|
|
4
4
|
import { EnhancedErrorInfo } from '../functions/helpers/write-lambda-error';
|
|
5
5
|
import { AwsRegion } from '../pricing/aws-regions';
|
|
6
|
+
import { LambdaArchitecture } from './validate-architecture';
|
|
6
7
|
export declare const MAX_VIDEO_LENGTH = 18000;
|
|
7
8
|
export declare const MIN_MEMORY = 512;
|
|
8
9
|
export declare const MAX_MEMORY = 10240;
|
|
9
10
|
export declare const DEFAULT_MEMORY_SIZE = 2048;
|
|
11
|
+
export declare const DEFAULT_ARCHITECTURE: LambdaArchitecture;
|
|
10
12
|
export declare const DEFAULT_TIMEOUT = 120;
|
|
11
13
|
export declare const MIN_TIMEOUT = 15;
|
|
12
14
|
export declare const MAX_TIMEOUT = 900;
|
|
@@ -57,15 +59,10 @@ export declare const outName: (renderId: string, extension: string) => string;
|
|
|
57
59
|
export declare const outStillName: (renderId: string, imageFormat: ImageFormat) => string;
|
|
58
60
|
export declare const customOutName: (renderId: string, name: string) => string;
|
|
59
61
|
export declare const postRenderDataKey: (renderId: string) => string;
|
|
60
|
-
export declare const OUTPUT_PATH_PREFIX = "/tmp/remotion-render-";
|
|
61
62
|
export declare const RENDERER_PATH_TOKEN = "remotion-bucket";
|
|
62
|
-
export declare const RENDERER_PATH_PREFIX: string;
|
|
63
63
|
export declare const CONCAT_FOLDER_TOKEN = "remotion-concat";
|
|
64
|
-
export declare const CONCAT_TMPDIR: string;
|
|
65
64
|
export declare const REMOTION_CONCATED_TOKEN = "remotion-concated-token";
|
|
66
|
-
export declare const REMOTION_CONCATED_TMP_PREFIX: string;
|
|
67
65
|
export declare const REMOTION_FILELIST_TOKEN = "remotion-filelist";
|
|
68
|
-
export declare const REMOTION_FILELIST_TMP_PREFIX: string;
|
|
69
66
|
export declare enum LambdaRoutines {
|
|
70
67
|
info = "info",
|
|
71
68
|
start = "start",
|
|
@@ -100,6 +97,7 @@ export declare type LambdaPayloads = {
|
|
|
100
97
|
outName: string | null;
|
|
101
98
|
timeoutInMilliseconds: number;
|
|
102
99
|
chromiumOptions: ChromiumOptions;
|
|
100
|
+
scale: number;
|
|
103
101
|
};
|
|
104
102
|
launch: {
|
|
105
103
|
type: LambdaRoutines.launch;
|
|
@@ -124,6 +122,7 @@ export declare type LambdaPayloads = {
|
|
|
124
122
|
outName: string | null;
|
|
125
123
|
timeoutInMilliseconds: number;
|
|
126
124
|
chromiumOptions: ChromiumOptions;
|
|
125
|
+
scale: number;
|
|
127
126
|
};
|
|
128
127
|
fire: {
|
|
129
128
|
type: LambdaRoutines.fire;
|
|
@@ -161,6 +160,7 @@ export declare type LambdaPayloads = {
|
|
|
161
160
|
logLevel: LogLevel;
|
|
162
161
|
timeoutInMilliseconds: number;
|
|
163
162
|
chromiumOptions: ChromiumOptions;
|
|
163
|
+
scale: number;
|
|
164
164
|
};
|
|
165
165
|
still: {
|
|
166
166
|
type: LambdaRoutines.still;
|
|
@@ -178,6 +178,7 @@ export declare type LambdaPayloads = {
|
|
|
178
178
|
outName: string | null;
|
|
179
179
|
timeoutInMilliseconds: number;
|
|
180
180
|
chromiumOptions: ChromiumOptions;
|
|
181
|
+
scale: number;
|
|
181
182
|
};
|
|
182
183
|
};
|
|
183
184
|
export declare type LambdaPayload = LambdaPayloads[LambdaRoutines];
|
|
@@ -207,7 +208,7 @@ export declare type RenderMetadata = {
|
|
|
207
208
|
renderId: string;
|
|
208
209
|
outName: string | undefined;
|
|
209
210
|
};
|
|
210
|
-
export declare type LambdaVersions = '2022-01-23' | '2022-01-19' | '2022-01-11' | '2022-01-10' | '2022-01-09' | '2022-01-06' | '2022-01-05' | '2021-12-22' | '2021-12-17' | '2021-12-16' | '2021-12-15' | '2021-12-14' | '2021-12-13' | '2021-12-11' | '2021-12-10' | '2021-12-04' | '2021-11-29' | '2021-11-27' | '2021-11-24' | '2021-11-22' | '2021-11-19' | '2021-11-18' | '2021-11-15' | '2021-11-12' | '2021-11-10' | '2021-11-01' | '2021-10-29' | '2021-10-27' | '2021-10-21' | '2021-10-19' | '2021-10-07' | '2021-10-03' | '2021-10-01' | '2021-09-15' | '2021-09-06' | '2021-08-06' | '2021-07-14' | '2021-07-05' | '2021-07-02' | '2021-06-23' | 'n/a';
|
|
211
|
+
export declare type LambdaVersions = '2022-02-07' | '2022-02-06' | '2022-02-05' | '2022-02-04' | '2022-02-03' | '2022-01-23' | '2022-01-19' | '2022-01-11' | '2022-01-10' | '2022-01-09' | '2022-01-06' | '2022-01-05' | '2021-12-22' | '2021-12-17' | '2021-12-16' | '2021-12-15' | '2021-12-14' | '2021-12-13' | '2021-12-11' | '2021-12-10' | '2021-12-04' | '2021-11-29' | '2021-11-27' | '2021-11-24' | '2021-11-22' | '2021-11-19' | '2021-11-18' | '2021-11-15' | '2021-11-12' | '2021-11-10' | '2021-11-01' | '2021-10-29' | '2021-10-27' | '2021-10-21' | '2021-10-19' | '2021-10-07' | '2021-10-03' | '2021-10-01' | '2021-09-15' | '2021-09-06' | '2021-08-06' | '2021-07-14' | '2021-07-05' | '2021-07-02' | '2021-06-23' | 'n/a';
|
|
211
212
|
export declare const CURRENT_VERSION: LambdaVersions;
|
|
212
213
|
export declare type PostRenderData = {
|
|
213
214
|
cost: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"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"}
|
package/dist/shared/constants.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CURRENT_VERSION = exports.LambdaRoutines = exports.
|
|
3
|
+
exports.CURRENT_VERSION = exports.LambdaRoutines = exports.REMOTION_FILELIST_TOKEN = exports.REMOTION_CONCATED_TOKEN = exports.CONCAT_FOLDER_TOKEN = exports.RENDERER_PATH_TOKEN = exports.postRenderDataKey = exports.customOutName = exports.outStillName = exports.outName = exports.getSitesKey = exports.optimizationProfile = exports.getErrorFileName = exports.getErrorKeyPrefix = exports.chunkKeyForIndex = exports.chunkKey = exports.lambdaTimingsKey = exports.lambdaLogsPrefix = exports.lambdaTimingsPrefixForChunk = exports.lambdaTimingsPrefix = exports.lambdaInitializedKey = exports.lambdaInitializedPrefix = exports.renderMetadataKey = exports.encodingProgressKey = exports.rendersPrefix = exports.LOG_GROUP_PREFIX = exports.RENDER_FN_PREFIX = exports.REMOTION_BUCKET_PREFIX = exports.DEFAULT_CLOUDWATCH_RETENTION_PERIOD = exports.DEFAULT_OUTPUT_PRIVACY = exports.MAX_FUNCTIONS_PER_RENDER = exports.DEFAULT_MAX_RETRIES = exports.DEFAULT_REGION = exports.COMMAND_NOT_FOUND = exports.BINARY_NAME = exports.DEFAULT_FRAMES_PER_LAMBDA = exports.MINIMUM_FRAMES_PER_LAMBDA = exports.MAX_TIMEOUT = exports.MIN_TIMEOUT = exports.DEFAULT_TIMEOUT = exports.DEFAULT_ARCHITECTURE = exports.DEFAULT_MEMORY_SIZE = exports.MAX_MEMORY = exports.MIN_MEMORY = exports.MAX_VIDEO_LENGTH = void 0;
|
|
4
4
|
// 10 minutes at 30fps
|
|
5
5
|
exports.MAX_VIDEO_LENGTH = 18000;
|
|
6
6
|
exports.MIN_MEMORY = 512;
|
|
7
7
|
exports.MAX_MEMORY = 10240;
|
|
8
8
|
exports.DEFAULT_MEMORY_SIZE = 2048;
|
|
9
|
+
exports.DEFAULT_ARCHITECTURE = 'arm64';
|
|
9
10
|
exports.DEFAULT_TIMEOUT = 120;
|
|
10
11
|
exports.MIN_TIMEOUT = 15;
|
|
11
12
|
exports.MAX_TIMEOUT = 900;
|
|
@@ -61,15 +62,10 @@ const postRenderDataKey = (renderId) => {
|
|
|
61
62
|
return `${(0, exports.rendersPrefix)(renderId)}/post-render-metadata.json`;
|
|
62
63
|
};
|
|
63
64
|
exports.postRenderDataKey = postRenderDataKey;
|
|
64
|
-
exports.OUTPUT_PATH_PREFIX = '/tmp/remotion-render-';
|
|
65
65
|
exports.RENDERER_PATH_TOKEN = 'remotion-bucket';
|
|
66
|
-
exports.RENDERER_PATH_PREFIX = '/tmp/' + exports.RENDERER_PATH_TOKEN;
|
|
67
66
|
exports.CONCAT_FOLDER_TOKEN = 'remotion-concat';
|
|
68
|
-
exports.CONCAT_TMPDIR = '/tmp/' + exports.CONCAT_FOLDER_TOKEN;
|
|
69
67
|
exports.REMOTION_CONCATED_TOKEN = 'remotion-concated-token';
|
|
70
|
-
exports.REMOTION_CONCATED_TMP_PREFIX = '/tmp/' + exports.REMOTION_CONCATED_TOKEN;
|
|
71
68
|
exports.REMOTION_FILELIST_TOKEN = 'remotion-filelist';
|
|
72
|
-
exports.REMOTION_FILELIST_TMP_PREFIX = '/tmp' + exports.REMOTION_FILELIST_TOKEN;
|
|
73
69
|
var LambdaRoutines;
|
|
74
70
|
(function (LambdaRoutines) {
|
|
75
71
|
LambdaRoutines["info"] = "info";
|
|
@@ -80,5 +76,5 @@ var LambdaRoutines;
|
|
|
80
76
|
LambdaRoutines["renderer"] = "renderer";
|
|
81
77
|
LambdaRoutines["still"] = "still";
|
|
82
78
|
})(LambdaRoutines = exports.LambdaRoutines || (exports.LambdaRoutines = {}));
|
|
83
|
-
exports.CURRENT_VERSION = '2022-
|
|
79
|
+
exports.CURRENT_VERSION = '2022-02-07';
|
|
84
80
|
//# sourceMappingURL=constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { AwsRegion } from '../pricing/aws-regions';
|
|
2
|
+
import { LambdaArchitecture } from './validate-architecture';
|
|
2
3
|
export declare const REMOTION_HOSTED_LAYER_ARN = "arn:aws:lambda:*:678892195805:layer:remotion-binaries-*";
|
|
3
|
-
export declare
|
|
4
|
-
[
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
export declare type HostedLayers = {
|
|
5
|
+
[architecture in LambdaArchitecture]: {
|
|
6
|
+
[region in AwsRegion]: {
|
|
7
|
+
layerArn: string;
|
|
8
|
+
version: number;
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
8
11
|
};
|
|
12
|
+
export declare const hostedLayers: HostedLayers;
|
|
9
13
|
//# sourceMappingURL=hosted-layers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hosted-layers.d.ts","sourceRoot":"","sources":["../../src/shared/hosted-layers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"hosted-layers.d.ts","sourceRoot":"","sources":["../../src/shared/hosted-layers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAC,kBAAkB,EAAC,MAAM,yBAAyB,CAAC;AAE3D,eAAO,MAAM,yBAAyB,4DAA4D,CAAC;AAEnG,oBAAY,YAAY,GAAG;KACzB,YAAY,IAAI,kBAAkB,GAAG;SACpC,MAAM,IAAI,SAAS,GAAG;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAC,EAAE;KAC5D;CACD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,YAyV1B,CAAC"}
|
|
@@ -3,145 +3,289 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.hostedLayers = exports.REMOTION_HOSTED_LAYER_ARN = void 0;
|
|
4
4
|
exports.REMOTION_HOSTED_LAYER_ARN = `arn:aws:lambda:*:678892195805:layer:remotion-binaries-*`;
|
|
5
5
|
exports.hostedLayers = {
|
|
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
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
6
|
+
arm64: {
|
|
7
|
+
'ap-northeast-1': [
|
|
8
|
+
{
|
|
9
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
10
|
+
version: 1,
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
14
|
+
version: 1,
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
18
|
+
version: 1,
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
'ap-south-1': [
|
|
22
|
+
{
|
|
23
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
24
|
+
version: 1,
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
28
|
+
version: 1,
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
32
|
+
version: 1,
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
'ap-southeast-1': [
|
|
36
|
+
{
|
|
37
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
38
|
+
version: 1,
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
42
|
+
version: 1,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
46
|
+
version: 1,
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
'ap-southeast-2': [
|
|
50
|
+
{
|
|
51
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
52
|
+
version: 1,
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
56
|
+
version: 1,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
60
|
+
version: 1,
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
'eu-central-1': [
|
|
64
|
+
{
|
|
65
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
66
|
+
version: 1,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
70
|
+
version: 1,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
74
|
+
version: 1,
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
'eu-west-1': [
|
|
78
|
+
{
|
|
79
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
80
|
+
version: 1,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
84
|
+
version: 1,
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
88
|
+
version: 1,
|
|
89
|
+
},
|
|
90
|
+
],
|
|
91
|
+
'eu-west-2': [
|
|
92
|
+
{
|
|
93
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
94
|
+
version: 1,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
98
|
+
version: 1,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
102
|
+
version: 1,
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
'us-east-1': [
|
|
106
|
+
{
|
|
107
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
108
|
+
version: 5,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
112
|
+
version: 5,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
116
|
+
version: 5,
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
'us-east-2': [
|
|
120
|
+
{
|
|
121
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
122
|
+
version: 1,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
126
|
+
version: 1,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
130
|
+
version: 1,
|
|
131
|
+
},
|
|
132
|
+
],
|
|
133
|
+
'us-west-2': [
|
|
134
|
+
{
|
|
135
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-remotion-arm64',
|
|
136
|
+
version: 1,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-ffmpeg-arm64',
|
|
140
|
+
version: 1,
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
|
|
144
|
+
version: 1,
|
|
145
|
+
},
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
x86_64: {
|
|
149
|
+
'ap-northeast-1': [
|
|
150
|
+
{
|
|
151
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
152
|
+
version: 1,
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
156
|
+
version: 1,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
160
|
+
version: 1,
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
'ap-south-1': [
|
|
164
|
+
{
|
|
165
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
166
|
+
version: 1,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
170
|
+
version: 1,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
174
|
+
version: 1,
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
'ap-southeast-1': [
|
|
178
|
+
{
|
|
179
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
180
|
+
version: 1,
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
184
|
+
version: 1,
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
188
|
+
version: 1,
|
|
189
|
+
},
|
|
190
|
+
],
|
|
191
|
+
'ap-southeast-2': [
|
|
192
|
+
{
|
|
193
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
194
|
+
version: 1,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
198
|
+
version: 1,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
202
|
+
version: 1,
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
'eu-central-1': [
|
|
206
|
+
{
|
|
207
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
208
|
+
version: 1,
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
212
|
+
version: 1,
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
216
|
+
version: 1,
|
|
217
|
+
},
|
|
218
|
+
],
|
|
219
|
+
'eu-west-1': [
|
|
220
|
+
{
|
|
221
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
222
|
+
version: 1,
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
226
|
+
version: 1,
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
230
|
+
version: 1,
|
|
231
|
+
},
|
|
232
|
+
],
|
|
233
|
+
'eu-west-2': [
|
|
234
|
+
{
|
|
235
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
236
|
+
version: 1,
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
240
|
+
version: 1,
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
244
|
+
version: 1,
|
|
245
|
+
},
|
|
246
|
+
],
|
|
247
|
+
'us-east-1': [
|
|
248
|
+
{
|
|
249
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
250
|
+
version: 5,
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
254
|
+
version: 5,
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
258
|
+
version: 5,
|
|
259
|
+
},
|
|
260
|
+
],
|
|
261
|
+
'us-east-2': [
|
|
262
|
+
{
|
|
263
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
264
|
+
version: 1,
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
268
|
+
version: 1,
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
272
|
+
version: 1,
|
|
273
|
+
},
|
|
274
|
+
],
|
|
275
|
+
'us-west-2': [
|
|
276
|
+
{
|
|
277
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-remotion-x86_64',
|
|
278
|
+
version: 1,
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-ffmpeg-x86_64',
|
|
282
|
+
version: 1,
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-chromium-x86_64',
|
|
286
|
+
version: 1,
|
|
287
|
+
},
|
|
288
|
+
],
|
|
289
|
+
},
|
|
146
290
|
};
|
|
147
291
|
//# sourceMappingURL=hosted-layers.js.map
|