Added resolution and audio bitrate to video info dialog

This commit is contained in:
Isaac Abadi
2022-06-23 01:44:19 -04:00
parent a2d1b154a3
commit b1448d95e5
5 changed files with 51 additions and 9 deletions

View File

@@ -32,4 +32,12 @@ export type DatabaseFile = {
local_view_count?: number;
sub_id?: string;
registered?: number;
/**
* In pixels, only for videos
*/
height?: number;
/**
* In Kbps
*/
abr?: number;
};