Mert

Results 543 comments of Mert

> Could it be possible to add HEIC support for Safari? Safari 17+ supports HEIC. Sure, I made a PR for it.

This should be fixed as of the current release. Be sure to delete the model cache volume so it downloads the updated models.

From what I understand, rotation is handled as a HEIF transformation, so the EXIF orientation is supposed to just be informational. If you rotate based on the tag, you'll have...

This is not so much an incorrect classification as it is the fact that we're trying to squeeze four fields (name, admin1Name, admin2Name, country) into three (city, state, country). The...

To give an example, `admin1Name` is New York (the state), `admin2Name` is Kings County, and then there are a bunch of neighborhoods like Brooklyn Heights for the `name`. So let's...

That's a great idea! We don't even ingest these tags into the database, much less use them. For reference, we ingest the geodata [here](https://github.com/immich-app/immich/blob/a2180a467d09c01ec41c1481e51c7485d5a82046/server/src/repositories/metadata.repository.ts#L104) and do the reverse geocoding [here](https://github.com/immich-app/immich/blob/a2180a467d09c01ec41c1481e51c7485d5a82046/server/src/repositories/metadata.repository.ts#L151).

Thanks for the detailed issue! > After migrating from WebP to Jpeg I noticed that all of the Jpeg files were left over inside the thumbnails folder This is an...

> I think that may also happen if a live preview video is uploaded before the image counterpart and the two are still not linked (on a fast server perhaps?)...

I think this is because of the Python GIL. When it compiles to OpenVINO, it holds onto the GIL and prevents other threads from executing. That means it can't respond...