UNPKG

n8n-nodes-mediafx

Version:

N8N custom nodes for video editing and media processing

15 lines (14 loc) 404 B
export interface FFmpegCapabilities { version: string; major: number; minor: number; patch: number; hasXfade: boolean; hasGlTransitions: boolean; } export declare function getFFmpegCapabilities(): Promise<FFmpegCapabilities>; export declare function checkTransitionSupport(transition: string): Promise<{ supported: boolean; alternative?: string; message?: string; }>;