@remotion/lambda 3.3.36 → 3.3.38

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.
@@ -40,6 +40,7 @@ export declare type RenderMediaOnLambdaInput = {
40
40
  };
41
41
  forceWidth?: number | null;
42
42
  forceHeight?: number | null;
43
+ rendererFunctionName?: string | null;
43
44
  };
44
45
  export declare type RenderMediaOnLambdaOutput = {
45
46
  renderId: string;
@@ -66,8 +67,8 @@ export declare type RenderMediaOnLambdaOutput = {
66
67
  * @param params.webhook Configuration for webhook called upon completion or timeout of the render.
67
68
  * @returns {Promise<RenderMediaOnLambdaOutput>} See documentation for detailed structure
68
69
  */
69
- export declare const renderMediaOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
70
+ export declare const renderMediaOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, rendererFunctionName, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
70
71
  /**
71
72
  * @deprecated Renamed to renderMediaOnLambda()
72
73
  */
73
- export declare const renderVideoOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
74
+ export declare const renderVideoOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, rendererFunctionName, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
@@ -29,7 +29,7 @@ const validate_serveurl_1 = require("../shared/validate-serveurl");
29
29
  * @param params.webhook Configuration for webhook called upon completion or timeout of the render.
30
30
  * @returns {Promise<RenderMediaOnLambdaOutput>} See documentation for detailed structure
31
31
  */
32
- const renderMediaOnLambda = async ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, }) => {
32
+ const renderMediaOnLambda = async ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, rendererFunctionName, }) => {
33
33
  var _a;
34
34
  const actualCodec = (0, validate_lambda_codec_1.validateLambdaCodec)(codec);
35
35
  (0, validate_serveurl_1.validateServeUrl)(serveUrl);
@@ -48,6 +48,7 @@ const renderMediaOnLambda = async ({ functionName, serveUrl, inputProps, codec,
48
48
  functionName,
49
49
  type: constants_1.LambdaRoutines.start,
50
50
  payload: {
51
+ rendererFunctionName: rendererFunctionName !== null && rendererFunctionName !== void 0 ? rendererFunctionName : null,
51
52
  framesPerLambda: framesPerLambda !== null && framesPerLambda !== void 0 ? framesPerLambda : null,
52
53
  composition,
53
54
  serveUrl,
@@ -90,6 +91,7 @@ const renderMediaOnLambda = async ({ functionName, serveUrl, inputProps, codec,
90
91
  method: constants_1.LambdaRoutines.renderer,
91
92
  region,
92
93
  renderId: res.renderId,
94
+ rendererFunctionName: rendererFunctionName !== null && rendererFunctionName !== void 0 ? rendererFunctionName : null,
93
95
  }),
94
96
  folderInS3Console: (0, get_aws_urls_1.getS3RenderUrl)({
95
97
  bucketName: res.bucketName,
@@ -67,6 +67,7 @@ const renderStillOnLambda = async ({ functionName, serveUrl, inputProps, imageFo
67
67
  method: constants_1.LambdaRoutines.still,
68
68
  region,
69
69
  renderId: res.renderId,
70
+ rendererFunctionName: null,
70
71
  }),
71
72
  };
72
73
  }
@@ -27,6 +27,8 @@ declare type LambdaCommandLineOptions = {
27
27
  privacy: Privacy;
28
28
  webhook: string | undefined;
29
29
  ['webhook-secret']: string | undefined;
30
+ ['renderer-function-name']: string | undefined;
31
+ ['function-name']: string | undefined;
30
32
  };
31
33
  export declare const parsedLambdaCli: LambdaCommandLineOptions & import("minimist").ParsedArgs;
32
34
  export declare const forceFlagProvided: boolean;
@@ -20,7 +20,7 @@ const log_1 = require("../../log");
20
20
  const progress_1 = require("./progress");
21
21
  exports.RENDER_COMMAND = 'render';
22
22
  const renderCommand = async (args, remotionRoot) => {
23
- var _a, _b, _c, _d, _e;
23
+ var _a, _b, _c, _d, _e, _f;
24
24
  const serveUrl = args[0];
25
25
  if (!serveUrl) {
26
26
  log_1.Log.error('No serve URL passed.');
@@ -94,6 +94,7 @@ const renderCommand = async (args, remotionRoot) => {
94
94
  secret: (_e = args_1.parsedLambdaCli['webhook-secret']) !== null && _e !== void 0 ? _e : null,
95
95
  }
96
96
  : undefined,
97
+ rendererFunctionName: (_f = args_1.parsedLambdaCli['renderer-function-name']) !== null && _f !== void 0 ? _f : null,
97
98
  });
98
99
  const totalSteps = downloadName ? 6 : 5;
99
100
  const progressBar = cli_1.CliInternals.createOverwriteableCliOutput(cli_1.CliInternals.quietFlagProvided());
@@ -4,6 +4,7 @@ exports.findFunctionName = void 0;
4
4
  const version_1 = require("remotion/version");
5
5
  const get_functions_1 = require("../../api/get-functions");
6
6
  const constants_1 = require("../../shared/constants");
7
+ const args_1 = require("../args");
7
8
  const functions_1 = require("../commands/functions");
8
9
  const deploy_1 = require("../commands/functions/deploy");
9
10
  const ls_1 = require("../commands/functions/ls");
@@ -16,7 +17,7 @@ const findFunctionName = async () => {
16
17
  region: (0, get_aws_region_1.getAwsRegion)(),
17
18
  compatibleOnly: false,
18
19
  });
19
- const lambdasWithMatchingVersion = remotionLambdas.filter((l) => l.version === version_1.VERSION);
20
+ let lambdasWithMatchingVersion = remotionLambdas.filter((l) => l.version === version_1.VERSION);
20
21
  if (lambdasWithMatchingVersion.length === 0) {
21
22
  log_1.Log.error(`No lambda functions with version ${version_1.VERSION} found in your account.`);
22
23
  if (remotionLambdas.length > 0) {
@@ -28,11 +29,39 @@ const findFunctionName = async () => {
28
29
  (0, quit_1.quit)(1);
29
30
  }
30
31
  if (lambdasWithMatchingVersion.length > 1) {
31
- log_1.Log.error('More than 1 lambda function found in your account. This is an error.');
32
- log_1.Log.info(`Delete extraneous lambda functions in your AWS console or run`);
33
- log_1.Log.info(` npx ${constants_1.BINARY_NAME} ${functions_1.FUNCTIONS_COMMAND} ${rm_1.FUNCTIONS_RM_SUBCOMMAND} $(npx ${constants_1.BINARY_NAME} ${functions_1.FUNCTIONS_COMMAND} ${ls_1.FUNCTIONS_LS_SUBCOMMAND} -q) -y`);
34
- log_1.Log.info('to delete all lambda functions.');
35
- (0, quit_1.quit)(1);
32
+ if (args_1.parsedLambdaCli['function-name']) {
33
+ const prevFunctions = [...lambdasWithMatchingVersion];
34
+ lambdasWithMatchingVersion = lambdasWithMatchingVersion.filter((l) => l.functionName === args_1.parsedLambdaCli['function-name']);
35
+ if (lambdasWithMatchingVersion.length === 0) {
36
+ log_1.Log.error(`No lambda function with name "${args_1.parsedLambdaCli['function-name']}" and version ${version_1.VERSION} found in your account.`);
37
+ log_1.Log.info();
38
+ if (prevFunctions.length === 0) {
39
+ log_1.Log.info(`No functions for version ${version_1.VERSION} were found, deploy one using:`);
40
+ log_1.Log.info(` npx ${constants_1.BINARY_NAME} ${functions_1.FUNCTIONS_COMMAND} ${deploy_1.FUNCTIONS_DEPLOY_SUBCOMMAND}`);
41
+ (0, quit_1.quit)(1);
42
+ }
43
+ log_1.Log.info('The following functions were found:');
44
+ for (const l of prevFunctions) {
45
+ log_1.Log.info(`- ${l.functionName} (v${l.version})`);
46
+ }
47
+ log_1.Log.info('Remove the `--function-name` parameter use one of them.');
48
+ (0, quit_1.quit)(1);
49
+ }
50
+ }
51
+ else {
52
+ log_1.Log.error('More than 1 lambda function found in your account. Unsure which one to use.');
53
+ log_1.Log.info();
54
+ log_1.Log.info('Possible solutions:');
55
+ log_1.Log.info('- Define using `--function-name` which function you want to use.');
56
+ log_1.Log.info(`- Delete extraneous lambda functions in your AWS console or using:`);
57
+ log_1.Log.info(` npx ${constants_1.BINARY_NAME} ${functions_1.FUNCTIONS_COMMAND} ${rm_1.FUNCTIONS_RM_SUBCOMMAND} $(npx ${constants_1.BINARY_NAME} ${functions_1.FUNCTIONS_COMMAND} ${ls_1.FUNCTIONS_LS_SUBCOMMAND} -q) -y`);
58
+ log_1.Log.info();
59
+ log_1.Log.info(`The following functions were found (only showing v${version_1.VERSION}):`);
60
+ for (const l of lambdasWithMatchingVersion) {
61
+ log_1.Log.info(`- ${l.functionName}`);
62
+ }
63
+ (0, quit_1.quit)(1);
64
+ }
36
65
  }
37
66
  const { functionName } = lambdasWithMatchingVersion[0];
38
67
  return functionName;
@@ -57,10 +57,10 @@ const timer_1 = require("./helpers/timer");
57
57
  const validate_composition_1 = require("./helpers/validate-composition");
58
58
  const write_lambda_error_1 = require("./helpers/write-lambda-error");
59
59
  const write_post_render_data_1 = require("./helpers/write-post-render-data");
60
- const callFunctionWithRetry = async (payload, retries = 0) => {
60
+ const callFunctionWithRetry = async ({ payload, retries, functionName, }) => {
61
61
  try {
62
62
  await (0, aws_clients_1.getLambdaClient)((0, get_current_region_1.getCurrentRegionInFunction)()).send(new client_lambda_1.InvokeCommand({
63
- FunctionName: process.env.AWS_LAMBDA_FUNCTION_NAME,
63
+ FunctionName: functionName,
64
64
  // @ts-expect-error
65
65
  Payload: JSON.stringify(payload),
66
66
  InvocationType: 'Event',
@@ -74,15 +74,20 @@ const callFunctionWithRetry = async (payload, retries = 0) => {
74
74
  await new Promise((resolve) => {
75
75
  setTimeout(resolve, 1000);
76
76
  });
77
- return callFunctionWithRetry(payload, retries + 1);
77
+ return callFunctionWithRetry({
78
+ payload,
79
+ retries: retries + 1,
80
+ functionName,
81
+ });
78
82
  }
79
83
  }
80
84
  };
81
85
  const innerLaunchHandler = async (params, options) => {
82
- var _a, _b, _c, _d;
86
+ var _a, _b, _c, _d, _e;
83
87
  if (params.type !== constants_1.LambdaRoutines.launch) {
84
88
  throw new Error('Expected launch type');
85
89
  }
90
+ const functionName = (_a = params.rendererFunctionName) !== null && _a !== void 0 ? _a : process.env.AWS_LAMBDA_FUNCTION_NAME;
86
91
  const startedDate = Date.now();
87
92
  let webhookInvoked = false;
88
93
  console.log(`Function has ${Math.max(options.getRemainingTimeInMillis() - 1000, 1000)} before it times out`);
@@ -161,7 +166,7 @@ const innerLaunchHandler = async (params, options) => {
161
166
  renderer_1.RenderInternals.validateConcurrency(params.concurrencyPerLambda, 'concurrencyPerLambda');
162
167
  const realFrameRange = renderer_1.RenderInternals.getRealFrameRange(comp.durationInFrames, params.frameRange);
163
168
  const frameCount = renderer_1.RenderInternals.getFramesToRender(realFrameRange, params.everyNthFrame);
164
- const framesPerLambda = (_a = params.framesPerLambda) !== null && _a !== void 0 ? _a : (0, best_frames_per_lambda_param_1.bestFramesPerLambdaParam)(frameCount.length);
169
+ const framesPerLambda = (_b = params.framesPerLambda) !== null && _b !== void 0 ? _b : (0, best_frames_per_lambda_param_1.bestFramesPerLambdaParam)(frameCount.length);
165
170
  (0, validate_frames_per_lambda_1.validateFramesPerLambda)({
166
171
  framesPerLambda,
167
172
  durationInFrames: frameCount.length,
@@ -215,6 +220,9 @@ const innerLaunchHandler = async (params, options) => {
215
220
  muted: params.muted,
216
221
  audioBitrate: params.audioBitrate,
217
222
  videoBitrate: params.videoBitrate,
223
+ launchFunctionConfig: {
224
+ version: version_1.VERSION,
225
+ },
218
226
  };
219
227
  return payload;
220
228
  });
@@ -241,14 +249,14 @@ const innerLaunchHandler = async (params, options) => {
241
249
  memorySizeInMb: Number(process.env.AWS_LAMBDA_FUNCTION_MEMORY_SIZE),
242
250
  region: (0, get_current_region_1.getCurrentRegionInFunction)(),
243
251
  renderId: params.renderId,
244
- outName: (_b = params.outName) !== null && _b !== void 0 ? _b : undefined,
252
+ outName: (_c = params.outName) !== null && _c !== void 0 ? _c : undefined,
245
253
  privacy: params.privacy,
246
254
  everyNthFrame: params.everyNthFrame,
247
255
  frameRange: realFrameRange,
248
256
  };
249
257
  const { key, renderBucketName, customCredentials } = (0, expected_out_name_1.getExpectedOutName)(renderMetadata, params.bucketName, typeof params.outName === 'string' || typeof params.outName === 'undefined'
250
258
  ? null
251
- : (_d = (_c = params.outName) === null || _c === void 0 ? void 0 : _c.s3OutputProvider) !== null && _d !== void 0 ? _d : null);
259
+ : (_e = (_d = params.outName) === null || _d === void 0 ? void 0 : _d.s3OutputProvider) !== null && _e !== void 0 ? _e : null);
252
260
  const output = await (0, find_output_file_in_bucket_1.findOutputFileInBucket)({
253
261
  bucketName: params.bucketName,
254
262
  customCredentials,
@@ -281,7 +289,7 @@ const innerLaunchHandler = async (params, options) => {
281
289
  });
282
290
  await Promise.all(lambdaPayloads.map(async (payload, index) => {
283
291
  const callingLambdaTimer = (0, timer_1.timer)('Calling chunk ' + index);
284
- await callFunctionWithRetry(payload);
292
+ await callFunctionWithRetry({ payload, retries: 0, functionName });
285
293
  callingLambdaTimer.end();
286
294
  }));
287
295
  reqSend.end();
@@ -8,6 +8,7 @@ const client_lambda_1 = require("@aws-sdk/client-lambda");
8
8
  const renderer_1 = require("@remotion/renderer");
9
9
  const fs_1 = __importDefault(require("fs"));
10
10
  const path_1 = __importDefault(require("path"));
11
+ const version_1 = require("remotion/version");
11
12
  const aws_clients_1 = require("../shared/aws-clients");
12
13
  const chunk_progress_1 = require("../shared/chunk-progress");
13
14
  const constants_1 = require("../shared/constants");
@@ -21,6 +22,9 @@ const renderHandler = async (params, options, logs) => {
21
22
  if (params.type !== constants_1.LambdaRoutines.renderer) {
22
23
  throw new Error('Params must be renderer');
23
24
  }
25
+ if (params.launchFunctionConfig.version !== version_1.VERSION) {
26
+ throw new Error(`The version of the function that was specified as "rendererFunctionName" is ${version_1.VERSION} but the version of the function that invoked the render is ${params.launchFunctionConfig.version}. Please make sure that the version of the function that is specified as "rendererFunctionName" is the same as the version of the function that is invoked.`);
27
+ }
24
28
  const inputPropsPromise = (0, deserialize_input_props_1.deserializeInputProps)({
25
29
  bucketName: params.bucketName,
26
30
  expectedBucketOwner: options.expectedBucketOwner,
@@ -75,6 +75,7 @@ const startHandler = async (params, options) => {
75
75
  videoBitrate: params.videoBitrate,
76
76
  forceHeight: params.forceHeight,
77
77
  forceWidth: params.forceWidth,
78
+ rendererFunctionName: params.rendererFunctionName,
78
79
  };
79
80
  await (0, aws_clients_1.getLambdaClient)((0, get_current_region_1.getCurrentRegionInFunction)()).send(new client_lambda_1.InvokeCommand({
80
81
  FunctionName: process.env.AWS_LAMBDA_FUNCTION_NAME,
package/dist/index.d.ts CHANGED
@@ -46,7 +46,7 @@ import type { LambdaArchitecture } from './shared/validate-architecture';
46
46
  /**
47
47
  * @deprecated Import this from `@remotion/lambda/client` instead
48
48
  */
49
- declare const renderMediaOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
49
+ declare const renderMediaOnLambda: ({ functionName, serveUrl, inputProps, codec, imageFormat, crf, envVariables, pixelFormat, proResProfile, quality, region, maxRetries, composition, framesPerLambda, privacy, logLevel, frameRange, outName, timeoutInMilliseconds, chromiumOptions, scale, numberOfGifLoops, everyNthFrame, concurrencyPerLambda, downloadBehavior, muted, overwrite, audioBitrate, videoBitrate, webhook, forceHeight, forceWidth, rendererFunctionName, }: RenderMediaOnLambdaInput) => Promise<RenderMediaOnLambdaOutput>;
50
50
  /**
51
51
  * @deprecated Import this from `@remotion/lambda/client` instead
52
52
  */
@@ -110,6 +110,7 @@ export declare type LambdaPayloads = {
110
110
  type: LambdaRoutines.info;
111
111
  };
112
112
  start: {
113
+ rendererFunctionName: string | null;
113
114
  type: LambdaRoutines.start;
114
115
  serveUrl: string;
115
116
  composition: string;
@@ -144,6 +145,7 @@ export declare type LambdaPayloads = {
144
145
  forceWidth: number | null;
145
146
  };
146
147
  launch: {
148
+ rendererFunctionName: string | null;
147
149
  type: LambdaRoutines.launch;
148
150
  serveUrl: string;
149
151
  composition: string;
@@ -217,6 +219,9 @@ export declare type LambdaPayloads = {
217
219
  muted: boolean;
218
220
  audioBitrate: string | null;
219
221
  videoBitrate: string | null;
222
+ launchFunctionConfig: {
223
+ version: string;
224
+ };
220
225
  };
221
226
  still: {
222
227
  type: LambdaRoutines.still;
@@ -1,8 +1,9 @@
1
1
  import type { AwsRegion } from '../client';
2
2
  import type { LambdaRoutines } from './constants';
3
- export declare const getCloudwatchStreamUrl: ({ region, functionName, method, renderId, }: {
3
+ export declare const getCloudwatchStreamUrl: ({ region, functionName, method, renderId, rendererFunctionName, }: {
4
4
  region: AwsRegion;
5
5
  functionName: string;
6
+ rendererFunctionName: string | null;
6
7
  method: LambdaRoutines;
7
8
  renderId: string;
8
9
  }) => string;
@@ -1,8 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getS3RenderUrl = 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`;
4
+ const getCloudwatchStreamUrl = ({ region, functionName, method, renderId, rendererFunctionName, }) => {
5
+ const functionNameToUse = rendererFunctionName !== null && rendererFunctionName !== void 0 ? rendererFunctionName : functionName;
6
+ return `https://${region}.console.aws.amazon.com/cloudwatch/home?region=${region}#logsV2:log-groups/log-group/$252Faws$252Flambda$252F${functionNameToUse}/log-events$3FfilterPattern$3D$2522method$253D${method}$252CrenderId$253D${renderId}$2522`;
6
7
  };
7
8
  exports.getCloudwatchStreamUrl = getCloudwatchStreamUrl;
8
9
  const getS3RenderUrl = ({ renderId, region, bucketName, }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "3.3.36",
3
+ "version": "3.3.38",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -33,21 +33,17 @@
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.36",
37
- "@remotion/cli": "3.3.36",
38
- "@remotion/renderer": "3.3.36",
36
+ "@remotion/bundler": "3.3.38",
37
+ "@remotion/cli": "3.3.38",
38
+ "@remotion/renderer": "3.3.38",
39
39
  "aws-policies": "^1.0.1",
40
40
  "mime-types": "2.1.34",
41
- "remotion": "3.3.36"
42
- },
43
- "peerDependencies": {
44
- "react": ">=16.8.0",
45
- "react-dom": ">=16.8.0"
41
+ "remotion": "3.3.38"
46
42
  },
47
43
  "devDependencies": {
48
44
  "@jonny/eslint-config": "3.0.266",
49
- "@remotion/compositor-linux-arm64-musl": "3.3.36",
50
- "@remotion/compositor-linux-x64-musl": "3.3.36",
45
+ "@remotion/compositor-linux-arm64-musl": "3.3.38",
46
+ "@remotion/compositor-linux-x64-musl": "3.3.38",
51
47
  "@types/mime-types": "2.1.1",
52
48
  "@types/minimist": "1.2.2",
53
49
  "@types/node": "^14.14.14",
@@ -63,5 +59,5 @@
63
59
  "publishConfig": {
64
60
  "access": "public"
65
61
  },
66
- "gitHead": "623bf1e883e7b26b9d02458037c930ccbe8857e4"
62
+ "gitHead": "ac58695e452e58deb5c010f09bcc94d036930e6c"
67
63
  }
Binary file
Binary file