github simulot/immich-go v0.3.1
v0.3.1 Google takout refactoring

latest releases: 0.22.0, 1.21.3, 0.21.3...
11 months ago

The takeout archive has flaws making the import task difficult and and error prone.
I have rewritten this part of the program to fix most of encountered error.

google photos: can't find image of album #11

Some image may miss from the album's folder. Those images files are located into the year folder.
This fix looks for album images in the whole archive.

photos with same name into the year folder #12

Iphones and digital cameras produce images with the sequence number of 4 digits. This leads inevitably to have several images with the same number in the the year folder.

Google Photos disambiguates the files name by adding a counter at the end of the image file:

  • IMG_3479.JPG
  • IMG_3479(1).JPG
  • IMG_3479(2).JPG

Surprisingly, matching JSON are named as

  • IMG_3479.JPG.json
  • IMG_3479.JPG(1).json
  • IMG_3479.JPG(2).json

This special case is now handled.

Untitled albums are now handled correctly

Untitled albums now are named after the album's folder name.

This address partially the issue #19.

can't find the image with title "", pattern: ".": file does not exist: "___" #21

The refactoring of the code don't use anymore a file pattern to find files in the archive.
The image and the JSON file are quite identical, except for duplicate image (see #12) or when the file name is too long (how long is too long?).

Now, the program takes the image name, check if there is a JSON that matches, open it and use the title of the image to name the upload.

If the JSON isn't found, the image is uploaded with it's name in the archive, and with no date. Now all images are uploaded to immich, even when the JSON file is not found.

MPG files not supported. #20

Immich-go now accepts the same list of extension as the immich-server. This list is taken from the server source code.

immich-go detects raw and jpg as duplicates #25

The duplicate checker now uses the file name, its extension and the date of take to detect duplicates.
So the system doesn't signal IMG_3479.JPG and IMG_3479.CR2 as duplicate anymore.

fix duplicate check before uploading #29

The date parsing now takes into account the time zone of the machine (ex: Europe/Paris). This handles correctly summer time and winter time.
This isn't yet tested on Window or Mac machines.

Changelog

  • 77f5f0c Merge branch 'main' of github.com:simulot/immich-go
  • 61bb736 fix #29 date comparison before uploading file
  • 47283c3 fix darwin compilation
  • fd63325 fix release link in README.md (#22)
  • d9b0165 google photos: disregard album metadata and use dir name as album title
  • ee4ef82 refactor google photo fix for #11 #12 #21 #20 #25
  • 49b387d update readme.md

Don't miss a new immich-go release

NewReleases is sending notifications on new releases.