useCurrentFrame()
With this hook, you can retrieve the current frame of the video. Frames are 0-indexed, meaning the first frame is 0
, the last frame is the duration of the composition in frames minus one. To learn more about how Remotion works with time, read the page about the fundamentals.
If the component you are writing is wrapped in a <Sequence>
, useCurrentFrame
will return the frame relative to when the Sequence starts.
Say the timeline marker is positioned at frame 25. In the example below, useCurrentFrame
will return 25
, except within the Subtitle component, where it will return 15
because it is within a sequence that starts at frame 10.
tsx
import {Sequence ,useCurrentFrame } from "remotion";ÂconstTitle = () => {constframe =useCurrentFrame (); // 25return <div >{frame }</div >;};ÂconstSubtitle = () => {constframe =useCurrentFrame (); // 15return <div >{frame }</div >;};ÂconstMyVideo = () => {constframe =useCurrentFrame (); // 25Âreturn (<div ><Title /><Sequence from ={10}><Subtitle /></Sequence ></div >);};
tsx
import {Sequence ,useCurrentFrame } from "remotion";ÂconstTitle = () => {constframe =useCurrentFrame (); // 25return <div >{frame }</div >;};ÂconstSubtitle = () => {constframe =useCurrentFrame (); // 15return <div >{frame }</div >;};ÂconstMyVideo = () => {constframe =useCurrentFrame (); // 25Âreturn (<div ><Title /><Sequence from ={10}><Subtitle /></Sequence ></div >);};