Merge branch 'master' into Recyclarr-landing-page

pull/1163/head
TRaSH 1 year ago committed by GitHub
commit f4aab9c011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,138 @@
# TrueNAS Core
!!! note
This guide is based on TrueNAS Core 13, a storage solution based on ZFS. While there are more similarities than differences between Core and Scale in terms of creating datasets, this guide explicitly covers dataset, share, and basic permission setup in order to provide a place for creating and accessing the recommended folder structure. This does not cover jails or other virtualization means on the TrueNAS Core platform.
This guide assumes that you've already created a pool, which by default will contain a top-level dataset that was configured during the time of pool configuration. For the examples below, we'll be using a pool name of `tank`. Encryption is recommended on the pool (TrueNAS uses ZFS Encryption with AES-256-GCM in TrueNAS Core 13), but not required. TrueNAS Core allows for granularity in encrypting individual datasets if you don't want to encrypt at the top-level dataset and have it be inherited down to the other datasets.
TrueNAS Core defaults to `lz4` encryption as the compression level when creating a pool. This is fine for most workloads, and can be safely inherited down to other datasets under the top-level dataset. `ztsd` is currently the default in FreeBSD, however TrueNAS Core still defaults to `lz4`. Given that media files are not very compressible by nature, the only benefit that compression provides in this case is to supplementary files such as `.srt`, `.nfo`, etc.
Additionally, since SMB does not support hardlinks we will only be covering the creation and use of NFS shares.
------
## Create the main dataset
!!! warning
To get hardlinks and atomic moves working with ZFS you will need to make use of <u>**ONE**</u> dataset with subfolders. Note that this does not mean multiple datasets under the example top-level dataset `tank` from this example.
For this example I'm using the dataset from my existing setup, `Media`. The naming isn't important as host machine mappings can be manipulated as desired.
Go to Storage -> Pools and click on ⋮ on the right side of your root dataset, then select `Add Dataset`.
![truenas-dataset](images/truenas-create-dataset.png)
On the next screen you'll fill out your basic dataset info, such as name and comments. I have a few things grayed out here as the dataset has already been configured, but in this example you would use `Media` in the Name field and keep everything else at its default (`Inherit`) with the exception of `Enable Atime` and `Record Size`. Set `Enable Atime` to `off` and `Record Size` to `1M`. This provides a performance increase on a dataset that will primarily be handling media files. Optionally, you can configure `Quota for this dataset` if you want to limit what the dataset displays and will accept in terms of capacity when it's mounted (i.e. setting this to `10 TiB` will show 10T as the capacity when mounted).
During share creation, there will be an option at the bottom for `Share Type`. `Generic` is the default, with `SMB` as a selectable option. Since we'll be using NFS, select `Generic`.
Click `Submit` (mine shows `Save` since this is an existing dataset) once complete.
![truenas-dataset](images/truenas-dataset-options.png)
------
## Create a shared group
We'll need to create a shared group so that we can ensure proper access when mounting, and to avoid ending up with `nobody` as the group name when mounting over NFS. This group should contain any of your user accounts that will be accessing the share (Starr apps, download clients, etc). It should also match the group and `GID` on the host you plan to mount the share to, and run your apps on.
Navigate to Accounts -> Groups, and click `Add` at the top right.
You'll arrive at a simple configuration screen like the one shown below. Set your `GID` that you plan to use, and name the group. In this example I'm using a `GID` of `1215` and a group name of `dockermedia`. Since this group won't be used for anything other than share permissions, leave `Permit Sudo` and `Samba Authentication` unchecked. Click `Submit` once complete.
![truenas-group](images/truenas-group-options.png)
------
## Create your user(s)
We'll need to create a user (or users if you're using individual user accounts per service) on TrueNAS that matches the user and UID of the user you'll be mounting your share with. It's important that these match since we're not using the `Mapall` function that exist under the NFS Share options.
Navigate to Accounts -> Users, and click `Add` at the top right.
You'll arrive at a configuration screen like the one shown below. Fill out `Full Name` and `Username` with the desired username, and set your `User ID` that you plan to use.
You'll need to uncheck `New Primary Group` so you can manually populate `Primary Group` with the shared group you created in the previous step. In this example I'm using a GID of `1215` and a `Primary Group` name of `dockermedia`. Leave `Home Directory` as `/nonexistent`, and set `Disable Password` to `Yes`. Uncheck `Samba Authentication` and click `Submit` once complete. `Home Directory Permissions` aren't important as it's set to `/nonexistent`, and we won't ever be accessing it.
![truenas-user](images/truenas-user-options.png)
!!! note
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
Now that we have a user and a group, we can set the permissions on the dataset.
Navigate to Storage -> Pools, and click ⋮ on the right side of your target dataset (`Media` if you're following my example), then select `Edit Permissions`.
You'll arrive at a configuration screen like the one shown below. Under `Owner`, fill out your `User` and `Group` information with your desired user and the shared group you plan to use for your apps. `User` isn't super important here if you're using a NFS share and have `Group` configured properly, but it would matter if you're doing a single-user share (i.e. if you wanted a single person to have their own dataset -> share to map).
Check the boxes for `Apply User`, `Apply Group`, and `Apply Permissions Recursively` (check `Confirm` and click `Continue` if you get a popup). Check the `Access Mode` boxes as indicated in the image example and click `Save` once complete.
![truenas-dataset-permissions](images/truenas-dataset-permissions.png)
------
## Create your NFS share(s)
Navigate to Sharing -> Unix Shares (NFS), and click `Add` at the top right.
Under `Paths` you can either use the interactive browser by clicking `/mnt`, or just enter the correct `Path`. Following along with the previous examples, mine is `/mnt/tank/Media`.
Set a `Description` if desired (recommended for tracking), and check `All dirs` and `Enabled`.
Click `Advanced Options` to show the rest of the options we need.
Leave `Security` alone as the defaults are fine.
At the bottom, you have a couple of options. You can either specify `Authorized Networks` for more broad access, or authorize specific hosts (my preferred method). Either way, make sure you use one of these options to ensure that whichever host is mounting the NFS share has access.
Click `Submit` once complete.
![truenas-nfs-share-options](images/truenas-nfs-share-options.png)
------
## Configure and enable NFS service
Navigate to Services and click the edit icon under `Actions` on the `NFS` row.
Enabling `NFSv4` is optional, but I generally prefer it since NFSv4 has some improvements over NFSv3. Make sure to check `Allow non-root mount` under `Other Options`.
One of the most important options here is the `Number of servers` setting. If you click on the help icon you'll see the help text for this setting, which indicates that you should keep this less than or equal to the number of CPUs reported by `sysctl -n kern.smp.cpus` to limit CPU context switching.
Any other options are mostly up to your environment and you should consult standard TrueNAS support paths for assistance.
Click `Save` once complete.
Make sure to check `Start Automatically` and click the slider under `Running` to make sure the service is running correctly and starts at boot.
![truenas-nfs-service-options](images/truenas-nfs-service-options.png)
------
## Mount your shares
Follow standard mounting procedures for your operating system/device. In Ubuntu mounting a NFS share is as simple as adding it to `/etc/fstab` with `<host>:/mnt/tank/Media /mnt/data nfs defaults,_netdev,rw 0 0`, and issuing `mount -a` (or rebooting).
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
Now that you have a `data` folder, you can follow the normal folder structure recommendations, such as the one below.
{! include-markdown "../../../includes/hardlinks/docker-tree-full.md" !}
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" !}
<!-- --8<-- "includes/support.md" -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

@ -10,3 +10,4 @@ Select your desired method of installation:
- [Native](/Hardlinks/How-to-setup-for/Native/)
- [Synology](/Hardlinks/How-to-setup-for/Synology/)
- [Unraid](/Hardlinks/How-to-setup-for/Unraid/)
- [TrueNAS Core](/Hardlinks/How-to-setup-for/TrueNAS-Core/)

@ -53,7 +53,7 @@ I also made 3 guides related to this one.
| [Remaster](#remaster) | [LQ](#lq) | [Remux Tier 02](#remux-tier-02) | [Apple TV+](#atvp) |
| [4K Remaster](#4k-remaster) | [3D](#3d) | [UHD Bluray Tier 01](#uhd-bluray-tier-01) | [Disney+](#dsnp) |
| [Special Edition](#special-edition) | [x265 (HD)](#x265-hd) | [UHD Bluray Tier 02](#uhd-bluray-tier-02) | [HBO](#hbo) |
| [Criterion Collection](#criterion-collection) | | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [HBO Max](#hmax) |
| [Criterion Collection](#criterion-collection) | [Upscaled](#upscaled) | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [HBO Max](#hmax) |
| [Masters of Cinema](#masters-of-cinema) | | [HD Bluray Tier 01](#hd-bluray-tier-01) | [Hulu](#hulu) |
| [Theatrical Cut](#theatrical-cut) | | [HD Bluray Tier 02](#hd-bluray-tier-02) | [Netflix](#nf) |
| [IMAX](#imax) | | [WEB Tier 01](#web-tier-01) | [Peacock TV](#pcok) |
@ -964,6 +964,22 @@ I also made 3 guides related to this one.
------
### Upscaled
??? question "Upscaled - [CLICK TO EXPAND]"
This custom format is used to prevent Radarr from grabbing upscaled releases.
??? example "JSON - [CLICK TO EXPAND]"
```json
[[% filter indent(width=4) %]][[% include 'json/radarr/cf/upscaled.json' %]][[% endfilter %]]
```
<sub><sup>[TOP](#index)</sup>
------
## Optional
------

@ -19,7 +19,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "\\b(DV|DoVi|Dolby[ .]?Vision)\\b"
}
},
{

@ -1,7 +1,7 @@
{
"trash_id": "e23edd2482476e595fb990b12e7c609c",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/pADWJD/8",
"trash_regex": "https://regex101.com/r/xIFQQR/1",
"name": "DV HDR10",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(HDR(10)?)\\b)(?!.*\\b(HDR10(\\+|P(lus)?)))"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "55d53828b9d81cbe20b02efd00aa0efd",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/Bc7NTL/2",
"name": "DV HLG",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(HLG(\\b|\\d)))"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "a3e19f8f627608af0211acd02bf89735",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/aJn0H8/1",
"name": "DV SDR",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(SDR)\\b)"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "923b6abef9b17f937fab56cfcf89e1f1",
"trash_score": "-10000",
"trash_regex": "https://regex101.com/r/Jqg9Jo/2",
"name": "DV (WEBDL)",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,7 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
},
{
@ -40,15 +41,6 @@
"value": "\\b(Flights)\\b"
}
},
{
"name": "Not HDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR(\\b|\\d)"
}
},
{
"name": "Not Hulu",
"implementation": "ReleaseTitleSpecification",

@ -1,6 +1,7 @@
{
"trash_id": "58d6a88f13e2db7f5059c41047876f00",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/w1PRcu/1",
"name": "DV",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,34 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(10\\]?[^+P])?)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -55,7 +55,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
"value": "\\b(HLG(\\b|\\d))"
}
},
{

@ -1,6 +1,7 @@
{
"trash_id": "e61e28db95d22bedcadf030b8f156d96",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/Jy24ye/2",
"name": "HDR",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
"value": "^(?=.*\\b(HDR)\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
},
{

@ -1,6 +1,7 @@
{
"trash_id": "dfb86d5941bc9075d6af23b09c2aeecd",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/9144Ol/1",
"name": "HDR10",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10\\]?[^+P])\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,7 +1,7 @@
{
"trash_id": "b17886cb4158d9fea189859409975758",
"trash_score": "901",
"trash_regex": "https://regex101.com/r/hCAQEO/4",
"trash_regex": "https://regex101.com/r/keKCbP/2",
"name": "HDR10+ Boost",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10(\\+|P(lus)?)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,7 +1,7 @@
{
"trash_id": "b974a6cd08c1066250f1f177d7aa1225",
"trash_score": "600",
"trash_regex": "https://regex101.com/r/hCAQEO/4",
"trash_regex": "https://regex101.com/r/keKCbP/2",
"name": "HDR10+",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10(\\+|P(lus)?)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "9364dd386c9b4a1100dde8264690add7",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/gAoHQt/1",
"name": "HLG",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,43 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
"value": "^(?=.*\\b(HLG(\\b|\\d)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(PQ)\\b)"
}
}
]

@ -22,6 +22,15 @@
"value": "\\b(AROMA)\\b"
}
},
{
"name": "AZAZE",
"implementation": "ReleaseGroupSpecification",
"negate": false,
"required": false,
"fields": {
"value": "\\b(AZAZE)\\b"
}
},
{
"name": "aXXo",
"implementation": "ReleaseGroupSpecification",

@ -1,6 +1,7 @@
{
"trash_id": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/aaUkkW/2",
"name": "PQ",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,52 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
"value": "^(?=.*\\b(PQ)\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))"
}
}
]

