File size: 304 Bytes
0f454b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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>;
};
|