mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
Support HEIC/HEIF (#16)
* Support HEIC/HEIF backup * Storing backup directly from original file from the phone * Directly read and backup video file - Improve performance on video backup
This commit is contained in:
parent
f578ca6d47
commit
38c968d47e
15 changed files with 252 additions and 232 deletions
|
|
@ -17,14 +17,6 @@ import { BullModule } from '@nestjs/bull';
|
|||
removeOnFail: false,
|
||||
},
|
||||
}),
|
||||
BullModule.registerQueue({
|
||||
name: 'machine-learning',
|
||||
defaultJobOptions: {
|
||||
attempts: 3,
|
||||
removeOnComplete: true,
|
||||
removeOnFail: false,
|
||||
},
|
||||
}),
|
||||
TypeOrmModule.forFeature([AssetEntity]),
|
||||
ImageOptimizeModule,
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import { AssetEntity, AssetType } from './entities/asset.entity';
|
|||
import _ from 'lodash';
|
||||
import { GetAllAssetQueryDto } from './dto/get-all-asset-query.dto';
|
||||
import { GetAllAssetReponseDto } from './dto/get-all-asset-response.dto';
|
||||
import { Greater } from '@tensorflow/tfjs-core';
|
||||
|
||||
@Injectable()
|
||||
export class AssetService {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue