Plex-Meta-Manager/docs/config/radarr.md

157 lines
10 KiB
Markdown
Raw Normal View History

2023-11-06 20:38:00 +00:00
---
search:
boost: 3
---
2022-03-08 08:06:22 +00:00
# Radarr Attributes
2023-12-31 16:45:00 +00:00
Configuring [Radarr](https://radarr.video/) is optional but will allow you to send movies to a Radarr instance when
they're found missing while updating a library's collections.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
???+ warning
Radarr V2 may work, but it is not supported. Please upgrade to V3 if you can.
2022-03-08 08:06:22 +00:00
2022-03-24 14:10:27 +00:00
Items in your List Exclusions will be ignored by PMM.
2023-12-31 16:45:00 +00:00
A `radarr` mapping can be either in the root of the config file as global mapping for all libraries, or you can specify
the `radarr` mapping individually per library.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
At the library level, only those settings which are different to the global settings need to be specified; there is an
example of this at the end of the page.
2023-01-11 14:54:31 +00:00
2022-03-08 08:06:22 +00:00
Below is a `radarr` mapping example and the full set of attributes:
```yaml
radarr:
url: http://192.168.1.12:32788
token: ################################
2022-03-18 13:01:12 +00:00
add_missing: false
add_existing: false
2022-12-09 21:32:12 +00:00
upgrade_existing: false
monitor_existing: false
2022-03-08 08:06:22 +00:00
root_folder_path: S:/Movies
monitor: false
2022-03-08 08:06:22 +00:00
availability: announced
quality_profile: HD-1080p
tag: pmm
search: false
radarr_path: /media
plex_path: /share/CACHEDEV1_DATA/Multimedia
```
2023-12-31 16:45:00 +00:00
| Attribute | Allowed Values | Default | Required |
|:-------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------|:------------------------------------------:|
| `url` | Radarr URL (Including URL Base if set).<br>**Example:** http://192.168.1.12:32788 | N/A | :fontawesome-solid-circle-check:{ .green } |
| `token` | Radarr API Token. | N/A | :fontawesome-solid-circle-check:{ .green } |
| `add_missing` | Adds all missing movies found from all collections to Radarr.<br>Use the `radarr_add_missing` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to add missing per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
| `add_existing` | Adds all existing movies in collections to Radarr.<br>Use the `radarr_add_existing` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to add existing per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
| `upgrade_existing` | Upgrades all existing movies in collections to match the Quality Profile of the collection.<br>Use the `radarr_upgrade_existing` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to upgrade the Quality Profile per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
| `monitor_existing` | Ensures all existing movies in collections match your monitor setting.<br>Use the `radarr_monitor_existing` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to match the monitor setting per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
2023-12-31 16:45:00 +00:00
| `ignore_cache` | Ignores PMM's cache when adding items to Radarr.<br>Use the `radarr_ignore_cache` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to ignore per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
| `root_folder_path` | Default Root Folder Path to use when adding new movies.<br>Use the `radarr_folder` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the Root Folder per collection. | N/A | :fontawesome-solid-circle-check:{ .green } |
| `monitor` | Monitor the movie when adding new movies.<br>Use the `radarr_monitor` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the Monitor value per collection.<br>**Options:** `true`, `false` | true | :fontawesome-solid-circle-xmark:{ .red } |
| `availability` | Default Minimum Availability to use when adding new movies.<br>Use the `radarr_availability` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the Availability per collection.<br>**Options:** `announced`, `cinemas`, `released`, `db` | `announced` | :fontawesome-solid-circle-check:{ .green } |
| `quality_profile` | Default Quality Profile to use when adding new movies.<br>Use the `radarr_quality` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the Quality Profile per collection. | N/A | :fontawesome-solid-circle-check:{ .green } |
| `tag` | Default list or comma-separated string of tags to use when adding new movies.<br>Use the `radarr_tag` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the Tags per collection. | ` ` | :fontawesome-solid-circle-xmark:{ .red } |
| `search` | Start search for missing movie when adding new movies.<br>Use the `radarr_search` [Radarr Setting](../files/arr.md#radarr-definition-settings) in the collection definition to set the search value per collection.<br>**boolean:** true or false | false | :fontawesome-solid-circle-xmark:{ .red } |
| `plex_path` | When using `add_existing` or `radarr_add_all` Convert this part of the path to `radarr_path`. | ` ` | :fontawesome-solid-circle-xmark:{ .red } |
| `radarr_path` | When using `add_existing` or `radarr_add_all` Convert the `plex_path` part of the path to this. | ` ` | :fontawesome-solid-circle-xmark:{ .red } |
2022-03-08 08:06:22 +00:00
???+ tip
The `token` can be found by going to `Radarr > Settings > General > Security > API Key`
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
The `quality_profile` must be the exact name of the desired quality profile, including all spaces and
capitalization.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
* You can set most attributes per collection by using the [Radarr Settings](../files/arr.md#radarr-definition-settings)
in the collection definition.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
![Radarr Details](images/radarr.png)
2022-03-29 15:30:30 +00:00
2023-12-31 16:45:00 +00:00
Based on that UI, the settings would be [settings not based on things in this image are shown as `#`; url and token are
of course required they are not shown here to focus on the settings that are shown above]:
```yaml
radarr:
2023-09-04 22:41:24 +00:00
url: #
token: #
add_missing: #
add_existing: #
upgrade_existing: #
monitor_existing: #
root_folder_path: /movies
monitor: false
availability: announced
quality_profile: HD-1080p
tag:
search: true
2023-09-04 22:41:24 +00:00
radarr_path: #
plex_path: #
```
2022-03-29 15:30:30 +00:00
# Other examples:
2023-01-11 14:54:31 +00:00
Specifying different options for specific libraries:
2022-03-29 15:30:30 +00:00
2023-12-31 16:45:00 +00:00
In this example we have two Radarr instances, standard and 4K, and four libraries showing how one can override
individual settings at the library level. Also, movies are being added to the "Library05" library outside Radarr via a
custom script and I want those new movies added to Radarr for tracking.
2023-01-11 15:04:34 +00:00
2023-01-11 14:54:31 +00:00
```
2022-03-29 15:30:30 +00:00
libraries:
2023-01-11 14:54:31 +00:00
Library01: # this library uses the default radarr config
collection_files:
2023-01-11 14:54:31 +00:00
- file: config/Movies.yml
Library02: # this library overrides radarr root path and profile
collection_files:
2022-03-29 15:30:30 +00:00
- file: config/Movies.yml
2023-01-11 14:54:31 +00:00
radarr:
root_folder_path: /data/media/movies/tony
quality_profile: Better
Library03: # this library overrides radarr quality profile
collection_files:
2023-01-11 14:54:31 +00:00
- file: config/Movies.yml
radarr:
quality_profile: Best
Library04: # this library uses the 4K radarr instance
collection_files:
2022-03-29 15:30:30 +00:00
- file: config/Movies.yml
radarr:
2023-01-11 14:54:31 +00:00
url: https://radarr-4k.bing.bang
token: SOME_OTHER_TOKEN
root_folder_path: /data/media/movies/geezer
quality_profile: Bestest
2023-01-11 15:04:34 +00:00
Library05: # movies get added by a custom script so they should get added to radarr-4k
collection_files:
2023-01-11 15:04:34 +00:00
- file: config/Movies.yml
radarr:
url: https://radarr-4k.bing.bang
token: SOME_OTHER_TOKEN
root_folder_path: /data/media/movies/bill
quality_profile: Bestest
add_existing: true
sonarr_path: /data/media/movies/bill
plex_path: /mnt/unionfs/movies/bill
2022-03-29 15:30:30 +00:00
...
radarr:
url: https://radarr.bing.bang
token: SOME_TOKEN
2023-01-11 14:54:31 +00:00
quality_profile: Good
add_missing: true
add_existing: false
upgrade_existing: false
monitor_existing: false
2022-03-29 15:30:30 +00:00
root_folder_path: /movies
monitor: false
2022-03-29 15:30:30 +00:00
availability: released
tag:
search: false
radarr_path:
plex_path:
...
```