Contributing to Remotion
Issues and pull requests of all sorts are welcome!
For bigger projects, please coordinate with Jonny Burger (jonny@remotion.dev, Discord: @jonnyburger) to make sure your changes get merged.
Please note that since we charge for Remotion when companies are using it, this is a commercial project.
By sending pull requests, you agree that we can use your code changes in a commercial context.
Furthermore, also note that you cannot redistribute this project. Please see LICENSE.md for what's allowed and what's not.
This project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Setup
pnpm v8.10.2 as the package manager for development in this repository. We recommend using Corepack so you get the same version of pnpm as we have. sh
sh
If you don't have corepack, install pnpm@8.10.2 manually:
sh
sh
Prefix with sudo if necessary.
The version must be 8.10.2.
We use Bun to speed up some parts of the build.
Install at least Bun 1.1.7 on your system - see https://bun.sh/ for instructions.
sh
sh
The full Git history of Remotion is large. To save time and disk space, we recommend adding --depth=1 to only clone the most recent main branch.
sh
sh
sh
sh
sh
sh
Testing your changes
You can start the Testbed using
sh
sh
You can render a test video using
sh
sh
You can run tests using
sh
sh
in either a subpackage to run tests for that package or in the root to run all tests.
Running the @remotion/player testbed
You can test changes to @remotion/player by starting the Player testbed:
sh
sh
For information about testing, please consult TESTING.md. Issues and pull requests of all sorts are welcome!
Running documentation
You can run the Docusaurus server that powers our docs using:
sh
sh
Running the CLI
You can test changes to the CLI by moving to packages/examples directory and using pnpm exec to execute the CLI:
sh
sh
Troubleshooting
If your pnpm build throws errors, oftentimes it is because of caching issues. You can resolve many of these errors by running
ts
ts
in the root directory. Make sure to beforehand kill any pnpm watch commands, as those might regenerate files as you clean them!
Developing Rust parts
To develop the Rust parts of Remotion, see the README in packages/renderer/README.md