UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

14 lines (13 loc) 637 B
import type { AudioOrVideoAsset } from 'remotion/no-react'; import type { LogLevel } from '../log-level'; import type { FrameAndAssets } from '../render-frames'; import type { RenderMediaOnDownload } from './download-and-map-assets-to-file'; import type { DownloadMap } from './download-map'; export declare const convertAssetsToFileUrls: ({ assets, onDownload, downloadMap, indent, logLevel, binariesDirectory, }: { assets: FrameAndAssets[]; onDownload: RenderMediaOnDownload; downloadMap: DownloadMap; indent: boolean; logLevel: LogLevel; binariesDirectory: string | null; }) => Promise<AudioOrVideoAsset[][]>;