@ -19,7 +19,7 @@
"negate": true,
"required": false,
"fields": {
"value": "\\bHDR(\\b|\\d)|\\b(dv|dovi|dolby[ .]?vision)\\b|\\b(FraMeSToR|HQMUX|SiCFoI)\\b|\\b(PQ)\\b"
"value": "\\b(HDR(\\b|\\d))|\\b(DV|DoVi|Dolby[ .]?Vision)\\b|\\b(PQ)\\b|\\b(HLG(\\b|\\d))|\\b(FraMeSToR|HQMUX|SiCFoI)\\b"
}
},
{
@ -28,7 +28,7 @@
"negate": false,
"required": false,
"fields": {
"value": "\\bSDR\\b"
"value": "\\b(SDR)\\b"
}
}
]

@ -0,0 +1,36 @@
{
"trash_id": "bfd8eb01832d646a0a89c4deb46f8564",
"trash_score": "-10000",
"trash_regex": "https://regex101.com/r/HBqWdQ/1",
"name": "Upscaled",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "Upscaled",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": "\\b(Up(s(caled|UHD)|(Rez)))\\b"
}
},
{
"name": "AI Upscales",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": "^(?=.*\\b(HEVC)\\b)(?=.*\\b(AI)\\b)"
}
},
{
"name": "TheUpscaler",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": "\\b(The[ ._-]Upscaler)\\b"
}
}
]
}

