@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
13 lines (12 loc) • 495 B
TypeScript
import type { StillImageFormat, VideoImageFormat } from '@remotion/renderer';
export declare const determineFinalStillImageFormat: ({ downloadName, outName, configImageFormat, cliFlag, isLambda, fromUi, }: {
downloadName: string | null;
outName: string | null;
configImageFormat: StillImageFormat | null;
cliFlag: StillImageFormat | VideoImageFormat | null;
isLambda: boolean;
fromUi: StillImageFormat | null;
}) => {
format: StillImageFormat;
source: string;
};