mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(server): exif gps decoding (#6138)
This commit is contained in:
parent
08fcce9e90
commit
902977f165
3 changed files with 43 additions and 43 deletions
|
|
@ -457,7 +457,7 @@ export class MetadataService {
|
|||
fileSizeInByte: stats.size,
|
||||
fNumber: validate(tags.FNumber),
|
||||
focalLength: validate(tags.FocalLength),
|
||||
fps: validate(tags.VideoFrameRate),
|
||||
fps: validate(parseFloat(tags.VideoFrameRate!)),
|
||||
iso: validate(tags.ISO),
|
||||
latitude: validate(tags.GPSLatitude),
|
||||
lensModel: tags.LensModel ?? null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue