Add ffprobe button back to camera metrics page (#13572)

This commit is contained in:
Josh Hawkins
2024-09-05 09:51:33 -05:00
committed by GitHub
parent fe2fec81ac
commit 7e9a7ad49c
3 changed files with 274 additions and 37 deletions

View File

@@ -70,3 +70,17 @@ export type Vainfo = {
stdout: string;
stderr: string;
};
export type Ffprobe = {
return_code: number;
stderr: string;
stdout: {
programs: string[];
streams: {
avg_frame_rate: string;
codec_long_name: string;
height?: number;
width?: number;
}[];
};
};