mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
|
|
import { AssetEntity } from '@app/database/entities/asset.entity';
|
||
|
|
|
||
|
|
export interface IMp4ConversionProcessor {
|
||
|
|
/**
|
||
|
|
* The Asset entity that was saved in the database
|
||
|
|
*/
|
||
|
|
asset: AssetEntity;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type IVideoTranscodeJob = IMp4ConversionProcessor;
|