Merge branch 'master' into fix/radarr-removed-CiNEPHiLES-from-Remux-Tier-to-prevent-download-loop

pull/1523/head
FonduemangVI 1 month ago committed by GitHub
commit 05c07edf9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,5 @@
name: Request a Guide
description: Request a Guide here
description: Request a Guide here (This is only for new Guide requests, not for changes to existing guides, custom formats etc, if you are unsure please check out the Discord server first.)
title: "[Request]"
labels: ["Type: Guide Request", "Status: Triage Needed"]
body:

@ -10,7 +10,7 @@
## Open Questions and Pre-Merge TODOs
<!-- - [ ] Use GitHub checklists. When solved, check the box and explain the answer.
<!-- - [ ] Use GitHub checklists. When solved, check the box and explain the answer. -->
<!-- ## Learning

@ -1,47 +1,39 @@
"Area: Backend":
- all:
- "docs/**/*.md"
- "!docs/Bazarr/**"
- "!docs/Downloaders/**"
- "!docs/Plex/**"
- "!docs/Prowlarr/**"
- "!docs/Radarr/**"
- "!docs/recyclarr-configs/**"
- "!docs/Sonarr/**"
"Area: Bazarr":
- docs/Bazarr/**
- changed-files:
- any-glob-to-any-file: ['docs/Bazarr/**']
"Area: Dependencies":
- package.json
- package-lock.json
- changed-files:
- any-glob-to-any-file: ['package.json', 'package-lock.json']
"Area: Downloaders":
- docs/Downloaders/**
- changed-files:
- any-glob-to-any-file: ['docs/Downloaders/**']
"Area: Plex":
- docs/Plex/**
- changed-files:
- any-glob-to-any-file: ['docs/Plex/**']
"Area: Prowlarr":
- docs/Prowlarr/**
- changed-files:
- any-glob-to-any-file: ['docs/Prowlarr/**']
"Area: Radarr":
- docs/json/radarr/cf/**
- docs/json/radarr/quality-size/**
- docs/json/radarr/naming/**
- docs/Radarr/**
- changed-files:
- any-glob-to-any-file: ['docs/json/radarr/cf/**', 'docs/json/radarr/quality-size/**', 'docs/json/radarr/naming/**', 'docs/Radarr/**']
"Area: Recyclarr":
- docs/recyclarr-configs/**
- changed-files:
- any-glob-to-any-file: ['docs/recyclarr-configs/**']
"Area: Sonarr":
- docs/json/sonarr/rp/**
- docs/json/sonarr/cf/**
- docs/json/sonarr/quality-size/**
- docs/json/sonarr/naming/**
- docs/Sonarr/**
- changed-files:
- any-glob-to-any-file: ['docs/json/sonarr/rp/**', 'docs/json/sonarr/cf/**', 'docs/json/sonarr/quality-size/**', 'docs/json/sonarr/naming/**', 'docs/Sonarr/**']
"Area: Starr Custom Formats":
- docs/json/radarr/cf/**
- docs/json/sonarr/cf/**
- changed-files:
- any-glob-to-any-file: ['docs/json/radarr/cf/**', 'docs/json/sonarr/cf/**']
"Area: Starr Naming":
- docs/json/radarr/naming/**
- docs/json/sonarr/naming/**
- changed-files:
- any-glob-to-any-file: ['docs/json/radarr/naming/**', 'docs/json/sonarr/naming/**']
"Area: github_actions":
- .github/workflows/**
- .github/dependabot.yml
- .github/labeler.yml
- .github/stale.yml
- changed-files:
- any-glob-to-any-file: ['.github/workflows/**', '.github/dependabot.yml', '.github/labeler.yml', '.github/stale.yml']
"Area: python":
- "**/*.py"
- changed-files:
- any-glob-to-any-file: ['**/*.py']
"Area: Backend":
- changed-files:
- any-glob-to-any-file: ['docs/**/*.md', '!docs/Bazarr/**', '!docs/Downloaders/**', '!docs/Plex/**', '!docs/Prowlarr/**', '!docs/Radarr/**', '!docs/recyclarr-configs/**', '!docs/Sonarr/**']

@ -1,6 +1,11 @@
name: Label Conflicts
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
triage:

@ -1,27 +1,50 @@
name: Build and Deploy Docs
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
- name: Set up Python
uses: actions/setup-python@v4.7.0
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0
sparse-checkout: |
docs
images
includes
overrides
- name: Setup python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.x
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: .cache
key: ${{ runner.os }}-build-${{ hashFiles('docs/requirements.txt') }}
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build documentation
run: mkdocs build
deploy:
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
needs: build
@ -29,20 +52,34 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.2
with:
fetch-depth: '0'
- name: Set up Python
uses: actions/setup-python@v4.7.0
fetch-depth: 0
sparse-checkout: |
docs
images
includes
overrides
- name: Setup python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.x
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: .cache
key: ${{ runner.os }}-build-${{ hashFiles('docs/requirements.txt') }}
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Deploy to GitHub Pages

@ -1,6 +1,10 @@
name: Label Pull Requests
on: [pull_request_target, push]
on:
push:
branches:
- master
pull_request_target:
jobs:
triage:
@ -9,6 +13,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
sync-labels: true

@ -1,12 +1,16 @@
name: Lint - EditorConfig
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
editorconfig-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.2
- name: editorconfig-checker
run: |
docker run --rm \

@ -1,12 +1,16 @@
name: Lint - Markdown
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.2
- name: markdownlint
run: |
docker run --rm \

@ -1,13 +1,17 @@
name: Lint - YAML
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.2
- name: Run yamllint
run: |

@ -2,6 +2,8 @@ name: Validate Metadata JSON
on:
push:
branches:
- master
paths:
- metadata.json
- metadata.schema.json
@ -17,8 +19,8 @@ jobs:
runs-on: ubuntu-latest
name: Validate metadata.json
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-python@v4.7.0
- uses: actions/checkout@v4.1.2
- uses: actions/setup-python@v5.1.0
with:
python-version: 3.x
- run: pip install jsonschema

@ -0,0 +1,38 @@
name: Pull Request Title Validation
on:
pull_request:
types: [opened, reopened, edited, synchronize]
permissions:
issues: write
pull-requests: write
jobs:
pull-request-title-validation:
runs-on: ubuntu-latest
steps:
- name: Validate Pull Request Title
id: check_title
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const titleRegex = /^(Revert \")?(feat|fix|docs|style|refactor|perf|test|update|build|ci|chore)(\([\w\/-]+\))?:\s.+$/g;
const title = context.payload.pull_request.title;
const isValid = titleRegex.test(title);
if (!isValid) {
if ((context.payload.action === 'opened') || (context.payload.action === 'reopened')) {
const prNumber = context.payload.pull_request.number;
const author = context.payload.pull_request.user.login;
const message = `@${author} your pull request title "${context.payload.pull_request.title}" does not conform to our [naming conventions](https://www.conventionalcommits.org/en/v1.0.0/).\n\nPlease update the title to match the pattern: "feat|build|chore|style|fix|update|ci(\\<area\\>): \\<description\\>\n\nYou can check your title at this [regex101 link](https://regex101.com/r/jOZ6kU/1)."`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
body: message
});
}
core.setFailed(`PR title "${title}" doesn't match the required format.`)
}

1
.gitignore vendored

@ -1,6 +1,7 @@
.cache
venv/
mkdocs-dev-server.bat
site/
/docs/Notifiarr/preview.bat
/docs/Notifiarr/Integrations/_TEMPLATE.md
/includes/flowcharts/.$radarr-flowchart.drawio.bkp

@ -1,5 +1,8 @@
{
"files.associations": {
".pages": "yaml"
},
"yaml.schemas": {
"https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json": "untitled:Untitled-1"
}
}

