ensureBrowser()v4.0.137
Ensures a browser is locally installed so a Remotion render can be executed.
Simple usagetsx
import {ensureBrowser } from "@remotion/renderer";awaitensureBrowser ();
Simple usagetsx
import {ensureBrowser } from "@remotion/renderer";awaitensureBrowser ();
Setting a specific Chrome version and listening to progresstsx
import {ensureBrowser } from "@remotion/renderer";awaitensureBrowser ({onBrowserDownload : () => {console .log ("Downloading browser");return {version : "123.0.6312.86",onProgress : ({percent }) => {console .log (`${Math .round (percent * 100)}% downloaded`);},};},});
Setting a specific Chrome version and listening to progresstsx
import {ensureBrowser } from "@remotion/renderer";awaitensureBrowser ({onBrowserDownload : () => {console .log ("Downloading browser");return {version : "123.0.6312.86",onProgress : ({percent }) => {console .log (`${Math .round (percent * 100)}% downloaded`);},};},});
API
An object with the following properties, all of which are optional:
browserExecutable
Pass a path to a browser executable that you want to use instead of downloading.
If the path does not exist, this function will throw.
Pass the same path to any other API that supports the browserExecutable
option.
logLevel
One of verbose
, info
, warn
, error
.Determines how much is being logged to the console.
verbose
will also log console.log
's from the browser.Default
info
.
onBrowserDownload
Specify a specific version of Chrome that should be used and hook into the download progress.
See the example below for the function signature.
init.tstsx
import {ensureBrowser ,OnBrowserDownload ,DownloadBrowserProgressFn ,} from "@remotion/renderer";constonProgress :DownloadBrowserProgressFn = ({percent ,downloadedBytes ,totalSizeInBytes ,}) => {console .log (`${Math .round (percent * 100)}% downloaded`);};constonBrowserDownload :OnBrowserDownload = () => {console .log ("Downloading browser");return {// Pass `null` to use Remotion's recommendation.version : "123.0.6312.86",onProgress ,};};awaitensureBrowser ({onBrowserDownload ,});
init.tstsx
import {ensureBrowser ,OnBrowserDownload ,DownloadBrowserProgressFn ,} from "@remotion/renderer";constonProgress :DownloadBrowserProgressFn = ({percent ,downloadedBytes ,totalSizeInBytes ,}) => {console .log (`${Math .round (percent * 100)}% downloaded`);};constonBrowserDownload :OnBrowserDownload = () => {console .log ("Downloading browser");return {// Pass `null` to use Remotion's recommendation.version : "123.0.6312.86",onProgress ,};};awaitensureBrowser ({onBrowserDownload ,});
Return value
A promise with no value.