diff --git a/.editorconfig b/.editorconfig index 11bd79db4..a3d044d8c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,9 +3,55 @@ # top-most EditorConfig file root = true -[*.json] +[*] indent_style = space indent_size = 2 +end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true + +[*.{css}] +indent_style = space +indent_size = 2 +end_of_line = lf + +[*.{htm,html}] +indent_style = space +indent_size = 2 +end_of_line = lf + +[*.js] +indent_style = space +indent_size = 2 +end_of_line = lf + +[*.{json,jsonc,webmanifest}] +indent_style = space +indent_size = 2 +end_of_line = lf + +[*.md] +indent_style = space +indent_size = 4 +end_of_line = lf + +[*.py] +indent_style = space +indent_size = 4 +end_of_line = lf + +[*.sh] +indent_style = space +indent_size = 4 +end_of_line = lf + +[*.xml] +indent_style = space +indent_size = 2 +end_of_line = lf + +[*.{yaml,yml}] +indent_style = space +indent_size = 2 +end_of_line = lf diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index 484c8aea5..4b17f8ce3 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -14,22 +14,19 @@ appearance, race, religion, or sexual identity and orientation. Examples of behavior that contributes to creating a positive environment include: -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members Examples of unacceptable behavior by participants include: -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting +- The use of sexualized language or imagery and unwelcome sexual attention or advances +- Trolling, insulting/derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or electronic address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities diff --git a/.github/labeler.yml b/.github/labeler.yml index 04779aa08..23e8ec56b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,39 +1,70 @@ "Area: Bazarr": - changed-files: - - any-glob-to-any-file: ['docs/Bazarr/**'] + - any-glob-to-any-file: ["docs/Bazarr/**"] "Area: Dependencies": - changed-files: - - any-glob-to-any-file: ['package.json', 'package-lock.json'] + - any-glob-to-any-file: ["package.json", "package-lock.json"] "Area: Downloaders": - changed-files: - - any-glob-to-any-file: ['docs/Downloaders/**'] + - any-glob-to-any-file: ["docs/Downloaders/**"] "Area: Plex": - changed-files: - - any-glob-to-any-file: ['docs/Plex/**'] + - any-glob-to-any-file: ["docs/Plex/**"] "Area: Prowlarr": - changed-files: - - any-glob-to-any-file: ['docs/Prowlarr/**'] + - any-glob-to-any-file: ["docs/Prowlarr/**"] "Area: Radarr": - changed-files: - - any-glob-to-any-file: ['docs/json/radarr/cf/**', 'docs/json/radarr/quality-size/**', 'docs/json/radarr/naming/**', 'docs/Radarr/**'] + - any-glob-to-any-file: + [ + "docs/json/radarr/cf/**", + "docs/json/radarr/quality-size/**", + "docs/json/radarr/naming/**", + "docs/Radarr/**", + ] "Area: Recyclarr": - changed-files: - - any-glob-to-any-file: ['docs/recyclarr-configs/**'] + - any-glob-to-any-file: ["docs/recyclarr-configs/**"] "Area: Sonarr": - changed-files: - - any-glob-to-any-file: ['docs/json/sonarr/rp/**', 'docs/json/sonarr/cf/**', 'docs/json/sonarr/quality-size/**', 'docs/json/sonarr/naming/**', 'docs/Sonarr/**'] + - any-glob-to-any-file: + [ + "docs/json/sonarr/rp/**", + "docs/json/sonarr/cf/**", + "docs/json/sonarr/quality-size/**", + "docs/json/sonarr/naming/**", + "docs/Sonarr/**", + ] "Area: Starr Custom Formats": - changed-files: - - any-glob-to-any-file: ['docs/json/radarr/cf/**', 'docs/json/sonarr/cf/**'] + - any-glob-to-any-file: + ["docs/json/radarr/cf/**", "docs/json/sonarr/cf/**"] "Area: Starr Naming": - changed-files: - - any-glob-to-any-file: ['docs/json/radarr/naming/**', 'docs/json/sonarr/naming/**'] + - any-glob-to-any-file: + ["docs/json/radarr/naming/**", "docs/json/sonarr/naming/**"] "Area: github_actions": - changed-files: - - any-glob-to-any-file: ['.github/workflows/**', '.github/dependabot.yml', '.github/labeler.yml', '.github/stale.yml'] + - any-glob-to-any-file: + [ + ".github/workflows/**", + ".github/dependabot.yml", + ".github/labeler.yml", + ".github/stale.yml", + ] "Area: python": - changed-files: - - any-glob-to-any-file: ['**/*.py'] + - any-glob-to-any-file: ["**/*.py"] "Area: Backend": - changed-files: - - any-glob-to-any-file: ['docs/**/*.md', '!docs/Bazarr/**', '!docs/Downloaders/**', '!docs/Plex/**', '!docs/Prowlarr/**', '!docs/Radarr/**', '!docs/recyclarr-configs/**', '!docs/Sonarr/**'] + - any-glob-to-any-file: + [ + "docs/**/*.md", + "!docs/Bazarr/**", + "!docs/Downloaders/**", + "!docs/Plex/**", + "!docs/Prowlarr/**", + "!docs/Radarr/**", + "!docs/recyclarr-configs/**", + "!docs/Sonarr/**", + ] diff --git a/.github/workflows/conflicts.yml b/.github/workflows/conflicts.yml index 744cce081..a19e5f4e3 100644 --- a/.github/workflows/conflicts.yml +++ b/.github/workflows/conflicts.yml @@ -6,7 +6,6 @@ on: - master pull_request: - jobs: triage: runs-on: ubuntu-latest diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e63cee0e3..61e8e9f44 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,9 +6,7 @@ on: - master pull_request: - jobs: - build: name: Build docs runs-on: ubuntu-latest diff --git a/.github/workflows/lint-markdown.yml b/.github/workflows/lint-markdown.yml index 4f33d49b3..7fd4e76de 100644 --- a/.github/workflows/lint-markdown.yml +++ b/.github/workflows/lint-markdown.yml @@ -14,7 +14,7 @@ jobs: - name: markdownlint run: | docker run --rm \ - -v "${GITHUB_WORKSPACE}":/data \ - markdownlint/markdownlint \ - -r ~MD013,~MD033,~MD034,~MD046,~MD002,~MD041 \ + -v "${GITHUB_WORKSPACE}":/workdir \ + ghcr.io/igorshubovych/markdownlint-cli \ + -c "/workdir/.markdownlint.yaml" \ . diff --git a/.gitignore b/.gitignore index 8c03e9676..542a14462 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ -.cache -venv/ -mkdocs-dev-server.bat -site/ -/docs/Notifiarr/preview.bat -/docs/Notifiarr/Integrations/_TEMPLATE.md -/includes/flowcharts/.$radarr-flowchart.drawio.bkp +.cache +venv/ +mkdocs-dev-server.bat +site/ +/docs/Notifiarr/preview.bat +/docs/Notifiarr/Integrations/_TEMPLATE.md +/includes/flowcharts/.$radarr-flowchart.drawio.bkp diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 000000000..ce7ca5211 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,34 @@ +# https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml + +# Default state for all rules +default: true + +# MD002/first-header-h1 : First header should be a top level header : +MD002: false + +# MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md007.md +MD007: false + +# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md013.md +MD013: false + +# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md033.md +MD033: false + +# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md034.md +MD034: false + +# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md041.md +MD041: false + +# MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md046.md +MD046: false + +# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md051.md +MD051: false + +# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md052.md +MD052: false + +# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md053.md +MD053: false diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd0dac9ff..180691ec3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,13 +17,13 @@ These are mostly guidelines, not rules. Use your best judgment, and feel free to We're trying to be as consistent as possible for automation of the changelog. - **feat/xxx** Commits, that adds a new feature -- **fix/xxx** Commits, that fixes a bug/issue +- **fix/xxx** Commits, that fixes a bug/issue - **style/xxx** Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc) - **chore/xxx** Miscellaneous commits (administrative / cleanup / backend) Where 'xxx' can stand for Starr/Sonarr/Radarr/Guide etc -*Examples:* +_Examples:_ - `feat/Starr-ELEANOR-to-Scene-CF` - `feat/Radarr-CiNEPHiLES-to-Remux-Tier-02` @@ -37,13 +37,13 @@ Where 'xxx' can stand for Starr/Sonarr/Radarr/Guide etc We're trying to be as consistent as possible for automation of the changelog. - **feat(xxx):** Commits, that adds a new feature -- **fix(xxx):** Commits, that fixes a bug/issue +- **fix(xxx):** Commits, that fixes a bug/issue - **style(xxx):** Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc) - **chore(xxx):** Miscellaneous commits (administrative / cleanup / backend) Where 'xxx' can stand for Starr/Sonarr/Radarr/Guide etc -*Examples:* +_Examples:_ - `feat(starr): add ELEANOR to Scene CF` - `feat(radarr): add CiNEPHiLES to Remux Tier 02` @@ -72,12 +72,12 @@ When doing a PR that is in-progress and not yet complete / ready for review or n ```json { - "trash_id": "HASHCODE", - "trash_scores": { - "default": 50, - "some_other_profile": 100 - }, - "trash_regex": "https://regex101.com/r/pADWJD/5", + "trash_id": "HASHCODE", + "trash_scores": { + "default": 50, + "some_other_profile": 100 + }, + "trash_regex": "https://regex101.com/r/pADWJD/5", STARRJSONEXPORT } ``` @@ -86,11 +86,9 @@ General Structure - json file name - name of the [json file](#file-naming) - `trash_id` - Generated [HashCode](#hashcode) for the Custom Format -- `trash_scores` - Json object of [score(s) for the Custom Format](#scoring). Note that Custom - Formats with Default Scores of 0 should NOT have a `trash_scores.default` +- `trash_scores` - Json object of [score(s) for the Custom Format](#scoring). Note that Custom Formats with Default Scores of 0 should NOT have a `trash_scores.default` - `trash_regex` - Link to [regex test cases](#regex-test-cases) for regex -- STARRJSONEXPORT - The exported custom format created within Starr. Note that this will have a - leading `{` that will need to have the `trash` specific regex added after +- STARRJSONEXPORT - The exported custom format created within Starr. Note that this will have a leading `{` that will need to have the `trash` specific regex added after ### File Naming @@ -98,10 +96,10 @@ General Structure ### Hashcode -- When adding the hashcode for **Radarr** use the following naming `CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`BR-DISK`](https://md5.gromweb.com/?string=BR-DISK) -- When adding the hashcode for **Radarr Anime** use the following naming `Radarr Anime CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`Radarr Anime BR-DISK`](https://md5.gromweb.com/?string=Radarr+Anime+BR-DISK). +- When adding the hashcode for **Radarr** use the following naming `CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`BR-DISK`](https://md5.gromweb.com/?string=BR-DISK) +- When adding the hashcode for **Radarr Anime** use the following naming `Radarr Anime CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`Radarr Anime BR-DISK`](https://md5.gromweb.com/?string=Radarr+Anime+BR-DISK). - When adding the hashcode for **Sonarr** use the following naming `Sonarr CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`Sonarr BR-DISK`](https://md5.gromweb.com/?string=Sonarr+BR-DISK). -- When adding the hashcode for **Sonarr Anime** use the following naming `Sonarr Anime CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`Sonarr Anime BR-DISK`](https://md5.gromweb.com/?string=Sonarr+Anime+BR-DISK). +- When adding the hashcode for **Sonarr Anime** use the following naming `Sonarr Anime CF_name` e.g. the Custom Format `BR-DISK` would be the hash of [`Sonarr Anime BR-DISK`](https://md5.gromweb.com/?string=Sonarr+Anime+BR-DISK). ### Regex Test Cases @@ -117,7 +115,7 @@ When updating or adding a new CF the test case url (`trash_regex`) needs to be p ```json { - "trash_regex": "https://regex101.com/r/pADWJD/5", + "trash_regex": "https://regex101.com/r/pADWJD/5" } ``` @@ -127,10 +125,10 @@ When updating or adding a new CF the test case url (`trash_regex`) needs to be p ```json { - "trash_scores": { - "default": 50, - "some_other_profile": 100 - }, + "trash_scores": { + "default": 50, + "some_other_profile": 100 + } } ``` @@ -155,8 +153,7 @@ based on the `.vscode/extensions.json` file; you should install all of them. These prerequisites are taken from the [mkdocs installation instructions][mkdocinstall]. - Install a recent version of [Python 3](https://www.python.org/). -- `pip` is also required, but should come with Python. Run `pip --version` to check if its available - and working. See the [installation instructions](https://pip.pypa.io/en/stable/installation/). +- `pip` is also required, but should come with Python. Run `pip --version` to check if its available and working. See the [installation instructions](https://pip.pypa.io/en/stable/installation/). [mkdocinstall]: https://www.mkdocs.org/user-guide/installation/ diff --git a/docs/.pages b/docs/.pages index fd2c79f68..2daceaa80 100644 --- a/docs/.pages +++ b/docs/.pages @@ -1,12 +1,12 @@ nav: - - Home: index.md - - Radarr - - Sonarr - - Prowlarr - - Bazarr - - Downloaders - - Plex - - Guide-Sync - - Misc - - Hardlinks - - How-to-setup-for: Hardlinks/How-to-setup-for + - Home: index.md + - Radarr + - Sonarr + - Prowlarr + - Bazarr + - Downloaders + - Plex + - Guide-Sync + - Misc + - Hardlinks + - How-to-setup-for: Hardlinks/How-to-setup-for diff --git a/docs/Bazarr/.pages b/docs/Bazarr/.pages index 16f3360c0..3725fba6e 100644 --- a/docs/Bazarr/.pages +++ b/docs/Bazarr/.pages @@ -1,6 +1,6 @@ nav: - - Home: index.md - - Basic-Guide: Setup-Guide.md - - After Install Configuration: After-install-configuration.md - - Scripts: /Bazarr/scripts/ - - Tips \ No newline at end of file + - Home: index.md + - Basic-Guide: Setup-Guide.md + - After Install Configuration: After-install-configuration.md + - Scripts: /Bazarr/scripts/ + - Tips diff --git a/docs/Bazarr/After-install-configuration.md b/docs/Bazarr/After-install-configuration.md index 2460adbb9..915614d24 100644 --- a/docs/Bazarr/After-install-configuration.md +++ b/docs/Bazarr/After-install-configuration.md @@ -1,9 +1,9 @@ - # After Install Configuration After you've installed everything it's best to check all of your settings, !!! warning + Bazarr only searches for subs for Episodes and Movies that are added after the install. So you will need to set the preferred languages for your existing Shows and Movies. diff --git a/docs/Bazarr/Setup-Guide.md b/docs/Bazarr/Setup-Guide.md index 17227ec74..31bb78b20 100644 --- a/docs/Bazarr/Setup-Guide.md +++ b/docs/Bazarr/Setup-Guide.md @@ -33,7 +33,7 @@ Click on `Enabled` **Be aware that when using Bazarr in docker, you cannot reach another container on the same Docker host using the loopback address (ex.: 127.0.0.1 or localhost). Loopback address refers to the Bazarr Docker container, not the Docker host.** 1. Enter the TCP port of your Sonarr instance. Default is 8989. -1. Sonarr uses the Base URL *ONLY* if used with a "Reverse Proxy" (ex: Nginx Proxy Manager or SWAG) and MUST have a leading slash if it is needed (ex: /sonarr). +1. Sonarr uses the Base URL _ONLY_ if used with a "Reverse Proxy" (ex: Nginx Proxy Manager or SWAG) and MUST have a leading slash if it is needed (ex: /sonarr). !!! info @@ -125,7 +125,7 @@ Click on `Enabled` **Be aware that when using Bazarr in docker, you cannot reach another container on the same Docker host using the loopback address (ex.: 127.0.0.1 or localhost). Loopback address refers to the Bazarr Docker container, not the Docker host.** 1. Enter the TCP port of your Radarr instance. Default is 7878. -1. Radarr uses the Base URL *ONLY* if used with a "Reverse Proxy" (ex: Nginx Proxy Manager or SWAG) and MUST have a leading slash if it is needed (ex: /radarr). +1. Radarr uses the Base URL _ONLY_ if used with a "Reverse Proxy" (ex: Nginx Proxy Manager or SWAG) and MUST have a leading slash if it is needed (ex: /radarr). !!! info @@ -224,7 +224,7 @@ Select `Add New Profile` 1. How you want to name your language profile. 1. Click on `Add` to add the languages you enabled earlier in [Subtitle Language](#subtitles-language). 1. Select the languages you want to enable for your profile (Including the optional settings). - - Forced => [FAQ - What are Forced Subtitles](https://wiki.bazarr.media/Troubleshooting/FAQ/#what-are-forced-subtitles){:target="_blank" rel="noopener noreferrer"} + - Forced => [FAQ - What are Forced Subtitles](https://wiki.bazarr.media/Troubleshooting/FAQ/#what-are-forced-subtitles){:target="\_blank" rel="noopener noreferrer"} - HI => Hearing Impaired - Exclude Audio => Exclude if matching audio 1. Optional select the cutoff where you want Bazarr to stop downloading other languages. @@ -297,7 +297,7 @@ Here we will configure some extra settings for your subtitles Here you can select which Anti-Captcha provider you want to use. -[Why (or) do I need the Anti-Captcha ?](https://wiki.bazarr.media/Troubleshooting/FAQ/#why-or-do-i-need-the-anti-captcha){:target="_blank" rel="noopener noreferrer"} +[Why (or) do I need the Anti-Captcha ?](https://wiki.bazarr.media/Troubleshooting/FAQ/#why-or-do-i-need-the-anti-captcha){:target="\_blank" rel="noopener noreferrer"} !!! tip @@ -309,7 +309,7 @@ Here you can select which Anti-Captcha provider you want to use. 1. When searching for subtitles, Bazarr will search less frequently to limit calls to providers. 1. Search multiple providers at once (Don't choose this on low powered devices). -1. If you want to use the embedded subtitles in the media files [More Info](https://wiki.bazarr.media/Additional-Configuration/Settings/#use-embedded-subtitles){:target="_blank" rel="noopener noreferrer"} +1. If you want to use the embedded subtitles in the media files [More Info](https://wiki.bazarr.media/Additional-Configuration/Settings/#use-embedded-subtitles){:target="\_blank" rel="noopener noreferrer"} ### Automatic Subtitles Synchronization @@ -320,6 +320,7 @@ Enable this option for automatic subtitles synchronization. !!! danger "Don't forget to save your settings!!!" ![Save](images/qs-save.png) + --- Now wait until Bazarr gets all the info needed from Sonarr/Radarr. @@ -332,5 +333,5 @@ Now wait until Bazarr gets all the info needed from Sonarr/Radarr. --- -If you still have questions please check the [Troubleshooting](https://wiki.bazarr.media/Troubleshooting/Asking-for-help-or-report-a-problem/){:target="_blank" rel="noopener noreferrer"} section in the wiki. -For more info about the other settings check the [Settings](https://wiki.bazarr.media/Additional-Configuration/Settings/){:target="_blank" rel="noopener noreferrer"} wiki. +If you still have questions please check the [Troubleshooting](https://wiki.bazarr.media/Troubleshooting/Asking-for-help-or-report-a-problem/){:target="\_blank" rel="noopener noreferrer"} section in the wiki. +For more info about the other settings check the [Settings](https://wiki.bazarr.media/Additional-Configuration/Settings/){:target="\_blank" rel="noopener noreferrer"} wiki. diff --git a/docs/Bazarr/Tips/Bazarr-suggested-scoring.md b/docs/Bazarr/Tips/Bazarr-suggested-scoring.md index 83c5e359a..7856be3d7 100644 --- a/docs/Bazarr/Tips/Bazarr-suggested-scoring.md +++ b/docs/Bazarr/Tips/Bazarr-suggested-scoring.md @@ -1,6 +1,6 @@ # Suggested Scoring -You just setup Bazarr and wonder which scoring you should use/setup for your subtitles and sync ? +You just setup Bazarr and wonder which scoring you should use/setup for your subtitles and sync ? I'll going to suggest here a scoring what would work for most common languages, with this scoring 99% of your downloaded subs should be the correct ones for your release. @@ -40,6 +40,7 @@ This score is the minimal score that the subs should match to for your release, This will set the Synchronization Score Threshold, meaning at which score bazarr will sync the subtitles. !!! info + The synchronization is best effort based on the following. - it use the embedded subtitles track as reference, if not present. @@ -52,4 +53,3 @@ This will set the Synchronization Score Threshold, meaning at which score bazarr I personally noticed that when setting it to high 98-100 I would actually get subs that are like 1 second to slow/fast. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Bazarr/index.md b/docs/Bazarr/index.md index 13a3e09e3..2b36e5aa9 100644 --- a/docs/Bazarr/index.md +++ b/docs/Bazarr/index.md @@ -9,7 +9,7 @@ Here you will find several scripts you can use with Bazarr - (stable) - Builds Pushed after a testing period in development - Github Branch: master -- Docker: [hotio/bazarr:latest](https://hotio.dev/containers/bazarr/){:target="_blank" rel="noopener noreferrer"} +- Docker: [hotio/bazarr:latest](https://hotio.dev/containers/bazarr/){:target="\_blank" rel="noopener noreferrer"} ```bash hotio/bazarr:latest @@ -22,7 +22,7 @@ hotio/bazarr:latest - (development) - Builds pushed when complete - Github Branch: development -- Docker: [hotio/bazarr:nightly](https://hotio.dev/containers/bazarr/){:target="_blank" rel="noopener noreferrer"} +- Docker: [hotio/bazarr:nightly](https://hotio.dev/containers/bazarr/){:target="\_blank" rel="noopener noreferrer"} ```bash hotio/bazarr:nightly diff --git a/docs/Bazarr/scripts/index.md b/docs/Bazarr/scripts/index.md index 2362d8fce..a691aeb92 100644 --- a/docs/Bazarr/scripts/index.md +++ b/docs/Bazarr/scripts/index.md @@ -1,6 +1,7 @@ # Bazarr Scripts !!! note "" + Here you will find a collection of Scripts you can use with Bazarr. Most of them are provided by other users, if you got a script you want to share don't hesitate to create a [PR](https://github.com/TRaSH-Guides/Guides/blob/master/CONTRIBUTING.md) for it diff --git a/docs/Downloaders/.pages b/docs/Downloaders/.pages index 0ef29032d..159119ec7 100644 --- a/docs/Downloaders/.pages +++ b/docs/Downloaders/.pages @@ -1,7 +1,7 @@ nav: - - Home: index.md - - NZBGet - - SABnzbd - - qBittorrent - - Deluge - - ruTorrent + - Home: index.md + - NZBGet + - SABnzbd + - qBittorrent + - Deluge + - ruTorrent diff --git a/docs/Downloaders/Deluge/Basic-Setup.md b/docs/Downloaders/Deluge/Basic-Setup.md index 52ed67c7a..0d4769244 100644 --- a/docs/Downloaders/Deluge/Basic-Setup.md +++ b/docs/Downloaders/Deluge/Basic-Setup.md @@ -1,13 +1,14 @@ # Basic-Setup {! include-markdown "../../../includes/downloaders/basic-setup.md" !} - ------- +--- + !!! Note + Settings that aren't covered means you can change them to your liking or just leave them on default. ------- +--- ## Accessing your settings @@ -28,6 +29,7 @@ Once you are here, you can edit your download settings in the `Downloads` sectio Copy (and delete upon removal) of the .torrent file upon completion. !!! success "" + **Suggested: `Personal preference`** ### Pre-allocated Files @@ -35,20 +37,23 @@ Copy (and delete upon removal) of the .torrent file upon completion. Pre-allocate disk space for the added torrents. This limits fragmentation and also makes sure if you use a cache drive or a feeder disk, that the space is available. !!! success "" + **Suggested: `Enabled`** !!! warning - Do not set Pre-allocated disk space if you are using ZFS as your filesystem as ZFS [does not support fallocate](https://github.com/openzfs/zfs/issues/326){:target="_blank" rel="noopener noreferrer"} + + Do not set Pre-allocated disk space if you are using ZFS as your filesystem as ZFS [does not support fallocate](https://github.com/openzfs/zfs/issues/326){:target="\_blank" rel="noopener noreferrer"} {! include-markdown "../../../includes/downloaders/warning-path-location.md" !} ------- +--- ## Bandwidth Here you can set your rate limits, meaning your maximum download/upload/connections. !!! info + In Deluge, the value of `-1` is used for "infinity" or "unlimited". ![!Bandwidth Settings](images/Deluge-bandwidth-settings.png) @@ -60,6 +65,7 @@ The best settings depend on many factors. - Bandwidth needed by other services in your home network. !!! success "" + **Suggested:** `For a home connection that you use with others it's best practice to set the upload/download rate to about 70-80% of your maximum upload/download speed.` ## Global Bandwidth Limits @@ -84,13 +90,14 @@ In addition to global limits, you can set limits per torrent. ![!Per-Torrent Bandwidth Settings](images/Deluge-torrentbw-settings.png) ------- +--- ## Queue These settings are intended to manage your number of active seeds, downloads, and uploads. !!! info + In Deluge, the value of `-1` is used for "infinity" or "unlimited". ### Active Torrents @@ -105,7 +112,7 @@ Unless you have a specific reason, `Total` can be set to `-1`. These are torrent I recommend using the seeding goals in your Starr Apps indexer settings (enable advanced) to remove completed downloads. These sections are then not necessary. ------- +--- ## Network @@ -116,16 +123,19 @@ This is where you will bind Deluge to a specific interface/address, specify port ### Incoming Port !!! info "" - You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded. + + You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="\_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded. `Incoming Port` should be set to a specific port that you have opened/forwarded (if you are behind any NAT/Firewall/VPN.) !!! WARNING + Default ports of 6880-6890 are not recommended. Make sure you click `Test Active Port` and get a ✓ before moving on. !!! success "" + **Suggested: `Critical`** ### Encryption @@ -133,6 +143,7 @@ Make sure you click `Test Active Port` and get a ✓ before moving on. Encryption should be enabled on both `Incoming` and `Outgoing`. The default `Level` of `Either` will accept both encrypted and standard connections. !!! success "" + **Suggested: `Level = Full Stream`** ### Network Extras @@ -140,6 +151,7 @@ Encryption should be enabled on both `Incoming` and `Outgoing`. The default `Lev You can configure your network protocols in this section. Depending on which type of tracker you use, some of these will be beneficial while on other trackers (private) it will put you at risk of being banned/disabled. !!! warning + Please read this section carefully. 1. UPnP and NAT-PMP should be both disabled in your router, as well as in Deluge, as they can pose security risks. @@ -147,6 +159,7 @@ You can configure your network protocols in this section. Depending on which typ ![!Network UPNP](images/Deluge-network-extras-upnp.png) !!! success "" + **Suggested: `Disabled`** 1. Public trackers can benefit from having settings like DHT (Distributed Hash Table) and Peer Exchange (PEX) enabled. These protocols rely on sources besides the trackers to get peers. **The following settings are recommended ONLY for public trackers.** @@ -154,6 +167,7 @@ You can configure your network protocols in this section. Depending on which typ ![!Network Extras (Public)](images/Deluge-network-extras-public.png) !!! success "" + **Suggested: `Recommended`** 1. Decent private trackers will use the "private flag" and ignore these settings by default. However, it is strongly recommended that you use the following settings if you use private trackers. Almost all private trackers have rules stating that you must disable DHT, PEX, and LSD/LPD (Local Peer Discovery). Failing to do so puts your account at risk of being disabled. @@ -161,9 +175,10 @@ You can configure your network protocols in this section. Depending on which typ ![!Network Extras (Public)](images/Deluge-network-extras.png) !!! success "" + **Suggested: `Disabled`** ------- +--- ## Plugins @@ -172,9 +187,11 @@ Finally, you will want to enable some plugins. There are plenty of plugins on th ![!Plugin Settings](images/Deluge-plugin-settings.png) !!! tip + If you are familiar with the client and plugins you can find more information [here](./Tips/Plugins.md) !!! info + If you are running a docker container, such as binhex's image, the `WebUI` plugin may not need to be enabled. Instead, it may be configured in the container. ### WebUI @@ -182,6 +199,7 @@ Finally, you will want to enable some plugins. There are plenty of plugins on th Once you have enabled the `WebUI` plugin, it will appear in your `Preferences` menu list, and you will need to enable the web interface and set the port you want the WebUI to listen on. !!! info + The default WebUI password is `deluge` and you can change that in preferences inside the WebUI once you access it through your browser. Remember your password, we will need this later. @@ -193,4 +211,3 @@ The `Label` plugin will allow you to categorize/sort your torrents. You can assi Labels are a valuable tool, if used properly, to keep your torrents managed and organized. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/Deluge/Port-Forwarding.md b/docs/Downloaders/Deluge/Port-Forwarding.md index 509f1b93a..fcdf64395 100644 --- a/docs/Downloaders/Deluge/Port-Forwarding.md +++ b/docs/Downloaders/Deluge/Port-Forwarding.md @@ -7,17 +7,19 @@ The `Network` section of `Preferences` is where you will bind Deluge to a specif ## Incoming Port !!! info "" - You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've forwarded. + + You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="\_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've forwarded. `Incoming Port` should be set to a specific port that you have opened/forwarded (if you are behind any NAT/Firewall/VPN.) !!! WARNING + Default ports of 6880-6890 are not recommended. Make sure you click `Test Active Port` and get a ✓ before moving on. !!! success "" + **Suggested: `Critical`** {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/Deluge/Tips/Plugins.md b/docs/Downloaders/Deluge/Tips/Plugins.md index c55708578..5fb5c043c 100644 --- a/docs/Downloaders/Deluge/Tips/Plugins.md +++ b/docs/Downloaders/Deluge/Tips/Plugins.md @@ -3,9 +3,11 @@ Here you will find a list of included and available plugins that may be useful. These are not required but should be seen as ways to advance/customize your setup once you understand the client and its behaviors. !!! info + All plugins are .egg files, these files will need to be placed inside your deluge config/data directory, inside the `plugins` folder. If you are using a thin client, they will also need to be present on your local instance as well. !!! tip + Links to the plugins below are directly to the latest versions available on Deluge's forums, see the original and subsequent posts for more information concerning the plugin's features and iterations. --- @@ -41,6 +43,7 @@ Use at your own discretion. Execute will run a program or script upon reaching a specified event. It is recommended that after adding events, you restart Deluge. !!! info + Checking or Rechecking a torrent will not trigger the "Torrent Completed" event, you will need to actually download the torrent to trigger this. --- @@ -92,11 +95,13 @@ Other forks, and the original plugin, can be found on the GitHub page. If you need to set libtorrent settings to anything other than their defaults, this is the plugin for you. There are presets, but you can fine-tune the settings as you need as well. !!! ATTENTION + There is a known bug when trying to enable settings in ltConfig, double-clicking will sometimes not "check" the option. Simply click the option, then use the space bar to enable that checkbox. !!! tips + If you want to seed over 1600 torrents, you will need this plugin. You will need to increase the active_tracker_limit. If your tracker's SSL certificate has expired, you can disable validate_https_trackers to bypass validation. @@ -106,5 +111,3 @@ See the forum thread for details below. [ltConfig](https://forum.deluge-torrent.org/viewtopic.php?p=235653#p235653){:target="\_blank" rel="noopener noreferrer"} {! include-markdown "../../../../includes/support.md" !} - - diff --git a/docs/Downloaders/Deluge/Tips/Thin-Client.md b/docs/Downloaders/Deluge/Tips/Thin-Client.md index b4d41bea8..f56bbe38d 100644 --- a/docs/Downloaders/Deluge/Tips/Thin-Client.md +++ b/docs/Downloaders/Deluge/Tips/Thin-Client.md @@ -5,6 +5,7 @@ If you are already running Deluge in `daemon` or `console` mode, or running via Docker, this is usually enabled by default. You will need to check your compose or core.conf for the "daemon_port" if you do not know it. !!! tip + You can also access the daemon settings in `Preferences` in the WebUI if you do not have access to the GTK/UI You will need to have "Allow Remote Connections" enabled if you are not connecting to Deluge from localhost. @@ -12,11 +13,12 @@ You will need to have "Allow Remote Connections" enabled if you are not connecti ![!Daemon Settings](../images/Deluge-tc-daemon.png) !!! info - If you do not have access to the WebUI, and are instead doing this by editing Deluge's `core.conf`, you will need to change "allow_remote" to true. - Restart Deluge for the changes to take effect. + If you do not have access to the WebUI, and are instead doing this by editing Deluge's `core.conf`, you will need to change "allow_remote" to true. + + Restart Deluge for the changes to take effect. ------- +--- ## Switching to Thin-Client @@ -29,7 +31,8 @@ Simply go to `Edit` => `Preferences` and switch from `Standalone` to `Thin Clien Restart Deluge. !!! info - You will still need to set the daemon to run at start-up. + + You will still need to set the daemon to run at start-up. ### Connections Manager @@ -38,11 +41,13 @@ After switching to `Thin Client` you will need to connect to your daemon. Go to ![!Label Options](../images/Deluge-tc-connman.png) !!! ATTENTION + If you mistyped your password while adding the connection, it will prompt you to enter it. There is a bug that does not accept/save the correct password unless it is entered through the `Add`/`Edit` Menu. If you mistype the password while you are adding the connection, go to `Edit` on the connection and retype the password into the password field. !!! WARNING + You can find your users and passwords for the daemon in the `auth` file inside your appdata/config folder for Deluge. You can add users in the `Daemon` settings in preferences as well. @@ -50,5 +55,3 @@ After switching to `Thin Client` you will need to connect to your daemon. Go to BE AWARE: These passwords are stored in PLAIN-TEXT in your `auth` file. {! include-markdown "../../../../includes/support.md" !} - - diff --git a/docs/Downloaders/Deluge/Tips/Unraid-Mover.md b/docs/Downloaders/Deluge/Tips/Unraid-Mover.md index 40e184247..d3966d7f6 100644 --- a/docs/Downloaders/Deluge/Tips/Unraid-Mover.md +++ b/docs/Downloaders/Deluge/Tips/Unraid-Mover.md @@ -23,9 +23,9 @@ Using the following instructions will allow you to move the files with the use o Download the following standalone Python script. -- [Script (deluge-mover.py)](https://raw.githubusercontent.com/zakkarry/deluge-mover/master/deluge-mover.py){:target="_blank" rel="noopener noreferrer"} +- [Script (deluge-mover.py)](https://raw.githubusercontent.com/zakkarry/deluge-mover/master/deluge-mover.py){:target="\_blank" rel="noopener noreferrer"} -Thanks to [zakary](https://github.com/zakkarry){:target="_blank" rel="noopener noreferrer"} (Developer on [cross-seed](https://github.com/cross-seed/cross-seed){:target="_blank" rel="noopener noreferrer"}) +Thanks to [zakary](https://github.com/zakkarry){:target="\_blank" rel="noopener noreferrer"} (Developer on [cross-seed](https://github.com/cross-seed/cross-seed){:target="\_blank" rel="noopener noreferrer"}) ### Plugins @@ -33,13 +33,13 @@ Install the following Plugins. - User Scripts - NerdTools - - python3 (*1*) - - python-setuptools (*1*) - - python-pip (*1*) + - python3 (_1_) + - python-setuptools (_1_) + - python-pip (_1_) -!!! info "(*1*) These need to be installed from NerdTools." +!!! info "(_1_) These need to be installed from NerdTools." ------- +--- ## Setup @@ -52,6 +52,7 @@ After you install the needed `Plugins` - it's time to configure everything. You can choose one of the following 3 options (select a tab) to install `requests`. === "User scripts" + With this option, we're going to install the `requests` module when the Array is started the first time. In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom. @@ -86,7 +87,9 @@ You can choose one of the following 3 options (select a tab) to install `request Click on `Apply`. Finally, you will need to choose `RUN IN BACKGROUND` or restart your unRAID server to install the `requests` module. + === "Python venv" + With this option, we're going to create a [Python virtual environment](https://docs.python.org/3/library/venv.html) on our disk. We will use this to run and store dependencies (`requests`) for this specific environment. By doing this, we will **only need to configure this once** and it will be persistent after reboots *(this differs from the previous steps)*. @@ -94,6 +97,7 @@ You can choose one of the following 3 options (select a tab) to install `request First, you need to choose a location to start a new Python environment. !!! info + In the next steps, you will be asked to choose a [location to store the script](#copy-the-script-to-your-preferred-location), try to be consistent. Suggestions: @@ -116,8 +120,11 @@ You can choose one of the following 3 options (select a tab) to install `request ``` !!! info + Replace `/mnt/user/data/scripts/.venv` with the path you have chosen. + === "Go File" + With this option, we're going to install the `requests` module when the unRAID server is started. On your USB stick/key go to `/boot/config` and open the `go` file with your text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}). @@ -130,11 +137,11 @@ You can choose one of the following 3 options (select a tab) to install `request Restart your unRAID Server or run the above command from the terminal. ------- +--- ### Script -Now, using your favorite text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}) edit the script you downloaded at the beginning of the guide ([HERE](#deluge-mover-script)). +Now, using your favorite text editor ([VSCode](https://code.visualstudio.com/){:target="\_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="\_blank" rel="noopener noreferrer"}) edit the script you downloaded at the beginning of the guide ([HERE](#deluge-mover-script)). You only need to change a few options at the top of the script. @@ -177,12 +184,13 @@ age_day_min = 3 age_day_max = 0 ``` -- `deluge_webui` => The URL you use to access Deluge locally. (*the* `"` *should remain*) -- `deluge_password` => Your Deluge WebUI `Password`. (*the* `"` *should remain*) +- `deluge_webui` => The URL you use to access Deluge locally. (_the_ `"` _should remain_) +- `deluge_password` => Your Deluge WebUI `Password`. (_the_ `"` _should remain_) - `check_fs` => If set to `True`, it will check for the file on the cache drive before pausing. - `use_mover_old` => See below. !!! warning "" + - If you do not use `Mover Tuning`, you **DO NOT** have to make any changes. - If you use `Mover Tuning` but **DON'T** want to use it for the script, change this to `True` - If you use `Mover Tuning` and **DO** want to use it for the script, you will not have to make any changes. However, for this option, inside the `Mover Tuner` you will need to set `Move Now button follows plugin filters` to `Yes` and `Disable Mover running on a schedule` to `No`. @@ -244,6 +252,7 @@ Choose your method (select a tab) and copy/paste the script in the new window th ``` !!! info + Replace `/mnt/user/data/scripts/` in the script with the path you have chosen for the Python script. ![!Bash script](images/Unraid-settings-user-scripts-deluge-mover.png) diff --git a/docs/Downloaders/Deluge/Using-Labels.md b/docs/Downloaders/Deluge/Using-Labels.md index 6da775b37..36f1d5dba 100644 --- a/docs/Downloaders/Deluge/Using-Labels.md +++ b/docs/Downloaders/Deluge/Using-Labels.md @@ -3,6 +3,7 @@ ## Labels !!! info + Labels are the equivalent of categories for qBittorrent, and how you can manage and organize your torrents in groups. Starr apps can use labels in Deluge to keep track of downloads to monitor, rather than watching every torrent in your client. ### Managing Labels @@ -16,6 +17,7 @@ Once you have [enabled the `Label` plugin](./Basic-Setup.md#plugins), you simply Each label can be customized by selecting the label, right-clicking, and going to its `Label Options`. Here you can specify the bandwidth settings, download location settings, and even seed goals. !!! info + In Deluge, the value of `-1` is used for "infinity" or "unlimited". Below you see an example of the bandwidth options available for a specific label. These settings will be automatically applied as long as a torrent has this label. @@ -27,9 +29,9 @@ If you want torrents to be moved upon completion to a specific folder, you can s ![!Label Folders](images/Deluge-label-folders.png) !!! info + Enabling a "Move completed to" for a label may require you to restart Deluge before it will take effect. Rechecking torrents will not trigger the "completion" call. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/Deluge/index.md b/docs/Downloaders/Deluge/index.md index d04f3a51f..12e64c1aa 100644 --- a/docs/Downloaders/Deluge/index.md +++ b/docs/Downloaders/Deluge/index.md @@ -4,7 +4,7 @@ Deluge is an open-source cross-platform torrent client written in Python. It has been around since 2006 and offers many features that, while niche, many consider to be critical to their setups. ------- +--- ## Installation @@ -15,6 +15,7 @@ Information sourced mostly from [Deluge's Downloads Page](https://dev.deluge-tor You can find the latest Windows installers [here](https://ftp.osuosl.org/pub/deluge/windows/?C=M;O=D) !!! note + `lt2.0` in the filename means the installer includes libtorrent 2.0.x instead of the older 1.2.x ### Linux (Native) @@ -32,9 +33,11 @@ Using `pip3` to install (included in the Python package) pip3 install deluge !!! info + You can find this project's pip repo @ [pypi.org/project/deluge/](https://pypi.org/project/deluge/) !!! Advanced + If you want to install deluged as a service, documentation can be found [here](https://deluge.readthedocs.io/en/latest/how-to/systemd-service.html) ### Docker Containers @@ -46,4 +49,3 @@ Using `pip3` to install (included in the Python package) [BinHex VPN](https://hub.docker.com/r/binhex/arch-delugevpn) {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/NZBGet/.pages b/docs/Downloaders/NZBGet/.pages index ab65d0ac7..d57b1cadd 100644 --- a/docs/Downloaders/NZBGet/.pages +++ b/docs/Downloaders/NZBGet/.pages @@ -1,4 +1,4 @@ nav: - - Basic-Setup: Basic-Setup.md - - Path and Categories: Paths-and-Categories.md - - Scripts: /Downloaders/NZBGet/scripts/ \ No newline at end of file + - Basic-Setup: Basic-Setup.md + - Path and Categories: Paths-and-Categories.md + - Scripts: /Downloaders/NZBGet/scripts/ diff --git a/docs/Downloaders/NZBGet/Basic-Setup.md b/docs/Downloaders/NZBGet/Basic-Setup.md index 24cbff7df..dcf7c25c2 100644 --- a/docs/Downloaders/NZBGet/Basic-Setup.md +++ b/docs/Downloaders/NZBGet/Basic-Setup.md @@ -3,9 +3,8 @@ !!! danger "NZBGet development has been officially abandoned by the developer :bangbang:" {! include-markdown "../../../includes/downloaders/basic-setup.md" !} - ------- +--- ## Some Basics @@ -63,6 +62,7 @@ I will only explain the so called most important paths. ![!incoming](images/incoming.png) !!! info + `AppendCategoryDir`: Create subdirectory with category-name in destination-directory. ## DOWNLOAD QUEUE @@ -70,6 +70,7 @@ I will only explain the so called most important paths. ![!queue](images/queue.png) !!! warning + `WriteBuffer`: If you're low on memory don't set this to high. ## LOGGING @@ -85,6 +86,7 @@ I will only explain the so called most important paths. ![!unpack](images/unpack.png) !!! info + `DirectUnpack`: This might lower your download speed but the overall time could be faster. (disable on low powered devices) ## EXTENSION SCRIPTS @@ -93,7 +95,7 @@ I will only explain the so called most important paths. Depending if you're using some NZBGet script here you can change the order or when it should be used ------- +--- ## Recommended Sonarr/Radarr Settings @@ -127,4 +129,3 @@ Being that Sonarr/Radarr only looks at the last xx amount in the queue/history. and both boxes under `Failed Download Handling` at step 4. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/NZBGet/Paths-and-Categories.md b/docs/Downloaders/NZBGet/Paths-and-Categories.md index 2f16d23b8..2db451a45 100644 --- a/docs/Downloaders/NZBGet/Paths-and-Categories.md +++ b/docs/Downloaders/NZBGet/Paths-and-Categories.md @@ -3,7 +3,6 @@ !!! danger "NZBGet development has been officially abandoned by the developer :bangbang:" {! include-markdown "../../../includes/downloaders/path.md" !} - --- @@ -16,7 +15,5 @@ ![nzbget-settings-categories](/Hardlinks/images/nzbget-settings-categories.png) {! include-markdown "../../../includes/downloaders/warning-path-location.md" !} - {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/NZBGet/scripts/Clean/Clean.py b/docs/Downloaders/NZBGet/scripts/Clean/Clean.py index ccbf82780..d5ea3242b 100644 --- a/docs/Downloaders/NZBGet/scripts/Clean/Clean.py +++ b/docs/Downloaders/NZBGet/scripts/Clean/Clean.py @@ -18,44 +18,44 @@ from __future__ import print_function import os, re, sys # Exit codes used by NZBGet -POSTPROCESS_SUCCESS=93 -POSTPROCESS_ERROR=94 -POSTPROCESS_SKIP=95 +POSTPROCESS_SUCCESS = 93 +POSTPROCESS_ERROR = 94 +POSTPROCESS_SKIP = 95 # Check if the script is called from NZBGet 13.0 or later -if not 'NZBOP_SCRIPTDIR' in os.environ: - print('*** NZBGet post-processing script ***') - print('This script is supposed to be called from NZBGet (13.0 or later).') - sys.exit(POSTPROCESS_ERROR) - -if not 'NZBNP_NZBNAME' in os.environ: - print('[WARN] Filename not found in environment') - sys.exit(POSTPROCESS_ERROR) - -fwp = os.environ['NZBNP_NZBNAME'] -fwp = re.sub('(?i)-4P\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-4Planet\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-AsRequested\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-AsRequested-xpost\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-BUYMORE\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-Chamele0n\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-GEROV\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-iNC0GNiTO\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-NZBGeek\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-Obfuscated\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-postbot\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-Rakuv\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-Scrambled\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-WhiteRev\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-xpost\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)\[eztv([ ._-]re)?\]\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)\[TGx\]\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)\[TGx\]-xpost\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)\[ettv\]\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-WRTEAM\.nzb$', '.nzb', fwp) -fwp = re.sub('(?i)-CAPTCHA\.nzb$', '.nzb', fwp) -fwp = re.sub(r'(\-[^-.\n]*)(\-.{4})?\.nzb$', r'\1.nzb', fwp) +if not "NZBOP_SCRIPTDIR" in os.environ: + print("*** NZBGet post-processing script ***") + print("This script is supposed to be called from NZBGet (13.0 or later).") + sys.exit(POSTPROCESS_ERROR) + +if not "NZBNP_NZBNAME" in os.environ: + print("[WARN] Filename not found in environment") + sys.exit(POSTPROCESS_ERROR) + +fwp = os.environ["NZBNP_NZBNAME"] +fwp = re.sub("(?i)-4P\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-4Planet\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-AsRequested\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-AsRequested-xpost\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-BUYMORE\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-Chamele0n\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-GEROV\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-iNC0GNiTO\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-NZBGeek\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-Obfuscated\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-postbot\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-Rakuv\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-Scrambled\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-WhiteRev\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-xpost\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)\[eztv([ ._-]re)?\]\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)\[TGx\]\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)\[TGx\]-xpost\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)\[ettv\]\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-WRTEAM\.nzb$", ".nzb", fwp) +fwp = re.sub("(?i)-CAPTCHA\.nzb$", ".nzb", fwp) +fwp = re.sub(r"(\-[^-.\n]*)(\-.{4})?\.nzb$", r"\1.nzb", fwp) if fwp: - print('[NZB] NZBNAME=', fwp, sep='') + print("[NZB] NZBNAME=", fwp, sep="") sys.exit(POSTPROCESS_SUCCESS) diff --git a/docs/Downloaders/NZBGet/scripts/HashRenamer/HashRenamer.py b/docs/Downloaders/NZBGet/scripts/HashRenamer/HashRenamer.py index d2957d263..ffc6d8e77 100644 --- a/docs/Downloaders/NZBGet/scripts/HashRenamer/HashRenamer.py +++ b/docs/Downloaders/NZBGet/scripts/HashRenamer/HashRenamer.py @@ -43,51 +43,73 @@ NZBGET_POSTPROCESS_NONE = 95 # EXTENSION STUFF ############################################################ + def do_check(): - if 'NZBOP_SCRIPTDIR' not in os.environ: + if "NZBOP_SCRIPTDIR" not in os.environ: print("This script can only be called from NZBGet (11.0 or later).") sys.exit(0) - if os.environ['NZBOP_VERSION'][0:5] < '11.0': - print("[ERROR] NZBGet Version %s is not supported. Please update NZBGet." % (str(os.environ['NZBOP_VERSION']))) + if os.environ["NZBOP_VERSION"][0:5] < "11.0": + print( + "[ERROR] NZBGet Version %s is not supported. Please update NZBGet." + % (str(os.environ["NZBOP_VERSION"])) + ) sys.exit(0) - print("Script triggered from NZBGet Version %s." % (str(os.environ['NZBOP_VERSION']))) + print( + "Script triggered from NZBGet Version %s." % (str(os.environ["NZBOP_VERSION"])) + ) status = 0 - if 'NZBPP_TOTALSTATUS' in os.environ: - if not os.environ['NZBPP_TOTALSTATUS'] == 'SUCCESS': - print("[ERROR] Download failed with status %s." % (os.environ['NZBPP_STATUS'])) + if "NZBPP_TOTALSTATUS" in os.environ: + if not os.environ["NZBPP_TOTALSTATUS"] == "SUCCESS": + print( + "[ERROR] Download failed with status %s." % (os.environ["NZBPP_STATUS"]) + ) status = 1 else: # Check par status - if os.environ['NZBPP_PARSTATUS'] == '1' or os.environ['NZBPP_PARSTATUS'] == '4': - print("[ERROR] Par-repair failed, setting status \"failed\".") + if os.environ["NZBPP_PARSTATUS"] == "1" or os.environ["NZBPP_PARSTATUS"] == "4": + print('[ERROR] Par-repair failed, setting status "failed".') status = 1 # Check unpack status - if os.environ['NZBPP_UNPACKSTATUS'] == '1': - print("[ERROR] Unpack failed, setting status \"failed\".") + if os.environ["NZBPP_UNPACKSTATUS"] == "1": + print('[ERROR] Unpack failed, setting status "failed".') status = 1 - if os.environ['NZBPP_UNPACKSTATUS'] == '0' and os.environ['NZBPP_PARSTATUS'] == '0': + if ( + os.environ["NZBPP_UNPACKSTATUS"] == "0" + and os.environ["NZBPP_PARSTATUS"] == "0" + ): # Unpack was skipped due to nzb-file properties or due to errors during par-check - if os.environ['NZBPP_HEALTH'] < 1000: - print("[ERROR] Download health is compromised and Par-check/repair disabled or no .par2 files found. " \ - "Setting status \"failed\".") - print("[ERROR] Please check your Par-check/repair settings for future downloads.") + if os.environ["NZBPP_HEALTH"] < 1000: + print( + "[ERROR] Download health is compromised and Par-check/repair disabled or no .par2 files found. " + 'Setting status "failed".' + ) + print( + "[ERROR] Please check your Par-check/repair settings for future downloads." + ) status = 1 else: - print("[ERROR] Par-check/repair disabled or no .par2 files found, and Unpack not required. Health is " \ - "ok so handle as though download successful.") - print("[WARNING] Please check your Par-check/repair settings for future downloads.") + print( + "[ERROR] Par-check/repair disabled or no .par2 files found, and Unpack not required. Health is " + "ok so handle as though download successful." + ) + print( + "[WARNING] Please check your Par-check/repair settings for future downloads." + ) # Check if destination directory exists (important for reprocessing of history items) - if not os.path.isdir(os.environ['NZBPP_DIRECTORY']): - print("[ERROR] Nothing to post-process: destination directory", os.environ[ - 'NZBPP_DIRECTORY'], "doesn't exist. Setting status \"failed\".") + if not os.path.isdir(os.environ["NZBPP_DIRECTORY"]): + print( + "[ERROR] Nothing to post-process: destination directory", + os.environ["NZBPP_DIRECTORY"], + 'doesn\'t exist. Setting status "failed".', + ) status = 1 # All checks done, now launching the script. @@ -98,9 +120,9 @@ def do_check(): def get_file_name(path): try: file_name = os.path.basename(path) - extensions = re.findall(r'\.([^.]+)', file_name) - ext = '.'.join(extensions) - name = file_name.replace(".%s" % ext, '') + extensions = re.findall(r"\.([^.]+)", file_name) + ext = ".".join(extensions) + name = file_name.replace(".%s" % ext, "") return name, ext except Exception: pass @@ -109,10 +131,10 @@ def get_file_name(path): def is_file_hash(file_name): hash_regexp = [ - r'^[a-fA-F0-9]{40}$', - r'^[a-fA-F0-9]{32}$', - r'^[a-f0-9]{128}$', - r'^[a-zA-Z0-9]{42}$' + r"^[a-fA-F0-9]{40}$", + r"^[a-fA-F0-9]{32}$", + r"^[a-f0-9]{128}$", + r"^[a-zA-Z0-9]{42}$", ] for hash in hash_regexp: if re.match(hash, file_name): @@ -146,20 +168,20 @@ def find_files(folder, extension=None, depth=None): do_check() # retrieve required variables -directory = os.path.normpath(os.environ['NZBPP_DIRECTORY']) -nzb_name = os.environ['NZBPP_NZBFILENAME'] +directory = os.path.normpath(os.environ["NZBPP_DIRECTORY"]) +nzb_name = os.environ["NZBPP_NZBFILENAME"] if nzb_name is None: print("[ERROR] Unable to retrieve NZBPP_NZBFILENAME") sys.exit(NZBGET_POSTPROCESS_ERROR) -nzb_name = nzb_name.replace('.nzb', '') +nzb_name = nzb_name.replace(".nzb", "") -print(("[INFO] Using \"%s\" for hashed filenames" % nzb_name)) -print(("[INFO] Scanning \"%s\" for hashed filenames" % directory)) +print(('[INFO] Using "%s" for hashed filenames' % nzb_name)) +print(('[INFO] Scanning "%s" for hashed filenames' % directory)) # scan for files found_files = find_files(directory) if not found_files: - print(("[INFO] No files were found in \"%s\"" % directory)) + print(('[INFO] No files were found in "%s"' % directory)) sys.exit(NZBGET_POSTPROCESS_NONE) else: print(("[INFO] Found %d files to check for hashed filenames" % len(found_files))) @@ -173,13 +195,20 @@ else: # is this a file hash if is_file_hash(file_name): new_file_path = os.path.join(dir_name, "%s.%s" % (nzb_name, file_ext)) - print(("[INFO] Moving \"%s\" to \"%s\"" % (found_file_path, new_file_path))) + print(('[INFO] Moving "%s" to "%s"' % (found_file_path, new_file_path))) try: shutil.move(found_file_path, new_file_path) moved_files += 1 except Exception: - print(("[ERROR] Failed moving \"%s\" to \"%s\"" % (found_file_path, new_file_path))) - - print(("[INFO] Finished processing \"%s\", moved %d files" % (directory, moved_files))) - -sys.exit(NZBGET_POSTPROCESS_SUCCESS) \ No newline at end of file + print( + ( + '[ERROR] Failed moving "%s" to "%s"' + % (found_file_path, new_file_path) + ) + ) + + print( + ('[INFO] Finished processing "%s", moved %d files' % (directory, moved_files)) + ) + +sys.exit(NZBGET_POSTPROCESS_SUCCESS) diff --git a/docs/Downloaders/NZBGet/scripts/WtFnZb-Renamer/WtFnZb-Renamer.py b/docs/Downloaders/NZBGet/scripts/WtFnZb-Renamer/WtFnZb-Renamer.py index 5eadc8ef2..a63b6d1a8 100644 --- a/docs/Downloaders/NZBGet/scripts/WtFnZb-Renamer/WtFnZb-Renamer.py +++ b/docs/Downloaders/NZBGet/scripts/WtFnZb-Renamer/WtFnZb-Renamer.py @@ -30,47 +30,56 @@ POSTPROCESS_ERROR = 94 try: from lxml import etree except ImportError: - print(u'[ERROR] Python lxml required. Please install with "sudo apt install python-lxml" or "pip install lxml".') + print( + '[ERROR] Python lxml required. Please install with "sudo apt install python-lxml" or "pip install lxml".' + ) sys.exit(POSTPROCESS_ERROR) patterns = ( - re.compile(r'^(?P.*\[PRiVATE\]-\[WtFnZb\]-)' - r'\[(?P\d+)\]-\[(?P\d+)\/(?P.{3,}?)\]' - r'\s+-\s+""\s+yEnc\s+', - re.MULTILINE | re.UNICODE), - re.compile(r'^(?P.*\[PRiVATE\]-\[WtFnZb\]-)' - r'\[(?P.{3,}?)\]-\[(?P\d+)/(?P\d+)\]' - r'\s+-\s+""\s+yEnc\s+', - re.MULTILINE | re.UNICODE)) - -nzb_dir = os.getenv('NZBNP_DIRECTORY') -nzb_filename = os.getenv('NZBNP_FILENAME') -nzb_name = os.getenv('NZBNP_NZBNAME') -nzb_file_naming = os.getenv('NZBOP_FILENAMING') + re.compile( + r"^(?P.*\[PRiVATE\]-\[WtFnZb\]-)" + r"\[(?P\d+)\]-\[(?P\d+)\/(?P.{3,}?)\]" + r'\s+-\s+""\s+yEnc\s+', + re.MULTILINE | re.UNICODE, + ), + re.compile( + r"^(?P.*\[PRiVATE\]-\[WtFnZb\]-)" + r"\[(?P.{3,}?)\]-\[(?P\d+)/(?P\d+)\]" + r'\s+-\s+""\s+yEnc\s+', + re.MULTILINE | re.UNICODE, + ), +) + +nzb_dir = os.getenv("NZBNP_DIRECTORY") +nzb_filename = os.getenv("NZBNP_FILENAME") +nzb_name = os.getenv("NZBNP_NZBNAME") +nzb_file_naming = os.getenv("NZBOP_FILENAMING") if nzb_dir is None or nzb_filename is None or nzb_name is None: - print('Please run as NZBGet plugin') + print("Please run as NZBGet plugin") sys.exit(POSTPROCESS_ERROR) -if nzb_file_naming is not None and nzb_file_naming.lower() != 'nzb': - print(u'[ERROR] NZBGet setting FileNaming (under Download Queue) ' - u'must be set to "Nzb" for this extension to work correctly, exiting.') +if nzb_file_naming is not None and nzb_file_naming.lower() != "nzb": + print( + "[ERROR] NZBGet setting FileNaming (under Download Queue) " + 'must be set to "Nzb" for this extension to work correctly, exiting.' + ) sys.exit(POSTPROCESS_ERROR) if not os.path.exists(nzb_dir): - print('[ERROR] NZB directory doesn\'t exist, exiting') + print("[ERROR] NZB directory doesn't exist, exiting") sys.exit(POSTPROCESS_ERROR) -if not nzb_filename.lower().endswith('.nzb'): - print(u'[ERROR] {} is not a .nzb file.'.format(nzb_filename)) +if not nzb_filename.lower().endswith(".nzb"): + print("[ERROR] {} is not a .nzb file.".format(nzb_filename)) sys.exit(POSTPROCESS_ERROR) nzb = os.path.join(nzb_dir, nzb_filename) if not os.path.exists(nzb): - print('[ERROR] {nzb} doesn\'t exist, exiting'.format(nzb=nzb)) + print("[ERROR] {nzb} doesn't exist, exiting".format(nzb=nzb)) sys.exit(POSTPROCESS_ERROR) -with open(nzb, mode='rb') as infile: +with open(nzb, mode="rb") as infile: tree = etree.parse(infile) changed = False @@ -78,74 +87,77 @@ file_count = 0 totals = set() filenames = set() -for f in tree.getiterator('{http://www.newzbin.com/DTD/2003/nzb}file'): - subject = f.get('subject') +for f in tree.getiterator("{http://www.newzbin.com/DTD/2003/nzb}file"): + subject = f.get("subject") if subject is None: - print(u'[DETAIL] No subject in , skipping') + print("[DETAIL] No subject in , skipping") continue file_count += 1 result = [re.match(pattern, subject) for pattern in patterns] matched = [m for m in result if m is not None] if len(matched) == 0: - print(u'[INFO] No pattern matching subject, exiting.') + print("[INFO] No pattern matching subject, exiting.") sys.exit(POSTPROCESS_NONE) elif len(matched) > 1: - print(u'[ERROR] Multiple patterns matched, exiting.') + print("[ERROR] Multiple patterns matched, exiting.") sys.exit(POSTPROCESS_ERROR) else: match = matched[0].groupdict() - if match['filename'].lower().endswith('.par2'): - print(u'[INFO] par2 exists, exiting') + if match["filename"].lower().endswith(".par2"): + print("[INFO] par2 exists, exiting") sys.exit(POSTPROCESS_NONE) - if int(match['segment']) > int(match['total']): - print(u'[DETAIL] Segment index is greater then total, skipping') + if int(match["segment"]) > int(match["total"]): + print("[DETAIL] Segment index is greater then total, skipping") continue # NZBGet subject parsing changes when duplicate filenames are present # prefix duplicates to avoid that - if match['filename'] in filenames: - match['filename'] = u'{}.{}'.format(file_count, match['filename']) + if match["filename"] in filenames: + match["filename"] = "{}.{}".format(file_count, match["filename"]) - filenames.add(match['filename']) + filenames.add(match["filename"]) - s = u'WtFnZb "{filename}" yEnc ({segment}/{total})'.format( - filename = match['filename'], - segment = match['segment'], - total = match['total']) + s = 'WtFnZb "{filename}" yEnc ({segment}/{total})'.format( + filename=match["filename"], segment=match["segment"], total=match["total"] + ) - print(u'[INFO] New subject {subject}'.format(subject=s.encode('ascii', 'ignore'))) - f.set('subject', s) + print("[INFO] New subject {subject}".format(subject=s.encode("ascii", "ignore"))) + f.set("subject", s) changed = True - totals.add(int(match['total'])) + totals.add(int(match["total"])) if not changed: - print(u'[WARNING] No subject changed, exiting.') + print("[WARNING] No subject changed, exiting.") sys.exit(POSTPROCESS_NONE) if len(totals) != 1: - print(u'[WARNING] Mixed values for number of total segments, exiting.') + print("[WARNING] Mixed values for number of total segments, exiting.") sys.exit(POSTPROCESS_NONE) if totals.pop() != file_count: - print(u'[WARNING] Listed segment count does not match count, exiting.') + print("[WARNING] Listed segment count does not match count, exiting.") sys.exit(POSTPROCESS_NONE) -org = u'{}.wtfnzb.original.processed'.format(nzb) +org = "{}.wtfnzb.original.processed".format(nzb) exists_counter = 0 while os.path.exists(org): exists_counter += 1 - org = u'{}.{}.wtfnzb.original.processed'.format(nzb, exists_counter) + org = "{}.{}.wtfnzb.original.processed".format(nzb, exists_counter) -print(u'[INFO] Preserving original nzb as {}'.format(org)) +print("[INFO] Preserving original nzb as {}".format(org)) os.rename(nzb, org) -print(u'[INFO] Writing {}'.format(nzb)) -with open(nzb, mode='wb') as outfile: - outfile.write(etree.tostring(tree, - xml_declaration=True, - encoding=tree.docinfo.encoding, - doctype=tree.docinfo.doctype)) +print("[INFO] Writing {}".format(nzb)) +with open(nzb, mode="wb") as outfile: + outfile.write( + etree.tostring( + tree, + xml_declaration=True, + encoding=tree.docinfo.encoding, + doctype=tree.docinfo.doctype, + ) + ) sys.exit(POSTPROCESS_SUCCESS) diff --git a/docs/Downloaders/NZBGet/scripts/index.md b/docs/Downloaders/NZBGet/scripts/index.md index b03ea3625..218254a85 100644 --- a/docs/Downloaders/NZBGet/scripts/index.md +++ b/docs/Downloaders/NZBGet/scripts/index.md @@ -48,10 +48,10 @@ Install Instructions: - 1. Copy script to NZBGet's script folder - 1. Run: `sudo chmod +x replace_for.py` - 1. In NZBGet go to `Settings` => `Extension Scripts` - 1. Enable `replace_for.py` in the `Extensions` setting. + 1. Copy script to NZBGet's script folder + 1. Run: `sudo chmod +x replace_for.py` + 1. In NZBGet go to `Settings` => `Extension Scripts` + 1. Enable `replace_for.py` in the `Extensions` setting. ??? example "Script" @@ -80,6 +80,7 @@ ``` !!! tip + This script doesn't always work and is often needed if you use a certain indexer. It might be better to use the following Sonarr Regex in your release profile diff --git a/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py b/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py index bdd61d6e5..ea953900b 100644 --- a/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py +++ b/docs/Downloaders/NZBGet/scripts/replace_for/replace_for.py @@ -22,19 +22,19 @@ from __future__ import print_function import os, re, sys # Exit codes used by NZBGet -POSTPROCESS_SUCCESS=93 -POSTPROCESS_ERROR=94 -POSTPROCESS_SKIP=95 +POSTPROCESS_SUCCESS = 93 +POSTPROCESS_ERROR = 94 +POSTPROCESS_SKIP = 95 -directory = os.environ['NZBPP_DIRECTORY'] -print('Directory used is: ',directory) +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) + 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 +sys.exit(POSTPROCESS_SUCCESS) diff --git a/docs/Downloaders/SABnzbd/.pages b/docs/Downloaders/SABnzbd/.pages index ba5470999..946cdd5c0 100644 --- a/docs/Downloaders/SABnzbd/.pages +++ b/docs/Downloaders/SABnzbd/.pages @@ -1,4 +1,4 @@ nav: - - Basic-Setup: Basic-Setup.md - - Path and Categories: Paths-and-Categories.md - - Scripts: /Downloaders/SABnzbd/scripts/ \ No newline at end of file + - Basic-Setup: Basic-Setup.md + - Path and Categories: Paths-and-Categories.md + - Scripts: /Downloaders/SABnzbd/scripts/ diff --git a/docs/Downloaders/SABnzbd/Basic-Setup.md b/docs/Downloaders/SABnzbd/Basic-Setup.md index aaf0bdec2..ecc04024f 100644 --- a/docs/Downloaders/SABnzbd/Basic-Setup.md +++ b/docs/Downloaders/SABnzbd/Basic-Setup.md @@ -1,18 +1,18 @@ # SABnzbd - Basic Setup {! include-markdown "../../../includes/downloaders/basic-setup.md" !} - ------- +--- !!! Note + Settings that aren't covered means you can change them to your own liking or just leave them on default. **I also recommend to enable the `Advanced Settings` on the top right.** ## General -[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/general){:target="_blank" rel="noopener noreferrer"} +[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/general){:target="\_blank" rel="noopener noreferrer"} ### Tuning @@ -21,11 +21,11 @@ I recommend setting a sane maximum speed and then limiting below that, to keep your internet connection happy. You can use `Settings` => `Scheduling` to toggle the limit on and off based on time, slowing it down while your family is using the internet and speeding it up at night when they're not. ------- +--- ## Folders -[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/folders){:target="_blank" rel="noopener noreferrer"} +[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/folders){:target="\_blank" rel="noopener noreferrer"} ### User Folders @@ -35,7 +35,6 @@ I recommend setting a sane maximum speed and then limiting below that, to keep y Here you setup your download path/location. {! include-markdown "../../../includes/downloaders/warning-path-location.md" !} - ### System Folders @@ -44,16 +43,17 @@ Here you setup your download path/location. I recommend the .nzb Backup Folder because sabnzbd doesn't have a hidden history and having remove from history enabled in Sonarr/Radarr is the best method. This allows you to see your past downloads and it is used for duplicate download detection/prevention. Default is empty, I picked history because it is easy. It'll end up in the `/config` folder for Docker, which isn't crazy... but this is literally compressed nzb files, so can end up pretty big. But the choice is yours what you prefer. ------- +--- ## Servers -[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/servers){:target="_blank" rel="noopener noreferrer"} +[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/servers){:target="\_blank" rel="noopener noreferrer"} `Settings` => `Servers` => `Add Server` ![!Servers](images/sabnzbd-servers.png) !!! info "" + USP = Usenet Service Provider 1. Server description. @@ -66,21 +66,21 @@ I recommend the .nzb Backup Folder because sabnzbd doesn't have a hidden history 1. How long the articles are stored on the news server. 1. For unreliable servers, will be ignored longer in case of failures ------- +--- ## Categories -[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/categories){:target="_blank" rel="noopener noreferrer"} +[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/categories){:target="\_blank" rel="noopener noreferrer"} `Settings`=> `Categories` -Covered and fully explained in [SABnzbd - Paths and Categories](/Downloaders/SABnzbd/Paths-and-Categories/){:target="_blank" rel="noopener noreferrer"} +Covered and fully explained in [SABnzbd - Paths and Categories](/Downloaders/SABnzbd/Paths-and-Categories/){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Switches -[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/switches){:target="_blank" rel="noopener noreferrer"} +[Sabnzbd Documentation](https://sabnzbd.org/wiki/configuration/4.0/switches){:target="\_blank" rel="noopener noreferrer"} ### Queue @@ -105,7 +105,7 @@ Covered and fully explained in [SABnzbd - Paths and Categories](/Downloaders/SAB 1. Some servers provide an alternative NZB when a download fails. I have it enabled no guarantee that it works. 1. Helps with de-obfuscation especially invalid file extensions ------- +--- ## Sorting @@ -116,7 +116,7 @@ Covered and fully explained in [SABnzbd - Paths and Categories](/Downloaders/SAB ## Special Rarely used options. -Don't change these without checking the [SABnzbd Wiki](https://sabnzbd.org/wiki/configuration/4.0/special){:target="_blank" rel="noopener noreferrer"} first, as some have serious side-effects. +Don't change these without checking the [SABnzbd Wiki](https://sabnzbd.org/wiki/configuration/4.0/special){:target="\_blank" rel="noopener noreferrer"} first, as some have serious side-effects. The default values are between parentheses. ### Unable to connect to SABnzbd @@ -137,7 +137,7 @@ Example: `sabnzbd.domain.tld, ` ![!SABnzbd: host_whitelist ( )](images/sabnzbd-special-host-whitelist.png) ------- +--- ## Recommended Sonarr/Radarr Settings @@ -174,9 +174,8 @@ Being that Sonarr/Radarr only looks at the last xx amount in the queue/history. ![!Radarr: Download Clients - SABnzbd](images/radarr-download-clients-sabnzbd.png) ------- +--- -Thanks to [fryfrog](https://github.com/fryfrog){:target="_blank" rel="noopener noreferrer"} for helping me with the settings and providing the info needed to create this Guide. +Thanks to [fryfrog](https://github.com/fryfrog){:target="\_blank" rel="noopener noreferrer"} for helping me with the settings and providing the info needed to create this Guide. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/SABnzbd/Paths-and-Categories.md b/docs/Downloaders/SABnzbd/Paths-and-Categories.md index a5ea0e0e6..3c5e57dcb 100644 --- a/docs/Downloaders/SABnzbd/Paths-and-Categories.md +++ b/docs/Downloaders/SABnzbd/Paths-and-Categories.md @@ -1,7 +1,6 @@ # SABnzbd - Paths and Categories {! include-markdown "../../../includes/downloaders/path.md" !} - --- @@ -16,7 +15,6 @@ You don't need to add the full path under `Folder/Path`, it will use the `Relative folders are based on:` path you see on the top of the screenshot, that you setup as `Completed Download Folder`. {! include-markdown "../../../includes/downloaders/warning-path-location.md" !} - --- @@ -27,4 +25,3 @@ You don't need to add the full path under `Folder/Path`, it will use the `Relati ![!SABnzbd - Paths and Categories Breakdown](images/sabnzbd-category-breakdown.png) {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/SABnzbd/scripts/Clean/Clean.py b/docs/Downloaders/SABnzbd/scripts/Clean/Clean.py index 4dd65287c..acdbd9790 100644 --- a/docs/Downloaders/SABnzbd/scripts/Clean/Clean.py +++ b/docs/Downloaders/SABnzbd/scripts/Clean/Clean.py @@ -24,46 +24,55 @@ import re sys.argv = sys.argv[:9] try: # Parse the input variables for SABnzbd version >= 4.2.0 - (scriptname, nzbname, postprocflags, category, script, prio, downloadsize, grouplist) = sys.argv + ( + scriptname, + nzbname, + postprocflags, + category, + script, + prio, + downloadsize, + grouplist, + ) = sys.argv except: - sys.exit(1) # exit with 1 causes SABnzbd to ignore the output of this script + sys.exit(1) # exit with 1 causes SABnzbd to ignore the output of this script fwp = nzbname -fwp = re.sub('(?i)-4P$', '', fwp) -fwp = re.sub('(?i)-4Planet$', '', fwp) -fwp = re.sub('(?i)-AlternativeToRequested$', '', fwp) -fwp = re.sub('(?i)-AlteZachen$', '', fwp) -fwp = re.sub('(?i)-AsRequested$', '', fwp) -fwp = re.sub('(?i)-AsRequested-xpost$', '', fwp) -fwp = re.sub('(?i)-BUYMORE$', '', fwp) -fwp = re.sub('(?i)-Chamele0n$', '', fwp) -fwp = re.sub('(?i)-GEROV$', '', fwp) -fwp = re.sub('(?i)-iNC0GNiTO$', '', fwp) -fwp = re.sub('(?i)-NZBGeek$', '', fwp) -fwp = re.sub('(?i)-Obfuscated$', '', fwp) -fwp = re.sub('(?i)-Obfuscation$', '', fwp) -fwp = re.sub('(?i)-postbot$', '', fwp) -fwp = re.sub('(?i)-Rakuv[a-z0-9]*$', '', fwp) -fwp = re.sub('(?i)-RePACKPOST$', '', fwp) -fwp = re.sub('(?i)-Scrambled$', '', fwp) -fwp = re.sub('(?i)-WhiteRev$', '', fwp) -fwp = re.sub('(?i)-WRTEAM$', '', fwp) -fwp = re.sub('(?i)-CAPTCHA$', '', fwp) -fwp = re.sub('(?i)-Z0iDS3N$', '', fwp) -fwp = re.sub('(?i)\[eztv([ ._-]re)?\]$', '', fwp) -fwp = re.sub('(?i)\[TGx\]$', '', fwp) -fwp = re.sub('(?i)\[ettv\]$', '', fwp) -fwp = re.sub('(?i)\[TGx\]-xpost$', '', fwp) -fwp = re.sub('(?i).mkv-xpost$', '', fwp) -fwp = re.sub('(?i)-xpost$', '', fwp) -fwp = re.sub(r'(?i)(-D-Z0N3|\-[^-.\n]*)(\-.{4})?$', r'\1', fwp) +fwp = re.sub("(?i)-4P$", "", fwp) +fwp = re.sub("(?i)-4Planet$", "", fwp) +fwp = re.sub("(?i)-AlternativeToRequested$", "", fwp) +fwp = re.sub("(?i)-AlteZachen$", "", fwp) +fwp = re.sub("(?i)-AsRequested$", "", fwp) +fwp = re.sub("(?i)-AsRequested-xpost$", "", fwp) +fwp = re.sub("(?i)-BUYMORE$", "", fwp) +fwp = re.sub("(?i)-Chamele0n$", "", fwp) +fwp = re.sub("(?i)-GEROV$", "", fwp) +fwp = re.sub("(?i)-iNC0GNiTO$", "", fwp) +fwp = re.sub("(?i)-NZBGeek$", "", fwp) +fwp = re.sub("(?i)-Obfuscated$", "", fwp) +fwp = re.sub("(?i)-Obfuscation$", "", fwp) +fwp = re.sub("(?i)-postbot$", "", fwp) +fwp = re.sub("(?i)-Rakuv[a-z0-9]*$", "", fwp) +fwp = re.sub("(?i)-RePACKPOST$", "", fwp) +fwp = re.sub("(?i)-Scrambled$", "", fwp) +fwp = re.sub("(?i)-WhiteRev$", "", fwp) +fwp = re.sub("(?i)-WRTEAM$", "", fwp) +fwp = re.sub("(?i)-CAPTCHA$", "", fwp) +fwp = re.sub("(?i)-Z0iDS3N$", "", fwp) +fwp = re.sub("(?i)\[eztv([ ._-]re)?\]$", "", fwp) +fwp = re.sub("(?i)\[TGx\]$", "", fwp) +fwp = re.sub("(?i)\[ettv\]$", "", fwp) +fwp = re.sub("(?i)\[TGx\]-xpost$", "", fwp) +fwp = re.sub("(?i).mkv-xpost$", "", fwp) +fwp = re.sub("(?i)-xpost$", "", fwp) +fwp = re.sub(r"(?i)(-D-Z0N3|\-[^-.\n]*)(\-.{4})?$", r"\1", fwp) -print("1") # Accept +print("1") # Accept print(fwp) print() print() print() -print() +print() print() # 0 means OK sys.exit(0) diff --git a/docs/Downloaders/SABnzbd/scripts/index.md b/docs/Downloaders/SABnzbd/scripts/index.md index ad98bed08..6e08c163e 100644 --- a/docs/Downloaders/SABnzbd/scripts/index.md +++ b/docs/Downloaders/SABnzbd/scripts/index.md @@ -14,10 +14,10 @@ Install Instructions: - 1. Copy script to sabnzbd's script folder - 1. run: `sudo chmod +x Clean.py` - 1. in SABnzbd go to `Settings` => `Switches` - 1. Change Pre-queue user script and select: `Clean.py` + 1. Copy script to sabnzbd's script folder + 1. run: `sudo chmod +x Clean.py` + 1. in SABnzbd go to `Settings` => `Switches` + 1. Change Pre-queue user script and select: `Clean.py` ![!Enable Clean.py](/Downloaders/SABnzbd/images/sabnzbd-switches-queue-clean.png) @@ -38,10 +38,10 @@ 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` + 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) diff --git a/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py b/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py index d347394cf..92c4a26ec 100644 --- a/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py +++ b/docs/Downloaders/SABnzbd/scripts/replace_for/replace_for.py @@ -20,23 +20,32 @@ import os import os.path try: - (scriptname, directory, orgnzbname, jobname, reportnumber, category, group, postprocstatus, url) = sys.argv + ( + 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 + 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) + 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() print() # 0 means OK sys.exit(0) - diff --git a/docs/Downloaders/qBittorrent/.pages b/docs/Downloaders/qBittorrent/.pages index 560d08e77..dc4348e50 100644 --- a/docs/Downloaders/qBittorrent/.pages +++ b/docs/Downloaders/qBittorrent/.pages @@ -1,7 +1,7 @@ nav: - - Basic-Setup: Basic-Setup.md - - Paths: Paths.md - - How to add Categories: How-to-add-categories.md - - Port forwarding: Port-forwarding.md - - 3rd Party tools: 3rd-party-tools.md - - Tips + - Basic-Setup: Basic-Setup.md + - Paths: Paths.md + - How to add Categories: How-to-add-categories.md + - Port forwarding: Port-forwarding.md + - 3rd Party tools: 3rd-party-tools.md + - Tips diff --git a/docs/Downloaders/qBittorrent/3rd-party-tools.md b/docs/Downloaders/qBittorrent/3rd-party-tools.md index 05dcf1d17..a365ea30d 100644 --- a/docs/Downloaders/qBittorrent/3rd-party-tools.md +++ b/docs/Downloaders/qBittorrent/3rd-party-tools.md @@ -9,7 +9,7 @@ This is a program used to manage your qBittorrent instance such as: - Tag torrents based on tracker URL and set seed goals/limit upload speed by tag (only tag torrents that have no tags) - Update categories based on save directory - Remove unregistered torrents (delete data & torrent if it is not being cross-seeded, otherwise it will just remove the torrent) -- Automatically add cross-seed torrents in paused state. *Note: cross-seed now allows for torrent injections directly to qBit, making this feature obsolete.* +- Automatically add cross-seed torrents in paused state. _Note: cross-seed now allows for torrent injections directly to qBit, making this feature obsolete._ - Recheck paused torrents sorted by lowest size and resume if completed - Remove orphaned files from your root directory that are not referenced by qBittorrent - Tag any torrents that have no hard links and allows optional cleanup to delete these torrents and contents based on maximum ratio and/or time seeded @@ -17,9 +17,9 @@ This is a program used to manage your qBittorrent instance such as: - Built-in scheduler to run the script every x minutes. (Can use --run command to run without the scheduler) - Webhook notifications with Notifiarr and Apprise API integration. -[qBit Manage](https://github.com/StuffAnThings/qbit_manage){:target="_blank" rel="noopener noreferrer"} +[qBit Manage](https://github.com/StuffAnThings/qbit_manage){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## qBitrr @@ -29,14 +29,14 @@ Features - Monitor qBit for Stalled/bad entries and delete them then blacklist them on Arrs (Option to also trigger a re-search action). - Monitor qBit for completed entries and tell the appropriate Arr instance to import it: - - `qbitrr DownloadedMoviesScan` for Radarr - - `qbitrr DownloadedEpisodesScan` for Sonarr + - `qbitrr DownloadedMoviesScan` for Radarr + - `qbitrr DownloadedEpisodesScan` for Sonarr - Skip files in qBit entries by extension, folder or regex. - Monitor completed folder and clean it up. -- Usage of [ffprobe](https://github.com/FFmpeg/FFmpeg){:target="_blank" rel="noopener noreferrer"} to ensure downloaded entries are valid media. +- Usage of [ffprobe](https://github.com/FFmpeg/FFmpeg){:target="\_blank" rel="noopener noreferrer"} to ensure downloaded entries are valid media. - Trigger periodic Rss Syncs on the appropriate Arr instances. - Trigger Queue update on appropriate Arr instances. -- Search requests from [Overseerr](https://github.com/sct/overseerr){:target="_blank" rel="noopener noreferrer"} or [Ombi](https://github.com/Ombi-app/Ombi){:target="_blank" rel="noopener noreferrer"}. +- Search requests from [Overseerr](https://github.com/sct/overseerr){:target="\_blank" rel="noopener noreferrer"} or [Ombi](https://github.com/Ombi-app/Ombi){:target="\_blank" rel="noopener noreferrer"}. - Auto add/remove trackers - Set per tracker values - **Sonarr v4 support** @@ -47,9 +47,9 @@ Features - Optionally searches year by year is ascending or descending order (config option available) - Search for CF Score unmet and cancel torrents base on CF Score or Quality unmet search -[qBitrr](https://github.com/Feramance/qBitrr){:target="_blank" rel="noopener noreferrer"} +[qBitrr](https://github.com/Feramance/qBitrr){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## qbittorrent-cli @@ -60,17 +60,17 @@ A cli to manage qBittorrent. Add torrents, reannounce and import from other clie - Set limits on how many simultaneously active downloads are allowed - Import torrents with state from Deluge and rTorrent -[qbittorrent-cli](https://github.com/ludviglundgren/qbittorrent-cli){:target="_blank" rel="noopener noreferrer"} +[qbittorrent-cli](https://github.com/ludviglundgren/qbittorrent-cli){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## qbittools qbittools is a feature rich CLI for the management of torrents in qBittorrent. -[qbittools](https://gitlab.com/AlexKM/qbittools){:target="_blank" rel="noopener noreferrer"} +[qbittools](https://gitlab.com/AlexKM/qbittools){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## A Dark but not black qBittorrent WebUI @@ -82,9 +82,9 @@ A darker theme for qBittorrent WebUI (made with the help of the Walkerservers co ![!Example](https://raw.githubusercontent.com/brettpetch/nightwalker/main/preview.png) -[Nightwalker](https://github.com/brettpetch/nightwalker){:target="_blank" rel="noopener noreferrer"} +[Nightwalker](https://github.com/brettpetch/nightwalker){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## cross-seed @@ -95,11 +95,10 @@ Run cross-seed 24/7 to: - Search for cross-seeds as soon as new torrents are finished downloading - Race starting at 100% before the uploader even joins. -[![Discord Support](https://img.shields.io/discord/880949701845872672?style=flat-square&color=4051B5&logo=discord)](https://discord.gg/jpbUFzS5Wb){:target="_blank" rel="noopener noreferrer"} -[![Github](https://img.shields.io/github/v/release/mmgoodnow/cross-seed?color=4051B5&display_name=tag&label=Version&logo=github)](https://github.com/mmgoodnow/cross-seed){:target="_blank" rel="noopener noreferrer"} -[![Website](https://img.shields.io/website?label=Website&url=https%3A%2F%2Fwww.cross-seed.org%2F)](https://www.cross-seed.org/){:target="_blank" rel="noopener noreferrer"} +[![Discord Support](https://img.shields.io/discord/880949701845872672?style=flat-square&color=4051B5&logo=discord)](https://discord.gg/jpbUFzS5Wb){:target="\_blank" rel="noopener noreferrer"} +[![Github](https://img.shields.io/github/v/release/mmgoodnow/cross-seed?color=4051B5&display_name=tag&label=Version&logo=github)](https://github.com/mmgoodnow/cross-seed){:target="\_blank" rel="noopener noreferrer"} +[![Website](https://img.shields.io/website?label=Website&url=https%3A%2F%2Fwww.cross-seed.org%2F)](https://www.cross-seed.org/){:target="\_blank" rel="noopener noreferrer"} ------- +--- {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/qBittorrent/Basic-Setup.md b/docs/Downloaders/qBittorrent/Basic-Setup.md index d2b8fc33e..c8f05ada8 100644 --- a/docs/Downloaders/qBittorrent/Basic-Setup.md +++ b/docs/Downloaders/qBittorrent/Basic-Setup.md @@ -1,14 +1,14 @@ # qBittorrent - Basic Setup {! include-markdown "../../../includes/downloaders/basic-setup.md" !} - ------- +--- !!! Note + Settings that aren't covered means you can change them to your own liking or just leave them on default. ------- +--- ## Downloads @@ -21,16 +21,19 @@ 1. For consistency with other torrents I recommend leaving this on `Original`. !!! success "" + **Suggested: `Original`** 1. Delete the .torrent file after it has been added to qBittorrent. !!! success "" + **Suggested: `Personal preference`** 1. Pre-allocated disk space for the added torrents, this limits fragmentation and also makes sure if you use a cache drive or a feeder disk that the space is available. !!! success "" + **Suggested: `Enabled`** !!! warning @@ -44,34 +47,38 @@ 1. Make sure this is set to `Automatic`. Your downloads will not go into the category folder otherwise. !!! success "" + **Suggested: `Automatic`** 1. This helps you to manage your file location based on categories. !!! success "" + **Suggested: `Enabled`** 1. Same as `Step 2` !!! success "" + **Suggested: `Enabled`** 1. Your download root path (Download folder/location). !!! success "" + **Read the `ATTENTION` block below** 1. If you enable this, your incomplete downloads will be placed in this directory until completed. This could be useful if you want your downloads to use a separate SSD/Feeder disk[^1], but this also results in extra unnecessary moves or in worse cases a slower and more I/O intensive copy + delete. !!! success "" + **Suggested: `Personal preference`** #### ATTENTION {! include-markdown "../../../includes/downloaders/warning-path-location.md" !} - ------- +--- ## Connection @@ -82,21 +89,25 @@ 1. Set this to TCP for the best performance !!! success "" + **Suggested: `TCP`** 1. Your port used for incoming connections, this is the port you opened in your router/firewall or port forwarded at your VPN provider to make sure you're connectable. !!! success "" + **Suggested: `The port you opened in your router/firewall or port forwarded at your VPN provider`** 1. This should be disabled in your router for several security reasons. !!! success "" + **Suggested: `Disabled`** 1. Make sure this is disabled so you don't mess up the forwarded port. !!! success "" + **Suggested: `Disabled`** ### Connections Limits @@ -106,6 +117,7 @@ The best settings for this depends on many factors so I won't be covering this. !!! success "" + **Suggested: `personal preference based on your setup and connection.`** ### Proxy Server @@ -115,9 +127,10 @@ The best settings for this depends on many factors so I won't be covering this. This is where you would add for example your SOCKS5 settings from your VPN provider. !!! success "" + **Suggested: `I personally don't recommend this unsecure option being it's un-encrypted and only spoofs your IP.`** ------- +--- ## Speed @@ -134,6 +147,7 @@ The best settings depends on many factors. - Bandwidth needed by other services in your home network. !!! success "" + **Suggested: `For a home connection that you use with others it's best practice to set the upload/download rate to about 70-80% of your maximum upload/download speed.`** ### Alternative Rate Limits @@ -148,6 +162,7 @@ Examples: - If you have an internet connection that's limited during specific hours (unlimited bandwidth during the night, but limited during the day) !!! success "" + **Suggested: `Personal preference`** ### Rate Limits Settings @@ -159,19 +174,22 @@ Not going to cover the technical part of what it does, but the following setting 1. Prevents you from being flooded if the uTP protocol is used for any reason. !!! success "" + **Suggested: `Enabled`** 1. Apply rate limit to transport overhead !!! success "" + **Suggested: `Disabled`** 1. Apply rate limit to peers on LAN !!! success "" + **Suggested: `Enabled`** ------- +--- ## Bittorrent @@ -182,16 +200,19 @@ Not going to cover the technical part of what it does, but the following setting 1. These settings are mainly used for public trackers (and should be enabled for them) and not for private trackers, decent private trackers use a private flag where they ignore these settings. !!! success "" + **Suggested: `Personal preference`** 1. Recommended setting `Allow encryption` rather than enforcing it allows more peers to connect and is recommended on underpowered systems as it will allow for lower overhead. !!! success "" + **Suggested: `Allow encryption`** 1. Anonymous mode hides clients (qBittorrent) fingerprint from the peer-ID, sets the ‘User-Agent’ to Null and it doesn’t share your IP-address directly with trackers (though peers will still see your IP address). If using private trackers, it's recommended to `disable` this. I also got reports from people who are using this that they had worse speeds. !!! success "" + **Suggested: `Disabled`** ### Torrent Queueing @@ -201,6 +222,7 @@ Not going to cover the technical part of what it does, but the following setting These options allow you to control the number of active torrents being downloaded and uploaded. !!! success "" + **Suggested: `personal preference based on your setup and connection.`** ### Seeding Limits @@ -210,32 +232,38 @@ These options allow you to control the number of active torrents being downloade 1. Your maximum seeding ratio preference. (When both ratio and seeding time are enabled it will trigger the action on whatever happens first.) !!! success "" + **Suggested: `Disabled`** 1. Your maximum seeding time preference (When both ratio and seeding time are enabled it will trigger the action on whatever happens first.) !!! success "" + **Suggested: `Disabled`** 1. What to do when ratio or seeding time is reached. !!! success "" + **Suggested: `Paused and Disabled`** !!! tip - Personally, I recommend using the seeding goals in your Starr Apps indexer settings (enable advanced), or use [qBit Manage](/Downloaders/qBittorrent/3rd-party-tools/#qbit-manage){:target="_blank" rel="noopener noreferrer"} + + Personally, I recommend using the seeding goals in your Starr Apps indexer settings (enable advanced), or use [qBit Manage](/Downloaders/qBittorrent/3rd-party-tools/#qbit-manage){:target="\_blank" rel="noopener noreferrer"} ### Automatically add these trackers to new downloads ![!Automatically add these trackers to new downloads](images/qb-options-bittorrent-automatically-add-these-trackers.png) !!! success "" + **Recommendation: `Disabled`** !!! WARNING + :bangbang: **NEVER USE THIS OPTION ON (Semi-)PRIVATE TRACKERS** :bangbang: ------- +--- ## Web UI @@ -254,10 +282,11 @@ These options allow you to control the number of active torrents being downloade 1. In some cases when this is enabled it could result in issues. !!! success "" + **Suggested: `Disabled`** {! include-markdown "../../../includes/support.md" !} - [^1]: + If you use unRaid then you don't need this since you can make use of the default cache drive option. diff --git a/docs/Downloaders/qBittorrent/How-to-add-categories.md b/docs/Downloaders/qBittorrent/How-to-add-categories.md index 881fdfb0a..be8155911 100644 --- a/docs/Downloaders/qBittorrent/How-to-add-categories.md +++ b/docs/Downloaders/qBittorrent/How-to-add-categories.md @@ -3,6 +3,7 @@ This basic example is based on the use of docker images !!! tip "" + Keep in mind the path are setup so it works with hardlinks and instant moves. More info [HERE](/Hardlinks/Hardlinks-and-Instant-Moves/){:target="_blank" rel="noopener noreferrer"} @@ -44,4 +45,3 @@ You don't need to add the full path under `Save Path`, it will use the root down ![!qBittorrent - Default Torrent Management Mode](images/qb-saving-management.png) {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Downloaders/qBittorrent/Paths.md b/docs/Downloaders/qBittorrent/Paths.md index cc4a62fc4..81216409f 100644 --- a/docs/Downloaders/qBittorrent/Paths.md +++ b/docs/Downloaders/qBittorrent/Paths.md @@ -1,7 +1,6 @@ # qBittorrent - Paths {! include-markdown "../../../includes/downloaders/path.md" !} - --- diff --git a/docs/Downloaders/qBittorrent/Port-forwarding.md b/docs/Downloaders/qBittorrent/Port-forwarding.md index aac951bd9..505dd6651 100644 --- a/docs/Downloaders/qBittorrent/Port-forwarding.md +++ b/docs/Downloaders/qBittorrent/Port-forwarding.md @@ -1,7 +1,8 @@ # qBittorrent - Port forwarding !!! info "" - You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded. + + You've followed the [Setup TorGuard for port forwarding](/Misc/How-to-setup-Torguard-for-port-forwarding/){:target="\_blank" rel="noopener noreferrer"} and want to know where in your download client you should add the port you've port forwarded. `Tools` => `Options` => `Connection` 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 b35ff6a39..fbb3fef95 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 @@ -23,23 +23,20 @@ Using the following instructions will allow you to move the files with the use o Download the following standalone Python script. -- [Script (mover.py)](https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/scripts/mover.py){:target="_blank" rel="noopener noreferrer"} +- [Script (mover.py)](https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/scripts/mover.py){:target="\_blank" rel="noopener noreferrer"} -Big Thnx to [bobokun](https://github.com/bobokun){:target="_blank" rel="noopener noreferrer"} Developer of [qBit Manage](https://github.com/StuffAnThings/qbit_manage){:target="_blank" rel="noopener noreferrer"} +Big Thnx to [bobokun](https://github.com/bobokun){:target="\_blank" rel="noopener noreferrer"} Developer of [qBit Manage](https://github.com/StuffAnThings/qbit_manage){:target="\_blank" rel="noopener noreferrer"} ### Plugins Install the following Plugins. - User Scripts -- NerdTools - - python3 (*1*) - - python-setuptools (*1*) - - python-pip (*1*) +- NerdTools - python3 (_1_) - python-setuptools (_1_) - python-pip (_1_) -!!! info "(*1*) These need to be installed from NerdTools." +!!! info "(_1_) These need to be installed from NerdTools." ------- +--- ## Setup @@ -52,6 +49,7 @@ The script needs the qbittorrent-api module to work, so we need to make sure it' You can choose one of the following 3 options (select a tab) to install `qbittorrent-api`. === "User scripts" + With this option, we're going to install the `qbittorrent-api` module when the Array is started the first time. In your unRAID Dashboard, go to your `Settings` tab and select `User Scripts` in the `User Utilities` section at the bottom. @@ -90,6 +88,7 @@ You can choose one of the following 3 options (select a tab) to install `qbittor ![!RUN IN BACKGROUND](images/Unraid-settings-user-scripts-qbit-api-run-background.png) === "Python venv" + With this option, we're going to create a [Python virtual environment](https://docs.python.org/3/library/venv.html) on our disk. We will use this to run and store dependencies (`qbittorrent-api`) for this specific environment. By doing this, we will **only need to configure this once** and it will be persistent after reboots *(this differs from the previous steps)*. @@ -97,6 +96,7 @@ You can choose one of the following 3 options (select a tab) to install `qbittor First, you need to choose a location to start a new Python environment. !!! info + In the next steps, you will be asked to choose a [location to store the script](#copy-the-script-to-your-preferred-location), try to be consistent. Suggestions: @@ -119,8 +119,11 @@ You can choose one of the following 3 options (select a tab) to install `qbittor ``` !!! info + Replace `/mnt/user/data/scripts/.venv` with the path you have chosen. + === "Go File" + With this option, we're going to install the `qbittorrent` module when the unRAID server is started. On your USB stick/key go to `/boot/config` and open the `go` file with your text editor ([VSCode](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"}/[Notepad++](https://notepad-plus-plus.org/downloads/){:target="_blank" rel="noopener noreferrer"}). @@ -133,7 +136,7 @@ You can choose one of the following 3 options (select a tab) to install `qbittor Restart your unRAID Server or run the above command from the terminal. ------- +--- ### Script @@ -194,6 +197,7 @@ Choose your method (select a tab) and copy/paste the script in the new window th ``` !!! info + Replace `/mnt/user/data/scripts/` in the script with the path you have chosen for the Python script. - `days_from` => Set Number of Days to stop torrents **from** for the move. diff --git a/docs/Downloaders/qBittorrent/Tips/Themes.md b/docs/Downloaders/qBittorrent/Tips/Themes.md index 3985689a7..191206a57 100644 --- a/docs/Downloaders/qBittorrent/Tips/Themes.md +++ b/docs/Downloaders/qBittorrent/Tips/Themes.md @@ -2,10 +2,10 @@ A list of known working qBittorrent themes. -| Theme | Style | Compatibility | -| ------------------------------------------------------------------------------------------------------------------------------ | ----- | --------------- | -| [Honeywell](https://github.com/stacksmash76/qbt-honeywell){:target="_blank" rel="noopener noreferrer"} | Dark | v4.3.1 - v4.4.5 | -| [Nightwalker Theme (CallMeBruce fork)](https://github.com/CallMeBruce/nightwalker){:target="_blank" rel="noopener noreferrer"} | Dark | v4.5 | -| [World of Quinoa](https://github.com/gl0ryus/woq){:target="_blank" rel="noopener noreferrer"} | Dark | v4.3.9, v4.4.5 | +| Theme | Style | Compatibility | +| ------------------------------------------------------------------------------------------------------------------------------- | ----- | --------------- | +| [Honeywell](https://github.com/stacksmash76/qbt-honeywell){:target="\_blank" rel="noopener noreferrer"} | Dark | v4.3.1 - v4.4.5 | +| [Nightwalker Theme (CallMeBruce fork)](https://github.com/CallMeBruce/nightwalker){:target="\_blank" rel="noopener noreferrer"} | Dark | v4.5 | +| [World of Quinoa](https://github.com/gl0ryus/woq){:target="\_blank" rel="noopener noreferrer"} | Dark | v4.3.9, v4.4.5 | --8<-- "includes/support.md" diff --git a/docs/Downloaders/ruTorrent/ruTorrent-Basic-Setup.md b/docs/Downloaders/ruTorrent/ruTorrent-Basic-Setup.md index 58239077b..32f73add7 100644 --- a/docs/Downloaders/ruTorrent/ruTorrent-Basic-Setup.md +++ b/docs/Downloaders/ruTorrent/ruTorrent-Basic-Setup.md @@ -1,13 +1,11 @@ # ruTorrent - Basic Setup {! include-markdown "../../../includes/downloaders/basic-setup.md" !} - ------- +--- ## Soon I've asked several people that used this download client for some help/feedback, but most of them just switched to qBittorrent. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Guide-Sync/.pages b/docs/Guide-Sync/.pages index 8340a7049..c6a0b2b5c 100644 --- a/docs/Guide-Sync/.pages +++ b/docs/Guide-Sync/.pages @@ -1,2 +1,2 @@ nav: - - Home: index.md + - Home: index.md diff --git a/docs/Guide-Sync/index.md b/docs/Guide-Sync/index.md index 00768dc5f..79bfec30c 100644 --- a/docs/Guide-Sync/index.md +++ b/docs/Guide-Sync/index.md @@ -23,11 +23,11 @@ These are 3rd party applications to sync several sections of the guide with your | Sonarr v3/v4 Naming Scheme | v | v | | Sonarr v3/v4 Quality Profiles | | v | ------- +--- ## Notifiarr -It's possible with [Notifiarr](https://notifiarr.com){:target="_blank" rel="noopener noreferrer"} ([Patron feature](https://notifiarr.wiki/FAQ#patron){:target="_blank" rel="noopener noreferrer"}) +It's possible with [Notifiarr](https://notifiarr.com){:target="\_blank" rel="noopener noreferrer"} ([Patron feature](https://notifiarr.wiki/FAQ#patron){:target="\_blank" rel="noopener noreferrer"}) Notifiarr is a service much bigger in scope than just custom format syncing. @@ -52,7 +52,7 @@ Just enable the Custom Formats/Release Profiles you want. Sonarr Release Profile (Multiple Instances possible) ![!Notifiarr Sonarr](images/sync/notifiarr-sonarr.png) -[Instructions](https://notifiarr.wiki/en/Website/Integrations/Trash){:target="_blank" rel="noopener noreferrer"} +[Instructions](https://notifiarr.wiki/en/Website/Integrations/Trash){:target="\_blank" rel="noopener noreferrer"} ### Video Tutorial @@ -64,11 +64,11 @@ Just enable the Custom Formats/Release Profiles you want. Also check out other videos from IBRACORP [HERE](https://www.youtube.com/c/IBRACORP/videos){:target="_blank" rel="noopener noreferrer"} ------- +--- ## Recyclarr -[Info](/Recyclarr/){:target="_blank" rel="noopener noreferrer"} // [Documentation](https://recyclarr.dev/wiki/){:target="_blank" rel="noopener noreferrer"} +[Info](/Recyclarr/){:target="\_blank" rel="noopener noreferrer"} // [Documentation](https://recyclarr.dev/wiki/){:target="\_blank" rel="noopener noreferrer"} Recyclarr is a command line application utilizing configuration files to sync the guides to Radarr & Sonarr. diff --git a/docs/Hardlinks/.pages b/docs/Hardlinks/.pages index a01a3c03d..60d28d24c 100644 --- a/docs/Hardlinks/.pages +++ b/docs/Hardlinks/.pages @@ -1,6 +1,6 @@ nav: - - Hardlinks - Atomic Moves: Hardlinks-and-Instant-Moves.md - - How-to-setup-for - - Examples: Examples.md - - Check if hardlinks are working: Check-if-hardlinks-are-working.md - - Replace copies with hardlinks: Replace-copies-with-hardlinks.md + - Hardlinks - Atomic Moves: Hardlinks-and-Instant-Moves.md + - How-to-setup-for + - Examples: Examples.md + - Check if hardlinks are working: Check-if-hardlinks-are-working.md + - Replace copies with hardlinks: Replace-copies-with-hardlinks.md diff --git a/docs/Hardlinks/Check-if-hardlinks-are-working.md b/docs/Hardlinks/Check-if-hardlinks-are-working.md index 97f53313f..130e5e5bb 100644 --- a/docs/Hardlinks/Check-if-hardlinks-are-working.md +++ b/docs/Hardlinks/Check-if-hardlinks-are-working.md @@ -4,9 +4,10 @@ You've followed the guide step by step but still want to check if hardlinks are You can use 3 options to check if you got working hardlinks. -*All methods require you to login to your terminal with PuTTY or similar software.* +_All methods require you to login to your terminal with PuTTY or similar software._ !!! warning + You can't create hard links for directories :bangbang: You can't cross file systems :bangbang: @@ -44,7 +45,6 @@ You will get a listing of all your files and on the left side you will see a cou This way requires a bit more work. - In the terminal type: `stat /path/to/your/download/location/file.mkv` - - In the terminal type: `stat /path/to/your/media/location/file.mkv` You will get 2 results you can use to compare several things. @@ -65,6 +65,7 @@ This will reveal the inode of your file on the left side of the file. - In your terminal type: `find /mnt/user/data/ -inum ###` or `find . -inum ###` if you're in your root folder. !!! note "" + `###` = Your inode number on the left of the file you found. ![!hardlinks inode](images/hardlinks-inode.png) diff --git a/docs/Hardlinks/Examples.md b/docs/Hardlinks/Examples.md index bebbe020f..55c2dc1e3 100644 --- a/docs/Hardlinks/Examples.md +++ b/docs/Hardlinks/Examples.md @@ -123,6 +123,6 @@ ![rtorrent-settings-autotools](images/rtorrent-settings-autotools.png) ------- +--- -Big Thanks to [fryfrog](https://github.com/fryfrog){:target="_blank" rel="noopener noreferrer"} for his [Docker Guide](https://wiki.servarr.com/docker-guide){:target="_blank" rel="noopener noreferrer"} that I used as basis for this guide. +Big Thanks to [fryfrog](https://github.com/fryfrog){:target="\_blank" rel="noopener noreferrer"} for his [Docker Guide](https://wiki.servarr.com/docker-guide){:target="\_blank" rel="noopener noreferrer"} that I used as basis for this guide. diff --git a/docs/Hardlinks/Hardlinks-and-Instant-Moves.md b/docs/Hardlinks/Hardlinks-and-Instant-Moves.md index aa33dda6c..a2d18d3ba 100644 --- a/docs/Hardlinks/Hardlinks-and-Instant-Moves.md +++ b/docs/Hardlinks/Hardlinks-and-Instant-Moves.md @@ -36,19 +36,20 @@ Then Continue to [How to setup for](/Hardlinks/How-to-setup-for/) your installat This means: - - You can delete any "copy" w/o impacting the others. + - You can delete any "copy" w/o impacting the others. - Your download client can remove it's "copy" w/o impacting the library "copy". The library "copy" can be removed by Plex or Sonarr/Radarr or yourself w/o impacting the download client "copy". + Your download client can remove it's "copy" w/o impacting the library "copy". The library "copy" can be removed by Plex or Sonarr/Radarr or yourself w/o impacting the download client "copy". - - Space is only regained when all "copies" are deleted. + - Space is only regained when all "copies" are deleted. - - Modifying the file will impact all "copies". + - Modifying the file will impact all "copies". - For example, modifying the id3 tags of a .mp3 download after import would modify the download client "copy", resulting in breaking the torrent. + For example, modifying the id3 tags of a .mp3 download after import would modify the download client "copy", resulting in breaking the torrent. [More info from Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Hard_link){:target="_blank" rel="noopener noreferrer"} !!! warning + You can't create hard links for directories :bangbang: You can't cross file systems :bangbang: diff --git a/docs/Hardlinks/How-to-setup-for/Docker.md b/docs/Hardlinks/How-to-setup-for/Docker.md index 7bbd0f61a..1935a38c8 100644 --- a/docs/Hardlinks/How-to-setup-for/Docker.md +++ b/docs/Hardlinks/How-to-setup-for/Docker.md @@ -21,20 +21,17 @@ For example `//data`, or even `/data`. {! include-markdown "../../../includes/hardlinks/folder-structure.md" !} - {! include-markdown "../../../includes/hardlinks/bad-path-suggestion.md" !} - {! include-markdown "../../../includes/hardlinks/breakdown-folder-structure-docker.md" !} - {! include-markdown "../../../includes/hardlinks/permissions.md" !} - ## Docker-compose Example !!! example "" + This is a docker-compose example based on a default Ubuntu install. The storage location used for the host is actually the same as in the container to make it easier to understand in this case `/data`. @@ -48,7 +45,5 @@ ``` {! include-markdown "../../../includes/hardlinks/docker-compose-commands.md" !} - {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Hardlinks/How-to-setup-for/Dockstarter.md b/docs/Hardlinks/How-to-setup-for/Dockstarter.md index 13089d51c..df9aa8f0e 100644 --- a/docs/Hardlinks/How-to-setup-for/Dockstarter.md +++ b/docs/Hardlinks/How-to-setup-for/Dockstarter.md @@ -18,22 +18,22 @@ storage │ │ ├── books │ │ └── tv │ └── usenet -│ ├── movies -│ ├── music -│ ├── books -│ └── tv +│ ├── movies +│ ├── music +│ ├── books +│ └── tv └── medialibrary - ├── movies - ├── music - ├── books - └── tv + ├── movies + ├── music + ├── books + └── tv ``` ## Changes to the .env To accomplish this we need to change first a few paths in your `.env` (Usually `~/.docker/compose/.env`) -``` yaml +```yaml # Global Settings COMPOSE_HTTP_TIMEOUT=60 DOCKERCONFDIR=~/.config/appdata @@ -57,7 +57,7 @@ When that's all set then you will need to change the paths you're going to use i `/books` => `/storage/medialibrary/books` -`/comics` => `/storage/medialibrary/comics` +`/comics` => `/storage/medialibrary/comics` `/movies` => `/storage/medialibrary/movies` @@ -172,4 +172,3 @@ When that's all set then you will need to change the paths you're going to use i ![ds-rtorrent-settings-autotools](images/ds-rtorrent-settings-autotools.png) {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Hardlinks/How-to-setup-for/Native.md b/docs/Hardlinks/How-to-setup-for/Native.md index a88900779..da687e70a 100644 --- a/docs/Hardlinks/How-to-setup-for/Native.md +++ b/docs/Hardlinks/How-to-setup-for/Native.md @@ -7,13 +7,9 @@ --- {! include-markdown "../../../includes/hardlinks/folder-structure.md" !} - {! include-markdown "../../../includes/hardlinks/breakdown-folder-structure.md" !} - {! include-markdown "../../../includes/hardlinks/permissions.md" !} - {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Hardlinks/How-to-setup-for/Synology.md b/docs/Hardlinks/How-to-setup-for/Synology.md index 99704e6d1..e44b6fe98 100644 --- a/docs/Hardlinks/How-to-setup-for/Synology.md +++ b/docs/Hardlinks/How-to-setup-for/Synology.md @@ -16,7 +16,7 @@ This page will provide you with guidance on how to install several Docker images ## Summary -1. We will create ***one*** share that will hold all your data. This ensures hardlinking and/or instant moves are possible. +1. We will create **_one_** share that will hold all your data. This ensures hardlinking and/or instant moves are possible. 1. Create one user which will be assigned to the docker images as the user they run as out of security reasons. 1. Create a folder structure on the `data` and `docker` share with a few commands (or manually). 1. Download and edit the `docker-compose.yml` and `.env` files to your system settings. @@ -28,6 +28,7 @@ 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 show/hide]" !!! 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. And is only for initial setup. After that, you need to manage it yourself. Rerunning the script can or will reset all personal changes made in the compose/env. The script is only tested on Synology DSM7 and higher. @@ -111,7 +112,7 @@ To enable terminal access, you need to enable SSH in the Synology Settings. ![!synology-control-panel](images/synology-ssh.png) -Then use a program like [Putty](https://www.putty.org/){:target="_blank" rel="noopener noreferrer"} or Powershell/Terminal to SSH into your Synology. +Then use a program like [Putty](https://www.putty.org/){:target="\_blank" rel="noopener noreferrer"} or Powershell/Terminal to SSH into your Synology. Enter the login information of a Synology user account that has admin priveliges, as only members of the 'administrators' user group are able to use SSH. @@ -134,12 +135,11 @@ Save these values for later use. Let's create a good folder structure on the shares we use (`docker` and `data`). This will be done with a few commands. The structure will look like this. You can of course edit this, but do this when you know what you are doing. -*We are using lowercases on all folders on purpose, being Linux is case sensitive.* +_We are using lowercases on all folders on purpose, being Linux is case sensitive._ {! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !} {! include-markdown "../../../includes/hardlinks/bad-path-suggestion.md" !} - To create the folder structure for your media library and also for your preferred download client, run one or both of the following commands: @@ -155,7 +155,7 @@ mkdir -p /volume1/data/{usenet/{incomplete,complete}/{tv,movies,music},media/{tv mkdir -p /volume1/data/{torrents/{tv,movies,music},media/{tv,movies,music}} ``` ------- +--- ### Appdata @@ -183,7 +183,7 @@ docker └── (other applications) ``` ------- +--- ## Needed files @@ -196,7 +196,7 @@ For this, we need two files: We will start with downloading the `docker-compose.yml` file -Download this [docker-compose.yml](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/docker-compose.yml){:target="_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location so you got your important stuff together. Or use the command below: +Download this [docker-compose.yml](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/docker-compose.yml){:target="\_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location so you got your important stuff together. Or use the command below: ```bash wget https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/docker-compose.yml -P /volume1/docker/appdata/ @@ -216,40 +216,43 @@ This docker-compose file will have the following docker containers included. What's not included (and where are the download clients?). -We didn't add a download client to it, because it depends on what you prefer (usenet/torrent) and which client you prefer. We have a repository [Repository](https://github.com/TRaSH-/Guides-Synology-Templates/tree/main/templates){:target="_blank" rel="noopener noreferrer"} on Github where we provide and maintain some templates that are ready to use with the main `docker-compose.yml`. +We didn't add a download client to it, because it depends on what you prefer (usenet/torrent) and which client you prefer. We have a repository [Repository](https://github.com/TRaSH-/Guides-Synology-Templates/tree/main/templates){:target="\_blank" rel="noopener noreferrer"} on Github where we provide and maintain some templates that are ready to use with the main `docker-compose.yml`. The only thing you need to do is copy & paste what's inside the template file into to the main `docker-compose.yml` on the bottom, the templates also have a command what you need to use to create the [appdata](#appdata) folder that we explained earlier. Without the appdata folder for the application, the creation of the container will fail because of the missing folder. Second we will download the `.env` file -Download this [.env](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env){:target="_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location next to the `docker-compose.yml`. Or use this command: +Download this [.env](https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env){:target="\_blank" rel="noopener noreferrer"} to your `/volume1/docker/appdata` location next to the `docker-compose.yml`. Or use this command: ```bash wget https://raw.githubusercontent.com/TRaSH-/Guides-Synology-Templates/main/docker-compose/.env -P /volume1/docker/appdata/ ``` !!! warning - :bangbang: MAKE SURE THE FILE KEEPS THE ORIGINAL NAME `.env` WITH THE DOT BEFORE IT :bangbang: ------- + :bangbang: MAKE SURE THE FILE KEEPS THE ORIGINAL NAME `.env` WITH THE DOT BEFORE IT :bangbang: + +--- ### Changes and preparations !!! tip - If you need to edit docker-compose.yml or the .env file we advise to use [Notepad++](https://notepad-plus-plus.org/){:target="_blank" rel="noopener noreferrer"} or [Visual Studio Code](https://code.visualstudio.com/){:target="_blank" rel="noopener noreferrer"} + + If you need to edit docker-compose.yml or the .env file we advise to use [Notepad++](https://notepad-plus-plus.org/){:target="\_blank" rel="noopener noreferrer"} or [Visual Studio Code](https://code.visualstudio.com/){:target="\_blank" rel="noopener noreferrer"} The `.env` file we downloaded holds the variables/information you need to change in order for everything to work. I added explanations in the `.env` file. 1. DOCKERCONFDIR (only change this if you know what you're doing and decide to use another path than this guide used) 1. DOCKERDATADIR (only change this if you know what you're doing and decide to use another path than this guide used) 1. PUID/PGID (this info you got earlier from [HERE](#puid-and-pgid)) -1. TZ (Change to your timezone, can be found [HERE](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones){:target="_blank" rel="noopener noreferrer"}) +1. TZ (Change to your timezone, can be found [HERE](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones){:target="\_blank" rel="noopener noreferrer"}) 1. Install and Create a task scheduler for Pullio, so your containers stay up to date. !!! info "" + The `.env` holds more variables/information for other containers you don't need to remove those variables and will be only used when you install the other containers. ------- +--- #### Pullio - Auto update docker-compose the correct way @@ -258,11 +261,11 @@ Pullio allows you to automatically update your containers. And send you a notifi First you need to download Pullio ```bash - sudo curl -fsSL "https://raw.githubusercontent.com/hotio/pullio/master/pullio.sh" -o /usr/local/bin/pullio + sudo curl -fsSL "https://raw.githubusercontent.com/hotio/pullio/master/pullio.sh" -o /usr/local/bin/pullio ``` ```bash - sudo chmod +x /usr/local/bin/pullio + sudo chmod +x /usr/local/bin/pullio ``` For Pullio to do it's job, you will need to create a Scheduled Task in your Task Scheduler that runs for example at 4am at night with **root** privileges. @@ -281,9 +284,9 @@ At `Task Settings` tab, add the following line in the Run Command section: It can be frustrating to test the script if no docker image updates are available, for that you can run command `sudo pullio --debug` and the script will behave as if an update is available. If you have set to receive notifications, you should receive them. -More info about Pullio [HERE](https://hotio.dev/scripts/pullio/){:target="_blank" rel="noopener noreferrer"} +More info about Pullio [HERE](https://hotio.dev/scripts/pullio/){:target="\_blank" rel="noopener noreferrer"} ------- +--- ### Permissions @@ -292,6 +295,7 @@ Now we need to make sure that the newly created files and folders have the corre If you have an existing library, it is advised to move these to the new `data` share prior to running the commands below. !!! note + If you're using a different user than `docker` (the user generated in the beginning), then you need to change the `docker:users` part in the command below!!! ```bash @@ -303,13 +307,15 @@ sudo chmod -R a=,a+rX,u+w,g+w /volume1/data /volume1/docker ``` !!! note + If you move files from a different library into the newly created library afterwards, you need to rerun these commands. !!! ------- +--- ## Run the Docker Compose !!! tip + make sure you delete/remove all your existing dockers from the Docker GUI and also remove your native installs (in Package Center) of these applications !!! If you had previous installed apps, make a backup of their config folders or backup through the webui of the app. @@ -323,27 +329,25 @@ cd /volume1/docker/appdata sudo docker-compose up -d ``` -You will notice that all the images will be downloaded, after that the containers will be started. If you get a error then read what error says and try to fix it (missing folders, permissions errors, etc). If you can't figure out the solution to your errors, join the guides-discord [here](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} and create a support ticket. +You will notice that all the images will be downloaded, after that the containers will be started. If you get a error then read what error says and try to fix it (missing folders, permissions errors, etc). If you can't figure out the solution to your errors, join the guides-discord [here](https://trash-guides.info/discord){:target="\_blank" rel="noopener noreferrer"} and create a support ticket. ------- +--- **If you need help setting up the applications, look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside your applications.** !!! warning - If you need to do any changes, only edit the `docker-compose.yml` file. To activate the changes, [run the commands from here](#run-the-docker-compose)) again. + If you need to do any changes, only edit the `docker-compose.yml` file. To activate the changes, [run the commands from here](#run-the-docker-compose) again. Any changes you do/did in the GUI will be reverted when you run the docker-compose command. Just don't use the GUI, only for information purposes !!! {! include-markdown "../../../includes/hardlinks/docker-compose-commands.md" !} - {! include-markdown "../../../includes/support.md" !} - ------- +--- ## Additional Synology Info diff --git a/docs/Hardlinks/How-to-setup-for/TrueNAS-Core.md b/docs/Hardlinks/How-to-setup-for/TrueNAS-Core.md index 83171d646..6d1d02d13 100644 --- a/docs/Hardlinks/How-to-setup-for/TrueNAS-Core.md +++ b/docs/Hardlinks/How-to-setup-for/TrueNAS-Core.md @@ -10,7 +10,7 @@ Additionally, since SMB does not support hardlinks we will only be covering the creation and use of NFS shares. ------- +--- ## Create the main dataset @@ -32,7 +32,7 @@ Click `Submit` (mine shows `Save` since this is an existing dataset) once comple ![truenas-dataset](images/truenas-dataset-options.png) ------- +--- ## Create a shared group @@ -44,7 +44,7 @@ You'll arrive at a simple configuration screen like the one shown below. Set you ![truenas-group](images/truenas-group-options.png) ------- +--- ## Create your user(s) @@ -62,7 +62,7 @@ You'll need to uncheck `New Primary Group` so you can manually populate `Primary If you're using a single, shared user and group setup (1000:1000 is the common one) you can leave New Primary Group checked. Assuming there's not a group that already exists with GID 1000 it will create that group automatically with the same name as the user. ------- +--- ## Dataset permissions @@ -76,7 +76,7 @@ Check the boxes for `Apply User`, `Apply Group`, and `Apply Permissions Recursiv ![truenas-dataset-permissions](images/truenas-dataset-permissions.png) ------- +--- ## Create your NFS share(s) @@ -96,7 +96,7 @@ Click `Submit` once complete. ![truenas-nfs-share-options](images/truenas-nfs-share-options.png) ------- +--- ## Configure and enable NFS service @@ -114,7 +114,7 @@ Make sure to check `Start Automatically` and click the slider under `Running` to ![truenas-nfs-service-options](images/truenas-nfs-service-options.png) ------- +--- ## Mount your shares @@ -122,7 +122,7 @@ Follow standard mounting procedures for your operating system/device. In Ubuntu Regardless of method, make sure that the device ends up with a `data` mount point. The mount point is important since it will allow us to follow the usual guide for folder structure. If you've followed the guide, from a NFS share standpoint the owner and group of the `/mnt/data` directory will be the user and group that were previously configured in the Dataset Permissions section. If this is improperly configured you can end up with `nobody` as the owner or group, or have permission errors. ------- +--- ## Folder Structure @@ -133,4 +133,3 @@ Now that you have a `data` folder, you can follow the normal folder structure re These subfolders you need to create yourself using your preferred method. Set your permissions accordingly as well. If you use ACLs on the datasets you can replicate the usual 775/664 (UMASK 002) or 755/644 (UMASK 022) recommendation, but this guide only covers the use of basic permissions for mounting and expects the end user to fine-tune permissions via chmod, chown, and uid/gid/umask settings on the applications that will be utilizing the share. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Hardlinks/How-to-setup-for/Unraid.md b/docs/Hardlinks/How-to-setup-for/Unraid.md index a697ec9ab..4c7ad997e 100644 --- a/docs/Hardlinks/How-to-setup-for/Unraid.md +++ b/docs/Hardlinks/How-to-setup-for/Unraid.md @@ -1,9 +1,10 @@ # unRAID !!! warning "**DO NOT** use the template paths from unRAID or the suggested paths from SpaceInvader One" + SpaceInvader One YouTube guides are great for learning how to start with unRAID or how to set up certain applications - and yes I did and still do use them.

The main reason why he's probably using those paths is because they are predefined in the templates. ------- +--- ## Preparation @@ -11,6 +12,7 @@ Make sure `Tunable (support Hard Links)` is enabled in your `Settings` => `Globa === "unRAID 6.12" ![Enable Hardlink support (New)](images/unraid-enable-hardlinks_612.png) + === "unRAID 6.11" ![Enable Hardlink support](images/unraid-enable-hardlinks.png) @@ -24,8 +26,10 @@ Go to your dashboard and select `Shares` on the navigation bar, then choose `Add === "unRAID 6.12 (No Cache)" ![!unraid-main-share-array-6-12](images/unraid_main_share_array_612.png) + === "unRAID 6.12 (Cache)" ![!unraid-main-share-cache-6-12](images/unraid_main_share_cache_612.png) + === "unRAID 6.11" ![!unraid-main-share](images/unraid-main-share.png) @@ -34,12 +38,15 @@ Go to your dashboard and select `Shares` on the navigation bar, then choose `Add === "unRAID 6.12 (No Cache)" Select the `Primary storage` as `Array` (shown in the `No Cache` tab above). + === "unRAID 6.12 (Cache)" 1. Select the `Primary storage` as `Cache` (shown in the `Cache` tab above). 1. Select the `Secondary storage` as `Array` 1. Make sure `Mover action` is set to `Cache -> Array` + === "unRAID 6.11" Choose `Yes` on step (2) (unRAID 6.11 tab above). If not using a cache drive, keep this option disabled. + !!! info "Hardlinks will stay intact if you're using a cache" 1. Click on `ADD SHARE` @@ -52,7 +59,7 @@ Go to your dashboard and select `Shares` on the navigation bar, then choose `Add With Usenet, you won't have any issues. ------- +--- ## Folder Structure @@ -60,7 +67,7 @@ On the host (unRAID) you will need to add `/mnt/user` before it. **So `/mnt/user {! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !} -*I'm using lower-case on all folders on purpose, being Linux is case-sensitive.* +_I'm using lower-case on all folders on purpose, being Linux is case-sensitive._ The `data` folder has sub-folders for `torrents` and `usenet`, and each of these has sub-folders for `tv`, `movie` and `music` downloads to keep things organized. The `media` folder has nicely named `TV`, `Movies` and `Music` sub-folders, this is where your library resides, and what you’d pass to Plex, Emby or JellyFin. @@ -68,7 +75,7 @@ You will need to create these subfolders yourself. You can do this in any way yo ### Fastest way to create the needed subfolders -The fastest way to create all the necessary subfolders would be to use the terminal, use a program like [PuTTy](https://www.putty.org/){:target="_blank" rel="noopener noreferrer"} or use the terminal from the dashboard. +The fastest way to create all the necessary subfolders would be to use the terminal, use a program like [PuTTy](https://www.putty.org/){:target="\_blank" rel="noopener noreferrer"} or use the terminal from the dashboard. These options will automatically create the required subfolders for your media library as well as your preferred download client(s). If you use both torrents and usenet, use both commands. @@ -84,12 +91,11 @@ mkdir -p /mnt/user/data/{usenet/{incomplete,complete}/{tv,movies,music},media/{t mkdir -p /mnt/user/data/{torrents/{tv,movies,music},media/{tv,movies,music}} ``` ------- +--- ### Breakdown of the Folder Structure {! include-markdown "../../../includes/hardlinks/bad-path-suggestion.md" !} - ## Setting up the containers @@ -103,7 +109,7 @@ unRAID makes it pretty clear which is the Host Path and Container Path. `Host Path:` => The actual/absolute path used on your unRAID Server (The Host). ------- +--- ### Torrent clients @@ -121,7 +127,7 @@ qBittorrent, Deluge, ruTorrent {! include-markdown "../../../includes/hardlinks/docker-tree-torrents.md" !} ------- +--- ### Usenet clients @@ -139,7 +145,7 @@ NZBGet or SABnzbd {! include-markdown "../../../includes/hardlinks/docker-tree-usenet.md" !} ------- +--- ### The Starr Apps @@ -157,7 +163,7 @@ Sonarr, Radarr and Lidarr {! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !} ------- +--- ### Media Server @@ -175,7 +181,7 @@ Plex, Emby, JellyFin and Bazarr {! include-markdown "../../../includes/hardlinks/docker-tree-media.md" !} ------- +--- ## Final Result diff --git a/docs/Hardlinks/Replace-copies-with-hardlinks.md b/docs/Hardlinks/Replace-copies-with-hardlinks.md index 58724299f..90c69d0a2 100644 --- a/docs/Hardlinks/Replace-copies-with-hardlinks.md +++ b/docs/Hardlinks/Replace-copies-with-hardlinks.md @@ -9,11 +9,13 @@ If your Operating System supports it you could make use of [Jdupes](https://code ## Usage !!! info "" + I won't cover every command :bangbang: If you want to know what else [Jdupes](https://codeberg.org/jbruchon/jdupes) can do please read the manual. !!! tip + This process can take a long time and a pretty big hit on your resources depending on how big your library is, I did notice the first time it takes longer then the second time. Not sure if this is a cache thing or something else. - That's why I suggest to do it based on categories (Movies, TV, Music etc). @@ -36,10 +38,11 @@ jdupes -rLX onlyext:mp4,mkv,avi "/data/torrents/movies/" "/data/media/movies" ``` !!! bug "" + Windows allows a maximum of 1023 hard links per file !!! Warning + The `-Q` or `--quick` option only reads each file once, hashes it, and performs comparisons based solely on the hashes. There is a small but significant risk of a hash collision which is the purpose of the failsafe byte-for-byte comparison that this option explicitly bypasses. Do not use it on ANY data set for which any amount of data loss is unacceptable. You have been warned! {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Misc/.pages b/docs/Misc/.pages index d3c1fbd82..7471e150d 100644 --- a/docs/Misc/.pages +++ b/docs/Misc/.pages @@ -1,5 +1,5 @@ nav: - - Home: index.md - - How to provide a docker compose: how-to-provide-a-docker-compose.md - - Setup TorGuard for port forwarding: How-to-setup-Torguard-for-port-forwarding.md - - x265-4k and Golden Rule: x265-4k.md + - Home: index.md + - How to provide a docker compose: how-to-provide-a-docker-compose.md + - Setup TorGuard for port forwarding: How-to-setup-Torguard-for-port-forwarding.md + - x265-4k and Golden Rule: x265-4k.md diff --git a/docs/Misc/How-to-setup-Torguard-for-port-forwarding.md b/docs/Misc/How-to-setup-Torguard-for-port-forwarding.md index 46e6812c0..8fb8b2a83 100644 --- a/docs/Misc/How-to-setup-Torguard-for-port-forwarding.md +++ b/docs/Misc/How-to-setup-Torguard-for-port-forwarding.md @@ -1,6 +1,7 @@ # Setup TorGuard for port forwarding !!! note + These settings are a recommendation if you want to choose other settings be my guest. If you want to support me, please use this [referral link](https://torguard.net/aff.php?aff=5575){:target="_blank" rel="noopener noreferrer"} and enter the following discount code: @@ -14,6 +15,7 @@ [![torguard-FreeTrial-270x90](images/torguard/torguard-FreeTrial-728x90.gif)](https://torguard.net/aff.php?aff=5575){:target="_blank" rel="noopener noreferrer"} !!! bug "" + As of 13 March Torguard Settles Piracy Lawsuit and has agreed to use commercially reasonable efforts to block BitTorrent traffic on its servers in the US using firewall technology. :bangbang: I Talked to several people and they are still able to use Torguard for Torrents, Perhaps because the connection is encrypted. And others just selected a server in another country. @@ -24,23 +26,25 @@ [Source Torrentfreak](https://torrentfreak.com/torguard-settles-piracy-lawsuit-and-agrees-to-block-torrent-traffic-on-u-s-servers-220314/){:target="_blank" rel="noopener noreferrer"}. ------- +--- ## Login to your Client area -Login to your [Client Area](https://torguard.net/clientarea.php){:target="_blank" rel="noopener noreferrer"}. +Login to your [Client Area](https://torguard.net/clientarea.php){:target="\_blank" rel="noopener noreferrer"}. ??? success "Example - [Click to show/hide]" + ![!Client Area Login](images/torguard/client-area-login.png) ### Create a user account -First we're going to create a [User Account](https://torguard.net/clientarea.php?action=changepw){:target="_blank" rel="noopener noreferrer"} for your VPN so we won't need to use your main account that you use to login to your account on the Torguard site. +First we're going to create a [User Account](https://torguard.net/clientarea.php?action=changepw){:target="\_blank" rel="noopener noreferrer"} for your VPN so we won't need to use your main account that you use to login to your account on the Torguard site. This account will be used for authentication with your VPN Torrent client. `Services` > `My Services` > `Manage` > `Manage Credentials` ??? success "Example - [Click to show/hide]" + ![!Services > My Services](images/torguard/services-my-services.png) ![!Client Area Manage Credentials](images/torguard/client-area-manage-credentials.png) @@ -48,17 +52,19 @@ This account will be used for authentication with your VPN Torrent client. Create a new username and choose a secure password or create a random username and password. ??? success "Example - [Click to show/hide]" + ![!Create User Account](images/torguard/create_user_account.png) ------- +--- ## How to get the IP of your VPN server -Now it's time to get the IP of your VPN server you're going to use from the [Global VPN Network](https://torguard.net/network/){:target="_blank" rel="noopener noreferrer"}, From your Client Area. +Now it's time to get the IP of your VPN server you're going to use from the [Global VPN Network](https://torguard.net/network/){:target="\_blank" rel="noopener noreferrer"}, From your Client Area. `Servers` > `Global VPN Network` ??? success "Example - [Click to show/hide]" + ![!Servers > Global VPN Network](images/torguard/servers-globalvpnnetwork.png) ### Global VPN Network @@ -68,6 +74,7 @@ Then we're going to select which server we're going to use, For the best speed it's recommended to choose the one nearest to your location. !!! tip "" + Sometimes you get better speeds if you use one of your neighboring countries. !!! warning "If the US server doesn't work for you use another country" @@ -77,6 +84,7 @@ Let's use for this example: `USA Miami` and copy/paste the Hostname `us-fl.torgu ![!Torguard Global VPN Network](images/torguard/globalvpnnetwork-list.png) !!! tip + Also check if your chosen server supports OpenVPN or Wireguard depending what you want to use. ### Get your VPN IP @@ -91,24 +99,27 @@ You will then get the IP of the server. Remember that for later use. ??? success "Example - [Click to show/hide]" + ![!ping](images/torguard/cmd-ping.png) ------- +--- ## How to setup Port forwarding !!! note + This section will consist of 2 parts depending if you want to use OVPN or WireGuard so make sure you choose your preferred VPN Tunnel type. ### Port Forward Request -From your Client Area go to your [My Services](https://torguard.net/clientarea.php?action=products){:target="_blank" rel="noopener noreferrer"}. +From your Client Area go to your [My Services](https://torguard.net/clientarea.php?action=products){:target="\_blank" rel="noopener noreferrer"}. Then click on `Manage` and select `Port Forward Request`. `Services` > `My Services` > `Manage` > `Port Forward Request` ??? success "Example - [Click to show/hide]" + ![!Port Forward Request](images/torguard/req_port_fwd.png) ### VPN Tunnel Type @@ -137,6 +148,7 @@ Choose your preferred VPN Tunnel type. You will also receive a e-mail with the ports you forwarded. !!! Note + Normally it doesn't take more then a few seconds/minutes to get the ports approved if it takes longer or you get `PENDING` I suggest to ping the server again (or choose another sever) and you often get a new IP and retry it again with the new IP. #### WireGuard Request Port Forward @@ -155,6 +167,7 @@ Choose your preferred VPN Tunnel type. 1. Then click on `Submit Request`. !!! warning "WARNING" + :bangbang: DON'T CHANGE OPTION 2 `UDP` to `TCP` :bangbang: If everything went according to plan you will see something like this. @@ -164,20 +177,23 @@ Choose your preferred VPN Tunnel type. You will also receive a e-mail with the ports you forwarded. !!! Note + Normally it doesn't take more then a few seconds/minutes to get the ports approved if it takes longer or you get `PENDING` I suggest to ping the server again (or choose another sever) and you often get a new IP and retry it again with the new IP. ------- +--- ## How to create the config file !!! note + This section will consist of 2 parts depending if you want to use OVPN or WireGuard so make sure you choose your preferred VPN Tunnel type. -From your Client Area go to your [Config Generator](https://torguard.net/tgconf.php?action=vpn-openvpnconfig){:target="_blank" rel="noopener noreferrer"}. +From your Client Area go to your [Config Generator](https://torguard.net/tgconf.php?action=vpn-openvpnconfig){:target="\_blank" rel="noopener noreferrer"}. `Tools` > `Config Generator` ??? success "Example Select Tools > Config Generator - [Click to show/hide]" + ![!Tools - Config Generator](images/torguard/tools-config-generator.png) ### Config Generator @@ -220,11 +236,10 @@ Choose your preferred VPN Tunnel type. Rename the file from `*.conf` to `wg0.conf` and copy it to your wireguard folder of your VPN torrent client. ------- +--- Thanks: A big Thanks to [mrhotio](https://github.com/mrhotio) for his excellent instructions on how to setup WireGuard for TorGuard. {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Misc/how-to-provide-a-docker-compose.md b/docs/Misc/how-to-provide-a-docker-compose.md index f138e0584..c76216816 100644 --- a/docs/Misc/how-to-provide-a-docker-compose.md +++ b/docs/Misc/how-to-provide-a-docker-compose.md @@ -9,6 +9,7 @@ If you need to provide this info always remember to provide it from all your Sta If you're using a system with a GUI (Synology, unRAID, OMV, etc.) it's not always easy to provide a docker compose but it's possible. !!! warning + Please don't use screenshots to provide the info as they aren't always revealing all the needed info Use one of the following commands in the terminal of your choice (e.g. puTTY) to generate the docker compose, with or without the use of `sudo`. Note that you can pass in multiple container names. @@ -24,14 +25,15 @@ sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/red5d/ ``` !!! warning + Please not share the output directly to Discord, reddit, forums, etc. Copy and paste the results on one of the following sites. -- [Notifiarr.com Privatebin](https://logs.notifiarr.com/){:target="_blank" rel="noopener noreferrer"} (Recommended) -- [Github Gist](https://gist.github.com){:target="_blank" rel="noopener noreferrer"} (Alternative) -- [hastebin.com](https://hastebin.com){:target="_blank" rel="noopener noreferrer"} -- [privatebin.net](https://privatebin.net/){:target="_blank" rel="noopener noreferrer"} -- [bpaste](https://bpa.st/){:target="_blank" rel="noopener noreferrer"} +- [Notifiarr.com Privatebin](https://logs.notifiarr.com/){:target="\_blank" rel="noopener noreferrer"} (Recommended) +- [Github Gist](https://gist.github.com){:target="\_blank" rel="noopener noreferrer"} (Alternative) +- [hastebin.com](https://hastebin.com){:target="\_blank" rel="noopener noreferrer"} +- [privatebin.net](https://privatebin.net/){:target="\_blank" rel="noopener noreferrer"} +- [bpaste](https://bpa.st/){:target="\_blank" rel="noopener noreferrer"} -If you use docker run command to create your docker containers, paste your run command in to [composerize](https://www.composerize.com/){:target="_blank" rel="noopener noreferrer"} +If you use docker run command to create your docker containers, paste your run command in to [composerize](https://www.composerize.com/){:target="\_blank" rel="noopener noreferrer"} diff --git a/docs/Misc/x265-4k.md b/docs/Misc/x265-4k.md index d1acd4e1e..23a2700eb 100644 --- a/docs/Misc/x265-4k.md +++ b/docs/Misc/x265-4k.md @@ -3,16 +3,15 @@ ## x265 {! include-markdown "../../includes/docker/x265.md" !} - ### How to accomplish the Golden Rule -- For Sonarr check [HERE](/Sonarr/sonarr-collection-of-custom-formats/#golden-rule){:target="_blank" rel="noopener noreferrer"} -- For Radarr check [HERE](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="_blank" rel="noopener noreferrer"} +- For Sonarr check [HERE](/Sonarr/sonarr-collection-of-custom-formats/#golden-rule){:target="\_blank" rel="noopener noreferrer"} +- For Radarr check [HERE](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="\_blank" rel="noopener noreferrer"} ## Some extra info about 4K/X265 -[4k, transcoding, and you - aka the rules of 4k - a FAQ](https://forums.plex.tv/t/plex-4k-transcoding-and-you-aka-the-rules-of-4k-a-faq/378203){:target="_blank" rel="noopener noreferrer"} - Plex.tv +[4k, transcoding, and you - aka the rules of 4k - a FAQ](https://forums.plex.tv/t/plex-4k-transcoding-and-you-aka-the-rules-of-4k-a-faq/378203){:target="\_blank" rel="noopener noreferrer"} - Plex.tv 1. Don’t bother transcoding 4k 1. If you cannot direct play 4k, then perhaps you should not even be collecting 4k. diff --git a/docs/Plex/.pages b/docs/Plex/.pages index 162f823d8..2b6d9c4da 100644 --- a/docs/Plex/.pages +++ b/docs/Plex/.pages @@ -1,7 +1,7 @@ nav: - - Home: index.md - - Suggested Plex Media Server Settings: /Plex/Tips/Plex-media-server/ - - Optimal Plex Client Settings: /Plex/Tips/Optimal-plex-client-settings/ - - What does my media player support: what-does-my-media-player-support.md - - Stop 4k Video Transcoding: /Plex/Tips/4k-transcoding/ - - Profiles: /Plex/profiles/ + - Home: index.md + - Suggested Plex Media Server Settings: /Plex/Tips/Plex-media-server/ + - Optimal Plex Client Settings: /Plex/Tips/Optimal-plex-client-settings/ + - What does my media player support: what-does-my-media-player-support.md + - Stop 4k Video Transcoding: /Plex/Tips/4k-transcoding/ + - Profiles: /Plex/profiles/ diff --git a/docs/Plex/Tips/4k-transcoding.md b/docs/Plex/Tips/4k-transcoding.md index 17e25f576..364ee833b 100644 --- a/docs/Plex/Tips/4k-transcoding.md +++ b/docs/Plex/Tips/4k-transcoding.md @@ -2,7 +2,7 @@ ## Introduction -The bane of Plex admins existence... 4K Transcodes. According to Plex's forum post [*The Rules of 4K*](https://forums.plex.tv/t/info-plex-4k-transcoding-and-you-aka-the-rules-of-4k/378203) the first three rules of collecting 4k content is don’t bother transcoding 4k. +The bane of Plex admins existence... 4K Transcodes. According to Plex's forum post [_The Rules of 4K_](https://forums.plex.tv/t/info-plex-4k-transcoding-and-you-aka-the-rules-of-4k/378203) the first three rules of collecting 4k content is don’t bother transcoding 4k. This guide will walk you through getting started with Tautulli and JBOPS. By the end of this guide you'll be able to stop all 4K video transcodes on your server. Note that this does require a [Plex Pass](https://www.plex.tv/plex-pass/) to work. diff --git a/docs/Plex/Tips/Optimal-plex-client-settings.md b/docs/Plex/Tips/Optimal-plex-client-settings.md index 06beb78ea..65f84faca 100644 --- a/docs/Plex/Tips/Optimal-plex-client-settings.md +++ b/docs/Plex/Tips/Optimal-plex-client-settings.md @@ -5,11 +5,11 @@ So, what are the best Plex Client settings? I was considering to start fresh on this, but then why reinvent the wheel when someone else already done the research on it? !!! danger "" + Here i will add links to 3rd party sites that will provide Optimal settings for all the possible clients that can be used to stream content. While these settings won't be optimal for everyone's setup, they will be for the majority of you. ## External Links -[The Media Clients Wiki](https://mediaclients.wiki/Plex){:target="_blank" rel="noopener noreferrer"} +[The Media Clients Wiki](https://mediaclients.wiki/Plex){:target="\_blank" rel="noopener noreferrer"} {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Plex/Tips/Plex-media-server.md b/docs/Plex/Tips/Plex-media-server.md index 354f72254..fb2b26f64 100644 --- a/docs/Plex/Tips/Plex-media-server.md +++ b/docs/Plex/Tips/Plex-media-server.md @@ -5,9 +5,11 @@ So, what are the best Plex Media Server settings? This is something that can't really be answered because it depends on the use case and your personal preference. !!! danger "" + Here I will provide some suggestions and try to explain why I recommend these settings. Adjust it to your own liking and keep in mind that it is only a suggestion. I'm not a Plex Pro in anyway :bangbang: !!! warning + Some settings are only visible for Plex Pass holders. All changes need to be done on your Plex Media Server. @@ -15,7 +17,8 @@ All changes need to be done on your Plex Media Server. ![!Plex App](images/plex-settings-icon.png) !!! info "Why didn't you cover option .... ?" - I will only cover settings that I think might be interesting or are personal preference, if you would like me to cover some other settings, please contact me on [![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord)](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} + + I will only cover settings that I think might be interesting or are personal preference, if you would like me to cover some other settings, please contact me on [![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord)](https://trash-guides.info/discord){:target="\_blank" rel="noopener noreferrer"} ## Settings @@ -31,11 +34,11 @@ All changes need to be done on your Plex Media Server. 1. Public IP **If you need to provide a screenshot always mask this IP :bangbang:** 1. Manually specify public port if you run Docker or want a fixed port. 1. Enter the Plex port you want to use. (default: `32400`) -1. Click on `Apply` and when everything is setup correctly, your Plex Media Server should be fully accessible outside of your network, so you can connect to your Plex server from outside. You may also need to configure port forwarding on your router. Detailed instructions are available [HERE](https://support.plex.tv/articles/200931138-troubleshooting-remote-access/){:target="_blank" rel="noopener noreferrer"}. +1. Click on `Apply` and when everything is setup correctly, your Plex Media Server should be fully accessible outside of your network, so you can connect to your Plex server from outside. You may also need to configure port forwarding on your router. Detailed instructions are available [HERE](https://support.plex.tv/articles/200931138-troubleshooting-remote-access/){:target="\_blank" rel="noopener noreferrer"}. 1. Enter your internet upload speed here and Plex can ensure it operates within this boundary. 1. Set the maximum bitrate of a remote stream from this server. ------- +--- ### Agents @@ -43,7 +46,7 @@ This can be ignored if you use the new Plex agents, The new agent settings are now managed “per library”. ------- +--- ### Library @@ -54,6 +57,7 @@ The new agent settings are now managed “per library”. When a change is detected in the source location for a library’s content, the appropriate library will be scanned. This function relies on the computer’s operating system providing the “something changed” trigger. Some operating systems don’t provide this trigger and content mounted via a network will also typically not work. If your library doesn’t automatically scan, you may have to set a periodical scan or do it manually. !!! success "" + **Suggested: `Enabled`** ??? tip "TIP - Autoscan - [Click to show/hide]" @@ -71,6 +75,7 @@ When a change is detected in the source location for a library’s content, the When changes to library folders are detected, only scan the folder which changed rather than scanning the entire content location. This works together with the normal Update my library automatically setting (and requires that setting to be enabled). !!! success "" + **Suggested: `Enabled`** #### Include music libraries in automatic updates @@ -86,6 +91,7 @@ I don't do music, so this choice is up to you, and I won't be covering it. Turning this on will cause your Plex Media Server to run scans on your libraries using the designated interval. !!! success "" + **Suggested: `Disabled`** *Do you need a extra scan for your library to recognize new media?* @@ -97,6 +103,7 @@ Turning this on will cause your Plex Media Server to run scans on your libraries With this option enabled, when an item’s file is deleted from the drive, it will be removed from the Plex library on the next scan. Disabling this option keeps the item in the library with an overlay over the item’s poster when the item is removed. !!! success "" + **Suggested: `Enabled`** #### Allow media deletion @@ -106,6 +113,7 @@ With this option enabled, when an item’s file is deleted from the drive, it wi The owner of the server will be allowed to delete media files from disk. !!! success "" + **Suggested: `Disabled`** *In my opinion Plex shouldn't touch your media files. Use Sonarr/Radarr to manage your media library. (For extra security I've setup Plex with Read Only access to the media library)* @@ -117,6 +125,7 @@ The owner of the server will be allowed to delete media files from disk. On low-powered systems (e.g. ARM-based NAS devices), it can be beneficial to run scanner tasks at a lower priority than other tasks. This can help ensure they do not interfere with regular streaming. !!! success "" + **Suggested: `Enabled`** *Makes sure it uses less resources and ensure they do not interfere with regular streaming.* @@ -128,11 +137,13 @@ On low-powered systems (e.g. ARM-based NAS devices), it can be beneficial to run This option creates a series of preview thumbnails from a media item when it is analyzed. These images are used by some Plex apps when you move back and forward in an app with the timeline scrubber. They’ll also be displayed in Now Playing when someone is streaming from you so that you can see where they are in the video. !!! success "" + **Suggested: `Never`** *Besides that, it uses a lot of disk space and high I/O, No one in my family uses FastForward/Rewind but they use the skip forward/backward.* !!! danger "ATTENTION" + Creating these images can - Take a considerable amount of time @@ -148,6 +159,7 @@ This option creates a series of preview thumbnails from a media item when it is You can choose to have TV episodes analyzed to try and detect when the “intro” occurs during playback. When detected, apps will then offer a `Skip Intro` button, allowing you to quickly jump over the intro. !!! success "" + **Suggested: `as a scheduled task`** *or* @@ -161,13 +173,14 @@ You can choose to have TV episodes analyzed to try and detect when the “intro Chapter thumbnails provide images in the chapter view on supported apps. They can take a little time to generate and consume very minor additional disk space. !!! success "" + **Suggested: `as a scheduled task`** *or* **Suggested: `as a scheduled task and when media is added`** ------- +--- ### Network @@ -178,6 +191,7 @@ Chapter thumbnails provide images in the chapter view on supported apps. They ca Enable IPv6 support. !!! success "" + **Suggested: `Disabled`** *If you're not sure your network 100% works with ip6 don't Enable it.* @@ -189,6 +203,7 @@ Enable IPv6 support. Choose how your Plex Media Server handles secure connections. !!! success "" + **Suggested: `Preferred`** *Accept and prefer secure connections when they’re available for a Plex app, but allow regular HTTP connections if the app doesn’t support secure connections or if one can’t be established* @@ -200,9 +215,11 @@ Choose how your Plex Media Server handles secure connections. For users with multiple network cards or systems such as NAS or Docker where there is always another network interface which Plex client applications may try to use to connect to the Plex Media Server, with this option you can ensure that your local Plex clients would only try that interface. !!! warning + If you have enabled Remote Access enabled and are having Plex automatically map the port (as opposed to specifying a port manually), then Plex Media Server has no control over which network interface is used for an automatically-mapped port. Thus, it’s possible that Remote Access connections could come through an interface other than the one specified here. !!! success "" + **Suggested: `Whatever suits your setup`** #### Strict TLS configuration @@ -212,15 +229,17 @@ For users with multiple network cards or systems such as NAS or Docker where the If this setting is enabled, it prevents Plex Media Server from using or accepting the deprecated TLSv1.0 and v1.1 protocols, as well as legacy weak ciphers. May prevent older clients from connecting. The vast majority of users will have no reason to enable this option (and receive no benefit from doing so). !!! success "" + **Suggested: `Disabled`** #### Enable local network discovery (GDM) -![!Settings - Network - Enable local network discovery (GDM)](images/settings-network-enable-local-network-discovery-(gdm).png) +![!Settings - Network - Enable local network discovery (GDM)]() Enable “G’Day Mate” discovery. This is used to allows Plex apps and servers to find each other automatically on a local network. !!! success "" + **Suggested: `Enabled`** #### Remote streams allowed per user @@ -230,6 +249,7 @@ Enable “G’Day Mate” discovery. This is used to allows Plex apps and server You can set the maximum number of simultaneous streams each remote user is allowed to have. !!! success "" + **Suggested: `Whatever suits your setup`** #### LAN Networks @@ -239,6 +259,7 @@ You can set the maximum number of simultaneous streams each remote user is allow It lets you specify which IP addresses or networks will be considered to be “local” to you. !!! success "" + **Suggested: `Your local IP/netmasks`** *If your local devices are seen as remote devices, then this could solve your issue. (Do not include spaces or tabs.)* @@ -250,6 +271,7 @@ It lets you specify which IP addresses or networks will be considered to be “l Allows incoming requests from this network’s WAN IP address to be treated as LAN requests in terms of bandwidth. This often occurs when DNS rebinding protection is in place and clients on the LAN cannot contact the server directly but instead have to go through the WAN IP address. !!! success "" + **Suggested: `Enabled`** #### Enable Relay @@ -259,6 +281,7 @@ Allows incoming requests from this network’s WAN IP address to be treated as L The Relay allows connections to the server through a proxy relay when the server is not accessible otherwise. Relay connections are bandwidth limited. !!! success "" + **Suggested: `Disabled`** *I've seen several reports where people that had this Enabled had playback issues because it seems to be limited at 2 Mbps.* @@ -270,6 +293,7 @@ The Relay allows connections to the server through a proxy relay when the server A comma-separated list of URLs (either HTTP or HTTPS), which will be published to plex.tv for server discovery. This can be very useful in a few cases: if you’re using a reverse proxy in front of the media server, or if your networking configuration is otherwise unique. For instance, if you have your own custom domain with subdomain. !!! success "" + **Suggested: `Depending on your setup`** *Example: `https://plex.mycustomdomain.com:32400`* @@ -278,9 +302,9 @@ A comma-separated list of URLs (either HTTP or HTTPS), which will be published t ![!Settings - Network - Webhooks](images/settings-network-webhooks.png) -This feature can be enabled to allow your server to send events to external services. For example [Notifiarr](https://notifiarr.com/){:target="_blank" rel="noopener noreferrer"} +This feature can be enabled to allow your server to send events to external services. For example [Notifiarr](https://notifiarr.com/){:target="\_blank" rel="noopener noreferrer"} ------- +--- ### Transcoders @@ -291,6 +315,7 @@ This feature can be enabled to allow your server to send events to external serv This will influence the quality used when transcoding media. !!! success "" + **Suggested: `Automatic`** *Most users should leave it set to Automatic. Hardware-Accelerated Streaming is not affected by this setting.* @@ -302,6 +327,7 @@ This will influence the quality used when transcoding media. Directory to use when transcoding temporary files for streaming. !!! success "" + **Suggested: `Depending on your setup, if possible, your RAM (disk)`** *Speeds up transcoding and less I/O, transcode data is temporary and doesn't need to be writing to a disk.* @@ -311,6 +337,7 @@ Directory to use when transcoding temporary files for streaming. *Default Linux only allocates a max of 50% of total system RAM to any ram directories (ie. /tmp, /dev/shm, etc.)* !!! danger "WARNING" + :bangbang: **YOU SHOULD NOT SPECIFY A LOCATION THAT RESIDES ON A NETWORK SHARE/DISK.** :bangbang: #### Enable HDR tone mapping @@ -320,11 +347,13 @@ Directory to use when transcoding temporary files for streaming. This feature allows Plex Media Server to maintain high visual fidelity of content, by applying tone mapping to convert it to SDR when transcoding HDR content. !!! success "" + **Suggested: `Depending on your setup`** *Most HDR content will be in 4K resolution. If your platform has to use software transcoding to perform the tone mapping, then it may well struggle convert 4K content in real-time, unless you’re running on a very powerful system.* !!! note + Plex’s tone mapping support should generally be able to produce good color mapping and help avoid the “washed out” colors that occur when converting HDR content without tone mapping. #### Use hardware acceleration when available @@ -334,6 +363,7 @@ This feature allows Plex Media Server to maintain high visual fidelity of conten To use Hardware-Accelerated Streaming in Plex Media Server. !!! success "" + **Suggested: `Enabled`** #### Use hardware-accelerated video encoding @@ -343,9 +373,10 @@ To use Hardware-Accelerated Streaming in Plex Media Server. To use Hardware-Accelerated Encoding in Plex Media Server. !!! success "" + **Suggested: `Enabled`** ------- +--- ## Manage @@ -377,6 +408,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. The new version of the Plex Movie agent/scanner !!! success "" + **Suggested: `Plex Movie`** *Besides being much faster at scanning and getting metadata, one of the benefits of the new agent is that all agent settings are set at the library level, so that different libraries using the same agent can have different agent settings.* @@ -386,6 +418,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. When scanning this library, use local posters and artwork if present. (Local subtitles files will be used whether this is enabled or not) !!! success "" + **Suggested: `Enabled`** *I had this enabled because I thought it was needed for local subtitles (.srt), but after research it seems it isn't needed. @@ -394,6 +427,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. When scanning this library, prefer embedded tags and local files if present. !!! success "" + **Suggested: `Disabled`** *If enabled you could end up with weird movie naming you don't want, happens especially from releases from `RARBG`* @@ -403,6 +437,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. Automatically create collections when there are more than the selected number of items for an available collection. !!! success "" + **Suggested: `2`** *Only show collections when you have more than one item in your library* @@ -412,9 +447,11 @@ Here you will find your libraries you've added to your Plex Media Server. 1. This option creates a series of preview thumbnails from a media item when it is analyzed. These images are used by some Plex apps when you move back and forward in an app with the timeline scrubber. They’ll also be displayed in Now Playing when someone is streaming from you so that you can see where they are in the video. !!! danger "ATTENTION" + Creating these images can take a considerable amount of time, CPU resources, and increase the storage space used. The images are stored in your Plex database so be careful you don’t fill the drive :bangbang: !!! success "" + **Suggested: `Disabled`** *Besides that, it uses a lot of disk space and high I/O, No one in my family uses FastForward/Rewind but they use the skip forward/backward.* @@ -423,6 +460,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. If you want to show your Collection in your library !!! success "" + **Suggested: `Disabled`** *When Disabled your movies will show up normally when you use library view, This doesn't mean it will disable the collection view.* @@ -434,6 +472,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. The new version of the Plex Movie agent/scanner !!! success "" + **Suggested: `Plex TV Series`** *Besides being much faster at scanning and getting metadata, one of the benefits of the new agent is that all agent settings are set at the library level, so that different libraries using the same agent can have different agent settings.* @@ -445,6 +484,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. When scanning this library, use local posters and artwork if present. (Local subtitles files will be used whether this is enabled or not) !!! success "" + **Suggested: `Enabled`** *I had this enabled because I thought it was needed for local subtitles (.srt), but after research it seems it isn't needed. @@ -455,6 +495,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. When scanning this library, prefer embedded tags and local files if present. !!! success "" + **Suggested: `Disabled`** *If enabled you could end up with weird movie naming you don't want, happens especially from releases from `RARBG`* @@ -464,9 +505,11 @@ Here you will find your libraries you've added to your Plex Media Server. 1. This option creates a series of preview thumbnails from a media item when it is analyzed. These images are used by some Plex apps when you move back and forward in an app with the timeline scrubber. They’ll also be displayed in Now Playing when someone is streaming from you so that you can see where they are in the video. !!! danger "ATTENTION" + Creating these images can take a considerable amount of time, CPU resources, and increase the storage space used. The images are stored in your Plex database so be careful you don’t fill the drive :bangbang: !!! success "" + **Suggested: `Disabled`** *Besides that, it uses a lot of disk space and high I/O, No one in my family uses FastForward/Rewind but they use the skip forward/backward.* @@ -475,6 +518,7 @@ Here you will find your libraries you've added to your Plex Media Server. 1. If you want to show your Collection in your library !!! success "" + **Suggested: `Disabled`** *When Disabled your tv show will show up normally when you use library view, This doesn't mean it will disable the collection view.* @@ -482,18 +526,18 @@ Here you will find your libraries you've added to your Plex Media Server. 1. Generate intro detection for items in this library when enabled in server settings. !!! success "" + **Suggested: `Enabled`** *Ever watch a TV show and it starts playing that same minute and a half credits intro that you've already watched multiple times? Well, you can have your Plex Media Server analyze the TV shows to try and detect those introductions and then let you skip through them with a single click!* ------- +--- For the information of this guide, I made use of the following sources - Information I gathered from Several Discord servers -- [Plex Support Articles](https://support.plex.tv/articles/){:target="_blank" rel="noopener noreferrer"} +- [Plex Support Articles](https://support.plex.tv/articles/){:target="\_blank" rel="noopener noreferrer"} - Extra Information gathered from a Plex employee - Own experience {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Plex/profiles/Android-SHIELD/Android-SHIELD-Android-TV.xml b/docs/Plex/profiles/Android-SHIELD/Android-SHIELD-Android-TV.xml index d85b27909..672082447 100644 --- a/docs/Plex/profiles/Android-SHIELD/Android-SHIELD-Android-TV.xml +++ b/docs/Plex/profiles/Android-SHIELD/Android-SHIELD-Android-TV.xml @@ -9,21 +9,30 @@ - - - - - - - - - + + + + + + + + + - - + + diff --git a/docs/Plex/profiles/Chromecast/Chromecast.xml b/docs/Plex/profiles/Chromecast/Chromecast.xml index 186cbd8f8..230ec5346 100644 --- a/docs/Plex/profiles/Chromecast/Chromecast.xml +++ b/docs/Plex/profiles/Chromecast/Chromecast.xml @@ -2,35 +2,38 @@ - + - - + + - - - - - + + + + + - + - - - + + + - - - - + + + + diff --git a/docs/Plex/profiles/index.md b/docs/Plex/profiles/index.md index 0e88f00bf..2b51ae08a 100644 --- a/docs/Plex/profiles/index.md +++ b/docs/Plex/profiles/index.md @@ -1,6 +1,7 @@ # Plex Profiles !!! info + Here you will find a collection of profiles you only should use if Plex has issues direct playing your media on your devices, these profiles could help but results might vary. !!! danger "The profiles aren't tested on the Shield 2019 or newer Chromecast models :warning:" @@ -13,12 +14,13 @@ To make use of the profiles you need to add it in your your plex folder Example paths: -* Hotio's container: `/appdata/plex/Profiles` -* LSIO container: `/appdata/plex/database/Library/Application Support/Plex Media Server/Profiles` or `/appdata/plex/Library/Application Support/Plex Media Server/Profiles` +- Hotio's container: `/appdata/plex/Profiles` +- LSIO container: `/appdata/plex/database/Library/Application Support/Plex Media Server/Profiles` or `/appdata/plex/Library/Application Support/Plex Media Server/Profiles` ## Profiles !!! tip + If you got some to share, pls make a PR so we can collect them at one place ### Android Shield @@ -50,4 +52,3 @@ Example paths: ``` {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Prowlarr/.pages b/docs/Prowlarr/.pages index 3853877e0..ab94b2479 100644 --- a/docs/Prowlarr/.pages +++ b/docs/Prowlarr/.pages @@ -1,5 +1,5 @@ nav: - - Home: index.md - - How to setup proxy for certain indexers: prowlarr-setup-proxy.md - - How to setup FlareSolverr: prowlarr-setup-flaresolverr.md - - How to setup indexers with limited API: prowlarr-setup-limited-api.md + - Home: index.md + - How to setup proxy for certain indexers: prowlarr-setup-proxy.md + - How to setup FlareSolverr: prowlarr-setup-flaresolverr.md + - How to setup indexers with limited API: prowlarr-setup-limited-api.md diff --git a/docs/Prowlarr/index.md b/docs/Prowlarr/index.md index 5a7aa41b0..d1c6f7c6a 100644 --- a/docs/Prowlarr/index.md +++ b/docs/Prowlarr/index.md @@ -4,7 +4,7 @@ Here you will find a collection of tips for Prowlarr. !!! info "Prowlarr is an indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports management of both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr offering complete management of your indexers with no per app Indexer setup required (we do it all)." -For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/prowlarr){:target="_blank" rel="noopener noreferrer"} +For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/prowlarr){:target="\_blank" rel="noopener noreferrer"} ## Master @@ -28,7 +28,7 @@ For Installation and Quick Start Guide please check the official [WikiArr](https (Alpha/Unstable): This is the bleeding edge. It is released as soon as code is committed and passes all automated tests. This build may have not been used by us or other users yet. There is no guarantee that it will even run in some cases. This branch is only recommended for advanced users. Issues and self investigation are expected in this branch. -***Use this branch only if you know what you are doing and are willing to get your hands dirty to recover a failed update.*** +**_Use this branch only if you know what you are doing and are willing to get your hands dirty to recover a failed update._** This version is updated immediately. @@ -36,4 +36,4 @@ This version is updated immediately. ### How do I update Prowlarr -External link to the official [WikiArr](https://wiki.servarr.com/en/prowlarr/faq#how-do-i-update-prowlarr){:target="_blank" rel="noopener noreferrer"}. +External link to the official [WikiArr](https://wiki.servarr.com/en/prowlarr/faq#how-do-i-update-prowlarr){:target="\_blank" rel="noopener noreferrer"}. diff --git a/docs/Prowlarr/prowlarr-setup-flaresolverr.md b/docs/Prowlarr/prowlarr-setup-flaresolverr.md index cfea9a9fc..dd4bf0bb9 100644 --- a/docs/Prowlarr/prowlarr-setup-flaresolverr.md +++ b/docs/Prowlarr/prowlarr-setup-flaresolverr.md @@ -1,6 +1,6 @@ # How to setup FlareSolverr -[FlareSolverr](https://github.com/FlareSolverr/FlareSolverr){:target="_blank" rel="noopener noreferrer"} is a proxy server to bypass Cloudflare and DDoS-GUARD protection. +[FlareSolverr](https://github.com/FlareSolverr/FlareSolverr){:target="\_blank" rel="noopener noreferrer"} is a proxy server to bypass Cloudflare and DDoS-GUARD protection. !!! info @@ -10,7 +10,7 @@ ## Install FlareSolverr -Please follow the installation instruction from [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr#installation){:target="_blank" rel="noopener noreferrer"} +Please follow the installation instruction from [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr#installation){:target="\_blank" rel="noopener noreferrer"} ## Add FlareSolverr to Prowlarr @@ -29,7 +29,7 @@ Add the following info 1. Name of the Proxy in Prowlarr. 1. The tags for this proxy. 1. The full host path (include http and the port) to your FlareSolverr instance. -1. The [FlareSolver Request maxTimeout value](https://github.com/FlareSolverr/FlareSolverr#-requestget){:target="_blank" rel="noopener noreferrer"} Prowlarr should use for FlareSolverr requests. Must be between `1` second and `180` seconds (Default: `60` seconds). +1. The [FlareSolver Request maxTimeout value](https://github.com/FlareSolverr/FlareSolverr#-requestget){:target="\_blank" rel="noopener noreferrer"} Prowlarr should use for FlareSolverr requests. Must be between `1` second and `180` seconds (Default: `60` seconds). 1. Test if your connection works. 1. If it works click on `Save`. diff --git a/docs/Prowlarr/prowlarr-setup-limited-api.md b/docs/Prowlarr/prowlarr-setup-limited-api.md index 011c0488a..b7ae904fd 100644 --- a/docs/Prowlarr/prowlarr-setup-limited-api.md +++ b/docs/Prowlarr/prowlarr-setup-limited-api.md @@ -68,7 +68,7 @@ For this example we're going to use `Automatic Search`. #### Setup API Limits -In Prowlarr, edit the indexer of your choice and under `Query Limit` (*API hits*) and `Grab Limit` (*Downloads*) you set your indexers API limits, these can be found in several places depending on the indexer, this could be in your profile or when you go to a page where you can select which package you want to buy. +In Prowlarr, edit the indexer of your choice and under `Query Limit` (_API hits_) and `Grab Limit` (_Downloads_) you set your indexers API limits, these can be found in several places depending on the indexer, this could be in your profile or when you go to a page where you can select which package you want to buy. !!! warning "We're adding this to prevent any abuse/hammering to the indexer
Ignoring this can sometimes result in a (potentially lifetime) ban." diff --git a/docs/Prowlarr/prowlarr-setup-proxy.md b/docs/Prowlarr/prowlarr-setup-proxy.md index 0a8f624f5..7a4518e26 100644 --- a/docs/Prowlarr/prowlarr-setup-proxy.md +++ b/docs/Prowlarr/prowlarr-setup-proxy.md @@ -1,12 +1,13 @@ # Setup proxy for certain indexers -It's not recommended to run the Starr apps through a VPN, what can happen is that the Starr apps doesn't update the posters or metadata or you can't add new movies/tv shows, it doesn't need to happen right away. but sooner or later it can and probably will happen. +It's not recommended to run the Starr apps through a VPN, what can happen is that the Starr apps doesn't update the posters or metadata or you can't add new movies/tv shows, it doesn't need to happen right away. but sooner or later it can and probably will happen. !!! danger "To be clear it is not a matter if VPNs will cause issues with the Starr Apps, but when: image providers will block you and cloudflare is in front of most of Starr servers (updates, metadata, etc.) and liable to block you too" Just run VPN on the apps that actually need it, like your torrent client, and perhaps in some cases certain indexers because of region/ISP restriction. !!! warning + Please check the indexers rules if you're allowed to use a VPN/Proxy to access their site, being that VPN services often use shared IP it could be recognized as account sharing. This isn't the same as the tracker, the API/Website scraping happens on the actual site and some indexers don't allow VPN usage on their site. diff --git a/docs/Radarr/.pages b/docs/Radarr/.pages index 986e2fffd..aaea86db3 100644 --- a/docs/Radarr/.pages +++ b/docs/Radarr/.pages @@ -1,12 +1,12 @@ nav: - - Home: index.md - - Quality Settings (File Size): Radarr-Quality-Settings-File-Size.md - - Recommended naming scheme: Radarr-recommended-naming-scheme.md - - 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 Quality Profiles: radarr-setup-quality-profiles.md - - How to setup Quality Profiles (Anime): radarr-setup-quality-profiles-anime.md - - How to setup Quality Profiles (French): radarr-setup-quality-profiles-french-en.md - - Collection of Custom Formats: Radarr-collection-of-custom-formats.md - - Remote Path Mappings explained: Radarr-remote-path-mapping.md - - Tips + - Home: index.md + - Quality Settings (File Size): Radarr-Quality-Settings-File-Size.md + - Recommended naming scheme: Radarr-recommended-naming-scheme.md + - 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 Quality Profiles: radarr-setup-quality-profiles.md + - How to setup Quality Profiles (Anime): radarr-setup-quality-profiles-anime.md + - How to setup Quality Profiles (French): radarr-setup-quality-profiles-french-en.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-Quality-Settings-File-Size.md b/docs/Radarr/Radarr-Quality-Settings-File-Size.md index fde4de995..1ea12203c 100644 --- a/docs/Radarr/Radarr-Quality-Settings-File-Size.md +++ b/docs/Radarr/Radarr-Quality-Settings-File-Size.md @@ -6,6 +6,7 @@ Well, it's actually personal preference so I will show you my recommendations. But before you continue to read, as with all my guides: !!! danger "" + **If you don't care about quality then stop reading and see if the other tutorials are helpful for you.** These Quality Settings have been created and tested with info I got from others, and release comparisons from different sources. @@ -35,7 +36,7 @@ These Quality Settings have been created and tested with info I got from others, - I won't accept changes for micro sized releases. - Documentaries and cartoons are often much smaller so I probably won't edit those either. ------- +--- ## Radarr Quality Definitions @@ -59,6 +60,7 @@ These Quality Settings have been created and tested with info I got from others, | {{ radarr['quality-size']['movie']['qualities'][13]['quality'] }} | {{ radarr['quality-size']['movie']['qualities'][13]['min'] }} | {{ radarr['quality-size']['movie']['qualities'][13]['max'] }} | !!! note + The reason why you don't see the `Preferred` score in the table above is because we want max quality anyway. So set it as high as possible. The highest preferred quality you can manually enter is 1 less than the Maximum quality. If you use the slider, the preferred quality can be up to 5 lesser than the Maximum quality. @@ -66,4 +68,3 @@ These Quality Settings have been created and tested with info I got from others, Make sure you have enabled 'Show Advanced' in Radarr, if you don't see a provision to enter the scores, under the Quality settings. {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index 11e490176..24ed78dbe 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -11,9 +11,9 @@ After requesting with Team Radarr, we now have the option to import/export the C We've made 3 guides related to this. -- [How to import Custom Formats](/Radarr/Radarr-import-custom-formats){:target="_blank" rel="noopener noreferrer"} - Explains how to import the Custom Formats. -- [How to upgrade Custom Formats](/Radarr/Radarr-how-to-update-custom-formats){:target="_blank" rel="noopener noreferrer"} - Explains how to upgrade your existing Custom Formats. -- [How to set up Quality Profiles](/Radarr/radarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most use of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences. +- [How to import Custom Formats](/Radarr/Radarr-import-custom-formats){:target="\_blank" rel="noopener noreferrer"} - Explains how to import the Custom Formats. +- [How to upgrade Custom Formats](/Radarr/Radarr-how-to-update-custom-formats){:target="\_blank" rel="noopener noreferrer"} - Explains how to upgrade your existing Custom Formats. +- [How to set up Quality Profiles](/Radarr/radarr-setup-quality-profiles){:target="\_blank" rel="noopener noreferrer"} - Explains how to make the most use of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences. !!! tip @@ -141,7 +141,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/truehd-atmos.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -157,7 +157,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dts-x.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -173,7 +173,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/atmos-undefined.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -189,7 +189,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ddplus-atmos.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -205,7 +205,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/truehd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -221,7 +221,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dts-hd-ma.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -237,7 +237,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/flac.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -253,7 +253,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/pcm.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -269,7 +269,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dts-hd-hra.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -287,7 +287,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ddplus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -303,7 +303,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dts-es.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -321,7 +321,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dts.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -337,7 +337,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/aac.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -355,7 +355,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -371,7 +371,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/mp3.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -387,7 +387,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/opus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -403,7 +403,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/10-mono.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -415,7 +415,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/20-stereo.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -427,7 +427,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/30-sound.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -439,7 +439,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/40-sound.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -451,7 +451,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/51-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -463,7 +463,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/61-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -475,7 +475,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/71-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -487,7 +487,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/91-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -510,7 +510,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-hdr10plus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -528,7 +528,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-hdr10.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -548,7 +548,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -566,7 +566,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-hlg.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -584,7 +584,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-sdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -602,7 +602,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hdr10plus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -620,7 +620,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hdr10.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -638,7 +638,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -654,7 +654,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hdr-undefined.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -672,7 +672,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/pq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -690,7 +690,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hlg.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -710,7 +710,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hybrid.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -726,10 +726,10 @@ We've made 3 guides related to this. ??? example "JSON - [Click to show/hide]" ```json - [[% filter indent(width=4) %]][[% include 'json/radarr/cf/remaster.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/remaster.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -749,7 +749,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/4k-remaster.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -765,7 +765,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/criterion-collection.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -781,7 +781,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/masters-of-cinema.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -797,7 +797,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/vinegar-syndrome.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -813,7 +813,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/theatrical-cut.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -832,7 +832,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/special-edition.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -850,7 +850,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/imax.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -882,7 +882,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/imax-enhanced.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -898,7 +898,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/open-matte.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -930,7 +930,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/br-disk.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -949,7 +949,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/lq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -967,7 +967,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/lq-release-title.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -985,7 +985,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/3d.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1000,6 +1000,7 @@ We've made 3 guides related to this. In your quality profile use the following score for this Custom Format: `{{ radarr['cf']['x265-hd']['trash_scores']['default'] }}` !!! failure "" + --8<-- "includes/docker/x265.md" !!! 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:" @@ -1010,7 +1011,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-hd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1026,7 +1027,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/upscaled.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1042,7 +1043,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/extras.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1053,6 +1054,7 @@ We've made 3 guides related to this. ### Bad Dual Groups ??? question "Bad dual groups - [Click to show/hide]" + These groups take the original release and add their own language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe is that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as the first track. Also they often even translate/rename the release name to Portuguese. @@ -1062,7 +1064,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/bad-dual-groups.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1071,6 +1073,7 @@ We've made 3 guides related to this. DV = DoVi = Dolby Vision ??? question "DV (WEBDL) - [Click to show/hide]" + This is a special Custom Format that blocks WEBDLs **with** Dolby Vision but **without** HDR10 fallback. You will need to add the following as a new Custom Format, and when created adjust the scoring in your Quality Profile (`Setting` => `Profiles`) to `-10000`. @@ -1087,7 +1090,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-webdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1105,7 +1108,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/evo-no-webdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1121,7 +1124,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hdr10plus-boost.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1137,7 +1140,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-hdr10plus-boost.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1158,7 +1161,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/no-rlsgroup.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1174,7 +1177,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/obfuscated.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1190,7 +1193,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/retags.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1206,7 +1209,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/scene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1230,7 +1233,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1249,7 +1252,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/av1.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1268,7 +1271,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/vp9.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1285,7 +1288,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/internal.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1301,7 +1304,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/sdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1317,7 +1320,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/sdr-no-webdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1333,7 +1336,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dv-disk.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1351,7 +1354,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/line-mic-dubbed.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1367,7 +1370,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hfr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1383,7 +1386,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/repack-proper.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1395,7 +1398,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/repack2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1413,7 +1416,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x264.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1426,6 +1429,7 @@ We've made 3 guides related to this. This applies to all x265/HEVC releases that are not Remux. !!! failure "" + Please don't forget to read the following [Microsized & Wrong Source](#microsized-wrong-source) ??? example "JSON - [Click to show/hide]" @@ -1434,7 +1438,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x265.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1452,7 +1456,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/x266.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1463,6 +1467,7 @@ We've made 3 guides related to this. 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. !!! warning + Keep in mind not all trackers support this option. ??? example "JSON - [Click to show/hide]" @@ -1471,7 +1476,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/freeleech.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1487,7 +1492,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dutch-groups.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1499,7 +1504,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/mpeg2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1511,7 +1516,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/multi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1535,7 +1540,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/remux-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1555,7 +1560,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/remux-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1578,7 +1583,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/remux-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1600,7 +1605,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/uhd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1621,7 +1626,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/uhd-bluray-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1643,7 +1648,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/uhd-bluray-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1664,7 +1669,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1683,7 +1688,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hd-bluray-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1703,7 +1708,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hd-bluray-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1723,7 +1728,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/web-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1742,7 +1747,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/web-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1761,7 +1766,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/web-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1785,7 +1790,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/amzn.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1803,7 +1808,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/atvp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1821,7 +1826,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/bcore.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1839,7 +1844,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/crit.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1857,7 +1862,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dsnp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1875,7 +1880,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hbo.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1893,7 +1898,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hmax.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1911,7 +1916,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hulu.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1929,7 +1934,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/max.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1947,7 +1952,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ma.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1965,7 +1970,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/nf.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1983,7 +1988,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/pcok.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2001,7 +2006,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/pmtp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2019,7 +2024,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/stan.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2041,7 +2046,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/fod.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2059,7 +2064,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/htsr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2077,7 +2082,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/tver.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2095,7 +2100,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/tving.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2113,7 +2118,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/u-next.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2131,7 +2136,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/viu.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2153,7 +2158,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/pathe.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2171,7 +2176,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/vdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2193,7 +2198,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ip.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2211,7 +2216,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/itvx.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2229,7 +2234,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/now.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2251,7 +2256,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/crav.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2269,7 +2274,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ovid.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2287,7 +2292,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/strp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2307,7 +2312,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/vrv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2318,6 +2323,7 @@ We've made 3 guides related to this. ### Anime BD Tier 01 (Top SeaDex Muxers) ??? question "Anime BD Tier 01 (Top SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2326,13 +2332,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-01-top-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 02 (SeaDex Muxers) ??? question "Anime BD Tier 02 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2341,13 +2348,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-02-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 03 (SeaDex Muxers) ??? question "Anime BD Tier 03 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2356,13 +2364,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-03-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 04 (SeaDex Muxers) ??? question "Anime BD Tier 04 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2371,13 +2380,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-04-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 05 (Remuxes) ??? question "Anime BD Tier 05 (Remuxes) - [Click to show/hide]" + Groups that are consistent and do Remuxes ??? example "JSON - [Click to show/hide]" @@ -2386,13 +2396,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-05-remuxes.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 06 (FanSubs) ??? question "Anime BD Tier 06 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2401,13 +2412,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-06-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 07 (P2P/Scene) ??? question "Anime BD Tier 07 (P2P/Scene) - [Click to show/hide]" + Known P2P and Scene Anime groups ??? example "JSON - [Click to show/hide]" @@ -2416,13 +2428,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-07-p2pscene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 08 (Mini Encodes) ??? question "Anime BD Tier 08 (Mini Encodes) - [Click to show/hide]" + Know groups that do mini encodes ??? example "JSON - [Click to show/hide]" @@ -2431,13 +2444,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-bd-tier-08-mini-encodes.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 01 (Muxers) ??? question "Anime Web Tier 01 (Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2446,13 +2460,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-01-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 02 (Top FanSubs) ??? question "Anime Web Tier 02 (Top FanSubs) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2461,13 +2476,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-02-top-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 03 (Official Subs) ??? question "Anime Web Tier 03 Official Subs) - [Click to show/hide]" + Official sub groups that tend to be more consistent and release fast ??? example "JSON - [Click to show/hide]" @@ -2476,13 +2492,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-03-official-subs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 04 (Official Subs) ??? question "Anime Web Tier 04 (Official Subs) - [Click to show/hide]" + Official sub groups ??? example "JSON - [Click to show/hide]" @@ -2491,13 +2508,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-04-official-subs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 05 (FanSubs) ??? question "Anime Web Tier 05 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2506,13 +2524,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-05-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 06 (FanSubs) ??? question "Anime Web Tier 06 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2521,13 +2540,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-web-tier-06-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Raws ??? question "Anime Raws - [Click to show/hide]" + A collection of know groups that release raws ??? example "JSON - [Click to show/hide]" @@ -2536,13 +2556,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-raws.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime LQ Groups ??? question "Anime LQ Groups - [Click to show/hide]" + A collection of known Low Quality groups. ??? example "JSON - [Click to show/hide]" @@ -2551,13 +2572,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-lq-groups.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Uncensored ??? question "Uncensored - [Click to show/hide]" + This CF covers releases that are uncensored ??? example "JSON - [Click to show/hide]" @@ -2566,13 +2588,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/uncensored.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v0 ??? question "v0 - [Click to show/hide]" + CF to cover releases named with v0 which we don't want ??? example "JSON - [Click to show/hide]" @@ -2581,13 +2604,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v0.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v1 ??? question "v1 - [Click to show/hide]" + CF to cover v1 releases ??? example "JSON - [Click to show/hide]" @@ -2596,13 +2620,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v1.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v2 ??? question "v2 - [Click to show/hide]" + CF to cover v2 releases ??? example "JSON - [Click to show/hide]" @@ -2611,13 +2636,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v3 ??? question "v3 - [Click to show/hide]" + CF to cover v3 releases ??? example "JSON - [Click to show/hide]" @@ -2626,13 +2652,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v3.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v4 ??? question "v4 - [Click to show/hide]" + CF to cover v4 releases ??? example "JSON - [Click to show/hide]" @@ -2641,13 +2668,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/v4.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### 10bit ??? question "10bit - [Click to show/hide]" + This CF covers releases that are 10bit ??? example "JSON - [Click to show/hide]" @@ -2656,13 +2684,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/10bit.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Dual Audio ??? question "Anime Dual Audio - [Click to show/hide]" + This CF covers releases that have Dual Audio ??? example "JSON - [Click to show/hide]" @@ -2671,13 +2700,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/anime-dual-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Dubs Only ??? question "Dubs Only - [Click to show/hide]" + This CF covers releases that only have Dubs ??? example "JSON - [Click to show/hide]" @@ -2686,7 +2716,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/dubs-only.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2706,7 +2736,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/multi-french.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2722,7 +2752,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/multi-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2738,7 +2768,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2754,7 +2784,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vff.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2770,7 +2800,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vof.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2786,7 +2816,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2802,7 +2832,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vf2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2818,7 +2848,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2834,7 +2864,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-voq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2850,7 +2880,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2866,7 +2896,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vfb.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2882,7 +2912,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-vostfr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2898,7 +2928,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/fansub.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2914,7 +2944,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/fastsub.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2936,7 +2966,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-remux-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2957,7 +2987,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-remux-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2977,7 +3007,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-uhd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2999,7 +3029,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-uhd-bluray-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3018,7 +3048,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-hd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3038,7 +3068,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-hd-bluray-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3056,7 +3086,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-web-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3075,7 +3105,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-web-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3091,7 +3121,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-scene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3116,4 +3146,4 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/radarr/cf/french-lq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) diff --git a/docs/Radarr/Radarr-how-to-update-custom-formats.md b/docs/Radarr/Radarr-how-to-update-custom-formats.md index 5796ce85f..202a0df27 100644 --- a/docs/Radarr/Radarr-how-to-update-custom-formats.md +++ b/docs/Radarr/Radarr-how-to-update-custom-formats.md @@ -6,7 +6,7 @@ Here I will try to explain how you can manually update Custom Formats for Radarr ## How to Copy/Paste the JSON -The manual way is almost the same as the Import Custom Format way found [HERE](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"} +The manual way is almost the same as the Import Custom Format way found [HERE](/Radarr/Radarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"} ### In Radarr @@ -20,7 +20,7 @@ The manual way is almost the same as the Import Custom Format way found [HERE](/ ### Paste the Custom Format -In the empty `Custom Format JSON` box (1) you just paste the `JSON` that you got from the [Custom Format Collection](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} or provided to you from other sources followed by the `Import` button (2). +In the empty `Custom Format JSON` box (1) you just paste the `JSON` that you got from the [Custom Format Collection](/Radarr/Radarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} or provided to you from other sources followed by the `Import` button (2). ![cf-import-cf](images/cf-import-cf.png) @@ -36,6 +36,6 @@ After selecting the `Import` button you will get a screen that has all the Custo This can be done also automatically with one of the TRaSH Sync Applications, -more info can be found [Here](/Guide-Sync/){:target="_blank" rel="noopener noreferrer"} +more info can be found [Here](/Guide-Sync/){:target="\_blank" rel="noopener noreferrer"} --8<-- "includes/support.md" diff --git a/docs/Radarr/Radarr-import-custom-formats.md b/docs/Radarr/Radarr-import-custom-formats.md index a3914066d..fa72605f5 100644 --- a/docs/Radarr/Radarr-import-custom-formats.md +++ b/docs/Radarr/Radarr-import-custom-formats.md @@ -6,9 +6,9 @@ Here I will try to explain how you can manually import Custom Formats for Radarr ## How to Copy/Paste the JSON from the site -In this example I will use the [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk){:target="_blank" rel="noopener noreferrer"} Custom Format, the one most people don't want to download anyway. And if you do, then you probably don't use any of the Starr apps or Plex, being both don't support it. +In this example I will use the [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk){:target="\_blank" rel="noopener noreferrer"} Custom Format, the one most people don't want to download anyway. And if you do, then you probably don't use any of the Starr apps or Plex, being both don't support it. -Visit the [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} and select [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk){:target="_blank" rel="noopener noreferrer"} from the table. +Visit the [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} and select [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk){:target="\_blank" rel="noopener noreferrer"} from the table. ![cf-table-select-brdisk](images/cf-table-select-brdisk.png) @@ -40,7 +40,7 @@ Followed by the `Import` in the lower left. ### Paste the Custom Format -Paste the `JSON` in the empty `Custom Format JSON` box (1) that you got from the [Custom Format Collection](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} followed by the `Import` button (2). +Paste the `JSON` in the empty `Custom Format JSON` box (1) that you got from the [Custom Format Collection](/Radarr/Radarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} followed by the `Import` button (2). ![cf-import-cf](images/cf-import-cf.png) @@ -54,9 +54,9 @@ all you need to do now is click on the `Save` button and you're done. ### 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-quality-profiles/#basics){:target="_blank" rel="noopener noreferrer"} +How this is done is explained [HERE](/Radarr/radarr-setup-quality-profiles/#basics){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Start adding other Custom Formats wisely @@ -70,6 +70,6 @@ How this is done is explained [HERE](/Radarr/radarr-setup-quality-profiles/#basi This can be done also automatically with one of the TRaSH Sync Applications, -more info can be found [Here](/Guide-Sync/){:target="_blank" rel="noopener noreferrer"} +more info can be found [Here](/Guide-Sync/){:target="\_blank" rel="noopener noreferrer"} --8<-- "includes/support.md" diff --git a/docs/Radarr/Radarr-recommended-naming-scheme.md b/docs/Radarr/Radarr-recommended-naming-scheme.md index b210e4f12..80c1a1b33 100644 --- a/docs/Radarr/Radarr-recommended-naming-scheme.md +++ b/docs/Radarr/Radarr-recommended-naming-scheme.md @@ -1,6 +1,6 @@ # Recommended naming scheme -On the [Radarr Discord](https://radarr.video/discord){:target="_blank" rel="noopener noreferrer"} people often ask, "What's the recommended/best way to +On the [Radarr Discord](https://radarr.video/discord){:target="\_blank" rel="noopener noreferrer"} people often ask, "What's the recommended/best way to name your files?" First off, it's personal preference, but it's often recommended to add non-recoverable info. Why? @@ -11,7 +11,7 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc. The Tokens not available in the release won't be used/shown. ------- +--- ## Preparation @@ -29,7 +29,7 @@ Finally, enable `Rename Movies` to reveal the movie renaming options. ## Standard Movie Format -This naming scheme is made to be compatible with the [New Plex Agent](https://forums.plex.tv/t/new-plex-media-server-movie-scanner-and-agent-preview/593269/517){:target="_blank" rel="noopener noreferrer"} that now supports IMDb and TMDb IDs in filenames, if you don't need it or want it just remove `{imdb-{ImdbId}}` +This naming scheme is made to be compatible with the [New Plex Agent](https://forums.plex.tv/t/new-plex-media-server-movie-scanner-and-agent-preview/593269/517){:target="\_blank" rel="noopener noreferrer"} that now supports IMDb and TMDb IDs in filenames, if you don't need it or want it just remove `{imdb-{ImdbId}}` !!! warning "Starting from v4.2.2.6489, Radarr now supports Plex Multiple Edition tags in naming." @@ -99,9 +99,9 @@ This naming scheme is made to be compatible with the [New Plex Agent](https://fo `The Movie Title (2010) [imdbid-tt0066921] - {edition-Ultimate Extended Edition} [Surround Sound x264][Bluray-1080p Proper][3D][DTS 5.1][DE][10bit][AVC]-EVOLVE` ------- +--- -## Original Title vs Original Filename +## Original Title vs Original Filename ### Original Title @@ -117,7 +117,7 @@ The filename can be Obscured where the Release naming isn't, especially when you `{Original Filename}` => `group-karatekid-1080p` or `lchd-tkk1080p` or `t1i0p3s7i8yuti` ------- +--- ## Movie Folder Format @@ -137,9 +137,10 @@ The filename can be Obscured where the Release naming isn't, especially when you RESULT: `The Movie Title (2010)` ------- +--- !!! note + Keep in mind adding anything more after the release year could give issues during a fresh import in to Radarr, but it helps for movies that have the same release name and year. **Radarr supports IMDb ID and TMDb ID in the folder name.** @@ -150,7 +151,7 @@ The filename can be Obscured where the Release naming isn't, especially when you #### Optional Movies Folder Format -This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names. +This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="\_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names. ##### Optional Plex @@ -177,9 +178,10 @@ This naming scheme is made to be compatible with the new [Plex TV Series Scanner RESULT: `The Movie Title (2010) [imdbid-tt1520211]` !!! tip + IMDb IDs are going to be very accurate and rarely change, TVDB/TMDB IDs, on the other hand, do change or are removed more frequently. ------- +--- Thanks: diff --git a/docs/Radarr/Radarr-remote-path-mapping.md b/docs/Radarr/Radarr-remote-path-mapping.md index fd48b25b2..39ada0a31 100644 --- a/docs/Radarr/Radarr-remote-path-mapping.md +++ b/docs/Radarr/Radarr-remote-path-mapping.md @@ -11,13 +11,14 @@ Remote Path Mapping acts as a dumb find `Remote Path` and replace with `Local Pa - You run dockers and **DON'T** have consistent and well planned paths. !!! note + If you run dockers it would be smarter to fix the problem at the source of what's causing the actual issue. - [Radarr Wiki Servarr - Docker Guide](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths){:target="_blank" rel="noopener noreferrer"} - [TRaSH Guides](/Hardlinks/Hardlinks-and-Instant-Moves/){:target="_blank" rel="noopener noreferrer"} ------- +--- ## How do I recognize that I need remote path mappings @@ -41,7 +42,7 @@ The following error could also mean that you need remote path mappings: So looking at these screenshot it seems you need to make use of remote path mappings. ------- +--- ## How do I setup remote path mappings @@ -105,4 +106,3 @@ The final result will look something like this: After these changes the file should be able to be imported by Radarr. {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Radarr/Tips/How-to-setup-language-custom-formats.md b/docs/Radarr/Tips/How-to-setup-language-custom-formats.md index 024706508..3258253cf 100644 --- a/docs/Radarr/Tips/How-to-setup-language-custom-formats.md +++ b/docs/Radarr/Tips/How-to-setup-language-custom-formats.md @@ -10,7 +10,7 @@ Import the JSON in to your Custom Formats. How ? -Follow the [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. +Follow the [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"}. --- diff --git a/docs/Radarr/Tips/Merge-quality.md b/docs/Radarr/Tips/Merge-quality.md index f123cd147..2805bc22d 100644 --- a/docs/Radarr/Tips/Merge-quality.md +++ b/docs/Radarr/Tips/Merge-quality.md @@ -11,10 +11,8 @@ To accomplish this you will need to merge the qualities with each other. Here you will see the current logic so you understand how the possible downloads are compared. {! include-markdown "../../../includes/merge-quality/radarr-current-logic.md" !} - {! include-markdown "../../../includes/merge-quality/sonarr-current-logic.md" !} - ## Merge the Qualities @@ -35,4 +33,3 @@ To merge them you need to click on Edit Groups. When done Sonarr/Radarr upgrades will be handled via Preferred Words / Custom Formats. {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Radarr/Tips/Radarr-rename-your-folders.md b/docs/Radarr/Tips/Radarr-rename-your-folders.md index e72f2e3c6..76c0b5ca2 100644 --- a/docs/Radarr/Tips/Radarr-rename-your-folders.md +++ b/docs/Radarr/Tips/Radarr-rename-your-folders.md @@ -16,7 +16,7 @@ Once you are in "edit" mode, you can select the movie(s) whose folders you want ![!radarr-movie-editor-select](images/radarr-movie-editor-select.png) -1. If you want all your movie's folders to be renamed with the new naming scheme you set [HERE](/Radarr/Radarr-recommended-naming-scheme){:target="_blank" rel="noopener noreferrer"}. +1. If you want all your movie's folders to be renamed with the new naming scheme you set [HERE](/Radarr/Radarr-recommended-naming-scheme){:target="\_blank" rel="noopener noreferrer"}. 1. Select the movie(s) that you want to have the folder(s) renamed. 1. At the bottom select `Edit` @@ -31,6 +31,7 @@ Choose the same (current) root folder for your selected movies, and choose `Appl You will get a warning popup where you will need to choose `Yes, Move the files` !!! warning + If you have a large library, use remote or cloud storage, or your path structure isn't well planned (or doesn't support instant moves) this could take a while. **Make sure you don't interrupt this process.** If it stops before it has been completed, it could result in quite a mess. diff --git a/docs/Radarr/Tips/Radarr-show-unknown-movie-items.md b/docs/Radarr/Tips/Radarr-show-unknown-movie-items.md index e012bd15c..ffb987b86 100644 --- a/docs/Radarr/Tips/Radarr-show-unknown-movie-items.md +++ b/docs/Radarr/Tips/Radarr-show-unknown-movie-items.md @@ -13,4 +13,3 @@ Then on the top right click on `Options` and a new window will popup and enable ![!Enable Show Unknown Movie Items](images/Radarr-show-unknown-movie-item.png) {! include-markdown "../../../includes/support.md" !} - diff --git a/docs/Radarr/Tips/Sync-2-radarr-sonarr.md b/docs/Radarr/Tips/Sync-2-radarr-sonarr.md index cdc106e39..f6a4f76a0 100644 --- a/docs/Radarr/Tips/Sync-2-radarr-sonarr.md +++ b/docs/Radarr/Tips/Sync-2-radarr-sonarr.md @@ -8,14 +8,15 @@ I'm going to show two different options on how you can setup your sync with two - Option 2: This option is best used if you only want to cherry pick which Movies/TV Shows you want as 4K/2160p (UHD). !!! bug "" - I'm not going to explain how to set up two Radarr/Sonarr instances for your system, being it depends on how you have it installed/running. [Radarr Multiple Instance Information](https://wiki.servarr.com/radarr/installation#multiple-instances) and [Sonarr Multiple Instance Information](https://wiki.servarr.com/sonarr/installation#multiple-instances) + + I'm not going to explain how to set up two Radarr/Sonarr instances for your system, being it depends on how you have it installed/running. [Radarr Multiple Instance Information](https://wiki.servarr.com/radarr/installation#multiple-instances) and [Sonarr Multiple Instance Information](https://wiki.servarr.com/sonarr/installation#multiple-instances) ## Preparation For this you need to have prepared the following: - Two Radarr/Sonarr instances fully setup (Indexers, Custom Formats, Downloaders, etc). -- One download client (*Two if you prefer Usenet and Torrents*). +- One download client (_Two if you prefer Usenet and Torrents_). - Your download client has two separate categories (movies-hd, movies-uhd, tv-hd, tv-uhd, etc) !!! warning @@ -24,11 +25,12 @@ For this you need to have prepared the following: Make sure you use two separate root folders in Radarr/Sonarr (movies-hd, movies-uhd, tv-hd, tv-uhd, etc) ------- +--- ### Option 1 !!! info "" + In this example I'm going to use two Radarr instances (The basics is the same for Sonarr). - `Radarr 1` = My main 4K/2160p (UHD) Radarr. @@ -66,7 +68,7 @@ Then you get a screen with the following options: #### Radarr Download client setup - You don't need a separate download client for your two Radarr instances, this all can be done with one download client (*Two if you prefer Usenet and Torrents*). +You don't need a separate download client for your two Radarr instances, this all can be done with one download client (_Two if you prefer Usenet and Torrents_). `Settings` => `Download Clients` @@ -86,11 +88,12 @@ The only thing you need to change/create is a separate `Category` that you're go You now only need to make use of `Radarr 1`. All movies you add to `Radarr 1` will be synced to `Radarr 2` at a scheduled time. ------- +--- ### Option 2 !!! info "" + In this example I'm going to use two Sonarr instances (The basics is the same for Radarr). - `Sonarr 1` = My main 1080p WEB-DL Sonarr. @@ -137,7 +140,7 @@ Then you get a screen with the following options: #### Sonarr Download client setup - You don't need a separate download client for your two Sonarr/Radarr instances, this can all be done with one download client (*Two if you prefer Usenet and Torrents*). +You don't need a separate download client for your two Sonarr/Radarr instances, this can all be done with one download client (_Two if you prefer Usenet and Torrents_). `Settings` => `Download Clients` @@ -157,7 +160,7 @@ Only thing you need to change/create is a separate `Category` that you're going You now only need to make use of `Sonarr 1`. When you got a TV show (or a movie if you use this option with Radarr) that you also want as 4K/2160p (UHD) then you make sure you make use of the Cloned Quality Profile. And it will sync at a scheduled time. ------- +--- [^1]: diff --git a/docs/Radarr/index.md b/docs/Radarr/index.md index f4693c96a..5348a167e 100644 --- a/docs/Radarr/index.md +++ b/docs/Radarr/index.md @@ -4,7 +4,7 @@ Here you will find a collection of Radarr Guides I made. !!! info "Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available." -For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/radarr){:target="_blank" rel="noopener noreferrer"} +For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/radarr){:target="\_blank" rel="noopener noreferrer"} ## Master @@ -26,7 +26,7 @@ For Installation and Quick Start Guide please check the official [WikiArr](https (Alpha/Unstable) : This is the bleeding edge. It is released as soon as code is committed and passes all automated tests. This build may have not been used by us or other users yet. There is no guarantee that it will even run in some cases. This branch is only recommended for advanced users. Issues and self investigation are expected in this branch. -***Use this branch only if you know what you are doing and are willing to get your hands dirty to recover a failed update.*** +**_Use this branch only if you know what you are doing and are willing to get your hands dirty to recover a failed update._** This version is updated immediately. @@ -34,4 +34,4 @@ This version is updated immediately. ### How do I update Radarr -External link to the official [WikiArr](https://wiki.servarr.com/en/radarr/faq#how-do-i-update-radarr){:target="_blank" rel="noopener noreferrer"}. +External link to the official [WikiArr](https://wiki.servarr.com/en/radarr/faq#how-do-i-update-radarr){:target="\_blank" rel="noopener noreferrer"}. diff --git a/docs/Radarr/radarr-setup-quality-profiles-anime.md b/docs/Radarr/radarr-setup-quality-profiles-anime.md index 23af7bae2..6293d75b8 100644 --- a/docs/Radarr/radarr-setup-quality-profiles-anime.md +++ b/docs/Radarr/radarr-setup-quality-profiles-anime.md @@ -1,16 +1,18 @@ # How to setup Quality Profiles Anime -*aka How to setup Custom Formats (Anime)*

+_aka How to setup Custom Formats (Anime)_

!!! 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 Radarr instances. One for Anime Movies and one for Normal Movies, 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://releases.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"} +The aim of this guide is to grab the best release overall (as per [SeaDex](https://releases.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"} !!! info "" + Nyaa is a public tracker while AB is an invite only tracker. --- @@ -19,19 +21,19 @@ The vast majority of releases can be found on [Nyaa](https://nyaa.si/){:target=" ### Recommended naming scheme -For naming please refer to [Recommended naming scheme](/Radarr/Radarr-recommended-naming-scheme/){:target="_blank" rel="noopener noreferrer"} +For naming please refer to [Recommended naming scheme](/Radarr/Radarr-recommended-naming-scheme/){:target="\_blank" rel="noopener noreferrer"} --- ## Quality Settings -For quality settings please refer to [Radarr Quality Definitions](/Radarr/Radarr-Quality-Settings-File-Size/#radarr-quality-definitions){:target="_blank" rel="noopener noreferrer"} +For quality settings please refer to [Radarr Quality Definitions](/Radarr/Radarr-Quality-Settings-File-Size/#radarr-quality-definitions){:target="\_blank" rel="noopener noreferrer"} --- ## Quality Profile -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](/Radarr/Tips/Merge-quality/){:target="_blank" rel="noopener noreferrer"} for an example. +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](/Radarr/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, `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. @@ -50,10 +52,10 @@ We then need to select and organise the qualities like below. ## Anime CF/Scoring !!! note - We're going to make use of the below custom formats. See [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"} for how to import them. + + We're going to make use of the below custom formats. See [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"} for how to import them. {! include-markdown "../../includes/cf/radarr-anime.md" !} - ### Default Scoring @@ -89,6 +91,7 @@ Below is an example of the scoring set to prefer `Dual Audio` over any tier. ### 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. @@ -124,4 +127,3 @@ 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" !} - diff --git a/docs/Radarr/radarr-setup-quality-profiles-french-en.md b/docs/Radarr/radarr-setup-quality-profiles-french-en.md index 96263c560..1134524b8 100644 --- a/docs/Radarr/radarr-setup-quality-profiles-french-en.md +++ b/docs/Radarr/radarr-setup-quality-profiles-french-en.md @@ -1,10 +1,10 @@ # How to setup Quality Profiles French -*aka How to setup Custom Formats (French)*

+_aka How to setup Custom Formats (French)_

!!! note "This guide is created and maintained by [Someone said "Nice"?](https://github.com/NiceTSY)" -!!! tip "Cette page est aussi disponible en Français: [Guide en Français](/Radarr/radarr-setup-quality-profiles-french-fr/){:target="_blank" rel="noopener noreferrer"}." +!!! tip "Cette page est aussi disponible en Français: [Guide en Français](/Radarr/radarr-setup-quality-profiles-french-fr/){:target="\_blank" rel="noopener noreferrer"}." So what is the best way to set up the Custom Formats and which one to use with which scores to get French and English Audio? @@ -14,30 +14,32 @@ Regarding quality there isn't a best setup, it depends on your setup (hardware d Some prefer high quality audio (HD Audio), others high quality video. Many prefer both. -TRaSH created a [flowchart](/Radarr/Radarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"} to make your decision/choices easier. Remember that this chart does not include any of the following Custom Formats and you will still need to read this guide to get MULTi releases. +TRaSH created a [flowchart](/Radarr/Radarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"} to make your decision/choices easier. Remember that this chart does not include any of the following Custom Formats and you will still need to read this guide to get MULTi releases. ------- +--- ## Basics It is quite important that you follow and understand what is envisioned by Trash's guide: -- Adding Custom Formats, as explained in [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. -- Setting up a quality Profile to make use of the Custom Formats, as explained in [How to setup Quality Profiles | Basics section](/Radarr/radarr-setup-quality-profiles/#basics){:target="_blank" rel="noopener noreferrer"}. +- Adding Custom Formats, as explained in [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"}. +- Setting up a quality Profile to make use of the Custom Formats, as explained in [How to setup Quality Profiles | Basics section](/Radarr/radarr-setup-quality-profiles/#basics){:target="\_blank" rel="noopener noreferrer"}. ------- +--- !!! warning "Mandatory" The only change that is needed and **mandatory** for French Custom Formats to work is to set the preferred language profile for your releases to `Any`. ??? success "Screenshot example - [Click to show/hide]" + ![!cf-quality-profile-cf](images/french-cf-profile-language.png) !!! info + We do choose `Any` for the language profile, as otherwise an English movie identified with French audio in Radarr will not be grabbed and vice-versa. ------- +--- ## I am only interested in French subs (VOSTFR) @@ -58,24 +60,25 @@ There is two options: - Ignore any mention of **MULTi Custom Formats**. - Add the [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) Custom Format with a score of `{{ radarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ------- +--- ## Usages -There is two ways of using those French Custom Formats, with and without the Guide's original Group tiers (which can be found there: [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"}). +There is two ways of using those French Custom Formats, with and without the Guide's original Group tiers (which can be found there: [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"}). To illustrate this, you will see an **"Original mix (optional)"** section in each of the examples below. You need to understand that if you add the Custom Formats from this optional section if Radarr do not find a MULTi you will still have a good scoring for single audio. !!! warning "Attention" + If you use the **"Original mix (optional)"**. You need to understand that even if in the beginning the main focus of those French Custom Formats is to work alongside the original ones. You could end up with a single audio release when a MULTi release exists. This is because it was not scored high enough to trump the other scoring. ------- +--- ## Examples of Quality Profile --8<-- "includes/cf/score-attention.md" ------- +--- ### French Audio Versions @@ -85,11 +88,12 @@ Those are all optional and only there to rename your release or to avoid a certa - You only want VOSTFR, in this case you will ignore any mention of **MULTi Custom Formats** and give the [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) Custom Format a score of `{{ radarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. !!! warning "Attention" + It is not really recommended to put any of the VF Custom Formats (VFF, VFQ, VQ, VFB, VFI, VF2) to a negative score. Instead increase the score of your preferred audio. {! include-markdown "../../includes/french-guide/radarr-french-audio-version-en.md" !} ------- +--- ### Releases you should avoid @@ -97,23 +101,24 @@ This is a must-have for every Quality Profile you use. All these Custom Formats {! include-markdown "../../includes/french-guide/radarr-french-unwanted-en.md" !} ------- +--- ### TRaSH recommendations {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} !!! tip "Getting the movie name in French in the file and/or folder name" + Following the recommended naming scheme for your library, whether it's Plex, Jellyfin, or Emby, you can add the ISO-2 language code at the end of the movie name tag to display the movie name in the desired language. The tag should look like the following: `{Movie CleanTitle:fr}`. This work in both Folder and File name. ------- +--- #### HD Bluray + WEB If you prefer High Quality HD Encodes (Bluray-720/1080p) -- *Size: 6-15 GB for a Bluray-1080p depending on the running time.* +- _Size: 6-15 GB for a Bluray-1080p depending on the running time._ {! include-markdown "../../includes/french-guide/radarr-french-multi-audio-en.md" !} @@ -145,13 +150,13 @@ The reason why WEB-DL 720p is not selected is because you will hardly find any r - When the Bluray-1080p is released it will upgrade to the Bluray-1080p. - The downloaded media will be upgraded to any of the added Custom Formats until a score of `10000`. ------- +--- #### UHD Bluray + WEB If you prefer High Quality UHD Encodes (Bluray-2160p) -- *Size: 20-60 GB for a Bluray-2160p depending on the running time.* +- _Size: 20-60 GB for a Bluray-2160p depending on the running time._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-en.md" !} @@ -187,13 +192,13 @@ Use the following main settings in your profile. - When the Bluray-2160p is released it will upgrade to the Bluray-2160p. - The downloaded media will be upgraded to any of the added Custom Formats until a score of `10000`. ------- +--- #### Remux + WEB 1080p If you prefer 1080p Remuxes (Remux-1080p) -- *Size: 20-40 GB for a Remux-1080p depending on the running time.* +- _Size: 20-40 GB for a Remux-1080p depending on the running time._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-en.md" !} @@ -227,13 +232,13 @@ The reason why I didn't select the WEB-DL 720p is because you will hardly find a - When the REMUX-1080p is released it will upgrade to the REMUX-1080p. - The downloaded media will be upgraded to any of the added Custom Formats until a score of `10000`. ------- +--- #### Remux + WEB 2160p If you prefer 2160p Remuxes (Remux-2160p) -- *Size: 40-100 GB for a Remux-2160p depending on the running time.* +- _Size: 40-100 GB for a Remux-2160p depending on the running time._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-en.md" !} @@ -267,16 +272,16 @@ Use the following main settings in your profile. - When the REMUX-2160p is released it will upgrade to the REMUX-2160p. - The downloaded media will be upgraded to any of the added Custom Formats until a score of `10000`. ------- +--- ### Advanced Audio and HDR Formats TRaSH provides great guides and explanations about them at the following links: -- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="_blank" rel="noopener noreferrer"} -- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"} +- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="\_blank" rel="noopener noreferrer"} +- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Acknowledgements diff --git a/docs/Radarr/radarr-setup-quality-profiles-french-fr.md b/docs/Radarr/radarr-setup-quality-profiles-french-fr.md index 4350d79da..76f5c5593 100644 --- a/docs/Radarr/radarr-setup-quality-profiles-french-fr.md +++ b/docs/Radarr/radarr-setup-quality-profiles-french-fr.md @@ -10,30 +10,32 @@ Pour ce qui est de la qualité, il n'y a pas de recette miracle, cela dépend de Certains préfèrent une qualité audio élevée (HD Audio), d'autres une meilleure qualité vidéo. Nombreux sont ceux qui préfèrent les deux. -TRaSH a créé un [schéma](/Radarr/Radarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"} pour faciliter votre décision/choix. Notez que ce graphique n'inclut aucun des Formats Personnalisés de ce guide et que vous devrez quand même le lire pour obtenir des releases en MULTi. +TRaSH a créé un [schéma](/Radarr/Radarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"} pour faciliter votre décision/choix. Notez que ce graphique n'inclut aucun des Formats Personnalisés de ce guide et que vous devrez quand même le lire pour obtenir des releases en MULTi. ------- +--- ## Notions de base -Il est impératif que vous respectiez et compreniez ce qui est proposé par le guide de TRaSH (*en anglais uniquement*) : +Il est impératif que vous respectiez et compreniez ce qui est proposé par le guide de TRaSH (_en anglais uniquement_) : -- L'ajout de Formats Personnalisés, comme expliqué dans [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. -- La configuration d'un profil de qualité pour utiliser les formats personnalisés, comme expliqué dans la section [How to setup Quality Profiles | Basics section](/Radarr/Radarr-setup-custom-formats/#basics){:target="_blank" rel="noopener noreferrer"}. +- L'ajout de Formats Personnalisés, comme expliqué dans [How to import Custom Formats](/Radarr/Radarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"}. +- La configuration d'un profil de qualité pour utiliser les formats personnalisés, comme expliqué dans la section [How to setup Quality Profiles | Basics section](/Radarr/Radarr-setup-custom-formats/#basics){:target="\_blank" rel="noopener noreferrer"}. ------- +--- !!! warning "Impératif" La seule modification nécessaire et **indispensable** pour que les formats personnalisés français fonctionnent est de définir le profil de langue sur `Any`. ??? success "Exemple - [Cliquer pour afficher/masquer]" + ![!cf-quality-profile-cf](images/french-cf-profile-language.png) !!! info + `Any` est choisit sinon un film anglais identifié avec un audio français dans Radarr ne sera pas récupéré et vice-versa. ------- +--- ## Je ne suis intéressé que par des films sous-titrés en français (VOSTFR) @@ -43,8 +45,8 @@ Deux options s'offre à vous : !!! tip "Il s'agit de la méthode à privilégier." -- Configurez Radarr en utilisant : [How to setup Quality Profiles | Which Quality Profile should you choose](/Radarr/radarr-setup-quality-profiles/#which-quality-profile-should-you-choose) (*en anglais*). -- Configurez [Bazarr](../Bazarr/Setup-Guide.md) (*en anglais*). Il permet d'obtenir des sous-titres pour tous les films. +- Configurez Radarr en utilisant : [How to setup Quality Profiles | Which Quality Profile should you choose](/Radarr/radarr-setup-quality-profiles/#which-quality-profile-should-you-choose) (_en anglais_). +- Configurez [Bazarr](../Bazarr/Setup-Guide.md) (_en anglais_). Il permet d'obtenir des sous-titres pour tous les films. - Profitez de vos films avec les sous-titres. - (Facultatif) Ajoutez le Format Personnalisé [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) avec un score de `{{ radarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. @@ -54,23 +56,24 @@ Deux options s'offre à vous : - Ignorez toute mention des **Formats Personnalisés MULTi**. - Ajoutez le Format Personnalisé [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr) avec un score de `{{ radarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ------- +--- ## Usages -Il y a deux façons d'aborder les exemples ci-dessous. En utilisant ou non les Formats Personnalisés de Groupes P2P du Guide original (qui peuvent être trouvés ici : [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"}). +Il y a deux façons d'aborder les exemples ci-dessous. En utilisant ou non les Formats Personnalisés de Groupes P2P du Guide original (qui peuvent être trouvés ici : [Collection of Custom Formats](/Radarr/Radarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"}). Afin d'illustrer ce principe, vous verrez une section **"Mix original (optionnel)"** dans chacun des exemples ci-dessous. Vous devez comprendre que si vous ajoutez les Formats Personnalisés de cette section optionnelle, si Radarr ne trouve pas de MULTi, vous aurez toujours un bon score pour l'audio anglais. !!! warning "Attention" + Si vous utilisez le **"Mix original (optionnel)"**. Vous devez comprendre que même si l'objectif principal de ces Formats Personnalisés est de travailler en parallèle avec les formats du guide original. Vous pouvez vous retrouver avec un seul audio alors qu'il existe une version MULTi. La raison est que la release n'a pas été notée assez haut pour l'emporter sur les autres scores. ------- +--- ## Exemples de Profil --8<-- "includes/cf/score-attention.md" ------- +--- ### Type de versions françaises @@ -80,11 +83,12 @@ Ces Formats sont optionnels et ne sont là que pour renommer votre fichier ou po - Vous souhaitez seulement du VOSTFR, dans ce ce cas, ignorez toute mention des **Formats Personnalisés MULTi** et donnez un score de `{{ radarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}` au Format Personnalisé [{{ radarr['cf']['french-vostfr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vostfr). !!! warning "Attention" + Il n'est pas vraiment recommandé d'attribuer un score négatif à l'un des Formats Personnalisés de VF (VFF, VFQ, VQ, VFB, VFI, VF2). Augmentez plutôt le score de votre format audio préféré. {! include-markdown "../../includes/french-guide/radarr-french-audio-version-fr.md" !} ------- +--- ### Les releases à éviter @@ -92,23 +96,24 @@ Ces Formats sont reconnus comme étant indispensables pour tous les Profils de Q {! include-markdown "../../includes/french-guide/radarr-french-unwanted-fr.md" !} ------- +--- -### TRaSH recommandations (*en anglais*) +### TRaSH recommandations (_en anglais_) {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} !!! tip "Obtenir le nom du film en français dans le nom du fichier et/ou du dossier" + En suivant le schéma de dénomination recommandé pour votre bibliothèque, qu'il s'agisse de Plex, Jellyfin ou Emby. Vous pouvez ajouter le code de langue ISO-2 à la fin de la balise du nom du film pour afficher le nom du film dans la langue souhaitée. La balise se présentera comme suit : `{Movie CleanTitle:fr}`. Cela fonctionne aussi bien pour les noms de dossiers que pour les noms de fichiers. ------- +--- #### HD Bluray + WEB Si vous préférez les encodages HD de haute qualité (Bluray-720/1080p) -- *Poids : 6 à 15 Go pour un Bluray-1080p selon la durée du média.* +- _Poids : 6 à 15 Go pour un Bluray-1080p selon la durée du média._ {! include-markdown "../../includes/french-guide/radarr-french-multi-audio-fr.md" !} @@ -142,13 +147,13 @@ La raison pour laquelle le WEB-DL 720p n'est pas sélectionné est que vous ne t - Lorsque le Bluray-1080p sortira, il sera mis à niveau vers le Bluray-1080p. - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- #### UHD Bluray + WEB Si vous préférez les encodages UHD de haute qualité (Bluray-2160p) -- *Poids : 20 à 60 Go pour un Bluray-2160p selon la durée du média.* +- _Poids : 20 à 60 Go pour un Bluray-2160p selon la durée du média._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-fr.md" !} @@ -184,13 +189,13 @@ Utilisez les paramètres suivants dans votre profil. - Lorsque le Bluray-2160p sortira, il sera mis à niveau vers le Bluray-2160p. - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- #### Remux + WEB 1080p Si vous préférez les Remuxes en 1080p (Remux-1080p) -- *Poids : 20 à 40 Go pour un Remux-1080p selon la durée du média.* +- _Poids : 20 à 40 Go pour un Remux-1080p selon la durée du média._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-fr.md" !} @@ -226,13 +231,13 @@ La raison pour laquelle le WEB-DL 720p n'est pas sélectionné est que vous ne t - Lorsque le REMUX-1080p sortira, il sera mis à niveau vers le REMUX-2160p. - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- #### Remux + WEB 2160p Si vous préférez les Remuxes en 2160p (Remux-2160p) -- *Poids : 40 à 100 Go pour un Remux-2160p selon la durée du média.* +- _Poids : 40 à 100 Go pour un Remux-2160p selon la durée du média._ {! include-markdown "../../includes/french-guide/radarr-french-advanced-audio-information-fr.md" !} @@ -266,16 +271,16 @@ Utilisez les paramètres suivants dans votre profil. - Lorsque le REMUX-2160p sortira, il sera mis à niveau vers le REMUX-2160p. - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- ### Formats audio avancés et HDR -TRaSH fournit d'excellents guides et explications à leur sujet dans les liens suivants (*en anglais uniquement*) : +TRaSH fournit d'excellents guides et explications à leur sujet dans les liens suivants (_en anglais uniquement_) : -- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="_blank" rel="noopener noreferrer"} -- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"} +- [Advanced Audio](/Radarr/radarr-setup-quality-profiles/#advanced-audio){:target="\_blank" rel="noopener noreferrer"} +- [HDR Formats](/Radarr/radarr-setup-quality-profiles/#hdr-formats){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Remerciements diff --git a/docs/Radarr/radarr-setup-quality-profiles.md b/docs/Radarr/radarr-setup-quality-profiles.md index b5dcce2eb..279611bbb 100644 --- a/docs/Radarr/radarr-setup-quality-profiles.md +++ b/docs/Radarr/radarr-setup-quality-profiles.md @@ -1,6 +1,6 @@ # How to set up Quality Profiles -*aka How to set up Custom Formats*

+_aka How to set up Custom Formats_

So what's the best way to set up the Custom Formats and which ones to use with which scores to set up your quality profiles? There isn't a "best" setup, it depends on your media setup (hardware devices) and your personal preferences. @@ -12,11 +12,11 @@ Here we will try to explain how to make the most of Custom Formats to help you s - We've created a [flowchart](#which-quality-profile-should-you-choose) to make your decisions/choices easier. - We've also created an Excel sheet with several tested [media player devices](/Plex/what-does-my-media-player-support){:target="_blank" rel="noopener noreferrer"} to display what formats and capabilities they support, sourced from information provided by our community. We hope this Excel sheet will be a helpful resource for those looking for a reliable media player device and will help you choose the appropriate quality profile. ------- +--- ## Basics -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"}. +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` @@ -24,6 +24,7 @@ You will need to set it up in the quality Profile you want to use/prefer to make ![!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) @@ -40,9 +41,11 @@ Select the profile that you want to use/prefer. At the bottom, in your chosen profile, you will see the added Custom Formats where you can start setting up the scores. ??? success "Screenshot example - [Click to show/hide]" + ![!cf-quality-profile-cf](images/cf-quality-profile-cf.png) !!! warning + 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. @@ -58,11 +61,11 @@ At the bottom, in your chosen profile, you will see the added Custom Formats whe - 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" !} ------- +--- ## Which Quality Profile should you choose @@ -78,7 +81,7 @@ At the bottom, in your chosen profile, you will see the added Custom Formats whe [![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} ------- +--- ## TRaSH Quality Profiles @@ -88,7 +91,7 @@ The following Quality Profiles can be combined into a single Quality Profile if If you prefer High-Quality HD Encodes (Bluray-720p/1080p) -- *Size: 6-15 GB for a Bluray-1080p depending on the running time.* +- _Size: 6-15 GB for a Bluray-1080p depending on the running time._ {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} @@ -126,13 +129,13 @@ The reason why I didn't select the WEB-DL 720p is that you will hardly find any 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. ------- +--- ### UHD Bluray + WEB If you prefer High-Quality UHD Encodes (Bluray-2160p) -- *Size: 20-60 GB for a Bluray-2160p depending on the running time.* +- _Size: 20-60 GB for a Bluray-2160p depending on the running time._ {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} @@ -174,13 +177,13 @@ Use the following main settings in your profile. 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 + WEB 1080p If you prefer 1080p Remuxes (Remux-1080p) -- *Size: 20-40 GB for a Remux-1080p depending on the running time.* +- _Size: 20-40 GB for a Remux-1080p depending on the running time._ {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} @@ -218,13 +221,13 @@ The reason why I didn't select the WEB-DL 720p is that you will hardly find any 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 + WEB 2160p If you prefer 2160p Remuxes (Remux-2160p) -- *Size: 40-100 GB for a Remux-2160p depending on the running time.* +- _Size: 40-100 GB for a Remux-2160p depending on the running time._ {! include-markdown "../../includes/cf/radarr-suggest-attention.md" !} @@ -264,7 +267,7 @@ Use the following main settings in your profile. Because I'm too lazy to calculate the maximum for every Quality Profile I use, and I want it to be upgraded to the highest possible score anyway. ------- +--- ## Custom Format Groups @@ -280,11 +283,11 @@ The following custom format groups should be combined with the Quality Profiles - You should add **ALL** the Audio formats - don't leave any of them out! - Audio transcoding has a low impact on your server. If your server can't handle audio transcoding, consider choosing another quality profile. -*The reason that I score lossy Atmos higher than lossless DTS-HD MA is that I prefer having the object metadata (Atmos) over lossless audio.* +_The reason that I score lossy Atmos higher than lossless DTS-HD MA is that I prefer having the object metadata (Atmos) over lossless audio._ {! include-markdown "../../includes/cf/radarr-audio.md" !} ------- +--- ### HDR Formats @@ -292,7 +295,7 @@ The following custom format groups should be combined with the Quality Profiles {! include-markdown "../../includes/cf/radarr-all-hdr-formats.md" !} ------- +--- ## FAQ & INFO diff --git a/docs/Recyclarr/.pages b/docs/Recyclarr/.pages index cdddc80e7..144e39f6e 100644 --- a/docs/Recyclarr/.pages +++ b/docs/Recyclarr/.pages @@ -1,3 +1,3 @@ nav: - - Home: index.md - - Collection of configs: recyclarr-configs.md + - Home: index.md + - Collection of configs: recyclarr-configs.md diff --git a/docs/Recyclarr/index.md b/docs/Recyclarr/index.md index aa17617f3..c1b08ccf5 100644 --- a/docs/Recyclarr/index.md +++ b/docs/Recyclarr/index.md @@ -4,7 +4,7 @@ Recyclarr is a command-line application that will automatically synchronize reco !!! info "Automatically mirror TRaSH guides to your Sonarr/Radarr instance based on your setup scheduler." -For Installation and setup Guide please check the official [Recyclarr Wiki](https://recyclarr.dev/wiki/getting-started){:target="_blank" rel="noopener noreferrer"} +For Installation and setup Guide please check the official [Recyclarr Wiki](https://recyclarr.dev/wiki/getting-started){:target="\_blank" rel="noopener noreferrer"} For any questions or support questions please join the discord support channel. @@ -14,4 +14,4 @@ For any questions or support questions please join the discord support channel. ### Collection of configs -- [Recyclarr - collection of configs](/Recyclarr/recyclarr-configs){:target="_blank" rel="noopener noreferrer"} +- [Recyclarr - collection of configs](/Recyclarr/recyclarr-configs){:target="\_blank" rel="noopener noreferrer"} diff --git a/docs/SQP/1-4k.md b/docs/SQP/1-4k.md index e57b40f73..89327402a 100644 --- a/docs/SQP/1-4k.md +++ b/docs/SQP/1-4k.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # SQP-1 (2160p) Streaming Optimized diff --git a/docs/SQP/1.md b/docs/SQP/1.md index 297a850bf..6c93e40fb 100644 --- a/docs/SQP/1.md +++ b/docs/SQP/1.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # SQP-1 (1080p) Streaming Optimized diff --git a/docs/SQP/2.md b/docs/SQP/2.md index 13db5f882..bf9e96d02 100644 --- a/docs/SQP/2.md +++ b/docs/SQP/2.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # UHD Remux|Bluray|IMAX-E (SQP-2) diff --git a/docs/SQP/3.md b/docs/SQP/3.md index 39dfb17aa..baa612c82 100644 --- a/docs/SQP/3.md +++ b/docs/SQP/3.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # UHD Remux|IMAX-E (SQP-3) diff --git a/docs/SQP/4.md b/docs/SQP/4.md index 118d37b46..6d500c81d 100644 --- a/docs/SQP/4.md +++ b/docs/SQP/4.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # UHD WEBDL|IMAX-E (SQP-4) diff --git a/docs/SQP/5.md b/docs/SQP/5.md index d08c4cd1b..1994f1e0e 100644 --- a/docs/SQP/5.md +++ b/docs/SQP/5.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # UHD Bluray|IMAX-E (SQP-5) diff --git a/docs/SQP/index.md b/docs/SQP/index.md index ed5f38fde..bac549367 100644 --- a/docs/SQP/index.md +++ b/docs/SQP/index.md @@ -1,6 +1,6 @@ --- search: - exclude: true + exclude: true --- # Special Quality Profiles @@ -19,32 +19,37 @@ The Special Quality Profiles are Custom made and tested Quality Profile for spec ## The Following SQP are available -- [SQP-1 (1080p) - *Streaming Optimized*](/SQP/1){:target="_blank" rel="noopener noreferrer"} -- [SQP-1 (2160p) - *Streaming Optimized*](/SQP/1-4k){:target="_blank" rel="noopener noreferrer"} -- [SQP-2 (2160p) - *UHD Remux|Bluray|IMAX-E*](/SQP/2){:target="_blank" rel="noopener noreferrer"} -- [SQP-3 (2160p) - *UHD Remux|IMAX-E*](/SQP/3){:target="_blank" rel="noopener noreferrer"} -- [SQP-4 (2160p) - *UHD WEBDL|IMAX-E*](/SQP/4){:target="_blank" rel="noopener noreferrer"} -- [SQP-5 (2160p) - *UHD Bluray|IMAX-E*](/SQP/5){:target="_blank" rel="noopener noreferrer"} +- [SQP-1 (1080p) - _Streaming Optimized_](/SQP/1){:target="\_blank" rel="noopener noreferrer"} +- [SQP-1 (2160p) - _Streaming Optimized_](/SQP/1-4k){:target="\_blank" rel="noopener noreferrer"} +- [SQP-2 (2160p) - _UHD Remux|Bluray|IMAX-E_](/SQP/2){:target="\_blank" rel="noopener noreferrer"} +- [SQP-3 (2160p) - _UHD Remux|IMAX-E_](/SQP/3){:target="\_blank" rel="noopener noreferrer"} +- [SQP-4 (2160p) - _UHD WEBDL|IMAX-E_](/SQP/4){:target="\_blank" rel="noopener noreferrer"} +- [SQP-5 (2160p) - _UHD Bluray|IMAX-E_](/SQP/5){:target="\_blank" rel="noopener noreferrer"} ### FAQ & INFO !!! info + **SQP** = Special Quality Profile **CF** = Custom Formats ??? question "Can I use these SQP with Sonarr? - [Click to show/hide]" + **NO**, SQP are only for Radarr :bangbang:
At the moment their are no specific release groups to create a SQP for Sonarr.
If you're looking for a SQP-1 (xxxxp) then look at the public Sonarr Guide. ??? question "Why don't you add this to the public guide? - [Click to show/hide]" + These SQPs are advanced Quality Profiles tested and created for a specific need, and only interesting for people that are interested in a specific Quality Profile. ??? question "I see CFs that aren't in the main guide - [Click to show/hide]" + Some SQPs have/need specific CFs to work. ??? question "Some CFs in your instructions have a score of 0. Should I follow the scores from the main guide? - [Click to show/hide]" + No, you should always follow the scores of the SQP. !!! TIP @@ -54,4 +59,3 @@ The Special Quality Profiles are Custom made and tested Quality Profile for spec - Follow the setup instructions and don't skip steps. {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Sonarr/.pages b/docs/Sonarr/.pages index edf59f95d..bc599166a 100644 --- a/docs/Sonarr/.pages +++ b/docs/Sonarr/.pages @@ -1,12 +1,12 @@ nav: - - Home: index.md - - Quality Settings (File Size): Sonarr-Quality-Settings-File-Size.md - - Recommended naming scheme: Sonarr-recommended-naming-scheme.md - - How to import Custom Formats: sonarr-import-custom-formats.md - - How to Update Custom Formats: sonarr-how-to-update-custom-formats.md - - How to setup Quality Profiles: sonarr-setup-quality-profiles.md - - How to setup Quality Profiles (Anime): sonarr-setup-quality-profiles-anime.md - - How to setup Quality Profiles (French): sonarr-setup-quality-profiles-french-en.md - - Collection of Custom Formats: sonarr-collection-of-custom-formats.md - - Remote Path Mappings explained: Sonarr-remote-path-mapping.md - - Tips + - Home: index.md + - Quality Settings (File Size): Sonarr-Quality-Settings-File-Size.md + - Recommended naming scheme: Sonarr-recommended-naming-scheme.md + - How to import Custom Formats: sonarr-import-custom-formats.md + - How to Update Custom Formats: sonarr-how-to-update-custom-formats.md + - How to setup Quality Profiles: sonarr-setup-quality-profiles.md + - How to setup Quality Profiles (Anime): sonarr-setup-quality-profiles-anime.md + - How to setup Quality Profiles (French): sonarr-setup-quality-profiles-french-en.md + - Collection of Custom Formats: sonarr-collection-of-custom-formats.md + - Remote Path Mappings explained: Sonarr-remote-path-mapping.md + - Tips diff --git a/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md b/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md index e988c3631..8ae0ba4cd 100644 --- a/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md +++ b/docs/Sonarr/Sonarr-Quality-Settings-File-Size.md @@ -6,6 +6,7 @@ Well, it's actually personal preference so I will show you my recommendations. But before you continue to read, as with all my guides: !!! danger "" + **If you don't care about quality then stop reading and see if the other tutorials are helpful for you.** These Quality Settings have been created and tested with info I got from others, and release comparisons from different sources. @@ -33,7 +34,7 @@ I only do WEB-DL myself for TV shows because in my opinion WEB-DL is the sweet s - I won't accept changes for micro sized releases. - Documentaries and cartoons are often much smaller so I probably won't edit those either. ------- +--- ## Sonarr Quality Definitions @@ -54,7 +55,7 @@ I only do WEB-DL myself for TV shows because in my opinion WEB-DL is the sweet s | {{ sonarr['quality-size']['series']['qualities'][12]['quality'] }} | {{ sonarr['quality-size']['series']['qualities'][12]['min'] }} | {{ sonarr['quality-size']['series']['qualities'][12]['max'] }} | | {{ sonarr['quality-size']['series']['qualities'][13]['quality'] }} | {{ sonarr['quality-size']['series']['qualities'][13]['min'] }} | {{ sonarr['quality-size']['series']['qualities'][13]['max'] }} | ------- +--- ### Sonarr Quality Definitions - Anime @@ -81,6 +82,7 @@ I only do WEB-DL myself for TV shows because in my opinion WEB-DL is the sweet s | {{ sonarr['quality-size']['anime']['qualities'][18]['quality'] }} | {{ sonarr['quality-size']['anime']['qualities'][18]['min'] }} | {{ sonarr['quality-size']['anime']['qualities'][18]['max'] }} | !!! note + The reason why you don't see the `Preferred` score in the table above is because we want max quality anyway. So set it as high as possible. The highest preferred quality you can manually enter is 1 less than the Maximum quality. If you use the slider, the preferred quality can be up to 5 lesser than the Maximum quality. diff --git a/docs/Sonarr/Sonarr-recommended-naming-scheme.md b/docs/Sonarr/Sonarr-recommended-naming-scheme.md index 6c1809059..815cadf9f 100644 --- a/docs/Sonarr/Sonarr-recommended-naming-scheme.md +++ b/docs/Sonarr/Sonarr-recommended-naming-scheme.md @@ -1,6 +1,6 @@ # Recommended naming scheme -On the [Sonarr Discord](https://discord.gg/M6BvZn5){:target="_blank" rel="noopener noreferrer"} people often ask, "What's the recommended/best way to +On the [Sonarr Discord](https://discord.gg/M6BvZn5){:target="\_blank" rel="noopener noreferrer"} people often ask, "What's the recommended/best way to name your files?" First off, it's personal preference, but it's often recommended to add non-recoverable info. Why? @@ -11,7 +11,7 @@ it gets imported correctly and isn't incorrectly matched as HDTV or WEB-DL etc. !!! info "The Tokens not available in the release won't be used/shown." ------- +--- ## Preparation @@ -43,7 +43,7 @@ Finally, enable `Rename Episodes` to reveal the episode renaming options. `The Series Title! (2010) - S01E01-E03 - Episode Title [AMZN WEBDL-1080p Proper][DV HDR10][DTS 5.1][x264]-RlsGrp` ------- +--- ## Daily Episode Format @@ -55,7 +55,7 @@ Finally, enable `Rename Episodes` to reveal the episode renaming options. `The Series Title! (2010) - 2013-10-30 - Episode Title 1 [AMZN WEBDL-1080p Proper][DV HDR10][DTS 5.1][x264]-RlsGrp` ------- +--- ## Anime Episode Format @@ -73,7 +73,7 @@ Finally, enable `Rename Episodes` to reveal the episode renaming options. `The Series Title! (2010) - S01E01-E03 - 001-003 - Episode Title [iNTERNAL HDTV-720p v2][HDR10][10bit][x264][DTS 5.1][JA]-RlsGrp` ------- +--- ### Series Folder Format @@ -85,7 +85,7 @@ Finally, enable `Rename Episodes` to reveal the episode renaming options. #### Optional Series Folder Format -This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names. +This naming scheme is made to be compatible with the new [Plex TV Series Scanner](https://forums.plex.tv/t/beta-new-plex-tv-series-scanner/696242){:target="\_blank" rel="noopener noreferrer"} that now support IMDB and TVDB IDs in file names. ##### Optional Plex @@ -112,9 +112,10 @@ This naming scheme is made to be compatible with the new [Plex TV Series Scanner RESULT: `The Series Title! (2010) [tvdbid-tt1520211]` !!! tip + IMDb IDs are going to be very accurate and rarely change, TVDB/TMDB IDs, on the other hand, do change or are removed more frequently. ------- +--- ### Season Folder Format @@ -126,7 +127,7 @@ Season {season:00} RESULT: `Season 01` ------- +--- ### Multi-Episode Style @@ -138,9 +139,9 @@ RESULTS: ![results](images/results.png) ------- +--- -## Original Title vs Original Filename +## Original Title vs Original Filename ### Original Title @@ -156,7 +157,7 @@ The filename can be Obscured where the Release naming isn't, especially when you `{Original Filename}` => `show episode 1-1080p` or `lchd-tkk1080p` or `t1i0p3s7i8yuti` ------- +--- Thanks: diff --git a/docs/Sonarr/Sonarr-remote-path-mapping.md b/docs/Sonarr/Sonarr-remote-path-mapping.md index d7f84ab55..d3afa120b 100644 --- a/docs/Sonarr/Sonarr-remote-path-mapping.md +++ b/docs/Sonarr/Sonarr-remote-path-mapping.md @@ -11,13 +11,14 @@ Remote Path Mapping acts as a dumb find `Remote Path` and replace with `Local Pa - You run dockers and **DON'T** have consistent and well planned paths. !!! note + If you run dockers it would be smarter to fix the problem at the source what's causing the actual issue. - [Sonarr Wiki Servarr - Docker Guide](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths){:target="_blank" rel="noopener noreferrer"} - [TRaSH Guides](/Hardlinks/Hardlinks-and-Instant-Moves/){:target="_blank" rel="noopener noreferrer"} ------- +--- ## How do I recognize that I need remote path mappings @@ -29,7 +30,7 @@ You will get an error that looks a little bit like the following screenshot. So looking at this screenshot it seems we need to make use of Remote Path Mappings ------- +--- ## How @@ -49,7 +50,7 @@ A screen will pop up with the following options: 1. `Remote Path` => The download path that you've set in your download client. 1. `Local Path` => The path Sonarr needs to access the same path. ------- +--- ??? example "Examples" @@ -83,4 +84,3 @@ A screen will pop up with the following options: ![Qbittorrent final result](images/qbit_final.png) {! include-markdown "../../includes/support.md" !} - diff --git a/docs/Sonarr/Tips/How-to-setup-language-custom-formats.md b/docs/Sonarr/Tips/How-to-setup-language-custom-formats.md index bd9cdb28b..03b98c1a3 100644 --- a/docs/Sonarr/Tips/How-to-setup-language-custom-formats.md +++ b/docs/Sonarr/Tips/How-to-setup-language-custom-formats.md @@ -1,4 +1 @@ -{! - include-markdown '../../Radarr/Tips/How-to-setup-language-custom-formats.md' - rewrite_relative_urls=true -!} +{! include-markdown '../../Radarr/Tips/How-to-setup-language-custom-formats.md' rewrite_relative_urls=true !} diff --git a/docs/Sonarr/Tips/Merge-quality.md b/docs/Sonarr/Tips/Merge-quality.md index 4695d8cb6..195691124 100644 --- a/docs/Sonarr/Tips/Merge-quality.md +++ b/docs/Sonarr/Tips/Merge-quality.md @@ -1,4 +1 @@ -{! - include-markdown '../../Radarr/Tips/Merge-quality.md' - rewrite_relative_urls=true -!} +{! include-markdown '../../Radarr/Tips/Merge-quality.md' rewrite_relative_urls=true !} diff --git a/docs/Sonarr/Tips/Sync-2-radarr-sonarr.md b/docs/Sonarr/Tips/Sync-2-radarr-sonarr.md index 67be1d03e..e0fe5beb2 100644 --- a/docs/Sonarr/Tips/Sync-2-radarr-sonarr.md +++ b/docs/Sonarr/Tips/Sync-2-radarr-sonarr.md @@ -1,4 +1 @@ -{! - include-markdown '../../Radarr/Tips/Sync-2-radarr-sonarr.md' - rewrite_relative_urls=true -!} +{! include-markdown '../../Radarr/Tips/Sync-2-radarr-sonarr.md' rewrite_relative_urls=true !} diff --git a/docs/Sonarr/index.md b/docs/Sonarr/index.md index 4eed0eb36..0a9d6fd6b 100644 --- a/docs/Sonarr/index.md +++ b/docs/Sonarr/index.md @@ -4,7 +4,7 @@ Here you will find a collection of Sonarr guides I made. !!! info "Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available." -For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/sonarr){:target="_blank" rel="noopener noreferrer"} +For Installation and Quick Start Guide please check the official [WikiArr](https://wiki.servarr.com/en/sonarr){:target="\_blank" rel="noopener noreferrer"} ## Master @@ -22,4 +22,4 @@ For Installation and Quick Start Guide please check the official [WikiArr](https ### How do I update Sonarr -External link to the official [WikiArr](https://wiki.servarr.com/en/sonarr/faq#how-do-i-update-sonarr){:target="_blank" rel="noopener noreferrer"}. +External link to the official [WikiArr](https://wiki.servarr.com/en/sonarr/faq#how-do-i-update-sonarr){:target="\_blank" rel="noopener noreferrer"}. diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index eebf52472..25118dc6c 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -8,9 +8,9 @@ Special thanks to everyone that has helped in the creation and testing of these Sonarr V4+ introduces Custom Formats. These are much more advanced/powerful than the release profiles, although this also means a Custom Format can require more knowledge to set up or create. We've made 3 guides related to this. -- [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats){:target="_blank" rel="noopener noreferrer"} - Explains how to import the Custom Formats. -- [How to upgrade Custom Formats](/Sonarr/sonarr-how-to-update-custom-formats){:target="_blank" rel="noopener noreferrer"} - Explains how to upgrade your existing Custom Formats. -- [How to setup Quality Profiles](/Sonarr/sonarr-setup-quality-profiles){:target="_blank" rel="noopener noreferrer"} - Explains how to make the most use of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences. +- [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats){:target="\_blank" rel="noopener noreferrer"} - Explains how to import the Custom Formats. +- [How to upgrade Custom Formats](/Sonarr/sonarr-how-to-update-custom-formats){:target="\_blank" rel="noopener noreferrer"} - Explains how to upgrade your existing Custom Formats. +- [How to setup Quality Profiles](/Sonarr/sonarr-setup-quality-profiles){:target="\_blank" rel="noopener noreferrer"} - Explains how to make the most use of Custom Formats and shows some specifics of my configuration. You can use these examples to get an idea of how to set up your preferences. !!! tip @@ -140,7 +140,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/truehd-atmos.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -156,7 +156,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dts-x.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -172,7 +172,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/atmos-undefined.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -190,7 +190,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/ddplus-atmos.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -206,7 +206,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/truehd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -222,7 +222,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dts-hd-ma.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -238,7 +238,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/flac.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -254,7 +254,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/pcm.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -270,7 +270,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dts-hd-hra.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -288,7 +288,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/ddplus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -304,7 +304,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dts-es.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -322,7 +322,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dts.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -338,7 +338,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/aac.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -356,7 +356,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -372,7 +372,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/mp3.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -388,7 +388,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/opus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -404,7 +404,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/10-mono.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -416,7 +416,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/20-stereo.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -428,7 +428,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/30-sound.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -440,7 +440,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/40-sound.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -452,7 +452,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/51-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -464,7 +464,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/61-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -476,7 +476,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/71-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -488,7 +488,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/91-surround.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -511,7 +511,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-hdr10plus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -529,7 +529,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-hdr10.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -549,7 +549,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -567,7 +567,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-hlg.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -585,7 +585,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-sdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -603,7 +603,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hdr10plus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -621,7 +621,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hdr10.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -639,7 +639,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -655,7 +655,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hdr-undefined.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -673,7 +673,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/pq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -691,7 +691,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hlg.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -711,7 +711,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hybrid.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -727,10 +727,10 @@ We've made 3 guides related to this. ??? example "JSON - [Click to show/hide]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/remaster.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/remaster.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -763,7 +763,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/br-disk.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -781,7 +781,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/lq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -799,7 +799,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/lq-release-title.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -815,7 +815,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/upscaled.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -830,6 +830,7 @@ We've made 3 guides related to this. In your quality profile use the following score for this Custom Format: `{{ sonarr['cf']['x265-hd']['trash_scores']['default'] }}` !!! failure "" + --8<-- "includes/docker/x265.md" !!! 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:" @@ -840,7 +841,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x265-hd.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -856,7 +857,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/extras.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -872,7 +873,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/repack-proper.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -884,7 +885,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/repack-v2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -896,7 +897,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/repack-v3.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -914,7 +915,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x264.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -927,6 +928,7 @@ We've made 3 guides related to this. This applies to all x265/HEVC releases that are not Remux. !!! failure "" + Please don't forget to read the following [Microsized & Wrong Source](#microsized-wrong-source) ??? example "JSON - [Click to show/hide]" @@ -935,7 +937,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x265.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -953,7 +955,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x266.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -965,7 +967,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/mpeg2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -977,7 +979,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/multi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -988,6 +990,7 @@ We've made 3 guides related to this. Torrent sites sometimes set a torrent to be freeleech. This means that the download of this torrent will not count towards your quota or ratio. This can be useful when starting a new account or if you do not have the best ratio yet. !!! warning + Keep in mind not all trackers support this option. ??? example "JSON - [Click to show/hide]" @@ -996,7 +999,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/freeleech.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1007,6 +1010,7 @@ We've made 3 guides related to this. ### Bad Dual Groups ??? question "Bad dual groups - [Click to show/hide]" + These groups take the original release and add their own language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe is that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as the first track. Also they often even translate/rename the release name to Portuguese. @@ -1016,7 +1020,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/bad-dual-groups.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1025,6 +1029,7 @@ We've made 3 guides related to this. DV = DoVi = Dolby Vision ??? question "DV (WEBDL) - [Click to show/hide]" + This is a special Custom Format that blocks WEBDLs **with** Dolby Vision but **without** HDR10 fallback. You will need to add the following as a new Custom Format, and when created adjust the scoring in your Quality Profile (`Setting` => `Profiles`) to `-10000`. @@ -1041,7 +1046,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-webdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1057,7 +1062,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hdr10plus-boost.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1073,7 +1078,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-hdr10plus-boost.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1094,7 +1099,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/no-rlsgroup.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1110,7 +1115,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/obfuscated.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1126,7 +1131,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/retags.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1142,7 +1147,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/scene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1153,6 +1158,7 @@ We've made 3 guides related to this. - This CF utilizes functionality only available starting in Sonarr v4.0.2.1262. ??? question "Season Pack - [Click to show/hide]" + This Custom Format can be used to prefer or exclude season packs - Give it a score of `10` if you prefer a season pack. @@ -1160,6 +1166,7 @@ We've made 3 guides related to this. - Utilizing the "Release Type" custom format setting added in v4.0.2.1262, Season Pack source status is now persistently stored alongside episodes. !!! info + - This Custom Format could previously result in download loops. The new "Release Type" CF now prevents this undesired behavior. :bangbang: - This will upgrade your already downloaded single episodes :bangbang: @@ -1169,7 +1176,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1193,7 +1200,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/x265-no-hdrdv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1212,7 +1219,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/av1.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1231,7 +1238,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/vp9.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1248,7 +1255,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/internal.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1264,7 +1271,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/sdr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1280,7 +1287,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/sdr-no-webdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1296,7 +1303,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dv-disk.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1312,7 +1319,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hfr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1336,7 +1343,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/remux-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1359,7 +1366,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/remux-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) ### HD Bluray Tier 01 @@ -1377,7 +1384,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1396,7 +1403,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hd-bluray-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) ### WEB Tier 01 @@ -1415,7 +1422,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/web-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1436,7 +1443,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/web-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1457,7 +1464,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/web-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1473,7 +1480,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/web-scene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1499,7 +1506,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/amzn.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1517,7 +1524,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/atvp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1535,7 +1542,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/cc.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1553,7 +1560,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dcu.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1571,7 +1578,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dsnp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1589,7 +1596,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hmax.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1607,7 +1614,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hbo.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1625,7 +1632,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hulu.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1643,7 +1650,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/it.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1661,7 +1668,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/max.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1679,7 +1686,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/nf.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1697,7 +1704,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/pmtp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1715,7 +1722,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/pcok.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1733,7 +1740,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/sho.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1751,7 +1758,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/stan.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1773,7 +1780,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-canalplus.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1791,7 +1798,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-rtbf.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1809,7 +1816,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-salto.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1831,7 +1838,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/fod.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1849,7 +1856,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/htsr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1867,7 +1874,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/tver.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1885,7 +1892,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/tving.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1903,7 +1910,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/u-next.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1921,7 +1928,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/viu.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1943,7 +1950,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/nlz.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1961,7 +1968,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/vdl.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -1983,7 +1990,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/4od.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2001,7 +2008,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/all4.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2019,7 +2026,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/ip.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2037,7 +2044,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/itvx.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2055,7 +2062,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/now.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2077,7 +2084,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/crav.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2095,7 +2102,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dscp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2113,7 +2120,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/ovid.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2131,7 +2138,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/strp.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2149,7 +2156,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/red.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2167,7 +2174,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/qibi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2187,7 +2194,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/bglobal.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2203,7 +2210,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/bilibili.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2221,7 +2228,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/cr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2239,7 +2246,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/funi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2255,7 +2262,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hidive.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2271,13 +2278,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/vrv.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- #### ABEMA ??? question "Abema - [Click to show/hide]" + {! include-markdown "../../includes/cf-descriptions/abema.md" !} ??? example "JSON - [Click to show/hide]" @@ -2286,7 +2294,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/abema.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2304,7 +2312,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-adn.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2322,7 +2330,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-wkn.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2342,7 +2350,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/uhd-streaming-boost.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2358,7 +2366,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/uhd-streaming-cut.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2369,6 +2377,7 @@ We've made 3 guides related to this. ### Anime BD Tier 01 (Top SeaDex Muxers) ??? question "Anime BD Tier 01 (Top SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2377,13 +2386,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-01-top-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 02 (SeaDex Muxers) ??? question "Anime BD Tier 02 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2392,13 +2402,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-02-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 03 (SeaDex Muxers) ??? question "Anime BD Tier 03 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2407,13 +2418,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-03-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 04 (SeaDex Muxers) ??? question "Anime BD Tier 04 (SeaDex Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2422,13 +2434,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-04-seadex-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 05 (Remuxes) ??? question "Anime BD Tier 05 (Remuxes) - [Click to show/hide]" + Groups that are consistent and do Remuxes ??? example "JSON - [Click to show/hide]" @@ -2437,13 +2450,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-05-remuxes.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 06 (FanSubs) ??? question "Anime BD Tier 06 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2452,13 +2466,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-06-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 07 (P2P/Scene) ??? question "Anime BD Tier 07 (P2P/Scene) - [Click to show/hide]" + Known P2P and Scene Anime groups ??? example "JSON - [Click to show/hide]" @@ -2467,13 +2482,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-07-p2pscene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime BD Tier 08 (Mini Encodes) ??? question "Anime BD Tier 08 (Mini Encodes) - [Click to show/hide]" + Know groups that do mini encodes ??? example "JSON - [Click to show/hide]" @@ -2482,13 +2498,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-bd-tier-08-mini-encodes.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 01 (Muxers) ??? question "Anime Web Tier 01 (Muxers) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2497,13 +2514,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-01-muxers.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 02 (Top FanSubs) ??? question "Anime Web Tier 02 (Top FanSubs) - [Click to show/hide]" + Groups that do the best releases as per SeaDex. They are more consistent and trump others ??? example "JSON - [Click to show/hide]" @@ -2512,13 +2530,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-02-top-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 03 (Official Subs) ??? question "Anime Web Tier 03 (Official Subs) - [Click to show/hide]" + Official sub groups that tend to be more consistent and release fast ??? example "JSON - [Click to show/hide]" @@ -2527,13 +2546,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-03-official-subs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 04 (Official Subs) ??? question "Anime Web Tier 04 (Official Subs) - [Click to show/hide]" + Official sub groups ??? example "JSON - [Click to show/hide]" @@ -2542,13 +2562,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-04-official-subs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 05 (FanSubs) ??? question "Anime Web Tier 05 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2557,13 +2578,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-05-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Web Tier 06 (FanSubs) ??? question "Anime Web Tier 06 (FanSubs) - [Click to show/hide]" + FanSub groups that are consistent ??? example "JSON - [Click to show/hide]" @@ -2572,13 +2594,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-web-tier-06-fansubs.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Raws ??? question "Anime Raws - [Click to show/hide]" + A collection of know groups that release raws ??? example "JSON - [Click to show/hide]" @@ -2587,13 +2610,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-raws.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime LQ Groups ??? question "Anime LQ Groups - [Click to show/hide]" + A collection of known Low Quality groups. ??? example "JSON - [Click to show/hide]" @@ -2602,13 +2626,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-lq-groups.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Uncensored ??? question "Uncensored - [Click to show/hide]" + This CF covers releases that are uncensored ??? example "JSON - [Click to show/hide]" @@ -2617,13 +2642,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/uncensored.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v0 ??? question "v0 - [Click to show/hide]" + CF to cover releases named with v0 which we don't want ??? example "JSON - [Click to show/hide]" @@ -2632,13 +2658,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/v0.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v1 ??? question "v1 - [Click to show/hide]" + CF to cover v1 releases ??? example "JSON - [Click to show/hide]" @@ -2647,13 +2674,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/v1.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v2 ??? question "v2 - [Click to show/hide]" + CF to cover v2 releases ??? example "JSON - [Click to show/hide]" @@ -2662,13 +2690,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/v2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v3 ??? question "v3 - [Click to show/hide]" + CF to cover v3 releases ??? example "JSON - [Click to show/hide]" @@ -2677,13 +2706,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/v3.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### v4 ??? question "v4 - [Click to show/hide]" + CF to cover v4 releases ??? example "JSON - [Click to show/hide]" @@ -2692,13 +2722,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/v4.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### 10bit ??? question "10bit - [Click to show/hide]" + This CF covers releases that are 10bit ??? example "JSON - [Click to show/hide]" @@ -2707,13 +2738,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/10bit.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Anime Dual Audio ??? question "Anime Dual Audio - [Click to show/hide]" + This CF covers releases that have Dual Audio ??? example "JSON - [Click to show/hide]" @@ -2722,13 +2754,14 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/anime-dual-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- ### Dubs Only ??? question "Dubs Only - [Click to show/hide]" + This CF covers releases that only have Dubs ??? example "JSON - [Click to show/hide]" @@ -2737,7 +2770,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/dubs-only.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2757,7 +2790,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/multi-french.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2773,7 +2806,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/multi-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2789,7 +2822,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-audio.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2805,7 +2838,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vff.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2821,7 +2854,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vof.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2837,7 +2870,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vfi.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2853,7 +2886,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vf2.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2869,7 +2902,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vfq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2885,7 +2918,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-voq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2901,7 +2934,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2917,7 +2950,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vfb.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2933,7 +2966,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-vostfr.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2949,7 +2982,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/fansub.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2965,7 +2998,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/fastsub.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -2987,7 +3020,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-remux-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3006,7 +3039,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-hd-bluray-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3024,7 +3057,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-web-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3042,7 +3075,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-web-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3060,7 +3093,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-web-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3078,7 +3111,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-anime-tier-01.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3096,7 +3129,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-anime-tier-02.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3115,7 +3148,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-anime-tier-03.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3131,7 +3164,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-anime-fansub.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3147,7 +3180,7 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-scene.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) --- @@ -3172,4 +3205,4 @@ We've made 3 guides related to this. [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/french-lq.json' %]][[% endfilter %]] ``` -[TOP](#index) +[TOP](#index) diff --git a/docs/Sonarr/sonarr-how-to-update-custom-formats.md b/docs/Sonarr/sonarr-how-to-update-custom-formats.md index 2c61ed434..3959fca45 100644 --- a/docs/Sonarr/sonarr-how-to-update-custom-formats.md +++ b/docs/Sonarr/sonarr-how-to-update-custom-formats.md @@ -6,7 +6,7 @@ Here I will try to explain how you can manually update Custom Formats for Sonarr ## How to Copy/Paste the JSON -The manual way is almost the same as the Import Custom Format way found [HERE](/Sonarr/sonarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"} +The manual way is almost the same as the Import Custom Format way found [HERE](/Sonarr/sonarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"} ### In Sonarr @@ -20,7 +20,7 @@ The manual way is almost the same as the Import Custom Format way found [HERE](/ ### Paste the Custom Format -In the empty `Custom Format JSON` box (1) you just paste the `JSON` that you got from the [Custom Format Collection](/Sonarr/sonarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} or provided to you from other sources followed by the `Import` button (2). +In the empty `Custom Format JSON` box (1) you just paste the `JSON` that you got from the [Custom Format Collection](/Sonarr/sonarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} or provided to you from other sources followed by the `Import` button (2). ![cf-import-cf](images/cf-import-cf.png) @@ -36,6 +36,6 @@ After selecting the `Import` button you will get a screen that has all the Custo This can be done also automatically with one of the TRaSH Sync Applications, -more info can be found [Here](/Guide-Sync/){:target="_blank" rel="noopener noreferrer"} +more info can be found [Here](/Guide-Sync/){:target="\_blank" rel="noopener noreferrer"} --8<-- "includes/support.md" diff --git a/docs/Sonarr/sonarr-import-custom-formats.md b/docs/Sonarr/sonarr-import-custom-formats.md index d25e40670..92711436f 100644 --- a/docs/Sonarr/sonarr-import-custom-formats.md +++ b/docs/Sonarr/sonarr-import-custom-formats.md @@ -6,9 +6,9 @@ Here I will try to explain how you can manually import Custom Formats for Sonarr ## How to Copy/Paste the JSON from the site -In this example I will use the [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk){:target="_blank" rel="noopener noreferrer"} Custom Format, the one most people don't want to download anyway. And if you do, then you probably don't use any of the Starr apps or Plex, being both don't support it. +In this example I will use the [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk){:target="\_blank" rel="noopener noreferrer"} Custom Format, the one most people don't want to download anyway. And if you do, then you probably don't use any of the Starr apps or Plex, being both don't support it. -Visit the [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} and select [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk){:target="_blank" rel="noopener noreferrer"} from the table. +Visit the [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} and select [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk){:target="\_blank" rel="noopener noreferrer"} from the table. ![cf-table-select-brdisk](images/cf-table-select-brdisk.png) @@ -40,7 +40,7 @@ Followed by the `Import` in the lower left. ### Paste the Custom Format -Paste the `JSON` in the empty `Custom Format JSON` box (1) that you got from the [Custom Format Collection](/Sonarr/sonarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"} followed by the `Import` button (2). +Paste the `JSON` in the empty `Custom Format JSON` box (1) that you got from the [Custom Format Collection](/Sonarr/sonarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"} followed by the `Import` button (2). ![cf-import-cf](images/cf-import-cf.png) @@ -54,9 +54,9 @@ all you need to do now is click on the `Save` button and you're done. ### 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"} +How this is done is explained [HERE](/Sonarr/sonarr-setup-custom-formats/#basics){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Start adding other Custom Formats wisely @@ -70,6 +70,6 @@ How this is done is explained [HERE](/Sonarr/sonarr-setup-custom-formats/#basics This can be done also automatically with one of the TRaSH Sync Applications, -more info can be found [Here](/Guide-Sync/){:target="_blank" rel="noopener noreferrer"} +more info can be found [Here](/Guide-Sync/){:target="\_blank" rel="noopener noreferrer"} --8<-- "includes/support.md" diff --git a/docs/Sonarr/sonarr-setup-quality-profiles-anime.md b/docs/Sonarr/sonarr-setup-quality-profiles-anime.md index ae90f0a90..2a5757400 100644 --- a/docs/Sonarr/sonarr-setup-quality-profiles-anime.md +++ b/docs/Sonarr/sonarr-setup-quality-profiles-anime.md @@ -1,21 +1,24 @@ # How to setup Quality Profiles Anime -*aka How to setup Custom Formats (Anime)*

+_aka How to setup Custom Formats (Anime)_

!!! warning + You must be running Sonarr V4 to be able to use this setup. ![V4](https://img.shields.io/badge/dynamic/json?query=%24.version&url=https://raw.githubusercontent.com/hotio/sonarr/nightly/VERSION.json&label=Current%20V4%20Version&style=for-the-badge&color=4051B5){ .off-glb } !!! note + This guide is created and maintained by [FonduemangVI](https://github.com/FonduemangVI) and [rg9400](https://github.com/rg9400) 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://releases.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"} +The aim of this guide is to grab the best release overall (as per [SeaDex](https://releases.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"} !!! info "" + Nyaa is a public tracker while AB is an invite only tracker. --- @@ -27,6 +30,7 @@ The vast majority of releases can be found on [Nyaa](https://nyaa.si/){:target=" When adding a new series make sure you set the series type to Anime ??? success "example - [Click to show/hide]" + ![!cfa-seriestype](images/cfa-seriestype.png) ### Recommended naming scheme @@ -79,15 +83,15 @@ Result: ## Quality Settings -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"} +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"} +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"} --- ## Quality Profile -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 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, `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. @@ -106,15 +110,14 @@ We then need to select and organise the qualities like below. ## Anime CF/Scoring !!! 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. + + 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" !} - {! include-markdown "../../includes/cf/sonarr-streaming-services-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 positive scores if you want to prefer content with these attributes. @@ -148,6 +151,7 @@ Below is an example of the scoring set to prefer `Dual Audio` over any tier. ### 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. diff --git a/docs/Sonarr/sonarr-setup-quality-profiles-french-en.md b/docs/Sonarr/sonarr-setup-quality-profiles-french-en.md index b5302472a..99cb8bf59 100644 --- a/docs/Sonarr/sonarr-setup-quality-profiles-french-en.md +++ b/docs/Sonarr/sonarr-setup-quality-profiles-french-en.md @@ -2,7 +2,7 @@ !!! note "This guide is created and maintained by [Someone said "Nice"?](https://github.com/NiceTSY)" -!!! tip "Cette page est aussi disponible en Français: [Guide en Français](/Sonarr/sonarr-setup-quality-profiles-french-fr/){:target="_blank" rel="noopener noreferrer"}." +!!! tip "Cette page est aussi disponible en Français: [Guide en Français](/Sonarr/sonarr-setup-quality-profiles-french-fr/){:target="\_blank" rel="noopener noreferrer"}." So what is the best way to set up the Custom Formats and which one to use with which scores to get French and English Audio? @@ -12,18 +12,18 @@ Regarding quality there isn't a best setup, it depends on your setup (hardware d Some prefer high quality audio (HD Audio), others high quality video. Many prefer both. -TRaSH created a [flowchart](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"} to make your decision/choices easier. Remember that this chart does not include any of the following Custom Formats and you will still need to read this guide to get MULTi releases. +TRaSH created a [flowchart](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"} to make your decision/choices easier. Remember that this chart does not include any of the following Custom Formats and you will still need to read this guide to get MULTi releases. ------- +--- ## Basics It is quite important that you follow and understand what is envisioned by Trash's guide: -- Adding Custom Formats, as explained in [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. -- Setting up a quality Profile to make use of the Custom Formats, as explained in [How to setup Quality Profiles | Basics section](/Sonarr/sonarr-setup-quality-profiles/#basics){:target="_blank" rel="noopener noreferrer"}. +- Adding Custom Formats, as explained in [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"}. +- Setting up a quality Profile to make use of the Custom Formats, as explained in [How to setup Quality Profiles | Basics section](/Sonarr/sonarr-setup-quality-profiles/#basics){:target="\_blank" rel="noopener noreferrer"}. ------- +--- ## I am only interested in French subs (VOSTFR) @@ -33,37 +33,38 @@ There is two options: !!! tip "This is the preferred method." -- Set up Sonarr using [How to setup Quality Profiles | Which Quality Profile should you choose](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"}. -- Set up [Bazarr](/Bazarr/Setup-Guide){:target="_blank" rel="noopener noreferrer"}. It will do an amazing job for getting your subtitle on every shows. +- Set up Sonarr using [How to setup Quality Profiles | Which Quality Profile should you choose](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"}. +- Set up [Bazarr](/Bazarr/Setup-Guide){:target="\_blank" rel="noopener noreferrer"}. It will do an amazing job for getting your subtitle on every shows. - Enjoy your shows with subs. -- (Optional) Add the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="_blank" rel="noopener noreferrer"} Custom Format with a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. +- (Optional) Add the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="\_blank" rel="noopener noreferrer"} Custom Format with a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ### Using the following examples and the VOSTFR Custom Format - Continue to read this page. - Ignore any mention of **MULTi Custom Formats**. -- Add the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="_blank" rel="noopener noreferrer"} Custom Format with a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. +- Add the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="\_blank" rel="noopener noreferrer"} Custom Format with a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ------- +--- ## Usages -There is two ways of using those French Custom Formats, with and without the Guide's original Group tiers (which can be found there: [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"}). +There is two ways of using those French Custom Formats, with and without the Guide's original Group tiers (which can be found there: [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"}). To illustrate this, you will see an **"Original mix (optional)"** section in each of the examples below. You need to understand that if you add the Custom Formats from this optional section if Sonarr do not find a MULTi you will still have a good scoring for single audio. !!! warning "Attention" + If you use the **"Original mix (optional)"**. You need to understand that even if in the beginning the main focus of those French Custom Formats is to work alongside the original ones. You could end up with a single audio release when a MULTi release exists. This is because it was not scored high enough to trump the other scoring. An example for Anime in MULTi/VOSTFR is also provided at the end: [Anime Example](#anime-example) ------- +--- ## Examples of Quality Profile --8<-- "includes/cf/score-attention.md" ------- +--- ### French Audio Versions @@ -73,11 +74,12 @@ Those are all optional and only there to rename your release or to prefer a cert - You only want VOSTFR, in this case you will ignore any mention of **MULTi Custom Formats** and give the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr) Custom Format a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. !!! warning "Attention" + It is not really recommended to put any of the VF Custom Formats (VFF, VFQ, VQ, VFB, VFI, VF2) to a negative score. Instead increase the score of your preferred audio. {! include-markdown "../../includes/french-guide/sonarr-french-audio-version-en.md" !} ------- +--- ### French Speaking Streaming Services @@ -85,13 +87,13 @@ Those are all optional and only there for information and does not have a score {! include-markdown "../../includes/french-guide/sonarr-french-streaming-services-en.md" !} ------- +--- ### TRaSH recommendations {! include-markdown "../../includes/cf/sonarr-suggest-attention.md" !} ------- +--- #### WEBDL-1080p @@ -124,7 +126,7 @@ Use the following main settings in your profile. - It will download WEB-DL 1080p. (If you also enabled `WEB 720p` and/or `HDTV 1080p` it will upgrade till `Upgrade Until`) - The downloaded media will be upgraded to any of the added Custom Formats until a score of 10000. ------- +--- #### WEBDL-2160p @@ -161,7 +163,7 @@ Use the following main settings in your profile. - It will upgrade to WEB-2160p when available. - The downloaded media will be upgraded to any of the added Custom Formats until a score of 10000. ------- +--- #### Anime Example @@ -177,21 +179,21 @@ If you are looking to grab Anime with either French sub or MULTi audio (original {! include-markdown "../../includes/french-guide/sonarr-cf-french-anime-scoring-en.md" !} ------- +--- ### HDR Formats TRaSH provides great guides and explanations about them at the following links: -- [HDR Formats](/Sonarr/sonarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"} +- [HDR Formats](/Sonarr/sonarr-setup-quality-profiles/#hdr-formats){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## FAQ & INFO -A FAQ regarding most of the questions you could have is provided by TRaSH: [FAQ & Info](/Sonarr/sonarr-setup-quality-profiles/#faq-info){:target="_blank" rel="noopener noreferrer"} +A FAQ regarding most of the questions you could have is provided by TRaSH: [FAQ & Info](/Sonarr/sonarr-setup-quality-profiles/#faq-info){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Acknowledgements diff --git a/docs/Sonarr/sonarr-setup-quality-profiles-french-fr.md b/docs/Sonarr/sonarr-setup-quality-profiles-french-fr.md index e166c52ec..4c20073be 100644 --- a/docs/Sonarr/sonarr-setup-quality-profiles-french-fr.md +++ b/docs/Sonarr/sonarr-setup-quality-profiles-french-fr.md @@ -10,18 +10,18 @@ Pour ce qui est de la qualité, il n'y a pas de recette miracle, cela dépend de Certains préfèrent une qualité audio élevée (HD Audio), d'autres une meilleure qualité vidéo. Nombreux sont ceux qui préfèrent les deux. -TRaSH a créé un [schéma](/Sonarr/sonarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"} pour faciliter votre décision/choix. Notez que ce graphique n'inclut aucun des Formats Personnalisés de ce guide et que vous devrez quand même le lire pour obtenir des releases en MULTi. +TRaSH a créé un [schéma](/Sonarr/sonarr-setup-custom-formats/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"} pour faciliter votre décision/choix. Notez que ce graphique n'inclut aucun des Formats Personnalisés de ce guide et que vous devrez quand même le lire pour obtenir des releases en MULTi. ------- +--- ## Notions de base -Il est impératif que vous respectiez et compreniez ce qui est proposé par le guide de TRaSH (*en anglais uniquement*) : +Il est impératif que vous respectiez et compreniez ce qui est proposé par le guide de TRaSH (_en anglais uniquement_) : -- L'ajout de Formats Personnalisés, comme expliqué dans [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. -- La configuration d'un profil de qualité pour utiliser les formats personnalisés, comme expliqué dans la section [How to setup Quality Profiles | Basics section](/Sonarr/sonarr-setup-quality-profiles/#basics){:target="_blank" rel="noopener noreferrer"}. +- L'ajout de Formats Personnalisés, comme expliqué dans [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="\_blank" rel="noopener noreferrer"}. +- La configuration d'un profil de qualité pour utiliser les formats personnalisés, comme expliqué dans la section [How to setup Quality Profiles | Basics section](/Sonarr/sonarr-setup-quality-profiles/#basics){:target="\_blank" rel="noopener noreferrer"}. ------- +--- ## Je ne suis intéressé que par des films sous-titrés en français (VOSTFR) @@ -31,36 +31,37 @@ Deux options s'offre à vous : !!! tip "Il s'agit de la méthode à privilégier." -- Configurez Radarr en utilisant : [How to setup Quality Profiles | Which Quality Profile should you choose](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="_blank" rel="noopener noreferrer"}. (*en anglais*). -- Configurez [Bazarr](../Bazarr/Setup-Guide.md) (*en anglais*). Il permet d'obtenir des sous-titres pour tous les films. +- Configurez Radarr en utilisant : [How to setup Quality Profiles | Which Quality Profile should you choose](/Sonarr/sonarr-setup-quality-profiles/#which-quality-profile-should-you-choose){:target="\_blank" rel="noopener noreferrer"}. (_en anglais_). +- Configurez [Bazarr](../Bazarr/Setup-Guide.md) (_en anglais_). Il permet d'obtenir des sous-titres pour tous les films. - Profitez de vos films avec les sous-titres. -- (Facultatif) Ajoutez le Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="_blank" rel="noopener noreferrer"} avec un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. +- (Facultatif) Ajoutez le Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="\_blank" rel="noopener noreferrer"} avec un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ### En utilisant les exemples suivants et le Format Personnalisé VOSTFR - Continuez sur cette page. - Ignorez toute mention des **Formats Personnalisés MULTi**. -- Ajoutez le Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="_blank" rel="noopener noreferrer"} avec un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. +- Ajoutez le Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr){:target="\_blank" rel="noopener noreferrer"} avec un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}`. ------- +--- ## Usages -Il y a deux façons d'aborder les exemples ci-dessous. En utilisant ou non les Formats Personnalisés de Groupes P2P du Guide original (qui peuvent être trouvés ici : [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="_blank" rel="noopener noreferrer"}). +Il y a deux façons d'aborder les exemples ci-dessous. En utilisant ou non les Formats Personnalisés de Groupes P2P du Guide original (qui peuvent être trouvés ici : [Collection of Custom Formats](/Sonarr/sonarr-collection-of-custom-formats/){:target="\_blank" rel="noopener noreferrer"}). Afin d'illustrer ce principe, vous verrez une section **"Mix original (optionnel)"** dans chacun des exemples ci-dessous. Vous devez comprendre que si vous ajoutez les Formats Personnalisés de cette section optionnelle, si Radarr ne trouve pas de MULTi, vous aurez toujours un bon score pour l'audio anglais. !!! warning "Attention" + Si vous utilisez le **"Mix original (optionnel)"**. Vous devez comprendre que même si l'objectif principal de ces Formats Personnalisés est de travailler en parallèle avec les formats du guide original. Vous pouvez vous retrouver avec un seul audio alors qu'il existe une version MULTi. La raison est que la release n'a pas été notée assez haut pour l'emporter sur les autres scores. Un exemple pour les Animes en MULTi/VOSTFR est également fourni à la fin : [Exemple pour les Animes](#exemple-pour-les-animes) ------- +--- ## Exemples de Profil --8<-- "includes/cf/score-attention.md" ------- +--- ### Type de versions françaises @@ -70,11 +71,12 @@ Ces Formats sont optionnels et ne sont là que pour renommer votre fichier ou po - Vous souhaitez seulement du VOSTFR, dans ce ce cas, ignorez toute mention des **Formats Personnalisés MULTi** et donnez un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-vostfr'] }}` au Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr). !!! warning "Attention" + Il n'est pas vraiment recommandé d'attribuer un score négatif à l'un des Formats Personnalisés de VF (VFF, VFQ, VQ, VFB, VFI, VF2). Augmentez plutôt le score de votre format audio préféré. {! include-markdown "../../includes/french-guide/sonarr-french-audio-version-fr.md" !} ------- +--- ### Services de streaming francophones @@ -82,13 +84,13 @@ Tous ces éléments sont facultatifs et ne sont là qu'à titre d'information et {! include-markdown "../../includes/french-guide/sonarr-french-streaming-services-fr.md" !} ------- +--- -### TRaSH recommandations (*en anglais*) +### TRaSH recommandations (_en anglais_) {! include-markdown "../../includes/cf/sonarr-suggest-attention.md" !} ------- +--- #### WEBDL-1080p @@ -123,7 +125,7 @@ Utilisez les paramètres principaux suivants dans votre profil. - Il téléchargera le WEB-DL 1080p (si vous avez également activé `WEB 720p` et/ou `HDTV 1080p`, la mise à niveau se fera jusqu'au WEB-DL 1080p). - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- #### WEBDL-2160p @@ -162,7 +164,7 @@ Utilisez les paramètres principaux suivants dans votre profil. - Il sera mis à niveau vers le WEB-2160p lorsqu'il sera disponible. - Le média sera mis à niveau en fonction des formats personnalisés ajoutés jusqu'à l'obtention d'un score de `10000`. ------- +--- #### Exemple pour les Animes @@ -178,21 +180,21 @@ Si vous cherchez des animes avec des sous-titres français ou en MULTi (audio or {! include-markdown "../../includes/french-guide/sonarr-cf-french-anime-scoring-fr.md" !} ------- +--- ### Formats HDR -TRaSH fournit d'excellents guides et explications à leur sujet dans les liens suivants (*en anglais uniquement*) : +TRaSH fournit d'excellents guides et explications à leur sujet dans les liens suivants (_en anglais uniquement_) : -- [HDR Formats](/Sonarr/sonarr-setup-quality-profiles/#hdr-formats){:target="_blank" rel="noopener noreferrer"} +- [HDR Formats](/Sonarr/sonarr-setup-quality-profiles/#hdr-formats){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## FAQ & INFO -Une FAQ répondant à la plupart des questions que vous pourriez vous poser est fournie par TRaSH (*en anglais uniquement*) : [FAQ & Info](/Sonarr/sonarr-setup-quality-profiles/#faq-info){:target="_blank" rel="noopener noreferrer"} +Une FAQ répondant à la plupart des questions que vous pourriez vous poser est fournie par TRaSH (_en anglais uniquement_) : [FAQ & Info](/Sonarr/sonarr-setup-quality-profiles/#faq-info){:target="\_blank" rel="noopener noreferrer"} ------- +--- ## Remerciements diff --git a/docs/Sonarr/sonarr-setup-quality-profiles.md b/docs/Sonarr/sonarr-setup-quality-profiles.md index 4151e3781..eaf18be5b 100644 --- a/docs/Sonarr/sonarr-setup-quality-profiles.md +++ b/docs/Sonarr/sonarr-setup-quality-profiles.md @@ -1,6 +1,6 @@ # How to set up Quality Profiles -*aka How to set up Custom Formats*

+_aka How to set up Custom Formats_

So what's the best way to set up the Custom Formats and which ones to use with which scores to set up your quality profiles? There isn't a "best" setup, it depends on your media setup (hardware devices) and your personal preferences. @@ -12,11 +12,11 @@ Here we will try to explain how to make the most of Custom Formats to help you s - We've created a [flowchart](#which-quality-profile-should-you-choose) to make your decisions/choices easier. - We've also created an Excel sheet with several tested [media player devices](/Plex/what-does-my-media-player-support){:target="_blank" rel="noopener noreferrer"} to display what formats and capabilities they support, sourced from information provided by our community. We hope this Excel sheet will be a helpful resource for those looking for a reliable media player device and will help you choose the appropriate quality profile. ------- +--- ## Basics -After you've added the Custom Formats, as explained in [How to import Custom Formats](/Sonarr/sonarr-import-custom-formats/){:target="_blank" rel="noopener noreferrer"}. +After you've added the Custom Formats, as explained in [How to import Custom Formats](/Sonarr/sonarr-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` @@ -24,6 +24,7 @@ You will need to set it up in the quality Profile you want to use/prefer to make ![!cf-settings-profiles](images/cf-settings-profiles.png) !!! info "Sonarr 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) @@ -39,9 +40,11 @@ Select the profile that you want to use/prefer. At the bottom, in your chosen profile, you will see the added Custom Formats where you can start setting up the scores. ??? success "Screenshot example - [Click to show/hide]" + ![!cf-quality-profile-cf](images/cf-quality-profile-cf.png) !!! warning + 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. @@ -57,11 +60,11 @@ At the bottom, in your chosen profile, you will see the added Custom Formats whe - 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/sonarrv4-current-logic.md" !} ------- +--- ## Which Quality Profile should you choose @@ -73,7 +76,7 @@ At the bottom, in your chosen profile, you will see the added Custom Formats whe [![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} ------- +--- ## TRaSH Quality Profiles @@ -116,7 +119,7 @@ Use the following main settings in your profile. 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. ------- +--- ### WEB-2160p @@ -157,7 +160,7 @@ Use the following main settings in your profile. 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. ------- +--- ## Custom Format Groups @@ -169,7 +172,7 @@ The following custom format groups should be combined with the Quality Profiles {! include-markdown "../../includes/cf/sonarr-all-hdr-formats.md" !} ------- +--- ## FAQ & INFO diff --git a/docs/index.md b/docs/index.md index affcc92b5..4a0113faa 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,13 +4,13 @@ # TRaSH-Guides -[![Discord chat](https://img.shields.io/discord/492590071455940612?style=flat-square&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} -[![GitHub last commit](https://img.shields.io/github/last-commit/TRaSH-Guides/Guides?color=4051B5&label=Last%20Update&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/commits/master){:target="_blank" rel="noopener noreferrer"} -[![GitHub contributors](https://img.shields.io/github/contributors/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/graphs/contributors){:target="_blank" rel="noopener noreferrer"} -[![GitHub pull requests](https://img.shields.io/github/issues-pr/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/pulls){:target="_blank" rel="noopener noreferrer"} -[![GitHub issues](https://img.shields.io/github/issues/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/issues){:target="_blank" rel="noopener noreferrer"} +[![Discord chat](https://img.shields.io/discord/492590071455940612?style=flat-square&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="\_blank" rel="noopener noreferrer"} +[![GitHub last commit](https://img.shields.io/github/last-commit/TRaSH-Guides/Guides?color=4051B5&label=Last%20Update&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/commits/master){:target="\_blank" rel="noopener noreferrer"} +[![GitHub contributors](https://img.shields.io/github/contributors/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/graphs/contributors){:target="\_blank" rel="noopener noreferrer"} +[![GitHub pull requests](https://img.shields.io/github/issues-pr/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/pulls){:target="\_blank" rel="noopener noreferrer"} +[![GitHub issues](https://img.shields.io/github/issues/TRaSH-Guides/Guides?color=4051B5&style=flat-square){ .off-glb }](https://github.com/TRaSH-Guides/Guides/issues){:target="\_blank" rel="noopener noreferrer"} -*TRaSH Guides, Guides that aren't trash.* +_TRaSH Guides, Guides that aren't trash._ Here you will find guides mainly for Sonarr/Radarr/Bazarr and everything related to it. @@ -18,16 +18,16 @@ Here you will find guides mainly for Sonarr/Radarr/Bazarr and everything related When I started using Sonarr/Radarr, I noticed that it didn't grab the releases that I actually wanted (I'm a bit picky about which releases and what quality I prefer). I decided to fine-tune my quality profile settings to try and get the releases and qualities I preferred. While on Discord, I noticed that others ran into the same issue, so I explained how I managed to solve this. Once I started having to explain more often, I decided to write it down and make it public so I could easily link to it when needed. -After a while I *also* decided to create guides for frequently asked questions and started to collect all kinds of information gathered from various sources. +After a while I _also_ decided to create guides for frequently asked questions and started to collect all kinds of information gathered from various sources. I try to make my guides as easy as possible for everyone to understand and, in my opinion, pictures often explain more than just some text. --- ## Support -[![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} +[![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="\_blank" rel="noopener noreferrer"} -If you have questions, suggestions, or requests, or want to contribute, click the chat badge to join the Discord Channel. There you can ask your questions directly, or you can use the following [link](https://github.com/TRaSH-Guides/Guides/issues){:target="_blank" rel="noopener noreferrer"} to open an issue on GitHub. +If you have questions, suggestions, or requests, or want to contribute, click the chat badge to join the Discord Channel. There you can ask your questions directly, or you can use the following [link](https://github.com/TRaSH-Guides/Guides/issues){:target="\_blank" rel="noopener noreferrer"} to open an issue on GitHub. Feel free to create a PR if you want to. --- @@ -43,7 +43,7 @@ All of the information provided in these guides, as well as in Discord or any gu ### Special Thanks -- [iXNyNe aka nemchik](https://github.com/nemchik){:target="_blank" rel="noopener noreferrer"} for introducing me to the world of docker containers with DockSTARTer, and for helping me learn the basics of it. -- [Roxedus](https://github.com/Roxedus){:target="_blank" rel="noopener noreferrer"} for helping me with the transfer/conversion of my Github guides to MkDocs and making everything look great. -- [rg9400](https://github.com/rg9400){:target="_blank" rel="noopener noreferrer"} for providing most of the Radarr v3 Custom Format Collection. +- [iXNyNe aka nemchik](https://github.com/nemchik){:target="\_blank" rel="noopener noreferrer"} for introducing me to the world of docker containers with DockSTARTer, and for helping me learn the basics of it. +- [Roxedus](https://github.com/Roxedus){:target="\_blank" rel="noopener noreferrer"} for helping me with the transfer/conversion of my Github guides to MkDocs and making everything look great. +- [rg9400](https://github.com/rg9400){:target="\_blank" rel="noopener noreferrer"} for providing most of the Radarr v3 Custom Format Collection. - Everyone who contributed to this project in any way possible. diff --git a/docs/json/radarr/cf/10-mono.json b/docs/json/radarr/cf/10-mono.json index 4b56ad0fc..0a160fdc3 100644 --- a/docs/json/radarr/cf/10-mono.json +++ b/docs/json/radarr/cf/10-mono.json @@ -2,50 +2,51 @@ "trash_id": "b124be9b146540f8e62f98fe32e49a2a", "name": "1.0 Mono", "includeCustomFormatWhenRenaming": false, - "specifications": [{ - "name": "Mono", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": true, - "fields": { - "value": "[^0-9]1[ .]0|\\bMono\\b|\\[PCM \\]" - } - }, - { - "name": "Not Stereo", - "implementation": "ReleaseTitleSpecification", - "negate": true, - "required": true, - "fields": { - "value": "(?'); - -webkit-mask-image: url('data:image/svg+xml;utf8,'); + width: calc(var(--permalink-size) + var(--permalink-spacing)); + height: var(--permalink-size); + vertical-align: middle; + background-color: var(--md-default-fg-color--lighter); + background-size: var(--permalink-size); + mask-size: var(--permalink-size); + -webkit-mask-size: var(--permalink-size); + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + visibility: visible; + mask-image: url('data:image/svg+xml;utf8,'); + -webkit-mask-image: url('data:image/svg+xml;utf8,'); } [id]:target .headerlink { - background-color: var(--md-typeset-a-color); + background-color: var(--md-typeset-a-color); } .headerlink:hover { - background-color: var(--md-accent-fg-color) !important; + background-color: var(--md-accent-fg-color) !important; } @media screen and (min-width: 76.25em) { - h1, h2, h3, h4, h5, h6 { - display: flex; - align-items: center; - flex-direction: row; - } + h1, + h2, + h3, + h4, + h5, + h6 { + display: flex; + align-items: center; + flex-direction: row; + } - .headerlink { - order: -1; - margin-left: calc(var(--permalink-size) * -1 - var(--permalink-spacing)) !important; - } -} \ No newline at end of file + .headerlink { + order: -1; + margin-left: calc( + var(--permalink-size) * -1 - var(--permalink-spacing) + ) !important; + } +} diff --git a/includes/cf-descriptions/4od.md b/includes/cf-descriptions/4od.md index 8c151e812..835944eb4 100644 --- a/includes/cf-descriptions/4od.md +++ b/includes/cf-descriptions/4od.md @@ -1,5 +1,5 @@ **4OD**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Channel_4_(VoD_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 4OD is a previous name for the UK's Channel4 VOD service. Releases are usually identified with either 'ALL4' or '4OD', not 'Channel4'. diff --git a/includes/cf-descriptions/aac.md b/includes/cf-descriptions/aac.md index db73bf949..0cf5222af 100644 --- a/includes/cf-descriptions/aac.md +++ b/includes/cf-descriptions/aac.md @@ -1,4 +1,4 @@ **AAC**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Advanced_Audio_Coding){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Advanced_Audio_Coding){:target="\_blank" rel="noopener noreferrer"} Advanced Audio Coding (AAC) is an audio coding standard for lossy digital audio compression. Designed to be the successor of the MP3 format, AAC generally achieves higher sound quality than MP3 at the same bit rate. diff --git a/includes/cf-descriptions/abema.md b/includes/cf-descriptions/abema.md index 1fd5241ad..2f9764162 100644 --- a/includes/cf-descriptions/abema.md +++ b/includes/cf-descriptions/abema.md @@ -1,3 +1,3 @@ **Abema**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Abema){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Abema){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/all4.md b/includes/cf-descriptions/all4.md index da50461f3..47770ed2e 100644 --- a/includes/cf-descriptions/all4.md +++ b/includes/cf-descriptions/all4.md @@ -1,5 +1,5 @@ **ALL4**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Channel_4_(VoD_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} ALL4 is a previous name for the UK's Channel4 VOD service. Releases are usually identified with either 'ALL4' or '4OD', not 'Channel4'. diff --git a/includes/cf-descriptions/amzn.md b/includes/cf-descriptions/amzn.md index 26080d80a..e38c09ef9 100644 --- a/includes/cf-descriptions/amzn.md +++ b/includes/cf-descriptions/amzn.md @@ -1,5 +1,5 @@ **Amazon Prime Video**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Amazon_Prime_Video){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Amazon_Prime_Video){:target="\_blank" rel="noopener noreferrer"} Amazon Prime Video, or simply Prime Video, is an American subscription video on-demand over-the-top streaming and rental service of Amazon offered as a standalone service or as part of Amazon's Prime subscription. The service primarily distributes films and television series produced by Amazon MGM Studios or licensed to Amazon, as Amazon Originals, with the service also hosting content from other providers, content add-ons, live sporting events, and video rental and purchasing services. diff --git a/includes/cf-descriptions/atmos-undefined.md b/includes/cf-descriptions/atmos-undefined.md index 7d37c3363..b8d699d40 100644 --- a/includes/cf-descriptions/atmos-undefined.md +++ b/includes/cf-descriptions/atmos-undefined.md @@ -3,4 +3,5 @@ This custom format covers cases where _ONLY_ "Atmos" is specified in the release title, without noting DD+ (Lossy) or TrueHD (Lossless). !!! note + Apply the same score as Lossy (DD+) Atmos. On import, it will be updated to reflect either lossy or lossless based on the media's info using ffprobe. diff --git a/includes/cf-descriptions/atvp.md b/includes/cf-descriptions/atvp.md index f606de6fb..f35061c19 100644 --- a/includes/cf-descriptions/atvp.md +++ b/includes/cf-descriptions/atvp.md @@ -1,5 +1,5 @@ **Apple TV+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Apple_TV%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Apple_TV%2B){:target="\_blank" rel="noopener noreferrer"} Apple TV+ is an American subscription streaming service owned and operated by Apple Inc. Launched on November 1, 2019, it offers a selection of original production film and television series called Apple Originals. diff --git a/includes/cf-descriptions/bcore.md b/includes/cf-descriptions/bcore.md index 176362c27..80e46eef8 100644 --- a/includes/cf-descriptions/bcore.md +++ b/includes/cf-descriptions/bcore.md @@ -1,7 +1,7 @@ **Bravia Core aka Sony Pictures Core**
-[From Sony](https://electronics.sony.com/bravia-core){:target="_blank" rel="noopener noreferrer"} -[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Sony_Pictures_Core){:target="_blank" rel="noopener noreferrer"} +[From Sony](https://electronics.sony.com/bravia-core){:target="\_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Sony_Pictures_Core){:target="\_blank" rel="noopener noreferrer"} Sony Pictures Core (formerly known as Bravia Core) is a video on demand service from Sony for its televisions and smartphones, launched in April 2021. The service offers the streaming of movies at up to 4K resolution provided by Sony Pictures Entertainment. CORE stands for Centre of Real Entertainment. Sony claims that Bravia Core has one of the largest libraries of IMAX Enhanced format film content. Streaming, which is marketed as Pure Stream, is claimed to be at speeds of up to 80 Mbit/s. diff --git a/includes/cf-descriptions/bglobal.md b/includes/cf-descriptions/bglobal.md index 74bb41a68..a8b100f2e 100644 --- a/includes/cf-descriptions/bglobal.md +++ b/includes/cf-descriptions/bglobal.md @@ -1,3 +1,3 @@ **B-Global**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/bilibili.md b/includes/cf-descriptions/bilibili.md index 71450300b..68b25f689 100644 --- a/includes/cf-descriptions/bilibili.md +++ b/includes/cf-descriptions/bilibili.md @@ -1,3 +1,3 @@ **Bilibili**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/cc.md b/includes/cf-descriptions/cc.md index 636cd123b..84a0f50a5 100644 --- a/includes/cf-descriptions/cc.md +++ b/includes/cf-descriptions/cc.md @@ -1,3 +1,3 @@ **Comedy Central**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Comedy_Central){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Comedy_Central){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/cr.md b/includes/cf-descriptions/cr.md index 4808fe2da..640a424be 100644 --- a/includes/cf-descriptions/cr.md +++ b/includes/cf-descriptions/cr.md @@ -1,3 +1,3 @@ **Crunchyroll**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Crunchyroll){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Crunchyroll){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/crav.md b/includes/cf-descriptions/crav.md index eab222c19..4e4a65e16 100644 --- a/includes/cf-descriptions/crav.md +++ b/includes/cf-descriptions/crav.md @@ -1,6 +1,6 @@ **CRAVE**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Crave_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Crave (originally CraveTV) is a Canadian subscription video on demand service. The service competes directly with other subscription-based over-the-top streaming services operating in Canada, primarily against American-based services. The service features Bell Media original programming, exclusive Canadian access to programming acquired from several U.S. television and streaming services, and various theatrically-released films. Crave's major programming supplier is Warner Bros. Discovery (HBO / Max and Warner Bros. films). Starz, offered in partnership with Lionsgate. diff --git a/includes/cf-descriptions/crit.md b/includes/cf-descriptions/crit.md index e310bf61a..e47ec9e07 100644 --- a/includes/cf-descriptions/crit.md +++ b/includes/cf-descriptions/crit.md @@ -1,3 +1,3 @@ **Criterion Channel**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/The_Criterion_Collection#Streaming_as_The_Criterion_Channel){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/The_Criterion_Collection#Streaming_as_The_Criterion_Channel){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/dcu.md b/includes/cf-descriptions/dcu.md index 6caca08b6..66b6dfced 100644 --- a/includes/cf-descriptions/dcu.md +++ b/includes/cf-descriptions/dcu.md @@ -1,6 +1,6 @@ **DC Universe (streaming service)**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/DC_Universe_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} DC Universe was an American subscription video-on-demand (SVOD) and digital comics service operated by DC Entertainment and Warner Bros. Digital Networks, both divisions of WarnerMedia. Launched on September 15, 2018, the service featured a streaming library of animated series and films based on DC Comics properties, new original television series adapted from DC properties, as well as a rotating back catalogue of DC Comics publications, and online community features. In 2020. diff --git a/includes/cf-descriptions/dd.md b/includes/cf-descriptions/dd.md index c17791892..5ea3f28a8 100644 --- a/includes/cf-descriptions/dd.md +++ b/includes/cf-descriptions/dd.md @@ -1,5 +1,5 @@ **DD aka AC3**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Digital){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Digital){:target="\_blank" rel="noopener noreferrer"} Dolby Digital, also known as Dolby AC-3, is a lossy audio compression format. diff --git a/includes/cf-descriptions/ddplus.md b/includes/cf-descriptions/ddplus.md index b9ef706b9..12506b88e 100644 --- a/includes/cf-descriptions/ddplus.md +++ b/includes/cf-descriptions/ddplus.md @@ -1,5 +1,5 @@ **DD+ aka E-AC3**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Digital_Plus){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Digital_Plus){:target="\_blank" rel="noopener noreferrer"} Dolby Digital Plus, also known as Enhanced AC-3 (commonly abbreviated as DD+ or E-AC-3, or EC-3), is the successor to Dolby Digital (AC-3). It is a digital audio compression scheme developed by Dolby Labs for the transport and storage of multi-channel digital audio. diff --git a/includes/cf-descriptions/dscp.md b/includes/cf-descriptions/dscp.md index d4804f669..f8d5922b2 100644 --- a/includes/cf-descriptions/dscp.md +++ b/includes/cf-descriptions/dscp.md @@ -1,5 +1,5 @@ **Discovery+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Discovery%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Discovery%2B){:target="\_blank" rel="noopener noreferrer"} Discovery+ (pronounced "Discovery Plus"; stylized as discovery+) is an American subscription video on-demand over-the-top streaming service owned by Warner Bros. Discovery (WBD). The service focuses on factual programming drawn from the libraries of Discovery's main channel brands, as well as original series (including spin-offs of programs from Discovery's television networks), and other acquired content. diff --git a/includes/cf-descriptions/dsnp.md b/includes/cf-descriptions/dsnp.md index 6bda09267..586355797 100644 --- a/includes/cf-descriptions/dsnp.md +++ b/includes/cf-descriptions/dsnp.md @@ -1,5 +1,5 @@ **Disney+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Disney%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Disney%2B){:target="\_blank" rel="noopener noreferrer"} Disney+ is an American subscription video on-demand over-the-top streaming media service owned and operated by Disney Streaming, the streaming division of Disney Entertainment, a major business segment of the Walt Disney Company.The service primarily distributes films and television shows produced by Walt Disney Studios and Disney Television Studios, with dedicated content hubs for Disney's flagship brands; Disney, Pixar, Marvel, Star Wars, National Geographic, and Hulu as well as showcasing original and exclusive films and television shows. diff --git a/includes/cf-descriptions/dts-hd-hra.md b/includes/cf-descriptions/dts-hd-hra.md index 056c0c459..c6223f21b 100644 --- a/includes/cf-descriptions/dts-hd-hra.md +++ b/includes/cf-descriptions/dts-hd-hra.md @@ -1,6 +1,6 @@ **DTS-HD HRA**
-[Technical Whitepaper](https://www.opusproductions.com/pdfs/DTS_HD_WhitePaper.pdf){:target="_blank" rel="noopener noreferrer"} +[Technical Whitepaper](https://www.opusproductions.com/pdfs/DTS_HD_WhitePaper.pdf){:target="\_blank" rel="noopener noreferrer"} | Codec | Page | Paragraph | | ---------- | ------ | --------- | diff --git a/includes/cf-descriptions/dts-hd-ma.md b/includes/cf-descriptions/dts-hd-ma.md index 40332789b..f158177d9 100644 --- a/includes/cf-descriptions/dts-hd-ma.md +++ b/includes/cf-descriptions/dts-hd-ma.md @@ -1,5 +1,5 @@ **DTS-HD MA**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/DTS-HD_Master_Audio){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/DTS-HD_Master_Audio){:target="\_blank" rel="noopener noreferrer"} DTS-HD Master Audio is a multi-channel lossless audio codec developed by DTS that extends the lossy DTS Coherent Acoustics codec (DTS CA; usually referred to as simply "DTS"). Rather than being an entirely new coding mechanism, DTS-HD MA encodes an audio master in lossy DTS first, then stores a concurrent stream of supplementary data representing whatever the DTS encoder discarded. This gives DTS-HD MA a lossy "core" able to be played back by devices that cannot decode the more complex lossless audio. DTS-HD MA's primary application is audio storage and playback for Blu-ray Disc media. diff --git a/includes/cf-descriptions/dv-hdr10.md b/includes/cf-descriptions/dv-hdr10.md index e96c96deb..8597c91ef 100644 --- a/includes/cf-descriptions/dv-hdr10.md +++ b/includes/cf-descriptions/dv-hdr10.md @@ -1,11 +1,11 @@ -*This Custom Format will only match on* `DV HDR10` +_This Custom Format will only match on_ `DV HDR10` -This format provides Dolby Vision *with* HDR10 fallback. +This format provides Dolby Vision _with_ HDR10 fallback. You will find this mainly with: - Remuxes - Bluray encodes -- Hybrid WEB-DL (*Hybrid isn't always mentioned*) +- Hybrid WEB-DL (_Hybrid isn't always mentioned_) {! include-markdown "../../includes/cf-descriptions/dolby-vision.md" !} diff --git a/includes/cf-descriptions/dv-hdr10plus.md b/includes/cf-descriptions/dv-hdr10plus.md index c30e822be..ff524001e 100644 --- a/includes/cf-descriptions/dv-hdr10plus.md +++ b/includes/cf-descriptions/dv-hdr10plus.md @@ -1,11 +1,11 @@ -*This Custom Format will only match on* `DV HDR10+` +_This Custom Format will only match on_ `DV HDR10+` -This format provides Dolby Vision *with* HDR10+ fallback (with HDR10+ having native HDR10 fallback). +This format provides Dolby Vision _with_ HDR10+ fallback (with HDR10+ having native HDR10 fallback). You will find this mainly with: -- Hybrid Remuxes (*Hybrid isn't always mentioned*) -- Hybrid Bluray encodes (*Hybrid isn't always mentioned*) -- Hybrid WEB-DL (*Hybrid isn't always mentioned*) +- Hybrid Remuxes (_Hybrid isn't always mentioned_) +- Hybrid Bluray encodes (_Hybrid isn't always mentioned_) +- Hybrid WEB-DL (_Hybrid isn't always mentioned_) {! include-markdown "../../includes/cf-descriptions/dolby-vision.md" !} diff --git a/includes/cf-descriptions/dv-hlg.md b/includes/cf-descriptions/dv-hlg.md index bea70c822..7c0b6d51e 100644 --- a/includes/cf-descriptions/dv-hlg.md +++ b/includes/cf-descriptions/dv-hlg.md @@ -1,4 +1,4 @@ -*This Custom Format will only match on* `DV HLG` +_This Custom Format will only match on_ `DV HLG` **DV HLG**
This is a very rare HDR Format that was created by NHK (JP) and the BBC for cable, satellite, and over-the-air TV broadcasts. diff --git a/includes/cf-descriptions/dv-sdr.md b/includes/cf-descriptions/dv-sdr.md index c63a4f50e..55f41ae52 100644 --- a/includes/cf-descriptions/dv-sdr.md +++ b/includes/cf-descriptions/dv-sdr.md @@ -1,4 +1,4 @@ -*This Custom Format will only match on* `DV SDR` +_This Custom Format will only match on_ `DV SDR` **DV SDR**
diff --git a/includes/cf-descriptions/dv.md b/includes/cf-descriptions/dv.md index 83cd0b4a6..49328e2fe 100644 --- a/includes/cf-descriptions/dv.md +++ b/includes/cf-descriptions/dv.md @@ -1,4 +1,4 @@ -*This Custom Format will only match on* `DV` **NOT** *on* `DV HDR10` *etc*. +_This Custom Format will only match on_ `DV` **NOT** _on_ `DV HDR10` _etc_. Depending on the source (WEB-DL, Bluray, or Remux) this format will match the following: diff --git a/includes/cf-descriptions/fod.md b/includes/cf-descriptions/fod.md index a8e0877b1..ab868fd1f 100644 --- a/includes/cf-descriptions/fod.md +++ b/includes/cf-descriptions/fod.md @@ -1,4 +1,4 @@ **Fuji Television On Demand**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Fuji_Television){:target="_blank" rel="noopener noreferrer"} -[FOD Website](https://fod-sp.fujitv.co.jp){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Fuji_Television){:target="\_blank" rel="noopener noreferrer"} +[FOD Website](https://fod-sp.fujitv.co.jp){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/french-adn.md b/includes/cf-descriptions/french-adn.md index e91139582..cf3243f3d 100644 --- a/includes/cf-descriptions/french-adn.md +++ b/includes/cf-descriptions/french-adn.md @@ -1,3 +1,3 @@ **Animation Digital Network**
-[From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Animation_Digital_Network){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Animation_Digital_Network){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/french-canalplus.md b/includes/cf-descriptions/french-canalplus.md index 92cee30f6..2adeea37d 100644 --- a/includes/cf-descriptions/french-canalplus.md +++ b/includes/cf-descriptions/french-canalplus.md @@ -1,3 +1,3 @@ **Canal+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Canal%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Canal%2B){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/french-rtbf.md b/includes/cf-descriptions/french-rtbf.md index 430dfc0fc..142f6b323 100644 --- a/includes/cf-descriptions/french-rtbf.md +++ b/includes/cf-descriptions/french-rtbf.md @@ -1,3 +1,3 @@ **RTBF**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/RTBF){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/RTBF){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/french-salto.md b/includes/cf-descriptions/french-salto.md index ecbed922f..e7608cfaa 100644 --- a/includes/cf-descriptions/french-salto.md +++ b/includes/cf-descriptions/french-salto.md @@ -1,3 +1,3 @@ **SⱯLTO**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Salto_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/french-wkn.md b/includes/cf-descriptions/french-wkn.md index fec14960d..8d1697db2 100644 --- a/includes/cf-descriptions/french-wkn.md +++ b/includes/cf-descriptions/french-wkn.md @@ -1,3 +1,3 @@ **Wakanim**
-[From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Wakanim){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Wakanim){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/funi.md b/includes/cf-descriptions/funi.md index 04eb1f2ac..307cfd9df 100644 --- a/includes/cf-descriptions/funi.md +++ b/includes/cf-descriptions/funi.md @@ -1,3 +1,3 @@ **Funimation**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Funimation){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Funimation){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/hbo.md b/includes/cf-descriptions/hbo.md index 871a326d1..7bf055b91 100644 --- a/includes/cf-descriptions/hbo.md +++ b/includes/cf-descriptions/hbo.md @@ -1,5 +1,5 @@ **HBO**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/HBO){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/HBO){:target="\_blank" rel="noopener noreferrer"} Home Box Office (HBO) is an American pay television network, which is the flagship property of namesake parent-subsidiary Home Box Office, Inc., itself a unit owned by Warner Bros. Discovery. The overall Home Box Office business unit is based at Warner Bros. Programming featured on the network consists primarily of theatrically released motion pictures and original television programs as well as made-for-cable movies, documentaries, occasional comedy, and concert specials, and periodic interstitial programs (consisting of short films and making-of documentaries). diff --git a/includes/cf-descriptions/hdr.md b/includes/cf-descriptions/hdr.md index 0d87770e2..f7e2746c0 100644 --- a/includes/cf-descriptions/hdr.md +++ b/includes/cf-descriptions/hdr.md @@ -1,3 +1,3 @@ -*This Custom Format will only match on* `HDR` **NOT** *on* `HDR10`, `HDR10+` *etc* +_This Custom Format will only match on_ `HDR` **NOT** _on_ `HDR10`, `HDR10+` _etc_ This Custom Format is a sort of "catch-all" for the `HDR` scene naming scheme where we don't know, based on name alone, which HDR formats are included - it could be `HDR10`, `HDR10+` or even `PQ`. diff --git a/includes/cf-descriptions/hidive.md b/includes/cf-descriptions/hidive.md index d8ebb5a1e..4ce9ddd71 100644 --- a/includes/cf-descriptions/hidive.md +++ b/includes/cf-descriptions/hidive.md @@ -1,3 +1,3 @@ **HIDIVE**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/HIDIVE){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/HIDIVE){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/hlg.md b/includes/cf-descriptions/hlg.md index f5b0107c8..891ee3413 100644 --- a/includes/cf-descriptions/hlg.md +++ b/includes/cf-descriptions/hlg.md @@ -1,4 +1,4 @@ -*This Custom Format will only match on* `DV HLG` +_This Custom Format will only match on_ `DV HLG` **HLG**
diff --git a/includes/cf-descriptions/hmax.md b/includes/cf-descriptions/hmax.md index 22fb129b6..20f2ed53c 100644 --- a/includes/cf-descriptions/hmax.md +++ b/includes/cf-descriptions/hmax.md @@ -1,5 +1,5 @@ **Max (streaming service) aka HBO Max**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/HBO_Max){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/HBO_Max){:target="\_blank" rel="noopener noreferrer"} Max, formerly and in some markets still HBO Max, is an American subscription video on-demand over-the-top streaming service. It is a proprietary unit of Warner Bros. Discovery Global Streaming & Interactive Entertainment, which is itself a division of Warner Bros. Discovery (WBD). First launched (as HBO Max) in the United States on May 27, 2020, the service offers content from the libraries of Warner Bros., Discovery Channel, HBO, CNN, Cartoon Network, Adult Swim, Animal Planet, Eurosport, and their related brands. diff --git a/includes/cf-descriptions/htsr.md b/includes/cf-descriptions/htsr.md index 710e6b1d6..b80d8ed2f 100644 --- a/includes/cf-descriptions/htsr.md +++ b/includes/cf-descriptions/htsr.md @@ -1,5 +1,5 @@ **Disney+ Hotstar**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Disney%2B_Hotstar){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Disney%2B_Hotstar){:target="\_blank" rel="noopener noreferrer"} Disney+ Hotstar is an Indian subscription video-on-demand over-the-top streaming service owned by Disney Star, a subsidiary of the Disney Entertainment business segment of The Walt Disney Company, featuring domestic Indian film, television and sports content for India itself and its worldwide diaspora. It also includes imported content from and serves Southeast Asia as well. diff --git a/includes/cf-descriptions/hulu.md b/includes/cf-descriptions/hulu.md index ef90a053a..e28341ba0 100644 --- a/includes/cf-descriptions/hulu.md +++ b/includes/cf-descriptions/hulu.md @@ -1,5 +1,5 @@ **Hulu**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Hulu){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Hulu){:target="\_blank" rel="noopener noreferrer"} Hulu (/ˈhuːluː/) is an American subscription streaming service owned by The Walt Disney Company. It was launched on October 29, 2007. diff --git a/includes/cf-descriptions/ip.md b/includes/cf-descriptions/ip.md index c70d45a79..6750f6e88 100644 --- a/includes/cf-descriptions/ip.md +++ b/includes/cf-descriptions/ip.md @@ -1,5 +1,5 @@ **BBC iPlayer aka iP**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/BBC_iPlayer){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/BBC_iPlayer){:target="\_blank" rel="noopener noreferrer"} BBC iPlayer is a video on demand service from the BBC. iPlayer services delivered to UK-based viewers feature no commercial advertising. diff --git a/includes/cf-descriptions/it.md b/includes/cf-descriptions/it.md index 340f5700e..d204e6063 100644 --- a/includes/cf-descriptions/it.md +++ b/includes/cf-descriptions/it.md @@ -1,5 +1,5 @@ **iTunes**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/ITunes){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/ITunes){:target="\_blank" rel="noopener noreferrer"} Apple introduced iTunes 6, enabling support for purchasing and viewing video content purchased from the iTunes Store. At launch, the store offered popular shows from the ABC network along with Disney Channel series. In 2008, Apple and select film studios introduced "iTunes Digital Copy", a feature on select DVDs and Blu-ray discs allowing a digital copy in iTunes and associated media players. diff --git a/includes/cf-descriptions/itvx.md b/includes/cf-descriptions/itvx.md index be16acfcc..599b1b664 100644 --- a/includes/cf-descriptions/itvx.md +++ b/includes/cf-descriptions/itvx.md @@ -1,5 +1,5 @@ **ITVX aka ITV**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/ITVX){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/ITVX){:target="\_blank" rel="noopener noreferrer"} ITVX (formerly ITV Hub) is a British ad-supported video-on-demand streaming service operated by ITV. The service offers original content from the broadcaster, as well as some exclusive and licensed programming. diff --git a/includes/cf-descriptions/ma.md b/includes/cf-descriptions/ma.md index ff011d47b..a3270e6fd 100644 --- a/includes/cf-descriptions/ma.md +++ b/includes/cf-descriptions/ma.md @@ -1,5 +1,5 @@ **Movies Anywhere**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Movies_Anywhere){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Movies_Anywhere){:target="\_blank" rel="noopener noreferrer"} Movies Anywhere (MA) is a cloud-based digital rights locker and over-the-top streaming platform that allows users to stream and download purchased films, including digital copies redeemed from codes found in home video releases as well as digital purchases from participating services. Movies Anywhere is operated by The Walt Disney Company. The platform provides content from Walt Disney Studios, Sony Pictures, Universal Pictures, and Warner Bros. The system utilizes an internal platform known as KeyChest, which synchronizes content licenses from digital distribution platforms linked to a central user account. diff --git a/includes/cf-descriptions/nf.md b/includes/cf-descriptions/nf.md index e7bce87e6..0f4cedcf9 100644 --- a/includes/cf-descriptions/nf.md +++ b/includes/cf-descriptions/nf.md @@ -1,5 +1,5 @@ **Netflix**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Netflix){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Netflix){:target="\_blank" rel="noopener noreferrer"} Netflix is an American subscription video on-demand over-the-top streaming service. The service primarily distributes original and acquired films and television shows from various genres, and it is available internationally in multiple languages. diff --git a/includes/cf-descriptions/now.md b/includes/cf-descriptions/now.md index 6e3c1b8a1..266340c3b 100644 --- a/includes/cf-descriptions/now.md +++ b/includes/cf-descriptions/now.md @@ -1,5 +1,5 @@ **NOW**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Now_(Sky)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Now (formerly Now TV and often stylised as NOW) is a subscription over-the-top streaming television service operated by British satellite television provider Sky Group. diff --git a/includes/cf-descriptions/opus.md b/includes/cf-descriptions/opus.md index 90b1cd57f..1b5fdc713 100644 --- a/includes/cf-descriptions/opus.md +++ b/includes/cf-descriptions/opus.md @@ -1,5 +1,5 @@ **OPUS**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Opus_(audio_format)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Opus is a lossy audio coding format developed by the Xiph.Org Foundation and standardized by the Internet Engineering Task Force, designed to efficiently code speech and general audio in a single format while remaining low-latency enough for real-time interactive communication and low-complexity enough for low-end embedded processors. Opus replaces both Vorbis and Speex for new applications, and several blind listening tests have ranked it higher quality than any other standard audio format at any given bitrate until transparency is reached, including MP3, AAC, and HE-AAC. diff --git a/includes/cf-descriptions/ovid.md b/includes/cf-descriptions/ovid.md index 211012eef..ba41c6d05 100644 --- a/includes/cf-descriptions/ovid.md +++ b/includes/cf-descriptions/ovid.md @@ -1,3 +1,3 @@ **OViD**
-[OViD Website](https://search.ovid.tv/other/about){:target="_blank" rel="noopener noreferrer"} +[OViD Website](https://search.ovid.tv/other/about){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/pathe.md b/includes/cf-descriptions/pathe.md index 94a439353..7cea5e60b 100644 --- a/includes/cf-descriptions/pathe.md +++ b/includes/cf-descriptions/pathe.md @@ -1,5 +1,5 @@ **Pathé Thuis**
-[From Wikipedia, the free encyclopedia](https://nl.wikipedia.org/wiki/Path%C3%A9_Thuis){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://nl.wikipedia.org/wiki/Path%C3%A9_Thuis){:target="\_blank" rel="noopener noreferrer"} Pathé Thuis is a Dutch streaming service for renting and purchasing films. diff --git a/includes/cf-descriptions/pcok.md b/includes/cf-descriptions/pcok.md index fdc4fe5d2..88ca958fb 100644 --- a/includes/cf-descriptions/pcok.md +++ b/includes/cf-descriptions/pcok.md @@ -1,5 +1,5 @@ **Peacock TV**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Peacock_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Peacock is an American over-the-top video streaming service owned and operated by Peacock TV LLC, a subsidiary of NBCUniversal Media Group. Named after the NBC logo, the service launched on July 15, 2020. The service primarily features series and film content from NBCUniversal studios and other third-party content providers, including television series, films, news, and sports programming. The service is available in a grandfathered free ad-supported version with limited content, while premium tiers include a larger content library and access to additional NBC Sports, Hallmark Channel, and WWE content. diff --git a/includes/cf-descriptions/pmtp.md b/includes/cf-descriptions/pmtp.md index 0c233687d..0924da4b0 100644 --- a/includes/cf-descriptions/pmtp.md +++ b/includes/cf-descriptions/pmtp.md @@ -1,5 +1,5 @@ **Paramount+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Paramount%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Paramount%2B){:target="\_blank" rel="noopener noreferrer"} Paramount+ is an American subscription video on-demand over-the-top streaming service owned by Paramount Global. The service's content is drawn primarily from the libraries of CBS Media Ventures, CBS Studios, Paramount Media Networks (formerly Viacom Media Networks and ViacomCBS Domestic Media Networks), and Paramount Pictures, while also including original series and films, live streaming sports coverage, and in the United States, live streaming of local CBS broadcast stations. diff --git a/includes/cf-descriptions/qibi.md b/includes/cf-descriptions/qibi.md index 81e6eb1f7..6ac1ebe70 100644 --- a/includes/cf-descriptions/qibi.md +++ b/includes/cf-descriptions/qibi.md @@ -1,5 +1,5 @@ **Quibi**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Quibi){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Quibi){:target="\_blank" rel="noopener noreferrer"} Quibi (/ˈkwɪbi/ KWIB-ee) was an American short-form streaming platform, It launched in April 2020, but shut down in December 2020 after falling short of its subscriber projections. diff --git a/includes/cf-descriptions/red.md b/includes/cf-descriptions/red.md index 6a8e6c629..1abfd46c0 100644 --- a/includes/cf-descriptions/red.md +++ b/includes/cf-descriptions/red.md @@ -1,3 +1,3 @@ **Youtube Red**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/YouTube_Premium){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/YouTube_Premium){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/sho.md b/includes/cf-descriptions/sho.md index d96f52bdf..7ae5e197e 100644 --- a/includes/cf-descriptions/sho.md +++ b/includes/cf-descriptions/sho.md @@ -1,5 +1,5 @@ **SHOWTIME**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Showtime_(TV_network)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Paramount+ with Showtime, also known as Showtime (the former name of its main channel from 1976 to 2024, but still used for certain marketing and channel branding contexts), is an American premium television network and the flagship property of Showtime Networks, a sub-division of the Paramount Media Networks division of Paramount Global. Paramount+ with Showtime's programming includes original television series produced exclusively for the linear network and developed for the co-owned Paramount+ streaming service, theatrically released and independent motion pictures, documentaries, and occasional stand-up comedy specials, made-for-TV movies and softcore adult programming. diff --git a/includes/cf-descriptions/stan.md b/includes/cf-descriptions/stan.md index 2e567269c..8a5fe4617 100644 --- a/includes/cf-descriptions/stan.md +++ b/includes/cf-descriptions/stan.md @@ -1,5 +1,5 @@ **Stan**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Stan_(service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Stan is an Australian over-the-top streaming service. The service offers a broad range of film and television content from both local and foreign productions, particularly from the United States and United Kingdom. Stan also includes a growing library of their own original film and television content. With over 2.6 million subscribers, as of June 2023 Stan is the fourth largest streaming service in Australia, behind Disney+, Amazon Prime Video and Netflix. diff --git a/includes/cf-descriptions/strp.md b/includes/cf-descriptions/strp.md index 716f07c37..110f90ca2 100644 --- a/includes/cf-descriptions/strp.md +++ b/includes/cf-descriptions/strp.md @@ -1,6 +1,6 @@ **Star+**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Star%2B){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Star%2B){:target="\_blank" rel="noopener noreferrer"} Star+ (Star Plus; stylized as ST★R+) is a subscription video on-demand over-the-top streaming service available in almost all Ibero-American states. The service is owned by The Walt Disney Company through the Disney Entertainment division and business segment. diff --git a/includes/cf-descriptions/truehd-atmos.md b/includes/cf-descriptions/truehd-atmos.md index 2a23065f9..d7d7b071b 100644 --- a/includes/cf-descriptions/truehd-atmos.md +++ b/includes/cf-descriptions/truehd-atmos.md @@ -1,5 +1,5 @@ **TrueHD Atmos**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Atmos){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Atmos){:target="\_blank" rel="noopener noreferrer"} Dolby Atmos is a surround sound technology developed by Dolby Laboratories. It expands on existing surround sound systems by adding height channels, allowing sounds to be interpreted as three-dimensional objects. diff --git a/includes/cf-descriptions/truehd.md b/includes/cf-descriptions/truehd.md index 43d55c6b5..a8cdb30ba 100644 --- a/includes/cf-descriptions/truehd.md +++ b/includes/cf-descriptions/truehd.md @@ -1,5 +1,5 @@ **TrueHD**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_TrueHD){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_TrueHD){:target="\_blank" rel="noopener noreferrer"} Dolby TrueHD is a lossless multi-channel audio codec developed by Dolby Laboratories for home video, used principally in Blu-ray Discs and compatible hardware. diff --git a/includes/cf-descriptions/tver.md b/includes/cf-descriptions/tver.md index a572c394b..acad57351 100644 --- a/includes/cf-descriptions/tver.md +++ b/includes/cf-descriptions/tver.md @@ -1,4 +1,4 @@ **TVer**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/TVer_(streaming_service)){:target="_blank" rel="noopener noreferrer"} -[TVer Website](https://tver.jp){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} +[TVer Website](https://tver.jp){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/tving.md b/includes/cf-descriptions/tving.md index 9a801a84b..26e912148 100644 --- a/includes/cf-descriptions/tving.md +++ b/includes/cf-descriptions/tving.md @@ -1,5 +1,5 @@ **TVING**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/TVING){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/TVING){:target="\_blank" rel="noopener noreferrer"} TVING (Korean: 티빙) is a South Korean subscription video on-demand over-the-top streaming service operated by TVING Corporation, It is a platform that streams dramas, entertainment shows, animations, exclusive television films, specials and documentaries. diff --git a/includes/cf-descriptions/u-next.md b/includes/cf-descriptions/u-next.md index 05c6a7e23..b9b157c20 100644 --- a/includes/cf-descriptions/u-next.md +++ b/includes/cf-descriptions/u-next.md @@ -1,4 +1,4 @@ **U-NEXT**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/U-Next){:target="_blank" rel="noopener noreferrer"} -[U-NEXT Website](https://video.unext.jp){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/U-Next){:target="\_blank" rel="noopener noreferrer"} +[U-NEXT Website](https://video.unext.jp){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf-descriptions/vdl.md b/includes/cf-descriptions/vdl.md index 00b539194..6a41238a0 100644 --- a/includes/cf-descriptions/vdl.md +++ b/includes/cf-descriptions/vdl.md @@ -1,5 +1,5 @@ **Videoland**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Videoland_(Netherlands)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Videoland is a Dutch OTT online service provider owned by RTL Nederland. Originally it was a retail chain of video rental stores. Its main competitor is Netflix. diff --git a/includes/cf-descriptions/viu.md b/includes/cf-descriptions/viu.md index eed63563f..75841b396 100644 --- a/includes/cf-descriptions/viu.md +++ b/includes/cf-descriptions/viu.md @@ -1,5 +1,5 @@ **VIU**
-[From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Viu_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} Viu (pronounced as view) is a Hong Kong-based over-the-top (OTT) video streaming provider, Viu delivers content in different genres from Asia's top content providers with local language subtitles, as well as original production series under the Viu Original initiative (similar to original programming from other services like Disney+, Amazon Prime Video and Netflix). diff --git a/includes/cf-descriptions/vrv.md b/includes/cf-descriptions/vrv.md index 67c1848e6..07e56e935 100644 --- a/includes/cf-descriptions/vrv.md +++ b/includes/cf-descriptions/vrv.md @@ -1,3 +1,3 @@ **VRV**
-[From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/VRV_(streaming_service)){:target="_blank" rel="noopener noreferrer"} +[From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/cf/dv-info-profiles.md b/includes/cf/dv-info-profiles.md index b9121a20e..ef538e519 100644 --- a/includes/cf/dv-info-profiles.md +++ b/includes/cf/dv-info-profiles.md @@ -5,7 +5,9 @@ - **Profile 5** (*1*) - This is what comes with WEB-DL Dolby Vision releases without HDR10 fallback.
(*Incompatible devices will playback with blown out pinks and greens*) - **Profile 7** (*2*) - This is what comes with UHD Bluray Remuxes and UHD BluRay releases.
*These files will play on an Nvidia Shield Pro (2019), but on most other players will revert to the HDR10 fallback.* - **Profile 8** (*3*) - This is what comes with (Hybrid) WEB-DL (HULU), Hybrid UHD Remux, and UHD BluRay releases (all of which have HDR10 fallback).
*This works with several mainstream media players.*
+ --- + {! include-markdown "../../includes/cf/dv-limitations-atv.md" !} - (*1*) *PLEX for AppleTV and Plex with Infuse will only play profile 5 correctly if CMv2.9 is used* diff --git a/includes/cf/radarr-anime.md b/includes/cf/radarr-anime.md index 5f7c925e6..bedd7753a 100644 --- a/includes/cf/radarr-anime.md +++ b/includes/cf/radarr-anime.md @@ -1,4 +1,5 @@ ??? abstract "Anime CF/Scoring - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------: | -------------------------------------------------------------------- | | [{{ radarr['cf']['anime-bd-tier-01-top-seadex-muxers']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#anime-bd-tier-01-top-seadex-muxers) | {{ radarr['cf']['anime-bd-tier-01-top-seadex-muxers']['trash_scores']['default'] }} | {{ radarr['cf']['anime-bd-tier-01-top-seadex-muxers']['trash_id'] }} | diff --git a/includes/cf/radarr-cf-hd-bluray-web-scoring.md b/includes/cf/radarr-cf-hd-bluray-web-scoring.md index 8957ceb0f..4881334f8 100644 --- a/includes/cf/radarr-cf-hd-bluray-web-scoring.md +++ b/includes/cf/radarr-cf-hd-bluray-web-scoring.md @@ -1,4 +1,5 @@ ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------: | --------------------------------------------------- | | [{{ radarr['cf']['hd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hd-bluray-tier-01) | {{ radarr['cf']['hd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['hd-bluray-tier-01']['trash_id'] }} | diff --git a/includes/cf/radarr-cf-remux-web-scoring.md b/includes/cf/radarr-cf-remux-web-scoring.md index 7fd9fb3c5..4deb5659a 100644 --- a/includes/cf/radarr-cf-remux-web-scoring.md +++ b/includes/cf/radarr-cf-remux-web-scoring.md @@ -1,4 +1,5 @@ ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------: | ----------------------------------------------- | | [{{ radarr['cf']['remux-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remux-tier-01) | {{ radarr['cf']['remux-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['remux-tier-01']['trash_id'] }} | diff --git a/includes/cf/radarr-cf-uhd-bluray-web-scoring.md b/includes/cf/radarr-cf-uhd-bluray-web-scoring.md index e62aac331..03dd713b9 100644 --- a/includes/cf/radarr-cf-uhd-bluray-web-scoring.md +++ b/includes/cf/radarr-cf-uhd-bluray-web-scoring.md @@ -1,4 +1,5 @@ ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------: | ---------------------------------------------------- | | [{{ radarr['cf']['uhd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#uhd-bluray-tier-01) | {{ radarr['cf']['uhd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['uhd-bluray-tier-01']['trash_id'] }} | diff --git a/includes/cf/radarr-dv-tip-dv-webdl.md b/includes/cf/radarr-dv-tip-dv-webdl.md index b21ab150e..129eebd3a 100644 --- a/includes/cf/radarr-dv-tip-dv-webdl.md +++ b/includes/cf/radarr-dv-tip-dv-webdl.md @@ -1,2 +1,3 @@ !!! tip + 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 [{{ radarr['cf']['dv-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-webdl) Custom Format with a score of {{ radarr['cf']['dv-webdl']['trash_scores']['default'] }} diff --git a/includes/cf/radarr-misc.md b/includes/cf/radarr-misc.md index f5006553e..816da1d84 100644 --- a/includes/cf/radarr-misc.md +++ b/includes/cf/radarr-misc.md @@ -1,4 +1,5 @@ ??? abstract "Misc - [Click to show/hide]" + | Custom Format | Score | Trash ID | | -------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------: | ----------------------------------------------- | | [{{ radarr['cf']['repack-proper']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#repackproper) | {{ radarr['cf']['repack-proper']['trash_scores']['default'] }} | {{ radarr['cf']['repack-proper']['trash_id'] }} | diff --git a/includes/cf/radarr-movie-versions-imaxe-noremux.md b/includes/cf/radarr-movie-versions-imaxe-noremux.md index 9a2769354..c9b9ef176 100644 --- a/includes/cf/radarr-movie-versions-imaxe-noremux.md +++ b/includes/cf/radarr-movie-versions-imaxe-noremux.md @@ -1,4 +1,5 @@ ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['remaster']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remaster) | {{ radarr['cf']['remaster']['trash_scores']['default'] }} | {{ radarr['cf']['remaster']['trash_id'] }} | @@ -11,6 +12,7 @@ | [{{ radarr['cf']['imax-enhanced']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax-enhanced) | {{ radarr['cf']['imax-enhanced']['trash_scores']['default'] }} | {{ radarr['cf']['imax-enhanced']['trash_id'] }} | !!! tip "{{ radarr['cf']['imax-enhanced']['name'] }}" + {{ radarr['cf']['imax-enhanced']['name'] }}: Get More Picture Instead of Black Bars. {{ radarr['cf']['imax-enhanced']['name'] }} exclusive expanded aspect ratio is 1:90:1, which offers up to 26% more picture for select sequences, meaning more of the action is visible on screen. diff --git a/includes/cf/radarr-movie-versions-imaxe.md b/includes/cf/radarr-movie-versions-imaxe.md index 3cafa4356..fed195a3d 100644 --- a/includes/cf/radarr-movie-versions-imaxe.md +++ b/includes/cf/radarr-movie-versions-imaxe.md @@ -1,4 +1,5 @@ ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['hybrid']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hybrid) | {{ radarr['cf']['hybrid']['trash_scores']['default'] }} | {{ radarr['cf']['hybrid']['trash_id'] }} | @@ -12,6 +13,7 @@ | [{{ radarr['cf']['imax-enhanced']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax-enhanced) | {{ radarr['cf']['imax-enhanced']['trash_scores']['default'] }} | {{ radarr['cf']['imax-enhanced']['trash_id'] }} | !!! tip "{{ radarr['cf']['imax-enhanced']['name'] }}" + {{ radarr['cf']['imax-enhanced']['name'] }}: Get More Picture Instead of Black Bars. {{ radarr['cf']['imax-enhanced']['name'] }} exclusive expanded aspect ratio is 1:90:1, which offers up to 26% more picture for select sequences, meaning more of the action is visible on screen. diff --git a/includes/cf/radarr-movie-versions-noremux.md b/includes/cf/radarr-movie-versions-noremux.md index e07934d45..4e26ea4a7 100644 --- a/includes/cf/radarr-movie-versions-noremux.md +++ b/includes/cf/radarr-movie-versions-noremux.md @@ -1,4 +1,5 @@ ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['remaster']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remaster) | {{ radarr['cf']['remaster']['trash_scores']['default'] }} | {{ radarr['cf']['remaster']['trash_id'] }} | diff --git a/includes/cf/radarr-movie-versions.md b/includes/cf/radarr-movie-versions.md index 0a75aeff2..1f3642cea 100644 --- a/includes/cf/radarr-movie-versions.md +++ b/includes/cf/radarr-movie-versions.md @@ -1,4 +1,5 @@ ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['hybrid']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hybrid) | {{ radarr['cf']['hybrid']['trash_scores']['default'] }} | {{ radarr['cf']['hybrid']['trash_id'] }} | diff --git a/includes/cf/radarr-optional-uhd.md b/includes/cf/radarr-optional-uhd.md index 4eb0ac9a9..098e46f85 100644 --- a/includes/cf/radarr-optional-uhd.md +++ b/includes/cf/radarr-optional-uhd.md @@ -1,10 +1,11 @@ ??? abstract "Optional UHD - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ radarr['cf']['sdr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#sdr) | {{ radarr['cf']['sdr']['trash_scores']['default'] }} | {{ radarr['cf']['sdr']['trash_id'] }} | | [{{ radarr['cf']['sdr-no-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#sdr-no-webdl) :warning: | {{ radarr['cf']['sdr-no-webdl']['trash_scores']['default'] }} | {{ radarr['cf']['sdr-no-webdl']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/radarr-optional.md b/includes/cf/radarr-optional.md index 4fe84cba7..e698bba02 100644 --- a/includes/cf/radarr-optional.md +++ b/includes/cf/radarr-optional.md @@ -1,4 +1,5 @@ ??? abstract "Optional - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------: | ------------------------------------------------- | | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_scores']['default'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | @@ -9,7 +10,7 @@ | [{{ radarr['cf']['scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#scene) | {{ radarr['cf']['scene']['trash_scores']['default'] }} | {{ radarr['cf']['scene']['trash_id'] }} | | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ radarr['cf']['x265-no-hdrdv']['trash_scores']['default'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/radarr-streaming-services.md b/includes/cf/radarr-streaming-services.md index 858e0d181..71bcb0a3e 100644 --- a/includes/cf/radarr-streaming-services.md +++ b/includes/cf/radarr-streaming-services.md @@ -1,4 +1,5 @@ ??? abstract "General Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------- | :----------------------------------------------------: | ---------------------------------------- | | [{{ radarr['cf']['amzn']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#amzn) | 0 | {{ radarr['cf']['amzn']['trash_id'] }} | @@ -16,7 +17,8 @@ | [{{ radarr['cf']['pcok']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#pcok) | 0 | {{ radarr['cf']['pcok']['trash_id'] }} | | [{{ radarr['cf']['stan']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#stan) | 0 | {{ radarr['cf']['stan']['trash_id'] }} | - ------ + --- + Breakdown and Why - The reason why these Custom Formats have a score of `0` is because they are mainly used for the naming scheme and other variables should decide for movies if a certain release if preferred. diff --git a/includes/cf/radarr-suggest-attention.md b/includes/cf/radarr-suggest-attention.md index b3e7c8b10..effaead6c 100644 --- a/includes/cf/radarr-suggest-attention.md +++ b/includes/cf/radarr-suggest-attention.md @@ -1,7 +1,7 @@ I suggest to follow the following Guides first. -- [Quality Settings (File Size)](/Radarr/Radarr-Quality-Settings-File-Size/){:target="_blank" rel="noopener noreferrer"}. -- [Recommended naming scheme](/Radarr/Radarr-recommended-naming-scheme/){:target="_blank" rel="noopener noreferrer"}. +- [Quality Settings (File Size)](/Radarr/Radarr-Quality-Settings-File-Size/){:target="\_blank" rel="noopener noreferrer"}. +- [Recommended naming scheme](/Radarr/Radarr-recommended-naming-scheme/){:target="\_blank" rel="noopener noreferrer"}. For this Quality Profile we're going to make use of the following Custom Formats with the scores given in the table. diff --git a/includes/cf/radarr-unwanted-uhd.md b/includes/cf/radarr-unwanted-uhd.md index 74f2cd675..b06aa4b86 100644 --- a/includes/cf/radarr-unwanted-uhd.md +++ b/includes/cf/radarr-unwanted-uhd.md @@ -1,15 +1,16 @@ ??? abstract "Unwanted - [Click to show/hide]" - | Custom Format | Score | Trash ID | - | -------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | - | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | - | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_scores']['default'] }} | {{ radarr['cf']['lq']['trash_id'] }} | + + | Custom Format | Score | Trash ID | + | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | + | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | + | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_scores']['default'] }} | {{ radarr['cf']['lq']['trash_id'] }} | | [{{ radarr['cf']['lq-release-title']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq-release-title) | {{ radarr['cf']['lq-release-title']['trash_scores']['default'] }} | {{ radarr['cf']['lq-release-title']['trash_id'] }} | - | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | - | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | - | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | + | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | + | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | + | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index a92d152d3..3b972d080 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -8,7 +9,7 @@ | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/score-attention.md b/includes/cf/score-attention.md index 42284da95..d1fb31768 100644 --- a/includes/cf/score-attention.md +++ b/includes/cf/score-attention.md @@ -1,4 +1,5 @@ !!! warning "Attention" + All the used scores and combination of Custom Formats in this Guide are tested to get the desired results and prevent download loops as much as possible. From experience most of the time when people change scores or leave out certain CF that work together they end up with undesired results. diff --git a/includes/cf/sonarr-anime.md b/includes/cf/sonarr-anime.md index e0db1132f..3e2ddf181 100644 --- a/includes/cf/sonarr-anime.md +++ b/includes/cf/sonarr-anime.md @@ -1,4 +1,5 @@ ??? abstract "Anime CF/Scoring - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------: | -------------------------------------------------------------------- | | [{{ sonarr['cf']['anime-bd-tier-01-top-seadex-muxers']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#anime-bd-tier-01-top-seadex-muxers) | {{ sonarr['cf']['anime-bd-tier-01-top-seadex-muxers']['trash_scores']['default'] }} | {{ sonarr['cf']['anime-bd-tier-01-top-seadex-muxers']['trash_id'] }} | @@ -12,7 +13,7 @@ | [{{ 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_scores']['default'] }} | {{ 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_scores']['default'] }} | {{ sonarr['cf']['anime-web-tier-02-top-fansubs']['trash_id'] }} | | [{{ sonarr['cf']['web-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-tier-01) | :warning: {{ sonarr['cf']['web-tier-01']['trash_scores']['anime-sonarr'] }} :warning: | {{ sonarr['cf']['web-tier-01']['trash_id'] }} | - | [{{ sonarr['cf']['web-tier-02']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-tier-02) | :warning: {{ sonarr['cf']['web-tier-02']['trash_scores']['anime-sonarr'] }} :warning: | {{ sonarr['cf']['web-tier-02']['trash_id'] }} | + | [{{ sonarr['cf']['web-tier-02']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-tier-02) | :warning: {{ sonarr['cf']['web-tier-02']['trash_scores']['anime-sonarr'] }} :warning: | {{ sonarr['cf']['web-tier-02']['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_scores']['default'] }} | {{ sonarr['cf']['anime-web-tier-03-official-subs']['trash_id'] }} | | [{{ sonarr['cf']['web-tier-03']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-tier-03) | :warning: {{ sonarr['cf']['web-tier-03']['trash_scores']['anime-sonarr'] }} :warning: | {{ sonarr['cf']['web-tier-03']['trash_id'] }} | | [{{ sonarr['cf']['remux-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#remux-tier-01) | :warning: {{ sonarr['cf']['remux-tier-01']['trash_scores']['anime-sonarr'] }} :warning: | {{ sonarr['cf']['remux-tier-01']['trash_id'] }} | diff --git a/includes/cf/sonarr-dv-tip-dv-webdl.md b/includes/cf/sonarr-dv-tip-dv-webdl.md index b21ab150e..129eebd3a 100644 --- a/includes/cf/sonarr-dv-tip-dv-webdl.md +++ b/includes/cf/sonarr-dv-tip-dv-webdl.md @@ -1,2 +1,3 @@ !!! tip + 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 [{{ radarr['cf']['dv-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-webdl) Custom Format with a score of {{ radarr['cf']['dv-webdl']['trash_scores']['default'] }} diff --git a/includes/cf/sonarr-hq-source-group.md b/includes/cf/sonarr-hq-source-group.md index e2daf3f30..00394a801 100644 --- a/includes/cf/sonarr-hq-source-group.md +++ b/includes/cf/sonarr-hq-source-group.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------: | --------------------------------------------- | | [{{ sonarr['cf']['web-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-tier-01) | {{ sonarr['cf']['web-tier-01']['trash_scores']['default'] }} | {{ sonarr['cf']['web-tier-01']['trash_id'] }} | @@ -7,4 +8,5 @@ | [{{ sonarr['cf']['web-scene']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#web-scene) :exclamation: | {{ sonarr['cf']['web-scene']['trash_scores']['default'] }} | {{ sonarr['cf']['web-scene']['trash_id'] }} | !!! info + :exclamation: = The reason why this Custom Format gets positively scored is because it's the only quality scene group that exists (up until now). Scene groups don't add a streaming service to their release names, so the score is adjusted to take this into account. diff --git a/includes/cf/sonarr-misc.md b/includes/cf/sonarr-misc.md index 504eb5e9f..31164fa04 100644 --- a/includes/cf/sonarr-misc.md +++ b/includes/cf/sonarr-misc.md @@ -1,4 +1,5 @@ ??? abstract "Misc - [Click to show/hide]" + | Custom Format | Score | Trash ID | | -------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------: | ----------------------------------------------- | | [{{ sonarr['cf']['repack-proper']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#repackproper) | {{ sonarr['cf']['repack-proper']['trash_scores']['default'] }} | {{ sonarr['cf']['repack-proper']['trash_id'] }} | diff --git a/includes/cf/sonarr-optional-uhd.md b/includes/cf/sonarr-optional-uhd.md index fc3d47bfa..bdc3555ea 100644 --- a/includes/cf/sonarr-optional-uhd.md +++ b/includes/cf/sonarr-optional-uhd.md @@ -1,10 +1,15 @@ ??? abstract "Optional (UHD) - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ sonarr['cf']['sdr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sdr) | {{ sonarr['cf']['sdr']['trash_scores']['default'] }} | {{ sonarr['cf']['sdr']['trash_id'] }} | | [{{ sonarr['cf']['sdr-no-webdl']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sdr-no-webdl) :warning: | {{ sonarr['cf']['sdr-no-webdl']['trash_scores']['default'] }} | {{ sonarr['cf']['sdr-no-webdl']['trash_id'] }} | - ------ + | Custom Format | Score | Trash ID | + | ------------------------------------------------------------------------------------- | :--------------------------------------------------: | ------------------------------------- | + | [{{ sonarr['cf']['sdr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sdr) | {{ sonarr['cf']['sdr']['trash_scores']['default'] }} | {{ sonarr['cf']['sdr']['trash_id'] }} | + + --- Breakdown and Why diff --git a/includes/cf/sonarr-optional.md b/includes/cf/sonarr-optional.md index 8cec62849..d5e74b9e3 100644 --- a/includes/cf/sonarr-optional.md +++ b/includes/cf/sonarr-optional.md @@ -1,4 +1,5 @@ ??? abstract "Optional - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------: | ------------------------------------------------- | | [{{ sonarr['cf']['bad-dual-groups']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#bad-dual-groups) | {{ sonarr['cf']['bad-dual-groups']['trash_scores']['default'] }} | {{ sonarr['cf']['bad-dual-groups']['trash_id'] }} | @@ -8,7 +9,7 @@ | [{{ sonarr['cf']['scene']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#scene) | {{ sonarr['cf']['scene']['trash_scores']['default'] }} | {{ sonarr['cf']['scene']['trash_id'] }} | | [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ sonarr['cf']['x265-no-hdrdv']['trash_scores']['default'] }} | {{ sonarr['cf']['x265-no-hdrdv']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/sonarr-streaming-services-anime.md b/includes/cf/sonarr-streaming-services-anime.md index 2428b91d0..907c5d533 100644 --- a/includes/cf/sonarr-streaming-services-anime.md +++ b/includes/cf/sonarr-streaming-services-anime.md @@ -1,4 +1,5 @@ ??? abstract "Anime Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------- | :--------------------------------------------------------------: | -------------------------------------------- | | [{{ sonarr['cf']['cr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#cr) | {{ sonarr['cf']['cr']['trash_scores']['default'] }} | {{ sonarr['cf']['cr']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_scores']['anime-sonarr'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} | | [{{ sonarr['cf']['vrv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vrv) | {{ sonarr['cf']['vrv']['trash_scores']['default'] }} | {{ sonarr['cf']['vrv']['trash_id'] }} | | [{{ sonarr['cf']['funi']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#funi) | {{ sonarr['cf']['funi']['trash_scores']['default'] }} | {{ sonarr['cf']['funi']['trash_id'] }} | - | [{{ sonarr['cf']['abema']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#abema) | {{ sonarr['cf']['abema']['trash_scores']['default'] }} | {{ sonarr['cf']['abema']['trash_id'] }} | + | [{{ sonarr['cf']['abema']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#abema) | {{ sonarr['cf']['abema']['trash_scores']['default'] }} | {{ sonarr['cf']['abema']['trash_id'] }} | | [{{ sonarr['cf']['french-adn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#adn) | {{ sonarr['cf']['french-adn']['trash_scores']['anime-sonarr'] }} | {{ sonarr['cf']['french-adn']['trash_id'] }} | | [{{ sonarr['cf']['bglobal']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#b-global) | 0 | {{ sonarr['cf']['bglobal']['trash_id'] }} | | [{{ sonarr['cf']['bilibili']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#bilibili) | 0 | {{ sonarr['cf']['bilibili']['trash_id'] }} | diff --git a/includes/cf/sonarr-streaming-services.md b/includes/cf/sonarr-streaming-services.md index c790dc565..beb3dc565 100644 --- a/includes/cf/sonarr-streaming-services.md +++ b/includes/cf/sonarr-streaming-services.md @@ -1,4 +1,5 @@ ??? abstract "General Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | |---------------------------------------------------------------------------------------------|:-------------------------------------------------------:|------------------------------------------| | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_scores']['default'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} | diff --git a/includes/cf/sonarr-suggest-attention.md b/includes/cf/sonarr-suggest-attention.md index ed884fe26..f20caf517 100644 --- a/includes/cf/sonarr-suggest-attention.md +++ b/includes/cf/sonarr-suggest-attention.md @@ -1,7 +1,7 @@ I suggest to follow the following Guides first. -- [Quality Settings (File Size)](/Sonarr/Sonarr-Quality-Settings-File-Size/){:target="_blank" rel="noopener noreferrer"}. -- [Recommended naming scheme](/Sonarr/Sonarr-recommended-naming-scheme/){:target="_blank" rel="noopener noreferrer"}. +- [Quality Settings (File Size)](/Sonarr/Sonarr-Quality-Settings-File-Size/){:target="\_blank" rel="noopener noreferrer"}. +- [Recommended naming scheme](/Sonarr/Sonarr-recommended-naming-scheme/){:target="\_blank" rel="noopener noreferrer"}. For this Quality Profile we're going to make use of the following Custom Formats with the scores given in the table. diff --git a/includes/cf/sonarr-uhd-streaming-services.md b/includes/cf/sonarr-uhd-streaming-services.md index eb6be99ba..0f4bc110f 100644 --- a/includes/cf/sonarr-uhd-streaming-services.md +++ b/includes/cf/sonarr-uhd-streaming-services.md @@ -1,4 +1,5 @@ ??? abstract "General Streaming Services (UHD) - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------: | ----------------------------------------------------- | | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_scores']['default'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} | @@ -20,6 +21,7 @@ | :warning: [{{ sonarr['cf']['uhd-streaming-cut']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#uhd-streaming-cut) | {{ sonarr['cf']['uhd-streaming-cut']['trash_scores']['default'] }} | {{ sonarr['cf']['uhd-streaming-cut']['trash_id'] }} | !!! warning "UHD Streaming Boost and UHD Streaming Cut Custom Formats" + Some streaming services have UHD releases that are generally better or worse than their HD counterparts. The UHD Streaming Boost and UHD Streaming Cut custom formats adjust those streaming services' scores appropriately for UHD releases. These two custom formats must be included in your profile for UHD releases to be scored correctly. diff --git a/includes/cf/sonarr-unwanted-uhd.md b/includes/cf/sonarr-unwanted-uhd.md index 9672595ba..aac5defe7 100644 --- a/includes/cf/sonarr-unwanted-uhd.md +++ b/includes/cf/sonarr-unwanted-uhd.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted (UHD) - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ sonarr['cf']['upscaled']['name'] }}](/Sonarr/Sonarr-collection-of-custom-formats/#upscaled) | {{ sonarr['cf']['upscaled']['trash_scores']['default'] }} | {{ sonarr['cf']['upscaled']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/cf/sonarr-unwanted.md b/includes/cf/sonarr-unwanted.md index 618e2b04b..a33079a91 100644 --- a/includes/cf/sonarr-unwanted.md +++ b/includes/cf/sonarr-unwanted.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd) :warning: | {{ sonarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ sonarr['cf']['x265-hd']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/docker/x265.md b/includes/docker/x265.md index f06621d33..9a3daebba 100644 --- a/includes/docker/x265.md +++ b/includes/docker/x265.md @@ -1,4 +1,5 @@ !!! quote + x265 is good for 4k stuff or 1080p if they used the remuxes as source. If the media isn't source quality/remux, then there will be a loss of quality every time. Also, once you go x265, typically that file is done. diff --git a/includes/downloaders/basic-setup.md b/includes/downloaders/basic-setup.md index e207d1754..079ac4c10 100644 --- a/includes/downloaders/basic-setup.md +++ b/includes/downloaders/basic-setup.md @@ -1,13 +1,15 @@ This basic example is based on the use of docker images !!! tip "" + Keep in mind the path are setup so it works with hardlinks and instant moves. More info [HERE](/Hardlinks/Hardlinks-and-Instant-Moves/){:target="_blank" rel="noopener noreferrer"} {! include-markdown "../hardlinks/bad-path-suggestion.md" !} - + !!! warning "" + But you're able to change this, by not using the pre-defined/recommended paths like: - `/downloads` => `/data/downloads`, `/data/usenet`, `/data/torrents` diff --git a/includes/downloaders/path.md b/includes/downloaders/path.md index 346d3c6e8..6ddad9312 100644 --- a/includes/downloaders/path.md +++ b/includes/downloaders/path.md @@ -1,6 +1,7 @@ This basic example is based on the use of docker images !!! tip "" + Keep in mind the path are setup so it works with hardlinks and instant moves. More info [HERE](/Hardlinks/Hardlinks-and-Instant-Moves/){:target="_blank" rel="noopener noreferrer"} diff --git a/includes/flowcharts/radarr-flowchart.drawio b/includes/flowcharts/radarr-flowchart.drawio index c8abd76ec..d04c90329 100644 --- a/includes/flowcharts/radarr-flowchart.drawio +++ b/includes/flowcharts/radarr-flowchart.drawio @@ -1 +1 @@ -7V1bd6O2Fv4t5yGrMw94AeJiHhNn3Jlzpm06SaedvpyFDYk5g40LOJf59UcSCIMQRmAQTky6VsfIWAhpf1v7pr0vwGz9/HNob1e/BI7rX6iy83wBri9U+Kfp8B/U8pK0KNbUSloeQs9J2/YNt94PN22U09ad57hR4cY4CPzY2xYbl8Fm4y7jQpsdhsFT8bb7wC8+dWs/uKWG26Xtl1v/9Jx4lbROVXPf/tH1HlbkyYqRvt/aJjenbxKtbCd4yjWBDxdgFgZBnHwKFv9DL6DKvr2As4jvS35JJmr/q/XzzPXhTM+TS/gh/XXhW9mj3zV0N3F+UPOKH8z/2n3849uvqw93V7///fMP2b768aeULuWj7e9cMjzDh/1d3QewW9V4QJ+vA3jPS7CD/3+ycTO+ZRGSG3abONgtV66D+oKLG1yAefmudx/hpLoRmo/fd7bvxS/kHjjq/PPSyY1fyIrBN4HEAS+unlZe7N5u7SX65gkSKGxbxWs0twr8aEfbhGLuvWc4GnCVrZCMLr678XJFLuIw+O7OAj8I8UOANptqV3r2DSEN1LJ1Q2/txm6InuxtHmAzSOdobq89HyHhqxs69sbOhp9fmXSxHt0wdp9zTelK/ewGsPcQToecfisZxsRKqe6FNE1TqnvaE62ip22rPMGSRjsFykPWv5qnr5REGpCL0Q25aP+BT1cVQ96OBFBFAEBWT275Lcby0wu1cS4Ri4ZXCz9Yfi+uThjsNg5aFrwAcHbCl7/Sr/DFN/TNRCeX18/5O69fyNWzF/+V+5z7Fbza/whdvGSLbYcxGdkm2LilZQb4OWS7UtTq5b33g6fLjQd3Ay/YZMN35p5P3rOSAKJgFy7dA1OsTtMN0Q4f3Lgeiq5T2OvK9BS6PhznY3HrY1FG+tObwEM4zOhQocgQGBR1Ja+U/iy//1A9Tac1HSWvXOoIU2r2Qu2JV1G6pd4q4oDNOZ4yn8vwL0+0GaF+I6RTSbQZQHKY+FaARAVAimRcpvMjKLiWMHVOwsyxMRYXI21H0q8Jt9H9n2mCIhGamjyRc39KO9pWFIq4NVUwcZuDEnctJ62iZKWGkusJlY0r+SCu2rNnwg1rUaBoJwUDSaP5uGG15OPlrkylK2L/I3LD35g6U17KhIohIUHjn12QCIwgAXC+KZElP8Lb5Ct/F9ovZUn0Qr0qN/754eqgXOp7m+/JuFZxjHTWS/SK6jwO7WglJdrtxNvcQzF4/sV2oMoKP4T4gxS58W4r/ZOoP9I2DO49H+rC6Pdg5UgLPE7pyV3sH3WXo7X/LnwbPrygQh4g1CIHyfGCItprZOo2InRDBgJnwS+0fwCa0kQS70Lk1jWTwoiuc4rccnORG17myL0Jr9cYvL6Aj/1CEzAsgtBxQykFziX+dfhOkvLt7xPQZPBhw+we/5VhlodRRwNIOp57Gy9auc6/entCbx3D9UV7xQr9f7aL4mANP8yDEG5nUW8PjVd2nOnf9iZ6ckNklzHsNYL1ZhFtc69c4m8nQ0cdDEFe2MvvD5jV5W8PHxbvIFwhAGVV1pIPMnsuv324FTlTWddN1krowGp34apljYOa8faG6jajXbj3QYhQC7ds7xHtMojfo5Zh3uGkJucmiCJv4bv4d+uFt8HCeYRny8XDeJuTxOi6kr+oSHLAHAZ5FdAHQ+fji1xirIzlVvmQoPpaJ7u3jutMzHuRGAmeJycSG9dXynx+0UAkjpKrqyBGgge4VlHjA9RDPHf/xNQUmnUBm0Ioj9qbB9+92TdeOTaSwdK3Rxc3dgy/SXRyVcamd997QNdL2D3+DRK9vaXtX6ZfrD3HQbPdjbBuUlqoIutlA7kqM6R1tYW0zieam3KJrJAB4Da9DMJ4FTwEG9v/sG+lLC/7ez4HwTad8P+5cfyS2lPsHdxLi8RYtu9Vk1raC2RLDNJDfxdlMzjbCEMbk7oygSu8JnBgcdpYUpqRJ7KlUk41Re/GvqJotJ2cJrIKowicRczRyW1bdEN04EmqSmmpaqql7gk36ZP6PXlAcH8fuSdgl/nj9RhmdgzLzGEVfTpaX452eGomr8OzG+tLH0T+xV3vnuGP3ikyct9ip/fN+xMn9xANGlG6hEa9PdYSaY1YaIoFwxwWCnzSjmoMIe208f7z0kAq/9S6s1jRBK2kpLYhEO2lK1XjlK6Il6f3CAOg066po0Wnrt2rQGaY3AXGDrSNA2gRc9Al7XeiDgCTl2CnnAQ7mMtVVwvRCFaxyyMcsKpxqOOeYw/A6wus6ZDIW0fodAMOnRccvLqyKHCUwhu1TsBBx+HQUQ59YwEwsFBjRUZfSBEmPmTX1PTt8wXLkHl7d/nljteaGYcetuF1KlPP57MZXBiWMNxQwqKkbMu8lk0Tc4KYwMtCQ6g0Ia6C0PsBO7d9MthMCM9dZbZPwyiavzR9f9OXlLolvSPpnZZnLJkhvassw6TWl2GSmMqOoEtFraDLXLj3yn7EXjPsoaDVWahkQpUJfb1zvIB5C9ZKETtLfNiMG3bbLdQZovI32JqU9Lw/e/BKw8pTwrzDGlElcX927+NiC6HkA7toF/RNa6cA8GqnvUWmaywZZDyZIGT5FWX45VebLn/Cqejlvw78BXrVr16ENqHS97NgvYX7E3Z+s4M09vc67qO3dKPo9bMjocecFIU35q4/aqoW4iCjhWQhO3ZsS/5u6SHH/yYmE5DtjOY+iCdtiumGJFCi0JQjT7ieOP4EXqEdc+06XrKpyr63CO1UUofzo8pBvMK76n2yQujm9cINo/026gSbn+L97nz99QJHbmSULKekmlBqcZQodqHYtGa9ic5654hxp8zoccMxN0uOkT1y9KM4qqEucFhLXXcuozvLvDCv0b39vi3P8Hje9kuwCHDk1Sm/a1dL+8V92Pl2eOJvCzlPu9edygCYp/Uy5b74XkVVJ1r+DxiN3ku/xm+Xi6TK8eP4ZVtUY+zt1ocqJNYq1fnjxpngGydwi4qro4VSRl/WiuhALysJ7wLT5F8NtIwla6FtDbhJ1ASkJrNX0zwKPyXhB2jDCz/j6YJXEtj49k4XHE8f46mB8dTAYKM94tRAXctAcfrHDKscEtV5BH0xxioXEy+jwKWbgeY9Ebnm6J9gF7+VWb7EooPtPNqbJc7zQ6z498Ud54j3LLecfcw+OuzJFXzfhTwKdNqyC8riaGcR9X2EW15+/gx/8vH6S1kSEnySO5QyXJAHtYqe1Izcmo3Rkzx0rJjFIABwksGTGitjx6hnjXrWeIp71McE6mNDUMfgat0QL31uZ8qHmOOzO5pe6abohL/ya4cC157vPGH5hLy4g+UH3SBvEXZBONQkn/JsHgmsdgcN80aww3Fsr5XlDUjnbMseh9nq9KdEKLHy2hJHbtKFJjbYW49ST/9STwKlxOLJZ4kXLZeMHVcD8NzcGfhsXcGb0YG9F1hFe6/KsPcyvRalFC3dBdFMS8bd8imZsvyAYUw3FoKwyl+TsKzXHU5FE4rWDWlIAKgnF11ePorFPEFFL/S7W3sd7TYP7+HXd1+ZtJAYjavPTLFJTkmUhldNP33QSq/BeL14P3OyAMM/UZIHc+deED29g1rj9ef3F1nQKIMIo2ViwwygpClLSjqOQR2skvOIctU4/pGeVr1cimn0tDaEjG4ZE/UUc2brdecDR2/ricjKo7e1PR2N3tbR28og7tHbOnpbR2/raHcU7W0d3aSH3KSv3iMx+jdPdWVG/+br8W9yzyz/mZDjXIF1LdWbYPc723CusNOd/2owCKTwSoOh3MRC2MVLj0xx2Ko0xH0gXwUBLu0+m/f26lVkBgdgodKtR5PZ6Pl9VZ5fSTd1Hvsz0/urn8qZtcNem47JsT9S5/Ahdfq8AxtNjberlmkdxW1Eu70k2KjIcMLwmxznAlNHF1hjFkR8WyK8xu39X7VZXRrxrKZ7atJyG4ThixiXVOqKwP6cjZvoYBckh9EFSXrEGHLBi3AwcoLodFs7iuIVxMbDinkf5hl34c5FFrP59d2thD50oW+1nqnb796WOVbhWkeFvnyZzG1Tnw5LmTsVmy2P6s+vjL4uk9Yrl37nM0sDjTYWpvTbZzlEOgZSAozS5YKLIRo8dSFef3VEkcVZRFdiTEMVu6vEeGTZCLq6A0273CVUgGZN5NxfMYwJkq7YshGGOkLlAFS6K7fVAnPt4WPywodkrxcMn1K5CV74KKXNBoiFCytB9xuES0atmmXk6FWeWFPrIM12CphcGegjAaFwl/YlKdj7RkTRfKjQ1YJ4AUH1I6mWYEDo5wGIbP8o7B611RIJkJQCiA6XjOwMQu3hYnHvH7IYtGg03yelQJripdSRKhgvxnngpUWp1LYVSU8AL1Pu3YW3UuSReKHkJMUE7eBC9aPKpli0sFLVvV20NNklchqNvN+ivqVC21SYXoO65ZbT6vFhCMIHKBK2pnYjf6m6WICY56a+N9samCTdCmy9bR2E4uuhYYqBBqB4fumsOvfeQYgz68gq1FmdikXKmWnu5yF4KTJvGWJNlKF4mjfvajJVZkU5iAF+sUxt0m3f0GK5+N8wtBqYcAe3Ox+xMXHrNIKQJSlWR0YzxSrCRzUHhc+ZmNBa7Ez8MGi3g/W6MwFO/JCi3b3rPPLhrQl0sjVJQKHFPrEeTfPMLGxHO/FbBhH0Bx0CiHrkCPJeKqpyEDl6N8jR6DRA9P7WN3LOw9omdAMR6/cngb0ng5xSnh6zrcwmAbXYkzbVudAB1wcfFCe3bdEN0YEhq1QxomlqotmjLemSE3u9VRuiozQvy1Gs1B1DFiYiMbZSGr1MntWuNpGeW7/xuMBBBJNvdcrzOT3FbFnWmUVuNt1uetWh+nOP8gp0pARw70a6gjyHI+jz0FBbGxZ0LS8JmrUd9yzRWedh9G5sJuha1xEr5U15pTxyIKxvOKlyV/GdpZ6UqVjEkIHnEPMJncJKK92XZSpI2y4kZJzmKzvkhQ/T0OLZdosTVuEMuighjzxbhXC8MzuKcWl7Gpfnlga3JKEAwFs+sbeUyVY5nfZbZKCDhim2de63Z6CKzBuPogsTSDqSQACgWTEnA61Wk7tmsYpyJv7CCmlDqaFrbmC1cvUP7y8k/oHebU+aYrDsssSs09YQpRhaEWL9CfV//H339EP71TfjrQZuFEUGj4akngV6ut9eBOjaR6CHO45FmM+D2khoGYsXL/T5YE60NDXb0hGdUlpBvlJVP3x/UysvH3SVMzFvtVCHB9fhubDLXFXuwzKCNj7yHELZbZVxqh8ACruprvH5XzrDznlLjZ1FjLWKYusCO9788q//hv88xtdP8t/x9p8Q/B5JgNtjKeikmUQHhwGztaBIRWmqWm+HA9iIKVt/f/2thJkyQRedY1t03/r5IbS3qwmiqOUKUtokdsM1yruO6JlpoWpghUrdnPx+tRQ6Jb9a2k0lOTbIrqVRtvvMEJkzRgGGLYo+SNLGFMVezfOIzmDxsRz/OawJpCxJbsnn2ovvouxEQG8bMV7KnNCPGK5R4n7KPHmHVbz9aCH8cGRmDkm4dMybZYyyPJt1xhgBdaxHU8Qxxq8v0ifl4/3NYj2ff7uc3Xz9+/vqTOwhJx4+vefU3RgTeXWqDMy9y4WqXjx90PpcnARU63BPPfs4s0NTIwNswwAVcGIM8DyCPE78ZGPXDJD39EgG5t4ZYGf8T+mN/3Uba8vISIo6kCJMlSgdqapvny9Y+UdJZKw8J2yRJ+Xt3Rf79iP80c84ypbnF/Uxup0F++5/URey63/afPOceQjuVo+f/vPV+7f1+2UipXFE7PLkYeVOhkpvJ/P5bGZZ5f3hg4H+62h/UKn9AUG0vENoU+YWITDWVi3HtozmIW4hgDrlJhmM+u59SQFMSyqPa6m0XeXWsigADB2hXCY7+hRPBS0cNAwdeS6Nc0tWBSV5kkyU+ycfx0yRpEx5aPh3aMWq6apnFQWUjZ2jhsK/A9EeQF0Vp6IwmROPjYafOTU8fiMyT3Yt32qgWnTCtHjTCwHe9EI5EmLF4pK2o80t9NkJXW2Z8rHclTYVm/SRpNMcuVkLbkbHD6nGwILWmaTrOO2Mtx2bWwCvvZlAufeAcKOC6psfSZNreuqZ+RE9d1Qzm/O+Ur57ZWjmdx7nYQQGIzIZmdjgBRIfWMv8CJR7P08IAEX205ayX7knTZ1YVk5n1oQyQzB63o7Qaw1UfiIfgkprCANruWUxv8wc+9Nyh9VWWzNCoaY5wOssE6PlooRseYJWaIJuyfboalV0+ve+E0mVgTCKfB0xucElQOL4eOMioMDMrScgAnLrv6Yo/ZeierMbTqgooFh9TyxjzA6ej/JfC9YISmXkBueF5xGTP6RNL1/nRDYLnHii6lqtfBk3KE/SnaacAb3/ag1y4VQepe5mQauN80iYxsQk1LzvTZtYupFxT4WPe4pLLUEOXI2CZ5uQFnq5taG563kYG4cOtREc2MqbeodgWUgUjZzjaZTnBbQOoqHzhACUHFDbpyOx+pI9D51SHyXPlkp5zmgsUwnAdWsCTIbOPhjj5DFEvgHGedppJgQwzkNAF6uhay0LTFJ1KkFvJ+TZYWnnlY+lif7WNv5DqITBpH/uTEqCak1OjbyVXzOL8kXrypMKlSq11FFXiZVMnfmc6rJ/B+8/+kw3G8hnYpR+nSK/KEnesPK+E7qcSutyYZJZ01HfEVTjQZ3uTuuKzOPCZlXjcd03eFxX5RQ6pqLOBiFemFdZi6EF7XmhYlqHe+rbhcawCo6GjI4MGVna6cGY45kk+cssF5plFBgksgoKcavBTjv0i/Gyvwy9ffM/cwKm+t4gZxRPAKmGMVGnYP99O2Z4OHwLkFkRZOAth5aOUiJv6QlalxaY0oXNB8fAgldtmOLO6XIIySIMU/vj43T5lfaGKVMvxFhpbHvQIFEDB3PQjpyzzVlzyjgyeBA+OBOb/mnniRaQD/AglgWkAyyKlFrrss90T7oFJqrYM5oMtWvkgNwJUfUiBxw+FRAxeQ7MAtuYABuua5fpNvjCUBuaJtuzPN7EHQS7/Zfytqh4Jt6kQPWSHONhslasNqHXPLuC3XYmI7Ks9klmPcd7LECrIlegolXkCqSSE7bpiJ3RENiaotnVD1yQhk/3iNBWqDolTj2IRmG/oLKXuNC47KFxrV17kzZNckkFF9XJCZkt9hqx/M0iQv+8+/DobtAD0ABegh1ikPYjrqB5kVTKnH+0Q+cJwgde/+I6Hmq/8e0XN8RDtnE6R3vzU4x/unFwic17XF7TfYbPwtfXWcnNj9dfkGoPBzJDd/iRmz34ycNU4Htr/Lqo4Gfk+mhgT8ljYMtPeBz2AvcK2Z0qI2ymfScf4U628QPbQV1BRhklT4pXHpo7248CvFo7DIB0oMnMp3XRURsq0v5+Upm5MWvGlFdsfb3EWCKbt/3el5jakqXfRS6il2gZhC4mk42Du1svkNyENilIYogSZ7soDtbwwzwhEgSdzZ68CHgTuMRuFON+c4SaPM9xIy/EX8Hn7fx4/8xt6D66GzYdI1YL2cAOSmfp520QRR4EQ1NSpUSRZsk/K4XFCtGBP1tocnUVxGiOU/kByYHe0vYvfe8ByQprz3GwdERJlI7uTh2NJbJO1QUwOsotqtDJkEy9LGpqMkPWLOXY5cssGgZBnN9IkWj/S+CgvLof/g8= \ No newline at end of file +7V1bd6O2Fv4t5yGrMw94AeJiHhNn3Jlzpm06SaedvpyFDYk5g40LOJf59UcSCIMQRmAQTky6VsfIWAhpf1v7pr0vwGz9/HNob1e/BI7rX6iy83wBri9U+Kfp8B/U8pK0KNbUSloeQs9J2/YNt94PN22U09ad57hR4cY4CPzY2xYbl8Fm4y7jQpsdhsFT8bb7wC8+dWs/uKWG26Xtl1v/9Jx4lbROVXPf/tH1HlbkyYqRvt/aJjenbxKtbCd4yjWBDxdgFgZBnHwKFv9DL6DKvr2As4jvS35JJmr/q/XzzPXhTM+TS/gh/XXhW9mj3zV0N3F+UPOKH8z/2n3849uvqw93V7///fMP2b768aeULuWj7e9cMjzDh/1d3QewW9V4QJ+vA3jPS7CD/3+ycTO+ZRGSG3abONgtV66D+oKLG1yAefmudx/hpLoRmo/fd7bvxS/kHjjq/PPSyY1fyIrBN4HEAS+unlZe7N5u7SX65gkSKGxbxWs0twr8aEfbhGLuvWc4GnCVrZCMLr678XJFLuIw+O7OAj8I8UOANptqV3r2DSEN1LJ1Q2/txm6InuxtHmAzSOdobq89HyHhqxs69sbOhp9fmXSxHt0wdp9zTelK/ewGsPcQToecfisZxsRKqe6FNE1TqnvaE62ip22rPMGSRjsFykPWv5qnr5REGpCL0Q25aP+BT1cVQ96OBFBFAEBWT275Lcby0wu1cS4Ri4ZXCz9Yfi+uThjsNg5aFrwAcHbCl7/Sr/DFN/TNRCeX18/5O69fyNWzF/+V+5z7Fbza/whdvGSLbYcxGdkm2LilZQb4OWS7UtTq5b33g6fLjQd3Ay/YZMN35p5P3rOSAKJgFy7dA1OsTtMN0Q4f3Lgeiq5T2OvK9BS6PhznY3HrY1FG+tObwEM4zOhQocgQGBR1Ja+U/iy//1A9Tac1HSWvXOoIU2r2Qu2JV1G6pd4q4oDNOZ4yn8vwL0+0GaF+I6RTSbQZQHKY+FaARAVAimRcpvMjKLiWMHVOwsyxMRYXI21H0q8Jt9H9n2mCIhGamjyRc39KO9pWFIq4NVUwcZuDEnctJ62iZKWGkusJlY0r+SCu2rNnwg1rUaBoJwUDSaP5uGG15OPlrkylK2L/I3LD35g6U17KhIohIUHjn12QCIwgAXC+KZElP8Lb5Ct/F9ovZUn0Qr0qN/754eqgXOp7m+/JuFZxjHTWS/SK6jwO7WglJdrtxNvcQzF4/sV2oMoKP4T4gxS58W4r/ZOoP9I2DO49H+rC6Pdg5UgLPE7pyV3sH3WXo7X/LnwbPrygQh4g1CIHyfGCItprZOo2InRDBgJnwS+0fwCa0kQS70Lk1jWTwoiuc4rccnORG17myL0Jr9cYvL6Aj/1CEzAsgtBxQykFziX+dfhOkvLt7xPQZPBhw+we/5VhlodRRwNIOp57Gy9auc6/entCbx3D9UV7xQr9f7aL4mANP8yDEG5nUW8PjVd2nOnf9iZ6ckNklzHsNYL1ZhFtc69c4m8nQ0cdDEFe2MvvD5jV5W8PHxbvIFwhAGVV1pIPMnsuv324FTlTWddN1krowGp34apljYOa8faG6jajXbj3QYhQC7ds7xHtMojfo5Zh3uGkJucmiCJv4bv4d+uFt8HCeYRny8XDeJuTxOi6kr+oSHLAHAZ5FdAHQ+fji1xirIzlVvmQoPpaJ7u3jutMzHuRGAmeJycSG9dXynx+0UAkjpKrqyBGgge4VlHjA9RDPHf/xNQUmnUBm0Ioj9qbB9+92TdeOTaSwdK3Rxc3dgy/SXRyVcamd997QNdL2D3+DRK9vaXtX6ZfrD3HQbPdjbBuUlqoIutlA7kqM6R1tYW0zieam3KJrJAB4Da9DMJ4FTwEG9v/sG+lLC/7ez4HwTad8P+5cfyS2lPsHdxLi8RYtu9Vk1raC2RLDNJDfxdlMzjbCEMbk7oygSu8JnBgcdpYUpqRJ7KlUk41Re/GvqJotJ2cJrIKowicRczRyW1bdEN04EmqSmmpaqql7gk36ZP6PXlAcH8fuSdgl/nj9RhmdgzLzGEVfTpaX452eGomr8OzG+tLH0T+xV3vnuGP3ikyct9ip/fN+xMn9xANGlG6hEa9PdYSaY1YaIoFwxwWCnzSjmoMIe208f7z0kAq/9S6s1jRBK2kpLYhEO2lK1XjlK6Il6f3CAOg066po0Wnrt2rQGaY3AXGDrSNA2gRc9Al7XeiDgCTl2CnnAQ7mMtVVwvRCFaxyyMcsKpxqOOeYw/A6wus6ZDIW0fodAMOnRccvLqyKHCUwhu1TsBBx+HQUQ59YwEwsFBjRUZfSBEmPmTX1PTt8wXLkHl7d/nljteaGYcetuF1KlPP57MZXBiWMNxQwqKkbMu8lk0Tc4KYwMtCQ6g0Ia6C0PsBO7d9MthMCM9dZbZPwyiavzR9f9OXlLolvSPpnZZnLJkhvassw6TWl2GSmMqOoEtFraDLXLj3yn7EXjPsoaDVWahkQpUJfb1zvIB5C9ZKETtLfNiMG3bbLdQZovI32JqU9Lw/e/BKw8pTwrzDGlElcX927+NiC6HkA7toF/RNa6cA8GqnvUWmaywZZDyZIGT5FWX45VebLn/Cqejlvw78BXrVr16ENqHS97NgvYX7E3Z+s4M09vc67qO3dKPo9bMjocecFIU35q4/aqoW4iCjhWQhO3ZsS/5u6SHH/yYmE5DtjOY+iCdtiumGJFCi0JQjT7ieOP4EXqEdc+06XrKpyr63CO1UUofzo8pBvMK76n2yQujm9cINo/026gSbn+L97nz99QJHbmSULKekmlBqcZQodqHYtGa9ic5654hxp8zoccMxN0uOkT1y9KM4qqEucFhLXXcuozvLvDCv0b39vi3P8Hje9kuwCHDk1Sm/a1dL+8V92Pl2eOJvCzlPu9edygCYp/Uy5b74XkVVJ1r+DxiN3ku/xm+Xi6TK8eP4ZVtUY+zt1ocqJNYq1fnjxpngGydwi4qro4VSRl/WiuhALysJ7wLT5F8NtIwla6FtDbhJ1ASkJrNX0zwKPyXhB2jDCz/j6YJXEtj49k4XHE8f46mB8dTAYKM94tRAXctAcfrHDKscEtV5BH0xxioXEy+jwKWbgeY9Ebnm6J9gF7+VWb7EooPtPNqbJc7zQ6z498Ud54j3LLecfcw+OuzJFXzfhTwKdNqyC8riaGcR9X2EW15+/gx/8vH6S1kSEnySO5QyXJAHtYqe1Izcmo3Rkzx0rJjFIABwksGTGitjx6hnjXrWeIp71McE6mNDUMfgat0QL31uZ8qHmOOzO5pe6abohL/ya4cC157vPGH5hLy4g+UH3SBvEXZBONQkn/JsHgmsdgcN80aww3Fsr5XlDUjnbMseh9nq9KdEKLHy2hJHbtKFJjbYW49ST/9STwKlxOLJZ4kXLZeMHVcD8NzcGfhsXcGb0YG9F1hFe6/KsPcyvRalFC3dBdFMS8bd8imZsvyAYUw3FoKwyl+TsKzXHU5FE4rWDWlIAKgnF11ePorFPEFFL/S7W3sd7TYP7+HXd1+ZtJAYjavPTLFJTkmUhldNP33QSq/BeL14P3OyAMM/UZIHc+deED29g1rj9ef3F1nQKIMIo2ViwwygpClLSjqOQR2skvOIctU4/pGeVr1cimn0tDaEjG4ZE/UUc2brdecDR2/ricjKo7e1PR2N3tbR28og7tHbOnpbR2/raHcU7W0d3aSH3KSv3iMx+jdPdWVG/+br8W9yzyz/mZDjXIF1LdWbYPc723CusNOd/2owCKTwSoOh3MRC2MVLj0xx2Ko0xH0gXwUBLu0+m/f26lVkBgdgodKtR5PZ6Pl9VZ5fSTd1Hvsz0/urn8qZtcNem47JsT9S5/Ahdfq8AxtNjberlmkdxW1Eu70k2KjIcMLwmxznAlNHF1hjFkR8WyK8xu39X7VZXRrxrKZ7atJyG4ThixiXVOqKwP6cjZvoYBckh9EFSXrEGHLBi3AwcoLodFs7iuIVxMbDinkf5hl34c5FFrP59d2thD50oW+1nqnb796WOVbhWkeFvnyZzG1Tnw5LmTsVmy2P6s+vjL4uk9Yrl37nM0sDjTYWpvTbZzlEOgZSAozS5YKLIRo8dSFef3VEkcVZRFdiTEMVu6vEeGTZCLq6A0273CVUgGZN5NxfMYwJkq7YshGGOkLlAFS6K7fVAnPt4WPywodkrxcMn1K5CV74KKXNBoiFCytB9xuES0atmmXk6FWeWFPrIM12CphcGegjAaFwl/YlKdj7RkTRfKjQ1YJ4AUH1I6mWYEDo5wGIbP8o7B611RIJkJQCiA6XjOwMQu3hYnHvH7IYtGg03yelQJripdSRKhgvxnngpUWp1LYVSU8AL1Pu3YW3UuSReKHkJMUE7eBC9aPKpli0sFLVvV20NNklchqNvN+ivqVC21SYXoO65ZbT6vFhCMIHKBK2pnYjf6m6WICY56a+N9samCTdCmy9bR2E4uuhYYqBBqB4fumsOvfeQYgz68gq1FmdikXKmWnu5yF4KTJvGWJNlKF4mjfvajJVZkU5iAF+sUxt0m3f0GK5+N8wtBqYcAe3Ox+xMXHrNIKQJSlWR0YzxSrCRzUHhc+ZmNBa7Ez8MGi3g/W6MwFO/JCi3b3rPPLhrQl0sjVJQKHFPrEeTfPMLGxHO/FbBhH0Bx0CiHrkCPJeKqpyEDl6N8jR6DRA9P7WN3LOw9omdAMR6/cngb0ng5xSnh6zrcwmAbXYkzbVudAB1wcfFCe3bdEN0YEhq1QxomlqotmjLemSE3u9VRuiozQvy1Gs1B1DFiYiMbZSGr1MntWuNpGeW7/xuMBBBJNvdcrzOT3FbFnWmUVuNt1uetWh+nOP8gp0pARw70a6gjyHI+jz0FBbGxZ0LS8JmrUd9yzRWedh9G5sJuha1xEr5U15pTxyIKxvOKlyV/GdpZ6UqVjEkIHnEPMJncJKK92XZSpI2y4kZJzmKzvkhQ/T0OLZdosTVuEMuighjzxbhXC8MzuKcWl7Gpfnlga3JKEAwFs+sbeUyVY5nfZbZKCDhim2de63Z6CKzBuPogsTSDqSQACgWTEnA61Wk7tmsYpyJv7CCmlDqaFrbmC1cvUP7y8k/oHebU+aYrDsssSs09YQpRhaEWL9CfV//H339EP71TfjrQZuFEUGj4akngV6ut9eBOjaR6CHO45FmM+D2khoGYsXL/T5YE60NDXb0hGdUlpBvlJVP3x/UysvH3SVMzFvtVCHB9fhubDLXFXuwzKCNj7yHELZbZVxqh8ACruprvH5XzrDznlLjZ1FjLWKYusCO9788q//hv88xtdP8t/x9p8Q/B5JgNtjKeikmUQHhwGztaBIRWmqWm+HA9iIKVt/f/2thJkyQRedY1t03/r5IbS3qwmiqOUKUtokdsM1yruO6JlpoWpghUrdnPx+tRQ6Jb9a2k0lOTbIrqVRtvvMEJkzRgGGLYo+SNLGFMVezfOIzmDxsRz/OawJpCxJbsnn2ovvouxEQG8bMV7KnNCPGK5R4n7KPHmHVbz9aCH8cGRmDkm4dMybZYyyPJt1xhgBdaxHU8Qxxq8v0ifl4/3NYj2ff7uc3Xz9+/vqTOwhJx4+vefU3RgTeXWqDMy9y4WqXjx90PpcnARU63BPPfs4s0NTIwNswwAVcGIM8DyCPE78ZGPXDJD39EgG5t4ZYGf8T+mN/3Uba8vISIo6kCJMlSgdqapvny9Y+UdJZKw8J2yRJ+Xt3Rf79iP80c84ypbnF/Uxup0F++5/URey63/afPOceQjuVo+f/vPV+7f1+2UipXFE7PLkYeVOhkpvJ/P5bGZZ5f3hg4H+62h/UKn9AUG0vENoU+YWITDWVi3HtozmIW4hgDrlJhmM+u59SQFMSyqPa6m0XeXWsigADB2hXCY7+hRPBS0cNAwdeS6Nc0tWBSV5kkyU+ycfx0yRpEx5aPh3aMWq6apnFQWUjZ2jhsK/A9EeQF0Vp6IwmROPjYafOTU8fiMyT3Yt32qgWnTCtHjTCwHe9EI5EmLF4pK2o80t9NkJXW2Z8rHclTYVm/SRpNMcuVkLbkbHD6nGwILWmaTrOO2Mtx2bWwCvvZlAufeAcKOC6psfSZNreuqZ+RE9d1Qzm/O+Ur57ZWjmdx7nYQQGIzIZmdjgBRIfWMv8CJR7P08IAEX205ayX7knTZ1YVk5n1oQyQzB63o7Qaw1UfiIfgkprCANruWUxv8wc+9Nyh9VWWzNCoaY5wOssE6PlooRseYJWaIJuyfboalV0+ve+E0mVgTCKfB0xucElQOL4eOMioMDMrScgAnLrv6Yo/ZeierMbTqgooFh9TyxjzA6ej/JfC9YISmXkBueF5xGTP6RNL1/nRDYLnHii6lqtfBk3KE/SnaacAb3/ag1y4VQepe5mQauN80iYxsQk1LzvTZtYupFxT4WPe4pLLUEOXI2CZ5uQFnq5taG563kYG4cOtREc2MqbeodgWUgUjZzjaZTnBbQOoqHzhACUHFDbpyOx+pI9D51SHyXPlkp5zmgsUwnAdWsCTIbOPhjj5DFEvgHGedppJgQwzkNAF6uhay0LTFJ1KkFvJ+TZYWnnlY+lif7WNv5DqITBpH/uTEqCak1OjbyVXzOL8kXrypMKlSq11FFXiZVMnfmc6rJ/B+8/+kw3G8hnYpR+nSK/KEnesPK+E7qcSutyYZJZ01HfEVTjQZ3uTuuKzOPCZlXjcd03eFxX5RQ6pqLOBiFemFdZi6EF7XmhYlqHe+rbhcawCo6GjI4MGVna6cGY45kk+cssF5plFBgksgoKcavBTjv0i/Gyvwy9ffM/cwKm+t4gZxRPAKmGMVGnYP99O2Z4OHwLkFkRZOAth5aOUiJv6QlalxaY0oXNB8fAgldtmOLO6XIIySIMU/vj43T5lfaGKVMvxFhpbHvQIFEDB3PQjpyzzVlzyjgyeBA+OBOb/mnniRaQD/AglgWkAyyKlFrrss90T7oFJqrYM5oMtWvkgNwJUfUiBxw+FRAxeQ7MAtuYABuua5fpNvjCUBuaJtuzPN7EHQS7/Zfytqh4Jt6kQPWSHONhslasNqHXPLuC3XYmI7Ks9klmPcd7LECrIlegolXkCqSSE7bpiJ3RENiaotnVD1yQhk/3iNBWqDolTj2IRmG/oLKXuNC47KFxrV17kzZNckkFF9XJCZkt9hqx/M0iQv+8+/DobtAD0ABegh1ikPYjrqB5kVTKnH+0Q+cJwgde/+I6Hmq/8e0XN8RDtnE6R3vzU4x/unFwic17XF7TfYbPwtfXWcnNj9dfkGoPBzJDd/iRmz34ycNU4Htr/Lqo4Gfk+mhgT8ljYMtPeBz2AvcK2Z0qI2ymfScf4U628QPbQV1BRhklT4pXHpo7248CvFo7DIB0oMnMp3XRURsq0v5+Upm5MWvGlFdsfb3EWCKbt/3el5jakqXfRS6il2gZhC4mk42Du1svkNyENilIYogSZ7soDtbwwzwhEgSdzZ68CHgTuMRuFON+c4SaPM9xIy/EX8Hn7fx4/8xt6D66GzYdI1YL2cAOSmfp520QRR4EQ1NSpUSRZsk/K4XFCtGBP1tocnUVxGiOU/kByYHe0vYvfe8ByQprz3GwdERJlI7uTh2NJbJO1QUwOsotqtDJkEy9LGpqMkPWLOXY5cssGgZBnN9IkWj/S+CgvLof/g8= diff --git a/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-en.md b/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-en.md index 2e1f62185..29f157d17 100644 --- a/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-en.md +++ b/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-en.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------------: | ---------------------------------------------------------- | | [{{ radarr['cf']['french-hd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hd-bluray-tier-01) | {{ radarr['cf']['french-hd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-hd-bluray-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: French Scene groups are included as a fallback if you really want MULTi release despite a potential loss in quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (default) or `0` depending on what you want to achieve. ??? info "Original mix (optional)" + {! include-markdown "../../includes/cf/radarr-cf-hd-bluray-web-scoring.md" !} diff --git a/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-fr.md b/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-fr.md index 918a9ae69..f84bb118a 100644 --- a/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-fr.md +++ b/includes/french-guide/radarr-cf-french-hd-bluray-web-scoring-fr.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------------: | ---------------------------------------------------------- | | [{{ radarr['cf']['french-hd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-hd-bluray-tier-01) | {{ radarr['cf']['french-hd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-hd-bluray-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: Les groupes de la Scène française sont inclus comme substitut si vous voulez vraiment une version MULTi malgré une éventuelle perte de qualité. Vous pouvez lui attribuer un score de `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (par défaut) ou de `0` selon ce que vous voulez obtenir. ??? info "Mix original (optionnel)" + {! include-markdown "../../includes/cf/radarr-cf-hd-bluray-web-scoring.md" !} diff --git a/includes/french-guide/radarr-cf-french-remux-web-scoring-en.md b/includes/french-guide/radarr-cf-french-remux-web-scoring-en.md index 869b41bf2..24cea1492 100644 --- a/includes/french-guide/radarr-cf-french-remux-web-scoring-en.md +++ b/includes/french-guide/radarr-cf-french-remux-web-scoring-en.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['french-remux-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-remux-tier-01) | {{ radarr['cf']['french-remux-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-remux-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: French Scene groups are included as a fallback if you really want MULTi release despite a potential loss in quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (default) or `0` depending on what you want to achieve. ??? info "Original mix (optional)" + {! include-markdown "../../includes/cf/radarr-cf-remux-web-scoring.md" !} diff --git a/includes/french-guide/radarr-cf-french-remux-web-scoring-fr.md b/includes/french-guide/radarr-cf-french-remux-web-scoring-fr.md index 77cd4c219..4338e6be1 100644 --- a/includes/french-guide/radarr-cf-french-remux-web-scoring-fr.md +++ b/includes/french-guide/radarr-cf-french-remux-web-scoring-fr.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['french-remux-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-remux-tier-01) | {{ radarr['cf']['french-remux-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-remux-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: Les groupes de la Scène française sont inclus comme substitut si vous voulez vraiment une version MULTi malgré une éventuelle perte de qualité. Vous pouvez lui attribuer un score de `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (par défaut) ou de `0` selon ce que vous voulez obtenir. ??? info "Mix original (optionnel)" + {! include-markdown "../../includes/cf/radarr-cf-remux-web-scoring.md" !} diff --git a/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-en.md b/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-en.md index de735b697..8ab480bdf 100644 --- a/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-en.md +++ b/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-en.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------: | ----------------------------------------------------------- | | [{{ radarr['cf']['french-uhd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-uhd-bluray-tier-01) | {{ radarr['cf']['french-uhd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-uhd-bluray-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: French Scene groups are included as a fallback if you really want MULTi release despite a potential loss in quality. Either score the CF to `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (default) or `0` depending on what you want to achieve. ??? info "Original mix (optional)" + {! include-markdown "../../includes/cf/radarr-cf-uhd-bluray-web-scoring.md" !} diff --git a/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-fr.md b/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-fr.md index e6b2132b7..5f65709d7 100644 --- a/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-fr.md +++ b/includes/french-guide/radarr-cf-french-uhd-bluray-web-scoring-fr.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------: | ----------------------------------------------------------- | | [{{ radarr['cf']['french-uhd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-uhd-bluray-tier-01) | {{ radarr['cf']['french-uhd-bluray-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['french-uhd-bluray-tier-01']['trash_id'] }} | @@ -8,7 +9,9 @@ | [{{ radarr['cf']['french-scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ radarr['cf']['french-scene']['trash_scores']['default'] }} | {{ radarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: Les groupes de la Scène française sont inclus comme substitut si vous voulez vraiment une version MULTi malgré une éventuelle perte de qualité. Vous pouvez lui attribuer un score de `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (par défaut) ou de `0` selon ce que vous voulez obtenir. ??? info "Mix original (optionnel)" + {! include-markdown "../../includes/cf/radarr-cf-uhd-bluray-web-scoring.md" !} diff --git a/includes/french-guide/radarr-french-advanced-audio-information-en.md b/includes/french-guide/radarr-french-advanced-audio-information-en.md index c3391fb58..2e4456ab2 100644 --- a/includes/french-guide/radarr-french-advanced-audio-information-en.md +++ b/includes/french-guide/radarr-french-advanced-audio-information-en.md @@ -1,4 +1,5 @@ !!! warning "Information regarding HD audio" + It should be noted that many problems can arise from this profile if you use the HD audio Custom Formats, as: - French Scene rules assert that the French audio should be the first (default) audio in a MULTi release. @@ -13,4 +14,5 @@ - The final score for the release can be lower than the pre-import. !!! tip + This is why the Group tiers exist; it tries to get hold of the groups that tend to get the best original and French audio for a release. However, it is not infallible, and, once again, a movie may not have an equivalent FR audio track to the original audio's highest one. diff --git a/includes/french-guide/radarr-french-advanced-audio-information-fr.md b/includes/french-guide/radarr-french-advanced-audio-information-fr.md index 68018f637..ff58f0bbf 100644 --- a/includes/french-guide/radarr-french-advanced-audio-information-fr.md +++ b/includes/french-guide/radarr-french-advanced-audio-information-fr.md @@ -1,4 +1,5 @@ !!! warning "Informations concernant les audios HD" + Il convient de noter que de divers problèmes peuvent survenir avec ce profil si vous utilisez les formats personnalisés de l'audio HD, car : - Les règles de la Scène française stipulent que l'audio français doit être le premier audio (celui par défaut) dans une version MULTi. @@ -13,4 +14,5 @@ - La note finale de la release peut être inférieure à celle obtenue avant l'importation. !!! tip + Les Formats Personnalisés de Groupes P2P existent pour cette raison ; ils essaient de regrouper les groupes qui ont tendance à obtenir les meilleures pistes audio originales et françaises pour une sortie. Cependant, cette approche n'est pas infaillible et un film peut ne pas avoir une piste audio FR équivalente à la piste la plus élevée de l'audio original. diff --git a/includes/french-guide/radarr-french-audio-version-en.md b/includes/french-guide/radarr-french-audio-version-en.md index 7b64174c6..29c3e3fd6 100644 --- a/includes/french-guide/radarr-french-audio-version-en.md +++ b/includes/french-guide/radarr-french-audio-version-en.md @@ -1,4 +1,5 @@ ??? abstract "Explanation - [Click to show/hide]" + | Acronyms | French Explanation | English Explanation | | -------------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------- | | TRUEFRENCH or VFF | Version Francophone Française (doublage réalisé en France) | Full French version (dubbing done in France) | @@ -16,13 +17,16 @@ - *[2] It should be noted that SUBFRENCH is included in this Custom Format. However, SUB often means that the subtitle was embedded inside the picture (hardcoded). French releases tend to mix the two, leading to some VOSTFR being labelled as SUBFRENCH and SUBFRENCH as VOSTFR.* !!! tip "Indexers renaming in Prowlarr" + Some Indexers in **Prowlarr** can rename `MULTi` releases to `MULTi.TRUEFRENCH` or `MULTi.FRENCH`. It is not recommend to use such a feature along with those Custom Formats as it can lead to false positives from the VFF, VFQ and VQ Custom Formats. !!! tip "MULTi definition per indexers" + Some Indexers in **Radarr** will let you choose which audio is normally included inside a `MULTi` release as an option. You should choose only `Original` and `French` if you decide to use it. This option should only be used for French indexers where you are sure that `MULTi` does include both `Original` and `French` audio. Doing so in more "international" indexers can create to false positive with the French Audio CFs. ??? abstract "French Audio Versions - [Click to show/hide]" + | Custom Format | Trash ID | | -------------------------------------------------------------------------------------------------- | ----------------------------------------------- | | [{{ radarr['cf']['french-vff']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vff) | {{ radarr['cf']['french-vff']['trash_id'] }} | diff --git a/includes/french-guide/radarr-french-audio-version-fr.md b/includes/french-guide/radarr-french-audio-version-fr.md index cba79e7e4..35d910b27 100644 --- a/includes/french-guide/radarr-french-audio-version-fr.md +++ b/includes/french-guide/radarr-french-audio-version-fr.md @@ -1,4 +1,5 @@ ??? abstract "Explications - [Cliquer pour afficher/masquer]" + | Acronymes | Définition française | Définition anglaise | | -------------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------- | | TRUEFRENCH or VFF | Version Francophone Française (doublage réalisé en France) | Full French version (dubbing done in France) | @@ -16,13 +17,16 @@ - *[2] Il est à noter que le SUBFRENCH est inclus dans ce Format Personnalisé. Néanmoins, SUB signifie souvent que le sous-titre a été intégré à l'image (hardcoded). Les sorties françaises ont tendance à mélanger les deux, ce qui fait que certains VOSTFR sont étiquetés comme SUBFRENCH et SUBFRENCH comme VOSTFR.* !!! tip "Indexers renaming in Prowlarr" + Certains indexeurs dans **Prowlarr** peuvent renommer les versions `MULTi` en `MULTi.TRUEFRENCH` ou `MULTi.FRENCH`. L'utilisation de cette fonction n'est pas recommandé, car elle peut entraîner des faux positifs avec les formats personnalisés VFF, VFQ et VQ. !!! tip "MULTi definition per indexers" + Certains indexers dans **Radarr** vous permettront de choisir l'audio qui est normalement inclus dans une version `MULTi` en tant qu'option. Vous devriez choisir seulement `Original` et `French` si vous décidez de l'utiliser. Cette option ne devrait être utilisée que pour les indexers français où vous êtes sûr du fait que `MULTi` inclut à la fois l'audio `Original` et l'audio `Français`. L'utiliser avec des indexers plus "internationaux" peut créer un faux positif avec la recognaissance des CFs des versions françaises. ??? abstract "Versions françaises - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Trash ID | | -------------------------------------------------------------------------------------------------- | ----------------------------------------------- | | [{{ radarr['cf']['french-vff']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#vff) | {{ radarr['cf']['french-vff']['trash_id'] }} | diff --git a/includes/french-guide/radarr-french-multi-audio-en.md b/includes/french-guide/radarr-french-multi-audio-en.md index 99c8e4293..800b579a1 100644 --- a/includes/french-guide/radarr-french-multi-audio-en.md +++ b/includes/french-guide/radarr-french-multi-audio-en.md @@ -1,4 +1,5 @@ ??? abstract "Multi audio - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ radarr['cf']['multi-audio']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi-audio) | {{ radarr['cf']['multi-audio']['trash_scores']['default'] }} | {{ radarr['cf']['multi-audio']['trash_id'] }} | @@ -10,10 +11,12 @@ - **{{ radarr['cf']['multi-audio']['name'] }}:** This is a custom format to help Radarr recognize MULTi audio releases. !!! tip + 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 recognize release with French audio. It is optional and only gives a small boost if the release indeed possesses French audio. - **{{ radarr['cf']['multi-french']['name'] }}:** This is a custom format that will rename your file with `Multi-French`. !!! question "How it works" + When Radarr finds a release with `MULTi`, it will allocate a {{ radarr['cf']['multi-audio']['trash_scores']['default'] }} score to it thanks to the **{{ radarr['cf']['multi-audio']['name'] }}** custom format. If the release contains at least both 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_scores']['default'] }} score from the {{ radarr['cf']['multi-audio']['name'] }} Custom Format. diff --git a/includes/french-guide/radarr-french-multi-audio-fr.md b/includes/french-guide/radarr-french-multi-audio-fr.md index 8b725a949..c634313a9 100644 --- a/includes/french-guide/radarr-french-multi-audio-fr.md +++ b/includes/french-guide/radarr-french-multi-audio-fr.md @@ -1,4 +1,5 @@ ??? abstract "Multi audio - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ radarr['cf']['multi-audio']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi-audio) | {{ radarr['cf']['multi-audio']['trash_scores']['default'] }} | {{ radarr['cf']['multi-audio']['trash_id'] }} | @@ -10,10 +11,12 @@ - **{{ radarr['cf']['multi-audio']['name'] }}:** Il s'agit d'un Format Personnalisé pour aider Radarr à reconnaître les releases aved plusieurs audios (MULTi). !!! tip + Vous pouvez remplacer sans problème le Format Personnalisé [{{ radarr['cf']['multi']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#multi) du Guide par celui-ci. - **{{ radarr['cf']['french-audio']['name'] }}:** Il s'agit d'un Format Personnalisé pour aider Radarr à reconnaître les versions ayant un audio francophone. Il est facultatif et ne donne un léger bonus que si la version possède effectivement un audio français. - **{{ radarr['cf']['multi-french']['name'] }}:** Il s'agit d'un Format Personnalisé qui renommera votre fichier avec `Multi-French`.. !!! question "Comment fonctionne cette méthode" + Lorsque Radarr trouve une version avec `MULTi`, il lui attribue le score de {{ radarr['cf']['multi-audio']['trash_scores']['default'] }} grâce au Format Personnalisé **{{ radarr['cf']['multi-audio']['name'] }}**. Si la version contient au moins l'audio original et l'audio français, elle sera renommée par le Format Personnalisé **{{ radarr['cf']['multi-french']['name'] }}**. Ce qui permet à la version de conserver le score de {{ radarr['cf']['multi-audio']['trash_scores']['default'] }} du Format Personnalisé {{ radarr['cf']['multi-audio']['name'] }}. diff --git a/includes/french-guide/radarr-french-unwanted-en.md b/includes/french-guide/radarr-french-unwanted-en.md index 17e6bef63..a65ee5d6c 100644 --- a/includes/french-guide/radarr-french-unwanted-en.md +++ b/includes/french-guide/radarr-french-unwanted-en.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ radarr['cf']['french-lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-lq) | {{ radarr['cf']['french-lq']['trash_scores']['default'] }} | {{ radarr['cf']['french-lq']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/french-guide/radarr-french-unwanted-fr.md b/includes/french-guide/radarr-french-unwanted-fr.md index ac64f9e75..891d6449b 100644 --- a/includes/french-guide/radarr-french-unwanted-fr.md +++ b/includes/french-guide/radarr-french-unwanted-fr.md @@ -1,4 +1,5 @@ ??? abstract "Indésirable - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ radarr['cf']['french-lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#fr-lq) | {{ radarr['cf']['french-lq']['trash_scores']['default'] }} | {{ radarr['cf']['french-lq']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - ------ + --- Description et objectifs diff --git a/includes/french-guide/radarr-french-unwanted-uhd-en.md b/includes/french-guide/radarr-french-unwanted-uhd-en.md index d687de604..06c33af54 100644 --- a/includes/french-guide/radarr-french-unwanted-uhd-en.md +++ b/includes/french-guide/radarr-french-unwanted-uhd-en.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -8,7 +9,7 @@ | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/french-guide/radarr-french-unwanted-uhd-fr.md b/includes/french-guide/radarr-french-unwanted-uhd-fr.md index a2bc9e6b6..3f64a2e04 100644 --- a/includes/french-guide/radarr-french-unwanted-uhd-fr.md +++ b/includes/french-guide/radarr-french-unwanted-uhd-fr.md @@ -1,4 +1,5 @@ ??? abstract "Indésirable - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -8,7 +9,7 @@ | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - ------ + --- Description et objectifs diff --git a/includes/french-guide/sonarr-cf-french-anime-scoring-en.md b/includes/french-guide/sonarr-cf-french-anime-scoring-en.md index 6082fafba..ef958a992 100644 --- a/includes/french-guide/sonarr-cf-french-anime-scoring-en.md +++ b/includes/french-guide/sonarr-cf-french-anime-scoring-en.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------: | ---------------------------------------------------------- | | [{{ sonarr['cf']['french-anime-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-anime-tier-01) | {{ sonarr['cf']['french-anime-tier-01']['trash_scores']['default'] }} | {{ sonarr['cf']['french-anime-tier-01']['trash_id'] }} | @@ -12,9 +13,11 @@ | [{{ sonarr['cf']['french-web-tier-03']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-web-tier-03) | (optional) {{ sonarr['cf']['french-web-tier-03']['trash_scores']['french-anime'] }} | {{ sonarr['cf']['french-web-tier-03']['trash_id'] }} | !!! tip + French Scene groups are included and should be always added as some of the biggest releaser of French subbed and/or dubbed are from the French Scene. FanSUB groups can either be scored either {{ sonarr['cf']['french-anime-fansub']['trash_scores']['default'] }} (default) or `1000` depending if you want to prefer FanSUB or SeaDex releases. !!! tip "Original French Bluray/Web Tiers" + They are optional and can be included or not. This is due because some of them tend to release some animes. diff --git a/includes/french-guide/sonarr-cf-french-anime-scoring-fr.md b/includes/french-guide/sonarr-cf-french-anime-scoring-fr.md index 1fd9e71de..e578b0b1e 100644 --- a/includes/french-guide/sonarr-cf-french-anime-scoring-fr.md +++ b/includes/french-guide/sonarr-cf-french-anime-scoring-fr.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------: | ---------------------------------------------------------- | | [{{ sonarr['cf']['french-anime-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-anime-tier-01) | {{ sonarr['cf']['french-anime-tier-01']['trash_scores']['default'] }} | {{ sonarr['cf']['french-anime-tier-01']['trash_id'] }} | @@ -12,9 +13,11 @@ | [{{ sonarr['cf']['french-web-tier-03']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-web-tier-03) | (optional) {{ sonarr['cf']['french-web-tier-03']['trash_scores']['french-anime'] }} | {{ sonarr['cf']['french-web-tier-03']['trash_id'] }} | !!! tip + Les groupes de la scène française sont inclus et devraient toujours être ajoutés car certains des principaux groupes qui publient des versions sous-titrées et/ou doublées en français en sont issus. Les groupes FanSUB peuvent être notés soit {{ sonarr['cf']['french-anime-fansub']['trash_scores']['default'] }} (par défaut) soit `1000` selon que vous souhaitez privilégier les sorties FanSUB ou SeaDex. !!! tip "Original French Bluray/Web Tiers" + Ils sont optionnels et peuvent être inclus ou non. Cela est dû au fait que certains d'entre eux ont tendance à publier des animes. diff --git a/includes/french-guide/sonarr-cf-french-web-scoring-en.md b/includes/french-guide/sonarr-cf-french-web-scoring-en.md index f9e414bb0..9614bba11 100644 --- a/includes/french-guide/sonarr-cf-french-web-scoring-en.md +++ b/includes/french-guide/sonarr-cf-french-web-scoring-en.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------: | ---------------------------------------------------- | | [{{ sonarr['cf']['french-web-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-web-tier-01) | {{ sonarr['cf']['french-web-tier-01']['trash_scores']['default'] }} | {{ sonarr['cf']['french-web-tier-01']['trash_id'] }} | @@ -7,7 +8,9 @@ | [{{ sonarr['cf']['french-scene']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ sonarr['cf']['french-scene']['trash_scores']['default'] }} | {{ sonarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: French Scene groups are included as a fallback if you really want MULTi release despite a potential loss in quality. Either score the CF to `{{ sonarr['cf']['french-scene']['trash_scores']['default'] }}` (default) or `0` depending on what you want to achieve. ??? info "Original mix (optional)" + {! include-markdown "../../includes/cf/sonarr-hq-source-group.md" !} diff --git a/includes/french-guide/sonarr-cf-french-web-scoring-fr.md b/includes/french-guide/sonarr-cf-french-web-scoring-fr.md index 64eaa64d1..e3f94e78a 100644 --- a/includes/french-guide/sonarr-cf-french-web-scoring-fr.md +++ b/includes/french-guide/sonarr-cf-french-web-scoring-fr.md @@ -1,4 +1,5 @@ ??? abstract "HQ Source Groups - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------: | ---------------------------------------------------- | | [{{ sonarr['cf']['french-web-tier-01']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-web-tier-01) | {{ sonarr['cf']['french-web-tier-01']['trash_scores']['default'] }} | {{ sonarr['cf']['french-web-tier-01']['trash_id'] }} | @@ -7,7 +8,9 @@ | [{{ sonarr['cf']['french-scene']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-scene-groups) | :warning: {{ sonarr['cf']['french-scene']['trash_scores']['default'] }} | {{ sonarr['cf']['french-scene']['trash_id'] }} | !!! tip + :warning: Les groupes de la Scène française sont inclus comme substitut si vous voulez vraiment une version MULTi malgré une éventuelle perte de qualité. Vous pouvez lui attribuer un score de `{{ radarr['cf']['french-scene']['trash_scores']['default'] }}` (par défaut) ou de `0` selon ce que vous voulez obtenir. ??? info "Mix original (optionnel)" + {! include-markdown "../../includes/cf/sonarr-hq-source-group.md" !} diff --git a/includes/french-guide/sonarr-french-anime-info-en.md b/includes/french-guide/sonarr-french-anime-info-en.md index eee0e2106..41ef2fe76 100644 --- a/includes/french-guide/sonarr-french-anime-info-en.md +++ b/includes/french-guide/sonarr-french-anime-info-en.md @@ -1,4 +1,5 @@ !!! info "Important" + In a first time you should follow the original Anime Guide following sections: - [How to setup Quality Profiles Anime | Media Management](/Sonarr/sonarr-setup-quality-profiles-anime/#media-management){:target="_blank" rel="noopener noreferrer"}. @@ -8,6 +9,7 @@ Do not continue before you read those three sections and you followed their instructions. !!! info "Original Scoring" + Those are the original scoring from the Anime Guide and need to be followed depending what you want to achieve. It will unsure that if a VOSTFR or MULTi releases is not found you will still have a good quality releases: - [Default Scoring](/Sonarr/sonarr-setup-quality-profiles-anime/#default-scoring){:target="_blank" rel="noopener noreferrer"}: Default scoring that will insure that you have good English subbed releases at least. @@ -17,6 +19,7 @@ :warning: Careful to not add the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr) Custom Format with a score of `{{ sonarr['cf']['french-vostfr']['trash_scores']['anime-sonarr'] }}` as stated in the original guide. Otherwise, you will hinder your chance to get "French" releases. !!! info "Only want VOSTFR anime" + For this example if you prefer VOSTFR over potential MULTi/DUAL (original and French) audio releases, you should score the [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr) to `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-anime'] }}`, and disregard all the `Multi` and French version Custom Formats. *(Optional) You can also try to set up [Bazarr](/Bazarr/Setup-Guide){:target="_blank" rel="noopener noreferrer"} to get French Sub. This is less preferred as fewer anime subs can be found online than from normal TV shows. However, it can be still a great backup.* diff --git a/includes/french-guide/sonarr-french-anime-info-fr.md b/includes/french-guide/sonarr-french-anime-info-fr.md index 246c54eda..e552e2b46 100644 --- a/includes/french-guide/sonarr-french-anime-info-fr.md +++ b/includes/french-guide/sonarr-french-anime-info-fr.md @@ -1,4 +1,5 @@ !!! info "Important" + Dans un premier temps, vous devez suivre les sections suivantes du Guide Anime original (en anglais uniquemment) : - [How to setup Quality Profiles Anime | Media Management](/Sonarr/sonarr-setup-quality-profiles-anime/#media-management){:target="_blank" rel="noopener noreferrer"}. @@ -8,6 +9,7 @@ Ne continuez pas avant d'avoir lu ces trois sections et d'avoir suivi leurs instructions. !!! info "Original Scoring" + Il s'agit de la notation originale du Guide Anime et elle doit être suivie en fonction de ce que vous voulez obtenir. Ainsi vous ne trouvez pas de version VOSTFR ou MULTi, vous aurez toujours une version de bonne qualité : - [Default Scoring](/Sonarr/sonarr-setup-quality-profiles-anime/#default-scoring){:target="_blank" rel="noopener noreferrer"}: La configuration par défaut qui garantit que vous aurez au minimum une bonne version sous-titrée en anglais. @@ -17,6 +19,7 @@ :warning: Attention à ne pas ajouter le Format Personnalisé [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr) avec un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['anime-sonarr'] }}` comme indiqué dans le guide original. Sinon, vous compromettrez vos chances d'obtenir des versions "françaises". !!! info "VOSTFR uniquement pour les anime" + Dans cet exemple, si vous préférez la VOSTFR à d'éventuelles releases MULTi/DUAL (audio original et français), vous devez donner un score de `{{ sonarr['cf']['french-vostfr']['trash_scores']['french-anime'] }}` pour le Format Personnalisés [{{ sonarr['cf']['french-vostfr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vostfr), et ignorer tous les Formats Personnalisés `Multi` et version française. (Optionnel) Vous pouvez également essayer de configurer [Bazarr](/Bazarr/Setup-Guide){:target="_blank" rel="noopener noreferrer"} (*en anglais*) pour obtenir les sous-titres français de vos animes. Cette option est toute fois moins recommandée, car on trouve moins de sous-titres pour les animes en ligne que pour les séries habituelles. Cependant, cela peut être une alternative intéressante. diff --git a/includes/french-guide/sonarr-french-audio-version-en.md b/includes/french-guide/sonarr-french-audio-version-en.md index 4e8fa458b..8799f7175 100644 --- a/includes/french-guide/sonarr-french-audio-version-en.md +++ b/includes/french-guide/sonarr-french-audio-version-en.md @@ -1,4 +1,5 @@ ??? abstract "Explanation - [Click to show/hide]" + | Acronyms | French Explanation | English Explanation | | -------------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------- | | TRUEFRENCH or VFF | Version Francophone Française (doublage réalisé en France) | Full French version (dubbing done in France) | @@ -16,9 +17,11 @@ - *[2] It should be noted that SUBFRENCH is included in this Custom Format. However, SUB often means that the subtitle was embedded inside the picture (hardcoded). French releases tend to mix the two, leading to some VOSTFR being labelled as SUBFRENCH and SUBFRENCH as VOSTFR.* !!! tip "Indexers renaming in Prowlarr" + Some Indexers in **Prowlarr** can rename `MULTi` releases to `MULTi.TRUEFRENCH` or `MULTi.FRENCH`. It is not recommend to use such a feature along with those Custom Formats as it can lead to false positives from the VFF, VFQ and VQ Custom Formats. ??? abstract "French Audio Versions - [Click to show/hide]" + | Custom Format | Trash ID | | -------------------------------------------------------------------------------------------------- | ----------------------------------------------- | | [{{ sonarr['cf']['french-vff']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vff) | {{ sonarr['cf']['french-vff']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-audio-version-fr.md b/includes/french-guide/sonarr-french-audio-version-fr.md index a2dc6b841..0caa26b67 100644 --- a/includes/french-guide/sonarr-french-audio-version-fr.md +++ b/includes/french-guide/sonarr-french-audio-version-fr.md @@ -1,4 +1,5 @@ ??? abstract "Explications - [Cliquer pour afficher/masquer]" + | Acronymes | Définition française | Définition anglaise | | -------------------------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------- | | TRUEFRENCH or VFF | Version Francophone Française (doublage réalisé en France) | Full French version (dubbing done in France) | @@ -16,9 +17,11 @@ - *[2] Il est à noter que le SUBFRENCH est inclus dans ce Format Personnalisé. Néanmoins, SUB signifie souvent que le sous-titre a été intégré à l'image (hardcoded). Les sorties françaises ont tendance à mélanger les deux, ce qui fait que certains VOSTFR sont étiquetés comme SUBFRENCH et SUBFRENCH comme VOSTFR.* !!! tip "Indexers renaming in Prowlarr" + Certains indexeurs dans **Prowlarr** peuvent renommer les versions `MULTi` en `MULTi.TRUEFRENCH` ou `MULTi.FRENCH`. L'utilisation de cette fonction n'est pas recommandé, car elle peut entraîner des faux positifs avec les formats personnalisés VFF, VFQ et VQ. ??? abstract "Versions françaises - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Trash ID | | -------------------------------------------------------------------------------------------------- | ----------------------------------------------- | | [{{ sonarr['cf']['french-vff']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vff) | {{ sonarr['cf']['french-vff']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-multi-audio-en.md b/includes/french-guide/sonarr-french-multi-audio-en.md index 9b642e015..2c13b1a8d 100644 --- a/includes/french-guide/sonarr-french-multi-audio-en.md +++ b/includes/french-guide/sonarr-french-multi-audio-en.md @@ -1,4 +1,5 @@ ??? abstract "Multi Audio - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ sonarr['cf']['multi-audio']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#multi-audio) | {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} | {{ sonarr['cf']['multi-audio']['trash_id'] }} | @@ -10,10 +11,12 @@ - **{{ sonarr['cf']['multi-audio']['name'] }}:** This is a custom format to help Sonarr recognize MULTi audio releases. !!! tip + You can safely replace the original [{{ sonarr['cf']['multi']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#multi) Custom Format from the Guide with it. - **{{ sonarr['cf']['french-audio']['name'] }}:** This is a custom format to help Sonarr recognize release with French audio. It is optional and only gives a small boost if the release indeed possesses French audio. - **{{ sonarr['cf']['multi-french']['name'] }}:** This is a custom format that will rename your file with `Multi-French`. !!! question "How it works" + When Sonarr finds a release with `MULTi`, it will allocate a {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} score to it thanks to the **{{ sonarr['cf']['multi-audio']['name'] }}** custom format. If the release contains at least both the original audio and French audio, it will be renamed by the **{{ sonarr['cf']['multi-french']['name'] }}**. Allowing the release to keep the {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} score from the {{ sonarr['cf']['multi-audio']['name'] }} Custom Format. diff --git a/includes/french-guide/sonarr-french-multi-audio-fr.md b/includes/french-guide/sonarr-french-multi-audio-fr.md index 73fdebe79..676f1cae8 100644 --- a/includes/french-guide/sonarr-french-multi-audio-fr.md +++ b/includes/french-guide/sonarr-french-multi-audio-fr.md @@ -1,4 +1,5 @@ ??? abstract "Multi Audio - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------: | ---------------------------------------------- | | [{{ sonarr['cf']['multi-audio']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#multi-audio) | {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} | {{ sonarr['cf']['multi-audio']['trash_id'] }} | @@ -10,10 +11,12 @@ - **{{ sonarr['cf']['multi-audio']['name'] }}:** Il s'agit d'un Format Personnalisé pour aider Sonarr à reconnaître les releases aved plusieurs audios (MULTi). !!! tip + Vous pouvez remplacer sans problème le Format Personnalisé [{{ sonarr['cf']['multi']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#multi) du Guide par celui-ci. - **{{ sonarr['cf']['french-audio']['name'] }}:** Il s'agit d'un Format Personnalisé pour aider Sonarr à reconnaître les versions ayant un audio francophone. Il est facultatif et ne donne un léger bonus que si la version possède effectivement un audio français. - **{{ sonarr['cf']['multi-french']['name'] }}:** Il s'agit d'un Format Personnalisé qui renommera votre fichier avec `Multi-French`.. !!! question "Comment fonctionne cette méthode" + Lorsque Sonarr trouve une version avec `MULTi`, il lui attribue le score de {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} grâce au Format Personnalisé **{{ sonarr['cf']['multi-audio']['name'] }}**. Si la version contient au moins l'audio original et l'audio français, elle sera renommée par le Format Personnalisé **{{ sonarr['cf']['multi-french']['name'] }}**. Ce qui permet à la version de conserver le score de {{ sonarr['cf']['multi-audio']['trash_scores']['default'] }} du Format Personnalisé {{ sonarr['cf']['multi-audio']['name'] }}. diff --git a/includes/french-guide/sonarr-french-streaming-services-anime-en.md b/includes/french-guide/sonarr-french-streaming-services-anime-en.md index 952bf040e..ec6d0c0d1 100644 --- a/includes/french-guide/sonarr-french-streaming-services-anime-en.md +++ b/includes/french-guide/sonarr-french-streaming-services-anime-en.md @@ -1,4 +1,5 @@ ??? abstract "French Anime Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------- | :---------------------------------------------------------: | -------------------------------------------- | | [{{ sonarr['cf']['cr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#cr) | {{ sonarr['cf']['cr']['trash_scores']['default'] }} | {{ sonarr['cf']['cr']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-streaming-services-anime-fr.md b/includes/french-guide/sonarr-french-streaming-services-anime-fr.md index 22ce327c9..471462379 100644 --- a/includes/french-guide/sonarr-french-streaming-services-anime-fr.md +++ b/includes/french-guide/sonarr-french-streaming-services-anime-fr.md @@ -1,4 +1,5 @@ ??? abstract "Services de streaming français d'Animés - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ----------------------------------------------------------------------------------------------- | :---------------------------------------------------------: | -------------------------------------------- | | [{{ sonarr['cf']['cr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#cr) | {{ sonarr['cf']['cr']['trash_scores']['default'] }} | {{ sonarr['cf']['cr']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-streaming-services-en.md b/includes/french-guide/sonarr-french-streaming-services-en.md index d9ac243e0..35121712c 100644 --- a/includes/french-guide/sonarr-french-streaming-services-en.md +++ b/includes/french-guide/sonarr-french-streaming-services-en.md @@ -1,4 +1,5 @@ ??? abstract "French Streaming Services - [Click to show/hide]" + | Custom Format | Trash ID | | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | | [{{ sonarr['cf']['french-canalplus']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#canalplus) | {{ sonarr['cf']['french-canalplus']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-streaming-services-fr.md b/includes/french-guide/sonarr-french-streaming-services-fr.md index 2ab54114d..0d18e3e1d 100644 --- a/includes/french-guide/sonarr-french-streaming-services-fr.md +++ b/includes/french-guide/sonarr-french-streaming-services-fr.md @@ -1,4 +1,5 @@ ??? abstract "Services de streaming en français - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Trash ID | | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | | [{{ sonarr['cf']['french-canalplus']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#canalplus) | {{ sonarr['cf']['french-canalplus']['trash_id'] }} | diff --git a/includes/french-guide/sonarr-french-unwanted-en.md b/includes/french-guide/sonarr-french-unwanted-en.md index 7fb50d42d..ec6990e6e 100644 --- a/includes/french-guide/sonarr-french-unwanted-en.md +++ b/includes/french-guide/sonarr-french-unwanted-en.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd) :warning: | {{ sonarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ sonarr['cf']['x265-hd']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why @@ -21,6 +22,7 @@ - **{{ sonarr['cf']['extras']['name'] }}:** This blocks/ignores extras ??? warning "Type of FanSubs - [Click to show/hide]" + Those Custom Formats are optionals and allow to know which type of FanSubs your releases have. Only the FastSub is not wanted as it is often done too quickly and are often not well done. If you do not want FanSub either you should also score it to {{ sonarr['cf']['fastsub']['trash_scores']['default'] }}. | Custom Format | Score | Trash ID | diff --git a/includes/french-guide/sonarr-french-unwanted-fr.md b/includes/french-guide/sonarr-french-unwanted-fr.md index 5e6ddad2d..71cee0bb4 100644 --- a/includes/french-guide/sonarr-french-unwanted-fr.md +++ b/includes/french-guide/sonarr-french-unwanted-fr.md @@ -1,4 +1,5 @@ ??? abstract "Indésirable - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | ------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -7,7 +8,7 @@ | [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd) :warning: | {{ sonarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ sonarr['cf']['x265-hd']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why @@ -21,6 +22,7 @@ - **{{ sonarr['cf']['extras']['name'] }}:** Bloque les extras ??? warning "Type de FanSubs - [Cliquer pour afficher/masquer]" + Ces Formats Personnalisés sont optionnels et permettent de savoir quel type de FanSubs vos versions possèdent. Seul le FastSub n'est pas souhaité car il est souvent fait trop rapidement et reste peu soigné. Si vous ne voulez pas de FanSub non plus, vous devez aussi lui donner un score de {{ sonarr['cf']['fastsub']['trash_scores']['default'] }}. | Formats Personnalisés | Score | Trash ID | diff --git a/includes/french-guide/sonarr-french-unwanted-uhd-en.md b/includes/french-guide/sonarr-french-unwanted-uhd-en.md index 1b17b4f7d..dc6ec8463 100644 --- a/includes/french-guide/sonarr-french-unwanted-uhd-en.md +++ b/includes/french-guide/sonarr-french-unwanted-uhd-en.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -6,7 +7,7 @@ | [{{ sonarr['cf']['french-lq']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-lq) | {{ sonarr['cf']['french-lq']['trash_scores']['default'] }} | {{ sonarr['cf']['french-lq']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why @@ -16,6 +17,7 @@ - **{{ sonarr['cf']['extras']['name'] }}:** This blocks/ignores extras ??? warning "Type of FanSubs - [Click to show/hide]" + Those Custom Formats are optionals and allow to know which type of FanSubs your releases have. Only the FastSub is not wanted as it is often done too quickly and are often not well done. If you do not want FanSub either you should also score it to {{ sonarr['cf']['fastsub']['trash_scores']['default'] }}. | Custom Format | Score | Trash ID | diff --git a/includes/french-guide/sonarr-french-unwanted-uhd-fr.md b/includes/french-guide/sonarr-french-unwanted-uhd-fr.md index 67c09a6fc..c0af429fa 100644 --- a/includes/french-guide/sonarr-french-unwanted-uhd-fr.md +++ b/includes/french-guide/sonarr-french-unwanted-uhd-fr.md @@ -1,4 +1,5 @@ ??? abstract "Indésirable - [Cliquer pour afficher/masquer]" + | Formats Personnalisés | Score | Trash ID | | --------------------------------------------------------------------------------------------- | :--------------------------------------------------------: | ------------------------------------------- | | [{{ sonarr['cf']['br-disk']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#br-disk) | {{ sonarr['cf']['br-disk']['trash_scores']['default'] }} | {{ sonarr['cf']['br-disk']['trash_id'] }} | @@ -6,7 +7,7 @@ | [{{ sonarr['cf']['french-lq']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#fr-lq) | {{ sonarr['cf']['french-lq']['trash_scores']['default'] }} | {{ sonarr['cf']['french-lq']['trash_id'] }} | | [{{ sonarr['cf']['extras']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#extras) | {{ sonarr['cf']['extras']['trash_scores']['default'] }} | {{ sonarr['cf']['extras']['trash_id'] }} | - ------ + --- Breakdown and Why @@ -16,6 +17,7 @@ - **{{ sonarr['cf']['extras']['name'] }}:** Bloque les extras ??? warning "Type de FanSubs - [Cliquer pour afficher/masquer]" + Ces Formats Personnalisés sont optionnels et permettent de savoir quel type de FanSubs vos versions possèdent. Seul le FastSub n'est pas souhaité car il est souvent fait trop rapidement et reste peu soigné. Si vous ne voulez pas de FanSub non plus, vous devez aussi lui donner un score de {{ sonarr['cf']['fastsub']['trash_scores']['default'] }}. | Formats Personnalisés | Score | Trash ID | diff --git a/includes/hardlinks/bad-path-suggestion.md b/includes/hardlinks/bad-path-suggestion.md index 74f756131..85860251c 100644 --- a/includes/hardlinks/bad-path-suggestion.md +++ b/includes/hardlinks/bad-path-suggestion.md @@ -1,3 +1,3 @@ ### Bad path suggestion -!!! warning "The default path setup suggested by some docker developers that encourages people to use mounts like `/movies`, `/tv`, `/books` or `/downloads` is very suboptimal and it makes them look like two or three file systems, even if they aren’t (*Because of how Docker’s volumes work*). It is the easiest way to get started. While easy to use, it has a major drawback. Mainly losing the ability to hardlink or instant move, resulting in a slower and more I/O intensive copy + delete is used." +!!! warning "The default path setup suggested by some docker developers that encourages people to use mounts like `/movies`, `/tv`, `/books` or `/downloads` is very suboptimal and it makes them look like two or three file systems, even if they aren’t (_Because of how Docker’s volumes work_). It is the easiest way to get started. While easy to use, it has a major drawback. Mainly losing the ability to hardlink or instant move, resulting in a slower and more I/O intensive copy + delete is used." diff --git a/includes/hardlinks/breakdown-folder-structure-docker.md b/includes/hardlinks/breakdown-folder-structure-docker.md index e194b8130..d19573916 100644 --- a/includes/hardlinks/breakdown-folder-structure-docker.md +++ b/includes/hardlinks/breakdown-folder-structure-docker.md @@ -48,6 +48,6 @@ Plex, Emby, JellyFin and Bazarr only needs access to your media library using `/ `Host Path:` => `//data/media/` ------- +--- **Don't forget to look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside the applications.** diff --git a/includes/hardlinks/breakdown-folder-structure-synology.md b/includes/hardlinks/breakdown-folder-structure-synology.md index 6ce97beaf..d00f7cce2 100644 --- a/includes/hardlinks/breakdown-folder-structure-synology.md +++ b/includes/hardlinks/breakdown-folder-structure-synology.md @@ -48,6 +48,6 @@ Plex, Emby, JellyFin and Bazarr only needs access to your media library using `/ `Host Path:` => `/volume1/data/media/` ------- +--- **Don't forget to look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside the applications.** diff --git a/includes/hardlinks/breakdown-folder-structure.md b/includes/hardlinks/breakdown-folder-structure.md index 505baed3d..b05d7134c 100644 --- a/includes/hardlinks/breakdown-folder-structure.md +++ b/includes/hardlinks/breakdown-folder-structure.md @@ -32,6 +32,6 @@ Plex, Emby, JellyFin and Bazarr only needs access to your media library using `/ {! include-markdown "./docker-tree-media.md" !} ------- +--- **Don't forget to look at the [Examples](/Hardlinks/Examples/) how to setup the paths inside the applications.** diff --git a/includes/hardlinks/docker-iptables-fix.sh b/includes/hardlinks/docker-iptables-fix.sh index 6a96720b8..aaa3127b3 100644 --- a/includes/hardlinks/docker-iptables-fix.sh +++ b/includes/hardlinks/docker-iptables-fix.sh @@ -3,26 +3,25 @@ currentAttempt=0 totalAttempts=10 delay=15 -while [ $currentAttempt -lt $totalAttempts ] -do - currentAttempt=$(( $currentAttempt + 1 )) +while [ $currentAttempt -lt $totalAttempts ]; do + currentAttempt=$(($currentAttempt + 1)) - echo "Attempt $currentAttempt of $totalAttempts..." + echo "Attempt $currentAttempt of $totalAttempts..." - result=$(iptables-save) + result=$(iptables-save) - if [[ $result =~ "-A DOCKER -i docker0 -j RETURN" ]]; then - echo "Docker rules found! Modifying..." + if [[ $result =~ "-A DOCKER -i docker0 -j RETURN" ]]; then + echo "Docker rules found! Modifying..." - iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER - iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER + iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER + iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER - echo "Done!" + echo "Done!" - break - fi + break + fi - echo "Docker rules not found! Sleeping for $delay seconds..." + echo "Docker rules not found! Sleeping for $delay seconds..." - sleep $delay -done \ No newline at end of file + sleep $delay +done diff --git a/includes/hardlinks/docker-tree-full.md b/includes/hardlinks/docker-tree-full.md index 1eea47c9c..8ca8784df 100644 --- a/includes/hardlinks/docker-tree-full.md +++ b/includes/hardlinks/docker-tree-full.md @@ -8,13 +8,13 @@ data ├── usenet │ ├── incomplete │ └── complete -│ ├── books -│ ├── movies -│ ├── music -│ └── tv +│ ├── books +│ ├── movies +│ ├── music +│ └── tv └── media - ├── books - ├── movies - ├── music - └── tv + ├── books + ├── movies + ├── music + └── tv ``` diff --git a/includes/hardlinks/docker-tree-media.md b/includes/hardlinks/docker-tree-media.md index 37e6c2f7a..b904d6341 100644 --- a/includes/hardlinks/docker-tree-media.md +++ b/includes/hardlinks/docker-tree-media.md @@ -1,8 +1,8 @@ ```none data └── media - ├── movies - ├── music - ├── books - └── tv + ├── movies + ├── music + ├── books + └── tv ``` diff --git a/includes/hardlinks/docker-tree-torrents.md b/includes/hardlinks/docker-tree-torrents.md index 706008368..b2643d48a 100644 --- a/includes/hardlinks/docker-tree-torrents.md +++ b/includes/hardlinks/docker-tree-torrents.md @@ -1,8 +1,8 @@ ```none data └── torrents - ├── books - ├── movies - ├── music - └── tv + ├── books + ├── movies + ├── music + └── tv ``` diff --git a/includes/hardlinks/docker-tree-usenet.md b/includes/hardlinks/docker-tree-usenet.md index 5be4c212e..77d419dcc 100644 --- a/includes/hardlinks/docker-tree-usenet.md +++ b/includes/hardlinks/docker-tree-usenet.md @@ -3,8 +3,8 @@ data └── usenet ├── incomplete └── complete - ├── books - ├── movies - ├── music - └── tv + ├── books + ├── movies + ├── music + └── tv ``` diff --git a/includes/hardlinks/folder-structure.md b/includes/hardlinks/folder-structure.md index 30c6a474b..eada59800 100644 --- a/includes/hardlinks/folder-structure.md +++ b/includes/hardlinks/folder-structure.md @@ -14,6 +14,6 @@ For this example we're going to make use of a share called `data`. The `data` folder has sub-folders for `torrents` and `usenet` and each of these have sub-folders for `tv`, `movie`, `books` and `music` downloads to keep things neat. The `media` folder has nicely named `TV`, `Movies`, `Books` and `Music` sub-folders, this is your library and what you’d pass to Plex, Emby or JellyFin. -*In this examples I'm using lower case on all folder on purpose, being Linux is case sensitive.* +_In this examples I'm using lower case on all folder on purpose, being Linux is case sensitive._ {! include-markdown "./docker-tree-full.md" !} diff --git a/includes/merge-quality/radarr-current-logic.md b/includes/merge-quality/radarr-current-logic.md index 942ddf366..dcc9c52f2 100644 --- a/includes/merge-quality/radarr-current-logic.md +++ b/includes/merge-quality/radarr-current-logic.md @@ -18,6 +18,7 @@ [Source: Wiki Servarr](https://wiki.servarr.com/radarr/faq#how-are-possible-downloads-compared){:target="_blank" rel="noopener noreferrer"} !!! warning "" + 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/#repackproper){: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/merge-quality/sonarr-current-logic.md b/includes/merge-quality/sonarr-current-logic.md index 9da544f5c..175cc8389 100644 --- a/includes/merge-quality/sonarr-current-logic.md +++ b/includes/merge-quality/sonarr-current-logic.md @@ -20,6 +20,7 @@ [Source: Wiki Servarr](https://wiki.servarr.com/sonarr/faq#how-are-possible-downloads-compared){:target="_blank" rel="noopener noreferrer"} !!! warning "" + 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 a preferred word regex of `/\b(repack|proper)\b/i` + `Settings` => `Media Management` => `File Management` => `Proper & Repacks` Change to `Do Not Prefer` and use a preferred word regex of `/\b(repack|proper)\b/i` diff --git a/includes/merge-quality/sonarrv4-current-logic.md b/includes/merge-quality/sonarrv4-current-logic.md index d880277f6..7f9508978 100644 --- a/includes/merge-quality/sonarrv4-current-logic.md +++ b/includes/merge-quality/sonarrv4-current-logic.md @@ -19,6 +19,7 @@ [Source: Wiki Servarr](https://wiki.servarr.com/sonarr/faq#how-are-possible-downloads-compared){:target="_blank" rel="noopener noreferrer"} !!! warning "" + 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](/Sonarr/sonarr-collection-of-custom-formats/#repackproper){:target="_blank" rel="noopener noreferrer"} + `Settings` => `Media Management` => `File Management` => `Proper & Repacks` Change to `Do Not Prefer` and use the [Repack/Proper Custom Format](/Sonarr/sonarr-collection-of-custom-formats/#repackproper){:target="_blank" rel="noopener noreferrer"} diff --git a/includes/sqp/1-4k-cf-scoring-sqp1.md b/includes/sqp/1-4k-cf-scoring-sqp1.md index 0024d9612..469f12a76 100644 --- a/includes/sqp/1-4k-cf-scoring-sqp1.md +++ b/includes/sqp/1-4k-cf-scoring-sqp1.md @@ -1,6 +1,7 @@ #### Custom Formats and scores ??? abstract "Audio - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------: | ------------------------------------------------- | | [{{ radarr['cf']['truehd-atmos']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#truehd-atmos) | :warning: {{ radarr['cf']['truehd-atmos']['trash_scores']['sqp-1-2160p'] }} :warning: | {{ radarr['cf']['truehd-atmos']['trash_id'] }} | @@ -54,6 +55,7 @@ !!! danger "The reason why we add `DV (WEBDL)` is because you want maximum compatibility across all devices :warning:" ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['remaster']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remaster) | {{ radarr['cf']['remaster']['trash_scores']['default'] }} | {{ radarr['cf']['remaster']['trash_id'] }} | @@ -64,12 +66,14 @@ | [{{ radarr['cf']['special-edition']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#special-edition) | {{ radarr['cf']['special-edition']['trash_scores']['default'] }} | {{ radarr['cf']['special-edition']['trash_id'] }} | !!! info + - If you prefer 1080p/2160p WEBDL with IMAX-E then add [{{ radarr['cf']['imax-enhanced']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax-enhanced) with the default scores. - The reason why we don't add [{{ radarr['cf']['imax']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax) is because BHDStudio didn't add IMAX to their filename before 2023-07-27. !!! danger "Adding `IMAX`/`IMAX Enhanced` will replace the BHDStudio release in most cases :warning:" ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------------------------ | :-----------------------------------------------------------------------------------------: | ---------------------------------------------------- | | [{{ radarr['cf']['bhdstudio']['name'] }}](https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/cf/bhdstudio.json) | {{ radarr['cf']['bhdstudio']['trash_scores']['default'] }} | {{ radarr['cf']['bhdstudio']['trash_id'] }} | @@ -86,6 +90,7 @@ !!! warning "Scores marked with a :warning: warning :warning: are different to those used in the main public guide" !!! tip + If you use SQP-1 (1080p) as your main/second Radarr you want to remove the following HQ Release Groups - [{{ radarr['cf']['hd-bluray-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hd-bluray-tier-01) @@ -99,24 +104,25 @@ ??? abstract "Optional - [Click to show/hide]" !!! tip "I recommend using the following Custom Formats" + - `x265 (no HDR/DV)` over the `x265 (HD)`, Read the Why below and don't forget to read the warning,
:warning: Only ever include one of them :warning: - `AV1` This will prevent grabbing AV1 releases. !!! danger "Adding any of the `HDR10+ Boosts` could result in less streaming optimized releases :warning:" - | Custom Format | Score | Trash ID | - | ------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------: | ------------------------------------------------- | - | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_scores']['default'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | - | [{{ radarr['cf']['evo-no-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#evo-no-webdl) | {{ radarr['cf']['evo-no-webdl']['trash_scores']['default'] }} | {{ radarr['cf']['evo-no-webdl']['trash_id'] }} | - | [{{ radarr['cf']['no-rlsgroup']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#no-rlsgroup) | {{ radarr['cf']['no-rlsgroup']['trash_scores']['default'] }} | {{ radarr['cf']['no-rlsgroup']['trash_id'] }} | - | [{{ radarr['cf']['obfuscated']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#obfuscated) | {{ radarr['cf']['obfuscated']['trash_scores']['default'] }} | {{ radarr['cf']['obfuscated']['trash_id'] }} | - | [{{ radarr['cf']['retags']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#retags) | {{ radarr['cf']['retags']['trash_scores']['default'] }} | {{ radarr['cf']['retags']['trash_id'] }} | - | [{{ radarr['cf']['scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#scene) | {{ radarr['cf']['scene']['trash_scores']['default'] }} | {{ radarr['cf']['scene']['trash_id'] }} | - | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ radarr['cf']['x265-no-hdrdv']['trash_scores']['default'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | - | [{{ radarr['cf']['hdr10plus-boost']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hdr10plus-boost) | {{ radarr['cf']['hdr10plus-boost']['trash_scores']['default'] }} | {{ radarr['cf']['hdr10plus-boost']['trash_id'] }} | - | [{{ radarr['cf']['dv-hdr10plus-boost']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-hdr10plus-boost) | {{ radarr['cf']['dv-hdr10plus-boost']['trash_scores']['default'] }} | {{ radarr['cf']['dv-hdr10plus-boost']['trash_id'] }} | - - ------ + | Custom Format | Score | Trash ID | + | ------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------: | ---------------------------------------------------- | + | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_scores']['default'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | + | [{{ radarr['cf']['evo-no-webdl']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#evo-no-webdl) | {{ radarr['cf']['evo-no-webdl']['trash_scores']['default'] }} | {{ radarr['cf']['evo-no-webdl']['trash_id'] }} | + | [{{ radarr['cf']['no-rlsgroup']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#no-rlsgroup) | {{ radarr['cf']['no-rlsgroup']['trash_scores']['default'] }} | {{ radarr['cf']['no-rlsgroup']['trash_id'] }} | + | [{{ radarr['cf']['obfuscated']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#obfuscated) | {{ radarr['cf']['obfuscated']['trash_scores']['default'] }} | {{ radarr['cf']['obfuscated']['trash_id'] }} | + | [{{ radarr['cf']['retags']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#retags) | {{ radarr['cf']['retags']['trash_scores']['default'] }} | {{ radarr['cf']['retags']['trash_id'] }} | + | [{{ radarr['cf']['scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#scene) | {{ radarr['cf']['scene']['trash_scores']['default'] }} | {{ radarr['cf']['scene']['trash_id'] }} | + | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ radarr['cf']['x265-no-hdrdv']['trash_scores']['default'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | + | [{{ radarr['cf']['hdr10plus-boost']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hdr10plus-boost) | {{ radarr['cf']['hdr10plus-boost']['trash_scores']['default'] }} | {{ radarr['cf']['hdr10plus-boost']['trash_id'] }} | + | [{{ radarr['cf']['dv-hdr10plus-boost']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dv-hdr10plus-boost) | {{ radarr['cf']['dv-hdr10plus-boost']['trash_scores']['default'] }} | {{ radarr['cf']['dv-hdr10plus-boost']['trash_id'] }} | + + --- Breakdown and Why diff --git a/includes/sqp/1-4k-qp-settings-sqp1.md b/includes/sqp/1-4k-qp-settings-sqp1.md index bcf3ac30f..b5a169ebc 100644 --- a/includes/sqp/1-4k-qp-settings-sqp1.md +++ b/includes/sqp/1-4k-qp-settings-sqp1.md @@ -2,15 +2,17 @@ - **Enable:** `Upgrades Allowed` - **Upgrade Until Quality:** `Bluray-2160p` -- **Minimum Custom Format Score:** `1000` (*1*) +- **Minimum Custom Format Score:** `1000` (_1_) - **Upgrade Until Custom Format Score:** `10000` -!!! info "(*1*) If you're limited to public indexers, don't have access to top-tier indexers, or are searching for content that is more rare, you might want to lower the `Minimum Custom Format Score` to 10." +!!! info "(_1_) If you're limited to public indexers, don't have access to top-tier indexers, or are searching for content that is more rare, you might want to lower the `Minimum Custom Format Score` to 10." ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/1-4k-qp-settings-sqp1.png) !!! warning + 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. diff --git a/includes/sqp/1-4k-select-qualities-sqp1.md b/includes/sqp/1-4k-select-qualities-sqp1.md index 288da0807..033eb9469 100644 --- a/includes/sqp/1-4k-select-qualities-sqp1.md +++ b/includes/sqp/1-4k-select-qualities-sqp1.md @@ -10,6 +10,7 @@ !!! warning "Make sure you put:
- The merged `WEB-2160p` above the merged `Bluray|WEB-1080p`
- The `Bluray-2160p` on the top of everything." !!! tip + If you use SQP-1 (1080p) as your main/second Radarr you want to remove the following qualities - The merged quality profile: `Bluray|WEB-1080p` diff --git a/includes/sqp/1-4k-streaming-services.md b/includes/sqp/1-4k-streaming-services.md index dd6b8b11e..1811d1f57 100644 --- a/includes/sqp/1-4k-streaming-services.md +++ b/includes/sqp/1-4k-streaming-services.md @@ -1,4 +1,5 @@ ??? abstract "Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------: | --------------------------------------- | | [{{ radarr['cf']['amzn']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#amzn) | 0 | {{ radarr['cf']['amzn']['trash_id'] }} | @@ -18,7 +19,8 @@ !!! warning "Scores marked with a :warning: warning :warning: are different to those used in the main public guide" - ------ + --- + Breakdown and Why - The reason why these Custom Formats have a score of `0` is because they are mainly used for the naming scheme and other variables should decide for movies if a certain release if preferred. diff --git a/includes/sqp/1-4k-why.md b/includes/sqp/1-4k-why.md index 76d201945..ca3871019 100644 --- a/includes/sqp/1-4k-why.md +++ b/includes/sqp/1-4k-why.md @@ -9,7 +9,7 @@ - You're using your smart tv app as media player device. - You want to grab streaming optimized releases. - ------ + --- BHDStudio does HQ 1080p/2160p Encodes with the following features @@ -24,9 +24,9 @@ ### Tested Devices and Results -We've tested this SQP on several devices and added the result in a [spreadsheet](https://docs.google.com/spreadsheets/d/1fhwK_PLBfJjL6w8p7tVj-qK4GA4vqMtvGegGlNwbSDo/){:target="_blank" rel="noopener noreferrer"} +We've tested this SQP on several devices and added the result in a [spreadsheet](https://docs.google.com/spreadsheets/d/1fhwK_PLBfJjL6w8p7tVj-qK4GA4vqMtvGegGlNwbSDo/){:target="\_blank" rel="noopener noreferrer"} -If you want to add any missing devices and players to the results please do so in our dedicated SQP-1 (2160p) [Discord](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"}. +If you want to add any missing devices and players to the results please do so in our dedicated SQP-1 (2160p) [Discord](https://trash-guides.info/discord){:target="\_blank" rel="noopener noreferrer"}. You will need to provide the following info. diff --git a/includes/sqp/1-4k-workflow.md b/includes/sqp/1-4k-workflow.md index 5dae50987..489572978 100644 --- a/includes/sqp/1-4k-workflow.md +++ b/includes/sqp/1-4k-workflow.md @@ -13,7 +13,7 @@ !!! info "2160p BHDStudio will trump any 2160p WEBDL regardless if it has DV HDR10 or only HDR10" - ------ + --- *Possible Variables* diff --git a/includes/sqp/1-cf-scoring.md b/includes/sqp/1-cf-scoring.md index 3d7bb924e..c1b8397eb 100644 --- a/includes/sqp/1-cf-scoring.md +++ b/includes/sqp/1-cf-scoring.md @@ -1,6 +1,7 @@ #### Custom Formats and scores ??? abstract "Audio - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------: | ------------------------------------------------- | | [{{ radarr['cf']['truehd-atmos']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#truehd-atmos) | :warning: {{ radarr['cf']['truehd-atmos']['trash_scores']['sqp-1-1080p'] }} :warning: | {{ radarr['cf']['truehd-atmos']['trash_id'] }} | @@ -23,6 +24,7 @@ !!! danger "The CF with `0` you can choose to add with a score of `0` or just don't add them.
The reason why we score them this low is to prevent transcoding as much as possible.
The reason why `DTS` and `DTS-ES` have a score of `0` is to make sure that you don't limit yourself too much." ??? abstract "Movie Versions - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------: | ------------------------------------------------------ | | [{{ radarr['cf']['remaster']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remaster) | {{ radarr['cf']['remaster']['trash_scores']['default'] }} | {{ radarr['cf']['remaster']['trash_id'] }} | @@ -33,12 +35,14 @@ | [{{ radarr['cf']['special-edition']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#special-edition) | {{ radarr['cf']['special-edition']['trash_scores']['default'] }} | {{ radarr['cf']['special-edition']['trash_id'] }} | !!! info + - If you prefer 1080p WEBDL with IMAX-E then add [{{ radarr['cf']['imax-enhanced']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax-enhanced) with the default scores. - The reason why we don't add [{{ radarr['cf']['imax']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#imax) is because BHDStudio didn't add IMAX to their filename before 2023-07-27. !!! danger "Adding `IMAX`/`IMAX Enhanced` will replace the BHDStudio release in most cases :warning:" ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------: | --------------------------------------------------- | | [{{ radarr['cf']['bhdstudio']['name'] }}](https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/cf/bhdstudio.json) | {{ radarr['cf']['bhdstudio']['trash_scores']['default'] }} | {{ radarr['cf']['bhdstudio']['trash_id'] }} | diff --git a/includes/sqp/1-qp-settings.md b/includes/sqp/1-qp-settings.md index a5259addd..902b5e00a 100644 --- a/includes/sqp/1-qp-settings.md +++ b/includes/sqp/1-qp-settings.md @@ -2,15 +2,17 @@ - **Enable:** `Upgrades Allowed` - **Upgrade Until Quality:** `Bluray|WEB-1080p` -- **Minimum Custom Format Score:** `1000` (*1*) +- **Minimum Custom Format Score:** `1000` (_1_) - **Upgrade Until Custom Format Score:** `10000` -!!! info "(*1*) If you're limited to public indexers, don't have access to top-tier indexers, or are searching for content that is more rare, you might want to lower the `Minimum Custom Format Score` to 10." +!!! info "(_1_) If you're limited to public indexers, don't have access to top-tier indexers, or are searching for content that is more rare, you might want to lower the `Minimum Custom Format Score` to 10." ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/1-qp-settings.png) !!! warning + 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. diff --git a/includes/sqp/1-streaming-services.md b/includes/sqp/1-streaming-services.md index d25423ecc..64fe4569a 100644 --- a/includes/sqp/1-streaming-services.md +++ b/includes/sqp/1-streaming-services.md @@ -1,4 +1,5 @@ ??? abstract "Streaming Services - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ----------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------: | --------------------------------------- | | [{{ radarr['cf']['amzn']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#amzn) | 0 | {{ radarr['cf']['amzn']['trash_id'] }} | @@ -18,7 +19,8 @@ !!! warning "Scores marked with a :warning: warning :warning: are different to those used in the main public guide" - ------ + --- + Breakdown and Why - The reason why these Custom Formats have a score of `0` is because they are mainly used for the naming scheme and other variables should decide for movies if a certain release if preferred. diff --git a/includes/sqp/1-why.md b/includes/sqp/1-why.md index 5217aaeb2..afe840039 100644 --- a/includes/sqp/1-why.md +++ b/includes/sqp/1-why.md @@ -8,7 +8,7 @@ - You want to grab streaming optimized releases. - Small sizes. - ------ + --- BHDStudio does HQ 1080p Encodes with the following features: diff --git a/includes/sqp/1-workflow.md b/includes/sqp/1-workflow.md index 3f2b82fdf..bbe60fb00 100644 --- a/includes/sqp/1-workflow.md +++ b/includes/sqp/1-workflow.md @@ -8,7 +8,7 @@ - When a 1080p BHDStudio is released it will download the BHDStudio release. - If no 1080p BHDStudio or 1080p WEBDL can be found (not existing or limited sources) it will download a 1080p Bluray encode (less or not streaming optimized). - ------ + --- *Possible Variables* diff --git a/includes/sqp/2-cf-scoring.md b/includes/sqp/2-cf-scoring.md index 379d6b8b8..e72f76d16 100644 --- a/includes/sqp/2-cf-scoring.md +++ b/includes/sqp/2-cf-scoring.md @@ -7,6 +7,7 @@ {! include-markdown "../../includes/cf/radarr-movie-versions-imaxe.md" !} ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------------------------: | ---------------------------------------------------- | | [{{ radarr['cf']['remux-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remux-tier-01) | {{ radarr['cf']['remux-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['remux-tier-01']['trash_id'] }} | diff --git a/includes/sqp/2-qp-settings.md b/includes/sqp/2-qp-settings.md index 50a02c4a9..80e6e4205 100644 --- a/includes/sqp/2-qp-settings.md +++ b/includes/sqp/2-qp-settings.md @@ -6,9 +6,11 @@ - **Upgrade Until Custom Format Score:** `10000` ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/2-qp-settings.png) !!! warning + 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. diff --git a/includes/sqp/2-workflow.md b/includes/sqp/2-workflow.md index 23d3cedcb..6d5c1f6d1 100644 --- a/includes/sqp/2-workflow.md +++ b/includes/sqp/2-workflow.md @@ -9,7 +9,7 @@ - When the HQ Encode is released it will upgrade to the HQ Encode. - When the IMAX-E is released it will upgrade to the IMAX-E. (*optional, see below*) - ------ + --- *Possible Variables* diff --git a/includes/sqp/3-qp-settings.md b/includes/sqp/3-qp-settings.md index 7c1aa136b..708dff52e 100644 --- a/includes/sqp/3-qp-settings.md +++ b/includes/sqp/3-qp-settings.md @@ -6,9 +6,11 @@ - **Upgrade Until Custom Format Score:** `10000` ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/3-qp-settings.png) !!! warning + 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. diff --git a/includes/sqp/3-workflow.md b/includes/sqp/3-workflow.md index c34a04459..dccb66f05 100644 --- a/includes/sqp/3-workflow.md +++ b/includes/sqp/3-workflow.md @@ -8,7 +8,7 @@ - When the 4k Remux is released it will upgrade to the 4k Remux. - When the IMAX-E is released it will upgrade to the IMAX-E. (*optional, see below*) - ------ + --- *Possible Variables* diff --git a/includes/sqp/4-qp-settings.md b/includes/sqp/4-qp-settings.md index a2f92530a..2ea4d3324 100644 --- a/includes/sqp/4-qp-settings.md +++ b/includes/sqp/4-qp-settings.md @@ -6,9 +6,11 @@ - **Upgrade Until Custom Format Score:** `10000` ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/4-qp-settings.png) !!! warning + 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. diff --git a/includes/sqp/4-workflow.md b/includes/sqp/4-workflow.md index 61e96c25e..d9d2d26c6 100644 --- a/includes/sqp/4-workflow.md +++ b/includes/sqp/4-workflow.md @@ -7,7 +7,7 @@ - When the 4k WEB-DL is released it will download the 4k WEB-DL. (streaming services) - When the IMAX-E is released it will upgrade to the IMAX-E. (*optional, see below*) - ------ + --- *Possible Variables* diff --git a/includes/sqp/5-cf-scoring.md b/includes/sqp/5-cf-scoring.md index 7c6081fe8..0ce9ae884 100644 --- a/includes/sqp/5-cf-scoring.md +++ b/includes/sqp/5-cf-scoring.md @@ -7,6 +7,7 @@ {! include-markdown "../../includes/cf/radarr-movie-versions-imaxe.md" !} ??? abstract "HQ Release Groups - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------------------------------------------: | ---------------------------------------------------- | | [{{ radarr['cf']['remux-tier-01']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#remux-tier-01) | {{ radarr['cf']['remux-tier-01']['trash_scores']['default'] }} | {{ radarr['cf']['remux-tier-01']['trash_id'] }} | diff --git a/includes/sqp/5-qp-settings.md b/includes/sqp/5-qp-settings.md index 13de6bddf..af2ac4612 100644 --- a/includes/sqp/5-qp-settings.md +++ b/includes/sqp/5-qp-settings.md @@ -6,9 +6,11 @@ - **Upgrade Until Custom Format Score:** `10000` ??? success "example - [Click to show/hide]" + ![!Quality Profile Settings](/SQP/images/5-qp-settings.png) !!! warning + 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. diff --git a/includes/sqp/5-workflow.md b/includes/sqp/5-workflow.md index 2d3fdcc01..54995c60b 100644 --- a/includes/sqp/5-workflow.md +++ b/includes/sqp/5-workflow.md @@ -10,7 +10,7 @@ `1080p-Remux` => `1080p-WEBDL DV/HDR` => `2160p-WEBDL` => `2160p-Encodes` => `2160p-WEBDL IMAX-E` - ------ + --- *Possible Variables* diff --git a/includes/sqp/hd-radarr-optional.md b/includes/sqp/hd-radarr-optional.md index fc182652e..663a055e4 100644 --- a/includes/sqp/hd-radarr-optional.md +++ b/includes/sqp/hd-radarr-optional.md @@ -1,4 +1,5 @@ ??? abstract "Optional - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------: | ------------------------------------------------- | | [{{ radarr['cf']['bad-dual-groups']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bad-dual-groups) | {{ radarr['cf']['bad-dual-groups']['trash_scores']['default'] }} | {{ radarr['cf']['bad-dual-groups']['trash_id'] }} | @@ -8,7 +9,7 @@ | [{{ radarr['cf']['retags']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#retags) | {{ radarr['cf']['retags']['trash_scores']['default'] }} | {{ radarr['cf']['retags']['trash_id'] }} | | [{{ radarr['cf']['scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#scene) | {{ radarr['cf']['scene']['trash_scores']['default'] }} | {{ radarr['cf']['scene']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/sqp/hd-radarr-resolution.md b/includes/sqp/hd-radarr-resolution.md index ed78e5d94..7cf94d57c 100644 --- a/includes/sqp/hd-radarr-resolution.md +++ b/includes/sqp/hd-radarr-resolution.md @@ -1,4 +1,5 @@ ??? abstract "Resolution - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------: | --------------------------------------- | | [{{ radarr['cf']['1080p']['name'] }}](https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/cf/1080p.json) | {{ radarr['cf']['1080p']['trash_scores']['default'] }} | {{ radarr['cf']['1080p']['trash_id'] }} | diff --git a/includes/sqp/important-notice.md b/includes/sqp/important-notice.md index c99badb4d..6ee26c82a 100644 --- a/includes/sqp/important-notice.md +++ b/includes/sqp/important-notice.md @@ -1,6 +1,7 @@ ## Important Notice !!! warning "Important Notice" + All the used scores and combination of Custom Formats in this Guide are tested to get the desired results and prevent download loops as much as possible. From experience most of the time when people change scores or leave out certain CF that work together they end up with undesired results. diff --git a/includes/sqp/merge-qualities.md b/includes/sqp/merge-qualities.md index 8bfc1274f..ebb63db71 100644 --- a/includes/sqp/merge-qualities.md +++ b/includes/sqp/merge-qualities.md @@ -4,4 +4,4 @@ First we're going to merge a couple of qualities. If you don't know how to merge qualities take a look at the following Guide: -=> [How to Merge Quality](/Radarr/Tips/Merge-quality/){:target="_blank" rel="noopener noreferrer"} +=> [How to Merge Quality](/Radarr/Tips/Merge-quality/){:target="\_blank" rel="noopener noreferrer"} diff --git a/includes/sqp/radarr-unwanted-sqp1.md b/includes/sqp/radarr-unwanted-sqp1.md index 34b92d29c..d9f535b77 100644 --- a/includes/sqp/radarr-unwanted-sqp1.md +++ b/includes/sqp/radarr-unwanted-sqp1.md @@ -1,4 +1,5 @@ ??? abstract "Unwanted - [Click to show/hide]" + | Custom Format | Score | Trash ID | | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | @@ -7,9 +8,9 @@ | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | - | [{{ radarr['cf']['10bit']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#10bit) | {{ radarr['cf']['10bit']['trash_scores']['sqp-1-1080p'] }} | {{ radarr['cf']['10bit']['trash_id'] }} | + | [{{ radarr['cf']['10bit']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#10bit) | {{ radarr['cf']['10bit']['trash_scores']['sqp-1-1080p'] }} | {{ radarr['cf']['10bit']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/sqp/radarr-unwanted-uhd-sqp1.md b/includes/sqp/radarr-unwanted-uhd-sqp1.md index 4359cad95..fca5ddec2 100644 --- a/includes/sqp/radarr-unwanted-uhd-sqp1.md +++ b/includes/sqp/radarr-unwanted-uhd-sqp1.md @@ -1,16 +1,17 @@ ??? abstract "Unwanted - [Click to show/hide]" - | Custom Format | Score | Trash ID | - | -------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | - | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | - | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_scores']['default'] }} | {{ radarr['cf']['lq']['trash_id'] }} | + + | Custom Format | Score | Trash ID | + | --------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------: | -------------------------------------------------- | + | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_scores']['default'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | + | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_scores']['default'] }} | {{ radarr['cf']['lq']['trash_id'] }} | | [{{ radarr['cf']['lq-release-title']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq-release-title) | {{ radarr['cf']['lq-release-title']['trash_scores']['default'] }} | {{ radarr['cf']['lq-release-title']['trash_id'] }} | - | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | - | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | - | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | - | [{{ radarr['cf']['10bit']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#10bit) | {{ radarr['cf']['10bit']['trash_scores']['sqp-1-2160p'] }} | {{ radarr['cf']['10bit']['trash_id'] }} | + | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_scores']['default'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | + | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_scores']['default'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_scores']['default'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | + | [{{ radarr['cf']['extras']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#extras) | {{ radarr['cf']['extras']['trash_scores']['default'] }} | {{ radarr['cf']['extras']['trash_id'] }} | + | [{{ radarr['cf']['10bit']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#10bit) | {{ radarr['cf']['10bit']['trash_scores']['sqp-1-2160p'] }} | {{ radarr['cf']['10bit']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/sqp/sqp-uhd-radarr-optional.md b/includes/sqp/sqp-uhd-radarr-optional.md index d4f7b5989..ea40453fd 100644 --- a/includes/sqp/sqp-uhd-radarr-optional.md +++ b/includes/sqp/sqp-uhd-radarr-optional.md @@ -12,7 +12,7 @@ | [{{ radarr['cf']['scene']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#scene) | {{ radarr['cf']['scene']['trash_scores']['default'] }} | {{ radarr['cf']['scene']['trash_id'] }} | | [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv) :warning: | {{ radarr['cf']['x265-no-hdrdv']['trash_scores']['default'] }} | {{ radarr['cf']['x265-no-hdrdv']['trash_id'] }} | - ------ + --- Breakdown and Why diff --git a/includes/sqp/uhd-radarr-misc.md b/includes/sqp/uhd-radarr-misc.md index 1bc8f970a..771da5923 100644 --- a/includes/sqp/uhd-radarr-misc.md +++ b/includes/sqp/uhd-radarr-misc.md @@ -1,4 +1,5 @@ ??? abstract "Misc - [Click to show/hide]" + | Custom Format | Score | Trash ID | | -------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------: | ----------------------------------------------- | | [{{ radarr['cf']['repack-proper']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#repackproper) | {{ radarr['cf']['repack-proper']['trash_scores']['default'] }} | {{ radarr['cf']['repack-proper']['trash_id'] }} | @@ -7,7 +8,8 @@ !!! warning "Scores marked with a :warning: warning :warning: are different to those used in the main guide" - ------ + --- + Breakdown and Why - `x264` has a score of `-10000` because we only want the HDR/DV versions of the `WEBDL-1080p` diff --git a/includes/sqp/uhd-radarr-resolution.md b/includes/sqp/uhd-radarr-resolution.md index 548b7482b..88738e7d8 100644 --- a/includes/sqp/uhd-radarr-resolution.md +++ b/includes/sqp/uhd-radarr-resolution.md @@ -1,4 +1,5 @@ ??? abstract "Resolution - [Click to show/hide]" + | Custom Format | Score | Trash ID | | ---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------: | --------------------------------------- | | [{{ radarr['cf']['1080p']['name'] }}](https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/cf/1080p.json) | {{ radarr['cf']['1080p']['trash_scores']['default'] }} | {{ radarr['cf']['1080p']['trash_id'] }} | diff --git a/includes/sqp/wip.md b/includes/sqp/wip.md index 3b82cf395..194f9ba12 100644 --- a/includes/sqp/wip.md +++ b/includes/sqp/wip.md @@ -1,4 +1,5 @@ !!! info + Keep in mind this SQP is a WIP, Changes are done when needed. It uses Custom Formats and specific needed settings that probably will never make it to the guide, being the guide is used by the masses and what's used here is made for specific needs. diff --git a/includes/support.md b/includes/support.md index d2cb0a334..92704bcef 100644 --- a/includes/support.md +++ b/includes/support.md @@ -1,7 +1,7 @@ - ------- +--- !!! question "Questions or Suggestions?" + If you have questions or suggestions click the chat badge to join the Discord Support Channel where you can ask your questions directly and get live support. [![Discord chat](https://img.shields.io/discord/492590071455940612?style=for-the-badge&color=4051B5&logo=discord){ .off-glb }](https://trash-guides.info/discord){:target="_blank" rel="noopener noreferrer"} diff --git a/overrides/main.html b/overrides/main.html index 3788c3d2d..fe188f8c9 100644 --- a/overrides/main.html +++ b/overrides/main.html @@ -1,12 +1,17 @@ {% extends "base.html" %} {% block content %} - {{ super() }} - +{{ super() }} + {% endblock %} -