UNPKG

remotion

Version:

Make videos programmatically

13 lines (12 loc) 317 B
import type { Codec } from './codec'; export type VideoConfig = { width: number; height: number; fps: number; durationInFrames: number; id: string; defaultProps: Record<string, unknown>; props: Record<string, unknown>; defaultCodec: Codec | null; defaultOutName: string | null; };