feat(server): read Android and Sony video camera make/model (#16678)

* feat(server): read Android and Sony video camera exif data

* Remove a logger line
This commit is contained in:
Snowknight26
2025-03-09 22:20:11 -05:00
committed by GitHub
parent 9870ad9687
commit 2f8e89c7ec
3 changed files with 28 additions and 2 deletions

View File

@@ -63,6 +63,14 @@ export interface ImmichTags extends Omit<Tags, TagsWithWrongTypes> {
Name?: string;
}[];
};
Device?: {
Manufacturer?: string;
ModelName?: string;
};
AndroidMake?: string;
AndroidModel?: string;
}
@Injectable()