@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
24 lines (23 loc) • 780 B
TypeScript
export type ProResProfile = '4444-xq' | '4444' | 'hq' | 'standard' | 'light' | 'proxy';
export declare const proResProfileOption: {
name: string;
cliFlag: "prores-profile";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: "proResProfile";
docLink: string;
type: ProResProfile | undefined;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}, options?: {
uiProResProfile: ProResProfile | undefined;
compositionDefaultProResProfile: ProResProfile | null;
} | undefined) => {
source: string;
value: ProResProfile;
} | {
source: string;
value: undefined;
};
setConfig: (value: ProResProfile | undefined) => void;
id: "prores-profile";
};