@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
14 lines (13 loc) • 518 B
TypeScript
import type { DownloadMap } from './assets/download-map';
import type { FilterWithoutPaddingApplied } from './stringify-ffmpeg-filter';
export declare const makeFfmpegFilterFile: (complexFilter: FilterWithoutPaddingApplied, downloadMap: DownloadMap) => Promise<{
file: string;
cleanup: () => void;
}> | {
file: null;
cleanup: () => undefined;
};
export declare const makeFfmpegFilterFileStr: (complexFilter: string, downloadMap: DownloadMap) => Promise<{
file: string;
cleanup: () => void;
}>;