@ -19,7 +19,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "\\b(DV|DoVi|Dolby[ .]?Vision)\\b"
}
},
{

@ -1,7 +1,7 @@
{
"trash_id": "7878c33f1963fefb3d6c8657d46c2f0a",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/pADWJD/8",
"trash_regex": "https://regex101.com/r/xIFQQR/1",
"name": "DV HDR10",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(HDR(10)?)\\b)(?!.*\\b(HDR10(\\+|P(lus)?)))"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "1f733af03141f068a540eec352589a89",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/Bc7NTL/2",
"name": "DV HLG",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(HLG(\\b|\\d)))"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "27954b0a80aab882522a88a4d9eae1cd",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/aJn0H8/1",
"name": "DV SDR",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,25 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?=.*\\b(SDR)\\b)"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "9b27ab6498ec0f31a3353992e19434ca",
"trash_score": "-10000",
"trash_regex": "https://regex101.com/r/Jqg9Jo/2",
"name": "DV (WEBDL)",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,7 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
},
{
@ -40,15 +41,6 @@
"value": "\\b(Flights)\\b"
}
},
{
"name": "Not HDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR(\\b|\\d)"
}
},
{
"name": "Not Hulu",
"implementation": "ReleaseTitleSpecification",

@ -1,6 +1,7 @@
{
"trash_id": "6d0d8de7b57e35518ac0308b0ddf404e",
"trash_score": "1500",
"trash_regex": "https://regex101.com/r/w1PRcu/1",
"name": "DV",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,34 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not DV HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]HLG)\\b"
}
},
{
"name": "Not DV SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(DV[ .]SDR)\\b"
"value": "^(?=.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(10\\]?[^+P])?)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -55,7 +55,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
"value": "\\b(HLG(\\b|\\d))"
}
},
{

@ -1,6 +1,7 @@
{
"trash_id": "3e2c4e748b64a1a1118e0ea3f4cf6875",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/Jy24ye/2",
"name": "HDR",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
"value": "^(?=.*\\b(HDR)\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
},
{

@ -1,6 +1,7 @@
{
"trash_id": "3497799d29a085e2ac2df9d468413c94",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/9144Ol/1",
"name": "HDR10",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10\\]?[^+P])\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,7 +1,7 @@
{
"trash_id": "0dad0a507451acddd754fe6dc3a7f5e7",
"trash_score": "901",
"trash_regex": "https://regex101.com/r/hCAQEO/4",
"trash_regex": "https://regex101.com/r/keKCbP/2",
"name": "HDR10+ Boost",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10(\\+|P(lus)?)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,7 +1,7 @@
{
"trash_id": "a3d82cbef5039f8d295478d28a887159",
"trash_score": "600",
"trash_regex": "https://regex101.com/r/hCAQEO/4",
"trash_regex": "https://regex101.com/r/keKCbP/2",
"name": "HDR10+",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -11,61 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not DV HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "^(?=.*\\b(HDR(10)?(?!\\+))\\b)(?=.*\\b(DV|DoVi)\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
"value": "^(?=.*\\b(HDR10(\\+|P(lus)?)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "17e889ce13117940092308f48b48b45b",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/gAoHQt/1",
"name": "HLG",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,43 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not PQ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
"value": "^(?=.*\\b(HLG(\\b|\\d)))(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(PQ)\\b)"
}
}
]

