@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
6 lines (5 loc) • 438 B
TypeScript
import type { StillImageFormat, VideoImageFormat } from '@remotion/renderer';
export declare const setStillImageFormat: (format: StillImageFormat) => void;
export declare const setVideoImageFormat: (format: VideoImageFormat) => void;
export declare const getUserPreferredStillImageFormat: () => "png" | "jpeg" | "pdf" | "webp" | undefined;
export declare const getUserPreferredVideoImageFormat: () => "png" | "jpeg" | "none" | undefined;