diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 36e02ab6a..87addf31c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,12 +1,27 @@ -name: Deploy docs to GitHub Pages via mkdocs +name: Build mkdocs and deploy to GitHub Pages -on: - push: - branches: - - master +on: [push, pull_request] jobs: + + build: + name: Build docs + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: actions/cache@v3 + with: + key: ${{ github.ref }} + path: .cache + - run: pip install -r docs/requirements.txt + - run: mkdocs build + deploy: + if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref) + needs: build name: Deploy docs runs-on: ubuntu-latest steps: @@ -16,5 +31,9 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.x + - uses: actions/cache@v3 + with: + key: ${{ github.ref }} + path: .cache - run: pip install -r docs/requirements.txt - run: mkdocs gh-deploy --force diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9f2de53c5..8567269ab 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,13 +3,16 @@ name: Lint on: [push, pull_request] jobs: + editorconfig-checker: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: editorconfig-checker run: | - docker run --rm -v ${GITHUB_WORKSPACE}:/check mstruebing/editorconfig-checker + docker run --rm \ + -v "${GITHUB_WORKSPACE}":/check \ + mstruebing/editorconfig-checker markdownlint: runs-on: ubuntu-latest @@ -17,7 +20,12 @@ jobs: - uses: actions/checkout@v3 - name: markdownlint run: | - find ~+ ${github_workspace} -name '*.md' | xargs docker run --rm -v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} markdownlint/markdownlint -r ~MD013,~MD033,~MD034,~MD046,~MD002,~MD041 + find "${GITHUB_WORKSPACE}" -name '*.md' -exec \ + docker run --rm \ + -v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ + markdownlint/markdownlint \ + -r ~MD013,~MD033,~MD034,~MD046,~MD002,~MD041 \ + {} + yamllint: runs-on: ubuntu-latest @@ -25,4 +33,9 @@ jobs: - uses: actions/checkout@v3 - name: yamllint run: | - find ~+ ${github_workspace} -name '*.yaml' -o -name '*.yml' | xargs docker run --rm -v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} peterdavehello/yamllint yamllint -d '{extends: default, rules: {document-start: {present: false}, line-length: disable}}' + find "${GITHUB_WORKSPACE}" -name '*.yaml' -o -name '*.yml' -exec \ + docker run --rm \ + -v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ + peterdavehello/yamllint \ + yamllint -d '{"extends":"default","rules":{"document-start":{"present":false},"line-length":"disable","truthy":{"check-keys":false}}}' \ + {} + diff --git a/.gitignore b/.gitignore index 6cab88bd4..6a3666d23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -venv/ +.cache +venv/ mkdocs-dev-server.bat /docs/Notifiarr/preview.bat /docs/Notifiarr/Integrations/_TEMPLATE.md diff --git a/docs/Downloaders/NZBGet/scripts/index.md b/docs/Downloaders/NZBGet/scripts/index.md index 7bf2aa90b..0836aef3e 100644 --- a/docs/Downloaders/NZBGet/scripts/index.md +++ b/docs/Downloaders/NZBGet/scripts/index.md @@ -35,6 +35,28 @@ [[% filter indent(width=4) %]][[% include 'Downloaders/NZBGet/scripts/HashRenamer/HashRenamer.py' %]][[% endfilter %]] ``` +## replace_for + +??? info "Replaces underscores with dots" + + - Title: `replace_for.py` + - Author: miker + + Replaces underscores with dots in downloaded filename to prevent download loops with poorly named releases on some indexers (often HONE releases). + + Install Instructions: + + 1. Copy script to NZBGet's script folder + 1. run: `sudo chmod +x replace_for.py` + 1. in SABnzbd go to `Settings` => `Extension Scripts` + 1. Enable `replace_for.py` in the `Extensions` setting. + +??? example "Script" + + ```python + [[% filter indent(width=4) %]][[% include 'Downloaders/NZBGet/scripts/replace_for/replace_for.py' %]][[% endfilter %]] + ``` + ## WtFnZb-Renamer ??? info "Renames hashed media files to match the source NZB" diff --git a/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py b/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py new file mode 100644 index 000000000..bdd61d6e5 --- /dev/null +++ b/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 +# + +############################################################################## +### NZBGET POST-PROCESSING SCRIPT ### + +# Replace underscore with dot. +# +# Author: miker +# +# +# Copy script to NZBGet's script folder. +# Run sudo chmod +x replace_for.py +# +# +# NOTE: This script requires Python to be installed on your system. + +### NZBGET POST-PROCESSING SCRIPT ### +############################################################################## + +from __future__ import print_function +import os, re, sys + +# Exit codes used by NZBGet +POSTPROCESS_SUCCESS=93 +POSTPROCESS_ERROR=94 +POSTPROCESS_SKIP=95 + + +directory = os.environ['NZBPP_DIRECTORY'] +print('Directory used is: ',directory) + +for path, currentDirectory, files in os.walk(directory): + for file in files: + if file.find("_") !=-1: + dst = file.replace('_', '.') + os.rename (os.path.join(path,file),os.path.join(path,dst) ) + print('Result: ',file," renamed to ",dst) + +sys.exit(POSTPROCESS_SUCCESS) \ No newline at end of file diff --git a/docs/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png b/docs/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png new file mode 100644 index 000000000..a7c7ccc81 Binary files /dev/null and b/docs/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png differ diff --git a/docs/Downloaders/SABnzbd/scripts/index.md b/docs/Downloaders/SABnzbd/scripts/index.md index 6aa738b7d..ad98bed08 100644 --- a/docs/Downloaders/SABnzbd/scripts/index.md +++ b/docs/Downloaders/SABnzbd/scripts/index.md @@ -26,3 +26,27 @@ ```python [[% filter indent(width=4) %]][[% include 'Downloaders/SABnzbd/scripts/Clean/Clean.py' %]][[% endfilter %]] ``` + +## replace_for + +??? info "Replaces underscores with dots" + + - Title: `replace_for.py` + - Author: miker + + Replaces underscores with dots in downloaded filename to prevent download loops with poorly named releases on some indexers (often HONE releases). + + Install Instructions: + + 1. Copy script to sabnzbd's script folder + 1. run: `sudo chmod +x replace_for.py` + 1. in SABnzbd go to `Settings` => `Categories` + 1. Change script for required categories and select: `replace_for.py` + + ![!Enable replace_for.py](/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png) + +??? example "Script" + + ```python + [[% filter indent(width=4) %]][[% include 'Downloaders/SABnzbd/scripts/replace_for/replace_for.py' %]][[% endfilter %]] + ``` diff --git a/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py b/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py new file mode 100644 index 000000000..d347394cf --- /dev/null +++ b/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py @@ -0,0 +1,42 @@ +#!/usr/bin/python3 -OO + +################################################################## +### SABnzbd - Replace underscores with dots ## +################################################################## +## ## +## NOTE: This script requires Python 3 ## +## ## +## Author: miker ## +## ## +## Install: ## +## 1. Copy script to sabnzbd's script folder ## +## 2. run: sudo chmod +x replace_for.py ## +## 3. in SABnzbd go to Config > Categories ## +## 4. Assign replace_for.py to the required category ## +################################################################## + +import sys +import os +import os.path + +try: + (scriptname, directory, orgnzbname, jobname, reportnumber, category, group, postprocstatus, url) = sys.argv +except: + print("No commandline parameters found") + sys.exit(1) # exit with 1 causes SABnzbd to ignore the output of this script + +files = os.listdir(directory) + +for src in files: + if src.find("_") !=-1: + dst = src.replace('_', '.') + os.rename (os.path.join(directory,src),os.path.join(directory,dst) ) + print(src, "renamed to ",dst) + +print() +print() +print() +print() +# 0 means OK +sys.exit(0) + diff --git a/docs/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent.md b/docs/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent.md index 29a584025..bcd26e374 100644 --- a/docs/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent.md +++ b/docs/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent.md @@ -1,22 +1,24 @@ # How to run the unRaid mover for qBittorent seeding torrents -{! include-markdown "../../../../includes/downloaders/basic-setup.md" !} - - 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. Using the following instructions you will be able to move the files with the use of the qBittorrent API. -??? summary "Workflow Rules - [CLICK TO EXPAND]" +!!! summary "Workflow Rules - [CLICK TO EXPAND]" 1. Pause torrents older than last x days. 1. Run the mover. 1. Resume the torrents once the mover is completed. -!!! Danger - If you're going to make use of this make sure you're using `Post-Import Category` in your Starr apps [^1] Download clients settings, especially when you're using the Seed Time/Ratio settings in your Indexers settings in the Starr apps. +## Warning + +!!! Danger "If you make use of the Seed Time/Ratio settings in your Indexers settings in the Starr apps[^1].
Make sure you're using `Post-Import Category` in your Starr apps Download clients settings.
Else it could happen when the torrents get paused that they get removed by the Starr apps before the seeding goal is reached." + +!!! attention + 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. - Else it could happen when the torrents get paused that they get removed by the Starr apps before the seeding goal is reached :bangbang: + - 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. ## Needed @@ -36,6 +38,7 @@ Install the following Plugins. - Nerd Tools - python3 [^2] - python-setuptools [^2] + - python-pip [^2] ------ @@ -58,43 +61,36 @@ With this option we're going to install the qBit API when the Array is started t 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`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!User Scripts](images/Unraid-settings-user-scripts-icon.png) +![!User Scripts](images/Unraid-settings-user-scripts-icon.png) Select at the bottom `ADD NEW SCRIPT`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png) +![!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 `Install qBittorrent API` and then click on `OK`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Install qBittorrent API](images/Unraid-user-scripts-add-new-script-enter-name.png) +![!Install qBittorrent API](images/Unraid-user-scripts-add-new-script-enter-name.png) Click in the list on the cogwheel of the new user scrip you made. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-api.png) +![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-api.png) Copy/Paste in the new windows that opens the following bash command followed by `SAVE CHANGES`. ```bash #!/bin/bash -pip install qbittorrent-api +pip3 install qbittorrent-api ``` -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Bash script](images/Unraid-settings-user-scripts-qbit-api.png) +![!Bash script](images/Unraid-settings-user-scripts-qbit-api.png) Select in the schedule list when the script should run, and choose `At First Array Start Only`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Set Run Time](images/Unraid-settings-user-scripts-qbit-api-schedule.png) +![!Set Run Time](images/Unraid-settings-user-scripts-qbit-api-schedule.png) Click on `RUN IN BACKGROUND` or restart your unRaid server so the qBit API is installed. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!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) ------ @@ -105,7 +101,7 @@ With this option we're going to install the qBit API when the unRaid server is s 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. ```bash -pip install qbittorrent-api +pip3 install qbittorrent-api ``` Restart your unRaid Server, or run the above command from the terminal. @@ -123,8 +119,8 @@ You only need to edit a few options in the script # Set Number of Days to stop torrents for the move days = 2 qbt_host = '192.168.2.200:8080' -qbt_user = admin -qbt_pass = adminadmin +qbt_user = 'admin' +qbt_pass = 'adminadmin' # --DEFINE VARIABLES--# ``` @@ -133,7 +129,7 @@ qbt_pass = adminadmin - `qbt_user` => Your used qBittorrent `User Name` if you have authentication enabled. - `qbt_pass` => Your used qBittorrent `Password` if you have authentication enabled. -!!! failure "" +!!! attention "" If you don't use the unRaid `Mover Tuning` app, You might need to change **line 54** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')` #### Copy script to your preferred location @@ -151,23 +147,19 @@ Now it's time to setup the scheduler 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`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!User Scripts](images/Unraid-settings-user-scripts-icon.png) +![!User Scripts](images/Unraid-settings-user-scripts-icon.png) Select at the bottom `ADD NEW SCRIPT`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Add New Script](images/Unraid-user-scripts-add-new-script-icon.png) +![!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`. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!qBittorrent Mover](images/Unraid-user-scripts-add-new-script-enter-name-qbt.png) +![!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. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-mover.png) +![!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`. @@ -183,13 +175,11 @@ echo qbittorrent-mover completed and resumed all paused torrents. !!! info Replace the `/mnt/user/data/scripts/mover.py` path to the path where you placed your python script. -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Bash script](images/Unraid-settings-user-scripts-qbit-mover.png) +![!Bash script](images/Unraid-settings-user-scripts-qbit-mover.png) Select in the schedule list when the script should run, and choose `Custom` -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Set Run Time](images/Unraid-settings-user-scripts-qbit-mover-schedule.png) +![!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. @@ -197,11 +187,9 @@ For this example we're going to let the script run a 4am at night. `0 4 * * *` Setup your own schedule [HERE](https://crontab.guru/) -??? check "Screenshot Example - [CLICK TO EXPAND]" - ![!Set Run Time](images/Unraid-settings-user-scripts-qbit-mover-cron.png) +![!Set Run Time](images/Unraid-settings-user-scripts-qbit-mover-cron.png) -{! include-markdown "../../../../includes/support.md" !} - +--8<-- "includes/support.md" [^1]: Starr apps = Sonarr/Radarr etc. Doesn't Starr apps sound better then `The arr(s)` ? diff --git a/docs/Hardlinks/How-to-setup-for/Synology.md b/docs/Hardlinks/How-to-setup-for/Synology.md index cf7517c85..56b53cc06 100644 --- a/docs/Hardlinks/How-to-setup-for/Synology.md +++ b/docs/Hardlinks/How-to-setup-for/Synology.md @@ -19,13 +19,15 @@ This page will provide you with guidance on how to install several Docker images ??? example "Automated script (**:bangbang:Use this script at your own risk:bangbang:**) - [CLICK TO EXPAND]" !!! Warning - Though, we offer a short way out. This is intended as a quick way to do everything that is written on this page within one script. + Though, we offer a short way out. This is intended as a quick way to do everything that is written on this page within one script. And is only for initial setup. After that, you need to manage it yourself. Rerunning the script will reset all personal changes made in the compose/env. The script is only tested on Synology DSM7.1. **:bangbang: We are not held reliable if anything breaks on your system. Use at your own risk :bangbang:** - To get this working you will need to enable terminal access (SSH) and home folders + To get this working you will need to enable terminal access (SSH) and home folders. + + Be sure to delete current running Docker containers related to this guide (ie. *arr apps, download clients), backup settings before you do. To enable SSH on your Synology take a look [HERE](#ssh){:target="_blank" rel="noopener noreferrer"}. diff --git a/docs/Misc/trash-sync.md b/docs/Misc/trash-sync.md index 8a0cbcb00..75ea88ade 100644 --- a/docs/Misc/trash-sync.md +++ b/docs/Misc/trash-sync.md @@ -29,7 +29,7 @@ Just enable the Custom Formats/Release Profiles you want. ![!Notifiarr Custom Formats Audio](images/sync/notifiarr-cf-audio.png) Radarr Custom Formats (Multiple Instances possible) - ![!Notifiarr Custom Formats HDR Metadata](images/sync/notifiarr-cf-audio.png) + ![!Notifiarr Custom Formats HDR Formats](images/sync/notifiarr-cf-hdr.png) Radarr scoring (Multiple profiles possible) ![!Notifiarr Scores](images/sync/notifiarr-scores.png) diff --git a/docs/Radarr/.pages b/docs/Radarr/.pages index 63ae2e1a2..b2b0afba8 100644 --- a/docs/Radarr/.pages +++ b/docs/Radarr/.pages @@ -5,9 +5,7 @@ nav: - How to import Custom Formats: Radarr-import-custom-formats.md - How to Update Custom Formats: Radarr-how-to-update-custom-formats.md - How to setup Custom Formats: Radarr-setup-custom-formats.md + - How to setup Custom Formats-French: radarr-setup-custom-formats-french.md - Collection of Custom Formats: Radarr-collection-of-custom-formats.md - Remote Path Mappings explained: Radarr-remote-path-mapping.md - Tips - - - diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index 3e3e22737..67a5d0552 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -18,7 +18,7 @@ I also made 3 guides related to this one. I also suggest to change the Propers and Repacks settings in Radarr - `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](images/cf-mm-propers-repacks-disable.png) @@ -33,7 +33,7 @@ I also made 3 guides related to this one. ------ -| Audio Advanced #1 | Audio Advanced #2 | Audio Channels | HDR Metadata | +| Audio Advanced #1 | Audio Advanced #2 | Audio Channels | HDR Formats | | ------------------------------------- | ------------------------- | ---------------------------- | --------------------------------- | | [TrueHD ATMOS](#truehd-atmos) | [FLAC](#flac) | [1.0 Mono](#10-mono) | [DV HDR10](#dv-hdr10) | | [DTS X](#dts-x) | [PCM](#pcm) | [2.0 Stereo](#20-stereo) | [DV](#dv) | @@ -48,31 +48,45 @@ I also made 3 guides related to this one. ------ -| Movie Versions | Unwanted | HQ Source Groups | Streaming Services | -| --------------------------------------------- | ---------------------------------- | --------------------- | ---------------------- | -| [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [HQ-Remux](#hq-remux) | [Amazon](#amzn) | -| [Remaster](#remaster) | [LQ](#lq) | [HQ](#hq) | [Apple TV+](#aptv) | -| [4K Remaster](#4k-remaster) | [3D](#3d) | [HQ-WEBDL](#hq-webdl) | [Disney+](#dsnp) | -| [Special Editions](#special-edition) | [DV (WEBDL)](#dv-webdl) | | [HBO Max](#hmax) | -| [Criterion Collection](#criterion-collection) | [x265 (HD)](#x265-hd) | | [Hulu](#hulu) | -| [Theatrical Cut](#theatrical-cut) | [x265 (no HDR/DV)](#x265-no-hdrdv) | | [Netflix](#nf) | -| [IMAX](#imax) | | | [Peacock TV](#pcok) | -| [IMAX Enhanced](#imax-enhanced) | | | [Paramount+](#pmtp) | -| | | | [Movies Anywhere](#ma) | +| Movie Versions | Unwanted | HQ Source Groups | Streaming Services | +| --------------------------------------------- | --------------------- | --------------------- | ---------------------- | +| [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [HQ-Remux](#hq-remux) | [Amazon](#amzn) | +| [Remaster](#remaster) | [LQ](#lq) | [HQ](#hq) | [Apple TV+](#atvp) | +| [4K Remaster](#4k-remaster) | [3D](#3d) | [HQ-WEBDL](#hq-webdl) | [Disney+](#dsnp) | +| [Special Editions](#special-edition) | [x265 (HD)](#x265-hd) | | [HBO Max](#hmax) | +| [Criterion Collection](#criterion-collection) | | | [Hulu](#hulu) | +| [Theatrical Cut](#theatrical-cut) | | | [Netflix](#nf) | +| [IMAX](#imax) | | | [Peacock TV](#pcok) | +| [IMAX Enhanced](#imax-enhanced) | | | [Paramount+](#pmtp) | +| | | | [Movies Anywhere](#ma) | ------ -| Misc | Optional |   |   | -| ------------------------------------- | ----------------------------------- | ------ | ------ | -| [Repack/Proper](#repack-proper) | [EVO (no WEBDL)](#evo-no-webdl) |   |   | -| [Repack2](#repack2) | [No-RlsGroup](#no-rlsgroup) |   |   | -| [Multi](#multi) | [Obfuscated](#obfuscated) |   |   | -| [x264](#x264) | [Retags](#retags) |   |   | -| [x265](#x265) | [Bad Dual Groups](#bad-dual-groups) |   |   | -| [MPEG2](#mpeg2) | |   |   | -| [FreeLeech](#freeleech) | |   |   | -| [Dutch Groups](#dutch-groups) | |   |   | -| [Anime Dual Audio](#anime-dual-audio) | |   |   | +| Misc | Optional | French Audio Version | French Source Groups | +| ------------------------------ | ----------------------------------- | ----------------------------- | ------------------------------------- | +| [Repack/Proper](#repackproper) | [Bad Dual Groups](#bad-dual-groups) | [Multi-French](#multi-french) | [FR HQ-Remux](#fr-hq-remux) | +| [Repack2](#repack2) | [DV (WEBDL)](#dv-webdl) | [Multi-Audio](#multi-audio) | [FR HQ](#fr-hq) | +| [Multi](#multi) | [EVO (no WEBDL)](#evo-no-webdl) | [French Audio](#french-audio) | [FR HQ-WEBDL](#fr-hq-webdl) | +| [x264](#x264) | [No-RlsGroup](#no-rlsgroup) | [VFF](#vff) | [FR Scene Groups](#fr-scene-groups) | +| [x265](#x265) | [Obfuscated](#obfuscated) | [VOF](#vof) | [FR LQ](#fr-lq) | +| [MPEG2](#mpeg2) | [Retags](#retags) | [VFI](#vfi) | | +| [FreeLeech](#freeleech) | [x265 (no HDR/DV)](#x265-no-hdrdv) | [VFQ](#vfq) | | +| [Dutch Groups](#dutch-groups) | | [VQ](#vq) | | +| | | [VFB](#vfb) | | +| | | [VOSTFR](#vostfr) | | + +------ + +| Anime | Anime | Anime | Anime Optional | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------- | ----------- | ------------------------------------- | +| [Anime BD Tier 01 (Top SeaDex Muxers)](#anime-bd-tier-01-top-seadex-muxers) | [Anime Web Tier 01 (Muxers)](#anime-web-tier-01-muxers) | [v0](#v0) | [Uncensored](#uncensored) | +| [Anime BD Tier 02 (SeaDex Muxers)](#anime-bd-tier-02-seadex-muxers) | [Anime Web Tier 02 (Top FanSubs)](#anime-web-tier-02-top-fansubs) | [v1](#v1) | [10bit](#10bit) | +| [Anime BD Tier 03 (SeaDex Muxers)](#anime-bd-tier-03-seadex-muxers) | [Anime Web Tier 03 (Official Subs)](#anime-web-tier-03-official-subs) | [v2](#v2) | [Anime Dual Audio](#anime-dual-audio) | +| [Anime BD Tier 04 (SeaDex Muxers)](#anime-bd-tier-04-seadex-muxers) | [Anime Web Tier 04 (Official Subs)](#anime-web-tier-04-official-subs) | [v3](#v3) | [Dubs Only](#dubs-only) | +| [Anime BD Tier 05 (Remuxes)](#anime-bd-tier-05-remuxes) | [Anime Web Tier 05 (FanSubs)](#anime-web-tier-05-fansubs) | [v4](#v4) | | +| [Anime BD Tier 06 (FanSubs)](#anime-bd-tier-06-fansubs) | [Anime Web Tier 06 (FanSubs)](#anime-web-tier-06-fansubs) | [VRV](#vrv) | | +| [Anime BD Tier 07 (P2P/Scene)](#anime-bd-tier-07-p2pscene) | [Anime Raws](#anime-raws) | | | +| [Anime BD Tier 08 (Mini Encodes)](#anime-bd-tier-08-mini-encodes) | [Anime LQ Groups](#anime-lq-groups) | | | ## Audio Advanced @@ -131,7 +145,7 @@ I also made 3 guides related to this one. ------ -### DD+ ATMOS +### DDPlus ATMOS ??? faq "DD+ ATMOS - [CLICK TO EXPAND]" @@ -455,7 +469,7 @@ I also made 3 guides related to this one. ------ -## HDR metadata +## HDR Formats ------ @@ -857,19 +871,7 @@ I also made 3 guides related to this one. ??? faq "LQ - [CLICK TO EXPAND]" - A collection of known Low Quality groups that are often banned from the the top trackers because their lack of quality. - - !!! note - - You might want to add the following also [EVO (no WEBDL)](#evo-no-webdl) - - - BLOCK1 = Low-Quality Releases (often banned groups) - - BLOCK2 = Another Small list of often banned groups. - - BLOCK3 = Banned release groups. - - BLOCK4 = Low-quality and/or dishonest release groups. - - BLOCK5 = Banned Release Groups. - - BLOCK6 = Rips from Scene and quick-to-release P2P groups while adequate, are not considered high quality. - - RiffTrax = RiffTrax is an American company that produces scripted humorous audio commentary tracks intended to be played in unison with particular television programs and films, In short just annoying!!! + A collection of known Low Quality groups that are often banned from the the top trackers because their lack of quality, Banned release groups, dishonest release groups or Rips from Scene and quick-to-release P2P groups while adequate, are not considered high quality. ??? example "JSON - [CLICK TO EXPAND]" @@ -881,67 +883,63 @@ I also made 3 guides related to this one. ------ -### x265 (HD) - -720/1080p no x265 = x265 (720/1080p) = x265 (HD) - -??? faq "x265 (HD) - [CLICK TO EXPAND]" - - This blocks/ignores 720/1080p(HD) releases that are encoded in x265. +### 3D - In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-hd']['trash_score'] }}` +??? faq "3D - [CLICK TO EXPAND]" - !!! fail "" - --8<-- "includes/docker/x265.md" + If you prefer or not prefer 3D. - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning:" + You can use Custom Format or use Restrictions (`Settings` => `Indexers` => `Restrictions`) what ever you prefer. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-hd.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/3d.json' %]][[% endfilter %]] ``` [TOP](#index) ------ -### x265 (no HDR/DV) +### x265 (HD) -??? faq "x265 (no HDR/DV) - [CLICK TO EXPAND]" +720/1080p no x265 = x265 (720/1080p) = x265 (HD) - This blocks/ignores 720/1080p (HD) releases that are encoded in x265. +??? faq "x265 (HD) - [CLICK TO EXPAND]" - **but it will allow to exclude/bypass if it has HDR and/or DV** + This blocks 720/1080p (HD) releases that are encoded in x265. - *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* + In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-hd']['trash_score'] }}` - In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-no-hdrdv']['trash_score'] }}` + !!! fail "" + --8<-- "includes/docker/x265.md" - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning:" + !!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-hd.json' %]][[% endfilter %]] ``` [TOP](#index) ------ -### 3D +## Optional -??? faq "3D - [CLICK TO EXPAND]" +------ - If you prefer or not prefer 3D. +### Bad Dual Groups - You can use Custom Format or use Restrictions (`Settings` => `Indexers` => `Restrictions`) what ever you prefer. +??? faq "Bad dual groups - [CLICK TO EXPAND]" + These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. + Also they often even rename the release name in to Portuguese. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/3d.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/bad-dual-groups.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -967,9 +965,7 @@ I also made 3 guides related to this one. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-webdl.json' %]][[% endfilter %]] ``` ------- - -## Optional +[TOP](#index) ------ @@ -1042,20 +1038,26 @@ I also made 3 guides related to this one. [TOP](#index) -[TOP](#index) - ------ -### Bad Dual Groups +### x265 (no HDR/DV) -??? faq "Bad dual groups - [CLICK TO EXPAND]" - These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. - Also they often even rename the release name in to Portuguese. +??? faq "x265 (no HDR/DV) - [CLICK TO EXPAND]" + + This blocks 720/1080p (HD) releases that are encoded in x265. + + **But it will allow x265 releases if they have HDR and/or DV** + + *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* + + In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-no-hdrdv']['trash_score'] }}` + + !!! Danger "Don't use this together with [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd), Only ever include one of them :warning:" ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/bad-dual-groups.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -1066,7 +1068,7 @@ I also made 3 guides related to this one. ------ -### Repack Proper +### Repack/Proper ??? example "JSON - [CLICK TO EXPAND]" @@ -1162,21 +1164,6 @@ I also made 3 guides related to this one. ------ -### Anime Dual Audio - -??? faq "Anime Dual Audio - [CLICK TO EXPAND]" - Description placeholder - -??? example "JSON - [CLICK TO EXPAND]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-dual-audio.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ------- - ### MPEG2 ??? example "JSON - [CLICK TO EXPAND]" @@ -1277,7 +1264,7 @@ I also made 3 guides related to this one. ------ -### APTV +### ATVP Apple TV+ @@ -1288,7 +1275,7 @@ I also made 3 guides related to this one. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/aptv.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/atvp.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -1418,3 +1405,654 @@ I also made 3 guides related to this one. ``` [TOP](#index) + +## Anime + +------ + +### Anime BD Tier 01 (Top SeaDex Muxers) + +??? faq "Anime BD Tier 01 (Top SeaDex Muxers) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-01-top-seadex-muxers.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 02 (SeaDex Muxers) + +??? faq "Anime BD Tier 02 (SeaDex Muxers) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-02-seadex-muxers.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 03 (SeaDex Muxers) + +??? faq "Anime BD Tier 03 (SeaDex Muxers) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-03-seadex-muxers.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 04 (SeaDex Muxers) + +??? faq "Anime BD Tier 04 (SeaDex Muxers) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-04-seadex-muxers.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 05 (Remuxes) + +??? faq "Anime BD Tier 05 (Remuxes) - [CLICK TO EXPAND]" + Groups that are consistent and do Remuxes + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-05-remuxes.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 06 (FanSubs) + +??? faq "Anime BD Tier 06 (FanSubs) - [CLICK TO EXPAND]" + FanSub groups that are consistent + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-06-fansubs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 07 (P2P/Scene) + +??? faq "Anime BD Tier 07 (P2P/Scene) - [CLICK TO EXPAND]" + Known P2P and Scene Anime groups + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-07-p2pscene.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime BD Tier 08 (Mini Encodes) + +??? faq "Anime BD Tier 08 (Mini Encodes) - [CLICK TO EXPAND]" + Know groups that do mini encodes + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-08-mini-encodes.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 01 (Muxers) + +??? faq "Anime Web Tier 01 (Muxers) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-01-muxers.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 02 (Top FanSubs) + +??? faq "Anime Web Tier 02 (Top FanSubs) - [CLICK TO EXPAND]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-02-top-fansubs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 03 (Official Subs) + +??? faq "Anime Web Tier 03 Official Subs) - [CLICK TO EXPAND]" + Official sub groups that tend to be more consistent and release fast + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-03-official-subs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 04 (Official Subs) + +??? faq "Anime Web Tier 04 (Official Subs) - [CLICK TO EXPAND]" + Official sub groups + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-04-official-subs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 05 (FanSubs) + +??? faq "Anime Web Tier 05 (FanSubs) - [CLICK TO EXPAND]" + FanSub groups that are consistent + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-05-fansubs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Web Tier 06 (FanSubs) + +??? faq "Anime Web Tier 06 (FanSubs) - [CLICK TO EXPAND]" + FanSub groups that are consistent + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-06-fansubs.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Raws + +??? faq "Anime Raws - [CLICK TO EXPAND]" + A collection of know groups that release raws + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-raws.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime LQ Groups + +??? faq "Anime LQ Groups - [CLICK TO EXPAND]" + A collection of known Low Quality groups. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-lq-groups.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Uncensored + +??? faq "Uncensored - [CLICK TO EXPAND]" + This CF covers releases that are uncensored + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/uncensored.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### v0 + +??? faq "v0 - [CLICK TO EXPAND]" + CF to cover releases named with v0 which we don't want + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v0.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### v1 + +??? faq "v1 - [CLICK TO EXPAND]" + CF to cover v1 releases + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v1.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### v2 + +??? faq "v2 - [CLICK TO EXPAND]" + CF to cover v2 releases + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v2.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### v3 + +??? faq "v3 - [CLICK TO EXPAND]" + CF to cover v3 releases + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v3.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### v4 + +??? faq "v4 - [CLICK TO EXPAND]" + CF to cover v4 releases + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v4.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VRV + +??? faq "VRV - [CLICK TO EXPAND]" + [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/VRV_(streaming_service)){:target="_blank" rel="noopener noreferrer"} + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/vrv.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### 10bit + +??? faq "10bit - [CLICK TO EXPAND]" + This CF covers releases that are 10bit + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/10bit.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Anime Dual Audio + +??? faq "Anime Dual Audio - [CLICK TO EXPAND]" + This CF covers releases that have Dual Audio + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-dual-audio.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Dubs Only + +??? faq "Dubs Only - [CLICK TO EXPAND]" + This CF covers releases that only have Dubs + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dubs-only.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +## French Audio Version + +------ + +### Multi-French + +??? faq "Multi-French - [CLICK TO EXPAND]" + + Recognised movies that include the original and the french audio. Work only after import as it need the result from FFprobe to get which audio are present. Will rename the release to keep the recognition of 'Multi' by the [Multi-Audio](#multi-audio) custome format. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/multi-french.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Multi-Audio + +??? faq "Multi-Audio - [CLICK TO EXPAND]" + + A sliglthly modified [Multi](#multi) Custom Formats that recognise VF and VO inside the name. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/multi-audio.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### French Audio + +??? faq "French Audio - [CLICK TO EXPAND]" + + This will recognised every kind of French Audio. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-audio.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VFF + +??? faq "VFF - [CLICK TO EXPAND]" + + Full French version (dubbing done in France) and French version (normally equivalent to VFQ). + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vff.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VOF + +??? faq "VOF - [CLICK TO EXPAND]" + + Original French Version. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vof.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VFI + +??? faq "VFI - [CLICK TO EXPAND]" + + International French Version. VF[1-9] or FR[1-9] indicates the number of dubs present (normally VF2 being VFF and VFQ) and is considered as an International French release. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfi.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VFQ + +??? faq "VFQ - [CLICK TO EXPAND]" + + Canadian French Version. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfq.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VQ + +??? faq "VQ - [CLICK TO EXPAND]" + + Quebec Version (strong Quebec accent, ex: The Simpsons movie). + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vq.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VFB + +??? faq "VFB - [CLICK TO EXPAND]" + + Belgian French Version. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfb.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### VOSTFR + +??? faq "VOSTFR - [CLICK TO EXPAND]" + + Indicates soundtrack in the original language, with French subtitles. It should be noted that SUBFRENCH is included inside this Custom Format. However, SUB often mean that the subtitle was embedded inside the picture (hardcoded). French releases tend to mix both, leading some VOSTFR being labelled as SUBFRENCH and SUBFRENCH as VOSTFR. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vostfr.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +## French HQ Source Groups + +------ + +### FR HQ + +French HQ-Releases = FR HQ + +??? faq "FR HQ - [CLICK TO EXPAND]" + + A collection of French P2P groups that are known for their high quality releases. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-hq.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### FR HQ-WEBDL + +??? faq "FR HQ-WEBDL - [CLICK TO EXPAND]" + + A personal collection of French P2P WEB-DL groups that are known for their high quality releases. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-hq-webdl.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### FR HQ-Remux + +??? faq "FR HQ-Remux - [CLICK TO EXPAND]" + + A personal collection of French P2P Remux groups that are known for their high quality releases. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-hq-remux.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### FR Scene Groups + +??? faq "FR Scene Groups - [CLICK TO EXPAND]" + + Known French Scene groups. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-scene.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### FR LQ + +French Low Quality Releases = FR LQ + +??? faq "FR LQ - [CLICK TO EXPAND]" + + A collection of known French Low Quality groups that are often banned from the the top trackers because their lack of quality. + + !!! note + + - Ads/Watermarks = Groups that are know to put ads or watermark in their releases. + - Bad/False releases = Groups that are known for lying on the quality, type or the name of their releases. + - DeTAG/ReTAG = Detagging or stealing groups. + - Other reasons = Banned Release Groups. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-lq.json' %]][[% endfilter %]] + ``` + +[TOP](#index) diff --git a/docs/Radarr/Radarr-import-custom-formats.md b/docs/Radarr/Radarr-import-custom-formats.md index 8b9b5ea14..ab144f1f9 100644 --- a/docs/Radarr/Radarr-import-custom-formats.md +++ b/docs/Radarr/Radarr-import-custom-formats.md @@ -51,6 +51,11 @@ all you need to do now is click on the `Save` button and you're done. ![cf-import-done](images/cf-import-done.png) +### Setup the scores in your Quality Profile + +After you've added the Custom Formats, You will need to set it up in the Quality Profile you want to use/prefer to make use of the Custom Formats. +How this is done is explained [HERE](/Radarr/Radarr-setup-custom-formats/#basics){:target="_blank" rel="noopener noreferrer"} + ------ ## Start adding other Custom Formats wisely diff --git a/docs/Radarr/Radarr-recommended-naming-scheme.md b/docs/Radarr/Radarr-recommended-naming-scheme.md index 700023e26..3573102f9 100644 --- a/docs/Radarr/Radarr-recommended-naming-scheme.md +++ b/docs/Radarr/Radarr-recommended-naming-scheme.md @@ -17,12 +17,6 @@ The Tokens not available in the release won't be used/shown. 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}}` -!!! caution "Starting from v4.0.0.5720, Radarr now supports recognizing Dolby Vision (DV) and High Dynamic Range (HDR) types." - - If you're using a lower version replace: - - `{[MediaInfo VideoDynamicRangeType]}` with `{[MediaInfo VideoDynamicRange]}` - !!! caution "Starting from v4.2.2.6489, Radarr now supports Plex Multiple Edition tags in naming." If you're using a lower version or don't need it replace: @@ -43,10 +37,6 @@ This naming scheme is made to be compatible with the [New Plex Agent](https://fo {Movie CleanTitle} {(Release Year)} {imdb-{ImdbId}} {edition-{Edition Tags}} {[Custom Formats]}{[Quality Full]}{[MediaInfo 3D]}{[MediaInfo VideoDynamicRangeType]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels}]{MediaInfo AudioLanguages}[{Mediainfo VideoCodec}]{-Release Group} ``` -!!! attention "" - - The officially supported format is `{imdb-{ImdbId}}` and this is required in Radarr `v4.2.2.6489` and above to make the tags conditional. Plex also support `(imdb-{ImdbId})` or `[imdb-{ImdbId}]` which you can read [here](https://forums.plex.tv/t/new-plex-media-server-movie-scanner-and-agent-preview/593269/517){:target="_blank" rel="noopener noreferrer"}, however Radarr will not treat these as conditional meaning a movie with no IMDb ID would have `(imdb-)` or `[imdb-]` in the name. IMDb IDs are going to be very accurate and rarely change, but they may be missing for some movies added to Radarr. TMDb IDs, on the other hand, do change or are removed more frequently, but Radarr will always have this ID for each movie. - ------ ## Original Title vs Original Filename diff --git a/docs/Radarr/Radarr-setup-custom-formats.md b/docs/Radarr/Radarr-setup-custom-formats.md index 23d9bc070..c13521b9c 100644 --- a/docs/Radarr/Radarr-setup-custom-formats.md +++ b/docs/Radarr/Radarr-setup-custom-formats.md @@ -88,13 +88,13 @@ In this example I have lossy Atmos over lossless DTS because the object metadata ------ -#### Prefer HDR Metadata +#### Prefer HDR Formats -Lets say you prefer HDR metadata (HDR or Dolby Vision or Both) +Lets say you prefer HDR Formats (HDR or Dolby Vision or Both) Then we would use the following order: -{! include-markdown "../../includes/cf/radarr-hdr-metadata.md" !} +{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} ------ @@ -151,7 +151,7 @@ The reason why I didn't select the WEB-DL 720p is because you will hardly find a If you prefer 2160/4K encodes you might consider to change `Upgrade Until Quality` to Bluray-2160p and enable: - {! include-markdown "../../includes/cf/radarr-hdr-metadata.md" !} + {! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} ------ @@ -210,7 +210,7 @@ For this Quality Profile we're going to make use of the following Custom Formats {! include-markdown "../../includes/cf/radarr-audio.md" !} -{! include-markdown "../../includes/cf/radarr-hdr-metadata.md" !} +{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} {! include-markdown "../../includes/cf/radarr-movie-versions.md" !} @@ -251,7 +251,7 @@ Use the following main settings in your profile. I also suggest to 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/#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Radarr/Radarr-collection-of-custom-formats/#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](images/cf-mm-propers-repacks-disable.png) diff --git a/docs/Radarr/radarr-setup-custom-formats-french.md b/docs/Radarr/radarr-setup-custom-formats-french.md new file mode 100644 index 000000000..b3841c0eb --- /dev/null +++ b/docs/Radarr/radarr-setup-custom-formats-french.md @@ -0,0 +1,344 @@ +# How to setup Custom Formats (French) + +!!! note + This guide is created and maintained by [Someone said "Nice"?](https://github.com/NiceTSY) + +So what's the best way to setup the Custom Profiles and which one to use with which scores to get French and English Audio? + +Keep in mind that most releases are MULTi (understand DUAL audio, original and French audio) and it will be difficult to only have French audio, unless you are willing to get 720p or you are only looking for French movies. + +Therefore you will need a slightly modified MULTi Custom Format than the one find in the original guide. This one also recognize VO and VFF in the name and rename the import. This is important for the score to match before and after the import and to avoid download loop. + +--8<-- "includes/cf/score-attention.md" + +------ + +## Basics + +------ + +!!! attention + + This section seems quite similar to the original guide but few information change and are needed for profiles to work. Please be sure you read it thoughtfully. + +------ + +After you've added the Custom Formats, as explained in [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. +You will need to set it up in the quality Profile you want to use/prefer to make use of the Custom Formats. + +`Settings` => `Profiles` + +![!cf-settings-profiles](images/cf-settings-profiles.png) + +!!! info "Radarr Custom Formats can be set per profile and isn't global" +Select the profile that you want to use/prefer. + +![!cf-quality-profiles](images/cf-quality-profiles.png) + +![!cf-profile-selected](images/cf-profile-selected.png) + +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. 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, choose `Any` + +!!! info "We do choose `Any` for the language profile as otherwise an English movies recognized with French audio in Radarr will not be grabbed and vice-versa." + +At the bottom in your chosen profile you will see the added Custom Formats where you can start setting up the scores. + +??? check "Screenshot example - [CLICK TO EXPAND]" + ![!cf-quality-profile-cf](images/cf-quality-profile-cf.png) + + !!! attention + 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. + +!!! info "Keep in mind Custom Formats are made to fine tune your Quality Profile.
Generally, quality trumps all" + + Custom formats are controlled by Quality Profiles. + + - The Upgrade Until score prevents upgrading once a release with this desired score has been downloaded. + - A score of 0 results in the custom format being informational only. + - The Minimum score requires releases to reach this threshold otherwise they will be rejected. + - Custom formats that match with undesirable attributes should be given a negative score to lower their appeal. + - Outright rejections should be given a negative score low enough that even if all of the other formats with positive scores were added, the score would still fall below the minimum. + +------ + +{! include-markdown "../../includes/merge-quality/radarr-current-logic.md" !} + +------ + +## MULTi Custom Format + +{! include-markdown "../../includes/french-guide/radarr-french-multi-audio.md" !} + +------ + +## I am only interested in VOSTFR + +My strongest suggestion will be for you to look at [Bazarr](../Bazarr/Setup-Guide.md). It will do an amazing job for getting your subtitle on every movies. + +An other option is to disregard the MULTi part and just add the [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) with a score of 1000. + +------ + +## Examples + +Here I will explain how to make the most use of the French Custom Formats and show you some personal examples that I'm using. You can use these to get an idea on how to setup your own. + +All these examples make use of the [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} from the original guide and mix them with the French Custom Formats. + +!!! attention "Attention" + Those examples use the original guide Custom Formats too for fallback. Meaning that if you do not find a MULTi you will still have a good scoring for single audio. + + This is the first intent of those Custom Formats. However, they can work alone and you can safely not add the original Custom Formats. + +--8<-- "includes/cf/score-attention.md" + +------ + +### French Audio Versions + +Those are all optional and only there to rename your release or to avoid a certain type of French Audio (e.g. you do not want VFQ or VQ audio, in this case you will put them at `-10000` instead of `0`). + +{! include-markdown "../../includes/french-guide/radarr-french-audio-version.md" !} + +------ + +### 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. + +{! include-markdown "../../includes/french-guide/radarr-french-unwanted.md" !} + +------ + +#### Prefer HQ Encodes + +If you prefer HQ Encodes (Bluray-720/1080/2160p) + +I suggest to first follow the [Quality Settings (File Size)](/Radarr/Radarr-Quality-Settings-File-Size/){:target="_blank" rel="noopener noreferrer"}. If you think the sizes are too big to your preference then stop reading and see if the other tutorials are helpful for you. :bangbang: + +For this Quality Profile we're going to make use of the following Custom Formats + +{! include-markdown "../../includes/french-guide/radarr-french-multi-audio.md" !} + +{! include-markdown "../../includes/cf/radarr-movie-versions.md" !} + +{! include-markdown "../../includes/french-guide/radarr-french-unwanted.md" !} + +{! include-markdown "../../includes/cf/radarr-misc.md" !} + +??? summary "HQ Source Groups - [CLICK TO EXPAND]" + | Custom Format | Score | Trash ID | + | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | + | [{{ radarr['cf']['french-hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-webdl) | {{ radarr['cf']['french-hq-webdl']['trash_score'] }} | {{ radarr['cf']['french-hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-webdl) | {{ radarr['cf']['hq-webdl']['trash_score'] }} | {{ radarr['cf']['hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['french-hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-remux) | 0 | {{ radarr['cf']['french-hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-remux) | 0 | {{ radarr['cf']['hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['french-hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq) | {{ radarr['cf']['french-hq']['trash_score'] }} | {{ radarr['cf']['french-hq']['trash_id'] }} | + | [{{ radarr['cf']['hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq) | {{ radarr['cf']['hq']['trash_score'] }} | {{ radarr['cf']['hq']['trash_id'] }} | + | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | ?????? | {{ radarr['cf']['french-scene']['trash_id'] }} | + + !!! info "French Scene groups are included as a fallback if you really want MULTi release despite quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_score'] }}` or `0` depending on what you want to achieve." + +I decided not to add `Audio Advanced` Custom Formats to the encodes profile, being with encodes I prefer higher video quality. If you also want HD audio formats I would suggest to go for the Remuxes. + +Use the following main settings in your profile. + +![!cf-profile-encodes](images/cf-profile-encodes.png) + +!!! attention "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. + +??? example "The following workflow will be applied:" + + - It will try to download MULTi release first, and fallback to best quality single audio after. + - It will download WEB-DL 1080p for the streaming movies you see more often lately. + - It will upgrade till Bluray-1080p when available. + - The downloaded media will be upgraded to any of the added Custom Formats until a score of 9999. + + So why such a ridiculously high `Upgrade Until Custom` and not a score of `100`? + + 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. + +!!! tip + + If you prefer 2160/4K encodes you might consider to change `Upgrade Until Quality` to Bluray-2160p and enable: + + {! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} + +------ + +#### Remux-1080p + +If you prefer 1080p Remuxes (Remux-1080p) + +I suggest to first follow the [Quality Settings (File Size)](/Radarr/Radarr-Quality-Settings-File-Size/){:target="_blank" rel="noopener noreferrer"} +If you think the sizes are too big to your preference then stop reading and see if the other tutorials are helpful to you. :bangbang: + +For this Quality Profile we're going to make use of the following Custom Formats + +{! include-markdown "../../includes/french-guide/radarr-french-multi-audio.md" !} + +{! include-markdown "../../includes/cf/radarr-audio.md" !} + +{! include-markdown "../../includes/cf/radarr-movie-versions.md" !} + +{! include-markdown "../../includes/french-guide/radarr-french-unwanted.md" !} + +{! include-markdown "../../includes/cf/radarr-misc.md" !} + +??? summary "HQ Source Groups - [CLICK TO EXPAND]" + | Custom Format | Score | Trash ID | + | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | + | [{{ radarr['cf']['french-hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-webdl) | {{ radarr['cf']['french-hq-webdl']['trash_score'] }} | {{ radarr['cf']['french-hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-webdl) | {{ radarr['cf']['hq-webdl']['trash_score'] }} | {{ radarr['cf']['hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['french-hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-remux) | {{ radarr['cf']['french-hq-remux']['trash_score'] }} | {{ radarr['cf']['french-hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-remux) | {{ radarr['cf']['hq-remux']['trash_score'] }} | {{ radarr['cf']['hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['french-hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq) | 0 | {{ radarr['cf']['french-hq']['trash_id'] }} | + | [{{ radarr['cf']['hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq) | 0 | {{ radarr['cf']['hq']['trash_id'] }} | + | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | ?????? | {{ radarr['cf']['french-scene']['trash_id'] }} | + + !!! info "French Scene groups are included as a fallback if you really want MULTi release despite quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_score'] }}` or `0` depending on what you want to achieve." + +Use the following main settings in your profile. + +![!cf-profile-remux1080](images/cf-profile-remux1080.png) + +!!! attention "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. + +??? example "The following workflow will be applied:" + + - It will try to download MULTi release first, and fallback to best quality single audio after. + - It will download WEB-DL 1080p for the streaming movies you see more often lately. + - It will upgrade till Remux-1080p when available. + - The downloaded media will be upgraded to any of the added Custom Formats until a score of 9999. + + 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. + +------ + +#### Remux-2160p + +If you prefer 2160p Remuxes (Remux-2160p) + +I suggest to first follow the [Quality Settings (File Size)](/Radarr/Radarr-Quality-Settings-File-Size/){:target="_blank" rel="noopener noreferrer"} +If you think the sizes are too big to your preference then stop reading and see if the other tutorials are helpful to you. :bangbang: + +For this Quality Profile we're going to make use of the following Custom Formats + +{! include-markdown "../../includes/french-guide/radarr-french-multi-audio.md" !} + +{! include-markdown "../../includes/cf/radarr-audio.md" !} + +{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} + +{! include-markdown "../../includes/cf/radarr-movie-versions.md" !} + +{! include-markdown "../../includes/french-guide/radarr-french-unwanted.md" !} + +{! include-markdown "../../includes/cf/radarr-misc.md" !} + +??? summary "HQ Source Groups - [CLICK TO EXPAND]" + | Custom Format | Score | Trash ID | + | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | + | [{{ radarr['cf']['french-hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-webdl) | {{ radarr['cf']['french-hq-webdl']['trash_score'] }} | {{ radarr['cf']['french-hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-webdl) | {{ radarr['cf']['hq-webdl']['trash_score'] }} | {{ radarr['cf']['hq-webdl']['trash_id'] }} | + | [{{ radarr['cf']['french-hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq-remux) | {{ radarr['cf']['french-hq-remux']['trash_score'] }} | {{ radarr['cf']['french-hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-remux) | {{ radarr['cf']['hq-remux']['trash_score'] }} | {{ radarr['cf']['hq-remux']['trash_id'] }} | + | [{{ radarr['cf']['french-hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hq) | 0 | {{ radarr['cf']['french-hq']['trash_id'] }} | + | [{{ radarr['cf']['hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq) | 0 | {{ radarr['cf']['hq']['trash_id'] }} | + | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | ?????? | {{ radarr['cf']['french-scene']['trash_id'] }} | + + !!! info "French Scene groups are included as a fallback if you really want MULTi release despite quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_score'] }}` or `0` depending on what you want to achieve." + +Use the following main settings in your profile. + +![!cf-profile-remux2160](images/cf-profile-remux2160.png) + +!!! attention "Make sure you don't check the BR-DISK." + +??? example "The following workflow will be applied:" + + - It will try to download MULTi release first, and fallback to best quality single audio after. + - It will download WEB-DL 2160p for the streaming movies you see more often lately. + - It will upgrade to Remux-2160p when available. + - The downloaded media will be upgraded to any of the added Custom Formats until a score of 9999. + + 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. + +------ + +## FAQ & INFO + +### Proper and Repacks + +??? tip "Proper and Repacks - [CLICK TO EXPAND]" + + I also suggest to 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/#repack-proper) Custom Format. + + ![!cf-mm-propers-repacks-disable](images/cf-mm-propers-repacks-disable.png) + + This way you make sure the Custom Format preferences will be used instead. + +### Custom Formats to avoid certain releases + +??? FAQ "How to use a Custom Format to avoid certain releases? - [CLICK TO EXPAND]" + + 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`. + +### Custom Formats with a score of 0 + +??? FAQ "What do Custom Formats with a score of 0 do? - [CLICK TO EXPAND]" + + All Custom Formats with a score of 0 are pure informational and don't do anything. + +### Minimum Custom Format Score + +??? info "Minimum Custom Format Score - [CLICK TO EXPAND]" + + Some people suggest not to use negative scores for your Custom Formats and set this option to a higher score then 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. + +### Audio Channels + +??? info "Audio Channels - [CLICK TO EXPAND]" + + Personally I wouldn't add the audio channels Custom Formats being you could limit yourself in the amount of releases you're able to get. Only use this if you got specific reasons that you need 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 using the `Audio Advanced` Custom Formats. + +### Avoid using the x264/x265 Custom Format + +??? tip "Avoid using the x264/x265 Custom Format - [CLICK TO EXPAND]" + + Avoid using the x264/x265 Custom Format with a score if possible, it's smarter to use the [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="_blank" rel="noopener noreferrer"} Custom Format. + + Something like 95% of video files are x264 and have much better direct play support. If you have more than a of couple users, you will notice much more transcoding. + + 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. + +## Thanks + +A big Thanks to [rg9400](https://github.com/rg9400) for providing me with info needed to create the Tips section. + +--8<-- "includes/support.md" diff --git a/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md b/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md index 1fdd287a6..bf07ff5c7 100644 --- a/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md +++ b/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md @@ -56,7 +56,7 @@ I only do WEB-DL myself for TV shows because in my opinion WEB-DL is the sweet s ------ -### Sonarr Quality Definitions - Anime (Work in Progress) +### Sonarr Quality Definitions - Anime | Quality | Minimum | Maximum | | ----------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | @@ -74,6 +74,11 @@ I only do WEB-DL myself for TV shows because in my opinion WEB-DL is the sweet s | {{ sonarr['quality-size']['anime']['qualities'][11]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][11]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][11]['max'] }} | | {{ sonarr['quality-size']['anime']['qualities'][12]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][12]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][12]['max'] }} | | {{ sonarr['quality-size']['anime']['qualities'][13]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][13]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][13]['max'] }} | +| {{ sonarr['quality-size']['anime']['qualities'][14]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][14]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][14]['max'] }} | +| {{ sonarr['quality-size']['anime']['qualities'][15]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][15]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][15]['max'] }} | +| {{ sonarr['quality-size']['anime']['qualities'][16]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][16]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][16]['max'] }} | +| {{ sonarr['quality-size']['anime']['qualities'][17]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][17]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][17]['max'] }} | +| {{ sonarr['quality-size']['anime']['qualities'][18]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][18]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][18]['max'] }} | {! include-markdown "../../includes/support.md" !} - + \ No newline at end of file diff --git a/docs/Sonarr/Sonarr-recommended-naming-scheme.md b/docs/Sonarr/Sonarr-recommended-naming-scheme.md index c3e78c944..f9ec1c0b7 100644 --- a/docs/Sonarr/Sonarr-recommended-naming-scheme.md +++ b/docs/Sonarr/Sonarr-recommended-naming-scheme.md @@ -15,12 +15,6 @@ The Tokens not available in the release won't be used/shown. ## Standard Episode Format -!!! caution "Starting from v3.0.6.1431, Sonarr now supports recognizing Dolby Vision (DV) and High Dynamic Range (HDR) types. " - - If you're using a lower version replace: - - `{[MediaInfo VideoDynamicRangeType]}` with `{[MediaInfo VideoDynamicRange]}` - ```bash {Series TitleYear} - S{season:00}E{episode:00} - {Episode CleanTitle} [{Preferred Words }{Quality Full}]{[MediaInfo VideoDynamicRangeType]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels]}{MediaInfo AudioLanguages}{[MediaInfo VideoCodec]}{-Release Group} ``` @@ -91,9 +85,6 @@ RESULT: `The Series Title! (2010) [imdb-tt1520211]` -!!! note - The officially supported format is `{imdb-{ImdbId}}` but Plex should also support `(imdb-{ImdbId})` or `[imdb-{ImdbId}]`, though the above should work for now, It's actually not needed to add an ID to the folder or filename to use the new Plex TV Series Scanner. - For Jellyfin/Emby: ```bash diff --git a/docs/Sonarr/images/cfa-complete.png b/docs/Sonarr/images/cfa-complete.png new file mode 100644 index 000000000..7bd15f22c Binary files /dev/null and b/docs/Sonarr/images/cfa-complete.png differ diff --git a/docs/Sonarr/images/cfa-da-scoring.png b/docs/Sonarr/images/cfa-da-scoring.png new file mode 100644 index 000000000..1c25fb883 Binary files /dev/null and b/docs/Sonarr/images/cfa-da-scoring.png differ diff --git a/docs/Sonarr/images/cfa-default-scoring.png b/docs/Sonarr/images/cfa-default-scoring.png new file mode 100644 index 000000000..de0197f78 Binary files /dev/null and b/docs/Sonarr/images/cfa-default-scoring.png differ diff --git a/docs/Sonarr/images/cfa-scoring.png b/docs/Sonarr/images/cfa-scoring.png deleted file mode 100644 index 3b0995c7d..000000000 Binary files a/docs/Sonarr/images/cfa-scoring.png and /dev/null differ diff --git a/docs/Sonarr/images/cfa-seriestype.png b/docs/Sonarr/images/cfa-seriestype.png new file mode 100644 index 000000000..478e7cf1a Binary files /dev/null and b/docs/Sonarr/images/cfa-seriestype.png differ diff --git a/docs/Sonarr/images/cfa-uncensored-scoring.png b/docs/Sonarr/images/cfa-uncensored-scoring.png new file mode 100644 index 000000000..77e16f85e Binary files /dev/null and b/docs/Sonarr/images/cfa-uncensored-scoring.png differ diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index 2f95572cd..975b64669 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -16,7 +16,7 @@ I also made 3 guides related to this one. I also suggest to change the Propers and Repacks settings in Sonarr - `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](images/cf-mm-propers-repacks-disable.png) @@ -30,7 +30,7 @@ I also made 3 guides related to this one. ------ -| Audio Advanced #1 | Audio Advanced #2 | Audio Channels | HDR Metadata | +| Audio Advanced #1 | Audio Advanced #2 | Audio Channels | HDR Formats | | ------------------------------------- | ------------------------- | ---------------------------- | --------------------------------- | | [TrueHD ATMOS](#truehd-atmos) | [FLAC](#flac) | [1.0 Mono](#10-mono) | [DV HDR10](#dv-hdr10) | | [DTS X](#dts-x) | [PCM](#pcm) | [2.0 Stereo](#20-stereo) | [DV](#dv) | @@ -45,50 +45,48 @@ I also made 3 guides related to this one. ------ -| Series Versions | Unwanted | HQ Source Groups | Streaming Services | -| ------------------------------------ | ---------------------------------- | --------------------------- | ------------------- | -| [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [WEB Tier 01](#web-tier-01) | [Amazon](#amzn) | -| [Remaster](#remaster) | [LQ](#lq) | [WEB Tier 02](#web-tier-02) | [Apple TV+](#aptv) | -| [Special Editions](#special-edition) | [DV (WEBDL)](#dv-webdl) | [WEB Tier 03](#web-tier-03) | [DC Universe](#dcu) | -| | [x265 (HD)](#x265-hd) | [WEB Scene](#web-scene) | [Disney+](#dsnp) | -| | [x265 (no HDR/DV)](#x265-no-hdrdv) | | [HBO Max](#hmax) | -| | | | [HBO](#hbo) | -| | | | [Hulu](#hulu) | -| | | | [Netflix](#nf) | -| | | | [Paramount+](#pmtp) | -| | | | [Peacock TV](#pcok) | -| | | | [Quibi](#qibi) | -| | | | [SHOWTIME](#sho) | -| | | | [YouTube Red](#red) | -| | | | [iTunes](#it) | - ------- - -| Misc | Optional |   |   | -| ------------------------------- | ----------------------------------- | ------ | ------ | -| [FreeLeech](#freeleech) | [Season Packs](#season-pack) |   |   | -| [MPEG2](#mpeg2) | [Scene](#scene) |   |   | -| [Multi](#multi) | [No-RlsGroup](#no-rlsgroup) |   |   | -| [Repack/Proper](#repack-proper) | [Obfuscated](#obfuscated) |   |   | -| [Repack v2](#repack-v2) | [Retags](#retags) |   |   | -| [Repack v3](#repack-v3) | [Bad Dual Groups](#bad-dual-groups) |   |   | -| [x264](#x264) | |   |   | -| [x265](#x265) | |   |   | - ------- - -| Anime | Anime | Anime | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------- | -| [Anime BD Tier 01 (Top SeaDex Muxers)](#anime-bd-tier-01-top-seadex-muxers) | [Anime Web Tier 01 (Muxers)](#anime-web-tier-01-muxers) | [Uncensored](#uncensored) | -| [Anime BD Tier 02 (SeaDex Muxers)](#anime-bd-tier-02-seadex-muxers) | [Anime Web Tier 02 (Top FanSubs)](#anime-web-tier-02-top-fansubs) | [v0](#v0) | -| [Anime BD Tier 03 (SeaDex Muxers)](#anime-bd-tier-03-seadex-muxers) | [Anime Web Tier 03 (SubsPlease)](#anime-web-tier-03-subsplease) | [v1](v1) | -| [Anime BD Tier 04 (SeaDex Muxers)](#anime-bd-tier-04-seadex-muxers) | [Anime Web Tier 04 (Official Subs)](#anime-web-tier-04-official-subs) | [v2](#v2) | -| [Anime BD Tier 05 (Remuxes)](#anime-bd-tier-05-remuxes) | [Anime Web Tier 05 (FanSubs)](#anime-web-tier-05-fansubs) | [v3](#v3) | -| [Anime BD Tier 06 (FanSubs)](#anime-bd-tier-06-fansubs) | [Anime Web Tier 06 (FanSubs)](#anime-web-tier-06-fansubs) | [v4](#v4) | -| [Anime BD Tier 07 (P2P/Scene)](#anime-bd-tier-07-p2pscene) | [Anime Raws](#anime-raws) | [VRV](#vrv) | -| [Anime BD Tier 08 (Mini Encodes)](#anime-bd-tier-08-mini-encodes) | [Anime LQ Groups](#anime-lq-groups) | [10bit](#10bit) | -| | | [Anime Dual Audio](#anime-dual-audio) | -| | | [Dubs Only](#dubs-only) | +| Series Versions | Unwanted | HQ Source Groups | Streaming Services | +| --------------------- | --------------------- | --------------------------- | ------------------- | +| [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [WEB Tier 01](#web-tier-01) | [Amazon](#amzn) | +| [Remaster](#remaster) | [LQ](#lq) | [WEB Tier 02](#web-tier-02) | [Apple TV+](#atvp) | +| | [x265 (HD)](#x265-hd) | [WEB Tier 03](#web-tier-03) | [DC Universe](#dcu) | +| | | [WEB Scene](#web-scene) | [Disney+](#dsnp) | +| | | | [HBO Max](#hmax) | +| | | | [HBO](#hbo) | +| | | | [Hulu](#hulu) | +| | | | [Netflix](#nf) | +| | | | [Paramount+](#pmtp) | +| | | | [Peacock TV](#pcok) | +| | | | [Quibi](#qibi) | +| | | | [SHOWTIME](#sho) | +| | | | [YouTube Red](#red) | +| | | | [iTunes](#it) | + +------ + +| Misc | Optional |   |   | +| ------------------------------ | ----------------------------------- | ------ | ------ | +| [Repack/Proper](#repackproper) | [Bad Dual Groups](#bad-dual-groups) |   |   | +| [Repack v2](#repack-v2) | [DV (WEBDL)](#dv-webdl) |   |   | +| [Repack v3](#repack-v3) | [No-RlsGroup](#no-rlsgroup) |   |   | +| [Multi](#multi) | [Obfuscated](#obfuscated) |   |   | +| [MPEG2](#mpeg2) | [Retags](#retags) |   |   | +| [x264](#x264) | [Scene](#scene) |   |   | +| [x265](#x265) | [Season Packs](#season-pack) |   |   | +| | [x265 (no HDR/DV)](#x265-no-hdrdv) |   |   | + +------ + +| Anime | Anime | Anime | Anime Optional | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------- | ----------- | ------------------------------------- | +| [Anime BD Tier 01 (Top SeaDex Muxers)](#anime-bd-tier-01-top-seadex-muxers) | [Anime Web Tier 01 (Muxers)](#anime-web-tier-01-muxers) | [v0](#v0) | [Uncensored](#uncensored) | +| [Anime BD Tier 02 (SeaDex Muxers)](#anime-bd-tier-02-seadex-muxers) | [Anime Web Tier 02 (Top FanSubs)](#anime-web-tier-02-top-fansubs) | [v1](#v1) | [10bit](#10bit) | +| [Anime BD Tier 03 (SeaDex Muxers)](#anime-bd-tier-03-seadex-muxers) | [Anime Web Tier 03 (Official Subs)](#anime-web-tier-03-official-subs) | [v2](#v2) | [Anime Dual Audio](#anime-dual-audio) | +| [Anime BD Tier 04 (SeaDex Muxers)](#anime-bd-tier-04-seadex-muxers) | [Anime Web Tier 04 (Official Subs)](#anime-web-tier-04-official-subs) | [v3](#v3) | [Dubs Only](#dubs-only) | +| [Anime BD Tier 05 (Remuxes)](#anime-bd-tier-05-remuxes) | [Anime Web Tier 05 (FanSubs)](#anime-web-tier-05-fansubs) | [v4](#v4) | | +| [Anime BD Tier 06 (FanSubs)](#anime-bd-tier-06-fansubs) | [Anime Web Tier 06 (FanSubs)](#anime-web-tier-06-fansubs) | [VRV](#vrv) | | +| [Anime BD Tier 07 (P2P/Scene)](#anime-bd-tier-07-p2pscene) | [Anime Raws](#anime-raws) | | | +| [Anime BD Tier 08 (Mini Encodes)](#anime-bd-tier-08-mini-encodes) | [Anime LQ Groups](#anime-lq-groups) | | | ## Audio Advanced @@ -473,7 +471,7 @@ I also made 3 guides related to this one. ------ -## HDR metadata +## HDR Formats ------ @@ -724,25 +722,6 @@ I also made 3 guides related to this one. ------ -### Special Edition - -??? faq "Special Edition - [CLICK TO EXPAND]" - - Custom format for several Special Editions - - - The Director's Cut is the version edited by the Director, usually for additional home media releases. - - An Extended Cut is usually any version of the film which is longer than the theatrical cut (though in very rare cases, its shorter). - -??? example "JSON - [CLICK TO EXPAND]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/special-edition.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ------- - ## Unwanted ------ @@ -806,7 +785,7 @@ I also made 3 guides related to this one. !!! fail "" --8<-- "includes/docker/x265.md" - !!! Danger "Don't use this together with the following Custom Format [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv) :warning:" + !!! Danger "Don't use this together with [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" ??? example "JSON - [CLICK TO EXPAND]" @@ -818,58 +797,11 @@ I also made 3 guides related to this one. ------ -### x265 (no HDR/DV) - -??? faq "x265 (no HDR/DV) - [CLICK TO EXPAND]" - - This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - - **but it will allow to exclude/bypass if it has HDR and/or DV** - - *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* - - In your quality profile use the following score for this Custom Format: `{{ sonarr['cf']['x265-no-hdrdv']['trash_score'] }}` - - !!! Danger "Don't use this together with the following Custom Format [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd) :warning:" - -??? example "JSON - [CLICK TO EXPAND]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ------- - -### DV (WEBDL) - -Dolby Vision = DoVi = DV - -??? faq "DV (WEBDL) - [CLICK TO EXPAND]" - This is a special Custom Format that block WEBDLs **with** Dolby Vision but **without** HDR10 fallback. - - This Custom Format works together with the normal [DV](#dv) Custom Format that you can use to prefer Dolby Vision. - - Most WEBDL from Streaming Services don't have the fallback to HDR10, What can results in playback issues like weird colors if you want to play it on a not Dolby Vision compatible setup. - - Remuxes and Bluray have a fallback to HDR10. - -??? example "JSON - [CLICK TO EXPAND]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-webdl.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ------- - ## Misc ------ -### Repack Proper +### Repack/Proper ??? example "JSON - [CLICK TO EXPAND]" @@ -942,25 +874,6 @@ I also made 3 guides related to this one. ------ -### FreeLeech - -??? faq "FreeLeech - [CLICK TO EXPAND]" - - Sometimes, torrent sites set a torrent to be freeleech. This means, that the download of this torrent will not count towards your download quota or ratio. This is really useful, if you do not have the best ratio yet. - - !!! attention - Keep in mind not all trackers support this option. - -??? example "JSON - [CLICK TO EXPAND]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/freeleech.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ------- - ### MPEG2 ??? example "JSON - [CLICK TO EXPAND]" @@ -989,41 +902,39 @@ I also made 3 guides related to this one. ------ -### Season Pack - -??? faq "Season Pack - [CLICK TO EXPAND]" - - This Custom Format can be used depending if you prefer or not prefer a season pack - - - Give it a score of `10` if you prefer a season pack. - - Give it a score of `-10000` if you don't prefer a season pack. - - `/\bS\d+\b(?!E\d+\b)/i` season packs are preferred: however, given the folder name is ignored the error/warning/issue occurs as the file names would not be a season pack of course. - - keep in mind this is the only way to prefer season packs if you have preferred words due to the long standing bug => Preferred Words overrule season pack preference [Sonarr/Sonarr#3562](https://github.com/Sonarr/Sonarr/issues/3562){:target="_blank" rel="noopener noreferrer"} +### Bad Dual Groups - !!! danger "WARNING" - - This Custom Format could result in a download loop :bangbang: - - This will upgrade also your already downloaded single episodes :bangbang: +??? faq "Bad dual groups - [CLICK TO EXPAND]" + These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. + Also they often even rename the release name in to Portuguese. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/bad-dual-groups.json' %]][[% endfilter %]] ``` [TOP](#index) ------ -### Scene +### DV (WEBDL) -??? faq "Scene - [CLICK TO EXPAND]" +Dolby Vision = DoVi = DV - This Custom Format will try to recognize so called Scene releases, depending on your preferences you can give it a negative score `-10000` or a positive score or just don't add it all. +??? faq "DV (WEBDL) - [CLICK TO EXPAND]" + This is a special Custom Format that block WEBDLs **with** Dolby Vision but **without** HDR10 fallback. + + This Custom Format works together with the normal [DV](#dv) Custom Format that you can use to prefer Dolby Vision. + + Most WEBDL from Streaming Services don't have the fallback to HDR10, What can results in playback issues like weird colors if you want to play it on a not Dolby Vision compatible setup. + + Remuxes and Bluray have a fallback to HDR10. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/scene.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-webdl.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -1083,16 +994,65 @@ I also made 3 guides related to this one. ------ -### Bad Dual Groups +### Scene -??? faq "Bad dual groups - [CLICK TO EXPAND]" - These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. - Also they often even rename the release name in to Portuguese. +??? faq "Scene - [CLICK TO EXPAND]" + + This Custom Format will try to recognize so called Scene releases, depending on your preferences you can give it a negative score `-10000` or a positive score or just don't add it all. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/bad-dual-groups.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/scene.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### Season Pack + +??? faq "Season Pack - [CLICK TO EXPAND]" + + This Custom Format can be used depending if you prefer or not prefer a season pack + + - Give it a score of `10` if you prefer a season pack. + - Give it a score of `-10000` if you don't prefer a season pack. + - `/\bS\d+\b(?!E\d+\b)/i` season packs are preferred: however, given the folder name is ignored the error/warning/issue occurs as the file names would not be a season pack of course. + - keep in mind this is the only way to prefer season packs if you have preferred words due to the long standing bug => Preferred Words overrule season pack preference [Sonarr/Sonarr#3562](https://github.com/Sonarr/Sonarr/issues/3562){:target="_blank" rel="noopener noreferrer"} + + !!! danger "WARNING" + - This Custom Format could result in a download loop :bangbang: + - This will upgrade also your already downloaded single episodes :bangbang: + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + +### x265 (no HDR/DV) + +??? faq "x265 (no HDR/DV) - [CLICK TO EXPAND]" + + This blocks/ignores 720/1080p (HD) releases that are encoded in x265. + + **But it will allow x265 releases if they have HDR and/or DV** + + *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* + + In your quality profile use the following score for this Custom Format: `{{ sonarr['cf']['x265-no-hdrdv']['trash_score'] }}` + + !!! Danger "Don't use this together with [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd), Only ever include one of them :warning:" + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -1196,7 +1156,7 @@ I also made 3 guides related to this one. ------ -### APTV +### ATVP Apple TV+ @@ -1207,7 +1167,7 @@ I also made 3 guides related to this one. ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/aptv.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/atvp.json' %]][[% endfilter %]] ``` [TOP](#index) @@ -1584,15 +1544,15 @@ I also made 3 guides related to this one. ------ -### Anime Web Tier 03 (SubsPlease) +### Anime Web Tier 03 (Official Subs) -??? faq "Anime Web Tier 03 (SubsPlease) - [CLICK TO EXPAND]" - SubsPlease group. They are official subs but tend to be more consistent and release fast +??? faq "Anime Web Tier 03 (Official Subs) - [CLICK TO EXPAND]" + Official sub groups that tend to be more consistent and release fast ??? example "JSON - [CLICK TO EXPAND]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-03-subsplease.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-03-official-subs.json' %]][[% endfilter %]] ``` [TOP](#index) diff --git a/docs/Sonarr/sonarr-import-custom-formats.md b/docs/Sonarr/sonarr-import-custom-formats.md index 1dae35907..28be45c8d 100644 --- a/docs/Sonarr/sonarr-import-custom-formats.md +++ b/docs/Sonarr/sonarr-import-custom-formats.md @@ -51,6 +51,11 @@ all you need to do now is click on the `Save` button and you're done. ![cf-import-done](images/cf-import-done.png) +### Setup the scores in your Quality Profile + +After you've added the Custom Formats, You will need to set it up in the Quality Profile you want to use/prefer to make use of the Custom Formats. +How this is done is explained [HERE](/Sonarr/sonarr-setup-custom-formats/#basics){:target="_blank" rel="noopener noreferrer"} + ------ ## Start adding other Custom Formats wisely diff --git a/docs/Sonarr/sonarr-setup-custom-formats-anime.md b/docs/Sonarr/sonarr-setup-custom-formats-anime.md index 62043c154..169d498dc 100644 --- a/docs/Sonarr/sonarr-setup-custom-formats-anime.md +++ b/docs/Sonarr/sonarr-setup-custom-formats-anime.md @@ -1,25 +1,32 @@ # How to setup Custom Formats (Anime) !!! attention - You must be running Sonarr V4 to be able to use this setup + 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) + ![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) !!! note This guide is created and maintained by [FonduemangVI](https://github.com/FonduemangVI) and [rg9400](https://github.com/rg9400) - It's recommended to run two Sonarr instances. One for Anime and one for normal TV shows, or you can make use of Quality Profiles and score different Custom Formats (CFs) as required. +It's recommended to run two Sonarr instances. One for Anime and one for normal TV shows, or you can make use of Quality Profiles and score different Custom Formats (CFs) as required. The aim of this guide is to grab the best release overall (as per [SeaDex](https://sneedex.moe/){:target="_blank" rel="noopener noreferrer"}) and not necessarily just dual audio. The vast majority of releases can be found on [Nyaa](https://nyaa.si/){:target="_blank" rel="noopener noreferrer"} or [AB](https://animebytes.tv/){:target="_blank" rel="noopener noreferrer"} -!!! note +!!! info "" Nyaa is a public tracker while AB is an invite only tracker. --- ## Media Management +### Series Type + +When adding a new series make sure you set the series type to Anime + +??? check "example - [Click to Expand]" + ![!cfa-seriestype](images/cfa-seriestype.png) + ### Recommended naming scheme ```bash @@ -70,7 +77,9 @@ Result: ## Quality Settings -For quality settings please refer to [Sonarr Quality Definitions - Anime](/Sonarr/Sonarr-Quality-Settings-File-Size/#sonarr-quality-definitions-anime-work-in-progress){:target="_blank" rel="noopener noreferrer"} +For quality settings please refer to [Sonarr Quality Definitions - Anime](/Sonarr/Sonarr-Quality-Settings-File-Size/#sonarr-quality-definitions-anime){:target="_blank" rel="noopener noreferrer"} + +If you are only running a single instance of Sonarr you can instead use [Sonarr Quality Definitions](/Sonarr/Sonarr-Quality-Settings-File-Size/#sonarr-quality-definitions){:target="_blank" rel="noopener noreferrer"} --- @@ -78,25 +87,18 @@ For quality settings please refer to [Sonarr Quality Definitions - Anime](/Sonar We need to create a new profile called `Remux-1080p - Anime` due to the way anime can be named we will need to merge a few qualities together see [here](/Sonarr/Tips/Merge-quality/){:target="_blank" rel="noopener noreferrer"} for an example. -We need to add `Bluray-1080p Remux` and `Bluray-1080p` into a group together, and `HDTV-1080p` into the same group as `WEBDL-1080p` and `WEBRip-1080p` so that scoring will work correctly. +We need to add `Bluray-1080p Remux` and `Bluray-1080p` into a group together, `HDTV-1080p` into the same group as `WEBDL-1080p` and `WEBRip-1080p`, and lastly `HDTV-720p` into the same group as `WEBDL-720p` and `WEBRip-720p` so that the scoring will work correctly. Go to `Settings` => `Profiles` -??? check "example - [Click to Expand]" - ![!cf-settings-profiles](images/cfa-settings-profiles.png) +![!cf-settings-profiles](images/cfa-settings-profiles.png) ![!cfa-mergedqualities](images/cfa-mergedqualities.png) -We then need to select and organise qualities as below. +We then need to select and organise the qualities like below. ![!cfa-qualityorder](images/cfa-qualityorder.png) -Make sure `Upgrades Allowed` is ticked then set the `Upgrade Until` section to `Bluray-1080p` and the `Upgrade Until Custom Format Score` to `10000` - -After this has been done your profile should look like below. - -![!cfa-qualityprofile](images/cfa-qualityprofile.png) - --- ## Anime CF/Scoring @@ -104,25 +106,65 @@ After this has been done your profile should look like below. !!! note We're going to make use of the below custom formats. See [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"} for how to import them. +### Default Scoring + {! include-markdown "../../includes/cf/sonarr-anime.md" !} The scoring that has been set is the recommended scoring, however some of the CFs are optional depending on what you prefer. -`Anime Dual Audio`, `Uncensored` and `10bit` can be given postive scores if you want to prefer content with these attributes. +`Anime Dual Audio`, `Uncensored` and `10bit` can be given positive scores if you want to prefer content with these attributes. -`Anime Raws` and `Dubs Only` are optional negative scores, if you prefer these attributes you can give them a positive score. +`Anime Raws` and `Dubs Only` are negatively scored, however if you prefer these attributes you can give them a positive score. Once the custom formats have been imported you can set the scores as above. To do this go to `Settings` => `Profiles` and select the `Remux-1080p - Anime` profile that was setup before. -??? check "example - [Click to Expand]" - ![!cf-settings-profiles](images/cfa-settings-profiles.png) +![!cf-settings-profiles](images/cfa-settings-profiles.png) In the profile enter the scores as per the above table in this section. -![!cfa-scoring](images/cfa-scoring.png) +![!cfa-default-scoring](images/cfa-default-scoring.png) After you are done it should look like the image above. +### Dual Audio Scoring + +If you prefer `Dual Audio` releases you have a few options depending on your preference. + +If you want to prefer `Dual Audio` within the same tier give the `CF` a score of `10`, if you want it to be preferred a tier above give the `CF` a score of `101`, and if you want to prefer it over any tiers give the `CF` a score of `2000`. + +If you must have `Dual Audio` releases set the `Minimum Custom Format Score` to 2000 in the `Remux-1080p - Anime` profile that you setup earlier. + +Using this scoring you will still benefit from the tiers if a better release group does a `Dual Audio` release. + +Below is an example of the scoring set to prefer `Dual Audio` over any tier. + +![!cfa-da-scoring](images/cfa-da-scoring.png) + +### Uncensored Scoring + +!!! note + Most BDs are uncensored by default, so most groups do not include that in the name. + +If you prefer `Uncensored` releases you have a few options depending on your preference. + +If you want to prefer `Uncensored` within the same tier give the `CF` a score of `10`, if you want it to be preferred a tier above give the `CF` a score of `101`. + +Using this scoring you will still benefit from the tiers if a better release group does an `Uncensored` release. + +Below is an example of the scoring set to prefer `Uncensored` a tier above. + +![!cfa-uncensored-scoring](images/cfa-uncensored-scoring.png) + +### Finishing up + +Once you have set your preferred scoring you will need to make one more change to your `Remux-1080p - Anime` profile. + +Make sure `Upgrades Allowed` is ticked then set the `Upgrade Until` section to `Bluray-1080p` and the `Upgrade Until Custom Format Score` to `10000` + +After this has been done your profile should look like below. This is an example of the Default Scoring setup. + +![!cfa-complete](images/cfa-complete.png) + ### Acknowledgements Most of my information and knowledge came from: @@ -136,4 +178,4 @@ Most of my information and knowledge came from: - [TRaSH](https://trash-guides.info/) (For allowing me to utilize his website for our guide and general knowledge share.) {! include-markdown "../../includes/support.md" !} - + \ No newline at end of file diff --git a/docs/Sonarr/sonarr-setup-custom-formats.md b/docs/Sonarr/sonarr-setup-custom-formats.md index c28810079..5fecd28ad 100644 --- a/docs/Sonarr/sonarr-setup-custom-formats.md +++ b/docs/Sonarr/sonarr-setup-custom-formats.md @@ -77,13 +77,13 @@ This is a must have for every Quality Profile you use in my opinion. All these C ------ -#### Prefer HDR Metadata +#### Prefer HDR Formats -Lets say you prefer HDR metadata (HDR or Dolby Vision or Both) +Lets say you prefer HDR Formats (HDR or Dolby Vision or Both) Then we would use the following order: -{! include-markdown "../../includes/cf/sonarr-hdr-metadata.md" !} +{! include-markdown "../../includes/cf/sonarr-hdr-formats.md" !} ------ @@ -140,7 +140,7 @@ If you think the sizes are too big to your preference then stop reading and see For this Quality Profile we're going to make use of the following Custom Formats -{! include-markdown "../../includes/cf/sonarr-hdr-metadata.md" !} +{! include-markdown "../../includes/cf/sonarr-hdr-formats.md" !} {! include-markdown "../../includes/cf/sonarr-unwanted.md" !} @@ -179,7 +179,7 @@ Use the following main settings in your profile. I also suggest to change the Propers and Repacks settings in Sonarr - `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Sonarr/sonarr-collection-of-custom-formats/#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Sonarr/sonarr-collection-of-custom-formats/#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](images/cf-mm-propers-repacks-disable.png) diff --git a/docs/json/radarr/cf/anime-lq-groups.json b/docs/json/radarr/cf/anime-lq-groups.json index ce5b2b121..cb8b66413 100644 --- a/docs/json/radarr/cf/anime-lq-groups.json +++ b/docs/json/radarr/cf/anime-lq-groups.json @@ -1165,15 +1165,6 @@ "value": "\\b(YakuboEncodes)\\b" } }, - { - "name": "Yameii", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": false, - "fields": { - "value": "\\[Yameii\\]|-Yameii\\b" - } - }, { "name": "youshikibi", "implementation": "ReleaseTitleSpecification", diff --git a/docs/json/sonarr/cf/anime-web-tier-03-subsplease.json b/docs/json/radarr/cf/anime-web-tier-03-official-subs.json similarity index 63% rename from docs/json/sonarr/cf/anime-web-tier-03-subsplease.json rename to docs/json/radarr/cf/anime-web-tier-03-official-subs.json index e6470425b..736cae6cc 100644 --- a/docs/json/sonarr/cf/anime-web-tier-03-subsplease.json +++ b/docs/json/radarr/cf/anime-web-tier-03-official-subs.json @@ -1,7 +1,7 @@ { - "trash_id": "b5a83ef7296f3c5358236e3452ed1d97", + "trash_id": "de41e72708d2c856fa261094c85e965d", "trash_score": "400", - "name": "Anime Web Tier 03 (SubsPlease)", + "name": "Anime Web Tier 03 (Official Subs)", "includeCustomFormatWhenRenaming": false, "specifications": [ { @@ -39,6 +39,24 @@ "fields": { "value": "\\b(SubsPlease)\\b" } + }, + { + "name": "VARYG", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(VARYG)\\b" + } + }, + { + "name": "ZR", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(ZR)\\b" + } } ] } diff --git a/docs/json/radarr/cf/anime-web-tier-03-subsplease.json b/docs/json/radarr/cf/anime-web-tier-03-subsplease.json deleted file mode 100644 index e112882dd..000000000 --- a/docs/json/radarr/cf/anime-web-tier-03-subsplease.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "trash_id": "5b1a5d3df27396373b4ce236fc337eaa", - "trash_score": "400", - "name": "Anime Web Tier 03 (SubsPlease)", - "includeCustomFormatWhenRenaming": false, - "specifications": [ - { - "name": "WEBDL", - "implementation": "SourceSpecification", - "negate": false, - "required": false, - "fields": { - "value": 7 - } - }, - { - "name": "WEBRIP", - "implementation": "SourceSpecification", - "negate": false, - "required": false, - "fields": { - "value": 8 - } - }, - { - "name": "SubsPlease", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": false, - "fields": { - "value": "\\b(SubsPlease)\\b" - } - } - ] -} diff --git a/docs/json/radarr/cf/anime-web-tier-04-official-subs.json b/docs/json/radarr/cf/anime-web-tier-04-official-subs.json index 76045c67f..4844f1976 100644 --- a/docs/json/radarr/cf/anime-web-tier-04-official-subs.json +++ b/docs/json/radarr/cf/anime-web-tier-04-official-subs.json @@ -111,15 +111,6 @@ "fields": { "value": "\\b(URANIME)\\b" } - }, - { - "name": "ZR", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": false, - "fields": { - "value": "\\b(ZR)\\b" - } } ] } diff --git a/docs/json/radarr/cf/aptv.json b/docs/json/radarr/cf/atvp.json similarity index 90% rename from docs/json/radarr/cf/aptv.json rename to docs/json/radarr/cf/atvp.json index f4030421d..4153b26e0 100644 --- a/docs/json/radarr/cf/aptv.json +++ b/docs/json/radarr/cf/atvp.json @@ -1,6 +1,6 @@ { - "trash_id": "3472d276482257d68f7836a55ca24877", - "name": "APTV", + "trash_id": "40e9380490e748672c2522eaaeb692f7", + "name": "ATVP", "includeCustomFormatWhenRenaming": true, "specifications": [ { diff --git a/docs/json/radarr/cf/bad-dual-groups.json b/docs/json/radarr/cf/bad-dual-groups.json index c3204f5a2..cdb894e31 100644 --- a/docs/json/radarr/cf/bad-dual-groups.json +++ b/docs/json/radarr/cf/bad-dual-groups.json @@ -112,6 +112,15 @@ "value": "\\b(-PD)\\b" } }, + { + "name": "PTHome", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(-PTHome)\\b" + } + }, { "name": "RiPER", "implementation": "ReleaseTitleSpecification", @@ -174,6 +183,15 @@ "fields": { "value": "\\b(-YusukeFLA)\\b" } + }, + { + "name": "ZigZag", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(-ZigZag)\\b" + } } ] } diff --git a/docs/json/radarr/cf/ddplus.json b/docs/json/radarr/cf/ddplus.json index f7ccf9db0..d96fcaa23 100644 --- a/docs/json/radarr/cf/ddplus.json +++ b/docs/json/radarr/cf/ddplus.json @@ -30,15 +30,6 @@ "value": "\\bDTS(\\b|\\d)" } }, - { - "name": "Not Basic Dolby Digital", - "implementation": "ReleaseTitleSpecification", - "negate": true, - "required": true, - "fields": { - "value": "\\bDD[^a-z+]|(? `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Radarr/Radarr-collection-of-custom-formats/#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Radarr/Radarr-collection-of-custom-formats/#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](/Radarr/images/cf-mm-propers-repacks-disable.png) diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index 2f7e3d0a0..bf1ba732a 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -20,19 +20,19 @@ - **{{ radarr['cf']['br-disk']['name'] }} :** This is a custom format to help Radarr recognize & ignore BR-DISK (ISO's and Blu-ray folder structure) in addition to the standard BR-DISK quality. - **{{ radarr['cf']['evo-no-webdl']['name'] }}:** This group is often banned for the low quality Blu-ray releases, but their WEB-DL are okay. - **{{ radarr['cf']['lq']['name'] }}:** A collection of known Low Quality groups that are often banned from the the top trackers because the lack of quality or other reasons. - - **{{ radarr['cf']['x265-hd']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + - **{{ radarr['cf']['x265-hd']['name'] }}:** This blocks 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning:" + !!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" - - **{{ radarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + - **{{ radarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - **but it will allow to exclude/bypass if it has HDR and/or DV** + **But it will allow x265 releases if they have HDR and/or DV** *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-no-hdrdv']['trash_score'] }}` - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning:" + !!! Danger "Don't use this together with [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd), Only ever include one of them :warning:" - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? - **{{ radarr['cf']['no-rlsgroup']['name'] }}:** [*Optional*] Some indexers strip out the release group what could result in LQ groups getting a higher score. For example a lot of EVO releases end up stripping the group name, so they appear as "upgrades", and they end up getting a decent score if other things match. diff --git a/includes/cf/sonarr-anime.md b/includes/cf/sonarr-anime.md index 62837b774..1a4aad87c 100644 --- a/includes/cf/sonarr-anime.md +++ b/includes/cf/sonarr-anime.md @@ -11,7 +11,7 @@ | [{{ sonarr['cf']['anime-bd-tier-08-mini-encodes']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-bd-tier-08-mini-encodes) | {{ sonarr['cf']['anime-bd-tier-08-mini-encodes']['trash_score'] }} | {{ sonarr['cf']['anime-bd-tier-08-mini-encodes']['trash_id'] }} | | [{{ sonarr['cf']['anime-web-tier-01-muxers']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-01-muxers) | {{ sonarr['cf']['anime-web-tier-01-muxers']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-01-muxers']['trash_id'] }} | | [{{ sonarr['cf']['anime-web-tier-02-top-fansubs']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-02-top-fansubs) | {{ sonarr['cf']['anime-web-tier-02-top-fansubs']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-02-top-fansubs']['trash_id'] }} | - | [{{ sonarr['cf']['anime-web-tier-03-subsplease']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-03-subsplease) | {{ sonarr['cf']['anime-web-tier-03-subsplease']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-03-subsplease']['trash_id'] }} | + | [{{ sonarr['cf']['anime-web-tier-03-official-subs']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-03-official-subs) | {{ sonarr['cf']['anime-web-tier-03-official-subs']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-03-official-subs']['trash_id'] }} | | [{{ sonarr['cf']['anime-web-tier-04-official-subs']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-04-official-subs) | {{ sonarr['cf']['anime-web-tier-04-official-subs']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-04-official-subs']['trash_id'] }} | | [{{ sonarr['cf']['anime-web-tier-05-fansubs']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-05-fansubs) | {{ sonarr['cf']['anime-web-tier-05-fansubs']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-05-fansubs']['trash_id'] }} | | [{{ sonarr['cf']['anime-web-tier-06-fansubs']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-web-tier-06-fansubs) | {{ sonarr['cf']['anime-web-tier-06-fansubs']['trash_score'] }} | {{ sonarr['cf']['anime-web-tier-06-fansubs']['trash_id'] }} | diff --git a/includes/cf/sonarr-hdr-metadata.md b/includes/cf/sonarr-hdr-formats.md similarity index 88% rename from includes/cf/sonarr-hdr-metadata.md rename to includes/cf/sonarr-hdr-formats.md index e43211c52..466ff3f7f 100644 --- a/includes/cf/sonarr-hdr-metadata.md +++ b/includes/cf/sonarr-hdr-formats.md @@ -1,4 +1,4 @@ -??? summary "HDR Metadata - [CLICK TO EXPAND]" +??? summary "HDR Formats - [CLICK TO EXPAND]" | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | ----------------------------------------------- | | [{{ sonarr['cf']['dv-hdr10']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dv-hdr10) | {{ sonarr['cf']['dv-hdr10']['trash_score'] }} | {{ sonarr['cf']['dv-hdr10']['trash_id'] }} | @@ -13,4 +13,4 @@ | [{{ sonarr['cf']['hlg']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hlg) | {{ sonarr['cf']['hlg']['trash_score'] }} | {{ sonarr['cf']['hlg']['trash_id'] }} | !!! hint - If you (or family members you share your collection with) have a setup that doesn't support Dolby Vision then it's best to add **ALL** the HDR Metadata even the ones with DV in it, and then make sure you make use of the [{{ sonarr['cf']['dv-webdl']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dv-webdl) Custom Format with a score of {{ sonarr['cf']['dv-webdl']['trash_score'] }} \ No newline at end of file + If you (or family members you share your collection with) have a setup that doesn't support Dolby Vision then it's best to add **ALL** the HDR Formats listed above (including **ALL** the DV ones (with and without HDR in it), It is important to also add the [{{ sonarr['cf']['dv-webdl']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dv-webdl) Custom Format with a score of {{ sonarr['cf']['dv-webdl']['trash_score'] }} diff --git a/includes/cf/sonarr-misc.md b/includes/cf/sonarr-misc.md index 9a421da4b..f152effc1 100644 --- a/includes/cf/sonarr-misc.md +++ b/includes/cf/sonarr-misc.md @@ -1,7 +1,7 @@ ??? summary "Misc - [CLICK TO EXPAND]" | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | ----------------------------------------------- | - | [{{ sonarr['cf']['repack-proper']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#repack-proper) | {{ sonarr['cf']['repack-proper']['trash_score'] }} | {{ sonarr['cf']['repack-proper']['trash_id'] }} | + | [{{ sonarr['cf']['repack-proper']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#repackproper) | {{ sonarr['cf']['repack-proper']['trash_score'] }} | {{ sonarr['cf']['repack-proper']['trash_id'] }} | | [{{ sonarr['cf']['repack-v2']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#repack-v2) | {{ sonarr['cf']['repack-v2']['trash_score'] }} | {{ sonarr['cf']['repack-v2']['trash_id'] }} | | [{{ sonarr['cf']['repack-v3']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#repack-v3) | {{ sonarr['cf']['repack-v3']['trash_score'] }} | {{ sonarr['cf']['repack-v3']['trash_id'] }} | @@ -9,7 +9,7 @@ I also suggest to change the Propers and Repacks settings in Sonarr - `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Sonarr/sonarr-collection-of-custom-formats/#repack-proper) Custom Format. + `Media Management` => `File Management` to `Do Not Prefer` and use the [Repack/Proper](/Sonarr/sonarr-collection-of-custom-formats/#repackproper) Custom Format. ![!cf-mm-propers-repacks-disable](/Sonarr/images/cf-mm-propers-repacks-disable.png) diff --git a/includes/cf/sonarr-streaming-services.md b/includes/cf/sonarr-streaming-services.md index f9fac6faa..d41d1e36e 100644 --- a/includes/cf/sonarr-streaming-services.md +++ b/includes/cf/sonarr-streaming-services.md @@ -2,7 +2,7 @@ | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------- | ----------------------------------------- | -------------------------------------- | | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_score'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} | - | [{{ sonarr['cf']['aptv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#aptv) | {{ sonarr['cf']['aptv']['trash_score'] }} | {{ sonarr['cf']['aptv']['trash_id'] }} | + | [{{ sonarr['cf']['atvp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#atvp) | {{ sonarr['cf']['atvp']['trash_score'] }} | {{ sonarr['cf']['atvp']['trash_id'] }} | | [{{ sonarr['cf']['sho']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sho) | {{ sonarr['cf']['sho']['trash_score'] }} | {{ sonarr['cf']['sho']['trash_id'] }} | | [{{ sonarr['cf']['dsnp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dsnp) | {{ sonarr['cf']['dsnp']['trash_score'] }} | {{ sonarr['cf']['dsnp']['trash_id'] }} | | [{{ sonarr['cf']['nf']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#nf) | {{ sonarr['cf']['nf']['trash_score'] }} | {{ sonarr['cf']['nf']['trash_id'] }} | diff --git a/includes/cf/sonarr-unwanted.md b/includes/cf/sonarr-unwanted.md index df2a00ea3..a215c1188 100644 --- a/includes/cf/sonarr-unwanted.md +++ b/includes/cf/sonarr-unwanted.md @@ -17,19 +17,19 @@ - **{{ sonarr['cf']['br-disk']['name'] }} :** This is a custom format to help Sonarr recognize & ignore BR-DISK (ISO's and Blu-ray folder structure) in addition to the standard BR-DISK quality. - **{{ sonarr['cf']['lq']['name'] }}:** A collection of known Low Quality groups that are often banned from the the top trackers because the lack of quality or other reasons. - - **{{ sonarr['cf']['x265-hd']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + - **{{ sonarr['cf']['x265-hd']['name'] }}:** This blocks 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - !!! Danger "Don't use this together with the following Custom Format [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv) :warning:" + !!! Danger "Don't use this together with [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" - - **{{ sonarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + - **{{ sonarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - **but it will allow to exclude/bypass if it has HDR and/or DV** + **But it will allow x265 releases if they have HDR and/or DV** *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* In your quality profile use the following score for this Custom Format: `{{ sonarr['cf']['x265-no-hdrdv']['trash_score'] }}` - !!! Danger "Don't use this together with the following Custom Format [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd) :warning:" + !!! Danger "Don't use this together with [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd), Only ever include one of them :warning:" - **{{ sonarr['cf']['no-rlsgroup']['name'] }}:** [*Optional*] Some indexers strip out the release group what could result in LQ groups getting a higher score. For example a lot of EVO releases end up stripping the group name, so they appear as "upgrades", and they end up getting a decent score if other things match. - **{{ sonarr['cf']['obfuscated']['name'] }}:** [*Optional*] (use these only if you dislike renamed releases) diff --git a/includes/cf/unwanted.md b/includes/cf/unwanted.md deleted file mode 100644 index c30cca6ef..000000000 --- a/includes/cf/unwanted.md +++ /dev/null @@ -1,53 +0,0 @@ -??? summary "Unwanted - [CLICK TO EXPAND]" - | Custom Format | Score | Trash ID | - | -------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | - | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | - | [{{ radarr['cf']['evo-no-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#evo-no-webdl) | {{ radarr['cf']['evo-no-webdl']['trash_score'] }} | {{ radarr['cf']['evo-no-webdl']['trash_id'] }} | - | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | - | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :bangbang: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :bangbang: | {{ radarr['cf']['x265-no-hdrdv']['trash_score'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | - | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | - | [{{ radarr['cf']['no-rlsgroup']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#no-rlsgroup) | {{ radarr['cf']['no-rlsgroup']['trash_score'] }} | {{ radarr['cf']['no-rlsgroup']['trash_id'] }} | - | [{{ radarr['cf']['obfuscated']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#obfuscated) | {{ radarr['cf']['obfuscated']['trash_score'] }} | {{ radarr['cf']['obfuscated']['trash_id'] }} | - | [{{ radarr['cf']['retags']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#retags) | {{ radarr['cf']['retags']['trash_score'] }} | {{ radarr['cf']['retags']['trash_id'] }} | - | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_score'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | - | [{{ radarr['cf']['dv-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-webdl) | ?????? | {{ radarr['cf']['dv-webdl']['trash_id'] }} | - - !!! example "Breakdown and Why" - - - **{{ radarr['cf']['br-disk']['name'] }} :** This is a custom format to help Radarr recognize & ignore BR-DISK (ISO's and Blu-ray folder structure) in addition to the standard BR-DISK quality. - - **{{ radarr['cf']['evo-no-webdl']['name'] }}:** This group is often banned for the low quality Blu-ray releases, but their WEB-DL are okay. - - **{{ radarr['cf']['lq']['name'] }}:** A collection of known Low Quality groups that are often banned from the the top trackers because the lack of quality or other reasons. - - **{{ radarr['cf']['x265-hd']['name'] }}:** This blocks/ignores 720/1080p releases that are encoded in x265 - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :bangbang:" - - - **{{ radarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. - - **but it will allow to exclude/bypass if it has HDR and/or DV** - - *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* - - In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-no-hdrdv']['trash_score'] }}` - - !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :bangbang:" - - - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? - - **{{ radarr['cf']['no-rlsgroup']['name'] }}:** [*Optional*] Some indexers strip out the release group what could result in LQ groups getting a higher score. For example a lot of EVO releases end up stripping the group name, so they appear as "upgrades", and they end up getting a decent score if other things match. - - **{{ radarr['cf']['obfuscated']['name'] }}:** [*Optional*] (use these only if you dislike renamed releases) - - **{{ radarr['cf']['retags']['name'] }}:** [*Optional*] (use these only if you dislike retagged releases) - - **{{ radarr['cf']['bad-dual-groups']['name'] }}:** [*Optional*] These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. - Also they often even rename the release name in to Portuguese. - - **{{ radarr['cf']['dv-webdl']['name'] }}:** This is a special Custom Format that Block WEBDL with Dolby Vision but without HDR10 fallback. - - This Custom Format works together with the normal DV Custom Format that you can use to prefer Dolby Vision. - - Most WEBDL from Streaming Services don't have the fallback to HDR10, What can results in playback issues like weird colors if you want to play it on a not Dolby Vision compatible setup. - - Remuxes and Bluray have a fallback to HDR10. - - !!! hint - `[DV WEBDL]` = This custom format you need to score depending of your personal use and setup. - - - If you only watch your movies on a setup that completely supports Dolby Vision from start to end then give it a score of `0` or just don't add it. - - If you (or family members you share your collection with) have a setup that doesn't support Dolby Vision then you should add this with a score of `{{ radarr['cf']['dv-webdl']['trash_score'] }}`. \ No newline at end of file diff --git a/includes/french-guide/radarr-french-audio-version.md b/includes/french-guide/radarr-french-audio-version.md new file mode 100644 index 000000000..0f3d8c62e --- /dev/null +++ b/includes/french-guide/radarr-french-audio-version.md @@ -0,0 +1,26 @@ +??? summary "Explanation - [CLICK TO EXPAND]" + | Acronyms | French Explanation | English Explanation | + | -------------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------- | + | TRUEFRENCH or VFF | Version Francophone Française (doublage réalisé en France) | Full French version (dubbing done in France) | + | FRENCH or VF[1] | Version Francophone (normalement equivalent à la VFQ) | French version (normally equivalent to VFQ) | + | VOF | Version Originale Française | Original French Version | + | VFI | Version Francophone Internationale | International French Version | + | VFQ | Version Francophone Québécoise | Canadian French Version | + | VQ | Version Québécoise (accent Québécois important, ex: Les Simpsons le film) | Quebec Version (strong Quebec accent, ex: The Simpsons movie) | + | VFB | Version Francophone Belge | Belgian French Version | + | VF[1-9] or FR[1-9] | Indique le nombre de doublage présent (normalement VF2 soit VFF et VFQ) | Indicates the number of dubs present (normally VF2 being VFF and VFQ) | + | VOSTFR[2] | Indique que l'audio est dans la langue originale, avec des sous-titres en français. | Indicates soundtrack in the original language, with French subtitles | + + - *[1] VF is included under the VFF Custom Format as it tend to be often mismatch with VFF instead of VFQ.* + - *[2] It should be noted that SUBFRENCH is included inside this Custom Format. However, SUB often mean that the subtitle was embedded inside the picture (hardcoded). French releases tend to mix both, leading some VOSTFR being labelled as SUBFRENCH and SUBFRENCH as VOSTFR.* + +??? summary "French Audio Versions - [CLICK TO EXPAND]" + | Custom Format | Score | Trash ID | + | -------------------------------------------------------------------------------------------------- | ----- | ----------------------------------------------- | + | [{{ radarr['cf']['french-vff']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vff) | 0 | {{ radarr['cf']['french-vff']['trash_id'] }} | + | [{{ radarr['cf']['french-vof']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vof) | 0 | {{ radarr['cf']['french-vof']['trash_id'] }} | + | [{{ radarr['cf']['french-vfi']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vfi) | 0 | {{ radarr['cf']['french-vfi']['trash_id'] }} | + | [{{ radarr['cf']['french-vfq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vfq) | 0 | {{ radarr['cf']['french-vfq']['trash_id'] }} | + | [{{ radarr['cf']['french-vq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vq) | 0 | {{ radarr['cf']['french-vq']['trash_id'] }} | + | [{{ radarr['cf']['french-vfb']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vfb) | 0 | {{ radarr['cf']['french-vfb']['trash_id'] }} | + | [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) | 0 | {{ radarr['cf']['french-vostfr']['trash_id'] }} | diff --git a/includes/french-guide/radarr-french-multi-audio.md b/includes/french-guide/radarr-french-multi-audio.md new file mode 100644 index 000000000..14a4137b2 --- /dev/null +++ b/includes/french-guide/radarr-french-multi-audio.md @@ -0,0 +1,17 @@ +| Custom Format | Score | Trash ID | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------- | ---------------------------------------------- | +| [{{ radarr['cf']['multi-audio']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi-audio) | {{ radarr['cf']['multi-audio']['trash_score'] }} | {{ radarr['cf']['multi-audio']['trash_id'] }} | +| [{{ radarr['cf']['french-audio']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#french-audio) | {{ radarr['cf']['french-audio']['trash_score'] }} | {{ radarr['cf']['french-audio']['trash_id'] }} | +| [{{ radarr['cf']['multi-french']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi-french) | 0 | {{ radarr['cf']['multi-french']['trash_id'] }} | + +??? summary "Breakdown and Why - [CLICK TO EXPAND]" + + - **{{ radarr['cf']['multi-audio']['name'] }}:** This is a custom format to help Radarr recognise MULTi audio release. + + !!! Info "You can safely replace the original [{{ radarr['cf']['multi']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi) Custom Format from the Guide with it." + + - **{{ radarr['cf']['french-audio']['name'] }}:** This is a custom format to help Radarr recognise release with French audio. It is optional and only give a small boost if the release indeed possess a French audio. + - **{{ radarr['cf']['multi-french']['name'] }}:** This is a custom format that will rename your file with 'Multi-French'. + + **How it works** + When Radarr find a release with 'MULTi' in, it will allocate a {{ radarr['cf']['multi-audio']['trash_score'] }} score on it thanks to the **{{ radarr['cf']['multi-audio']['name'] }}** custom format. If the release indeed possess at least the original audio and French audio, it will be renamed by the **{{ radarr['cf']['multi-french']['name'] }}**. Allowing the release to keep the {{ radarr['cf']['multi-audio']['trash_score'] }} score from the {{ radarr['cf']['multi-audio']['name'] }}. diff --git a/includes/french-guide/radarr-french-unwanted.md b/includes/french-guide/radarr-french-unwanted.md new file mode 100644 index 000000000..fdc2c7aab --- /dev/null +++ b/includes/french-guide/radarr-french-unwanted.md @@ -0,0 +1,57 @@ +??? summary "Unwanted - [CLICK TO EXPAND]" + | Custom Format | Score | Trash ID | + | ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | + | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | + | [{{ radarr['cf']['evo-no-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#evo-no-webdl) | {{ radarr['cf']['evo-no-webdl']['trash_score'] }} | {{ radarr['cf']['evo-no-webdl']['trash_id'] }} | + | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | + | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | + | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ radarr['cf']['x265-no-hdrdv']['trash_score'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | + | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['no-rlsgroup']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#no-rlsgroup) | {{ radarr['cf']['no-rlsgroup']['trash_score'] }} | {{ radarr['cf']['no-rlsgroup']['trash_id'] }} | + | [{{ radarr['cf']['obfuscated']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#obfuscated) | {{ radarr['cf']['obfuscated']['trash_score'] }} | {{ radarr['cf']['obfuscated']['trash_id'] }} | + | [{{ radarr['cf']['retags']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#retags) | {{ radarr['cf']['retags']['trash_score'] }} | {{ radarr['cf']['retags']['trash_id'] }} | + | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_score'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | + | [{{ radarr['cf']['dv-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-webdl) | ?????? | {{ radarr['cf']['dv-webdl']['trash_id'] }} | + | [{{ radarr['cf']['french-lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-lq) | {{ radarr['cf']['french-lq']['trash_score'] }} | {{ radarr['cf']['french-lq']['trash_id'] }} | + + ------ + + Breakdown and Why + + - **{{ radarr['cf']['br-disk']['name'] }} :** This is a custom format to help Radarr recognize & ignore BR-DISK (ISO's and Blu-ray folder structure) in addition to the standard BR-DISK quality. + - **{{ radarr['cf']['evo-no-webdl']['name'] }}:** This group is often banned for the low quality Blu-ray releases, but their WEB-DL are okay. + - **{{ radarr['cf']['lq']['name'] }}:** A collection of known Low Quality groups that are often banned from the the top trackers because the lack of quality or other reasons. + - **{{ radarr['cf']['x265-hd']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + + !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning:" + + - **{{ radarr['cf']['x265-no-hdrdv']['name'] }}:** This blocks/ignores 720/1080p (HD) releases that are encoded in x265. - More info [HERE](/Misc/x265-4k/){:target="_blank" rel="noopener noreferrer"}. + + **but it will allow to exclude/bypass if it has HDR and/or DV** + + *Being that some NF releases won't be released as 4k, but you want to have DV/HDR releases.* + + In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-no-hdrdv']['trash_score'] }}` + + !!! Danger "Don't use this together with the following Custom Format [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning:" + + - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? + - **{{ radarr['cf']['no-rlsgroup']['name'] }}:** [*Optional*] Some indexers strip out the release group what could result in LQ groups getting a higher score. For example a lot of EVO releases end up stripping the group name, so they appear as "upgrades", and they end up getting a decent score if other things match. + - **{{ radarr['cf']['obfuscated']['name'] }}:** [*Optional*] (use these only if you dislike renamed releases) + - **{{ radarr['cf']['retags']['name'] }}:** [*Optional*] (use these only if you dislike retagged releases) + - **{{ radarr['cf']['bad-dual-groups']['name'] }}:** [*Optional*] These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first. + Also they often even rename the release name in to Portuguese. + - **{{ radarr['cf']['dv-webdl']['name'] }}:** This is a special Custom Format that Block WEBDL with Dolby Vision but without HDR10 fallback. + + This Custom Format works together with the normal DV Custom Format that you can use to prefer Dolby Vision. + + Most WEBDL from Streaming Services don't have the fallback to HDR10, What can results in playback issues like weird colors if you want to play it on a not Dolby Vision compatible setup. + + Remuxes and Bluray have a fallback to HDR10. + + !!! hint + `[DV WEBDL]` = This custom format you need to score depending of your personal use and setup. + + - If you only watch your movies on a setup that completely supports Dolby Vision from start to end then give it a score of `0` or just don't add it. + - If you (or family members you share your collection with) have a setup that doesn't support Dolby Vision then you should add this with a score of `{{ radarr['cf']['dv-webdl']['trash_score'] }}`. + - **{{ radarr['cf']['french-lq']['name'] }}:** A collection of known Low Quality French groups that are often banned from the the top trackers because the lack of quality or other reasons. diff --git a/includes/merge-quality/radarr-current-logic.md b/includes/merge-quality/radarr-current-logic.md index e4bfed38e..d74b57aa2 100644 --- a/includes/merge-quality/radarr-current-logic.md +++ b/includes/merge-quality/radarr-current-logic.md @@ -20,4 +20,4 @@ !!! attention "" REPACKS and PROPERs are v2 of Qualities and thus rank above a non-repack of the same quality. - `Settings` => `Media Management` => `File Management` => `Proper & Repacks` Change to `Do Not Prefer` and use the [Repack/Proper Custom Format](/Radarr/Radarr-collection-of-custom-formats/#repack-proper){:target="_blank" rel="noopener noreferrer"} + `Settings` => `Media Management` => `File Management` => `Proper & Repacks` Change to `Do Not Prefer` and use the [Repack/Proper Custom Format](/Radarr/Radarr-collection-of-custom-formats/#repackproper){:target="_blank" rel="noopener noreferrer"} diff --git a/includes/sqp/1-2-cf-scoring.md b/includes/sqp/1-2-cf-scoring.md index 5bcb8d46e..a766a219b 100644 --- a/includes/sqp/1-2-cf-scoring.md +++ b/includes/sqp/1-2-cf-scoring.md @@ -2,7 +2,7 @@ {! include-markdown "../../includes/cf/radarr-audio.md" !} -{! include-markdown "../../includes/cf/radarr-hdr-metadata.md" !} +{! include-markdown "../../includes/cf/radarr-hdr-formats.md" !} {! include-markdown "../../includes/cf/radarr-movie-versions-imaxe.md" !} @@ -10,7 +10,6 @@ | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------- | ------------------------------------------------- | | [{{ radarr['cf']['hq-remux']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-remux) | {{ radarr['cf']['hq-remux']['trash_score'] }} | {{ radarr['cf']['hq-remux']['trash_id'] }} | - | [{{ radarr['cf']['flights-no-imax']['name'] }}](https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/cf/flights-no-imax.json) | {{ radarr['cf']['flights-no-imax']['trash_score'] }} | {{ radarr['cf']['flights-no-imax']['trash_id'] }} | | [{{ radarr['cf']['hq-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq-webdl) | {{ radarr['cf']['hq-webdl']['trash_score'] }} | {{ radarr['cf']['hq-webdl']['trash_id'] }} | | [{{ radarr['cf']['hq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hq) | 0 | {{ radarr['cf']['hq']['trash_id'] }} |