@ -1,6 +1,7 @@
{
"trash_id": "2a7e3be05d3861d6df7171ec74cad727",
"trash_score": "500",
"trash_regex": "https://regex101.com/r/aaUkkW/2",
"name": "PQ",
"includeCustomFormatWhenRenaming": false,
"specifications": [
@ -10,52 +11,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(PQ)\\b"
}
},
{
"name": "Not DV",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(dv|dovi|dolby[ .]?vision)\\b"
}
},
{
"name": "Not HDR10",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
}
},
{
"name": "Not HDR10+",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\+|P(lus)?\\b)"
}
},
{
"name": "Not HLG",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(HLG)\\b"
}
},
{
"name": "Not SDR",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\bSDR(\\b|\\d)"
"value": "^(?=.*\\b(PQ)\\b)(?!.*\\b(DV|DoVi|Dolby[ .]?Vision)\\b)(?!.*\\b(HDR(\\b|\\d)))(?!.*\\b(SDR)\\b)(?!.*\\b(HLG(\\b|\\d)))"
}
}
]

@ -19,7 +19,7 @@
"negate": true,
"required": false,
"fields": {
"value": "\\bHDR(\\b|\\d)|\\b(dv|dovi|dolby[ .]?vision)\\b|\\b(FraMeSToR|HQMUX|SiCFoI)\\b|\\b(PQ)\\b"
"value": "\\b(HDR(\\b|\\d))|\\b(DV|DoVi|Dolby[ .]?Vision)\\b|\\b(PQ)\\b|\\b(HLG(\\b|\\d))|\\b(FraMeSToR|HQMUX|SiCFoI)\\b"
}
},
{
@ -28,7 +28,7 @@
"negate": false,
"required": false,
"fields": {
"value": "\\bSDR\\b"
"value": "\\b(SDR)\\b"
}
}
]

