@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
21 lines (20 loc) • 634 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>;
}) => {
source: string;
value: ProResProfile;
} | {
source: string;
value: undefined;
};
setConfig: (value: ProResProfile | undefined) => void;
id: "prores-profile";
};