packages/docs/docs/lambda/rendermediaonlambda.mdx
import {MinimumFramesPerLambda} from '../../components/lambda/default-frames-per-lambda';
Kicks off a render process on Remotion Lambda. The progress can be tracked using getRenderProgress().
Requires a function to already be deployed to execute the render.
A site or a Serve URL needs to be specified to determine what will be rendered.
// ---cut---
import {renderMediaOnLambda} from '@remotion/lambda/client';
const {bucketName, renderId} = await renderMediaOnLambda({
region: 'us-east-1',
functionName: 'remotion-render-bds9aab',
composition: 'MyVideo',
serveUrl: 'https://remotionlambda-qg35eyp1s1.s3.eu-central-1.amazonaws.com/sites/bf2jrbfkw',
codec: 'h264',
});
:::note
Preferrably import this function from @remotion/lambda/client to avoid problems inside serverless functions.
:::
An object with the following properties:
regionIn which region your Lambda function is deployed. It's highly recommended that your Remotion site is also in the same region.
privacy?Optional since <AvailableFrom v="3.2.27" />.
One of:
"public" (default): The rendered media is publicly accessible under the S3 URL."private": The rendered media is not publicly available, but signed links can be created using presignUrl()."no-acl" (available from v.3.1.7): The ACL option is not being set at all, this option is useful if you are writing to another bucket that does not support ACL using outName.functionNameThe name of the deployed Lambda function.
Use deployFunction() to create a new function and getFunctions() to obtain currently deployed Lambdas.
framesPerLambda?The video rendering process gets distributed across multiple Lambda functions. This setting controls how many frames are rendered per Lambda invocation. The lower the number you pass, the more Lambdas get spawned.
Default value: Dependant on video length
Minimum value: <MinimumFramesPerLambda />
:::note
The framesPerLambda parameter cannot result in more than 200 functions being spawned. See: Concurrency
:::
concurrency?<AvailableFrom v="4.0.322" />Specify the number of Lambda functions to use for rendering. This is an alternative to framesPerLambda that allows you to set the concurrency directly without needing to know the video duration.
The concurrency is defined as frameCount / framesPerLambda. Remotion will automatically calculate the appropriate framesPerLambda value based on your concurrency setting.
Maximum value: 200
Minimum value: Depends on video length (must result in framesPerLambda >= 4)
:::note
Cannot be used together with framesPerLambda. Use only one of them.
:::
frameRange?Specify a single frame (passing a number) or a range of frames (passing a tuple [number, number]) to render a subset of a video. Example: [0, 9] to select the first 10 frames. By passing null (default) all frames of a composition get rendered. Pass [number, null] to render from a frame to the end of the composition.<AvailableFrom v="4.0.421" inline /> To render a still, use renderStillOnLambda().
serveUrlA URL pointing to a Remotion project. Use deploySite() to deploy a Remotion project.
compositionThe id of the composition you want to render.
metadata?<AvailableFrom v="4.0.216" />inputProps?Optional since <AvailableFrom v="3.2.27" />.
Input Props to pass to the selected composition of your video..
Must be a JSON object.
From the root component the props can be read using getInputProps().
You may transform input props using calculateMetadata().
codecWhich codec should be used to encode the video.
Video codecs h264, h265, vp8, vp9, gif and prores are supported.
Audio codecs mp3, aac and wav are also supported.
av1 is not available on Lambda due to function size constraints.
The option h264-mkv has been renamed to just h264 since v3.3.34. Use h264 to get the same behavior.
See also renderMedia() -> codec.
audioCodec?<AvailableFrom v="3.3.41" />Choose the encoding of your audio.
codec.pcm-16 if you need uncompressed audio.codec option also specifies an audio codec.Refer to the Encoding guide to see defaults and supported combinations.
forceHeight?<AvailableFrom v="3.2.40" />Overrides default composition height.
forceWidth?<AvailableFrom v="3.2.40" />Overrides default composition width.
forceFps?<AvailableFrom v="4.0.424" />Overrides the default composition FPS.
forceDurationInFrames?<AvailableFrom v="4.0.424" />Overrides the default composition duration in frames.
muted?Disables audio output. See also renderMedia() -> muted.
sampleRate?<AvailableFrom v="4.0.448" />imageFormat?Optional since <AvailableFrom v="3.2.27" />.
See renderMedia() -> imageFormat.
crf?See renderMedia() -> crf.
envVariables?See renderMedia() -> envVariables.
pixelFormat?See renderMedia() -> pixelFormat.
proResProfile?See renderMedia() -> proResProfile.
x264Preset?jpegQuality?See renderMedia() -> jpegQuality.
qualityRenamed to jpegQuality in v4.0.0.
audioBitrate?videoBitrate?bufferSize?<AvailableFrom v="4.0.78" />maxRate?<AvailableFrom v="4.0.78" />maxRetries?Optional since <AvailableFrom v="3.2.27" />. Default: 1.
How often a chunk may be retried to render in case the render fails.
If a rendering of a chunk is failed, the error will be reported in the getRenderProgress() object and retried up to as many times as you specify using this option.
:::note A retry only gets executed if a the error is in the list of flaky errors. :::
scale?outName?The file name of the media output.
It can either be:
undefined - it will default to out plus the appropriate file extension, for example: renders/${renderId}/out.mp4.string - it will get saved to the same S3 bucket as your site under the key renders/{renderId}/{outName}. Make sure to include the file extension at the end of the string.timeoutInMilliseconds?A number describing how long the render may take to resolve all delayRender() calls before it times out. Default: 30000
concurrencyPerLambda?<AvailableFrom v="3.0.30" />By default, each Lambda function renders with concurrency 1 (one open browser tab). You may use the option to customize this value.
everyNthFrame?<AvailableFrom v="3.1" />Renders only every nth frame. For example only every second frame, every third frame and so on. Only works for rendering GIFs. See here for more details.
numberOfGifLoops?<AvailableFrom v="3.1" />downloadBehavior?<AvailableFrom v="3.1.5" />How the output file should behave when accessed through the S3 output link in the browser.
Either:
{"type": "play-in-browser"} - the default. The video will play in the browser.{"type": "download", fileName: null} or {"type": "download", fileName: "download.mp4"} - a Content-Disposition header will be added which makes the browser download the file. You can optionally override the filename.chromiumOptions?Allows you to set certain Chromium / Google Chrome flags. See: Chromium flags.
disableWebSecurityboolean - default false
This will most notably disable CORS among other security features.
ignoreCertificateErrorsboolean - default false
Results in invalid SSL certificates, such as self-signed ones, being ignored.
gloverwrite?<AvailableFrom v="3.2.25" />If a custom out name is specified and a file already exists at this key in the S3 bucket, decide whether the file should be overwritten. Default false.
If the file exists and overwrite is false, an error will be thrown.
rendererFunctionName?<AvailableFrom v="3.3.38" />If specified, this function will be used for rendering the individual chunks. This is useful if you want to use a function with higher or lower power for rendering the chunks than the main orchestration function.
If you want to use this option, the function must be in the same region, the same account and have the same version as the main function.
webhook?<AvailableFrom v="3.2.30" />If specified, Remotion will send a POST request to the provided endpoint to notify your application when the Lambda rendering process finishes, errors out or times out.
import {RenderMediaOnLambdaInput} from '@remotion/lambda';
const webhook: RenderMediaOnLambdaInput['webhook'] = {
url: 'https://mapsnap.app/api/webhook',
secret: process.env.WEBHOOK_SECRET as string,
// Optionally pass up to 1024 bytes of custom data
customData: {
id: 42,
},
};
If you don't want to set up validation, you can set secret to null:
import {RenderMediaOnLambdaInput} from '@remotion/lambda';
const webhook: RenderMediaOnLambdaInput['webhook'] = {
url: 'https://mapsnap.app/api/webhook',
secret: null,
};
See here for detailed instructions on how to set up your webhook.
forceBucketName?<AvailableFrom v="3.3.42" />Specify a specific bucket name to be used. This is not recommended, instead let Remotion discover the right bucket automatically.
logLevel?If the logLevel is set to verbose, the Lambda function will not clean up artifacts, to aid debugging. Do not use it unless you are debugging a problem.
mediaCacheSizeInBytes?<AvailableFrom v="4.0.352"/>offthreadVideoCacheSizeInBytes?<AvailableFrom v="4.0.23"/>offthreadVideoThreads?<AvailableFrom v="4.0.261"/>colorSpace?<AvailableFrom v="4.0.28"/>deleteAfter?<AvailableFrom v="4.0.32"/>preferLossless?<AvailableFrom v="4.0.123"/>forcePathStyle?<AvailableFrom v="4.0.202" />Passes forcePathStyle to the AWS S3 client. If you don't know what this is, you probably don't need it.
storageClass?<AvailableFrom v="4.0.305"/>An identifier for the S3 storage class of the rendered media. Default: undefined (which is STANDARD).
licenseKey?<AvailableFrom v="4.0.409"/>isProduction?<AvailableFrom v="4.0.409"/>default true
apiKey?<AvailableFrom v="4.0.253"/>deprecated in v4.0.409
<Options id="api-key" />dumpBrowserLogs?Deprecated in v4.0 in favor of logLevel.
Returns a promise resolving to an object containing four properties. Of these, renderId, bucketName are useful for passing to getRenderProgress().
renderIdA unique alphanumeric identifier for this render. Useful for obtaining status and finding the relevant files in the S3 bucket.
bucketNameThe S3 bucket name in which all files are being saved.
cloudWatchLogs<AvailableFrom v="3.2.10"/>A link to CloudWatch (if you haven't disabled it) that you can visit to see the logs for the render.
lambdaInsightsUrl<AvailableFrom v="4.0.61"/>A link to the Lambda Insights, if you enabled it.
folderInS3Console<AvailableFrom v="3.2.43"/>A link to the folder in the AWS console where each chunk and render is located.