@remotion/gif
You can install this package from NPM to get a component for displaying GIFs that synchronize with Remotions useCurrentFrame()
.
- npm
- yarn
- pnpm
bash
npm i @remotion/gif
bash
npm i @remotion/gif
bash
pnpm i @remotion/gif
bash
pnpm i @remotion/gif
bash
yarn add @remotion/gif
bash
yarn add @remotion/gif
Also update all the other Remotion packages to have the same version: remotion
, @remotion/cli
and others.
note
Make sure no package version number has a ^
character in front of it as it can lead to a version conflict.
Props
src
required
The source of the GIF. Can be an URL or a local image - see Importing assets.
info
Remote GIFs need to support CORS.
More info
- Remotion's origin is usually
http://localhost:3000
, but it may be different if rendering on Lambda or the port is busy. - You can disable CORS during renders.
width
The display width.
height
The display height.
fit
Must be one of these values:
'fill'
: The GIF will completely fill the container, and will be stretched if necessary. (default)'contain'
: The GIF is scaled to fit the box, while aspect ratio is maintained.'cover'
: The GIF completely fills the container and maintains it's aspect ratio. It will be cropped if necessary.
onLoad
Callback that gets called once the GIF has loaded and finished processing. As its only argument, the callback gives the following object:
loaded
: Will be alwaystrue
.width
: Width of the GIF file in pixels.height
: Height of the GIF file in pixels.delays
: Array of timestamps of typenumber
containing position of each frame.frames
: Array of frames of typeImageData
style
Allows to pass in custom CSS styles.
Example
tsx
import {Gif } from "@remotion/gif";export constMyComponent :React .FC = () => {const {width ,height } =useVideoConfig ();return (<Gif src ="https://media.giphy.com/media/3o72F7YT6s0EMFI0Za/giphy.gif"width ={width }height ={height }fit ="fill"/>);};
tsx
import {Gif } from "@remotion/gif";export constMyComponent :React .FC = () => {const {width ,height } =useVideoConfig ();return (<Gif src ="https://media.giphy.com/media/3o72F7YT6s0EMFI0Za/giphy.gif"width ={width }height ={height }fit ="fill"/>);};