@remotion/lambda 4.0.204 → 4.0.205

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.
@@ -31,23 +31,37 @@ const layerInfo = {
31
31
  const V5_RUNTIME = true;
32
32
  const makeLayerPublic = async () => {
33
33
  const runtimes = [V5_RUNTIME ? 'nodejs20.x' : 'nodejs18.x'];
34
- const layers = ['fonts', 'chromium'];
34
+ const layers = [
35
+ 'fonts',
36
+ 'chromium',
37
+ 'emoji-apple',
38
+ 'emoji-google',
39
+ 'cjk',
40
+ ];
35
41
  for (const region of (0, get_regions_1.getRegions)()) {
36
42
  for (const layer of layers) {
37
43
  const layerName = `remotion-binaries-${layer}-arm64`;
38
44
  const { Version, LayerArn } = await (0, aws_clients_1.getLambdaClient)(region).send(new client_lambda_1.PublishLayerVersionCommand({
39
45
  Content: {
40
46
  S3Bucket: 'remotionlambda-binaries-' + region,
41
- S3Key: V5_RUNTIME
42
- ? `remotion-layer-${layer}-v11-arm64.zip`
43
- : `remotion-layer-${layer}-v10-arm64.zip`,
47
+ S3Key: layer === 'emoji-apple'
48
+ ? 'remotion-layer-emoji-v1-arm64.zip'
49
+ : V5_RUNTIME
50
+ ? `remotion-layer-${layer}-v11-arm64.zip`
51
+ : `remotion-layer-${layer}-v10-arm64.zip`,
44
52
  },
45
53
  LayerName: layerName,
46
54
  LicenseInfo: layer === 'chromium'
47
55
  ? V5_RUNTIME
48
56
  ? 'Chromium 123.0.6312.86, compiled from source. Read Chromium License: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/LICENSE'
49
57
  : 'Chromium 114, compiled from source. Read Chromium License: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/LICENSE'
50
- : 'Contains Noto Sans font. Read Noto Sans License: https://fonts.google.com/noto/specimen/Noto+Sans/about',
58
+ : layer === 'emoji-apple'
59
+ ? 'Apple Emojis (https://github.com/samuelngs/apple-emoji-linux). For educational purposes only - Apple is a trademark of Apple Inc., registered in the U.S. and other countries.'
60
+ : layer === 'emoji-google'
61
+ ? 'Google Emojis (https://github.com/googlefonts/noto-emoji)'
62
+ : layer === 'cjk'
63
+ ? 'Noto Sans (Chinese, Japanese, Korean)'
64
+ : 'Contains Noto Sans font. Read Noto Sans License: https://fonts.google.com/noto/specimen/Noto+Sans/about',
51
65
  CompatibleRuntimes: runtimes,
52
66
  Description: version_1.VERSION,
53
67
  }));
@@ -1,6 +1,7 @@
1
1
  import type { LogLevel } from '@remotion/renderer';
2
2
  import type { AwsRegion } from '../regions';
3
- export declare const createFunction: ({ createCloudWatchLogGroup, region, zipFile, functionName, accountId, memorySizeInMb, timeoutInSeconds, alreadyCreated, retentionInDays, ephemerealStorageInMb, customRoleArn, enableLambdaInsights, enableV5Runtime, logLevel, vpcSubnetIds, vpcSecurityGroupIds, }: {
3
+ import type { RuntimePreference } from '../shared/get-layers';
4
+ export declare const createFunction: ({ createCloudWatchLogGroup, region, zipFile, functionName, accountId, memorySizeInMb, timeoutInSeconds, alreadyCreated, retentionInDays, ephemerealStorageInMb, customRoleArn, enableLambdaInsights, enableV5Runtime, logLevel, vpcSubnetIds, vpcSecurityGroupIds, runtimePreference, }: {
4
5
  createCloudWatchLogGroup: boolean;
5
6
  region: AwsRegion;
6
7
  zipFile: string;
@@ -17,6 +18,7 @@ export declare const createFunction: ({ createCloudWatchLogGroup, region, zipFil
17
18
  logLevel: LogLevel;
18
19
  vpcSubnetIds: string;
19
20
  vpcSecurityGroupIds: string;
21
+ runtimePreference: RuntimePreference;
20
22
  }) => Promise<{
21
23
  FunctionName: string;
22
24
  }>;
@@ -8,10 +8,10 @@ const node_fs_1 = require("node:fs");
8
8
  const version_1 = require("remotion/version");
9
9
  const defaults_1 = require("../defaults");
10
10
  const aws_clients_1 = require("../shared/aws-clients");
11
- const hosted_layers_1 = require("../shared/hosted-layers");
11
+ const get_layers_1 = require("../shared/get-layers");
12
12
  const lambda_insights_extensions_1 = require("../shared/lambda-insights-extensions");
13
13
  const suggested_policy_1 = require("./iam-validation/suggested-policy");
14
- const createFunction = async ({ createCloudWatchLogGroup, region, zipFile, functionName, accountId, memorySizeInMb, timeoutInSeconds, alreadyCreated, retentionInDays, ephemerealStorageInMb, customRoleArn, enableLambdaInsights, enableV5Runtime, logLevel, vpcSubnetIds, vpcSecurityGroupIds, }) => {
14
+ const createFunction = async ({ createCloudWatchLogGroup, region, zipFile, functionName, accountId, memorySizeInMb, timeoutInSeconds, alreadyCreated, retentionInDays, ephemerealStorageInMb, customRoleArn, enableLambdaInsights, enableV5Runtime, logLevel, vpcSubnetIds, vpcSecurityGroupIds, runtimePreference, }) => {
15
15
  var _a;
16
16
  if (createCloudWatchLogGroup) {
17
17
  renderer_1.RenderInternals.Log.verbose({ indent: false, logLevel }, 'Creating CloudWatch group');
@@ -42,9 +42,11 @@ const createFunction = async ({ createCloudWatchLogGroup, region, zipFile, funct
42
42
  return { FunctionName: functionName };
43
43
  }
44
44
  const defaultRoleName = `arn:aws:iam::${accountId}:role/${suggested_policy_1.ROLE_NAME}`;
45
- const layers = enableV5Runtime
46
- ? hosted_layers_1.v5HostedLayers[region]
47
- : hosted_layers_1.hostedLayers[region];
45
+ const layers = (0, get_layers_1.getLayers)({
46
+ option: runtimePreference,
47
+ region,
48
+ enableV5Runtime,
49
+ });
48
50
  if (enableV5Runtime) {
49
51
  renderer_1.RenderInternals.Log.verbose({ indent: false, logLevel }, 'New V5 runtime enabled https://remotion.dev/docs/lambda/runtime#runtime-changes-in-remotion-50');
50
52
  }
@@ -1,5 +1,6 @@
1
1
  import type { LogLevel } from '@remotion/renderer';
2
2
  import type { AwsRegion } from '../regions';
3
+ import { type RuntimePreference } from '../shared/get-layers';
3
4
  type MandatoryParameters = {
4
5
  createCloudWatchLogGroup: boolean;
5
6
  cloudWatchLogRetentionPeriodInDays?: number;
@@ -16,6 +17,7 @@ type OptionalParameters = {
16
17
  enableV5Runtime: boolean;
17
18
  vpcSubnetIds: string | undefined;
18
19
  vpcSecurityGroupIds: string | undefined;
20
+ runtimePreference: RuntimePreference;
19
21
  };
20
22
  export type DeployFunctionInput = MandatoryParameters & Partial<OptionalParameters>;
21
23
  export type DeployFunctionOutput = {
@@ -35,5 +37,5 @@ export declare const internalDeployFunction: (params: MandatoryParameters & Opti
35
37
  * @param params.diskSizeInMb The amount of storage the function should be allocated. The higher, the longer videos you can render. Default 512.
36
38
  * @returns {Promise<DeployFunctionOutput>} An object that contains the `functionName` property
37
39
  */
38
- export declare const deployFunction: ({ createCloudWatchLogGroup, memorySizeInMb, region, timeoutInSeconds, cloudWatchLogRetentionPeriodInDays, customRoleArn, enableLambdaInsights, indent, logLevel, enableV5Runtime, vpcSubnetIds, vpcSecurityGroupIds, ...options }: DeployFunctionInput) => Promise<DeployFunctionOutput>;
40
+ export declare const deployFunction: ({ createCloudWatchLogGroup, memorySizeInMb, region, timeoutInSeconds, cloudWatchLogRetentionPeriodInDays, customRoleArn, enableLambdaInsights, indent, logLevel, enableV5Runtime, vpcSubnetIds, vpcSecurityGroupIds, runtimePreference, diskSizeInMb, }: DeployFunctionInput) => Promise<DeployFunctionOutput>;
39
41
  export {};
@@ -8,6 +8,7 @@ const get_functions_1 = require("../api/get-functions");
8
8
  const constants_1 = require("../shared/constants");
9
9
  const function_zip_path_1 = require("../shared/function-zip-path");
10
10
  const get_account_id_1 = require("../shared/get-account-id");
11
+ const get_layers_1 = require("../shared/get-layers");
11
12
  const lambda_version_string_1 = require("../shared/lambda-version-string");
12
13
  const validate_aws_region_1 = require("../shared/validate-aws-region");
13
14
  const validate_custom_role_arn_1 = require("../shared/validate-custom-role-arn");
@@ -24,6 +25,7 @@ const internalDeployFunction = async (params) => {
24
25
  (0, validate_retention_period_1.validateCloudWatchRetentionPeriod)(params.cloudWatchLogRetentionPeriodInDays);
25
26
  (0, validate_disk_size_in_mb_1.validateDiskSizeInMb)(params.diskSizeInMb);
26
27
  (0, validate_custom_role_arn_1.validateCustomRoleArn)(params.customRoleArn);
28
+ (0, get_layers_1.validateRuntimePreference)(params.runtimePreference);
27
29
  const fnNameRender = [
28
30
  `${constants_1.RENDER_FN_PREFIX}${lambda_version_string_1.LAMBDA_VERSION_STRING}`,
29
31
  `mem${params.memorySizeInMb}mb`,
@@ -56,6 +58,7 @@ const internalDeployFunction = async (params) => {
56
58
  logLevel: params.logLevel,
57
59
  vpcSubnetIds: params.vpcSubnetIds,
58
60
  vpcSecurityGroupIds: params.vpcSecurityGroupIds,
61
+ runtimePreference: params.runtimePreference,
59
62
  });
60
63
  if (!created.FunctionName) {
61
64
  throw new Error('Lambda was created but has no name');
@@ -79,15 +82,13 @@ const errorHandled = (0, error_handling_1.wrapWithErrorHandling)(exports.interna
79
82
  * @param params.diskSizeInMb The amount of storage the function should be allocated. The higher, the longer videos you can render. Default 512.
80
83
  * @returns {Promise<DeployFunctionOutput>} An object that contains the `functionName` property
81
84
  */
82
- const deployFunction = ({ createCloudWatchLogGroup, memorySizeInMb, region, timeoutInSeconds, cloudWatchLogRetentionPeriodInDays, customRoleArn, enableLambdaInsights, indent, logLevel, enableV5Runtime, vpcSubnetIds, vpcSecurityGroupIds, ...options }) => {
83
- var _a;
84
- const diskSizeInMb = (_a = options.diskSizeInMb) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_EPHEMERAL_STORAGE_IN_MB;
85
+ const deployFunction = ({ createCloudWatchLogGroup, memorySizeInMb, region, timeoutInSeconds, cloudWatchLogRetentionPeriodInDays, customRoleArn, enableLambdaInsights, indent, logLevel, enableV5Runtime, vpcSubnetIds, vpcSecurityGroupIds, runtimePreference, diskSizeInMb, }) => {
85
86
  return errorHandled({
86
87
  indent: indent !== null && indent !== void 0 ? indent : false,
87
88
  logLevel: logLevel !== null && logLevel !== void 0 ? logLevel : 'info',
88
89
  createCloudWatchLogGroup,
89
90
  customRoleArn: customRoleArn !== null && customRoleArn !== void 0 ? customRoleArn : undefined,
90
- diskSizeInMb,
91
+ diskSizeInMb: diskSizeInMb !== null && diskSizeInMb !== void 0 ? diskSizeInMb : constants_1.DEFAULT_EPHEMERAL_STORAGE_IN_MB,
91
92
  enableLambdaInsights: enableLambdaInsights !== null && enableLambdaInsights !== void 0 ? enableLambdaInsights : false,
92
93
  memorySizeInMb,
93
94
  region,
@@ -96,6 +97,7 @@ const deployFunction = ({ createCloudWatchLogGroup, memorySizeInMb, region, time
96
97
  enableV5Runtime: enableV5Runtime !== null && enableV5Runtime !== void 0 ? enableV5Runtime : no_react_1.NoReactInternals.ENABLE_V5_BREAKING_CHANGES,
97
98
  vpcSubnetIds,
98
99
  vpcSecurityGroupIds,
100
+ runtimePreference: runtimePreference !== null && runtimePreference !== void 0 ? runtimePreference : 'default',
99
101
  });
100
102
  };
101
103
  exports.deployFunction = deployFunction;
@@ -2,6 +2,7 @@
2
2
  import type { BrowserSafeApis } from '@remotion/renderer/client';
3
3
  import type { AwsRegion, DeleteAfter } from '../client';
4
4
  import type { Privacy } from '@remotion/serverless/client';
5
+ import type { RuntimePreference } from '../shared/get-layers';
5
6
  type LambdaCommandLineOptions = {
6
7
  help: boolean;
7
8
  region: AwsRegion;
@@ -37,6 +38,7 @@ type LambdaCommandLineOptions = {
37
38
  ['vpc-security-group-ids']: string | undefined;
38
39
  ['compatible-only']: boolean;
39
40
  ['force-path-style']: boolean;
41
+ ['runtime-preference']: RuntimePreference;
40
42
  };
41
43
  export declare const parsedLambdaCli: LambdaCommandLineOptions & import("minimist").ParsedArgs;
42
44
  export declare const forceFlagProvided: boolean;
@@ -15,7 +15,7 @@ const args_1 = require("../../args");
15
15
  const get_aws_region_1 = require("../../get-aws-region");
16
16
  exports.FUNCTIONS_DEPLOY_SUBCOMMAND = 'deploy';
17
17
  const functionsDeploySubcommand = async (logLevel) => {
18
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
18
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
19
19
  const region = (0, get_aws_region_1.getAwsRegion)();
20
20
  const timeoutInSeconds = (_a = args_1.parsedLambdaCli.timeout) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_TIMEOUT;
21
21
  const memorySizeInMb = (_b = args_1.parsedLambdaCli.memory) !== null && _b !== void 0 ? _b : constants_1.DEFAULT_MEMORY_SIZE;
@@ -27,6 +27,7 @@ const functionsDeploySubcommand = async (logLevel) => {
27
27
  const enableV5Runtime = (_g = args_1.parsedLambdaCli['enable-v5-runtime']) !== null && _g !== void 0 ? _g : undefined;
28
28
  const vpcSubnetIds = (_h = args_1.parsedLambdaCli['vpc-subnet-ids']) !== null && _h !== void 0 ? _h : undefined;
29
29
  const vpcSecurityGroupIds = (_j = args_1.parsedLambdaCli['vpc-security-group-ids']) !== null && _j !== void 0 ? _j : undefined;
30
+ const runtimePreference = (_k = args_1.parsedLambdaCli['runtime-preference']) !== null && _k !== void 0 ? _k : 'default';
30
31
  (0, validate_memory_size_1.validateMemorySize)(memorySizeInMb);
31
32
  (0, validate_timeout_1.validateTimeout)(timeoutInSeconds);
32
33
  (0, validate_disk_size_in_mb_1.validateDiskSizeInMb)(diskSizeInMb);
@@ -74,6 +75,7 @@ VPC Security Group IDs = ${vpcSecurityGroupIds}
74
75
  logLevel,
75
76
  vpcSubnetIds,
76
77
  vpcSecurityGroupIds,
78
+ runtimePreference,
77
79
  });
78
80
  if (cli_1.CliInternals.quietFlagProvided()) {
79
81
  cli_1.CliInternals.Log.info({ indent: false, logLevel }, functionName);
@@ -0,0 +1,11 @@
1
+ import type { AwsRegion } from '../regions';
2
+ import type { AwsLayer } from './hosted-layers';
3
+ declare const runtimePreferenceOptions: readonly ["default", "apple-emojis", "cjk"];
4
+ export type RuntimePreference = (typeof runtimePreferenceOptions)[number];
5
+ export declare const validateRuntimePreference: (option: unknown) => void;
6
+ export declare const getLayers: ({ option, region, enableV5Runtime, }: {
7
+ option: RuntimePreference;
8
+ region: AwsRegion;
9
+ enableV5Runtime: boolean;
10
+ }) => AwsLayer[];
11
+ export {};
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getLayers = exports.validateRuntimePreference = void 0;
4
+ const hosted_layers_1 = require("./hosted-layers");
5
+ const runtimePreferenceOptions = ['default', 'apple-emojis', 'cjk'];
6
+ const validateRuntimePreference = (option) => {
7
+ if (!option) {
8
+ return;
9
+ }
10
+ if (!runtimePreferenceOptions.includes(option)) {
11
+ throw new Error(`Invalid runtime preference ${option}. Must be one of ${runtimePreferenceOptions.join(', ')}`);
12
+ }
13
+ };
14
+ exports.validateRuntimePreference = validateRuntimePreference;
15
+ const getLayers = ({ option, region, enableV5Runtime, }) => {
16
+ const layers = enableV5Runtime
17
+ ? hosted_layers_1.v5HostedLayers[region]
18
+ : hosted_layers_1.hostedLayers[region];
19
+ return layers.filter((layer) => {
20
+ if (layer.layerArn.includes('emoji-apple')) {
21
+ return option === 'apple-emojis';
22
+ }
23
+ if (layer.layerArn.includes('emoji-google')) {
24
+ return option !== 'apple-emojis';
25
+ }
26
+ if (layer.layerArn.includes('cjk')) {
27
+ return option !== 'apple-emojis';
28
+ }
29
+ if (layer.layerArn.includes('chromium')) {
30
+ return true;
31
+ }
32
+ if (layer.layerArn.includes('fonts')) {
33
+ return true;
34
+ }
35
+ throw new Error('Unhandled layer type ');
36
+ });
37
+ };
38
+ exports.getLayers = getLayers;
@@ -1,10 +1,11 @@
1
1
  import type { AwsRegion } from '../regions';
2
2
  export declare const REMOTION_HOSTED_LAYER_ARN = "arn:aws:lambda:*:678892195805:layer:remotion-binaries-*";
3
+ export type AwsLayer = {
4
+ layerArn: string;
5
+ version: number;
6
+ };
3
7
  export type HostedLayers = {
4
- [region in AwsRegion]: {
5
- layerArn: string;
6
- version: number;
7
- }[];
8
+ [region in AwsRegion]: AwsLayer[];
8
9
  };
9
10
  export declare const hostedLayers: HostedLayers;
10
11
  export declare const v5HostedLayers: HostedLayers;
@@ -6,211 +6,463 @@ exports.hostedLayers = {
6
6
  'ap-northeast-1': [
7
7
  {
8
8
  layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-fonts-arm64',
9
- version: 8,
9
+ version: 14,
10
10
  },
11
11
  {
12
12
  layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
13
- version: 12,
13
+ version: 18,
14
+ },
15
+ {
16
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
17
+ version: 2,
18
+ },
19
+ {
20
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
21
+ version: 2,
22
+ },
23
+ {
24
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-cjk-arm64',
25
+ version: 2,
14
26
  },
15
27
  ],
16
28
  'ap-south-1': [
17
29
  {
18
30
  layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
19
- version: 8,
31
+ version: 14,
20
32
  },
21
33
  {
22
34
  layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
23
- version: 12,
35
+ version: 18,
36
+ },
37
+ {
38
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
39
+ version: 2,
40
+ },
41
+ {
42
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
43
+ version: 2,
44
+ },
45
+ {
46
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
47
+ version: 2,
24
48
  },
25
49
  ],
26
50
  'ap-southeast-1': [
27
51
  {
28
52
  layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-fonts-arm64',
29
- version: 8,
53
+ version: 14,
30
54
  },
31
55
  {
32
56
  layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
33
- version: 12,
57
+ version: 18,
58
+ },
59
+ {
60
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
61
+ version: 2,
62
+ },
63
+ {
64
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
65
+ version: 2,
66
+ },
67
+ {
68
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-cjk-arm64',
69
+ version: 2,
34
70
  },
35
71
  ],
36
72
  'ap-southeast-2': [
37
73
  {
38
74
  layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-fonts-arm64',
39
- version: 8,
75
+ version: 14,
40
76
  },
41
77
  {
42
78
  layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-chromium-arm64',
43
- version: 12,
79
+ version: 18,
80
+ },
81
+ {
82
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
83
+ version: 2,
84
+ },
85
+ {
86
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
87
+ version: 2,
88
+ },
89
+ {
90
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-cjk-arm64',
91
+ version: 2,
44
92
  },
45
93
  ],
46
94
  'eu-central-1': [
47
95
  {
48
96
  layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-fonts-arm64',
49
- version: 17,
97
+ version: 38,
50
98
  },
51
99
  {
52
100
  layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-chromium-arm64',
53
- version: 18,
101
+ version: 39,
102
+ },
103
+ {
104
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
105
+ version: 2,
106
+ },
107
+ {
108
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
109
+ version: 2,
110
+ },
111
+ {
112
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-cjk-arm64',
113
+ version: 2,
54
114
  },
55
115
  ],
56
116
  'eu-west-1': [
57
117
  {
58
118
  layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-fonts-arm64',
59
- version: 9,
119
+ version: 15,
60
120
  },
61
121
  {
62
122
  layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-chromium-arm64',
63
- version: 12,
123
+ version: 18,
124
+ },
125
+ {
126
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
127
+ version: 2,
128
+ },
129
+ {
130
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
131
+ version: 2,
132
+ },
133
+ {
134
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-cjk-arm64',
135
+ version: 2,
64
136
  },
65
137
  ],
66
138
  'eu-west-2': [
67
139
  {
68
140
  layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-fonts-arm64',
69
- version: 8,
141
+ version: 14,
70
142
  },
71
143
  {
72
144
  layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
73
- version: 12,
145
+ version: 18,
146
+ },
147
+ {
148
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
149
+ version: 2,
150
+ },
151
+ {
152
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
153
+ version: 2,
154
+ },
155
+ {
156
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-cjk-arm64',
157
+ version: 2,
74
158
  },
75
159
  ],
76
160
  'us-east-1': [
77
161
  {
78
162
  layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
79
- version: 13,
163
+ version: 19,
80
164
  },
81
165
  {
82
166
  layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
83
- version: 21,
167
+ version: 27,
168
+ },
169
+ {
170
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
171
+ version: 2,
172
+ },
173
+ {
174
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
175
+ version: 2,
176
+ },
177
+ {
178
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
179
+ version: 2,
84
180
  },
85
181
  ],
86
182
  'us-east-2': [
87
183
  {
88
184
  layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-fonts-arm64',
89
- version: 8,
185
+ version: 14,
90
186
  },
91
187
  {
92
188
  layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-chromium-arm64',
93
- version: 12,
189
+ version: 18,
190
+ },
191
+ {
192
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
193
+ version: 2,
194
+ },
195
+ {
196
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
197
+ version: 2,
198
+ },
199
+ {
200
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-cjk-arm64',
201
+ version: 2,
94
202
  },
95
203
  ],
96
204
  'us-west-2': [
97
205
  {
98
206
  layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-fonts-arm64',
99
- version: 8,
207
+ version: 14,
100
208
  },
101
209
  {
102
210
  layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
103
- version: 12,
211
+ version: 18,
212
+ },
213
+ {
214
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
215
+ version: 2,
216
+ },
217
+ {
218
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
219
+ version: 2,
220
+ },
221
+ {
222
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-cjk-arm64',
223
+ version: 2,
104
224
  },
105
225
  ],
106
226
  'af-south-1': [
107
227
  {
108
228
  layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
109
- version: 5,
229
+ version: 11,
110
230
  },
111
231
  {
112
232
  layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
113
- version: 5,
233
+ version: 11,
234
+ },
235
+ {
236
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
237
+ version: 2,
238
+ },
239
+ {
240
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
241
+ version: 2,
242
+ },
243
+ {
244
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
245
+ version: 2,
114
246
  },
115
247
  ],
116
248
  'ap-east-1': [
117
249
  {
118
250
  layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
119
- version: 5,
251
+ version: 11,
120
252
  },
121
253
  {
122
254
  layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
123
- version: 5,
255
+ version: 11,
256
+ },
257
+ {
258
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
259
+ version: 2,
260
+ },
261
+ {
262
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
263
+ version: 2,
264
+ },
265
+ {
266
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
267
+ version: 2,
124
268
  },
125
269
  ],
126
270
  'ap-northeast-2': [
127
271
  {
128
272
  layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-fonts-arm64',
129
- version: 5,
273
+ version: 11,
130
274
  },
131
275
  {
132
276
  layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-chromium-arm64',
133
- version: 5,
277
+ version: 11,
278
+ },
279
+ {
280
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
281
+ version: 2,
282
+ },
283
+ {
284
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
285
+ version: 2,
286
+ },
287
+ {
288
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-cjk-arm64',
289
+ version: 2,
134
290
  },
135
291
  ],
136
292
  'ap-northeast-3': [
137
293
  {
138
294
  layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-fonts-arm64',
139
- version: 5,
295
+ version: 11,
140
296
  },
141
297
  {
142
298
  layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-chromium-arm64',
143
- version: 5,
299
+ version: 11,
300
+ },
301
+ {
302
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-emoji-apple-arm64',
303
+ version: 2,
304
+ },
305
+ {
306
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-emoji-google-arm64',
307
+ version: 2,
308
+ },
309
+ {
310
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-cjk-arm64',
311
+ version: 2,
144
312
  },
145
313
  ],
146
314
  'ca-central-1': [
147
315
  {
148
316
  layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-fonts-arm64',
149
- version: 5,
317
+ version: 11,
150
318
  },
151
319
  {
152
320
  layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-chromium-arm64',
153
- version: 5,
321
+ version: 11,
322
+ },
323
+ {
324
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
325
+ version: 2,
326
+ },
327
+ {
328
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
329
+ version: 2,
330
+ },
331
+ {
332
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-cjk-arm64',
333
+ version: 2,
154
334
  },
155
335
  ],
156
336
  'eu-north-1': [
157
337
  {
158
338
  layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-fonts-arm64',
159
- version: 5,
339
+ version: 11,
160
340
  },
161
341
  {
162
342
  layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-chromium-arm64',
163
- version: 5,
343
+ version: 11,
344
+ },
345
+ {
346
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
347
+ version: 2,
348
+ },
349
+ {
350
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
351
+ version: 2,
352
+ },
353
+ {
354
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-cjk-arm64',
355
+ version: 2,
164
356
  },
165
357
  ],
166
358
  'eu-south-1': [
167
359
  {
168
360
  layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
169
- version: 5,
361
+ version: 11,
170
362
  },
171
363
  {
172
364
  layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
173
- version: 5,
365
+ version: 11,
366
+ },
367
+ {
368
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
369
+ version: 2,
370
+ },
371
+ {
372
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
373
+ version: 2,
374
+ },
375
+ {
376
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
377
+ version: 2,
174
378
  },
175
379
  ],
176
380
  'eu-west-3': [
177
381
  {
178
382
  layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-fonts-arm64',
179
- version: 5,
383
+ version: 11,
180
384
  },
181
385
  {
182
386
  layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-chromium-arm64',
183
- version: 5,
387
+ version: 11,
388
+ },
389
+ {
390
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-emoji-apple-arm64',
391
+ version: 2,
392
+ },
393
+ {
394
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-emoji-google-arm64',
395
+ version: 2,
396
+ },
397
+ {
398
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-cjk-arm64',
399
+ version: 2,
184
400
  },
185
401
  ],
186
402
  'me-south-1': [
187
403
  {
188
404
  layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
189
- version: 5,
405
+ version: 11,
190
406
  },
191
407
  {
192
408
  layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
193
- version: 5,
409
+ version: 11,
410
+ },
411
+ {
412
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
413
+ version: 2,
414
+ },
415
+ {
416
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
417
+ version: 2,
418
+ },
419
+ {
420
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
421
+ version: 2,
194
422
  },
195
423
  ],
196
424
  'sa-east-1': [
197
425
  {
198
426
  layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
199
- version: 5,
427
+ version: 11,
200
428
  },
201
429
  {
202
430
  layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
203
- version: 5,
431
+ version: 11,
432
+ },
433
+ {
434
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
435
+ version: 2,
436
+ },
437
+ {
438
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
439
+ version: 2,
440
+ },
441
+ {
442
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
443
+ version: 2,
204
444
  },
205
445
  ],
206
446
  'us-west-1': [
207
447
  {
208
448
  layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-fonts-arm64',
209
- version: 5,
449
+ version: 11,
210
450
  },
211
451
  {
212
452
  layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-chromium-arm64',
213
- version: 5,
453
+ version: 11,
454
+ },
455
+ {
456
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
457
+ version: 2,
458
+ },
459
+ {
460
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
461
+ version: 2,
462
+ },
463
+ {
464
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-cjk-arm64',
465
+ version: 2,
214
466
  },
215
467
  ],
216
468
  };
@@ -218,211 +470,463 @@ exports.v5HostedLayers = {
218
470
  'ap-northeast-1': [
219
471
  {
220
472
  layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-fonts-arm64',
221
- version: 11,
473
+ version: 15,
222
474
  },
223
475
  {
224
476
  layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
225
- version: 15,
477
+ version: 19,
478
+ },
479
+ {
480
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
481
+ version: 3,
482
+ },
483
+ {
484
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
485
+ version: 3,
486
+ },
487
+ {
488
+ layerArn: 'arn:aws:lambda:ap-northeast-1:678892195805:layer:remotion-binaries-cjk-arm64',
489
+ version: 3,
226
490
  },
227
491
  ],
228
492
  'ap-south-1': [
229
493
  {
230
494
  layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
231
- version: 11,
495
+ version: 15,
232
496
  },
233
497
  {
234
498
  layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
235
- version: 15,
499
+ version: 19,
500
+ },
501
+ {
502
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
503
+ version: 3,
504
+ },
505
+ {
506
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
507
+ version: 3,
508
+ },
509
+ {
510
+ layerArn: 'arn:aws:lambda:ap-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
511
+ version: 3,
236
512
  },
237
513
  ],
238
514
  'ap-southeast-1': [
239
515
  {
240
516
  layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-fonts-arm64',
241
- version: 11,
517
+ version: 15,
242
518
  },
243
519
  {
244
520
  layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-chromium-arm64',
245
- version: 15,
521
+ version: 19,
522
+ },
523
+ {
524
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
525
+ version: 3,
526
+ },
527
+ {
528
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
529
+ version: 3,
530
+ },
531
+ {
532
+ layerArn: 'arn:aws:lambda:ap-southeast-1:678892195805:layer:remotion-binaries-cjk-arm64',
533
+ version: 3,
246
534
  },
247
535
  ],
248
536
  'ap-southeast-2': [
249
537
  {
250
538
  layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-fonts-arm64',
251
- version: 11,
539
+ version: 15,
252
540
  },
253
541
  {
254
542
  layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-chromium-arm64',
255
- version: 15,
543
+ version: 19,
544
+ },
545
+ {
546
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
547
+ version: 3,
548
+ },
549
+ {
550
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
551
+ version: 3,
552
+ },
553
+ {
554
+ layerArn: 'arn:aws:lambda:ap-southeast-2:678892195805:layer:remotion-binaries-cjk-arm64',
555
+ version: 3,
256
556
  },
257
557
  ],
258
558
  'eu-central-1': [
259
559
  {
260
560
  layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-fonts-arm64',
261
- version: 34,
561
+ version: 39,
262
562
  },
263
563
  {
264
564
  layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-chromium-arm64',
265
- version: 35,
565
+ version: 40,
566
+ },
567
+ {
568
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
569
+ version: 3,
570
+ },
571
+ {
572
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
573
+ version: 3,
574
+ },
575
+ {
576
+ layerArn: 'arn:aws:lambda:eu-central-1:678892195805:layer:remotion-binaries-cjk-arm64',
577
+ version: 3,
266
578
  },
267
579
  ],
268
580
  'eu-west-1': [
269
581
  {
270
582
  layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-fonts-arm64',
271
- version: 12,
583
+ version: 16,
272
584
  },
273
585
  {
274
586
  layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-chromium-arm64',
275
- version: 15,
587
+ version: 19,
588
+ },
589
+ {
590
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
591
+ version: 3,
592
+ },
593
+ {
594
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
595
+ version: 3,
596
+ },
597
+ {
598
+ layerArn: 'arn:aws:lambda:eu-west-1:678892195805:layer:remotion-binaries-cjk-arm64',
599
+ version: 3,
276
600
  },
277
601
  ],
278
602
  'eu-west-2': [
279
603
  {
280
604
  layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-fonts-arm64',
281
- version: 11,
605
+ version: 15,
282
606
  },
283
607
  {
284
608
  layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
285
- version: 15,
609
+ version: 19,
610
+ },
611
+ {
612
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
613
+ version: 3,
614
+ },
615
+ {
616
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
617
+ version: 3,
618
+ },
619
+ {
620
+ layerArn: 'arn:aws:lambda:eu-west-2:678892195805:layer:remotion-binaries-cjk-arm64',
621
+ version: 3,
286
622
  },
287
623
  ],
288
624
  'us-east-1': [
289
625
  {
290
626
  layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
291
- version: 16,
627
+ version: 20,
292
628
  },
293
629
  {
294
630
  layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
295
- version: 24,
631
+ version: 28,
632
+ },
633
+ {
634
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
635
+ version: 3,
636
+ },
637
+ {
638
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
639
+ version: 3,
640
+ },
641
+ {
642
+ layerArn: 'arn:aws:lambda:us-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
643
+ version: 3,
296
644
  },
297
645
  ],
298
646
  'us-east-2': [
299
647
  {
300
648
  layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-fonts-arm64',
301
- version: 11,
649
+ version: 15,
302
650
  },
303
651
  {
304
652
  layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-chromium-arm64',
305
- version: 15,
653
+ version: 19,
654
+ },
655
+ {
656
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
657
+ version: 3,
658
+ },
659
+ {
660
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
661
+ version: 3,
662
+ },
663
+ {
664
+ layerArn: 'arn:aws:lambda:us-east-2:678892195805:layer:remotion-binaries-cjk-arm64',
665
+ version: 3,
306
666
  },
307
667
  ],
308
668
  'us-west-2': [
309
669
  {
310
670
  layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-fonts-arm64',
311
- version: 11,
671
+ version: 15,
312
672
  },
313
673
  {
314
674
  layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-chromium-arm64',
315
- version: 15,
675
+ version: 19,
676
+ },
677
+ {
678
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
679
+ version: 3,
680
+ },
681
+ {
682
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
683
+ version: 3,
684
+ },
685
+ {
686
+ layerArn: 'arn:aws:lambda:us-west-2:678892195805:layer:remotion-binaries-cjk-arm64',
687
+ version: 3,
316
688
  },
317
689
  ],
318
690
  'af-south-1': [
319
691
  {
320
692
  layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
321
- version: 8,
693
+ version: 12,
322
694
  },
323
695
  {
324
696
  layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
325
- version: 8,
697
+ version: 12,
698
+ },
699
+ {
700
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
701
+ version: 3,
702
+ },
703
+ {
704
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
705
+ version: 3,
706
+ },
707
+ {
708
+ layerArn: 'arn:aws:lambda:af-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
709
+ version: 3,
326
710
  },
327
711
  ],
328
712
  'ap-east-1': [
329
713
  {
330
714
  layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
331
- version: 8,
715
+ version: 12,
332
716
  },
333
717
  {
334
718
  layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
335
- version: 8,
719
+ version: 12,
720
+ },
721
+ {
722
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
723
+ version: 3,
724
+ },
725
+ {
726
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
727
+ version: 3,
728
+ },
729
+ {
730
+ layerArn: 'arn:aws:lambda:ap-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
731
+ version: 3,
336
732
  },
337
733
  ],
338
734
  'ap-northeast-2': [
339
735
  {
340
736
  layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-fonts-arm64',
341
- version: 8,
737
+ version: 12,
342
738
  },
343
739
  {
344
740
  layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-chromium-arm64',
345
- version: 8,
741
+ version: 12,
742
+ },
743
+ {
744
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-emoji-apple-arm64',
745
+ version: 3,
746
+ },
747
+ {
748
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-emoji-google-arm64',
749
+ version: 3,
750
+ },
751
+ {
752
+ layerArn: 'arn:aws:lambda:ap-northeast-2:678892195805:layer:remotion-binaries-cjk-arm64',
753
+ version: 3,
346
754
  },
347
755
  ],
348
756
  'ap-northeast-3': [
349
757
  {
350
758
  layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-fonts-arm64',
351
- version: 8,
759
+ version: 12,
352
760
  },
353
761
  {
354
762
  layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-chromium-arm64',
355
- version: 8,
763
+ version: 12,
764
+ },
765
+ {
766
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-emoji-apple-arm64',
767
+ version: 3,
768
+ },
769
+ {
770
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-emoji-google-arm64',
771
+ version: 3,
772
+ },
773
+ {
774
+ layerArn: 'arn:aws:lambda:ap-northeast-3:678892195805:layer:remotion-binaries-cjk-arm64',
775
+ version: 3,
356
776
  },
357
777
  ],
358
778
  'ca-central-1': [
359
779
  {
360
780
  layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-fonts-arm64',
361
- version: 8,
781
+ version: 12,
362
782
  },
363
783
  {
364
784
  layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-chromium-arm64',
365
- version: 8,
785
+ version: 12,
786
+ },
787
+ {
788
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
789
+ version: 3,
790
+ },
791
+ {
792
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
793
+ version: 3,
794
+ },
795
+ {
796
+ layerArn: 'arn:aws:lambda:ca-central-1:678892195805:layer:remotion-binaries-cjk-arm64',
797
+ version: 3,
366
798
  },
367
799
  ],
368
800
  'eu-north-1': [
369
801
  {
370
802
  layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-fonts-arm64',
371
- version: 8,
803
+ version: 12,
372
804
  },
373
805
  {
374
806
  layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-chromium-arm64',
375
- version: 8,
807
+ version: 12,
808
+ },
809
+ {
810
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
811
+ version: 3,
812
+ },
813
+ {
814
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
815
+ version: 3,
816
+ },
817
+ {
818
+ layerArn: 'arn:aws:lambda:eu-north-1:678892195805:layer:remotion-binaries-cjk-arm64',
819
+ version: 3,
376
820
  },
377
821
  ],
378
822
  'eu-south-1': [
379
823
  {
380
824
  layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
381
- version: 8,
825
+ version: 12,
382
826
  },
383
827
  {
384
828
  layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
385
- version: 8,
829
+ version: 12,
830
+ },
831
+ {
832
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
833
+ version: 3,
834
+ },
835
+ {
836
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
837
+ version: 3,
838
+ },
839
+ {
840
+ layerArn: 'arn:aws:lambda:eu-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
841
+ version: 3,
386
842
  },
387
843
  ],
388
844
  'eu-west-3': [
389
845
  {
390
846
  layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-fonts-arm64',
391
- version: 8,
847
+ version: 12,
392
848
  },
393
849
  {
394
850
  layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-chromium-arm64',
395
- version: 8,
851
+ version: 12,
852
+ },
853
+ {
854
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-emoji-apple-arm64',
855
+ version: 3,
856
+ },
857
+ {
858
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-emoji-google-arm64',
859
+ version: 3,
860
+ },
861
+ {
862
+ layerArn: 'arn:aws:lambda:eu-west-3:678892195805:layer:remotion-binaries-cjk-arm64',
863
+ version: 3,
396
864
  },
397
865
  ],
398
866
  'me-south-1': [
399
867
  {
400
868
  layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-fonts-arm64',
401
- version: 8,
869
+ version: 12,
402
870
  },
403
871
  {
404
872
  layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-chromium-arm64',
405
- version: 8,
873
+ version: 12,
874
+ },
875
+ {
876
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
877
+ version: 3,
878
+ },
879
+ {
880
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
881
+ version: 3,
882
+ },
883
+ {
884
+ layerArn: 'arn:aws:lambda:me-south-1:678892195805:layer:remotion-binaries-cjk-arm64',
885
+ version: 3,
406
886
  },
407
887
  ],
408
888
  'sa-east-1': [
409
889
  {
410
890
  layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-fonts-arm64',
411
- version: 8,
891
+ version: 12,
412
892
  },
413
893
  {
414
894
  layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-chromium-arm64',
415
- version: 8,
895
+ version: 12,
896
+ },
897
+ {
898
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
899
+ version: 3,
900
+ },
901
+ {
902
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
903
+ version: 3,
904
+ },
905
+ {
906
+ layerArn: 'arn:aws:lambda:sa-east-1:678892195805:layer:remotion-binaries-cjk-arm64',
907
+ version: 3,
416
908
  },
417
909
  ],
418
910
  'us-west-1': [
419
911
  {
420
912
  layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-fonts-arm64',
421
- version: 8,
913
+ version: 12,
422
914
  },
423
915
  {
424
916
  layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-chromium-arm64',
425
- version: 8,
917
+ version: 12,
918
+ },
919
+ {
920
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-emoji-apple-arm64',
921
+ version: 3,
922
+ },
923
+ {
924
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-emoji-google-arm64',
925
+ version: 3,
926
+ },
927
+ {
928
+ layerArn: 'arn:aws:lambda:us-west-1:678892195805:layer:remotion-binaries-cjk-arm64',
929
+ version: 3,
426
930
  },
427
931
  ],
428
932
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
4
4
  },
5
5
  "name": "@remotion/lambda",
6
- "version": "4.0.204",
6
+ "version": "4.0.205",
7
7
  "description": "Render Remotion videos on AWS Lambda",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -22,13 +22,13 @@
22
22
  "@aws-sdk/s3-request-presigner": "3.583.0",
23
23
  "mime-types": "2.1.34",
24
24
  "zod": "3.22.3",
25
- "@remotion/bundler": "4.0.204",
26
- "@remotion/cli": "4.0.204",
27
- "@remotion/renderer": "4.0.204",
28
- "@remotion/studio-server": "4.0.204",
29
- "@remotion/streaming": "4.0.204",
30
- "@remotion/serverless": "4.0.204",
31
- "remotion": "4.0.204"
25
+ "@remotion/bundler": "4.0.205",
26
+ "@remotion/studio-server": "4.0.205",
27
+ "@remotion/cli": "4.0.205",
28
+ "@remotion/serverless": "4.0.205",
29
+ "remotion": "4.0.205",
30
+ "@remotion/streaming": "4.0.205",
31
+ "@remotion/renderer": "4.0.205"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/mime-types": "2.1.1",
@@ -37,11 +37,11 @@
37
37
  "pureimage": "0.4.13",
38
38
  "vitest": "0.31.1",
39
39
  "zip-lib": "^0.7.2",
40
- "@remotion/bundler": "4.0.204",
41
- "@remotion/compositor-linux-arm64-gnu": "4.0.204"
40
+ "@remotion/bundler": "4.0.205",
41
+ "@remotion/compositor-linux-arm64-gnu": "4.0.205"
42
42
  },
43
43
  "peerDependencies": {
44
- "@remotion/bundler": "4.0.204"
44
+ "@remotion/bundler": "4.0.205"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
Binary file