Server-Side Rendering (v1 and v2)
This documentation is how server-side rendering worked in Remotion v1 and Remotion v2. To see rendering in 3.0 and above, click here.
Remotion's rendering engine is built upon Node.JS, which makes it exceptionally easy to render a video in the cloud.
Since Remotion is built with tech (Node.JS, FFMPEG, Puppeteer) that works well cross-platform, you can without much hassle run it on a Linux-based system or even dockerize your video.
On this page, we demonstrate the server-rendering capabilities on Remotion using examples built into the template!
Render a video programmatically
The NPM package @remotion/renderer provides you with an API for rendering the videos programmatically. You can make a video in three steps: creating a Webpack bundle, rendering the frames, and stitching them together to a MP4. This gives you more independence and allows you for example to skip the stitching process, if you just want a PNG sequence.
Follow this commented example to see how to render a video:
tsx
tsx
Render using a HTTP server
In the template, we added a minimal example of an HTTP server that dynamically returns a video whenever you call the URL.
The server is located under server.tsx, and you can run it using npm run server. Call the default URL with parameters, and it will return a video after some time! Try it out in the browser or using cURL:
bash
bash
Note that we only added a minimal example. For production, you should consider adding a queueing system and rate limiting.
Render using a HTTP server (Dockerized)
We added a Dockerfile that includes FFMPEG and added it to the template. That means you can also run the server described in the section above using Docker.
bash
bash
Render using GitHub Actions
The template includes a GitHub Actions workflow file
under .github/workflows/render-video.yml. All you have to do is to adjust the props that your root component accepts in the workflow file and you can render a video right on GitHub.
- Commit the template to a GitHub repository
- On GitHub, click the 'Actions' tab.
- Select the 'Render video' workflow on the left.
- A 'Run workflow' button should appear. Click it
- Fill in the props of the root component and click 'Run workflow'.
- After the rendering is finished, you can download the video under 'Artifacts'.
Note that running the workflow may incur costs. However, the workflow will only run if you actively trigger it.
See also: Passing props in GitHub Actions
Rendering a video using serverless
We are working on a library which will help you render videos using AWS Lambda. Contact us if you are interested in testing an early version or read the #lambda channel on our Discord server.