UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

25 lines (24 loc) 800 B
import type { CodecOrUndefined } from '../codec'; export declare const videoImageFormatOption: { name: string; cliFlag: "image-format"; description: () => import("react/jsx-runtime").JSX.Element; ssrName: "imageFormat"; docLink: string; type: "jpeg" | "none" | "png" | null; getValue: ({ commandLine }: { commandLine: Record<string, unknown>; }, options?: { codec: CodecOrUndefined; uiVideoImageFormat: "jpeg" | "none" | "png" | null; compositionDefaultVideoImageFormat: "jpeg" | "none" | "png" | null; } | undefined) => { source: string; value: "jpeg" | "none" | "png"; } | { source: string; value: null; }; setConfig: (value: "jpeg" | "none" | "png" | null) => void; id: string; };