@ -66,14 +66,13 @@ When doing a PR that is in-progress and not yet complete / ready for review or n
- Custom Format name needs to match json name :bangbang:
- No hashcode can exists multiple times :bangbang:
- Tiers only hold release groups that have atleast done several dozen objectively high quality releases.
- Tiers only hold release groups that have atleast done several dozen objectively high quality releases or are added for a specific reason. (If they do mainly niche stuff and/or foreign stuff they won't be added)
- All Tier Groups must use retail sources. Fanrest and upscaled groups are forbidden. This is due to the high effort required and near impossibility to guarantee quality systematically without manual check every single movie.
- JSON file format shall consist of the following TRaSH specific data appended to the json exported from Starr
```json
{
"trash_id": "HASHCODE",
"trash_score": 50,
"trash_scores": {
"default": 50,
"some_other_profile": 100
@ -87,10 +86,11 @@ General Structure
- json file name - name of the [json file](#file-naming)
- `trash_id` - Generated [HashCode](#hashcode) for the Custom Format
- `trash_score` - (Legacy) [Default Score for the Custom Format](#scoring). Note that Custom Formats with Default Scores of 0 should NOT have a `trash_score`
- `trash_scores` - (New) Json object of [score(s) for the Custom Format](#scoring). Note that Custom Formats with Default Scores of 0 should NOT have a `trash_scores.default`
- `trash_scores` - Json object of [score(s) for the Custom Format](#scoring). Note that Custom
Formats with Default Scores of 0 should NOT have a `trash_scores.default`
- `trash_regex` - Link to [regex test cases](#regex-test-cases) for regex
- STARRJSONEXPORT - The exported custom format created within Starr. Note that this will have a leading `{` that will need to have the `trash` specific regex added after
- STARRJSONEXPORT - The exported custom format created within Starr. Note that this will have a
leading `{` that will need to have the `trash` specific regex added after
### File Naming
@ -123,11 +123,10 @@ When updating or adding a new CF the test case url (`trash_regex`) needs to be p
### Scoring
- Scores must be added both as a single value under (legacy) `trash_score` and as JSON objects under `trash_scores`, for example:
- Scores must be added as JSON objects under `trash_scores`, for example:
```json
{
"trash_score": 50,
"trash_scores": {
"default": 50,
"some_other_profile": 100
@ -136,9 +135,7 @@ When updating or adding a new CF the test case url (`trash_regex`) needs to be p
```
- This allows for Custom Formats to be assigned different scores for different profiles
- The `trash_score` value MUST be the same as the `trash_scores.default` value
- The legacy `trash_score` value is currently retained for compatibility reasons, but will eventually be removed
- Default Scores of 0 (`trash_score` or `trash_scores.default` are FORBIDDEN
- Default Scores of 0 (e.g. as in `trash_scores.default`) are FORBIDDEN
## YAML file naming

@ -1,6 +1,6 @@
nav:
- Installing: index.md
- Basic-Setup: Basic-Setup.md
- Using Labels: Using-Labels.md
- Port forwarding: Port-Forwarding.md
- Tips: Tips.md
- Installing: index.md
- Basic-Setup: Basic-Setup.md
- Using Labels: Using-Labels.md
- Port forwarding: Port-Forwarding.md
- Tips

@ -5,7 +5,7 @@
------
!!! Note
Settings that aren't covered means you can change them to your own liking or just leave them on default.
Settings that aren't covered means you can change them to your liking or just leave them on default.
------
@ -21,7 +21,7 @@ Once you are here, you can edit your download settings in the `Downloads` sectio
### Download Path
`Download to` is where you want you want to download your media to, if you want to move your files upon completion - check the box and enter a path for that option as well.
`Download to` is where you want you want Deluge to download your media. If you want to move your files upon completion - check the box and enter a path for that option as well.
### Saving .torrent Copies
@ -32,7 +32,7 @@ Copy (and delete upon removal) of the .torrent file upon completion.
### Pre-allocated Files
Pre-allocated disk space for the added torrents, this limits fragmentation and also makes sure if you use a cache drive or a feeder disk that the space is available.
Pre-allocate disk space for the added torrents. This limits fragmentation and also makes sure if you use a cache drive or a feeder disk, that the space is available.
!!! success ""
**Suggested: `Enabled`**
@ -46,17 +46,17 @@ Pre-allocated disk space for the added torrents, this limits fragmentation and a
## Bandwidth
Here you can set your rate limits, meaning your maximum download/upload/connection speeds.
Here you can set your rate limits, meaning your maximum download/upload/connections.
!!! info
In Deluge, the value of `-1` is used for "infinity" or "unlimited".
![!Bandwidth Settings](images/Deluge-bandwidth-settings.png)
The best settings depends on many factors.
The best settings depend on many factors.
- Your ISP speed.
- Your hardware used.
- Your hardware.
- Bandwidth needed by other services in your home network.
!!! success ""
@ -70,9 +70,9 @@ These are the client-wide settings, they will apply to the total traffic of all
!!! tip
The only thing you NEED to place a limit on is half-open connections and connections per-second.
The only thing you NEED to place a limit on is half-open connections and connections per second.
For most high speed broadband connections ~100-150 seems ideal. If you experience lag when initiating a download, try lowering these values.
For most high-speed broadband connections ~100-150 seems ideal. If you experience lag when initiating a download, try lowering these values.
### Per-Torrent Limits
@ -99,17 +99,17 @@ These settings are intended to manage your number of active seeds, downloads, an
Unless you have a specific reason, `Total` can be set to `-1`. These are torrents seen as seeding by the tracker.
`Seeding` is the number of active torrents uploading, and `Downloading` is the number of downloading torrents.
`Seeding` is the number of active torrents uploading, and `Downloading` is the number of concurrently downloading torrents.
### Seeding Rotation & Share Ratio
I recommend using the seeding goals in your Starr Apps indexer settings (enable advanced) and to remove completed downloads. These sections are then not necessary.
I recommend using the seeding goals in your Starr Apps indexer settings (enable advanced) to remove completed downloads. These sections are then not necessary.
------
## Network
This is where you will bind Deluge to specific interface/address, specify port usage, and disable network protocols.
This is where you will bind Deluge to a specific interface/address, specify port usage, and disable network protocols.
![!Network Settings](images/Deluge-network-settings.png)
@ -118,7 +118,7 @@ This is where you will bind Deluge to specific interface/address, specify port u
!!! info ""
You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded.
`Incoming Port` should be set to a specific port that you have open or forwarded (if you are behind any NAT/Firewall/VPN.)
`Incoming Port` should be set to a specific port that you have opened/forwarded (if you are behind any NAT/Firewall/VPN.)
!!! WARNING
Default ports of 6880-6890 are not recommended.
@ -167,15 +167,15 @@ You can configure your network protocols in this section. Depending on which typ
## Plugins
Finally, you will want to enable some plugins. There are plenty of plugins on the Deluge community forums to browse once you are familiar with the client, but for the time being we will only be covering the `WebUI` and `Label` plugins to get started.
Finally, you will want to enable some plugins. There are plenty of plugins on the Deluge community forums to browse once you are familiar with the client, but for the time being, we will only be covering the `WebUI` and `Label` plugins to get started.
![!Plugin Settings](images/Deluge-plugin-settings.png)
!!! tip
If you are familiar with the client and plugins you can find more information [here](./Tips.md#plugins)
If you are familiar with the client and plugins you can find more information [here](./Tips/Plugins.md)
!!! info
If you are running a docker container, such as binhex's image, the `WebUI` plugin may not need to be enabled, instead it may be configured in the container.
If you are running a docker container, such as binhex's image, the `WebUI` plugin may not need to be enabled. Instead, it may be configured in the container.
### WebUI

@ -1,15 +1,15 @@
# Port Forwarding
The `Network` section of `Preferences` is where you will bind Deluge to specific interface/address, specify port usage.
The `Network` section of `Preferences` is where you will bind Deluge to a specific interface/address, and specify port usage.
![!Network Settings](images/Deluge-port-forwarding.png)
## Incoming Port
!!! info ""
You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded.
You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've forwarded.
`Incoming Port` should be set to a specific port that you have open or forwarded (if you are behind any NAT/Firewall/VPN.)
`Incoming Port` should be set to a specific port that you have opened/forwarded (if you are behind any NAT/Firewall/VPN.)
!!! WARNING
Default ports of 6880-6890 are not recommended.

@ -1,52 +1,6 @@
# Tips
# Plugins
## Thin Client
### Daemon
If you are already running Deluge in `daemon` or `console` mode, or in docker, this is enabled by default. You will need to check your compose or core.conf for the "daemon_port" if you do not know it already.
!!! tip
You can also access the daemon settings in `preferences` in the WebUI if you do not have access to the GTK/UI
You will need to have "Allow Remote Connections" enabled if you are not connecting to Deluge from localhost.
![!Daemon Settings](images/Deluge-tc-daemon.png)
!!! info
If you do not have access to the WebUI, and are instead doing this by editing Deluge's `core.conf`, you will need to change "allow_remote" to true.
Restart Deluge for the changes to take effect.
------
### Switching to Thin-Client
Once your daemon is setup and running, it's time to setup the client you'll be using to manage your daemon. This will usually be on a remote computer, but if you wish to run this way locally to always seed in the background, that works as well.
Simply go to `Edit` => `Preferences` and switch from `Standalone` to `Thin Client`
![!Thin-Client Toggle](images/Deluge-tc-settings.png)
Restart Deluge.
#### Connections Manager
After switching to `Thin Client` you will need to connect to your daemon. Go to `Edit` => `Connections Manager` and click on `Add` to add the daemon.
![!Label Options](images/Deluge-tc-connman.png)
!!! ATTENTION
If you mistype your password, it will prompt you to enter it. There is a bug that does not accept the correct password unless it is entered through the `Add`/`Edit` Menu. If you do not enter the correct password when adding, go to `Edit` on the connection and retype the password into the password blank.
!!! WARNING
You can find your users and passwords for logging into the daemon in the `auth` file inside your data/config folder for Deluge. You can add users in the `Daemon` settings in preferences as well.
BE AWARE: These password are stored in PLAIN-TEXT in your `auth` file.
## Plugins
Here you will find a list of included and available plugins that may be useful. These are not required, but should be seen as ways to advance/customize your setup once you understand the client and its behaviors.
Here you will find a list of included and available plugins that may be useful. These are not required but should be seen as ways to advance/customize your setup once you understand the client and its behaviors.
!!! info
All plugins are .egg files, these files will need to be placed inside your deluge config/data directory, inside the `plugins` folder. If you are using a thin client, they will also need to be present on your local instance as well.
@ -54,52 +8,52 @@ Here you will find a list of included and available plugins that may be useful.
!!! tip
Links to the plugins below are directly to the latest versions available on Deluge's forums, see the original and subsequent posts for more information concerning the plugin's features and iterations.
------
---
### AutoAdd
## AutoAdd
Use this plugin as a "Watch" directory for .torrent files, you can customize the settings using the `Edit` button for that specific directory (download directory, label, etc).
Place a .torrent file in a watched folder, and Deluge will add the torrent to your client. Make sure your directory is marked with a checkmark under `Active` if you wish it to be monitored.
------
---
### AddTorrentCheck
## AddTorrentCheck
This plugin is used to continuously update the tracker when adding torrents from IRC (think autodl-irssi or autobrr) before they are registered.
See the forum thread for details below.
[AddTorrentCheck](https://forum.deluge-torrent.org/viewtopic.php?p=236070#p236070){:target="_blank" rel="noopener noreferrer"}
[AddTorrentCheck](https://forum.deluge-torrent.org/viewtopic.php?p=236070#p236070){:target="\_blank" rel="noopener noreferrer"}
------
---
### Blocklist
## Blocklist
This plugin has mixed reception, depending on the use case. For private trackers, it is generally recommended to keep it disabled. There is an argument that some benefits, in privacy/security, could be made for public trackers - however, reports of many false positives and actual TRACKERS being flagged/blocked have been reported.
Use at your own discretion.
------
---
### Execute
## Execute
Execute will run a program or script upon reaching a specified event. It is recommended that after adding events, you restart Deluge.
!!! info
Checking or Rechecking a torrent will not trigger the "Torrent Completed" event, you will need to actually download the torrent to trigger this.
------
---
### Stats
## Stats
Stats plugin does exactly what it sounds like, provides you statistics on traffic for torrents. You can find the latest version on the forums, but depending on which version of Deluge you install an older version may be included.
Stats does exactly what it sounds like; provides you with statistics on torrent traffic. You can find the latest version on the forums, but depending on which version of Deluge you install an older version may be included.
[Stats](https://forum.deluge-torrent.org/viewtopic.php?p=236443#p236443){:target="_blank" rel="noopener noreferrer"}
[Stats](https://forum.deluge-torrent.org/viewtopic.php?p=236443#p236443){:target="\_blank" rel="noopener noreferrer"}
------
---
### YaRSS2
## YaRSS2
YaRSS2 should be considered unsupported/abandoned at this point. This plugin will crash your client after a random amount of time.
@ -107,33 +61,33 @@ There is not currently any active development on the project, as far as I'm awar
There is currently no viable RSS support natively in Deluge.
------
---
### AutoRemovePlus
## AutoRemovePlus
This is one of the forks of the original AutoRemovePlus (also referred to as ARP) which will automatically remove torrents from your client:
- Select how many torrents are allowed at the same time.
- Choose to remove or pause them based on multiple criteria age, seeders, seed time or ratio.
- Set specific removal rules depending on tracker or LabelPlus label.
- Set specific removal rules depending on the tracker or LabelPlus label.
- Remove only torrents from specific trackers or LabelPlus labels.
- Only remove torrents if under a certain HDD space threshold.
- Select if torrents have to fulfill both or either criteria.
- Delete torrents in order (e.g. delete torrents with highest ratio first).
- Delete torrents in order (e.g. delete torrents with the highest ratio first).
- Don't remove torrents if they don't reach a minimum time (in days) or ratio.
- Choose the removal interval.
- Right click and select torrents that you don't want automatically removed.
- Remove torrent data option.
- Right-click and select torrents that you don't want automatically removed.
- Remove the torrent data option.
- Create an exempted tracker or LabelPlus label list, so that torrents that belong to those trackers or labels are not removed.
- Fully functional WebUI.
Other forks, and the original plugin, can be found on the GitHub page.
[AutoRemovePlus](https://github.com/laur89/deluge-autoremoveplus){:target="_blank" rel="noopener noreferrer"}
[AutoRemovePlus](https://github.com/laur89/deluge-autoremoveplus){:target="\_blank" rel="noopener noreferrer"}
------
---
### ltConfig
## ltConfig
If you need to set libtorrent settings to anything other than their defaults, this is the plugin for you. There are presets, but you can fine-tune the settings as you need as well.
@ -141,6 +95,7 @@ If you need to set libtorrent settings to anything other than their defaults, th
There is a known bug when trying to enable settings in ltConfig, double-clicking will sometimes not "check" the option.
Simply click the option, then use the space bar to enable that checkbox.
!!! tips
If you want to seed over 1600 torrents, you will need this plugin. You will need to increase the active_tracker_limit.
@ -148,7 +103,8 @@ If you need to set libtorrent settings to anything other than their defaults, th
See the forum thread for details below.
[ltConfig](https://forum.deluge-torrent.org/viewtopic.php?p=235653#p235653){:target="_blank" rel="noopener noreferrer"}
[ltConfig](https://forum.deluge-torrent.org/viewtopic.php?p=235653#p235653){:target="\_blank" rel="noopener noreferrer"}
{! include-markdown "../../../../includes/support.md" !}
{! include-markdown "../../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->

@ -0,0 +1,54 @@
# Thin Client
## Daemon
If you are already running Deluge in `daemon` or `console` mode, or running via Docker, this is usually enabled by default. You will need to check your compose or core.conf for the "daemon_port" if you do not know it.
!!! tip
You can also access the daemon settings in `Preferences` in the WebUI if you do not have access to the GTK/UI
You will need to have "Allow Remote Connections" enabled if you are not connecting to Deluge from localhost.
![!Daemon Settings](../images/Deluge-tc-daemon.png)
!!! info
If you do not have access to the WebUI, and are instead doing this by editing Deluge's `core.conf`, you will need to change "allow_remote" to true.
Restart Deluge for the changes to take effect.
------
## Switching to Thin-Client
Once your daemon is up and running, it's time to set up the client you'll be using to manage your daemon. This will usually be on a second computer, but if you wish to use Deluge with Thin-Client locally (to always seed in the background) that works as well.
Simply go to `Edit` => `Preferences` and switch from `Standalone` to `Thin Client`
![!Thin-Client Toggle](../images/Deluge-tc-settings.png)
Restart Deluge.
!!! info
You will still need to set the daemon to run at start-up.
### Connections Manager
After switching to `Thin Client` you will need to connect to your daemon. Go to `Edit` => `Connections Manager` and click on `Add` to add the daemon.
![!Label Options](../images/Deluge-tc-connman.png)
!!! ATTENTION
If you mistyped your password while adding the connection, it will prompt you to enter it. There is a bug that does not accept/save the correct password unless it is entered through the `Add`/`Edit` Menu.
If you mistype the password while you are adding the connection, go to `Edit` on the connection and retype the password into the password field.
!!! WARNING
You can find your users and passwords for the daemon in the `auth` file inside your appdata/config folder for Deluge.
You can add users in the `Daemon` settings in preferences as well.
BE AWARE: These passwords are stored in PLAIN-TEXT in your `auth` file.
{! include-markdown "../../../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->

@ -0,0 +1,265 @@
# unRAID Mover and Deluge
When you make use of the unRAID cache drive for your `/data/torrents` share, and the torrents in Deluge are still seeding, the mover can't move files since they are still in use.
Using the following instructions will allow you to move the files with the use of the Deluge JSON-RPC.
!!! abstract "Workflow Rules"
1. Pause torrents in a specified age range that reside on your cache drive.
1. Run the unRAID mover.
1. Resume the torrents after the mover has completed.
!!! warning
The screenshots below are only **EXAMPLES** to show you how it should look and where you need to place the data that you need to add. They are **NOT** always a 100% reflection of the actual data, and not always the actual values you need to add.
- Always follow the recommendations described in the guide.
- If you have any questions, or aren't sure, just click the chat badge to join the Discord Channel where you can ask your questions directly.
## Needed
### `deluge-mover` script
Download the following standalone Python script.
- [Script (deluge-mover.py)](https://raw.githubusercontent.com/zakkarry/deluge-mover/master/deluge-mover.py){:target="_blank" rel="noopener noreferrer"}
Thanks to [zakary](https://github.com/zakkarry){:target="_blank" rel="noopener noreferrer"} (Developer on [cross-seed](https://github.com/cross-seed/cross-seed){:target="_blank" rel="noopener noreferrer"})
### Plugins
Install the following Plugins.
- User Scripts
- NerdTools
- python3 <sup>(*1*)</sup>
- python-setuptools <sup>(*1*)</sup>
- python-pip <sup>(*1*)</sup>
!!! info "<sup>(*1*)</sup> These need to be installed from NerdTools."
------
## Setup
After you install the needed `Plugins` - it's time to configure everything.
### `requests` module
`deluge-mover.py` needs the requests Python module, so we need to make sure it's installed when your unRAID server starts, or when the Array is started the first time.
You can choose one of the following 3 options (select a tab) to install `requests`.
=== "User scripts"
With this option, we're going to install the `requests` module when the Array is started the first time.
In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom.
![!User Scripts](images/Unraid-settings-user-scripts-icon.png)
At the bottom of the `User Scripts` page select the `ADD NEW SCRIPT` button.
![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png)
A popup will appear asking you to name the script. For this example, we're going to use `Install requests (deluge-mover)` and then click on `OK`.
![!Install requests module](images/Unraid-user-scripts-add-new-script-enter-name.png)
Click on the cogwheel of the new script in the list, and select `Edit Script`.
![!Select user script](images/Unraid-settings-user-scripts-edit-requests.png)
Copy/Paste the following in the new window that opens, then click `SAVE CHANGES`.
```bash
#!/bin/bash
pip3 install requests
```
![!Bash script](images/Unraid-settings-user-scripts-requests.png)
Select in the schedule list when the script should run, and choose `At First Array Start Only`.
![!Set Run Time](images/Unraid-settings-user-scripts-requests-schedule.png)
Click on `Apply`.
Finally, you will need to choose `RUN IN BACKGROUND` or restart your unRAID server to install the `requests` module.
=== "Python venv"
With this option, we're going to create a [Python virtual environment](https://docs.python.org/3/library/venv.html) on our disk. We will use this to run and store dependencies (`requests`) for this specific environment.
By doing this, we will **only need to configure this once** and it will be persistent after reboots *(this differs from the previous steps)*.
First, you need to choose a location to start a new Python environment.
!!! info
In the next steps, you will be asked to choose a [location to store the script](#copy-script-to-your-preferred-location), try to be consistent.
Suggestions:
- `/mnt/user/appdata/deluge/scripts/.venv`
- `/mnt/user/data/scripts/.venv`
Run the following command in unRAID's terminal in the directory you chose:
```bash
python3 -m venv --clear /mnt/user/data/scripts/.venv
```
We now need to enter this new environment and install our dependency (`requests`) in it, run:
```bash
source /mnt/user/data/scripts/.venv/bin/activate
pip3 install requests
deactivate # to leave the environment
```
!!! info
Replace `/mnt/user/data/scripts/.venv` with the path you have chosen.
=== "Go File"
With this option, we're going to install the `requests` module when the unRAID server is started.
On your USB stick/key go to `/boot/config` and open the `go` file with your text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}).
Copy/paste the following command
```bash
pip3 install requests
```
Restart your unRAID Server or run the above command from the terminal.
------
### Script
Now, using your favorite text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}) edit the script you downloaded at the beginning of the guide ([HERE](#deluge-mover-script)).
You only need to change a few options at the top of the script.
```python
### CONFIGURATION VARIABLES ###
# this webui will need to be the JSON-RPC endpoint
# this ends with '/json'
deluge_webui = "http://localhost:8112/json"
deluge_password = "deluged"
# this changes whether the actual cache drive is checked for
# applicable files to pause/move before pausing.
#
# if this is false, it will pause all torrents in the age-range
# instead of only torrents in that range that exist on the cache
check_fs = False
# if you are using the mover tuner and don't want to use it for
# this script, set this to true
#
# if you do not use mover tuner, leave this as false
use_mover_old = False
# this is the absolute host path to your cache drive's downloads
# you only need this to be changed/set if using 'check_fs = True'
cache_download_path = "/mnt/cache/torrents/completed"
# the age range of days to look for relevant torrents to move
# i dont recommend setting age_day_max to less than the schedule
# you run the script on...
#
# if you run every 7 days, this should be at least 7 to prevent
# files from being stuck on your cache forever
#
# 0 disables age_day_max
# set both age vars to 0 to move everything on your cache drive
age_day_min = 3
age_day_max = 0
```
- `deluge_webui` => The URL you use to access Deluge locally. (*the* `"` *should remain*)
- `deluge_password` => Your Deluge WebUI `Password`. (*the* `"` *should remain*)
- `check_fs` => If set to `True`, it will check for the file on the cache drive before pausing.
- `use_mover_old` => See below.
!!! warning ""
- If you do not use `Mover Tuning`, you **DO NOT** have to make any changes.
- If you use `Mover Tuning` but **DON'T** want to use it for the script, change this to `True`
- If you use `Mover Tuning` and **DO** want to use it for the script, you will not have to make any changes. However, for this option, inside the `Mover Tuner` you will need to set `Move Now button follows plugin filters` to `Yes` and `Disable Mover running on a schedule` to `No`.
- `cache_download_path` => The location (host path) for your cache folder (if check_fs is True)
- `age_day_min` => Set the minimum age (days) of the torrents that you wish to move.
- `age_day_max` => Set the maximum age (days) of the torrents that you wish to move.
#### Copy the script to your preferred location
Place the script you just edited somewhere easy to access/remember.
Suggestions:
- `/mnt/user/appdata/deluge/scripts/deluge-mover.py`
- `/mnt/user/data/scripts/deluge-mover.py`
#### Final steps
Set up the scheduler for when the mover should run.
In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom.
![!User Scripts](images/Unraid-settings-user-scripts-icon.png)
At the bottom of the `User Scripts` page select the `ADD NEW SCRIPT` button.
![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png)
A popup will appear asking you to name the script. For this example, we're going to use `deluge-mover` and then click on `OK`.
![!Deluge Mover](images/Unraid-user-scripts-add-new-script-enter-name-deluge.png)
Click on the cogwheel of the new script in the list.
![!Select user script](images/Unraid-settings-user-scripts-edit-deluge-mover.png)
Choose your method (select a tab) and copy/paste the script in the new window that opens, then click `SAVE CHANGES`.
=== "Python (Native)"
``` bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "Deluge Mover" -d "Deluge Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
python3 /mnt/user/data/scripts/deluge-mover.py
echo "deluge-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "Deluge Mover" -d "Deluge Mover completed @ `date +%H:%M:%S`."
```
=== "Python (venv)"
``` bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "Deluge Mover" -d "Deluge Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
/mnt/user/data/scripts/.venv/bin/python3 /mnt/user/data/scripts/deluge-mover.py
echo "deluge-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "Deluge Mover" -d "Deluge Mover completed @ `date +%H:%M:%S`."
```
!!! info
Replace `/mnt/user/data/scripts/` in the script with the path you have chosen for the Python script.
![!Bash script](images/Unraid-settings-user-scripts-deluge-mover.png)
Click the schedule dropdown to choose when the script should run. We want to select `Custom`.
![!Set Run Time](images/Unraid-settings-user-scripts-deluge-mover-schedule.png)
After changing to `Custom` you will get an extra text field on the right where you can set your schedule (cron).
For this example, we're going to tell the script to run every day at 4 AM.
`0 4 * * *`
You can generate your scheduling [HERE](https://crontab.guru/)
![!Set Run Time](images/Unraid-settings-user-scripts-deluge-mover-cron.png)
{! include-markdown "../../../../includes/support.md" !}

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 975 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

@ -7,7 +7,7 @@
### Managing Labels
Once you have [enabled the `Label` plugin](./Basic-Setup.md#plugins), you simply right-click anywhere in the area occupied by the label index on the pane on the left and you will be presented with a menu to add/remove/etc a label.
Once you have [enabled the `Label` plugin](./Basic-Setup.md#plugins), you simply right-click anywhere in the area occupied by the label index on the pane on the left and you will be presented with a menu to add/remove/edit a label or its options.
![!Label Menu](images/Deluge-label-add.png)

@ -27,7 +27,7 @@ Using `apt-get` to install
sudo apt-get update
sudo apt-get install deluge
Using `pip3` to install (included in the python package)
Using `pip3` to install (included in the Python package)
pip3 install deluge

@ -20,13 +20,11 @@
import sys
import re
# normalize argv to scriptname and just first 8 arguments to maintain compatibility
sys.argv = sys.argv[:9]
try:
# Parse the 18 input variables for SABnzbd version >= 4.0.0
(scriptname, nzbname, postprocflags, category, script, prio, downloadsize, grouplist, showname, season, episodenumber, episodename, is_proper, resolution, decade, year, month, day, job_type) = sys.argv
downloadsize = int(downloadsize)
except ValueError:
# ...or 11 variables for earlier versions
(scriptname, nzbname, postprocflags, category, script, prio, downloadsize, grouplist, showname, season, episodenumber, episodename) = sys.argv
# Parse the input variables for SABnzbd version >= 4.2.0
(scriptname, nzbname, postprocflags, category, script, prio, downloadsize, grouplist) = sys.argv
except:
sys.exit(1) # exit with 1 causes SABnzbd to ignore the output of this script

@ -21,30 +21,33 @@ This is a program used to manage your qBittorrent instance such as:
------
## Qbitrr
## qBitrr
This is a program used to manage your qBittorrent instance and Arr instances
Features
- Monitor qBit for Stalled/bad entries and delete them then blacklist them on Arrs (Option to also trigger a re-search action).
- Monitor qBit for completed entries and tell the appropriate Arr instance to import it ( 'DownloadedMoviesScan' or 'DownloadedEpisodesScan' commands).
- Monitor qBit for completed entries and tell the appropriate Arr instance to import it:
- `qbitrr DownloadedMoviesScan` for Radarr
- `qbitrr DownloadedEpisodesScan` for Sonarr
- Skip files in qBit entries by extension, folder or regex.
- Monitor completed folder and cleans it up.
- Uses ffprobe to ensure downloaded entries are valid media.
- Monitor completed folder and clean it up.
- Usage of [ffprobe](https://github.com/FFmpeg/FFmpeg){:target="_blank" rel="noopener noreferrer"} to ensure downloaded entries are valid media.
- Trigger periodic Rss Syncs on the appropriate Arr instances.
- Trigger Queue update on appropriate Arr instances.
- Search requests from Overseerr or Ombi.
- Search requests from [Overseerr](https://github.com/sct/overseerr){:target="_blank" rel="noopener noreferrer"} or [Ombi](https://github.com/Ombi-app/Ombi){:target="_blank" rel="noopener noreferrer"}.
- Auto add/remove trackers
- Set per tracker values
- Also supports Sonarr v4
This section requires the Arr databases to be locally available.
- **Sonarr v4 support**
- **Radarr v4 and v5 support**
- Monitor Arr's databases to trigger missing episode searches.
- Customizable year range to search for (at a later point will add more option here, for example search whole series/season instead of individual episodes, search by name, category etc).
- Searches Radarr missing movies based on Minimum Availability
- Customizable searching by series or singular episodes
- Optionally searches year by year is ascending or descending order (config option available)
- Search for CF Score unmet and cancel torrents base on CF Score or Quality unmet search
[Qbitrr](https://github.com/Feramance/Qbitrr){:target="_blank" rel="noopener noreferrer"}
[qBitrr](https://github.com/Feramance/qBitrr){:target="_blank" rel="noopener noreferrer"}
------

@ -1,28 +1,29 @@
# How to run the unRaid mover for qBittorent seeding torrents
# unRAID Mover and qBittorrent
When you make use of the unRaid cache drive for your `/data/torrents` share and the torrents in qBittorent are still seeding then the mover can't move files, because they are still in use.
When you make use of the unRAID cache drive for your `/data/torrents` share, and the torrents in qBittorrent are still seeding, the mover can't move files since they are still in use.
Using the following instructions you will be able to move the files with the use of the qBittorrent API.
Using the following instructions will allow you to move the files with the use of the qBittorrent API.
!!! abstract "Workflow Rules - [Click to show/hide]"
!!! abstract "Workflow Rules"
1. Pause torrents older than last x days.
1. Run the mover.
1. Resume the torrents once the mover is completed.
1. Pause torrents in a specified age range that reside on your cache drive.
1. Run the unRAID mover.
1. Resume the torrents after the mover has completed.
!!! warning
The screenshots are just examples to show you how it should look and where you need to place the data that you need to add, they aren't always a 100% reflection of the actual data and not always 100% up to date with the actual data you need to add.
- Always follow the data described in the guide.
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
The screenshots below are only **EXAMPLES** to show you how it should look and where you need to place the data that you need to add. They are **NOT** always a 100% reflection of the actual data, and not always the actual values you need to add.
- Always follow the recommendations described in the guide.
- If you have any questions, or aren't sure, just click the chat badge to join the Discord Channel where you can ask your questions directly.
## Needed
### The Script
### qBit-Mover script
Download the following standalone script.
Download the following standalone Python script.
- [Script](https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/scripts/mover.py){:target="_blank" rel="noopener noreferrer"}
- [Script (mover.py)](https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/scripts/mover.py){:target="_blank" rel="noopener noreferrer"}
Big Thnx to [bobokun](https://github.com/bobokun){:target="_blank" rel="noopener noreferrer"} Developer of [qBit Manage](https://github.com/StuffAnThings/qbit_manage){:target="_blank" rel="noopener noreferrer"}
@ -31,170 +32,194 @@ Big Thnx to [bobokun](https://github.com/bobokun){:target="_blank" rel="noopener
Install the following Plugins.
- User Scripts
- Nerd Tools
- NerdTools
- python3 <sup>(*1*)</sup>
- python-setuptools <sup>(*1*)</sup>
- python-pip <sup>(*1*)</sup>
!!! info "<sup>(*1*)</sup> These needs to be installed from the Nerd Tools"
!!! info "<sup>(*1*)</sup> These need to be installed from NerdTools."
------
## Setup
After you installed the needed Plugins it's time to configure everything.
After you install the needed `Plugins` - it's time to configure everything.
### qBit API
### `qbittorrent-api` module
The script needs the qBit API to work, so we need to make sure it's installed when your unRaid server is booted or when the Array is started the first time.
The script needs the qbittorrent-api module to work, so we need to make sure it's installed when your unRAID server starts, or when the Array is started the first time.
You can choose from the following 2 options how you want to install it, depending what you preference.
You can choose one of the following 3 options (select a tab) to install `qbittorrent-api`.
- [User scripts](#user-scripts)
- [Go File](#go-file)
=== "User scripts"
With this option, we're going to install the `qbittorrent-api` module when the Array is started the first time.
#### User scripts
In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom.
With this option we're going to install the qBit API when the Array is started the first time.
![!User Scripts](images/Unraid-settings-user-scripts-icon.png)
Go to your unRaid Dashboard to your settings tab and select in the `User Utilities` at the bottom the new plugin you installed `User Scripts`.
At the bottom of the `User Scripts` page select the `ADD NEW SCRIPT` button.
![!User Scripts](images/Unraid-settings-user-scripts-icon.png)
![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png)
Select at the bottom `ADD NEW SCRIPT`.
A popup will appear asking you to name the script. For this example, we're going to use `Install qBittorent-API` and then click on `OK`.
![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png)
![!Install qBittorrent API](images/Unraid-user-scripts-add-new-script-enter-name.png)
A popup will appear where you can give it a name, for this example we're going to use `Install qBittorrent API` and then click on `OK`.
Click on the cogwheel of the new script in the list, and select `Edit Script`.
![!Install qBittorrent API](images/Unraid-user-scripts-add-new-script-enter-name.png)
![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-api.png)
Click in the list on the cogwheel of the new user scrip you made.
Copy/Paste the following in the new window that opens, then click `SAVE CHANGES`.
![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-api.png)
```bash
#!/bin/bash
pip3 install qbittorrent-api
```
Copy/Paste in the new windows that opens the following bash command followed by `SAVE CHANGES`.
![!Bash script](images/Unraid-settings-user-scripts-qbit-api.png)
```bash
#!/bin/bash
pip3 install qbittorrent-api
```
Select in the schedule list when the script should run, and choose `At First Array Start Only`.
![!Bash script](images/Unraid-settings-user-scripts-qbit-api.png)
![!Set Run Time](images/Unraid-settings-user-scripts-qbit-api-schedule.png)
Select in the schedule list when the script should run, and choose `At First Array Start Only`.
Click on `Apply`.
![!Set Run Time](images/Unraid-settings-user-scripts-qbit-api-schedule.png)
Finally, you will need to choose `RUN IN BACKGROUND` or restart your unRAID server to install the `qbittorrent-api` module.
Click on `RUN IN BACKGROUND` or restart your unRaid server so the qBit API is installed.
![!RUN IN BACKGROUND](images/Unraid-settings-user-scripts-qbit-api-run-background.png)
![!RUN IN BACKGROUND](images/Unraid-settings-user-scripts-qbit-api-run-background.png)
=== "Python venv"
With this option, we're going to create a [Python virtual environment](https://docs.python.org/3/library/venv.html) on our disk. We will use this to run and store dependencies (`qbittorrent-api`) for this specific environment.
------
By doing this, we will **only need to configure this once** and it will be persistent after reboots *(this differs from the previous steps)*.
#### Go File
First, you need to choose a location to start a new Python environment.
With this option we're going to install the qBit API when the unRaid server is started.
!!! info
In the next steps, you will be asked to choose a [location to store the script](#copy-script-to-your-preferred-location), try to be consistent.
On your USB stick/key go to `/boot/config` and open the `go` file with your favorite editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}) and copy/paste the following command.
Suggestions:
```bash
pip3 install qbittorrent-api
```
- `/mnt/user/appdata/qbittorrent/scripts/.venv`
- `/mnt/user/data/scripts/.venv`
Restart your unRaid Server, or run the above command from the terminal.
Run the following command in unRAID's terminal in the directory you chose:
------
```bash
python3 -m venv --clear /mnt/user/data/scripts/.venv
```
### Script
We now need to enter this new environment and install our dependency (`qbittorrent-api`) in it, run:
Edit the script with your favorite editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}) you downloaded at the beginning of the guide [HERE](#the-script).
```bash
source /mnt/user/data/scripts/.venv/bin/activate
pip3 install qbittorrent-api
deactivate # to leave the environment
```
You only need to edit a few options in the script
!!! info
Replace `/mnt/user/data/scripts/.venv` with the path you have chosen.
=== "Go File"
With this option, we're going to install the `qbittorrent` module when the unRAID server is started.
```python
# --DEFINE VARIABLES--#
# Set Number of Days to stop torrents between two offsets
# days_from set to 0 will pause any torrents from todays date
# days_to will be the upper limit of how far you want to pause torrents to
days_from = 0
days_to = 2
qbt_host = "192.168.2.200:8080"
qbt_user = None
qbt_pass = None
# --DEFINE VARIABLES--#
```
On your USB stick/key go to `/boot/config` and open the `go` file with your text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}).
- `days_from` => Set Number of Days to stop torrents **from** for the move.
- `days_to` => Set Number of Days to stop torrents **to** for the move.
- `qbt_host` => The URL you use to access qBittorrent locally. (*the* `"` *should remain*)
- `qbt_user` => Your used qBittorrent `User Name` if you have authentication enabled. Add `'` either side.
- `qbt_pass` => Your used qBittorrent `Password` if you have authentication enabled. Add `'` either side.
Copy/paste the following command
```bash
pip3 install qbittorrent-api
```
Restart your unRAID Server or run the above command from the terminal.
!!! danger "If you have authentication enabled. Add `'` either side of your User/Password."
------
### Script
!!! warning ""
Depending on whether you use the unRaid `Mover Tuning` app, You might need to change **line 68**:
Depending on whether you use the unRaid `Mover Tuning` app, You might need to change **line 94**:
- If you do not use `Mover Tuning`, change **line 68** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`
- If you use `Mover Tuning` but **don't** want to use it for the script, do not change **line 68**
- If you use `Mover Tuning` and **do** want to use it for the script, change **line 68** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`. For this option, inside the `Mover Tuner` options you will also need to set `Move Now button follows plugin filters` to `Yes` and `Disable Mover running on a schedule` to `No`.
- If you do not use `Mover Tuning`, change **line 94** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`
- If you use `Mover Tuning` but **don't** want to use it for the script, do not change **line 94**
- If you use `Mover Tuning` and **do** want to use it for the script, change **line 94** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`. For this option, inside the `Mover Tuner` options you will also need to set `Move Now button follows plugin filters` to `Yes` and `Disable Mover running on a schedule` to `No`.
#### Copy script to your preferred location
#### Copy the script to your preferred location
Now it's time to place the script you just edited somewhere easy to access/remember.
Place the script you just edited somewhere easy to access/remember.
Suggestions:
- `/mnt/user/appdata/qbittorrent/scripts` (yes you need to create this folder your self)
- `/mnt/user/data/scripts` (yes you need to create this folder your self)
- `/mnt/user/appdata/qbittorrent/scripts/mover.py`
- `/mnt/user/data/scripts/mover.py`
#### Final steps
Now it's time to setup the scheduler when the mover should run.
Set up the scheduler for when the mover should run.
Go to your unRaid Dashboard to your settings tab and select in the `User Utilities` at the bottom the new plugin you installed `User Scripts`.
In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom.
![!User Scripts](images/Unraid-settings-user-scripts-icon.png)
Select at the bottom `ADD NEW SCRIPT`.
At the bottom of the `User Scripts` page select the `ADD NEW SCRIPT` button.
![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png)
A popup will appear where you can give it a name, for this example we're going to use `qBittorrent Mover` and then click on `OK`.
A popup will appear asking you to name the script. For this example, we're going to use `qBittorrent Mover` and then click on `OK`.
![!qBittorrent Mover](images/Unraid-user-scripts-add-new-script-enter-name-qbt.png)
Click in the list on the cogwheel of the new user scrip you made.
Click on the cogwheel of the new script in the list.
![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-mover.png)
Copy/Paste in the new windows that opens the following bash command followed by `SAVE CHANGES`.
Choose your method (select a tab) and copy/paste the script in the new window that opens, then click `SAVE CHANGES`.
=== "Python (Native)"
``` bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
python3 /mnt/user/data/scripts/mover.py --host "localhost:8080" --user "your_user" --password "your_password" --days_from 0 --days_to 2
echo "qbittorrent-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover completed @ `date +%H:%M:%S`."
```
=== "Python (venv)"
```bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover starting @ `date +%H:%M:%S`."
echo executing script to pause torrents and run mover.
/usr/bin/python3 /mnt/user/data/scripts/mover.py
echo qbittorrent-mover completed and resumed all paused torrents.
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover completed @ `date +%H:%M:%S`."
```
``` bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
/mnt/user/data/scripts/.venv/bin/python3 /mnt/user/data/scripts/mover.py --host "localhost:8080" --user "your_user" --password "your_password" --days_from 0 --days_to 2
echo "qbittorrent-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover completed @ `date +%H:%M:%S`."
```
!!! info
Replace the `/mnt/user/data/scripts/mover.py` path to the path where you placed your python script.
Replace `/mnt/user/data/scripts/` in the script with the path you have chosen for the Python script.
- `days_from` => Set Number of Days to stop torrents **from** for the move.
- `days_to` => Set Number of Days to stop torrents **to** for the move.
- `host` => The URL you use to access qBittorrent locally.
- `user` => Your used qBittorrent `User Name` if you have authentication enabled.
- `password` => Your used qBittorrent `Password` if you have authentication enabled.
![!Bash script](images/Unraid-settings-user-scripts-qbit-mover.png)
Select in the schedule list when the script should run, and choose `Custom`
Click the schedule dropdown to choose when the script should run. We want to select `Custom`.
![!Set Run Time](images/Unraid-settings-user-scripts-qbit-mover-schedule.png)
After changing to `Custom` you get on the right a extra option where you can setup your cron schedule when it should be run.
After changing to `Custom` you will get an extra text field on the right where you can set your schedule (cron).
For this example, we're going to tell the script to run every day at 4 AM.
For this example we're going to let the script run a 4am at night. `0 4 * * *`
`0 4 * * *`
Setup your own schedule [HERE](https://crontab.guru/)
You can generate your scheduling [HERE](https://crontab.guru/)
![!Set Run Time](images/Unraid-settings-user-scripts-qbit-mover-cron.png)
--8<-- "includes/support.md"
{! include-markdown "../../../../includes/support.md" !}

@ -0,0 +1,11 @@
# Themes
A list of known working qBittorrent themes.
| Theme | Style | Compatibility |
| ------------------------------------------------------------------------------------------------------------------------------ | ----- | --------------- |
| [Honeywell](https://github.com/stacksmash76/qbt-honeywell){:target="_blank" rel="noopener noreferrer"} | Dark | v4.3.1 - v4.4.5 |
| [Nightwalker Theme (CallMeBruce fork)](https://github.com/CallMeBruce/nightwalker){:target="_blank" rel="noopener noreferrer"} | Dark | v4.5 |
| [World of Quinoa](https://github.com/gl0ryus/woq){:target="_blank" rel="noopener noreferrer"} | Dark | v4.3.9, v4.4.5 |
--8<-- "includes/support.md"

@ -8,18 +8,19 @@ These are 3rd party applications to sync several sections of the guide with your
| Radarr Custom Formats | v | v |
| Radarr Use Flowchart to choose the correct Custom Formats for your Quality Profile | v | |
| Radarr predefined config files available | | v |
| Radarr Clear all Custom Formats | v | |
| Radarr Clear all Custom Formats | v | v |
| Radarr Scores | v | v |
| Radarr Quality Settings (File Size) | v | v |
| Radarr Naming Scheme | v | |
| Radarr Naming Scheme | v | v |
| Radarr Quality Profiles | | v |
| Sonarr v3 Release Profile RegEx | v | v |
| Sonarr v4 Custom Formats | v | v |
| Sonarr v4 predefined config files available | | v |
| Sonarr v3/v4 Clear all Release Profiles/Custom Formats | v | |
| Sonarr v3/v4 Clear all Release Profiles | v | |
| Sonarr v3/v4 Clear all Custom Formats | v | v |
| Sonarr v3/v4 Scores | v | v |
| Sonarr v3/v4 Quality Settings (File Size) | v | v |
| Sonarr v3/v4 Naming Scheme | v | |
| Sonarr v3/v4 Naming Scheme | v | v |
| Sonarr v3/v4 Quality Profiles | | v |
------

@ -56,10 +56,17 @@
![sabnzbd-categories](/Downloaders/SABnzbd/images/sabnzbd-categories.png)
Don't forget to look at the full SABnzbd Guides
- [SABnzbd - Basic Setup](/Downloaders/SABnzbd/Basic-Setup/)
- [SABnzbd - Paths and Categories](/Downloaders/SABnzbd/Paths-and-Categories/)
## NZBGet
??? example "NZBGet Examples - [Click to show/hide]"
!!! danger "NZBGet development has been officially abandoned by the developer :bangbang:"
`Settings` => `PATHS`
![nzbget-settings-paths](images/nzbget-settings-paths.png)
@ -68,6 +75,11 @@
![nzbget-settings-categories](images/nzbget-settings-categories.png)
Don't forget to look at the full NZBGet Guides
- [NZBGet - Basic Setup](/Downloaders/NZBGet/Basic-Setup/)
- [NZBGet - Paths and Categories](/Downloaders/NZBGet/Paths-and-Categories/)
## qBittorrent
??? example "qBittorrent Examples - [Click to show/hide]"
@ -76,6 +88,12 @@
![qbt-options-downloads](images/qbt-options-downloads.png)
Don't forget to look at the full qBittorrent Guides
- [qBittorrent - Basic Setup](/Downloaders/qBittorrent/Basic-Setup/)
- [qBittorrent - Paths](/Downloaders/qBittorrent/Paths/)
- [qBittorrent - How to add categories](/Downloaders/qBittorrent/How-to-add-categories/)
## Deluge
??? example "Deluge Example - [Click to show/hide]"
@ -84,6 +102,11 @@
![deluge-preferences-downloads](images/deluge-preferences-downloads.png)
Don't forget to look at the full Deluge Guides
- [Deluge - Basic Setup](/Downloaders/Deluge/Basic-Setup/)
- [Deluge - Using Labels](/Downloaders/Deluge/Using-Labels/)
## ruTorrent
??? example "ruTorrent Examples - [Click to show/hide]"

@ -12,7 +12,16 @@
## Introduction
This page will provide you with guidance on how to install several Docker images to your Synology system. We highly recommend to read the full guide, that way you have a better understanding of what you do, in case you later decide to make changes.
This page will provide you with guidance on how to install several Docker images related to the Servarr apps to your Synology. We highly recommend to read the full guide, that way you have a better understanding of what you do, in case you later decide to make changes.
## Summary
1. We will create ***one*** share that will hold all your data. This ensures hardlinking and/or instant moves are possible.
1. Create one user which will be assigned to the docker images as the user they run as out of security reasons.
1. Create a folder structure on the `data` and `docker` share with a few commands (or manually).
1. Download and edit the `docker-compose.yml` and `.env` files to your system settings.
1. Set permissions to all folders related in the shares.
1. Run and execute docker commands to start the containers.
### Automated Script
@ -47,17 +56,11 @@ This page will provide you with guidance on how to install several Docker images
## Install Docker
You need to install Docker from the `Package Center`. This should also create a share named `docker`, check File Station if it is present.
You need to install Docker / Container Manager from the `Package Center`. This should also create a share named `docker`, check File Station if it is present.
## Create the main share
!!! warning
To get Hardlinks and Atomic-Moves working with your Synology you will need to make use of **ONE** share with subfolders.
We will use a new share named `data` (lowercase) for all your library media.
Later in this guide, we will fill this share with subfolders.
We will create and use a new share named `data` (lowercase) for all your library media and downloads.
To create a new share:
@ -65,27 +68,27 @@ To create a new share:
![!create_share](images/create_share.png)
Name this shared folder `data`. You can disable the trash can. Click next until you are done.
Name this shared folder `data`. You can disable the trash can, up to you. Click next until you are done.
## Create a user
For this, we are going to create a new user that only has access to the share(s) that we use for this guide.
We are going to create a new user that only has access to the share(s) that we use for the containers to run as. You rather not have the containers run as an admin/root user.
Go to `Control Panel` > `User & Group`
In the `User` section, create a new user. Name it whatever you like, but for this guide we will use `docker`.
In the `User` section, create a new user. Name it whatever you like, but for this guide we will use the name `docker`.
![!adduser](images/adduser.PNG)
Fill out the rest of the information, generate a password or type your own.
Click next, you will now be able to select which group this user will belong to, it should only be `users`. Click `Next`.
Click next, you will now be able to select which group this user will belong to, it should only be the group `users`. Click `Next`.
### Assign shared folder permissions
In this screen you will be able to select which Shares this user will have access to, click `No Access` on the top, this will deny all access.
In the next screen you will be able to select which Shares this user will have access to, click `No Access` on the top, this will deny all access.
Now only select `Read/Write` on the shares `docker` and `data`.
Now **only** select `Read/Write` on the shares `docker` and `data` (the share we created earlier).
![!Assign shared folders permissions](images/adduser_2.PNG)
@ -93,7 +96,7 @@ Click `Next` until you reach `Assign application permissions`
### Assign application permissions
In this screen you will be able to select which application this user will have access to, Check `Deny` for all applications.
In this screen you will be able to select which application this user will have access to. Check `Deny` for all applications.
![!Assign application permissions](images/adduser_3.PNG)
@ -102,7 +105,7 @@ Continue to click `Next` until you are finished.
## SSH
You are mostly going to use the terminal. Some parts will need the Synology web GUI.
To enable terminal, you need to enable SSH in the Synology Settings.
To enable terminal access, you need to enable SSH in the Synology Settings.
`Control Panel` > `Terminal & SNMP` > `Enable SSH service`
@ -112,64 +115,41 @@ Then use a program like [Putty](https://www.putty.org/){:target="_blank" rel="no
Enter the login information of a Synology user account that has admin priveliges, as only members of the 'administrators' user group are able to use SSH.
If you get a popup asking if you want to trust the key,
Just press `OK` or `ACCEPT`
If you get a message asking if you want to trust the key, just press `OK` or `ACCEPT`.
### PUID and PGID
In order for the Docker container to access the shares on the Synology, we need to know the user ID (PUID) and group ID (PGID) from the `docker` user we just created.
Go into your terminal app, login to your synology ssh.
Once logged in type `id $user`. Change $user to the newly created username `docker`.
Once logged in to the terminal type `id docker`. If you used a different username, change `docker` to the one you used.
![!synology-id](images/synology-id.png)
This will show you the UID (aka PUID).
Which in this screenshot is `1035` for the docker user
and the GID (aka PGID) which is `100` for the users group.
Remember these values for later use.
!!! warning
It is not recommended to use (anymore) your admin/main user account. That is why we just created a new user.
------
## Folder Structure
Which in the screenshot above is `1035` for the docker user and the GID (aka PGID) which is `100` for the users group.
Save these values for later use.
For this example we're going to make use of the share called `data`.
## Create Folder Structure
On the host (Synology) terminal you will need to add `/volume1/` before it. So `/volume1/data`
Let's create a good folder structure on the shares we use (`docker` and `data`). This will be done with a few commands.
The `data` folder has sub-folders for `torrents` and `usenet` and each of these have sub-folders for `tv`, `movie` and `music` downloads to keep things neat. The `library` folder has nicely named `tv`, `movies` and `music` sub-folders, this is your library and what youd pass to Plex, Emby or JellyFin.
These subfolders you need to create your self.
*I'm using lower case on all folder on purpose, being Linux is case sensitive.*
The structure will look like this. You can of course edit this, but do this when you know what you are doing.
*We are using lowercases on all folders on purpose, being Linux is case sensitive.*
{! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !}
{! include-markdown "../../../includes/hardlinks/bad-path-suggestion.md" !}
<!-- --8<-- "includes/hardlinks/bad-path-suggestion.md" -->
{! include-markdown "../../../includes/hardlinks/breakdown-folder-structure-synology.md" !}
<!-- --8<-- "includes/hardlinks/breakdown-folder-structure.md" -->
------
To create the folder structure for your media library and also for your preferred download client, run one or both of the following commands:
### Create the needed subfolder
Here we will create the needed subfolders for your media library and also for your preferred download client.
If you use both then run both commands
#### If you use usenet
### If you use usenet
```bash
mkdir -p /volume1/data/{usenet/{incomplete,complete}/{tv,movies,music},media/{tv,movies,music}}
```
#### If you use torrents
### If you use torrents
```bash
mkdir -p /volume1/data/{torrents/{tv,movies,music},media/{tv,movies,music}}
@ -179,22 +159,17 @@ mkdir -p /volume1/data/{torrents/{tv,movies,music},media/{tv,movies,music}}
### Appdata
Your appdata will be stored in `/volume1/docker/appdata/{appname}`
These `{appname}` sub folders you need to create your self. (*This is a limitation of the Synology*)
We're going to do this in Putty or a similar program.
Your application data will be stored in the `docker` share in the folder called `appdata` (`/volume1/docker/appdata`)
Create these folders with command below, or create them in File Station manually.
```bash
mkdir -p /volume1/docker/appdata/{radarr,sonarr,bazarr,plex,pullio}
```
You can add your own sub folders for your download client(s) using the command above, by adding the name to the command.
You can add your own subfolders for your download client(s) using the command above, by adding the name to the command.
So your appdata folder will look like this.
```bash
ls -al /volume1/docker/appdata
```
```none
docker
└── appdata
@ -203,7 +178,8 @@ docker
├── bazarr
├── plex
├── pullio
└── (your download client, i.e. nzbget; sabnzbd; qbittorrent)
├── (your download client, i.e. nzbget; sabnzbd; qbittorrent)
└── (other applications)
```
------
@ -225,26 +201,26 @@ Download this [docker-compose.yml](https://raw.githubusercontent.com/TRaSH-/Guid
wget https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/docker-compose.yml -P /volume1/docker/appdata/
```
### Whats included and Whats not included
??? question "What's included and What's not included - [Click to show/hide]"
### What's included in the compose and what is not included
This docker-compose file will have the following docker containers included.
This docker-compose file will have the following docker containers included.
```none
- Radarr
- Sonarr
- Bazarr (Subtitle searcher and downloader)
- Plex
```
What's not included (and where are the download clients?).
What's not included (and where are the download clients?).
I didn't add a download client to it, because it depends on what you prefer (usenet/torrent) and which client you prefer, so I created a new [Repository](https://github.com/TRaSH-/Guides-Synology-Templates/tree/main/templates){:target="_blank" rel="noopener noreferrer"} on Github where I provide and maintain some templates that are ready to use with the main `docker-compose.yml`.
We didn't add a download client to it, because it depends on what you prefer (usenet/torrent) and which client you prefer. We have a repository [Repository](https://github.com/TRaSH-/Guides-Synology-Templates/tree/main/templates){:target="_blank" rel="noopener noreferrer"} on Github where we provide and maintain some templates that are ready to use with the main `docker-compose.yml`.
The only thing you need to do is copy/paste what's inside the `.yml` file in to the main `docker-compose.yml`, the template also has the command what you need to use to create the [appdata](#appdata) folder that we explained earlier.
The only thing you need to do is copy & paste what's inside the template file into to the main `docker-compose.yml` on the bottom, the templates also have a command what you need to use to create the [appdata](#appdata) folder that we explained earlier. Without the appdata folder for the application, the creation of the container will fail because of the missing folder.
Second we will download the `.env` file
Download this [.env](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env){:target="_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location so you got your important stuff together. Or use this command:
Download this [.env](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env){:target="_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location next to the `docker-compose.yml`. Or use this command:
```bash
wget https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env -P /volume1/docker/appdata/
@ -275,7 +251,7 @@ The `.env` file we downloaded holds the variables/information you need to change
#### Pullio - Auto update docker-compose the correct way
Pullio allows you to automatically update your containers. And send you a notification through various means. In my setup, I use a Discord Webhook.
Pullio allows you to automatically update your containers. And send you a notification through various means. We use a Discord Webhook.
First you need to download Pullio
@ -287,13 +263,13 @@ First you need to download Pullio
sudo chmod +x /usr/local/bin/pullio
```
For Pullio to work, you will need to create in your Task Scheduler a "Scheduled Task" that runs for example at 4am at night with root privileges.
For Pullio to do it's job, you will need to create a Scheduled Task in your Task Scheduler that runs for example at 4am at night with **root** privileges.
`Control Panel` > `Task Scheduler` > click `Create` > choose `Scheduled task - user defined script`
Give the task a name so you know what it does. Choose user `root`.
In the `Schedule` tab choose whenever you want it to check for updates.
In the `Schedule` tab choose when and how often you want it to check for updates.
At `Task Settings` tab, add the following line in the Run Command section:
@ -303,7 +279,7 @@ At `Task Settings` tab, add the following line in the Run Command section:
It can be frustrating to test the script if no docker image updates are available, for that you can run command `sudo pullio --debug` and the script will behave as if an update is available. If you have set to receive notifications, you should receive them.
More info about Pullio [HERE](https://hotio.dev/pullio/){:target="_blank" rel="noopener noreferrer"}
More info about Pullio [HERE](https://hotio.dev/scripts/pullio/){:target="_blank" rel="noopener noreferrer"}
------
@ -311,8 +287,10 @@ More info about Pullio [HERE](https://hotio.dev/pullio/){:target="_blank" rel="n
Now we need to make sure that the newly created files and folders have the correct permissions.
If you have an existing library, it is advised to move these to the new `data` share prior to running the commands below.
!!! note
If you're using a different user than `docker` (the user generated in the beginning), then you need to change the `docker:users` part in the commands below!!!
If you're using a different user than `docker` (the user generated in the beginning), then you need to change the `docker:users` part in the command below!!!
```bash
sudo chown -R docker:users /volume1/data /volume1/docker
@ -323,7 +301,7 @@ sudo chmod -R a=,a+rX,u+w,g+w /volume1/data /volume1/docker
```
!!! note
If you copy files from a different library into the newly created library, you need to rerun these commands. !!!
If you move files from a different library into the newly created library afterwards, you need to rerun these commands. !!!
------
@ -331,9 +309,9 @@ sudo chmod -R a=,a+rX,u+w,g+w /volume1/data /volume1/docker
!!! tip
make sure you delete/remove all your existing dockers from the Docker GUI and also remove your native installs (in Package Center) of these applications !!!
If you had previous installed apps, make a backup of their config folders.
If you had previous installed apps, make a backup of their config folders or backup through the webui of the app.
When you did all the above steps you only need to run the following commands:
If you have followed all the steps and your compose file is ready, run the following commands:
```bash
cd /volume1/docker/appdata
@ -343,15 +321,15 @@ cd /volume1/docker/appdata
sudo docker-compose up -d
```
You will notice that all the images will be downloaded, after that the containers will be started. If you get a error then look at the error what it says and try to fix it. If you still got issues then put your used docker-compose.yml on [0bin](https://0bin.net/){:target="_blank" rel="noopener noreferrer"} and join the guides-discord [here](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} and provide the pastebin link with the error, have patience because of timezone differences.
You will notice that all the images will be downloaded, after that the containers will be started. If you get a error then read what error says and try to fix it (missing folders, permissions errors, etc). If you can't figure out the solution to your errors, join the guides-discord [here](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} and create a support ticket.
------
**Don't forget to look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside your applications.**
**If you need help setting up the applications, look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside your applications.**
!!! warning
If you need to do any changes, only edit the `docker-compose.yml` file. To activate the changes, run the command `sudo docker-compose up -d` again, from within the `/volume1/docker/appdata` folder.
If you need to do any changes, only edit the `docker-compose.yml` file. To activate the changes, [run the commands from here](#run-the-docker-compose)) again.
Any changes you do/did in the GUI will be reverted when you run the docker-compose command.

@ -102,7 +102,7 @@ Click `Submit` once complete.
Navigate to Services and click the edit icon under `Actions` on the `NFS` row.
Enabling `NFSv4` is optional, but I generally prefer it since NFSv4 has some improvements over NFSv3. Make sure to check `Allow non-root mount` under `Other Options`.
Enabling `NFSv4` is optional. If you wish to do so you will need to ensure that your NAS and host are on the same domain (verify with `hostname -d`), otherwise you'll run into permission issues (indicated by `nobody:4294967294` when checking files). Alternatively, enable `NFSv3 ownership model for NFSv4` to avoid the domain requirements. Make sure to check `Allow non-root mount` under `Other Options`.
One of the most important options here is the `Number of servers` setting. If you click on the help icon you'll see the help text for this setting, which indicates that you should keep this less than or equal to the number of CPUs reported by `sysctl -n kern.smp.cpus` to limit CPU context switching.

@ -1,56 +1,88 @@
# Unraid
# unRAID
!!! note
The first thing you need to do is forget the suggested paths from the Spaceinvader One YouTube Tutorials,
and don't use the predefined paths from the unraid templates.
(Spaceinvader One YouTube guides are great to learn how to start with unraid or how to setup certain applications, and yes I did and still do use them. Probably the main reason why he's using those path is because they are predefined in the template)
!!! warning "**DO NOT** use the template paths from unRAID or the suggested paths from SpaceInvader One"
SpaceInvader One YouTube guides are great for learning how to start with unRAID or how to set up certain applications - and yes I did and still do use them.<br><br>The main reason why he's probably using those paths is because they are predefined in the templates.
------
## Preparation
Make sure hardlinks support is enabled in your `Settings` => `Global Share Settings`.
Make sure `Tunable (support Hard Links)` is enabled in your `Settings` => `Global Share Settings`.
![Enable Hardlink support](images/unraid-enable-hardlinks.png)
=== "unRAID 6.12"
![Enable Hardlink support (New)](images/unraid-enable-hardlinks_612.png)
=== "unRAID 6.11"
![Enable Hardlink support](images/unraid-enable-hardlinks.png)
## Create the main share
!!! warning "To get Hardlinks and Atomic-Moves working with Unraid,<br>You will need to make use of <u>**ONE**</u> share with subfolders."
!!! warning "To get Hardlinks and Atomic-Moves working with unRAID,<br>You will need to make use of <u>**ONE**</u> share with subfolders."
For this example I'm using my own setup and preferred share `data`.
In this example, I'm using my own setup and the preferred share `data`.
Go to your dashboard and on the top select `shares` select `add share` .
Go to your dashboard and select `Shares` on the navigation bar, then choose `Add Share`.
![!unraid-main-share](images/unraid-main-share.png)
=== "unRAID 6.12 (No Cache)"
![!unraid-main-share-array-6-12](images/unraid_main_share_array_612.png)
=== "unRAID 6.12 (Cache)"
![!unraid-main-share-cache-6-12](images/unraid_main_share_cache_612.png)
=== "unRAID 6.11"
![!unraid-main-share](images/unraid-main-share.png)
1. use `data`
1. if you got a cache drive and want to make use of it put it on `Yes` or keep it disabled (Hardlinks will stay in tact if you're using the cache)
1. click on `ADD SHARE`
1. Use `data`
1. Set up your share with the applicable settings.
=== "unRAID 6.12 (No Cache)"
Select the `Primary storage` as `Array` (shown in the `No Cache` tab above).
=== "unRAID 6.12 (Cache)"
1. Select the `Primary storage` as `Cache` (shown in the `Cache` tab above).
1. Select the `Secondary storage` as `Array`
1. Make sure `Mover action` is set to `Cache -> Array`
=== "unRAID 6.11"
Choose `Yes` on step (2) (unRAID 6.11 tab above). If not using a cache drive, keep this option disabled.
!!! info "Hardlinks will stay intact if you're using a cache"
1. Click on `ADD SHARE`
!!! note
Keep in mind regarding the use of the Cache drive, The mover can't move files that are in use, like when seeding with torrents. You will need to stop/pause the torrents so the mover can move them to your Array.
Keep in mind, regarding the use of the cache drive, unRAID's integrated mover cannot move files that are in use, like seeding torrents. You will need to stop/pause the torrents so the mover can move the files from the cache to your array.
!!! tip "If you use qBittorrent you can automate the process by following the following Guide [HERE](/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/){:target="_blank" rel="noopener noreferrer"}"
!!! tip "If you use qBittorrent you can automate the process by following the following Guide [HERE](/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/){:target="_blank" rel="noopener noreferrer"}<br>If you use Deluge you can automate the process by following the following Guide [HERE](/Downloaders/Deluge/Tips/Unraid-Mover/){:target="_blank" rel="noopener noreferrer"}"
With Usenet you won't have any issues.
With Usenet, you won't have any issues.
------
## Folder Structure
On the host (Unraid) you will need to add `/mnt/user` before it. **So `/mnt/user/data`**
On the host (unRAID) you will need to add `/mnt/user` before it. **So `/mnt/user/data`**
The `data` folder has sub-folders for `torrents` and `usenet` and each of these have sub-folders for `tv`, `movie` and `music` downloads to keep things neat. The `media` folder has nicely named `TV`, `Movies` and `Music` sub-folders, this is your library and what youd pass to Plex, Emby or JellyFin.
{! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !}
These subfolders you need to create your self, you can use krusader or winscp to create them or any other way you prefer.
*I'm using lower-case on all folders on purpose, being Linux is case-sensitive.*
{! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !}
The `data` folder has sub-folders for `torrents` and `usenet`, and each of these has sub-folders for `tv`, `movie` and `music` downloads to keep things organized. The `media` folder has nicely named `TV`, `Movies` and `Music` sub-folders, this is where your library resides, and what youd pass to Plex, Emby or JellyFin.
*I'm using lower case on all folder on purpose, being Linux is case sensitive.*
You will need to create these subfolders yourself. You can do this in any way you prefer, but the fastest way to create all the necessary subfolders would be to use the terminal (explained below). Alternatively, Krusader or WinSCP are popular choices if you are unsure.
### Fastest way to create the needed subfolders
The fastest way to create all the necessary subfolders would be to use the terminal, use a program like [PuTTy](https://www.putty.org/){:target="_blank" rel="noopener noreferrer"} or use the terminal from the dashboard.
These options will automatically create the required subfolders for your media library as well as your preferred download client(s).
If you use both torrents and usenet, use both commands.
#### If you use usenet
```bash
mkdir -p /mnt/user/data/{usenet/{incomplete,complete}/{tv,movies,music},media/{tv,movies,music}}
```
#### If you use torrents
```bash
mkdir -p /mnt/user/data/{torrents/{tv,movies,music},media/{tv,movies,music}}
```
------
@ -61,15 +93,15 @@ These subfolders you need to create your self, you can use krusader or winscp to
## Setting up the containers
After you created all the needed folders it's time to setup the paths in the docker containers.
After you've created all the necessary folders, it's time to set up the Docker container's paths.
Go to your dashboard and select your docker container you want to edit or if you're starting fresh add the docker containers you want to use or prefer.
Go to your dashboard and select the Docker container you want to edit, or, if you're starting fresh, add the container/App you want to use.
Unraid makes it actually pretty clear what's the Host Path and what's the Container Path.
unRAID makes it pretty clear which is the Host Path and Container Path.
`Container Path:` => The path that will be used inside the container.
`Container Path:` => The path that will be used from inside the container.
`Host Path:` => The path on your Unraid Server (The Host).
`Host Path:` => The actual/absolute path used on your unRAID Server (The Host).
------
@ -85,7 +117,7 @@ qBittorrent, Deluge, ruTorrent
!!! info
The reason why we use `/data/torrents/` for the torrent client is because it only needs access to the torrent files. In the torrent software settings, youll need to reconfigure paths and you can sort into sub-folders like `/data/torrents/{tv|movies|music}`.
The reason why we use `/data/torrents/` for the torrent client is because it only needs access to the torrent data. In the torrent software settings, youll need to configure your categories/labels to utilize the right path for specific content. You can sort into sub-folders like `/data/torrents/{tv|movies|music}`.
{! include-markdown "../../../includes/hardlinks/docker-tree-torrents.md" !}
@ -103,7 +135,7 @@ NZBGet or SABnzbd
!!! info
The reason why we use `/data/usenet/` for the usenet client is because it only needs access to the usenet files. In the usenet software settings, youll need to reconfigure paths and you can sort into sub-folders like `/data/usenet/{tv|movies|music}`.
The reason why we use `/data/usenet/` for the usenet client is that it only needs access to the usenet data. In the usenet software settings, youll need to configure your paths to sort content into sub-folders like `/data/usenet/{tv|movies|music}`.
{! include-markdown "../../../includes/hardlinks/docker-tree-usenet.md" !}
@ -121,7 +153,7 @@ Sonarr, Radarr and Lidarr
!!! info
Sonarr, Radarr and Lidarr gets access to everything because the download folder(s) and media folder will look like and be one file system. Hard links will work and moves will be atomic, instead of copy + delete.
Sonarr, Radarr and Lidarr get access to everything because the download folder(s) and media folder will need to look like, and be one mount, on the file system. Hard links will work properly and any moves will be atomic, rather than copying and deleting.
{! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !}
@ -139,7 +171,7 @@ Plex, Emby, JellyFin and Bazarr
!!! info
Plex, Emby, JellyFin and Bazarr only needs access to your media library, which can have any number of sub folders like Movies, Kids Movies, TV, Documentary TV and/or Music as sub folders.
Plex, Emby, JellyFin and Bazarr only need access to your media library, which can have any number of sub-folders (Movies, Kids Movies, TV, Documentary TV and/or Music).
{! include-markdown "../../../includes/hardlinks/docker-tree-media.md" !}
@ -149,19 +181,20 @@ Plex, Emby, JellyFin and Bazarr
![!unraid-final-result](images/unraid-final-result.png)
**Don't forget to look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside your applications.**
### Examples how to set up your paths INSIDE your applications
**Don't forget to look at the [Examples](/Hardlinks/Examples/) of how to set up your paths INSIDE your applications.**
### Video Tutorial
## Video Tutorial
!!! tip ""
Big Thanks to IBRACORP for noticing this Guide and creating a Video covering this unraid section.
Big Thanks to IBRACORP for noticing this Guide and creating a Video covering this unRAID section.
The reason why I added the video to the end is because I want the user to actually learn and understand why it's recommended to use this folder structure, before going straight to the YouTube video.
The reason why I have this video at the end is because I want the users to ACTUALLY LEARN and UNDERSTAND why it's recommended to use this folder structure prior to going straight to a YouTube video.
<iframe width="560" height="315" src="https://www.youtube.com/embed/AMcHsQJ7My0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
Also check out other videos from IBRACORP [HERE](https://www.youtube.com/c/IBRACORP/videos){:target="_blank" rel="noopener noreferrer"}
Check out other videos from IBRACORP [HERE](https://www.youtube.com/c/IBRACORP/videos){:target="_blank" rel="noopener noreferrer"}
{! include-markdown "../../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->
--8<-- "includes/support.md"

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

@ -4,14 +4,14 @@ You recently switched to a proper setup that supports Hardlinks and Instant Move
And you would like to replace copies with hardlinks ?
If your Operating System supports it you could make use of [Jdupes](https://github.com/jbruchon/jdupes).
If your Operating System supports it you could make use of [Jdupes](https://codeberg.org/jbruchon/jdupes).
## Usage
!!! info ""
I won't cover every command :bangbang:
If you want to know what else [Jdupes](https://github.com/jbruchon/jdupes) can do please read the manual.
If you want to know what else [Jdupes](https://codeberg.org/jbruchon/jdupes) can do please read the manual.
!!! tip
This process can take a long time and a pretty big hit on your resources depending on how big your library is, I did notice the first time it takes longer then the second time. Not sure if this is a cache thing or something else.

@ -8,7 +8,7 @@
Get 50% Off ALL Plans (Anonymous VPN, Anonymous VPN Pro, Anonymous VPN Premium)
```
TRaSH-Guides-2023
TRaSH-Guides-2024
```
[![torguard-FreeTrial-270x90](images/torguard/torguard-FreeTrial-728x90.gif)](https://torguard.net/aff.php?aff=5575){:target="_blank" rel="noopener noreferrer"}
@ -18,6 +18,8 @@
I Talked to several people and they are still able to use Torguard for Torrents, Perhaps because the connection is encrypted. And others just selected a server in another country.
!!! warning "If the US server doesn't work for you use another country"
[Source Torguard](https://torguard.net/blog/why-torguard-is-blocking-bittorrent-on-us-servers/){:target="_blank" rel="noopener noreferrer"}.
[Source Torrentfreak](https://torrentfreak.com/torguard-settles-piracy-lawsuit-and-agrees-to-block-torrent-traffic-on-u-s-servers-220314/){:target="_blank" rel="noopener noreferrer"}.
@ -68,6 +70,8 @@ For the best speed it's recommended to choose the one nearest to your location.
!!! tip ""
Sometimes you get better speeds if you use one of your neighboring countries.
!!! warning "If the US server doesn't work for you use another country"
Let's use for this example: `USA Miami` and copy/paste the Hostname `us-fl.torguard.org`.
![!Torguard Global VPN Network](images/torguard/globalvpnnetwork-list.png)

@ -11,7 +11,7 @@ If you're using a system with a GUI (Synology, unRAID, OMV, etc.) it's not alway
!!! warning
Please don't use screenshots to provide the info as they aren't always revealing all the needed info
Use one of the following from terminal(puTTy) to get the docker compose with or without the use of `sudo`.
Use one of the following commands in the terminal of your choice (e.g. puTTY) to generate the docker compose, with or without the use of `sudo`. Note that you can pass in multiple container names.
```bash
sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/red5d/docker-autocompose CONTAINER_NAME CONTAINER_NAME2
@ -23,9 +23,12 @@ sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/red5d/
sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/red5d/docker-autocompose sonarr radarr bazarr nzbget
```
Paste the results on one of the following sites.
!!! warning
Please not share the output directly to Discord, reddit, forums, etc.
Copy and paste the results on one of the following sites.
- [Notifiarr.com](https://logs.notifiarr.com/) (Recommended)
- [Notifiarr.com Privatebin](https://logs.notifiarr.com/){:target="_blank" rel="noopener noreferrer"} (Recommended)
- [Github Gist](https://gist.github.com){:target="_blank" rel="noopener noreferrer"} (Alternative)
- [hastebin.com](https://hastebin.com){:target="_blank" rel="noopener noreferrer"}
- [privatebin.net](https://privatebin.net/){:target="_blank" rel="noopener noreferrer"}

@ -7,7 +7,7 @@
### How to accomplish the Golden Rule
- For Sonarr check [HERE](/Sonarr/Sonarr-Release-Profile-RegEx/#golden-rule){:target="_blank" rel="noopener noreferrer"}
- For Sonarr check [HERE](/Sonarr/sonarr-collection-of-custom-formats/#golden-rule){:target="_blank" rel="noopener noreferrer"}
- For Radarr check [HERE](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="_blank" rel="noopener noreferrer"}
## Some extra info about 4K/X265

@ -1,4 +1,7 @@
nav:
- Home: index.md
- Tips
- Suggested Plex Media Server Settings: /Plex/Tips/Plex-media-server/
- Optimal Plex Client Settings: /Plex/Tips/Optimal-plex-client-settings/
- What does my media player support: what-does-my-media-player-support.md
- Stop 4k Video Transcoding: /Plex/Tips/4k-transcoding/
- Profiles: /Plex/profiles/

@ -1,4 +0,0 @@
nav:
- Suggested Plex Media Server Settings: Plex-media-server.md
- Optimal Plex Client Settings: Optimal-plex-client-settings.md
- JBOPS 4K Transcode Stopping with Tautulli: 4k-transcoding.md

@ -278,7 +278,7 @@ A comma-separated list of URLs (either HTTP or HTTPS), which will be published t
![!Settings - Network - Webhooks](images/settings-network-webhooks.png)
This feature can be enabled to allow your server to send events to external services. For example [Notifiarr](/Notifiarr/Quick-Start/){:target="_blank" rel="noopener noreferrer"}
This feature can be enabled to allow your server to send events to external services. For example [Notifiarr](https://notifiarr.com/){:target="_blank" rel="noopener noreferrer"}
------

@ -0,0 +1,109 @@
# What does my Media Player Support
We've created an Excel sheet with several tested Media Player devices with info that our community has provided.
We hope this Excel sheet will be helpful for everyone looking for a reliable Media Player device.
Do you see a missing Player/Product? Are you able to provide the needed info? Please join [TRaSH Guides Discord](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"}
??? question "How can I provide info on a missing player? What do I need to provide? - [Click to show/hide]"
- Currently, it's only possible to provide info if the playback is seen in Tautulli.
- Player or Product that can run the Plex client directly or indirectly (Infuse, Plex Kodi Connect, Plex2Zidoo, etc)
- Preferably a TV that can do Dolby Vision, but we also need HDR10+ results.
- Player and Product info can be seen in Tautulli.
- When doing a playback test for HDR formats provide screenshots of what Tautulli and your TV show, along with whatever other devices you have that show what formats are being used.
- When doing an audio format test provide screenshots from Tautulli and your AVR.
- Provide this info in [TRaSH Guides Discord](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} in #request-suggestions with a title starting with: `Test Media Player <your tested device>`
## What does the spreadsheet cover
This sheet will only cover Players/Products that can run the Plex client directly or indirectly (*Jellyfin/Emby isn't covered **yet** due to the lack of a proper Tautulli app and feedback/info from users*).
!!! info "Jellyfin/Emby"
While these principles are based on Plex and the capabilities of certain devices, the capabilities of these devices also apply to JellyFin and Emby. Assuming that it's possible to do the equivalent streaming method (direct or indirect play) with your media server, the hardware should act the same as if Plex was used.
The following aspects are covered
### Does it support the most common HDR formats
The sheet also has notes added for extra info
- Dolby Vision Profile 5 (*does not have a HDR10 baselayer, so cannot fallback to HDR10*)
- Dolby Vision Profile 7 (*DV + HDR10 baselayer, so it can fallback to HDR10*)
- Dolby Vision Profile 8 (*DV + HDR10 baselayer, so it can fallback to HDR10*)
- HDR10
- HDR10+ (*HDR10+ has also a HDR10 baselayer, so it can fallback to HDR10*)
#### Which Profile is used by what
- Profile 5 => WEBDL (Streaming Services)
- Profile 7 => Untouched Remuxes and BR-DISK
- Profile 8 => Encodes, Hybrid Remuxes, Hybrid WEBDL, and in some cases standard WEBDL like from Hulu
### Does it support audio passthrough in the most common formats
This allows for the best audio quality as the audio signal is not altered or compressed in any way before reaching the AV receiver or soundbar. This is especially important for high-quality audio formats such as Dolby TrueHD or DTS-HD Master Audio.
By using audio passthrough, you can ensure that you are getting the best audio experience possible when watching movies or listening to music through your home theater system. It allows you to take full advantage of the capabilities of your AVR/Soundbar and ensures that you are hearing the audio as it was intended to be heard by the content creators.
Overall, audio passthrough is the ideal way to send audio from your media server to your AV receiver or soundbar for the highest quality audio experience.
- TrueHD Atmos
- DTS X
- DD+ Atmos
- TrueHD
- DTS-HD MA
- FLAC/PCM
- DD+ (E-AC3)
- DTS
- AAC
- DD (AC3)
## Link to tested Media Player Devices
[Tested Media Players](https://docs.google.com/spreadsheets/d/15Wf_jy5WqOPShczFKQB28cCetBgAGcnA0mNOG-ePwDc/edit?usp=sharing){:target="_blank" rel="noopener noreferrer"}
!!! info "A lot of results have a note added that provides extra information, such as fallback HDR or audio formats, as well as other information that we've gathered from several sources."
---
## What should I do next with this info
The next thing to do is to setup a proper quality profile with the info you gathered from this sheet.
To make this easier we made a How to setup a quality profile for Radarr/Sonarr that has a flowchart to help you even more to decide what to choose.
### Radarr
[How to set up Quality Profiles](/Radarr/radarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences.
#### How to make use of HDR Formats for Radarr
- [How to set up Quality Profiles](/Radarr/radarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most of Custom Formats and shows some specifics of my configuration. You can use
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
#### How to make use of Audio Formats for Radarr
- [How to set up Quality Profiles](/Radarr/radarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most use of Custom Formats and shows some specifics of my configuration. You can use
{! include-markdown "../../includes/cf/radarr-audio.md" !}
---
### Sonarr
[How to setup Quality Profiles](/Sonarr/sonarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences.
#### How to make use of HDR Formats for Sonarr
- [How to setup Quality Profiles](/Sonarr/sonarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences.
{! include-markdown "../../includes/cf/sonarr-all-hdr-formats.md" !}
#### How to make use of Audio Formats for Sonarr
At the moment I decided not to add `Audio Advanced` Custom Formats to the WEB profile. You will hardly find HD audio with WEB-DL (Most newer WEBDL will have Atmos). If you also want HD audio formats, I would suggest going for Remuxes.
--8<-- "includes/support.md"

File diff suppressed because it is too large Load Diff

@ -13,9 +13,23 @@ The Tokens not available in the release won't be used/shown.
------
## Preparation
Go to `Settings` => `Media Management` and make sure that `Show Advanced` at the top is enabled.
![Enable Advanced](images/radarr-show-adavanced.png)
Once you clicked on the button it should look like this and you should see all the advanced options.
![Unhide Advanced](images/unhide-advanced.png)
Finally, enable `Rename Movies` to reveal the movie renaming options.
![Enable Rename Movies](images/radarr-enable-rename.png)
## Standard Movie Format
This naming scheme is made to be compatible with the [New Plex Agent](https://forums.plex.tv/t/new-plex-media-server-movie-scanner-and-agent-preview/593269/517) that now supports IMDb and TMDb IDs in filenames, if you don't need it or want it just remove `{imdb-{ImdbId}}`
This naming scheme is made to be compatible with the [New Plex Agent](https://forums.plex.tv/t/new-plex-media-server-movie-scanner-and-agent-preview/593269/517){:target="_blank" rel="noopener noreferrer"} that now supports IMDb and TMDb IDs in filenames, if you don't need it or want it just remove `{imdb-{ImdbId}}`
!!! warning "Starting from v4.2.2.6489, Radarr now supports Plex Multiple Edition tags in naming."
@ -25,6 +39,8 @@ This naming scheme is made to be compatible with the [New Plex Agent](https://fo
!!! danger "Only use `{edition-{Edition Tags}}` if you are prepared to have movies separated by edition<br>when using a merged Plex library - e.g., you keep both 1080p and 2160p versions of one movie.<br><br>For example if you have the `Directors Cut` and the `Extended Cut` for one movie, those will show up as two separate movies in your library.<br><br>Note that not using `{edition-{Edition Tags}}` will prevent Plex from recognizing the edition."
### Plex
```bash
{{ radarr['naming']['radarr-naming']['file']['default'] }}
```
@ -33,27 +49,27 @@ This naming scheme is made to be compatible with the [New Plex Agent](https://fo
`The Movie Title (2010) {imdb-tt0066921} {edition-Ultimate Extended Edition} [IMAX HYBRID][Bluray-1080p Proper][3D][DV HDR10][DTS 5.1][x264]-EVOLVE`
For Jellyfin/Emby:
#### Plex Anime
```bash
{{ radarr['naming']['radarr-naming']['file']['emby'] }}
{{ radarr['naming']['radarr-naming']['file']['anime'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
`The Movie Title (2010) [imdbid-tt0066921] {edition-Ultimate Extended Edition} [IMAX HYBRID][Bluray-1080p Proper][3D][DV HDR10][DTS 5.1][x264]-EVOLVE`
`The Movie Title (2010) {imdb-tt0066921} {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE`
If you do Anime
### Emby
```bash
{{ radarr['naming']['radarr-naming']['file']['anime'] }}
{{ radarr['naming']['radarr-naming']['file']['emby'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
`The Movie Title (2010) {imdb-tt0066921} {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE`
`The Movie Title (2010) [imdbid-tt0066921] - {edition-Ultimate Extended Edition} [IMAX HYBRID][Bluray-1080p Proper][3D][DV HDR10][DTS 5.1][x264]-EVOLVE`
For Jellyfin/Emby:
#### Emby Anime
```bash
{{ radarr['naming']['radarr-naming']['file']['anime-emby'] }}
@ -61,7 +77,27 @@ For Jellyfin/Emby:
??? abstract "RESULTS: - [Click to show/hide]"
`The Movie Title (2010) [imdbid-tt0066921] {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE`
`The Movie Title (2010) [imdbid-tt0066921] - {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE`
### Jellyfin
```bash
{{ radarr['naming']['radarr-naming']['file']['jellyfin'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
`The Movie Title (2010) [imdbid-tt0066921] - {edition-Ultimate Extended Edition} [IMAX HYBRID][Bluray-1080p Proper][3D][DV HDR10][DTS 5.1][x264]-EVOLVE`
#### Jellyfin Anime
```bash
{{ radarr['naming']['radarr-naming']['file']['anime-jellyfin'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
`The Movie Title (2010) [imdbid-tt0066921] - {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE`
------
@ -99,9 +135,7 @@ The filename can be Obscured where the Release naming isn't, especially when you
{{ radarr['naming']['radarr-naming']['folder']['default'] }}
```
RESULT:
`The Movie Title (2010)`
<small>RESULT:</small> `The Movie Title (2010)`
------
@ -114,29 +148,33 @@ RESULT:
TMDb is usually better as it guarantees a match, IMDb only gets matched if the TMDb entry has the correct IMDb ID association. We don't actually talk to IMDb.
#### Optional Movies Folder Format for the Plex Movies Scanner and Jellyfin/Emby
#### Optional Movies Folder Format
This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names.
For Plex:
##### Optional Plex
```bash
{{ radarr['naming']['radarr-naming']['folder']['plex'] }}
```
RESULT:
`The Movie Title (2010) {imdb-tt1520211}`
<small>RESULT:</small> `The Movie Title (2010) {imdb-tt1520211}`
For Jellyfin/Emby:
##### Optional Emby
```bash
{{ radarr['naming']['radarr-naming']['folder']['emby'] }}
```
RESULT:
<small>RESULT:</small> `The Movie Title (2010)`
##### Optional Jellyfin
```bash
{{ radarr['naming']['radarr-naming']['folder']['jellyfin'] }}
```
`The Movie Title (2010) [imdbid-tt1520211]`
<small>RESULT:</small> `The Movie Title (2010) [imdbid-tt1520211]`
!!! tip
IMDb IDs are going to be very accurate and rarely change, TVDB/TMDB IDs, on the other hand, do change or are removed more frequently.

@ -2,7 +2,7 @@
Here we will explain how to setup your own preferred language Custom Format, with a few examples.
!!! warning "Using language Custom Formats is not compatible with setting a preferred language in a quality profile in Radarr. You must use one or the other.<br>If you want to make use of the Custom Formats set the preferred language to `Any`."
!!! warning "Using language Custom Formats is not compatible with setting a preferred language in a quality profile in Radarr. You must use one or the other.<br>If you want to make use of the Custom Formats set the preferred language to `Any`.<br><br>Sonarr doesn't have a preferred language in the quality profile, so this can be ignored if you're setting this up with Sonarr"
## Language Examples
@ -24,7 +24,7 @@ With this Custom Format you will get only the Movie/TV Show with the original la
For this we're going to make use of so called reverse scoring.
Add the following json to your Radarr/Sonarr with a score of `-10000`.
Add the following json to your Radarr/Sonarr with a score in your profile of `-10000`.
??? example "JSON - [Click to show/hide]"
@ -44,7 +44,7 @@ With this Custom Format you will only get the Movie/TV Show in the English langu
For this we're going to make use of so called reverse scoring.
Add the following json to your Radarr/Sonarr with a score of `-10000`.
Add the following json to your Radarr/Sonarr with a score in your profile of `-10000`.
??? example "JSON - [Click to show/hide]"
@ -68,7 +68,7 @@ With this Custom Format you will only get the Movie/TV Show with Dutch and/or Fl
For this we're going to make use of so called reverse scoring.
Add the following json to your Radarr/Sonarr with a score of `-10000`.
Add the following json to your Radarr/Sonarr with a score in your profile of `-10000`.
??? example "JSON - [Click to show/hide]"
@ -87,7 +87,7 @@ Let's say you want German, but if German is not available then fall back to Orig
!!! info "For languages other than German, replace the German condition with language of your choice."
Add the following json to your Radarr/Sonarr with a score of `-10000`.
Add the following json to your Radarr/Sonarr with a score in your profile of `-10000`.
??? example "JSON - [Click to show/hide]"
@ -95,7 +95,7 @@ Add the following json to your Radarr/Sonarr with a score of `-10000`.
[[% filter indent(width=4) %]][[% include 'json/guide-only/language-not-original-or-german.json' %]][[% endfilter %]]
```
Add the following json to your Radarr/Sonarr with a score of `10`.
Add the following json to your Radarr/Sonarr with a score in your profile of `10`.
??? example "JSON - [Click to show/hide]"
@ -113,7 +113,7 @@ Let's say you just want to prefer German and don't care if you get another rando
!!! info "For languages other than German, replace the German condition with language of your choice."
Add the following json to your Radarr/Sonarr with a score of `10`.
Add the following json to your Radarr/Sonarr with a score in your profile of `10`.
??? example "JSON - [Click to show/hide]"
@ -135,7 +135,7 @@ In this example I will use Dutch and Flemish since a lot of Movies/TV Shows sinc
!!! info "For languages other than Dutch/Flemish, replace the Dutch/Flemish condition with language of your choice."
Add the following json to your Radarr/Sonarr with a score of `10`.
Add the following json to your Radarr/Sonarr with a score in your profile of `10`.
??? example "JSON - [Click to show/hide]"
@ -175,7 +175,7 @@ Add the following json to your Radarr/Sonarr with a score of `10`.
??? question "Where does Radarr get the Original Language from? - [Click to show/hide]"
Radarr makes use of [The Movie Database (TMDB)](https://www.themoviedb.org/){:target="_blank" rel="noopener noreferrer"}.
Radarr makes use of [The Movie Database (TMDB)](https://www.themoviedb.org/){:target="_blank" rel="noopener noreferrer"}. As of February 12, 2023, Radarr has updated its metadata cache to use a movie's spoken language from TMDb as the original language, but only when there is a single spoken language listed for that movie on TMDb. In cases where multiple spoken languages are listed, Radarr will use the movie's designated original language from TMDb.
![!The Movie Database (TMDB) Original Language](images/original-language-tmdb.png)

@ -1,39 +1,44 @@
# How to rename your folders
If you want to rename your current folder names (for example to your new naming scheme), you can do that with this little magic trick.
If you need to rename your current folder names (for example, to a new naming scheme), you can do so with a little "magic trick".
![!radarr-wrong-folder-name](images/radarr-wrong-folder-name.png)
Go to you movie overview
Simply go to the movie overview section.
`Movies`
On the top click on `Movie Editor`
Click on `Edit Movies` (at the top)
![!radarr-movie-editor](images/radarr-movie-editor.png)
After activating it you select the movie(s) from where you want to have the folder(s) to be renamed.
Once you are in "edit" mode, you can select the movie(s) whose folders you want to be renamed.
![!radarr-movie-editor-select](images/radarr-movie-editor-select.png)
1. If you want all your movie folders renamed to your new folder naming scheme you set earlier [HERE](/Radarr/Radarr-recommended-naming-scheme){:target="_blank" rel="noopener noreferrer"}.
1. Select the movie(s) from where you want to have the folder(s) to be renamed.
1. Choose the same `Root Folder`
1. If you want all your movie's folders to be renamed with the new naming scheme you set [HERE](/Radarr/Radarr-recommended-naming-scheme){:target="_blank" rel="noopener noreferrer"}.
1. Select the movie(s) that you want to have the folder(s) renamed.
1. At the bottom select `Edit`
A new popup will be shown:
![!radarr-edit-selected-movies](images/radarr-edit-selected-movies.png)
Choose the same (current) root folder for your selected movies, and choose `Apply Changes`.
![!radarr-movie-editor-move-files-yes](images/radarr-movie-editor-move-files-yes.png)
Select `Yes, Move the files`
You will get a warning popup where you will need to choose `Yes, Move the files`
!!! warning
If you have a large library, remote storage, cloud storage, or your path structure isn't well planned or doesn't support instant moves, then this process could take a while. Make sure you don't interrupt this process. If it stops before it's complete, it could result in quite the mess.
If you have a large library, use remote or cloud storage, or your path structure isn't well planned (or doesn't support instant moves) this could take a while.
**Make sure you don't interrupt this process.** If it stops before it has been completed, it could result in quite a mess.
Then Magic
Then, Magic!
![!radarr-correct-folder-name](images/radarr-correct-folder-name.png)
As you can see the folder has been renamed to the correct year following your naming scheme.
As you can see, the folder has now been renamed to the new/updated naming scheme.
{! include-markdown "../../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->
--8<-- "includes/support.md"

@ -4,8 +4,8 @@ In this guide I will try to explain how you can sync two (or more) Radarr/Sonarr
I'm going to show two different options on how you can setup your sync with two Radarr/Sonarr instances.
- Option 1: This option is best used if you want a 1:1 copy of your Radarr/Sonarr instances as it'll sync everything
- Option 2: This option is best used if you only want to have a subset of your library Movies/TV Shows as 4K/2160p (UHD) as it filters by quality profile
- Option 1: This option is best used if you want a 1:1 copy of your Radarr/Sonarr instances as it'll sync everything.
- Option 2: This option is best used if you only want to cherry pick which Movies/TV Shows you want as 4K/2160p (UHD).
!!! bug ""
I'm not going to explain how to set up two Radarr/Sonarr instances for your system, being it depends on how you have it installed/running. [Radarr Multiple Instance Information](https://wiki.servarr.com/radarr/installation#multiple-instances) and [Sonarr Multiple Instance Information](https://wiki.servarr.com/sonarr/installation#multiple-instances)
@ -160,6 +160,7 @@ You now only need to make use of `Sonarr 1`. When you got a TV show (or a movie
------
[^1]:
If you're interested in the 1080p streaming optimized quality profile you can join my [discord](https://trash-guides.info/discord) and get access to the Special Quality Profiles channel (access-to-sqp) by accepting the rules.
This is a special quality profile I created for people who are really interested in it.
@ -198,5 +199,4 @@ You now only need to make use of `Sonarr 1`. When you got a TV show (or a movie
- **Daily**: Episodes released daily or less frequently that use year-month-day (2017-05-25)
- **Standard**: Episodes released with SxxEyy pattern
{! include-markdown "../../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->
--8<-- "includes/support.md"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 368 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 464 KiB

After

Width:  |  Height:  |  Size: 362 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

After

Width:  |  Height:  |  Size: 221 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

@ -103,6 +103,10 @@ This is a must-have for every Quality Profile you use. All these Custom Formats
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
!!! tip "Getting the movie name in French in the file and/or folder name"
Following the recommended naming scheme for your library, whether it's Plex, Jellyfin, or Emby, you can add the ISO-2 language code at the end of the movie name tag to display the movie name in the desired language.
The tag should look like the following: `{Movie CleanTitle:fr}`. This work in both Folder and File name.
------
#### HD Bluray + WEB
@ -153,7 +157,7 @@ If you prefer High Quality UHD Encodes (Bluray-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/french-guide/radarr-french-multi-audio-en.md" !}
@ -235,7 +239,7 @@ If you prefer 2160p Remuxes (Remux-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/french-guide/radarr-french-multi-audio-en.md" !}
@ -271,8 +275,6 @@ TRaSH provides great guides and explanations about them at the following links:
- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats + DV (WEBDL)](/Radarr/radarr-setup-quality-profiles/#hdr-formats-dv-webdl){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats + DV (WEBDL) + HDR10+ Boost](/Radarr/radarr-setup-quality-profiles/#hdr-formats-dv-webdl-hdr10-boost){:target="_blank" rel="noopener noreferrer"}
------

@ -98,6 +98,10 @@ Ces Formats sont reconnus comme étant indispensables pour tous les Profils de Q
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
!!! tip "Obtenir le nom du film en français dans le nom du fichier et/ou du dossier"
En suivant le schéma de dénomination recommandé pour votre bibliothèque, qu'il s'agisse de Plex, Jellyfin ou Emby. Vous pouvez ajouter le code de langue ISO-2 à la fin de la balise du nom du film pour afficher le nom du film dans la langue souhaitée.
La balise se présentera comme suit : `{Movie CleanTitle:fr}`. Cela fonctionne aussi bien pour les noms de dossiers que pour les noms de fichiers.
------
#### HD Bluray + WEB
@ -150,7 +154,7 @@ Si vous préférez les encodages UHD de haute qualité (Bluray-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/french-guide/radarr-french-multi-audio-fr.md" !}
@ -234,7 +238,7 @@ Si vous préférez les Remuxes en 2160p (Remux-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/french-guide/radarr-french-multi-audio-fr.md" !}
@ -270,8 +274,6 @@ TRaSH fournit d'excellents guides et explications à leur sujet dans les liens s
- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats + DV (WEBDL)](/Radarr/radarr-setup-quality-profiles/#hdr-formats-dv-webdl){:target="_blank" rel="noopener noreferrer"}
- [HDR Formats + DV (WEBDL) + HDR10+ Boost](/Radarr/radarr-setup-quality-profiles/#hdr-formats-dv-webdl-hdr10-boost){:target="_blank" rel="noopener noreferrer"}
------

@ -1,15 +1,16 @@
# How to setup Quality Profiles
# How to set up Quality Profiles
*aka How to setup Custom Formats*<br><br>
So what's the best way to setup the Custom Formats and which ones to use with which scores to setup your quality profiles?
*aka How to set up Custom Formats*<br><br>
So what's the best way to set up the Custom Formats and which ones to use with which scores to set up your quality profiles?
There isn't a best setup, it depends on your setup (hardware devices) and your own personal preferences.
There isn't a "best" setup, it depends on your media setup (hardware devices) and your personal preferences.
Some prefer high quality audio (HD Audio), others high quality video. Many prefer both.
Some prefer high-quality audio (HD Audio), others high-quality video. Many prefer both.
Here I will try to explain how to make the most use of Custom Formats to help you to setup your quality profiles for your personal needs.
Here we will try to explain how to make the most of Custom Formats to help you set up your quality profiles for your personal preferences.
I created a [flowchart](#which-quality-profile-should-you-choose) to make your decision/choices easier.
- We've created a [flowchart](#which-quality-profile-should-you-choose) to make your decisions/choices easier.
- We've also created an Excel sheet with several tested [media player devices](/Plex/what-does-my-media-player-support){:target="_blank" rel="noopener noreferrer"} to display what formats and capabilities they support, sourced from information provided by our community. We hope this Excel sheet will be a helpful resource for those looking for a reliable media player device and will help you choose the appropriate quality profile.
------
@ -32,11 +33,11 @@ Select the profile that you want to use/prefer.
1. Profile name.
1. Allow upgrades. Radarr will stop upgrading quality once (3) is met.
1. Upgrade until the selected quality.
1. The `Minimum Custom Format Score` allowed to download. [More Info](#minimum-custom-format-score)
1. The `Minimum Custom Format Score` that is allowed to download. [More Info](#minimum-custom-format-score)
1. Keep upgrading Custom Format until this score is reached. (setting this to `0` means no upgrades will happen based on Custom Formats)
1. Your preferred language profile for your releases. (Original is recommended)
At the bottom in your chosen profile you will see the added Custom Formats where you can start setting up the scores.
At the bottom, in your chosen profile, you will see the added Custom Formats where you can start setting up the scores.
??? success "Screenshot example - [Click to show/hide]"
![!cf-quality-profile-cf](images/cf-quality-profile-cf.png)
@ -45,9 +46,9 @@ At the bottom in your chosen profile you will see the added Custom Formats where
These screenshots are just examples to show you how it should look and where you need to place the data that you need to add, they aren't always a 100% reflection of the actual data and not always 100% up to date with the actual data you need to add.
- Always follow the data described in the guide.
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
- If you have any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
!!! info "Keep in mind Custom Formats are made to fine tune your Quality Profile.<br>Generally, quality trumps all"
!!! info "Keep in mind Custom Formats are made to fine-tune your Quality Profile.<br>Generally, quality trumps all"
Custom formats are controlled by Quality Profiles.
@ -71,7 +72,7 @@ At the bottom in your chosen profile you will see the added Custom Formats where
<p align="center">![Flowchart](/Radarr/images/flowchart-guide-radarr.png){ width="10%" height="10%" }
![Flowchart](/Radarr/images/flowchart-custom-format-radarr.png)
![Flowchart](/Radarr/images/flowchart-quality-profiles-radarr.png)
If you're unsure or have questions do not hesitate to ask for help on Discord
@ -81,9 +82,11 @@ At the bottom in your chosen profile you will see the added Custom Formats where
## TRaSH Quality Profiles
The following Quality Profiles can be combined into a single Quality Profile if you, for example, want to be able to upgrade from 1080p to 4K/2160p.
### HD Bluray + WEB
If you prefer High Quality HD Encodes (Bluray-720p/1080p)
If you prefer High-Quality HD Encodes (Bluray-720p/1080p)
- *Size: 6-15 GB for a Bluray-1080p depending on the running time.*
@ -97,9 +100,11 @@ If you prefer High Quality HD Encodes (Bluray-720p/1080p)
{! include-markdown "../../includes/cf/radarr-unwanted.md" !}
{! include-markdown "../../includes/cf/radarr-optional.md" !}
{! include-markdown "../../includes/cf/radarr-streaming-services.md" !}
I decided not to add `Audio Advanced` Custom Formats to the encodes profile, You will hardly find HD audio with HD Bluray Encodes. With HD Bluray Encodes I personally suggest to go for quality. If you also want HD audio formats I would suggest to go for the Remuxes or UHD Encodes.
I decided not to add `Audio Advanced` Custom Formats to the encodes profile. You will hardly find HD audio with HD Bluray Encodes. When downloading HD Bluray Encodes, I suggest going for quality. If you want HD audio formats, I would suggest going with a Remux or UHD Encode.
Use the following main settings in your profile.
@ -107,7 +112,7 @@ Use the following main settings in your profile.
!!! warning "Make sure you don't check the BR-DISK."
The reason why I didn't select the WEB-DL 720p is because you will hardly find any releases that aren't done as 1080p WEB-DL.
The reason why I didn't select the WEB-DL 720p is that you will hardly find any releases that aren't done as 1080p WEB-DL.
{! include-markdown "../../includes/starr/move-quality-to-top.md" !}
@ -125,7 +130,7 @@ The reason why I didn't select the WEB-DL 720p is because you will hardly find a
### UHD Bluray + WEB
If you prefer High Quality UHD Encodes (Bluray-2160p)
If you prefer High-Quality UHD Encodes (Bluray-2160p)
- *Size: 20-60 GB for a Bluray-2160p depending on the running time.*
@ -133,7 +138,7 @@ If you prefer High Quality UHD Encodes (Bluray-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-movie-versions-imaxe-noremux.md" !}
@ -143,6 +148,8 @@ If you prefer High Quality UHD Encodes (Bluray-2160p)
{! include-markdown "../../includes/cf/radarr-unwanted-uhd.md" !}
{! include-markdown "../../includes/cf/radarr-optional.md" !}
{! include-markdown "../../includes/cf/radarr-optional-uhd.md" !}
{! include-markdown "../../includes/cf/radarr-streaming-services.md" !}
@ -157,7 +164,7 @@ Use the following main settings in your profile.
??? abstract "Workflow Logic - [Click to show/hide]"
**Depending what's released first and available the following Workflow Logic will be used:**
**Depending on what's released first and available the following Workflow Logic will be used:**
- When the WEB-2160p is released it will download the WEB-2160p. (streaming services)
- When the Bluray-2160p is released it will upgrade to the Bluray-2160p.
@ -187,6 +194,8 @@ If you prefer 1080p Remuxes (Remux-1080p)
{! include-markdown "../../includes/cf/radarr-unwanted.md" !}
{! include-markdown "../../includes/cf/radarr-optional.md" !}
{! include-markdown "../../includes/cf/radarr-streaming-services.md" !}
Use the following main settings in your profile.
@ -195,7 +204,7 @@ Use the following main settings in your profile.
!!! warning "Make sure you don't check the BR-DISK."
The reason why I didn't select the WEB-DL 720p is because you will hardly find any releases that aren't done as 1080p WEB-DL.
The reason why I didn't select the WEB-DL 720p is that you will hardly find any releases that aren't done as 1080p WEB-DL.
{! include-markdown "../../includes/starr/move-quality-to-top.md" !}
@ -221,7 +230,7 @@ If you prefer 2160p Remuxes (Remux-2160p)
{! include-markdown "../../includes/cf/radarr-audio.md" !}
{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
{! include-markdown "../../includes/cf/radarr-movie-versions-imaxe.md" !}
@ -231,6 +240,8 @@ If you prefer 2160p Remuxes (Remux-2160p)
{! include-markdown "../../includes/cf/radarr-unwanted-uhd.md" !}
{! include-markdown "../../includes/cf/radarr-optional.md" !}
{! include-markdown "../../includes/cf/radarr-optional-uhd.md" !}
{! include-markdown "../../includes/cf/radarr-streaming-services.md" !}
@ -251,19 +262,25 @@ Use the following main settings in your profile.
So why such a ridiculously high `Upgrade Until Custom` and not a score of `500`?
Because I'm too lazy to calculate the maximum for every Quality Profile I use, and I want it to upgrade to the highest possible score anyway.
Because I'm too lazy to calculate the maximum for every Quality Profile I use, and I want it to be upgraded to the highest possible score anyway.
------
## Custom Format Groups
The following custom format groups should be combined with the Quality Profiles above. Users will need to choose which options and custom formats they prefer.
### Advanced Audio
- You have a audio setup that supports all HD Audio (TrueHD, DTS-X, DTS-HD, etc).
- You have a media player (hardware devices) that can passthrough HD audio.
- You don't have a AppleTV (Being it can't passthrough untouched HD audio).
- You have a hardware media player device and an audio setup that supports **ALL** HD Audio (TrueHD, DTS-X, DTS-HD, etc).
*In this example I have lossy Atmos over lossless DTS because the object metadata (Atmos) matters more to me over lossy vs lossless.*
{! include-markdown "../../includes/cf/audio-limitations-atv.md" !}
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
- You've chosen a profile that includes Audio Formats. You should use all the Audio formats with Remuxes/UHD Encodes.
- You should add **ALL** the Audio formats - don't leave any of them out!
- Audio transcoding has a low impact on your server. If your server can't handle audio transcoding, consider choosing another quality profile.
*The reason that I score lossy Atmos higher than lossless DTS-HD MA is that I prefer having the object metadata (Atmos) over lossless audio.*
{! include-markdown "../../includes/cf/radarr-audio.md" !}
@ -271,45 +288,19 @@ Use the following main settings in your profile.
### HDR Formats
- You have a setup that supports Dolby Vision.
- You share your media library with other family members that also have have Dolby Vision compatible devices.
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
- You have a 4K TV and a hardware media player device (such as Roku, AppleTV, Shield, SmartTV App, etc.) that supports several HDR formats (such as Dolby Vision, HDR10, HDR10+, etc.).
{! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !}
------
### HDR Formats + DV (WEBDL)
- Not all devices in your chain support Dolby Vision.
- You share your media library with other family members that don't have Dolby Vision compatible devices.
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats-dv-web.md" !}
------
### HDR Formats + DV (WEBDL) + HDR10+ Boost
- Not all devices in your chain support Dolby Vision.
- You share your media library with other family members that don't have Dolby Vision compatible devices.
- You have a (Samsung) TV that supports HDR10+.
{! include-markdown "../../includes/cf/radarr-suggest-attention.md" !}
{! include-markdown "../../includes/cf/radarr-all-hdr-formats-dv-web-hdr10plus-boost.md" !}
------
## FAQ & INFO
### Proper and Repacks
??? tip "Proper and Repacks - [Click to show/hide]"
I also suggest to change the Propers and Repacks settings in Radarr
I also suggest that you change the Propers and Repacks settings in Radarr
`Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Radarr/Radarr-collection-of-custom-formats/#repackproper) Custom Format.
@ -322,11 +313,11 @@ Use the following main settings in your profile.
??? question "How to use a Custom Format to avoid certain releases? - [Click to show/hide]"
For Custom Formats you really want to avoid, set it to something really low like `-10000` and not something like `-10`.
Being when you add a Custom Format what you prefer and you set it to something like `+10` it could happen that for example the `BR-DISK` will be downloaded (-10)+(+10)=0 and if your `Minimum Custom Format Score` is set at `0`.
When you add your preferred Custom Format and set it to something like `+10`, it's possible that, for example, the `BR-DISK` will be downloaded - (-10)+(+10)=0 - if your `Minimum Custom Format Score` is set at `0`.
### Releases you should avoid
This is a must have for every Quality Profile you use in my opinion. All these Custom Formats make sure you don't get Low Quality Releases.
This is a must-have for every Quality Profile you use in my opinion. All these Custom Formats make sure you don't get Low Quality Releases.
{! include-markdown "../../includes/cf/radarr-unwanted.md" !}
@ -334,25 +325,25 @@ This is a must have for every Quality Profile you use in my opinion. All these C
??? question "What do Custom Formats with a score of 0 do? - [Click to show/hide]"
All Custom Formats with a score of 0 are pure informational and don't do anything.
All Custom Formats with a score of 0 are purely informational and don't do anything.
### Minimum Custom Format Score
??? info "Minimum Custom Format Score - [Click to show/hide]"
Some people suggest not to use negative scores for your Custom Formats and set this option to a higher score then 0.
Some people suggest not to use negative scores for your Custom Formats and set this option to a higher score than 0.
The reason why I don't prefer/use this is because you could limit yourself when some new groups or whatever will be released.
Also it makes it much more clear what you prefer and what you want to avoid.
Also, it makes it much more clear what you prefer and what you want to avoid.
### Audio Channels
??? info "Audio Channels - [Click to show/hide]"
Elsewhere in the guide, you will find a separate group of custom formats called `Audio Channels`. These will match the number of audio channels in a release, for example 2.0 (stereo) or 5.1/7.1 (surround sound). Personally I wouldn't add the audio channels Custom Formats as you could limit yourself in the amount of releases you're able to get. Only use them if you have a specific need for them.
Elsewhere in the guide, you will find a separate group of custom formats called `Audio Channels`. These will match the number of audio channels in a release, for example, 2.0 (stereo) or 5.1/7.1 (surround sound). Personally, I wouldn't add the audio channels Custom Formats as you could limit yourself in the amount of releases you're able to get. Only use them if you have a specific need for them.
Using it with any kind of Remuxes Quality Profile is useless in my opinion being that 99% of all remuxes are multi audio anyway. You can get better scores just using the `Audio Advanced` Custom Formats.
Using this with any kind of Remux Quality Profile is useless, in my opinion, being that 99% of all Remuxes are multi-audio anyway. You can get better scores just by using the `Audio Advanced` Custom Formats.
### Avoid using the x264/x265 Custom Format
@ -364,8 +355,16 @@ This is a must have for every Quality Profile you use in my opinion. All these C
Use x265 only for 4k releases and the [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="_blank" rel="noopener noreferrer"} makes sure you still get the x265 releases.
### Why am I getting purple or green colors
{! include-markdown "../../includes/cf/dv-info-green-purple.md" !}
### Dolby Vision Profiles
{! include-markdown "../../includes/cf/dv-info-profiles.md" !}
## Thanks
A big Thanks to [rg9400](https://github.com/rg9400) for providing me with info needed to create the Tips section.
Special thanks to everyone who helped with the testing and creation of these Custom Formats.
--8<-- "includes/support.md"

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# SQP-1 (2160p) Streaming Optimized
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/1-4k-why.md" !}

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# SQP-1 (1080p) Streaming Optimized
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/1-why.md" !}

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# UHD Remux|Bluray|IMAX-E (SQP-2)
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/2-why.md" !}

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# UHD Remux|IMAX-E (SQP-3)
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/3-why.md" !}

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# UHD WEBDL|IMAX-E (SQP-4)
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/4-why.md" !}

@ -1,5 +1,12 @@
---
search:
exclude: true
---
# UHD Bluray|IMAX-E (SQP-5)
<meta name="robots" content="noindex, noarchive, nofollow" />
--8<-- "includes/sqp/wip.md"
{! include-markdown "../../includes/sqp/5-why.md" !}

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

@ -1,13 +1,21 @@
---
search:
exclude: true
---
# Special Quality Profiles
<meta name="robots" content="noindex, noarchive, nofollow" />
The Special Quality Profiles are Custom made and tested Quality Profile for specific needs or preferences.
!!! warning
- Anything here is for private use only and not for public use. :bangbang:
- I expect from the users that got the link to this page to honour it. :bangbang:
- Yes, you can talk in the public channels that you use a specific SQP.
- If others are interested they can join.
- Anything here is for private use only. It is prohibited to share anything related to SQP, such as setup information or links to the guide, in any public locations.:bangbang:
- I expect users who received the link to this page to honor this rule.:bangbang:
- Any questions about SQP should be asked in the related discord, not in the main channel or any other public places.:bangbang:
- Yes, you can mention in the public channels that you are using a specific SQP.
- If others are interested, they can join by accepting the rules in the `access-to-sqp` channel.
## The Following SQP are available

@ -2,14 +2,14 @@ nav:
- Home: index.md
- Quality Settings (File Size): Sonarr-Quality-Settings-File-Size.md
- Recommended naming scheme: Sonarr-recommended-naming-scheme.md
- Release Profile RegEx (WEB-DL): Sonarr-Release-Profile-RegEx.md
- Release Profile RegEx (Anime): Sonarr-Release-Profile-RegEx-Anime.md
- How to import Custom Formats: sonarr-import-custom-formats.md
- How to Update Custom Formats: sonarr-how-to-update-custom-formats.md
- How to setup Quality Profiles: sonarr-setup-quality-profiles.md
- How to setup Quality Profiles (Anime): sonarr-setup-quality-profiles-anime.md
- How to setup Quality Profiles (French): sonarr-setup-quality-profiles-french-en.md
- Collection of Custom Formats: sonarr-collection-of-custom-formats.md
- Remote Path Mappings explained: Sonarr-remote-path-mapping.md
- Sonarr v4 Beta:
- How to import Custom Formats: sonarr-import-custom-formats.md
- How to Update Custom Formats: sonarr-how-to-update-custom-formats.md
- How to setup Quality Profiles: sonarr-setup-quality-profiles.md
- How to setup Quality Profiles (Anime): sonarr-setup-quality-profiles-anime.md
- How to setup Quality Profiles (French): sonarr-setup-quality-profiles-french-en.md
- Collection of Custom Formats: sonarr-collection-of-custom-formats.md
- Sonarr v3 (Legacy):
- Release Profile RegEx (WEB-DL): Sonarr-Release-Profile-RegEx.md
- Release Profile RegEx (Anime): Sonarr-Release-Profile-RegEx-Anime.md
- Tips

@ -1,3 +1,5 @@
{! include-markdown "../../includes/sonarrv3-eol.md" !}
# Release Profile RegEx (Anime)
!!! note

@ -1,3 +1,5 @@
{! include-markdown "../../includes/sonarrv3-eol.md" !}
# Release Profile RegEx (WEB-DL)
Sonarr V3 has a great feature called Release Profile.
@ -227,6 +229,26 @@ Add this to your `Preferred (3)` with a score of [50]
/\b(ovid)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(fod)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(tver)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(u-next)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(ALL4)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(4OD)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
!!! danger "Caution"
Don't forget to click on `SAVE` after you've added everything you want to the release profile :bangbang:
@ -322,7 +344,7 @@ Add this to your `Preferred (3)` with a score of [5]
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(-BRiNK|-CHX|-CTFOH|-EVO|-FGT|-GHOSTS|-HiQVE|-iNTENSO|JFF|MeGusta|-NERO|nhanc3|Pahe\.ph|Pahe\.in|PSA|TBS|-TG|-VIDEOHOLE|-worldmkv|-XLF|-Zero00)\b/i
/(-BRiNK|-CHX|-CTFOH|-d3g|-EVO|-FGT|-GHOSTS|-HiQVE|-iNTENSO|JFF|MeGusta|-NERO|nhanc3|Pahe\.ph|Pahe\.in|Pahe|PSA|TBS|-TG|-VIDEOHOLE|-worldmkv|-XLF|-Zero00)\b/i
```
!!! danger "Caution"
@ -419,7 +441,7 @@ Add this to your `Preferred (3)` with a score of [500]
Add this to your `Preferred (3)` with a score of [1500]
```bash
/\b(dv|dovi|dolby[ .]?vision)\b/i
/\b(dv|dovi|dolby[ .]?v(ision)?)\b/i
```
------
@ -532,7 +554,7 @@ Add this to your `Preferred (3)` with a score of [15]
Add this to your `Must not contain (2)`
```bash
/^(?!.*(HDR|HULU|REMUX))(?=.*\b(DV|Dovi|Dolby[- .]?Vision)\b).*/i
/^(?!.*(HDR|HULU|REMUX))(?=.*\b(DV|Dovi|Dolby[- .]?V(ision)?)\b).*/i
```
------
@ -560,7 +582,7 @@ Add this to your `Must not contain (2)`
Add this to your `Must not contain (2)`
```bash
/^(?!.*(web[ ]dl|-deflate|-inflate))(?=.*([_. ]WEB[_. ])(?!DL)\b)|\b(-CAKES|-GGEZ|-GGWP|-GLHF|-GOSSIP|-NAISU|-KOGI|-PECULATE|-SLOT|-EDITH|-ETHEL|-ELEANOR|-B2B|-SPAMnEGGS|-FTP|-DiRT|-SYNCOPY|-BAE|-SuccessfulCrab).*/i
/^(?!.*(web[ ]dl|-deflate|-inflate))(?=.*(\b\d{3,4}p\b).*([_. ]WEB[_. ])(?!DL)\b)|\b(-CAKES|-GGEZ|-GGWP|-GLHF|-GOSSIP|-NAISU|-KOGI|-PECULATE|-SLOT|-EDITH|-ETHEL|-ELEANOR|-B2B|-SPAMnEGGS|-FTP|-DiRT|-SYNCOPY|-BAE|-SuccessfulCrab|-NHTFS|-SURCODE|-B0MBARDIERS).*/i
```

@ -13,18 +13,26 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc.
------
## Preparation
Go to `Settings` => `Media Management` and make sure that `Show Advanced` at the top is enabled.
![Enable Advanced](images/sonarr-show-adavanced.png)
Once you clicked on the button it should look like this and you should see all the advanced options.
![Unhide Advanced](images/unhide-advanced.png)
Finally, enable `Rename Episodes` to reveal the episode renaming options.
![Enable Rename Episodes](images/sonarr-enable-rename.png)
## Standard Episode Format
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['standard']['default:3'] }}
{{ sonarr['naming']['sonarr-naming']['episodes']['standard']['default:4'] }}
```
!!! warning "Sonarr V4 - Is now using Custom Formats instead of Release Profiles. Use the below naming scheme instead :warning:"
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['standard']['default:4'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
Single Episode:
@ -40,15 +48,9 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc.
## Daily Episode Format
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['daily']['default:3'] }}
{{ sonarr['naming']['sonarr-naming']['episodes']['daily']['default:4'] }}
```
!!! warning "Sonarr V4 - Is now using Custom Formats instead of Release Profiles. Use the below naming scheme instead :warning:"
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['daily']['default:4'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
`The Series Title! (2010) - 2013-10-30 - Episode Title 1 [AMZN WEBDL-1080p Proper][DV HDR10][DTS 5.1][x264]-RlsGrp`
@ -58,15 +60,9 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc.
## Anime Episode Format
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['anime']['default:3'] }}
{{ sonarr['naming']['sonarr-naming']['episodes']['anime']['default:4'] }}
```
!!! warning "Sonarr V4 - Is now using Custom Formats instead of Release Profiles. Use the below naming scheme instead :warning:"
```bash
{{ sonarr['naming']['sonarr-naming']['episodes']['anime']['default:4'] }}
```
??? abstract "RESULTS: - [Click to show/hide]"
Single Episode:
@ -85,33 +81,35 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc.
{{ sonarr['naming']['sonarr-naming']['series']['default'] }}
```
RESULT:
<small>RESULT:</small> `The Series Title! (2010)`
`The Series Title! (2010)`
#### Optional Series Folder Format for the Plex TV Series Scanner and Jellyfin/Emby
#### Optional Series Folder Format
This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names.
For Plex:
##### Optional Plex
```bash
{{ sonarr['naming']['sonarr-naming']['series']['plex'] }}
```
RESULT:
`The Series Title! (2010) {imdb-tt1520211}`
<small>RESULT:</small> `The Series Title! (2010) {imdb-tt1520211}`
For Jellyfin/Emby:
##### Optional Emby
```bash
{{ sonarr['naming']['sonarr-naming']['series']['emby'] }}
```
RESULT:
<small>RESULT:</small> `The Series Title! (2010)`
`The Series Title! (2010) [tvdbid-tt1520211]`
##### Optional Jellyfin
```bash
{{ sonarr['naming']['sonarr-naming']['series']['jellyfin'] }}
```
<small>RESULT:</small> `The Series Title! (2010) [tvdbid-tt1520211]`
!!! tip
IMDb IDs are going to be very accurate and rarely change, TVDB/TMDB IDs, on the other hand, do change or are removed more frequently.
@ -126,9 +124,7 @@ For this there's only one real option to use in my opinion.
Season {season:00}
```
RESULT:
`Season 01`
RESULT: `Season 01`
------

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

@ -8,23 +8,17 @@ For Installation and Quick Start Guide please check the official [WikiArr](https
## Master
![Current Master/Stable](https://img.shields.io/badge/dynamic/json?color=4051B5&style=for-the-badge&label=Main&query=%24%5B%27v3-stable%27%5D.version&url=https%3A%2F%2Fservices.sonarr.tv%2Fv1%2Freleases){ .off-glb }
![Current Master/Stable](https://img.shields.io/badge/dynamic/json?color=4051B5&style=for-the-badge&label=Main&query=%24%5B%27v4-stable%27%5D.version&url=https%3A%2F%2Fservices.sonarr.tv%2Fv1%2Freleases){ .off-glb }
(Default/Stable): This has been tested by users on nightly (`develop`) branch and it's not known to have any major issues. This branch should be used by the majority of users. On GitHub, this is the `main` branch.
## Develop
![Current Develop/Nightly](https://img.shields.io/badge/dynamic/json?color=4051B5&style=for-the-badge&label=Develop&query=%24%5B%27v3-nightly%27%5D.version&url=https%3A%2F%2Fservices.sonarr.tv%2Fv1%2Freleases){ .off-glb }
(Alpha/Unstable) : This is now the same as main and likely the last v3 release.
## v4 Develop
![Current Develop/Nightly](https://img.shields.io/badge/dynamic/json?color=4051B5&style=for-the-badge&label=v4-preview&query=%24%5B%27v4-preview%27%5D.version&url=https%3A%2F%2Fservices.sonarr.tv%2Fv1%2Freleases){ .off-glb }
![Current Develop/Nightly](https://img.shields.io/badge/dynamic/json?color=4051B5&style=for-the-badge&label=Develop&query=%24%5B%27v4-nightly%27%5D.version&url=https%3A%2F%2Fservices.sonarr.tv%2Fv1%2Freleases){ .off-glb }
(Alpha/Unstable) : This is the bleeding edge for Sonarr v4 Beta. It is released as soon as code is committed and passes all automated tests. This build may have not been used by us or other users yet. There is no guarantee that it will even run in some cases. This branch is only recommended for advanced users. Issues and self investigation are expected in this branch. On GitHub, this is the develop branch.
!!! danger "**Warning: You are not able to go back to (v3) `main` or (v3) `develop` after switching to the v4 branch without reinstalling and locating a v3 backup.** On GitHub, this is the `develop` branch."
!!! danger "**Warning: You may not be able to go back to `main` after switching to this branch.** On GitHub, this is the `develop` branch."
### How do I update Sonarr

File diff suppressed because it is too large Load Diff

@ -5,7 +5,7 @@
!!! warning
You must be running Sonarr V4 to be able to use this setup.
![V4](https://img.shields.io/badge/dynamic/json?query=%24.version&url=https://raw.githubusercontent.com/hotio/sonarr/v4/VERSION.json&label=Current%20V4%20Version&style=for-the-badge&color=4051B5){ .off-glb }
![V4](https://img.shields.io/badge/dynamic/json?query=%24.version&url=https://raw.githubusercontent.com/hotio/sonarr/nightly/VERSION.json&label=Current%20V4%20Version&style=for-the-badge&color=4051B5){ .off-glb }
!!! note
This guide is created and maintained by [FonduemangVI](https://github.com/FonduemangVI) and [rg9400](https://github.com/rg9400)

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save