mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(server): refresh face detection (#12335)
* refresh faces handle non-ml faces * fix metadata face handling * updated tests * added todo comment
This commit is contained in:
parent
9edc9d6151
commit
2c87683fd4
21 changed files with 409 additions and 152 deletions
|
|
@ -8215,8 +8215,9 @@
|
|||
},
|
||||
"AssetJobName": {
|
||||
"enum": [
|
||||
"regenerate-thumbnail",
|
||||
"refresh-faces",
|
||||
"refresh-metadata",
|
||||
"regenerate-thumbnail",
|
||||
"transcode-video"
|
||||
],
|
||||
"type": "string"
|
||||
|
|
@ -9277,8 +9278,7 @@
|
|||
}
|
||||
},
|
||||
"required": [
|
||||
"command",
|
||||
"force"
|
||||
"command"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -554,7 +554,7 @@ export type JobCreateDto = {
|
|||
};
|
||||
export type JobCommandDto = {
|
||||
command: JobCommand;
|
||||
force: boolean;
|
||||
force?: boolean;
|
||||
};
|
||||
export type LibraryResponseDto = {
|
||||
assetCount: number;
|
||||
|
|
@ -3426,8 +3426,9 @@ export enum Reason {
|
|||
UnsupportedFormat = "unsupported-format"
|
||||
}
|
||||
export enum AssetJobName {
|
||||
RegenerateThumbnail = "regenerate-thumbnail",
|
||||
RefreshFaces = "refresh-faces",
|
||||
RefreshMetadata = "refresh-metadata",
|
||||
RegenerateThumbnail = "regenerate-thumbnail",
|
||||
TranscodeVideo = "transcode-video"
|
||||
}
|
||||
export enum AssetMediaSize {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue