SIAF / src /lib /types.ts
GUI-STUDIO
Add HF mini-apps and sync workflows
0f454b6
Raw
History Blame Contribute Delete
304 Bytes
export type T_Probe = {
videoCodec: string;
audioCodec: string;
hasSubs?: boolean;
duration?: number; // seconds
size?: number; // bytes
format_name?: string;
audioIndex?: number | null;
subIndex?: number | null;
bestVideoIndex?: number | null;
bestVideoBox?: Record<string, any>;
};