@remotion/preload
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {TableOfContents} from '../../components/TableOfContents/preload';
This package provides functions for preloading assets. While preload is not necessary for rendering, it can help with seamless playback in the <Player />
and in the Studio. Currently, three functions are implemented:
An alternative to @remotion/preload
is the prefetch()
API. See @remotion/preload
vs prefetch()
to decide which one is better for your usecase.
Installation
<Tabs
defaultValue="npm"
values={[
{ label: 'npm', value: 'npm', },
{ label: 'yarn', value: 'yarn', },
{ label: 'pnpm', value: 'pnpm', },
]
}>
bash
npm i @remotion/preload
bash
npm i @remotion/preload
bash
pnpm i @remotion/preload
bash
pnpm i @remotion/preload
bash
yarn add @remotion/preload
bash
yarn add @remotion/preload
Also update all the other Remotion packages to have the same version: remotion
, @remotion/cli
and others.
Make sure no package version number has a ^
character in front of it as it can lead to a version conflict.