Calculating the duration of a composition automatically
It is currently not supported to derive the duration of a composition be from the content. The reason for it are the following:
Not all compositions are finite:
Here is an example of a component of which it is impossible to calculate the duration of:InfiniteComposition.tsxtsximportReact from "react";import {useCurrentFrame } from "remotion";constInfiniteComposition :React .FC = () => {constframe =useCurrentFrame ();return <div >{frame }</div >;};InfiniteComposition.tsxtsximportReact from "react";import {useCurrentFrame } from "remotion";constInfiniteComposition :React .FC = () => {constframe =useCurrentFrame ();return <div >{frame }</div >;};<Series>
and<Sequence>
can be dynamic too
While it is true that many compositions use<Sequence>
or<Series>
from which the duration could be derived in many cases, it is also not a bulletproof solution.It is perfectly acceptable to change the
from
ordurationInFrames
of a<Sequence>
values over time:ChangingDuration.tsxtsximport {Sequence ,useCurrentFrame } from "remotion";constChangingDuration :React .FC = () => {constframe =useCurrentFrame ();return (// This is fine!<Sequence from ={frame }durationInFrames ={30}><div >Hello World!</div ></Sequence >);};ChangingDuration.tsxtsximport {Sequence ,useCurrentFrame } from "remotion";constChangingDuration :React .FC = () => {constframe =useCurrentFrame ();return (// This is fine!<Sequence from ={frame }durationInFrames ={30}><div >Hello World!</div ></Sequence >);};A practical usecase of this is to change the speed of a video over time.
Remotion is only aware of the current frame:
Remotion does not see the component statically like we do as developers, instead it only renders it at a certain point in time. To reliably determine when a component stops rendering markup, Remotion would have to loop through all frames until the markup stops which could be an expensive operation.
In summary, the dynamicity of React does not allow for a simple solution of deriving the duration reliably. We foresee that if a heuristic is used to determine the duration and it gets it wrong, it will lead to hard to debug cases.
We suggest to calculate the duration using the dynamic duration method described here.