chore(guides): remove sonarr v3 guides

pull/1909/head
TRaSH 2 weeks ago
parent 2865715dde
commit 4afc8d4340

@ -9,7 +9,4 @@ nav:
- How to setup Quality Profiles (French): sonarr-setup-quality-profiles-french-en.md
- Collection of Custom Formats: sonarr-collection-of-custom-formats.md
- Remote Path Mappings explained: Sonarr-remote-path-mapping.md
- Sonarr v3 (Legacy):
- Release Profile RegEx (WEB-DL): Sonarr-Release-Profile-RegEx.md
- Release Profile RegEx (Anime): Sonarr-Release-Profile-RegEx-Anime.md
- Tips

@ -1,648 +0,0 @@
{! include-markdown "../../includes/sonarrv3-eol.md" !}
# Release Profile RegEx (Anime)
!!! note
This guide is created and maintained by [Visorask/Visorak](https://github.com/Visorask)
It's recommended to run two Sonarr instances. One for Anime and one for normal tv shows, or you can make use of tags.
Being that release profiles are global without the use of a tag.
## Dual-Audio Regex
Having tested most of these settings, they work pretty well, but Anime is a fickle beast to toy with so be warned.
---
## Anime Delete
??? tip "If you have issues with extra files being downloaded like NCED or NCOP"
If you have issues with Sonarr picking up a bunch of:
- NCED
- NCOP
- Music Videos
- OP's
Then this script (linux based only) will delete these files and get rid of them and you don't have to worry about them cluttering up your Auto or Manual import process.
```bash
#!/usr/bin/env bash
# Set the following location to your completed download location for Anime.
# Usually one of the following paths:
# Dockers => /data/{usenet|torrents}/anime
# Cloudbox => /mnt/local/downloads/nzbs/nzbget/completed/sonarranime
location="/your/download/path/here"
find $location -type f \( -iname "*op[0-9]*" -o -iname "*nced*" -o -iname "*ncop*" -o -iname "*music video*" \) -exec rm -rf {} \;
```
This script will be called through a custom connection in Sonarr.
1. Copy the contents of the script into whatever filepath Sonarr has access to (`/config/app/` or `/appdata/sonarr/scripts`)
1. Edit the `location="/your/download/path/here"` and make sure it's in quotes.
1. Then save it and chmod +x the script.
1. In Sonarr go to `Settings` => `Connect` => Click on the `+` Symbol => and select `Custom Script`
1. Change Name to whatever you like.
1. Select `On Grab` and `On Import`.
1. Click the Folder icon or type in the path to the script you chose earlier.
![!rpa-customscript](images/rpa-customscript.png)
Now when you download or import any files the script will run and clear out those files that you most likely won't use and if you want them well this script isn't for you.
---
## Media Management
!!! note
There are a few settings which make life a lot easier when tracking down and keeping certain information for your Anime and with tweaks to make it work better with [HamaAgent](https://github.com/ZeroQI/Hama.bundle){:target="_blank" rel="noopener noreferrer"} for Plex.
### Suggested naming scheme
For this I used the [Sonarr Recommended naming scheme](/Sonarr/Sonarr-recommended-naming-scheme/#anime-episode-format){:target="_blank" rel="noopener noreferrer"} with only a small change for a formatting error to be fixed and the `Series Folder Format` for easier matching.
#### Anime Episode Format
Has all necessary information and a little extra if you needed to rebuild.
```bash
{Series TitleYear} - S{season:00}E{episode:00} - {absolute:000} - {Episode CleanTitle} [{Preferred Words }{Quality Full}]{[MediaInfo VideoDynamicRange]}[{MediaInfo VideoBitDepth}bit]{[MediaInfo VideoCodec]}[{Mediainfo AudioCodec} { Mediainfo AudioChannels}]{MediaInfo AudioLanguages}{-Release Group}
```
??? abstract "RESULTS:"
Single Episode:
`The Series Title! (2010) - S01E01 - 001 - Episode Title 1 [AMZN WEBDL-1080p v2][HDR][10bit][x264][DTS 5.1][FLAC][JA]-RlsGrp`
Multi Episode:
`The Series Title! (2010) - S01E01-E02-E03 - 001-002-003 - Episode Title [AMZN WEBDL-1080p v2][HDR][10bit][x264][DTS 5.1][FLAC][JA]-RlsGrp`
#### Series Folder Format
Adding year back in with tvdb id allows matching to be correct. Thanks salty.
```bash
{Series TitleYear} [tvdb-{TvdbId}]
```
RESULT:
`The Series Title! (2010) [tvdb-12345]`
#### Season Folder Format
The only one real option to use in my opinion.
```bash
Season {season:00}
```
RESULT:
`Season 01`
#### Multi-Episode Style
```bash
Prefixed Range
```
RESULTS:
![results](images/results.png)
??? success "Example"
![!Example image of above](images/rpa-mediamanage.png)
---
## Quality Profile
We need to add `HDTV-1080p` and `Bluray-1080p` into the same group as `WEBDL-1080p` and `WEBRip-1080p` so that it will download correctly and not upgrade past HDTV-1080P if Preferred Words does not allow it.
![!rpa-quality-profile-group](images/rpa-quality-profile-group.png)
---
## Indexers
We need to add the Anime Categories to our indexers otherwise this all won't work very well.
??? success "Example"
1. We need to open `Settings -> Indexers`
1. Select the Indexer(s) you would like to use for `Anime`
1. Select the dropdown for `Anime Categories`.
![!rpa-indexer-1](images/rpa-indexer-1.png)
1. Select the `Anime` category.
![!rpa-indexer-2](images/rpa-indexer-2.png)
1. Click outside the pop-up modal but inside the `Add Indexer` modal.
![!rpa-indexer-3](images/rpa-indexer-3.png)
---
!!! note
Check mark `Include Preferred when Renaming` where applicable and add `{Preferred Words}` to your renaming scheme else you could get a download loop issues!!!
## Release Profiles
!!! note
We're going to make use of **2** separate release profiles.
### First Release Profile
<!-- [trash_id: 31f4dd7b08bc8a43099eed604fd8acf6] -->
!!! tip
**DO** Check mark `Include Preferred when Renaming` on this release profile.
![!rpa-release-sources-1](images/rpa-release-sources-1.png)
#### Multi-Audio
Add this to your Preferred with a score of **[500]**
```bash
/(multi[ ._-]?audio)/i
```
#### Dual-Audio
Add this to your Preferred with a score of **[0]**. This is for renames only and that's why it is at **0**. It is also added in the second profile. This one is to ensure that the preferred words get added.
```bash
/(dual[ ._-]?audio)/i
```
#### Optional (uncut|unrated|uncensored)
Add this to your Preferred with a score of **[100]/[-10000]**
If you would like it to be priority then set to **100**. If you do not want uncensored set it to **-10000**. If you don't care either way just leave it out. The reasoning behind only **100** is so that it doesn't trump other release further up in the chain, this way it will trump maybe a couple releases, but not more. And **-10000** to hopefully put it at the bottom of any tier list if you don't want it.
```bash
/(uncut|unrated|uncensored|\b(AT[-_. ]?X)\b)/i
```
!!! note
When done it should look something like this:
![!rpa-release-profile-1](images/rpa-release-profile-1.png)
---
### Second Release Profile
<!-- [trash_id: c3a45e86f61f3a801428d1538918e41f] -->
!!! warning
**DO NOT** Check mark `Include Preferred when Renaming`
![!rpa-release-sources-2](images/rpa-release-sources-2.png)
#### Must Not Contain
The reason most of these are added is due to their shitty quality or just in general are not as good as other stuff that is out there. This can be tweaked as needed. Let me know if you run into any issues here. You should be able to just copy paste these in one go. If there is a reason something shouldn't be here let me know and your logic and I will be open to adjusting.
!!! tip
If you would like `dub` releases then remove the last 2 lines and do not add them.
```bash
/(\[EMBER\]|-EMBER\b|DaddySubs)/i,
/(BDMV|M2TS|\bSSA\b|\bVOSTFR\b|\bAbemaTV\b)/i,
/(CuaP|PnPSubs|ICEBLUE|SLAX|U3-Web)/i,
/(Raws-Maji|\bKRP\b|M@nI|Kanjouteki|PuyaSubs)/i,
/\b(Beatrice|ohys|Kawaiika|neko|daddy)[ ._-]?(raws)\b/i,
/\b(LowPower|Scryous)[ ._-]?(raws)\b/i,
/\b(NS|AREY|BDMV|BDVD|BJX|DKB|DP|TnF)\b/i,
/(Amb3r|DsunS|ExREN|\$tore-Chill)/i,
/(\[Hatsuyuki\]|-Hatsuyuki\b|\[Hitoku\]|-Hitoki\b)/i,
/(\[Foxtrot\]|-Foxtrot\b|HollowRoxas|\bMGD\b)/i,
/(JacobSwaggedUp|KEKMASTERS|\[Mites\]|-Mites\b)/i,
/(neoHEVC|Pantsu|\[Pao\]|-Pao\b|Plex Friendly)/i,
/(Rando235|RandomRemux|Reaktor|RightShiftBy2)/i,
/(\bSHFS\b|StrayGods|\bUQW\b|Yabai_Desu_Ne)/i,
/(YakuboEncodes|\b(WtF[ ._-]?Anime)\b)/i,
/((funi|eng(lish)?)_?dub|\bdub(bed)?\b)/i,
/(Golumpa|torenter69|KamiFS|KaiDubs)/i
```
#### Preferred
!!! note
Two lines in one grouping is just there for readability purposes but achieves the same result and score.
---
Add this to your Preferred with a score of **[501]**
!!! note
This is set to **501** so that it may jump one tier if need be, but not more.
```bash
/dual[ ._-]?audio|EN\+JA|JA\+EN/i
```
---
!!! tip
These next few are optional, but they are here to move releases up over lower tiers of `1080/720p` or `WEB-DL/Blu-Ray`. Will add another note like this to end the optional section.
---
Add this to your Preferred with a score of **[100]**
!!! note
We are adding this as **100** so that any unknown `Blu-Ray` can jump tiers inside the Subs categories but not interfere with any tiers above.
```bash
/\b(?:(Blu-?Ray|BDMux|BD(?!$))|(B[DR]Rip))(?:\b|$|[ .])/ix
```
---
Add this to your Preferred with a score of **[15]**
```bash
/\b(WEB[-_. ]?DL|WebHD|[. ]WEB[. ](?:[xh]26[45]|DDP?5[. ]1)|[. ](?-i:WEB)$|\d+0p(?:WEB-DLMux|\b\s\/\sWEB\s\/\s\b))/ix
```
---
Add this to your Preferred with a score of **[10]**
```bash
/(Web-?Rip|WEBMux)/ix
```
---
Add this to your Preferred with a score of **[5]**
```bash
/\b(?:(1080p|1920x1080|1440p|FHD|1080i|4kto1080p))\b/i
```
!!! tip
This is the end of the optional section.
Add this to your Preferred with a score of **[4000]**
BluRay-Remux / Dual-Audio / 1st Tier
```bash
/(deanzel|\bZR\b|\bCTR\b|\bSCY\b|\bMK\b|TTGA)/i
```
```bash
/(\bShir\b|LostYears|BluDragon|KAWAiREMUX)/i
```
```bash
/(\[AC\]|-AC$|ShadyCrab|Rasetsu|Raizel|Dragon-Releases)/i
```
```bash
/(\[Spark\]|-Spark\b|\bREVO\b|\bSRLS\b|ANThELIa)/i
```
```bash
/(\[Vanilla\]|-Vanilla\b|\bAP\b)/i
```
---
Add this to your Preferred with a score of **[3750]**
BluRay / Dual-Audio / Special (Releases they have are in between below releases and remuxes above.)
```bash
/(E[.-]N[.-]D)/i
```
---
Add this to your Preferred with a score of **[3500]**
BluRay / Dual-Audio / 1st Tier
```bash
/(\bHAiKU\b|Exiled-Destiny|\b(E-D)\b|Koten[ ._-]Gars)/i
```
```bash
/(\[GHOST\]|-GHOST\b|\[NPC\]|-NPC\b|\bCBM\b)/i
```
```bash
/(\bKH\b|\bCBT\b|\[naiyas\]|-naiyas\b|ShowY|Kametsu|\bPn8\b|Hark0N)/i
```
---
Add this to your Preferred with a score of **[3000]**
BluRay / Dual-Audio / Scene|P2P Groups
```bash
/(\bDHD\b|RedBlade|TENEIGHTY|WaLMaRT)/i
```
```bash
/(\bBMF\b|\[STRiFE\]|-STRiFE\b)/i
```
```bash
/(MKVULTRA|iAHD|ANiHLS)/i
```
---
Add this to your Preferred with a score of **[2500]**
BluRay / Dual-Audio / 2ndd Tier
```bash
/(\[YURASUKA\]|-YURASUKA\b|karios|Arukoru)/i
```
```bash
/(\bRH\b|\[Prof\]|-Prof\b)/i
```
---
Add this to your Preferred with a score of **[2000]**
WebSource / Dual|Multi-Audio
```bash
/(DragsterPS)/i
```
---
Add this to your Preferred with a score of **[1500]**
WebSource / Dual-Audio
```bash
/(xPearse|\bMCR\b|\bKS\b|KiyoshiStar)/i
```
---
Add this to your Preferred with a score of **[1000]**
DVD / Dual-Audio
```bash
/(\b(A-L)\b)/i
```
---
Add this to your Preferred with a score of **[300]**
Subs with multi such as German, French , Spanish, Italian, Russian, Arabic, Portuguese and English
```bash
/(Erai-raws|KAN3D2M)/i
```
---
Add this to your Preferred with a score of **[250]**
Subs
```bash
/(HorribleSubs|SubsPlease|SallySubs)/i
```
---
Add this to your Preferred with a score of **[200]**
Subs 2nd Tier
```bash
/(\[Mysteria\]|-Mysteria\b|Asenshi)/i
```
```bash
/(\[meta\]|-meta\b|BlueLobster)/i
```
---
Add this to your Preferred with a score of **[150]**
Subs 3rd Tier
```bash
/(\bGJM\b|kBaraka)/i
```
---
Add this to your Preferred with a score of **[100]**
FanSubs 1st Tier
```bash
/(\bCH\b|\bFFF\b|Licca|Soldado|SNSbu)/i
```
```bash
/(Coalgirls|BlurayDesuYo|DameDesuYo|\bPAS\b)/i
```
---
Add this to your Preferred with a score of **[50]**
FanSubs 2nd Tier
```bash
/(\[Orphan\]|-Orphan\b|\[Yabai\]|-Yabai\b|\bNii-sama\b)/i
```
```bash
/(\[Doki\]|-Doki\b|\[Chihiro\]|-Chihiro\b|Final8)/i
```
```bash
/(\[tenshi\]|-tenshi\b|SHiN-gx)/i
```
---
Add this to your Preferred with a score of **[25]**
FanSubs 3rd Tier
```bash
/(AkihitoSubs|\bASW\b|Commie)/i
```
---
!!! note
These are extra parameters that can help and are not needed but are nice to have. They are set low mainly to supercede themselves and not interfere with other releases.
Add this to your Preferred with a score of **[1]**
Adds Hi10|Hi10p into a match. Prefers this over some erroneous matches.
```bash
/(10.?bit|hi10p)/i
```
---
Add this to your Preferred with a score of **[1]**
Adds version due to anime groups sometimes fixing issues with their releases.
```bash
/\b(v2)\b/i
```
---
Add this to your Preferred with a score of **[2]**
```bash
/\b(v3)\b/i
```
---
Add this to your Preferred with a score of **[3]**
```bash
/\b(v4)\b/i
```
---
!!! note
This section can be controversial but most of these releases are micro/mini encodes or crappy quality. I personally add them into the do not want section but I will leave them here with negative values so you can still grab them if all else fails.
Add this to your Preferred with a score of **[-10000]**
Sub-Par Releases 1st Tier (Re-encoded to crap or really small filesizes) (Little less worse than the rest)
```bash
/(\[Judas\]|-Judas|\[Cleo\]|-Cleo)/i
```
```bash
/(AnimeRG|bonkai77|URANiME)/i
```
---
Add this to your Preferred with a score of **[-15000]**
Sub-Par Releases 2nd Tier (Re-encoded to crap or really small filesizes) (Seperated onto separate lines for readability)
```bash
/(\[Pixel\]|-Pixel\b\[EDGE\]|-EDGE\b|\[Ranger\]|-Ranger\b)/i
```
```bash
/(SpaceFish|DeadFish|\bDB\b|Man\.K|\bHR\b)/i
```
```bash
/(BakedFish|N[eo][wo]b[ ._-]?Subs|\bAnime[ .]Time\b)/i
```
```bash
/(AnimeKaizoku|\[Kaizoku\]|-Kaizoku\b|\bCBB\b|phazer11)/i
```
```bash
/(iPUNISHER|MiniTheatre|MiniFreeza|Mr\.Deadpool)/i
```
```bash
/(NemDiggers|Project-gxs|youshikibi)/i
```
```bash
/(\bMD\b|Pog42|mdcx)/i
```
```bash
/(A-Destiny|TOPKEK|\bUwU\b|DARKFLiX)/i
```
```bash
/(\[Maximus\]|-Maximus\b|\[224\]|-224\b)/i
```
```bash
/(\[Harunatsu\]|-Harunatsu\b)/i
```
```bash
/(\[Davinci\]|-Davinci\b)/i
```
??? tip "If you would like the above to be in DO NOT WANT in an easy format here it is."
```bash
/(\[Pixel\]|-Pixel\b\[EDGE\]|-EDGE\b|\[Ranger\]|-Ranger\b)/i,
/(SpaceFish|DeadFish|\bDB\b|Man\.K|\bHR\b)/i,
/(BakedFish|N[eo][wo]b[ ._-]?Subs|\bAnime Time\b)/i,
/(AnimeKaizoku|Kaizoku|\bCBB\b|phazer11)/i,
/(iPUNISHER|MiniTheatre|MiniFreeza|Mr\.Deadpool)/i,
/(NemDiggers|Project-gxs|youshikibi)/i,
/(\bMD\b|Pog42|mdcx)/i,
/(A-Destiny|TOPKEK|\bUwU\b|DARKFLiX)/i,
/(\[Maximus\]|-Maximus\b|\[224\]|-224\b)/i,
/(\[Harunatsu\]|-Harunatsu\b)/i,
/(\[Davinci\]|-Davinci\b)/i
```
!!! note
When done it should look something like this:
![!rpa-release-profile-2](images/rpa-release-profile-2.png)
---
### Completed
When completed your Release Profiles should look like this:
![!rpa-release-profile-3](images/rpa-release-profile-3.png)
### Acknowledgements
Most of my information and knowledge came from:
- Kaiser (Guidance on anime groups)
- rg9400 (Guidance on regex fixes, anime groups and general knowledge share.)
- Drazzilb (Guidance on regex fixes, anime groups and general knowledge share.)
- [TRaSH](https://trash-guides.info/) (For allowing me to utilize his website for my guide and general knowledge share.)
Thanks a bunch!!
{! include-markdown "../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->

@ -1,674 +0,0 @@
{! include-markdown "../../includes/sonarrv3-eol.md" !}
# Release Profile RegEx (WEB-DL)
Sonarr V3 has a great feature called Release Profile.
With this option you can fine tune your preference.
The Release profile that we're going to use for this example is mainly to prefer P2P releases over Scene releases. (Scene releases are still being downloaded, but replaced once an upgrade is found.)
!!! danger ""
**If you don't care about quality then stop reading and see if the other tutorials are helpful for you.**
??? question "FAQ - [Click to show/hide]"
## FAQ
**Q: Why do you only have a release profile for WEB-DL?**
A: I only do WEB-DL my self for TV shows because in my opinion WEB-DL is the sweet spot between quality and size and you often don't see big differences anyway for TV shows. (Except for shows like GOT, Vikings, etc)
**Q: Why do you prefer P2P groups over scene groups?**
A: Scene groups always release in a rush to bring it out as fast as possible.
So I noticed often that I got Repacks/Proper releases from them or from different groups and quality.
P2P releases are a bit smarter and work sort of together by not doing the same release.
Also, I noticed that with some scene releases the 5.1 audio was stripped out or converted to AAC audio.
In my opinion the P2P releases are of better quality.
There's one scene group that does bring out quality releases `-deflate/-inflate`.
**Q: Why do I see so many repacks/propers of Amazon WEB-DLs lately?**
A: A large portion of Amazon WEB-DLs in the last week have only had 192Kbps DD+5.1, because that's all Amazon made available initially.
The proper 640Kbps DD+5.1 audio might appear a few hours later or a few months, but when they get updated, the episodes will be REPACKED.
**Q: Why did you remove all the scene groups?**
A: I decided to redo the Release Profile to make it easier for me and the end user to update/manage the Release Profile. I decided not to add the scene groups anymore (and also removing the current ones). Why? Lately I noticed a lot of popup scene releases meaning we need to update often.
With this it also means all scene and (yet) unknown groups will be getting a score of `0` and not `-50`.
I will still keep a eye on them and add the Low Quality Groups to the `-100` score and when I find a new P2P group I will add them, resulting in less updates and a more accurate upgrade.
------
## Basics
This guide is based on WEBDL (Read the [FAQ](#faq) why) that's why we're going to create a quality profile based on WEBDL.
`Settings` => `Profiles`
![!cf-settings-profiles](images/cf-settings-profiles.png)
Select the profile that you want to use/prefer.
![!cf-quality-profiles](images/cf-quality-profiles.png)
![Select quality](images/rp-profile-selected.png)
!!! tip
Starting from 2010 you will be able to find almost anything as WEBDL,
2000-2010 you will only find a few shows as WEBDL in that case you might want to enable `HDTV` and or `720p`.
If you want 2160p WEBDL then choose 2160p WEBDL and add the HDR and/or DV regex, 2160p without HDR/DV has no real benefits !!!
------
{! include-markdown "../../includes/merge-quality/sonarr-current-logic.md" !}
------
## Propers and Repacks
First we're need to make sure a P2P release isn't being replaced by a Scene Repack/Proper release!
![!rp-settings-media-management-proper](images/rp-settings-media-management-proper.png)
Go to `Settings` => `Media Management`
We´re going to set it to `Do not Prefer`.
Then we navigate to `Settings` => `Profiles` and click the plus sign.
![!rp-settings-profiles](images/rp-settings-profiles.png)
You will get a popup screen that will look like this:
![!rp-release-profile](images/rp-release-profile.png)
1. `Must Contain` => add words that the release name **MUST HAVE!**
1. `Must Not Contain` => add words that the release name **MUST NOT HAVE OR IT WILL BE REJECTED!**
1. `Preferred` => add words you prefer with a certain score. The release will be preferred based on each term's score.
1. `Include Preferred when Renaming` => When you add `{Preferred Words}` to your renaming scheme it will add this info.
1. `Indexers` => Specify what indexer the profile applies to.
1. `Tags` => create a tag so this is only used by shows that you give this tag to or else it's global.
------
!!! info
The Number between the **[**brackets**]** in the following release profiles are the scores the release name will get during an automatic and manual search and with the use of the scores some releases will be preferred over others and even upgraded.
The Number between **(**brackets**)** in the following release profiles are referring to the location where you should add this regex in the release profile corresponding the screenshot above.
!!! warning "We're going to make use of four separate release profiles."
------
## Profile 1
<!-- [trash_id: a0e7774a471e041d4f1111e0690244d0] -->
### Release Sources (Streaming Service)
!!! note
Check mark `Include Preferred when Renaming` and add `{Preferred Words}` to your renaming scheme or else you could get download loop issues!!!
What it does:
When enabled, the block with the [Release Source (Streaming Service)](#release-source-streaming-service) in it are then added to the file name which fixes any loops due to Sonarr seeing a new NF rip when an AMZN rip is found.
Probably doesnt happen if cutoff is met, but for anything that is unmet or any forced searches it results in a loop because NF is not in Sonarrs copy so it upgrades, and loops.
Enabling the include in preferred words for AMZN and adding that to the file name fixes that.
Example of a naming scheme for series:
Can be found [HERE](/Sonarr/Sonarr-recommended-naming-scheme/){:target="_blank" rel="noopener noreferrer"}
Add this to your `Preferred (3)` with a score of [100]
```bash
/\b(atvp|aptv|Apple TV\+)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(dsnp|dsny|disney|Disney\+)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
Add this to your `Preferred (3)` with a score of [90]
```bash
/\b((?<!hbo[ ._-])max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
Add this to your `Preferred (3)` with a score of [80]
```bash
/\b(hmax|hbom|hbo[ ._-]?max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(qibi|quibi)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
Add this to your `Preferred (3)` with a score of [70]
```bash
/\b(amzn|amazon)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
Add this to your `Preferred (3)` with a score of [60]
```bash
/\b(nf|netflix)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(pcok|Peacock TV)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(pmtp)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(stan)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
Add this to your `Preferred (3)` with a score of [50]
```bash
/\b(cc)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(crav(e)?)\b[ ._-]web[ ._-]?(dl|rip)?\b/i
```
```bash
/\b(dcu)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(hbo)(?![ ._-]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(hulu)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(it)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(nlz)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(red)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(sho|showtime)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(vdl)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(ovid)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(fod)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(tver)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(u-next)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(ALL4)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash
/\b(4OD)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
!!! danger "Caution"
Don't forget to click on `SAVE` after you've added everything you want to the release profile :bangbang:
??? success "example - [Click to show/hide]"
!!! 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 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 (with the copy paste/option at the end).
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
[![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"}
![!rp-release-sources](images/rp-release-sources.png)
------
## Profile 2
<!-- [trash_id: 37cf8cdd57c8fb4a8b68f36e00e40de2] -->
### P2P Groups + Repack/Proper
!!! warning "DO NOT Check mark `Include Preferred when Renaming` :bangbang:"
Add this to your `Preferred (3)` with a score of [1700]
```bash
/(-ABBIE|-AJP69|-APEX|-CasStudio|CRFW|-CtrlHD|-FLUX|\bHONE|-KiNGS|-monkee|NOSiViD|-NTb|-NTG|-PAXA|-PEXA|-QOQ|-RTN|-SiC|T6D|-TOMMY|-ViSUM|-XEPA)\b/i
```
Add this to your `Preferred (3)` with a score of [1650]
```bash
/(3CTWeB|BLUTONiUM|-BTW|-Chotab|-Cinefeel|-CiT|-CMRG|Coo7|-dB|-DEEP|-END|-ETHiCS|-FC|-Flights|-GNOME|-iJP|-iKA|-iT00NZ|-JETIX|-KHN|-KiMCHI|-LAZY|-MZABI|-NPMS|-NYH|-orbitron|playWEB|PSiG|-ROCCaT|RTFM|-SA89|-SDCC|-SIGMA|-SMURF|-SPiRiT|-TEPES|-TVSmash|-WELP)\b/i
```
Add this to your `Preferred (3)` with a score of [1600]
```bash
/(-DRACULA|SLiGNOME|T4H|-ViSiON|SwAgLaNdEr|-NINJACENTRAL)\b/i
```
Add this to your `Preferred (3)` with a score of [1600] [^1]
```bash
/(-deflate|-inflate)\b/i
```
Add this to your `Preferred (3)` with a score of [7]
```bash
/(repack3)/i
```
Add this to your `Preferred (3)` with a score of [6]
```bash
/(repack2)/i
```
Add this to your `Preferred (3)` with a score of [5]
```bash
/\b(repack|proper)\b/i
```
!!! danger "Caution"
Don't forget to click on `SAVE` after you've added everything you want to the release profile :bangbang:
??? success "example - [Click to show/hide]"
!!! 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 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 (with the copy paste/option at the end).
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
[![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"}
![!rp-p2p-groups](images/rp-p2p-groups.png)
------
## Profile 3
<!-- [trash_id: EBC725268D687D588A20CBC5F97E538B] -->
### Low Quality Groups
!!! warning "DO NOT Check mark `Include Preferred when Renaming` :bangbang:"
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(-BRiNK|-CHX|-CTFOH|-d3g|-EVO|-FGT|-GHOSTS|-HiQVE|-iNTENSO|JFF|MeGusta|-NERO|nhanc3|Pahe\.ph|Pahe\.in|Pahe|PSA|TBS|-TG|-VIDEOHOLE|-worldmkv|-XLF|-Zero00)\b/i
```
!!! danger "Caution"
Don't forget to click on `SAVE` after you've added everything you want to the release profile :bangbang:
??? success "example - [Click to show/hide]"
!!! 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 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 (with the copy paste/option at the end).
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
[![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"}
![!rp-lq-groups](images/rp-lq-groups.png)
------
## Profile 4
### Optionals
!!! warning "DO NOT Check mark `Include Preferred when Renaming` :bangbang:"
!!! danger "Caution"
These optionals are optional because they should only be added/used if you got a certain use case for it, if you don't understand what the optional is for then you probably don't need it :bangbang:
:bangbang: **Except the `Golden Rule` this one is actually a must even that it's added in the optional section** :bangbang:
If you see certain optional with a positive score and you actually don't want them just add them with a negative score !!!
#### Golden rule
!!! warning ""
:bangbang: This one is actually a must even that it's added in the optional section :bangbang:
??? question "Why the Must Not Contain entry - [Click to show/hide]"
This one blocks/ignores 720/1080p releases that are (re-)encoded in x265.
So why did I put `/^(?=.*(1080|720))(?=.*((x|h)[ ._-]?265|hevc)).*/i` as `Must Not Contain` and what does it do ?
Why ?
!!! quote
x265 is good for for 4k stuff or 1080p if they used the 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.
It can't be changed to something else without a huge loss of quality.
Something like 95% of video files are x264 and have much better direct play support.
If you have more than a couple users,
you will notice much more transcoding.
Just depends on your priorities.
So basically if you are storage poor and just need to save space, use x265.
The catch is if you want best quality x265, you need source quality files, so you still have huge file sizes.
If you want maximum compatibility and the option to change your files to something else later,
then x264.
It's all really dependent on specific situations for different people
It's a shame that most x265 groups microsize the releases or use the x264 as source what results in low quality releases. And the few groups that do use the correct source suffer from it.
That's why I created my own golden rule.
- 720/1080p => x264
- 2160p/4k => x265
Add this to your `Must not contain (2)`
```bash
/^(?=.*(1080|720))(?=.*((x|h)[ ._-]?265|hevc)).*/i
```
??? success "example - [Click to show/hide]"
![!rp-release-sources](images/rp-golden-rule.png)
------
#### Optional - Prefer HDR
Add this to your `Preferred (3)` with a score of [500]
```bash
/\bHDR(\b|\d)/i
```
------
#### Optional - Prefer Dolby Vision
Add this to your `Preferred (3)` with a score of [1500]
```bash
/\b(dv|dovi|dolby[ .]?v(ision)?)\b/i
```
------
#### Optional - Dislike retags
??? question "Explanation - [Click to show/hide]"
Use this only if you dislike renamed and retagged releases, some indexers/trackers are known to rename or add their own tags to the release name which could mess up your results or naming.
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(\[rartv\]|\[rarbg\]|\[eztv([ ._-]re)?\]|\[TGx\])/i
```
#### Optional - Dislike Obfuscated
??? question "Explanation - [Click to show/hide]"
Use this only if you dislike Obfuscated releases, some indexers are known to rename or add their own tags/obfuscated name to the release name which could mess up your results or naming.
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(-4P|-4Planet|-AsRequested|-BUYMORE|-CAPTCHA|-Chamele0n|-GEROV|-iNC0GNiTO|-NZBGeek|-Obfuscated|-postbot|-Rakuv|-Scrambled|-WhiteRev|-WRTEAM|-xpost)\b/i
```
------
#### Optional - Dislike release ending: en
Add this to your `Preferred (3)` with a score of [-10000]
??? question "Explanation - [Click to show/hide]"
Some indexers are known to add extra useless info to the release name which could mess up your results or naming.
```bash
/\s?\ben\b$/i
```
------
#### Optional - Dislike release containing: 1-
??? question "Explanation - [Click to show/hide]"
Some indexers are known to add extra useless info to the release name which could mess up your results or naming.
Matches any release that contains '1-' as prefix for Release Groups
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(?<!\d\.)(1-.+)$/i
```
------
#### Optional - Dislike Extras
Add this to your `Preferred (3)` with a score of [-10000]
```bash
/(?<=\bS\d+\b).*\b(Extras|Bonus)\b/i
```
------
#### Optional - Prefer Season Packs
??? question "Explanation - [Click to show/hide]"
Use this if you prefer Season packs
!!! warning ""
- This will upgrade also your already downloaded single episodes
- `/\bS\d+\b(?!E\d+\b)/i` season packs are preferred: however, given the folder name is ignored the error/warning/issue occurs as the file names would not be a season pack of course.
- keep in mind this is the only way to prefer season packs if you have preferred words due to the long standing bug => Preferred Words overrule season pack preference [Sonarr/Sonarr#3562](https://github.com/Sonarr/Sonarr/issues/3562){:target="_blank" rel="noopener noreferrer"}
Add this to your `Preferred (3)` with a score of [15]
```bash
/\bS\d+\b(?!E\d+\b)/i
```
------
##### .su season pack issue
??? bug ".su season pack issue - [Click to show/hide]"
When you see a error in Sonarr that looks somehow like the follow screenshot
![!rp-su-season](images/rp-su-season.png)
Then there is only one way real way that always solves this issue.
create a new release profile specific for .su that uses the [Season regex](#optional-matches-season-packs-use-this-if-you-prefer-season-packs) as `Must not contain (2)`
![!rp-release-profile-block-season-su](images/rp-release-profile-block-season-su.png)
!!! note
There is a [script](/NZBGet/scripts/#wtfnzb-renamer){:target="_blank" rel="noopener noreferrer"} for NZBGet that sometimes could help but it seems it doesn't always work. It also seems there is a work around for SABnzbd but i can't confirm being i'm not using Sab.
------
#### Optional - Ignore Dolby Vision without HDR10 fallback
??? question "Explanation - [Click to show/hide]"
This is a RegEx that ignores DV that don't have the fallback to HDR10, What can results in playback issues like weird colors if you want to play it on a not Dolby Vision compatible setup.
Add this to your `Must not contain (2)`
```bash
/^(?!.*(HDR|HULU|REMUX))(?=.*\b(DV|Dovi|Dolby[- .]?V(ision)?)\b).*/i
```
------
#### Optional - Ignore The Group -SCENE
??? question "Explanation - [Click to show/hide]"
Seems plex ignores `-scene` because it thinks they are extra's. [SOURCE](https://github.com/squaresmile/Plex-Plug-Ins/blob/61eda8a775e198971dcf5088c4daf264a844736f/Scanners.bundle/Contents/Resources/Common/VideoFiles.py#L11){:target="_blank" rel="noopener noreferrer"}
Add this to your `Must not contain (2)`
```bash
/\b(-scene)\b/i
```
------
#### Optional - Ignore scene releases
??? question "WHY ? - [Click to show/hide]"
If you don't want to download so called scene releases.
Add this to your `Must not contain (2)`
```bash
/^(?!.*(web[ ]dl|-deflate|-inflate))(?=.*(\b\d{3,4}p\b).*([_. ]WEB[_. ])(?!DL)\b)|\b(-CAKES|-GGEZ|-GGWP|-GLHF|-GOSSIP|-NAISU|-KOGI|-PECULATE|-SLOT|-EDITH|-ETHEL|-ELEANOR|-B2B|-SPAMnEGGS|-FTP|-DiRT|-SYNCOPY|-BAE|-SuccessfulCrab|-NHTFS|-SURCODE|-B0MBARDIERS).*/i
```
#### Optional - Ignore Bad Dual Audio Groups
??? question "WHY ? - [Click to show/hide]"
These groups take the original release, then they add their own preferred language (ex. Portuguese) as the main audio track (AAC 2.0), What results after renaming and FFprobe that the media file will be recognized as Portuguese AAC audio. It's a common rule that you add the best audio as first.
Also they often even rename the release name in to Portuguese.
Add this to your `Must not contain (2)`
```bash
/\b(-alfaHD|-BAT|-BNd|-C\.A\.A|-Cory|-EXTREME|-FF|-FOXX|-G4RiS|-GUEIRA|-N3G4N|-PD|-PTHome|-RiPER|-RK|-SiGLA|-Tars|-WTV|-Yatogam1|-YusukeFLA|-ZigZag)\b/i
```
#### Optional - Ignore AV1
??? question "WHY ? - [Click to show/hide]"
- This is a new codec and you need modern devices that support it.
- We also had reports of playback/transcoding issues.
- No main group is actually using it (yet).
- It's better to ignore this new codec to prevent compatibility issues.
Add this to your `Must not contain (2)`
```bash
/\bAV1\b/i
```
------
### A little explanation of the scores and why
- Scores [75]-[100] Release Source.
- Scores [1600]-[1800] P2P Groups.
- Scores [10-12] Give a repack/proper a higher score but don't trump P2P groups for a Scene fix.
- Scores [-10000] Retagged/Renames/Obfuscated releases.
!!! danger ""
If you're getting often a error message like `Has the same filesize as existing file`, you might need to consider to remove the [-10000]
- Scores [-10000] Groups that mess with the audio or add another preferred language.
Optional => We've tested it and it worked for what we've tested it on, if it will work in your situation we don't know.
If you notice something wrong just contact me and we will try to fix it or remove it.
## Final Results
When you've done it correctly it will look something like this.
??? success "example - [Click to show/hide]"
!!! 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 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 (with the copy paste/option at the end).
- If you got any questions or aren't sure just click the chat badge to join the Discord Channel where you can ask your questions directly.
[![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"}
![!rp-profiles](images/rp-profiles.png)
------
This list is made by collecting information from Sonarr Discord Channel, and personal testing and a few others that helped.
So I want to thank everyone who helped to make this list possible, for privacy reasons I decided not to add the names/nick of the persons.
If you want to be mentioned please message me on discord, including a link for proof to what part you want to be credited.
!!! info
Keep in mind this list will be a constant work in progress because I will be updating it when it's needed.
So best to set a notification for updates for this page.
Or use one of the 3rd Party Sync options that you can find [HERE](/Misc/trash-sync){:target="_blank" rel="noopener noreferrer"}.
------
{! include-markdown "../../includes/support.md" !}
<!-- --8<-- "includes/support.md" -->
[^1]:
The reason why this one 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.

@ -0,0 +1,3 @@
# Sonarr v3 - End Of Life
!!! warning "**Sonarr v3 - End Of Life**<br><br>As of December 30th 2023, Sonarr v4 has been officially released.<br>Sonarr v3 is therefore in End of Life status.<br>As v4 has now been released, there will be no further updates to the Sonarr v3 guide.<br>We recommend that all users upgrade to Sonarr v4.<br><center><br>:bangbang: **Before updating to Sonarr v4** :bangbang:<br>it is recommended that you delete any existing Release Profiles</center><br>"

@ -1 +0,0 @@
!!! warning "**Sonarr v3 - End Of Life**<br><br>As of December 30th 2023, Sonarr v4 has been officially released.<br>Sonarr v3 is therefore in End of Life status.<br>As v4 has now been released, there will be no further updates to the Sonarr v3 guide.<br>We recommend that all users upgrade to Sonarr v4.<br>This Sonarr v3 guide will be removed in a future guides update.<br><center><br>:bangbang: **Before updating to Sonarr v4** :bangbang:<br>it is recommended that you delete any existing Release Profiles</center><br>"

@ -95,6 +95,8 @@ plugins:
# Sonarr redirects
Sonarr/sonarr-setup-custom-formats.md: Sonarr/sonarr-setup-quality-profiles.md
Sonarr/sonarr-setup-custom-formats-anime.md: Sonarr/sonarr-setup-quality-profiles-anime.md
Sonarr/Sonarr-Release-Profile-RegEx.md: Sonarr/sonarr-v3-eol.md
Sonarr/Sonarr-Release-Profile-RegEx-Anime.md: Sonarr/sonarr-v3-eol.md
# How to old redirects
How-to-setup-for/index.md: Hardlinks/How-to-setup-for/index.md
How-to-setup-for/Docker.md: Hardlinks/How-to-setup-for/Docker.md

Loading…
Cancel
Save