6c7679714b
* refactor: jobs and processors * refactor: storage migration processor * fix: tests * fix: code warning * chore: ignore coverage from infra * fix: sync move asset logic between job core and asset core * refactor: move error handling inside of catch * refactor(server): job core into dedicated service calls * refactor: smart info * fix: tests * chore: smart info tests * refactor: use asset repository * refactor: thumbnail processor * chore: coverage reqs
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { IMediaRepository, ResizeOptions } from '@app/domain';
|
|
import { exiftool } from 'exiftool-vendored';
|
|
import ffmpeg from 'fluent-ffmpeg';
|
|
import sharp from 'sharp';
|
|
|
|
export class MediaRepository implements IMediaRepository {
|
|
extractThumbnailFromExif(input: string, output: string): Promise<void> {
|
|
return exiftool.extractThumbnail(input, output);
|
|
}
|
|
|
|
async resize(input: string, output: string, options: ResizeOptions): Promise<void> {
|
|
switch (options.format) {
|
|
case 'webp':
|
|
await sharp(input, { failOnError: false }).resize(250).webp().rotate().toFile(output);
|
|
return;
|
|
|
|
case 'jpeg':
|
|
await sharp(input, { failOnError: false })
|
|
.resize(options.size, options.size, { fit: 'outside', withoutEnlargement: true })
|
|
.jpeg()
|
|
.rotate()
|
|
.toFile(output);
|
|
return;
|
|
}
|
|
}
|
|
|
|
extractVideoThumbnail(input: string, output: string) {
|
|
return new Promise<void>((resolve, reject) => {
|
|
ffmpeg(input)
|
|
.outputOptions(['-ss 00:00:00.000', '-frames:v 1'])
|
|
.output(output)
|
|
.on('error', reject)
|
|
.on('end', resolve)
|
|
.run();
|
|
});
|
|
}
|
|
}
|