@remotion/licensing
available from v4.0.237
This package allows holders of the Company License to send events to Remotion to track the usage of renders.
Also, it offers an API to programmatically check the usage in order to implement spend controls.
How do I use this package?
Not directly - pass the licenseKey option in the renderer package you use.
Supported packages
@remotion/lambda: PasslicenseKeytorenderMediaOnLambda()andrenderStillOnLambda()to trigger an event.@remotion/vercel: PasslicenseKeytorenderMediaOnVercel()andrenderStillOnVercel()to trigger an event.@remotion/renderer: PasslicenseKeytorenderMedia()andrenderStill()to trigger an event.@remotion/web-renderer: An event is always sent. Pass a reallicenseKey, or declare eligibility for the free license withlicenseKey: "free-license". See Telemetry in client-side rendering.
Deprecated packages
@remotion/cloudrun: No telemetry is implemented. Use@remotion/licensingdirectly to track usage.@remotion/webcodecs: Telemetry was removed in v4.0.399 because this package is no longer monetized.
On your Company License dashboard on remotion.pro, you can find your license keys under the "Usage" tab.
Do I need to use this package?
For all versions below Remotion 5.0, it is voluntary to use this package.
An exception is @remotion/web-renderer, which will always send telemetry events.
If you are not eligible for the Free License, you need to get a Company License and are required to keep your allowance up to date.
From Remotion 5.0, telemetry reporting using the licenseKey option is mandatory for Remotion for Automators (render-based licensing).
For Remotion for Creators (seat-based licensing), telemetry reporting is optional. Remotion for Creators is meant for low-volume rendering within and for your own company, not to serve (personalized) videos to your end users.
Can I use this package to count renders if I am eligible for the Free License?
Yes, you may still create a project on remotion.pro and use this package to count renders.
You do not have to pay anything for the renders.
This package is only used to count the number of renders, not for billing.
Will I get charged based on the usage?
This package currently only counts renders, it does not bill you based on them.
If you are a Company License holder, you need to manually adjust your seat count on remotion.pro to cover all your renders.
However, the plan is to introduce a system that automatically bills you based on the usage, eliminating the need for you to manually adjust the seat count.
Installation
- Remotion CLI
- npm
- bun
- pnpm
- yarn
npx remotion add @remotion/licensing
This assumes you are currently using v4.0.429 of Remotion.npm i --save-exact @remotion/[email protected]
Also update
remotion and all `@remotion/*` packages to the same version.Remove all
^ character in front of the version numbers of it as it can lead to a version conflict.This assumes you are currently using v4.0.429 of Remotion.pnpm i @remotion/[email protected]
Also update
remotion and all `@remotion/*` packages to the same version.Remove all
^ character in front of the version numbers of it as it can lead to a version conflict.This assumes you are currently using v4.0.429 of Remotion.bun i @remotion/[email protected]
Also update
remotion and all `@remotion/*` packages to the same version.Remove all
^ character in front of the version numbers of it as it can lead to a version conflict.This assumes you are currently using v4.0.429 of Remotion.yarn --exact add @remotion/[email protected]
Also update
remotion and all `@remotion/*` packages to the same version.Remove all
^ character in front of the version numbers of it as it can lead to a version conflict.