I would like new images to be uploaded to Immich from my phone and deleted after 30 days automatically, so I was thinking about this flow:

  1. I will Sync files to the server using Syncthing

  2. I will Copy files from the Synced folder to an Immich Consume folder, (not sure how to copy only new files (maybe use created date)). Then delete images that are older than 30 days which will remove them from my phone.

  3. I will upload to Immich using Immich CLI (?) which will use the delete after upload flag.

Basically:  

(1)

Camera, Screenshots, etc =Syncthing=> SyncthingImageConsume/{Folder}

(2)

{Script on SyncthingImageConsume}

SyncthingImageConsume/{Folder} =CopyNewFiles=> ImmichConsume/{Folder}

Then delete older than 30 days.

(3)

{Script on ImmichConsume}

Upload to immich and then delete

 

would this work? and is there a better way to do it? any tips?

  • barbara@lemmy.ml
    link
    fedilink
    English
    arrow-up
    10
    ·
    7 months ago

    Better ways to upload images to immich?

    Maybe it’s a weird idea but did you try immich’s upload feature?

    • Mir@programming.devOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      I don’t want to manually upload pictures, I want new photos to be uploaded to Immich automatically and deleted from my phone after 30 days.

      Also the Immich backup on android is very limited, I can’t find all folders in the list it’s giving me

      • ShortN0te@lemmy.ml
        link
        fedilink
        English
        arrow-up
        5
        ·
        7 months ago

        Why not file a bug report when it does not find all your photos?

        Also may file a feature request to delete photos after set period from your device via immich?

        • Mir@programming.devOP
          link
          fedilink
          English
          arrow-up
          4
          ·
          7 months ago

          I will make sure that this doesn’t exist first before requesting a feature, thanks for the tip

  • LifeBandit666@feddit.uk
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 months ago

    Could Rsync help? In OMV I can Rsync shares and it will check the folder I’m syncing to and just upload new files.

    So you could Syncthing to the server folder then Rsync that folder to your Immich at xam every day, then just manually delete things from your Syncthing folder occasionally.

  • Shimitar@feddit.it
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 months ago

    Why such a mess? Either use immich with its upload or use syncthing (I use the latter).

    Immich sucks in providing folder based albums, but excells in phone photo backup and sync!

          • Shimitar@feddit.it
            link
            fedilink
            English
            arrow-up
            5
            ·
            7 months ago

            There are many.

            Personally I use both PiGallery2 (great folder view, super fast) and HomeGallery (innovative browsing approach, modern looks).

            They will both work with your existent file/folder structure and will update as you add or remove photos.

            • Mir@programming.devOP
              link
              fedilink
              English
              arrow-up
              1
              ·
              7 months ago

              Thank you for the suggestion, they seem to be readonly, I was hoping I could delete/rename photos using them.

      • rambos@lemm.ee
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        You can use external libraries in immich. You just point to any folder on your disk and you can see everything, but can’t edit files. Timeline, maps, face recognition, search,…everything works and you can still keep folder organized images.

        Personally I use both. Auto upload everything from my phone (camera, screenshots, etc) and also using external library as folder structured pictures from nextcloud. It doesn’t create albums automatically tho

  • rambos@lemm.ee
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 months ago

    Feels like you want a regular Immich auto upload and a custom script that deletes old images from your phone. I can’t help with that script, but maybe also I missunderstood what is your goal

    • Mir@programming.devOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      More or less yes. Except that the auto upload is limited I can’t figure out why most of albums aren’t showing

      • rambos@lemm.ee
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        Don’t expect albums in immich after upload. Immich will just put everything in timeline (by default) and you should make albums manually.

        Also, make sure you have exactly the same app version as server

        • Mir@programming.devOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          I just noticed something else that is mildly annoying, after I move them to album I have to run the template migration job to move to the correct folder.

  • Esca@lemmy.one
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 months ago

    I understand you. I also don’t use the auto upload feature as it’s creating more problems for me to solve than what it fixes. I already had Syncthing running anyway so I currently use that combo (except I manually sort through my photos on a semi-weekly basis before I upload it to Immich).

    If you want, I can cook up a little Python script you could stick into Cron to do all the tasks you described. I haven’t worked with the Immich CLI yet but I’m sure I can figure it out. Send me a message if you’re interested. I will probably use it myself as well.

    • Mir@programming.devOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      (except I manually sort through my photos on a semi-weekly basis before I upload it to Immich).

      I think that would be a better approach if I weren’t very lazy, I think even after the initial run I could do that since I don’t take lots of pictures but I was thinking about a fire and forget sort of thing.

      If you want, I can cook up a little Python script you could stick into Cron to do all the tasks you described.

      Thank you so much, I asked ChatGPT and it generated the bat file below (since I’m using Windows) do you think this would work?

      @echo off
      REM Change directory to your photos folder
      cd /d "C:\path\to\your\photos\folder"
      
      REM Sync files to backup folder
      robocopy . "C:\path\to\your\Camera_Backup" /mir /xo
      
      REM Delete files older than 15 days
      forfiles /p "C:\path\to\your\photos\folder" /s /m *.* /d -15 /c "cmd /c if @isdir==FALSE del @file"
      
      REM Upload assets using immich cli
      immich upload "C:\path\to\your\Camera_Backup" -r -a --delete
      
      • Esca@lemmy.one
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        7 months ago

        Ah, I am not familiar at all with Windows, so I honestly wouldn’t know. Does the Immich CLI even work on Windows?

        But going off by the comments and the parts I understand, I guess it could kinda work, assuming that the arguments are all correct. Although, it will try to upload all photos every time, regardless if Immich already has them or not. Which is not ideal but I believe Immich will filter out duplicated photos. But it’s worth checking if it’s indeed smart enough to do that.

        For the Immich command it will upload the files to an album called “Camera_Backup”. Not sure if that’s what you want. If not, then remove the -a flag. If you want to upload it to a specific album, then instead add ‘-A albumname’ (edit: I realize I might be wrong here. If you have multiple folders in Syncthing you’re backing up it will work differently)

        • Mir@programming.devOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          Although, it will try to upload all photos every time

          I will use the argument which makes it delete after upload, this way if it wasn’t deleted then it wasn’t uploaded and needs to be uploaded, hopefully the CLI is smart to do so.

          I want it to use the folder name as album name, I was hoping that it would do the same for nested folders

          • Esca@lemmy.one
            link
            fedilink
            English
            arrow-up
            1
            ·
            7 months ago

            The --delete flag is already in there so it should empty the camera_backup folder, but the robocopy will copy every single photo back into it the next run.

            • Mir@programming.devOP
              link
              fedilink
              English
              arrow-up
              1
              ·
              7 months ago

              Ah yes that just downed on me today, I need to figure out how to only copy new items