README
Added documentation for new archiving feature
This commit is contained in:
parent
8ba71a43f1
commit
cd54a50c7a
1 changed files with 36 additions and 18 deletions
54
README.md
54
README.md
|
@ -23,8 +23,9 @@ This script is mostly based on the following original script: [REDVM/immich_auto
|
||||||
6. [Automatic Album Sharing](#automatic-album-sharing)
|
6. [Automatic Album Sharing](#automatic-album-sharing)
|
||||||
7. [Cleaning Up Albums](#cleaning-up-albums)
|
7. [Cleaning Up Albums](#cleaning-up-albums)
|
||||||
8. [Assets in Multiple Albums](#assets-in-multiple-albums)
|
8. [Assets in Multiple Albums](#assets-in-multiple-albums)
|
||||||
9. [Setting Album Thumbnails](#setting-album-thumbnails)
|
9. [Setting Album Thumbnails](#setting-album-thumbnails)#
|
||||||
10. [Dealing with External Library Changes](#dealing-with-external-library-changes)
|
10. [Automatic Archiving](#automatic-archiving)
|
||||||
|
11. [Dealing with External Library Changes](#dealing-with-external-library-changes)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
### Bare Python Script
|
### Bare Python Script
|
||||||
|
@ -39,8 +40,8 @@ This script is mostly based on the following original script: [REDVM/immich_auto
|
||||||
```
|
```
|
||||||
3. Run the script
|
3. Run the script
|
||||||
```
|
```
|
||||||
usage: immich_auto_album.py [-h] [-r ROOT_PATH] [-u] [-a ALBUM_LEVELS] [-s ALBUM_SEPARATOR] [-c CHUNK_SIZE] [-C FETCH_CHUNK_SIZE] [-l {CRITICAL,ERROR,WARNING,INFO,DEBUG}] [-k] [-i IGNORE] [-m {CREATE,CLEANUP,DELETE_ALL}] [-d] [-x SHARE_WITH] [-o {viewer,editor}] [-S {0,1,2}] [-O {False,asc,desc}] [-A]
|
usage: immich_auto_album.py [-h] [-r ROOT_PATH] [-u] [-a ALBUM_LEVELS] [-s ALBUM_SEPARATOR] [-c CHUNK_SIZE] [-C FETCH_CHUNK_SIZE] [-l {CRITICAL,ERROR,WARNING,INFO,DEBUG}] [-k] [-i IGNORE] [-m {CREATE,CLEANUP,DELETE_ALL}] [-d] [-x SHARE_WITH] [-o {viewer,editor}]
|
||||||
[-f PATH_FILTER] [--set-album-thumbnail {first,last,random,random-all,random-filtered}]
|
[-S {0,1,2}] [-O {False,asc,desc}] [-A] [-f PATH_FILTER] [--set-album-thumbnail {first,last,random,random-all,random-filtered}] [-v] [--find-archived-assets]
|
||||||
root_path api_url api_key
|
root_path api_url api_key
|
||||||
|
|
||||||
Create Immich Albums from an external library path based on the top level folders
|
Create Immich Albums from an external library path based on the top level folders
|
||||||
|
@ -56,8 +57,8 @@ This script is mostly based on the following original script: [REDVM/immich_auto
|
||||||
Additional external libarary root path in Immich; May be specified multiple times for multiple import paths or external libraries. (default: None)
|
Additional external libarary root path in Immich; May be specified multiple times for multiple import paths or external libraries. (default: None)
|
||||||
-u, --unattended Do not ask for user confirmation after identifying albums. Set this flag to run script as a cronjob. (default: False)
|
-u, --unattended Do not ask for user confirmation after identifying albums. Set this flag to run script as a cronjob. (default: False)
|
||||||
-a ALBUM_LEVELS, --album-levels ALBUM_LEVELS
|
-a ALBUM_LEVELS, --album-levels ALBUM_LEVELS
|
||||||
Number of sub-folders or range of sub-folder levels below the root path used for album name creation. Positive numbers start from top of the folder structure, negative numbers from the bottom. Cannot be 0. If a range should be set, the start level and end level must be separated by a comma
|
Number of sub-folders or range of sub-folder levels below the root path used for album name creation. Positive numbers start from top of the folder structure, negative numbers from the bottom. Cannot be 0. If a range should be set, the start level
|
||||||
like '<startLevel>,<endLevel>'. If negative levels are used in a range, <startLevel> must be less than or equal to <endLevel>. (default: 1)
|
and end level must be separated by a comma like '<startLevel>,<endLevel>'. If negative levels are used in a range, <startLevel> must be less than or equal to <endLevel>. (default: 1)
|
||||||
-s ALBUM_SEPARATOR, --album-separator ALBUM_SEPARATOR
|
-s ALBUM_SEPARATOR, --album-separator ALBUM_SEPARATOR
|
||||||
Separator string to use for compound album names created from nested folders. Only effective if -a is set to a value > 1 (default: )
|
Separator string to use for compound album names created from nested folders. Only effective if -a is set to a value > 1 (default: )
|
||||||
-c CHUNK_SIZE, --chunk-size CHUNK_SIZE
|
-c CHUNK_SIZE, --chunk-size CHUNK_SIZE
|
||||||
|
@ -70,26 +71,30 @@ This script is mostly based on the following original script: [REDVM/immich_auto
|
||||||
-i IGNORE, --ignore IGNORE
|
-i IGNORE, --ignore IGNORE
|
||||||
Use either literals or glob-like patterns to ignore assets for album name creation. This filter is evaluated after any values passed with --path-filter. May be specified multiple times. (default: None)
|
Use either literals or glob-like patterns to ignore assets for album name creation. This filter is evaluated after any values passed with --path-filter. May be specified multiple times. (default: None)
|
||||||
-m {CREATE,CLEANUP,DELETE_ALL}, --mode {CREATE,CLEANUP,DELETE_ALL}
|
-m {CREATE,CLEANUP,DELETE_ALL}, --mode {CREATE,CLEANUP,DELETE_ALL}
|
||||||
Mode for the script to run with. CREATE = Create albums based on folder names and provided arguments; CLEANUP = Create album nmaes based on current images and script arguments, but delete albums if they exist; DELETE_ALL = Delete all albums. If the mode is anything but CREATE, --unattended
|
Mode for the script to run with. CREATE = Create albums based on folder names and provided arguments; CLEANUP = Create album nmaes based on current images and script arguments, but delete albums if they exist; DELETE_ALL = Delete all albums. If the
|
||||||
does not have any effect. Only performs deletion if -d/--delete-confirm option is set, otherwise only performs a dry-run. (default: CREATE)
|
mode is anything but CREATE, --unattended does not have any effect. Only performs deletion if -d/--delete-confirm option is set, otherwise only performs a dry-run. (default: CREATE)
|
||||||
-d, --delete-confirm Confirm deletion of albums when running in mode CLEANUP or DELETE_ALL. If this flag is not set, these modes will perform a dry run only. Has no effect in mode CREATE (default: False)
|
-d, --delete-confirm Confirm deletion of albums when running in mode CLEANUP or DELETE_ALL. If this flag is not set, these modes will perform a dry run only. Has no effect in mode CREATE (default: False)
|
||||||
-x SHARE_WITH, --share-with SHARE_WITH
|
-x SHARE_WITH, --share-with SHARE_WITH
|
||||||
A user name (or email address of an existing user) to share newly created albums with. Sharing only happens if the album was actually created, not if new assets were added to an existing album. If the the share role should be specified by user, the format <userName>=<shareRole> must be used,
|
A user name (or email address of an existing user) to share newly created albums with. Sharing only happens if the album was actually created, not if new assets were added to an existing album. If the the share role should be specified by user, the
|
||||||
where <shareRole> must be one of 'viewer' or 'editor'. May be specified multiple times to share albums with more than one user. (default: None)
|
format <userName>=<shareRole> must be used, where <shareRole> must be one of 'viewer' or 'editor'. May be specified multiple times to share albums with more than one user. (default: None)
|
||||||
-o {viewer,editor}, --share-role {viewer,editor}
|
-o {viewer,editor}, --share-role {viewer,editor}
|
||||||
The default share role for users newly created albums are shared with. Only effective if --share-with is specified at least once and the share role is not specified within --share-with. (default: viewer)
|
The default share role for users newly created albums are shared with. Only effective if --share-with is specified at least once and the share role is not specified within --share-with. (default: viewer)
|
||||||
-S {0,1,2}, --sync-mode {0,1,2}
|
-S {0,1,2}, --sync-mode {0,1,2}
|
||||||
Synchronization mode to use. Synchronization mode helps synchronizing changes in external libraries structures to Immich after albums have already been created. Possible Modes: 0 = do nothing; 1 = Delete any empty albums; 2 = Trigger offline asset removal (REQUIRES API KEY OF AN ADMIN USER!)
|
Synchronization mode to use. Synchronization mode helps synchronizing changes in external libraries structures to Immich after albums have already been created. Possible Modes: 0 = do nothing; 1 = Delete any empty albums; 2 = Trigger offline asset
|
||||||
(default: 0)
|
removal (REQUIRES API KEY OF AN ADMIN USER!) (default: 0)
|
||||||
-O {False,asc,desc}, --album-order {False,asc,desc}
|
-O {False,asc,desc}, --album-order {False,asc,desc}
|
||||||
Set sorting order for newly created albums to newest or oldest file first, Immich defaults to newest file first (default: False)
|
Set sorting order for newly created albums to newest or oldest file first, Immich defaults to newest file first (default: False)
|
||||||
-A, --find-assets-in-albums
|
-A, --find-assets-in-albums
|
||||||
By default, the script only finds assets that are not assigned to any album yet. Set this option to make the script discover assets that are already part of an album and handle them as usual. (default: False)
|
By default, the script only finds assets that are not assigned to any album yet. Set this option to make the script discover assets that are already part of an album and handle them as usual. If --find-archived-assets is set as well, both options
|
||||||
|
apply. (default: False)
|
||||||
-f PATH_FILTER, --path-filter PATH_FILTER
|
-f PATH_FILTER, --path-filter PATH_FILTER
|
||||||
Use either literals or glob-like patterns to filter assets before album name creation. This filter is evaluated before any values passed with --ignore. May be specified multiple times. (default: None)
|
Use either literals or glob-like patterns to filter assets before album name creation. This filter is evaluated before any values passed with --ignore. May be specified multiple times. (default: None)
|
||||||
--set-album-thumbnail {first,last,random,random-all,random-filtered}
|
--set-album-thumbnail {first,last,random,random-all,random-filtered}
|
||||||
Set first/last/random image as thumbnail for newly created albums or albums assets have been added to. If set to random-filtered, thumbnails are shuffled for all albums whose assets would not be filtered out or ignored by the ignore or path-filter options, even if no assets were added during
|
Set first/last/random image as thumbnail for newly created albums or albums assets have been added to. If set to random-filtered, thumbnails are shuffled for all albums whose assets would not be filtered out or ignored by the ignore or path-filter
|
||||||
the run. If set to random-all, the thumbnails for ALL albums will be shuffled on every run. (default: None)
|
options, even if no assets were added during the run. If set to random-all, the thumbnails for ALL albums will be shuffled on every run. (default: None)
|
||||||
|
-v, --archive Set this option to automatically archive all assets that were newly added to albums. If this option is set in combination with --mode = CLEANUP or DELETE_ALL, archived images of deleted albums will be unarchived. Archiving hides the assets from Immich's timeline. (default: False)
|
||||||
|
--find-archived-assets
|
||||||
|
By default, the script only finds assets that are not archived in Immich. Set this option to make the script discover assets that are already archived. If -A/--find-assets-in-albums is set as well, both options apply. (default: False)
|
||||||
```
|
```
|
||||||
|
|
||||||
__Plain example without optional arguments:__
|
__Plain example without optional arguments:__
|
||||||
|
@ -123,10 +128,11 @@ The environment variables are analoguous to the script's command line arguments.
|
||||||
| SHARE_ROLE | no | The role for users newly created albums are shared with. Only effective if `SHARE_WITH` is not empty and no explicit share role was specified for at least one user. (default: viewer), allowed values: `viewer`, `editor` |
|
| SHARE_ROLE | no | The role for users newly created albums are shared with. Only effective if `SHARE_WITH` is not empty and no explicit share role was specified for at least one user. (default: viewer), allowed values: `viewer`, `editor` |
|
||||||
| SYNC_MODE | no | Synchronization mode to use. Synchronization mode helps synchronizing changes in external libraries structures to Immich after albums have already been created. Possible Modes: <br>`0` = do nothing<br>`1` = Delete any empty albums<br>`2` = Trigger offline asset removal (REQUIRES API KEY OF AN ADMIN USER!)<br>(default: `0`)<br>Refer to [Dealing with External Library Changes](#dealing-with-external-library-changes). |
|
| SYNC_MODE | no | Synchronization mode to use. Synchronization mode helps synchronizing changes in external libraries structures to Immich after albums have already been created. Possible Modes: <br>`0` = do nothing<br>`1` = Delete any empty albums<br>`2` = Trigger offline asset removal (REQUIRES API KEY OF AN ADMIN USER!)<br>(default: `0`)<br>Refer to [Dealing with External Library Changes](#dealing-with-external-library-changes). |
|
||||||
| ALBUM_ORDER | no | Set sorting order for newly created albums to newest (`desc`) or oldest (`asc`) file first, Immich defaults to newest file first, allowed values: `asc`, `desc` |
|
| ALBUM_ORDER | no | Set sorting order for newly created albums to newest (`desc`) or oldest (`asc`) file first, Immich defaults to newest file first, allowed values: `asc`, `desc` |
|
||||||
| FIND_ASSETS_IN_ALBUMS | no | By default, the script only finds assets that are not assigned to any album yet. Set this option to make the script discover assets that are already part of an album and handle them as usual. (default: `False`)<br>Refer to [Assets in Multiple Albums](#assets-in-multiple-albums). |
|
| FIND_ASSETS_IN_ALBUMS | no | By default, the script only finds assets that are not assigned to any album yet. Set this option to make the script discover assets that are already part of an album and handle them as usual. If --find-archived-assets is set as well, both options apply. (default: `False`)<br>Refer to [Assets in Multiple Albums](#assets-in-multiple-albums). |
|
||||||
| PATH_FILTER | no | A colon `:` separated list of literals or glob-style patterns to filter assets before album name creation. (default: ``)<br>Refer to [Filtering](#filtering). |
|
| PATH_FILTER | no | A colon `:` separated list of literals or glob-style patterns to filter assets before album name creation. (default: ``)<br>Refer to [Filtering](#filtering). |
|
||||||
| SET_ALBUM_THUMBNAIL | no | Set first/last/random image as thumbnail (based on image creation timestamp) for newly created albums or albums assets have been added to.<br> Allowed values: `first`,`last`,`random`,`random-filtered`,`random-all`<br>If set to `random-filtered`, thumbnails are shuffled for all albums whose assets would not be filtered out or ignored by the `IGNORE` or `PATH_FILTER` options, even if no assets were added during
|
| SET_ALBUM_THUMBNAIL | no | Set first/last/random image as thumbnail (based on image creation timestamp) for newly created albums or albums assets have been added to.<br> Allowed values: `first`,`last`,`random`,`random-filtered`,`random-all`<br>If set to `random-filtered`, thumbnails are shuffled for all albums whose assets would not be filtered out or ignored by the `IGNORE` or `PATH_FILTER` options, even if no assets were added during the run. If set to random-all, the thumbnails for ALL albums will be shuffled on every run. (default: `None`)<br>Refer to [Setting Album Thumbnails](#setting-album-thumbnails). |
|
||||||
the run. If set to random-all, the thumbnails for ALL albums will be shuffled on every run. (default: `None`)<br>Refer to [Setting Album Thumbnails](#setting-album-thumbnails). |
|
| ARCHIVE | no | Set this option to automatically archive all assets that were newly added to albums.<br>If this option is set in combination with `MODE` = `CLEANUP` or `DELETE_ALL`, archived images of deleted albums will be unarchived.<br>Archiving hides the assets from Immich's timeline. (default: `False`)<br>Refer to [Automatic Archiving](#automatic-archiving). |
|
||||||
|
| FIND_ARCHIVED_ASSETS | no | y default, the script only finds assets that are not archived in Immich. Set this option make the script discover assets that are already archived. If -A/--find-assets-in-albums is set as well, both options apply. (default: `False`)<br>Refer to [Automatic Archiving](#automatic-archiving). |
|
||||||
|
|
||||||
#### Run the container with Docker
|
#### Run the container with Docker
|
||||||
|
|
||||||
|
@ -423,6 +429,18 @@ Furthermore, the script supports two additional modes that are applied __even i
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> Updating album thumbnails cannot be reverted!
|
> Updating album thumbnails cannot be reverted!
|
||||||
|
|
||||||
|
## Automatic Archiving
|
||||||
|
|
||||||
|
In Immich, 'archiving' an image means to hide it from the main timeline.
|
||||||
|
This script is capable of automatically archiving images it added to albums during the run to hide them from the timeline. To achieve this, run the script with option `--archive` or Docker environment variable `ARCHIVE=true`.
|
||||||
|
|
||||||
|
>[!IMPORTANT]
|
||||||
|
>Archiving images has the side effect that they are no longer detected by the script with default options. This means that if an album that was created with the `--archive` option set is deleted from the Immich user interface, the script will no longer find the images even though they are no longer assigned to an album.
|
||||||
|
To make the script find also archived images, run the script with the option `--find-archived-assets` or Docker environment variable `FIND_ARCHIVED_ASSETS=true`.
|
||||||
|
|
||||||
|
>[!WARNING]
|
||||||
|
>If the script is used to delete albums using `--mode=CLEANUP` or `--mode=DELETE_ALL` with the `--archive` option set, the script will automatically unarchive all assets of deleted albums to revert them to their prior state. If you manually archived selected assets in albums, this will be reverted!
|
||||||
|
|
||||||
## Dealing with External Library Changes
|
## Dealing with External Library Changes
|
||||||
|
|
||||||
Due to their nature, external libraries may be changed by the user without Immich having any say in it.
|
Due to their nature, external libraries may be changed by the user without Immich having any say in it.
|
||||||
|
|
Loading…
Reference in a new issue