immich/server/libs/domain/src/system-config/dto/system-config-ffmpeg.dto.ts

23 lines
402 B
TypeScript
Raw Normal View History

import { IsEnum, IsString } from 'class-validator';
import { TranscodePreset } from '@app/infra/entities';
export class SystemConfigFFmpegDto {
@IsString()
crf!: string;
@IsString()
preset!: string;
@IsString()
targetVideoCodec!: string;
@IsString()
targetAudioCodec!: string;
@IsString()
targetResolution!: string;
@IsEnum(TranscodePreset)
transcode!: TranscodePreset;
}