Plex-Meta-Manager/docs/files/arr.md

86 lines
9 KiB
Markdown
Raw Normal View History

2022-11-03 19:44:01 +00:00
# Radarr/Sonarr Definition Settings
2022-03-08 08:06:22 +00:00
2022-11-03 19:44:01 +00:00
## Radarr Definition Settings
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
All the following attributes can override the global/library [Radarr](../config/radarr.md) attributes which are the
default unless otherwise specified.
2022-03-08 08:06:22 +00:00
| Attribute | Description & Values |
|:--------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2022-10-05 05:55:17 +00:00
| `radarr_add_missing` | **Description:** Override Radarr `add_missing` attribute<br>**Values:** `true` or `false` |
| `radarr_add_existing` | **Description:** Override Radarr `add_existing` attribute<br>**Values:** `true` or `false` |
| `radarr_upgrade_existing` | **Description:** Override Radarr `upgrade_existing` attribute<br>**Values:** `true` or `false` |
| `radarr_monitor_existing` | **Description:** Override Radarr `monitor_existing` attribute<br>**Values:** `true` or `false` |
| `radarr_ignore_cache` | **Description:** Override Radarr `ignore_cache` attribute<br>**Values:** `true` or `false` |
2022-10-05 05:55:17 +00:00
| `radarr_folder` | **Description:** Override Radarr `root_folder_path` attribute<br>**Values:** Folder Path |
2022-11-30 21:20:46 +00:00
| `radarr_monitor` | **Description:** Override Radarr `monitor` attribute<br>**Values:** `movie`, `collection`, or `none` |
2022-10-05 05:55:17 +00:00
| `radarr_availability` | **Description:** Override Radarr `availability` attribute<br>**Values:** `announced`, `cinemas`, `released`, `db` |
| `radarr_quality` | **Description:** Override Radarr `quality_profile` attribute<br>**Values:** Radarr Quality Profile |
| `radarr_tag` | **Description:** Override Radarr `tag` attribute<br>**Values:** List or comma-separated string of tags |
| `radarr_search` | **Description:** Override Radarr `search` attribute<br>**Values:** `true` or `false` |
| `item_radarr_tag` | **Description:** Used to append a tag in Radarr for every movie found by the builders that's in Radarr<br>**Values:** List or comma-separated string of tags |
| `item_radarr_tag.remove` | **Description:** Used to remove existing tags in Radarr for every movie found by the builders that's in Radarr<br>**Values:** List or comma-separated string of tags |
| `item_radarr_tag.sync` | **Description:** Matches the tags in Radarr for every movie found by the builders that's in Radarr with the provided tags<br>**Values:** List or comma-separated string of tags |
2022-03-08 08:06:22 +00:00
2022-11-03 19:44:01 +00:00
## Sonarr Definition Settings
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
All the following attributes can override the global/library [Sonarr](../config/sonarr.md) attributes which are the
default unless otherwise specified.
2022-03-08 08:06:22 +00:00
| Attribute | Description & Values |
|:--------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2022-10-05 05:55:17 +00:00
| `sonarr_add_missing` | **Description:** Override Sonarr `add_missing` attribute<br>**Values:** `true` or `false` |
| `sonarr_add_existing` | **Description:** Override Sonarr `add_existing` attribute<br>**Values:** `true` or `false` |
| `sonarr_upgrade_existing` | **Description:** Override Sonarr `upgrade_existing` attribute<br>**Values:** `true` or `false` |
| `sonarr_monitor_existing` | **Description:** Override Sonarr `monitor_existing` attribute<br>**Values:** `true` or `false` |
| `sonarr_ignore_cache` | **Description:** Override Sonarr `ignore_cache` attribute<br>**Values:** `true` or `false` |
2022-10-05 05:55:17 +00:00
| `sonarr_folder` | **Description:** Override Sonarr `root_folder_path` attribute<br>**Values:** Folder Path |
| `sonarr_monitor` | **Description:** Override Sonarr `monitor` attribute<br>**Values:** `all`, `future`, `missing`, `existing`, `pilot`, `first`, `latest`, `none` |
| `sonarr_quality` | **Description:** Override Sonarr `quality_profile` attribute<br>**Values:** Sonarr Quality Profile |
| `sonarr_language` | **Description:** Override Sonarr `language_profile` attribute<br>**Values:** Sonarr Language Profile |
| `sonarr_series` | **Description:** Override Sonarr `series_type` attribute<br>**Values:** `standard`, `daily`, `anime` |
| `sonarr_season` | **Description:** Override Sonarr `season_folder` attribute<br>**Values:** `true` or `false` |
| `sonarr_tag` | **Description:** Override Sonarr `tag` attribute<br>**Values:** List or comma-separated string of tags |
| `sonarr_search` | **Description:** Override Sonarr `search` attribute<br>**Values:** `true` or `false` |
| `sonarr_cutoff_search` | **Description:** Override Sonarr `cutoff_search` attribute<br>**Values:** `true` or `false` |
| `item_sonarr_tag` | **Description:** Used to append a tag in Sonarr for every series found by the builders that's in Sonarr<br>**Values:** List or comma-separated string of tags |
| `item_sonarr_tag.remove` | **Description:** Used to remove existing tags in Sonarr for every series found by the builders that's in Sonarr<br>**Values:** List or comma-separated string of tags |
| `item_sonarr_tag.sync` | **Description:** Matches the tags in Sonarr for every series found by the builders that's in Sonarr with the provided tags<br>**Values:** List or comma-separated string of tags |
2022-03-08 08:06:22 +00:00
## Adding to Arr
You can add items to Radarr/Sonarr in two different ways.
2024-04-22 14:20:12 +00:00
1. Items found by Kometa that are missing from your collections/playlists.
2. Items found by Kometa that already exist in Plex but are not in Radarr/Sonarr.
2022-03-08 08:06:22 +00:00
### Arr Add Missing
2023-12-31 16:45:00 +00:00
When `radarr_add_missing`/`sonarr_add_missing` are true the items missing from the collection/playlist will be added to
Radarr/Sonarr.
2022-03-08 08:06:22 +00:00
### Arr Add Existing
2023-12-31 16:45:00 +00:00
When `radarr_add_existing`/`sonarr_add_existing` are true the items that exist in the collection/playlist will be added
to Radarr/Sonarr.
2022-03-08 08:06:22 +00:00
2024-05-01 16:17:46 +00:00
If your Radarr/Sonarr has different file system mappings from your Plex use `radarr_path`/`sonarr_path` along with
2023-12-31 16:45:00 +00:00
`plex_path` from your [Radarr](../config/radarr.md)/[Sonarr](../config/sonarr.md) global config settings.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
### Radarr Add Settings
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
When adding a movie in Radarr you get the screen below to set these options use `radarr_folder`, `radarr_monitor`,
`radarr_availability`, `radarr_quality`, `radarr_tag`, and `radarr_search`.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
![Radarr Details](images/radarr.png)
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
### Sonarr Add Settings
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
When adding a show in Sonarr you get the screen below to set these options use `sonarr_folder`, `sonarr_monitor`,
`sonarr_quality`, `sonarr_language`, `sonarr_series`, `sonarr_season`, `sonarr_tag`, `sonarr_search`, and
`sonarr_cutoff_search`.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
![Sonarr Details](images/sonarr.png)
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
## Arr Edit Settings
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
When editing the details of items that exist in the collection/playlist and in Radarr/Sonarr use `item_radarr_tag` and
`item_sonarr_tag`