fix(server): correct media info (#508)

* fix(server): correct media info

* fix(server): video metadata
This commit is contained in:
Thanh Pham 2022-08-21 12:58:47 +07:00 committed by GitHub
parent da9aed5c11
commit 7f9f825589
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 4 deletions

View file

@ -23,6 +23,16 @@ export interface IVideoLengthExtractionProcessor {
* The Asset entity that was saved in the database
*/
asset: AssetEntity;
/**
* Original file name
*/
fileName: string;
/**
* File size in byte
*/
fileSize: number;
}
export interface IReverseGeocodingProcessor {