mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Add extra-instance examples to pages.
This commit is contained in:
parent
534eda26dc
commit
cf25aad718
4 changed files with 136 additions and 4 deletions
|
@ -27,3 +27,33 @@ plex:
|
|||
* This script can be run on a remote Plex server, but be sure that the `url` provided is publicly addressable, and it's recommended to use `HTTPS`.
|
||||
|
||||
* If you need help finding your Plex authentication token, please see Plex's [support article](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/).
|
||||
|
||||
# Other examples:
|
||||
|
||||
Specifying a second Plex server for a specific library:
|
||||
|
||||
In this example we have two Plex servers [with the same libraries] and want to add the same collections to each. The second Plex is less responsive, so it needs a higher timeout than the primary one.
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
metadata_path:
|
||||
- file: config/Movies.yml
|
||||
Movies_on_Second_Plex:
|
||||
library_name: Movies
|
||||
metadata_path:
|
||||
- file: config/Movies.yml
|
||||
plex:
|
||||
url: http://plex.boing.bong
|
||||
token: SOME_TOKEN
|
||||
timeout: 360
|
||||
...
|
||||
plex:
|
||||
url: http://plex.bing.bang
|
||||
token: SOME_TOKEN
|
||||
timeout: 60
|
||||
clean_bundles: false
|
||||
empty_trash: false
|
||||
optimize: false
|
||||
...
|
||||
```
|
||||
|
|
|
@ -47,3 +47,39 @@ radarr:
|
|||
* You can set most attributes per collection by using the [Radarr Details](../metadata/details/arr.md#radarr-details) in the collection definition.
|
||||
|
||||
![Radarr Details](radarr.png)
|
||||
|
||||
# Other examples:
|
||||
|
||||
Specifying a second Radarr instance for a specific library:
|
||||
|
||||
In this example we have two Radarr instances, standard and 4K. We want to add 4K movies to the 4K Radarr instance with a different root folder and availbility.
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
metadata_path:
|
||||
- file: config/Movies.yml
|
||||
Movies - 4K:
|
||||
metadata_path:
|
||||
- file: config/Movies.yml
|
||||
radarr:
|
||||
url: https://radarr-4K.bing.bang
|
||||
token: SOME_TOKEN
|
||||
root_folder_path: /movies-4K
|
||||
availability: cinemas
|
||||
...
|
||||
radarr:
|
||||
url: https://radarr.bing.bang
|
||||
token: SOME_TOKEN
|
||||
root_folder_path: /movies
|
||||
monitor: true
|
||||
availability: released
|
||||
quality_profile: Any
|
||||
tag:
|
||||
search: false
|
||||
add_existing: false
|
||||
radarr_path:
|
||||
plex_path:
|
||||
add_missing: true
|
||||
...
|
||||
```
|
||||
|
|
|
@ -53,3 +53,45 @@ sonarr:
|
|||
* You can set most attributes per collection by using the [Sonarr Details](../metadata/details/arr.md#sonarr-details) in the collection definition.
|
||||
|
||||
![Sonarr Details](sonarr.png)
|
||||
|
||||
# Other examples:
|
||||
|
||||
Specifying a second Sonarr instance for a specific library:
|
||||
|
||||
In this example we have two Sonarr instances, standard and 4K. We want to add 4K shows to the 4K Sonarr instance with a different root folder and quality profile. Also, shows are being added to the "TV Shows - 4K" library outside Sonarr via a custom script and I want those new shows added to Sonarr for tracking.
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
TV Shows:
|
||||
metadata_path:
|
||||
- file: config/TV.yml
|
||||
TV Shows - 4K:
|
||||
metadata_path:
|
||||
- file: config/TV.yml
|
||||
sonarr:
|
||||
url: https://sonarr-4K.bing.bang
|
||||
token: SOME_TOKEN
|
||||
root_folder_path: /shows-4K
|
||||
quality_profile: 4K
|
||||
add_existing: true
|
||||
sonarr_path: /shows-4K
|
||||
plex_path: /mnt/unionfs/Media/TV
|
||||
...
|
||||
sonarr:
|
||||
url: https://sonarr.bing.bang
|
||||
token: SOME_TOKEN
|
||||
add_missing: false
|
||||
add_existing: false
|
||||
root_folder_path: /shows
|
||||
monitor: all
|
||||
quality_profile: HD-1080p
|
||||
language_profile: English
|
||||
series_type: standard
|
||||
season_folder: true
|
||||
tag:
|
||||
search: false
|
||||
cutoff_search: false
|
||||
sonarr_path:
|
||||
plex_path:
|
||||
...
|
||||
```
|
||||
|
|
|
@ -18,3 +18,27 @@ tautulli:
|
|||
| `apikey` | Tautulli API Key | N/A | ✅ |
|
||||
|
||||
* The apikey can be found by going to Tautulli > Settings > Web Interface > API > API Key
|
||||
|
||||
# Other examples:
|
||||
|
||||
Specifying a second Tautulli instance for a specific library:
|
||||
|
||||
In this example we have a separate Tautulli instance for TV.
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
metadata_path:
|
||||
- file: config/Movies.yml
|
||||
TV Shows:
|
||||
metadata_path:
|
||||
- file: config/TV.yml
|
||||
tautulli:
|
||||
url: http://192.168.1.14:8659
|
||||
apikey: SOME_KEY
|
||||
...
|
||||
tautulli:
|
||||
url: http://192.168.1.12:8659
|
||||
apikey: SOME_KEY
|
||||
...
|
||||
```
|
Loading…
Reference in a new issue