@ -1,3 +1,33 @@
# 2023-02-19 13:30
**[New]**
- None
**[Updated]**
- None
**[Fixed]**
- [Starr] Fix mistakes in changes to the HDR metadata CFs - Change some regex to correctly match `DV`, `HDR10` and `DV (FEL)`.
# 2023-02-18 21:45
**[New]**
- [Radarr] New CF `Upscaled` - A custom format that matches the most commonly used terms in upscaled releases.
**[Updated]**
- [Starr] Rewrote almost all the regex for the HDR metadata CFs to be oneliners, to prevent false matches from happening.
**[Fixed]**
- None
# 2023-02-17 22:40
**[New]**
- None
**[Updated]**
- None
**[Fixed]**
- [Starr] Added `HLG(10)` to CF `SDR` - For proper scoring
# 2023-02-17 14:50
**[New]**
- [Sonarr] Added Comedy Central streaming service to the Sonarr custom formats and release propfile.

@ -1,10 +1,11 @@
??? abstract "Unwanted - [CLICK TO EXPAND]"
| Custom Format | Score | Trash ID |
| ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- |
| [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} |
| [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} |
| [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} |
| [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['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_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} |
| [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} |
| [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} |
| [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} |
| [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_score'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} |
------
@ -17,3 +18,4 @@
!!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:"
- **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ?
- **{{ radarr['cf']['upscaled']['name'] }}:** A custom format to prevent Radarr from grabbing upscaled releases.

Loading…
Cancel
Save