@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
10 lines (9 loc) • 403 B
TypeScript
import type { LogLevel } from './log-level';
import type { CancelSignal } from './make-cancel-signal';
export declare const guessExtensionForVideo: ({ src, indent, logLevel, binariesDirectory, cancelSignal, }: {
src: string;
indent: boolean;
logLevel: LogLevel;
binariesDirectory: string | null;
cancelSignal: CancelSignal | undefined;
}) => Promise<"mp3" | "wav" | "mp4" | "webm">;