@remotion/lambda 3.3.28 → 3.3.32

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.
@@ -3,6 +3,6 @@ declare type Options = {
3
3
  expectedBucketOwner: string;
4
4
  };
5
5
  export declare const compositionsHandler: (lambdaParams: LambdaPayload, options: Options) => Promise<{
6
- compositions: import("remotion/.").TCompMetadata[];
6
+ compositions: import("remotion").TCompMetadata[];
7
7
  }>;
8
8
  export {};
@@ -134,7 +134,7 @@ const concatVideosS3 = async ({ onProgress, numberOfFrames, codec, fps, numberOf
134
134
  const combine = (0, timer_1.timer)('Combine videos');
135
135
  const filelistDir = renderer_1.RenderInternals.tmpDir(constants_1.REMOTION_FILELIST_TOKEN);
136
136
  const codecForCombining = codec === 'h264-mkv' ? 'h264' : codec;
137
- await (0, renderer_1.combineVideos)({
137
+ await renderer_1.RenderInternals.combineVideos({
138
138
  files,
139
139
  filelistDir,
140
140
  output: outfile,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "3.3.28",
3
+ "version": "3.3.32",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -33,12 +33,12 @@
33
33
  "@aws-sdk/credential-providers": "3.215.0",
34
34
  "@aws-sdk/lib-storage": "3.215.0",
35
35
  "@aws-sdk/s3-request-presigner": "3.215.0",
36
- "@remotion/bundler": "3.3.28",
37
- "@remotion/cli": "3.3.28",
38
- "@remotion/renderer": "3.3.28",
36
+ "@remotion/bundler": "3.3.32",
37
+ "@remotion/cli": "3.3.32",
38
+ "@remotion/renderer": "3.3.32",
39
39
  "aws-policies": "^1.0.1",
40
40
  "mime-types": "2.1.34",
41
- "remotion": "3.3.28"
41
+ "remotion": "3.3.32"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "react": ">=16.8.0",
@@ -46,8 +46,8 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@jonny/eslint-config": "3.0.266",
49
- "@remotion/compositor-linux-arm64-musl": "3.3.28",
50
- "@remotion/compositor-linux-x64-musl": "3.3.28",
49
+ "@remotion/compositor-linux-arm64-musl": "3.3.32",
50
+ "@remotion/compositor-linux-x64-musl": "3.3.32",
51
51
  "@types/mime-types": "2.1.1",
52
52
  "@types/minimist": "1.2.2",
53
53
  "@types/node": "^14.14.14",
@@ -63,5 +63,5 @@
63
63
  "publishConfig": {
64
64
  "access": "public"
65
65
  },
66
- "gitHead": "0caa0bec583b5e4c2b12b7375c365e02c2378eeb"
66
+ "gitHead": "6b4f3514c801ddf2e7f957dd2e633271fbbc75f6"
67
67
  }
Binary file
Binary file
package/.prettierrc.js DELETED
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- singleQuote: true,
3
- bracketSpacing: false,
4
- useTabs: true,
5
- overrides: [
6
- {
7
- files: ['*.yml'],
8
- options: {
9
- singleQuote: false,
10
- },
11
- },
12
- ],
13
- plugins: [require.resolve('prettier-plugin-organize-imports')],
14
- };
@@ -1,5 +0,0 @@
1
- import type { AwsRegion } from '../pricing/aws-regions';
2
- export declare const enableS3Website: ({ region, bucketName, }: {
3
- region: AwsRegion;
4
- bucketName: string;
5
- }) => Promise<void>;
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.enableS3Website = void 0;
4
- const client_s3_1 = require("@aws-sdk/client-s3");
5
- const aws_clients_1 = require("../shared/aws-clients");
6
- const enableS3Website = async ({ region, bucketName, }) => {
7
- await (0, aws_clients_1.getS3Client)(region, null).send(new client_s3_1.PutBucketWebsiteCommand({
8
- Bucket: bucketName,
9
- WebsiteConfiguration: {
10
- IndexDocument: {
11
- Suffix: 'index.html',
12
- },
13
- },
14
- }));
15
- };
16
- exports.enableS3Website = enableS3Website;
@@ -1,8 +0,0 @@
1
- import type { AwsRegion } from '../client';
2
- import type { LambdaRoutines } from './constants';
3
- export declare const getCloudwatchStreamUrl: ({ region, functionName, method, renderId, }: {
4
- region: AwsRegion;
5
- functionName: string;
6
- method: LambdaRoutines;
7
- renderId: string;
8
- }) => string;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getCloudwatchStreamUrl = void 0;
4
- const getCloudwatchStreamUrl = ({ region, functionName, method, renderId, }) => {
5
- return `https://${region}.console.aws.amazon.com/cloudwatch/home?region=${region}#logsV2:log-groups/log-group/$252Faws$252Flambda$252F${functionName}/log-events$3FfilterPattern$3D$2522method$253D${method}$252CrenderId$253D${renderId}$2522`;
6
- };
7
- exports.getCloudwatchStreamUrl = getCloudwatchStreamUrl;
package/tsconfig.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "extends": "../tsconfig.settings.json",
3
- "compilerOptions": {
4
- "composite": true,
5
- "rootDir": "src",
6
- "outDir": "dist",
7
- "lib": ["es2019", "dom"]
8
- },
9
- "include": ["src"],
10
- "exclude": ["**/__mocks__/*"],
11
- "references": [
12
- {"path": "../core"},
13
- {"path": "../bundler"},
14
- {"path": "../renderer"}
15
- ]
16
- }