UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

8 lines (7 loc) 384 B
import type { Codec } from './codec'; export declare const proResProfileOptions: readonly ["4444-xq", "4444", "hq", "standard", "light", "proxy"]; export type ProResProfile = (typeof proResProfileOptions)[number]; export declare const validateSelectedCodecAndProResCombination: ({ codec, proResProfile, }: { codec: Codec; proResProfile: ProResProfile | undefined; }) => void;