packages/docs/docs/bundle.mdx
Part of the @remotion/bundler package.
Bundles a Remotion project using Webpack and prepares it for rendering using renderMedia(). See a full server-side rendering example.
You only need to call this function when the source code changes. You can render multiple videos from the same bundle and parametrize them using input props.
Calling bundle() for every video that you render is an anti-pattern.
bundle() cannot be called in a serverless function, see: Calling bundle() in bundled code.
import path from 'path';
import {bundle} from '@remotion/bundler';
const serveUrl = await bundle({
entryPoint: path.join(process.cwd(), './src/index.ts'),
// If you have a webpack override in remotion.config.ts, pass it here as well.
webpackOverride: (config) => config,
});
entryPointA string containing an absolute path of the entry point of a Remotion project. In most Remotion project created with the template, the entry point is located at src/index.ts.
onProgress?A callback function that notifies about the progress of the Webpack bundling. Passes a number between 0 and 100. Example function:
const onProgress = (progress: number) => {
console.log(`Webpack bundling progress: ${progress}%`);
};
webpackOverride?A function to override the webpack config reducer-style. Takes a function which gives you the current webpack config which you can transform and return a modified version of it. For example:
import {WebpackOverrideFn} from '@remotion/bundler';
// ---cut---
const webpackOverride: WebpackOverrideFn = (webpackConfig) => {
return {
...webpackConfig,
// Override properties
};
};
outDir?Specify a desired output directory. If no passed, the webpack bundle will be created in a temp dir.
askAIEnabled?rspack?Whether to use Rspack instead of Webpack as the bundler. Default false.
keyboardShortcutsEnabled?enableCaching?publicPath?rootDir?<AvailableFrom v="3.1.6" />The directory in which the Remotion project is rooted in. This should be set to the directory that contains the package.json which installs Remotion. By default, it is the current working directory.
:::note The current working directory is the directory from which your program gets executed from. It is not the same as the file where bundle() gets called. :::
publicDir?<AvailableFrom v="3.2.13" />onPublicDirCopyProgress?<AvailableFrom v="3.3.3" />Reports progress of how many bytes have been written while copying the public/ directoy. Useful to warn the user if the directory is large that this operation is slow.
onSymlinkDetected?<AvailableFrom v="3.3.3" />Gets called when a symbolic link is detected in the public/ directory. Since Remotion will forward the symbolic link, it might be useful to display a hint to the user that if the original symbolic link gets deleted, the bundle will also break.
ignoreRegisterRootWarning?<AvailableFrom v="3.3.46" />Ignore an error that gets thrown if you pass an entry point file which does not contain registerRoot.
Remotion versions earlier than v3.2.17 had the following function signature instead:
const bundle: (
entryPoint: string,
onProgress?: (progress: number) => void,
options?: {
webpackOverride?: WebpackOverrideFn;
outDir?: string;
enableCaching?: boolean;
publicPath?: string;
rootDir?: string;
publicDir?: string | null;
},
) => Promise<string>;
Example:
await bundle('src/index.ts', () => console.log(progress * 100 + '% done'), {
webpackOverride,
});
It is still supported in Remotion v3, but we encourage to migrate to the new function signature.
A promise which will resolve into a string specifying the output directory.