Skip to main content

VERSION

You may import this constant to get the current version of Remotion.
This can be useful for displaying the Remotion version number in your application or for other version-specific operations.

Only the version of the remotion package will be reported. A version conflict with other Remotion packages cannot be ruled out.

Importing VERSION from remotion/version
ts
import { VERSION } from "remotion";
 
console.log(VERSION); // "4.0.57";
Importing VERSION from remotion/version
ts
import { VERSION } from "remotion";
 
console.log(VERSION); // "4.0.57";

You can also import it from remotion/version to avoid importing Remotion and its dependencies (React):

Importing VERSION from remotion/version
ts
import { VERSION } from "remotion/version";
 
console.log(VERSION); // "4.0.57";
Importing VERSION from remotion/version
ts
import { VERSION } from "remotion/version";
 
console.log(VERSION); // "4.0.57";

See also