Merge remote-tracking branch 'origin/master' into editorconfig

Signed-off-by: Eric Nemchik <eric@nemchik.com>
pull/1410/head
Eric Nemchik 3 weeks ago
commit 45f93ba147
No known key found for this signature in database

@ -15,7 +15,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
sparse-checkout: |
@ -55,7 +55,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
sparse-checkout: |

@ -10,7 +10,7 @@ jobs:
editorconfig-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.3
- name: editorconfig-checker
run: |
docker run --rm \

@ -10,7 +10,7 @@ jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.3
- name: markdownlint
run: |
docker run --rm \

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.3
- name: Run yamllint
run: |

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
name: Validate metadata.json
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.3
- uses: actions/setup-python@v5.1.0
with:
python-version: 3.x

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

@ -48,7 +48,7 @@ Click on `Enabled`
1. Click the `Test` button after filling in all the fields. Make sure the test is successful before you proceed.
### Options
### Options (Sonarr)
![!Sonarr - Options](images/qs-sonarr-options.png)
@ -66,7 +66,7 @@ Click on `Enabled`
1. Automatic downloading of subtitles will only happen for monitored shows/episodes in Sonarr.
### Path Mappings
### Path Mappings (Sonarr)
!!! note

@ -140,14 +140,6 @@ You can choose one of the following 3 options (select a tab) to install `qbittor
### Script
!!! warning ""
Depending on whether you use the unRaid `Mover Tuning` app, You might need to change **line 94**:
- If you do not use `Mover Tuning`, change **line 94** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`
- If you use `Mover Tuning` but **don't** want to use it for the script, do not change **line 94**
- If you use `Mover Tuning` and **do** want to use it for the script, change **line 94** from `os.system('/usr/local/sbin/mover.old start')` to `os.system('/usr/local/sbin/mover start')`. For this option, inside the `Mover Tuner` options you will also need to set `Move Now button follows plugin filters` to `Yes` and `Disable Mover running on a schedule` to `No`.
#### Copy the script to your preferred location
Place the script you just edited somewhere easy to access/remember.
@ -178,13 +170,16 @@ Click on the cogwheel of the new script in the list.
![!Select user script](images/Unraid-settings-user-scripts-list-select-qbit-mover.png)
Choose your method (select a tab) and copy/paste the script in the new window that opens, then click `SAVE CHANGES`.
!!! info "replace `ip` with your unraid server ip, replace `port` with your webgui port you use to access the webgui"
=== "Python (Native)"
``` bash
#!/bin/bash
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
python3 /mnt/user/data/scripts/mover.py --host "localhost:8080" --user "your_user" --password "your_password" --days_from 0 --days_to 2
python3 /mnt/user/data/scripts/mover.py --host "ip:port" --user "your_user" --password "your_password" --days_from 0 --days_to 2
echo "qbittorrent-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover completed @ `date +%H:%M:%S`."
```
@ -196,7 +191,7 @@ Choose your method (select a tab) and copy/paste the script in the new window th
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover starting @ `date +%H:%M:%S`."
echo "executing script to pause torrents and run mover."
/mnt/user/data/scripts/.venv/bin/python3 /mnt/user/data/scripts/mover.py --host "localhost:8080" --user "your_user" --password "your_password" --days_from 0 --days_to 2
/mnt/user/data/scripts/.venv/bin/python3 /mnt/user/data/scripts/mover.py --host ip:port" --user "your_user" --password "your_password" --days_from 0 --days_to 2
echo "qbittorrent-mover completed and resumed all paused torrents."
/usr/local/emhttp/plugins/dynamix/scripts/notify -s "qBittorrent Mover" -d "qBittorrent Mover completed @ `date +%H:%M:%S`."
```
@ -211,7 +206,7 @@ Choose your method (select a tab) and copy/paste the script in the new window th
- `user` => Your used qBittorrent `User Name` if you have authentication enabled.
- `password` => Your used qBittorrent `Password` if you have authentication enabled.
![!Bash script](images/Unraid-settings-user-scripts-qbit-mover.png)
<!--- ![!Bash script](images/Unraid-settings-user-scripts-qbit-mover.png)-->
Click the schedule dropdown to choose when the script should run. We want to select `Custom`.

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

@ -2,5 +2,6 @@ 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/

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

@ -840,7 +840,9 @@ We've made 3 guides related to this.
??? question "IMAX - [Click to show/hide]"
Description placeholder
[From In Depth Cine](https://www.indepthcine.com/videos/imax){:target="_blank" rel="noopener noreferrer"}
IMAX films are shot in tall aspect ratios, typically 1.9:1 or sometimes 1.43:1. Most IMAX film releases also have scenes shot at wider aspect ratios and, as a result, the aspect ratio will change throughout. Because they are shot on large format cameras, there is often less film grain present. This results in a clearer picture.
??? example "JSON - [Click to show/hide]"
@ -856,9 +858,13 @@ We've made 3 guides related to this.
??? question "IMAX Enhanced - [Click to show/hide]"
IMAX Enhanced: Get More Picture Instead of Black Bars
**Get more picture and less black bars (letterboxing).**
[From Wired](https://www.wired.com/story/what-is-imax-enhanced/){:target="_blank" rel="noopener noreferrer"}
IMAX Enhanced is a standard for digital releases. It features scenes shot on IMAX cameras and produced in HDR10 DV. IMAX Enhanced releases are often higher bitrate than other WEB options and are encoded into various formats, including SDR conversions.
IMAX Enhanced 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.
As a result of the higher bitrate and implied picture quality improvement, it is recommended to enable the IMAX Enhanced custom format on WEB profiles, especially for those seeking 'The IMAX Experience' - including less "black bars" or letterboxing.
![!Imax Enhanced Example](images/imax-e/imax-e.1.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

@ -7,9 +7,10 @@ There isn't a "best" setup, it depends on your media setup (hardware devices) an
Some prefer high-quality audio (HD Audio), others high-quality video. Many prefer both.
Here I will try to explain how to make the most use of Custom Formats to help you to set up your quality profiles for your personal needs.
Here we will try to explain how to make the most of Custom Formats to help you set up your quality profiles for your personal preferences.
I created a [flowchart](#which-quality-profile-should-you-choose) to make your decision/choices easier.
- We've created a [flowchart](#which-quality-profile-should-you-choose) to make your decisions/choices easier.
- We've also created an Excel sheet with several tested [media player devices](/Plex/what-does-my-media-player-support){:target="_blank" rel="noopener noreferrer"} to display what formats and capabilities they support, sourced from information provided by our community. We hope this Excel sheet will be a helpful resource for those looking for a reliable media player device and will help you choose the appropriate quality profile.
---
@ -274,9 +275,13 @@ The following custom format groups should be combined with the Quality Profiles
### Advanced Audio
- You have an audio setup that supports all HD Audio (TrueHD, DTS-X, DTS-HD, etc).
- You have a media player (hardware devices) that can passthrough HD audio.
- You don't have an AppleTV (Being it can't passthrough untouched HD audio).
- You have a hardware media player device and an audio setup that supports **ALL** HD Audio (TrueHD, DTS-X, DTS-HD, etc).
{! include-markdown "../../includes/cf/audio-limitations-atv.md" !}
- You've chosen a profile that includes Audio Formats. You should use all the Audio formats with Remuxes/UHD Encodes.
- You should add **ALL** the Audio formats - don't leave any of them out!
- Audio transcoding has a low impact on your server. If your server can't handle audio transcoding, consider choosing another quality profile.
_The reason that I score lossy Atmos higher than lossless DTS-HD MA is that I prefer having the object metadata (Atmos) over lossless audio._

@ -154,7 +154,7 @@ Add this to your `Preferred (3)` with a score of [90]
Add this to your `Preferred (3)` with a score of [80]
```bash
/\b(hmax|hbom|hbo[ ._-]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
/\b(hmax|hbom|hbo[ ._-]?max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i
```
```bash

@ -7,9 +7,10 @@ There isn't a "best" setup, it depends on your media setup (hardware devices) an
Some prefer high-quality audio (HD Audio), others high-quality video. Many prefer both.
Here I will try to explain how to make the most use of Custom Formats to help you to set up your quality profiles for your personal needs.
Here we will try to explain how to make the most of Custom Formats to help you set up your quality profiles for your personal preferences.
I created a [flowchart](#which-quality-profile-should-you-choose) to make your decision/choices easier.
- We've created a [flowchart](#which-quality-profile-should-you-choose) to make your decisions/choices easier.
- We've also created an Excel sheet with several tested [media player devices](/Plex/what-does-my-media-player-support){:target="_blank" rel="noopener noreferrer"} to display what formats and capabilities they support, sourced from information provided by our community. We hope this Excel sheet will be a helpful resource for those looking for a reliable media player device and will help you choose the appropriate quality profile.
---

@ -0,0 +1,83 @@
{
"name": "Advanced Audio Formats",
"trash_id": "9d5acd8f1da78dfbae788182f7605200",
"custom_formats": [
{
"name": "TrueHD Atmos",
"trash_id": "496f355514737f7d83bf7aa4d24f8169",
"required": true
},
{
"name": "DTS X",
"trash_id": "2f22d89048b01681dde8afe203bf2e95",
"required": true
},
{
"name": "ATMOS (undefined)",
"trash_id": "417804f7f2c4308c1f4c5d380d4c4475",
"required": true
},
{
"name": "DD+ ATMOS",
"trash_id": "1af239278386be2919e1bcee0bde047e",
"required": true
},
{
"name": "TrueHD",
"trash_id": "3cafb66171b47f226146a0770576870f",
"required": true
},
{
"name": "DTS-HD MA",
"trash_id": "dcf3ec6938fa32445f590a4da84256cd",
"required": true
},
{
"name": "FLAC",
"trash_id": "a570d4a0e56a2874b64e5bfa55202a1b",
"required": true
},
{
"name": "PCM",
"trash_id": "e7c2fcae07cbada050a0af3357491d7b",
"required": true
},
{
"name": "DTS-HD HRA",
"trash_id": "8e109e50e0a0b83a5098b056e13bf6db",
"required": true
},
{
"name": "DD+",
"trash_id": "185f1dd7264c4562b9022d963ac37424",
"required": true
},
{
"name": "DTS-ES",
"trash_id": "f9f847ac70a0af62ea4a08280b859636",
"required": true
},
{
"name": "DTS",
"trash_id": "1c1a4c5e823891c75bc50380a6866f73",
"required": true
},
{
"name": "AAC",
"trash_id": "240770601cc226190c367ef59aba7463",
"required": true
},
{
"name": "DD",
"trash_id": "c2998bd0d90ed5621d8df281e839436e",
"required": true
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0"
}
}
}

@ -0,0 +1,75 @@
{
"name": "HDR Formats",
"trash_id": "d9acca37ab4ab8f6428b68125fc0cacb",
"custom_formats": [
{
"name": "DV HDR10Plus",
"trash_id": "c53085ddbd027d9624b320627748612f",
"required": true
},
{
"name": "DV HDR10",
"trash_id": "e23edd2482476e595fb990b12e7c609c",
"required": true
},
{
"name": "DV",
"trash_id": "58d6a88f13e2db7f5059c41047876f00",
"required": true
},
{
"name": "DV HLG",
"trash_id": "55d53828b9d81cbe20b02efd00aa0efd",
"required": true
},
{
"name": "DV SDR",
"trash_id": "a3e19f8f627608af0211acd02bf89735",
"required": true
},
{
"name": "HDR10+",
"trash_id": "b974a6cd08c1066250f1f177d7aa1225",
"required": true
},
{
"name": "HDR10",
"trash_id": "dfb86d5941bc9075d6af23b09c2aeecd",
"required": true
},
{
"name": "HDR",
"trash_id": "e61e28db95d22bedcadf030b8f156d96",
"required": true
},
{
"name": "HDR (Undefined)",
"trash_id": "2a4d9069cc1fe3242ff9bdaebed239bb",
"required": true
},
{
"name": "PQ",
"trash_id": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"required": true
},
{
"name": "HLG",
"trash_id": "9364dd386c9b4a1100dde8264690add7",
"required": true
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"UHD Bluray + WEB": "64fb5f9858489bdac2af690e27c8f42f",
"Remux + WEB 1080p": "9ca12ea80aa55ef916e3751f4b874151",
"Remux + WEB 2160p": "fd161a61e3ab826d3a22d53f935696dd",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0",
"SQP-2": "c3933358ba2356bafc41524f81471069",
"SQP-3": "2cf36c1f0106ffac993be003ade51865",
"SQP-4": "013f89e6da27519fe56cf482702a2db9",
"SQP-5": "a7bb1539fd147256b21b1098f3dc2016"
}
}
}

@ -0,0 +1,63 @@
{
"name": "Optional",
"trash_id": "8a3d746a76dcfc02c43983ac5432f754",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "b6832f586342ef70d9c128d40c07b872",
"required": false
},
{
"name": "EVO (no WEBDL)",
"trash_id": "90cedc1fea7ea5d11298bebd3d1d3223",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "7357cf5161efbf8c4d5d0c30b4815ee2",
"required": false
},
{
"name": "Retags",
"trash_id": "5c44f52a8714fdd79bb4d98e2673be1f",
"required": false
},
{
"name": "Scene",
"trash_id": "f537cf427b64c38c8e36298f657e4828",
"required": false
},
{
"name": "x265 (HD)",
"trash_id": "dc98083864ea246d05a42df0d05f81cc",
"required": false
},
{
"name": "SDR",
"trash_id": "9c38ebb7384dada637be8899efa68e6f",
"required": false
},
{
"name": "SDR (no WEBDL)",
"trash_id": "25c12f78430a3a23413652cbd1d48d77",
"required": false
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"Remux + WEB 1080p": "9ca12ea80aa55ef916e3751f4b874151",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0",
"SQP-2": "c3933358ba2356bafc41524f81471069",
"SQP-3": "2cf36c1f0106ffac993be003ade51865",
"SQP-4": "013f89e6da27519fe56cf482702a2db9",
"SQP-5": "a7bb1539fd147256b21b1098f3dc2016"
}
}
}

@ -0,0 +1,53 @@
{
"name": "Optional",
"trash_id": "9337080378236ce4c0b183e35790d2a7",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "b6832f586342ef70d9c128d40c07b872",
"required": false
},
{
"name": "EVO (no WEBDL)",
"trash_id": "90cedc1fea7ea5d11298bebd3d1d3223",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "7357cf5161efbf8c4d5d0c30b4815ee2",
"required": false
},
{
"name": "Retags",
"trash_id": "5c44f52a8714fdd79bb4d98e2673be1f",
"required": false
},
{
"name": "Scene",
"trash_id": "f537cf427b64c38c8e36298f657e4828",
"required": false
},
{
"name": "x265 (no HDR/DV)",
"trash_id": "839bea857ed2c0a8e084f3cbdbd65ecb",
"required": false
}
],
"quality_profiles": {
"exclude": {
"UHD Bluray + WEB": "64fb5f9858489bdac2af690e27c8f42f",
"Remux + WEB 2160p": "fd161a61e3ab826d3a22d53f935696dd",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0",
"SQP-2": "c3933358ba2356bafc41524f81471069",
"SQP-3": "2cf36c1f0106ffac993be003ade51865",
"SQP-4": "013f89e6da27519fe56cf482702a2db9",
"SQP-5": "a7bb1539fd147256b21b1098f3dc2016"
}
}
}

@ -0,0 +1,49 @@
{
"name": "SQP-1 (1080p) Optional",
"trash_id": "0ac153dc6f4f96459bc8fdb30aaefedf",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "b6832f586342ef70d9c128d40c07b872",
"required": false
},
{
"name": "EVO (no WEBDL)",
"trash_id": "90cedc1fea7ea5d11298bebd3d1d3223",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "7357cf5161efbf8c4d5d0c30b4815ee2",
"required": false
},
{
"name": "Retags",
"trash_id": "5c44f52a8714fdd79bb4d98e2673be1f",
"required": false
},
{
"name": "Scene",
"trash_id": "f537cf427b64c38c8e36298f657e4828",
"required": false
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"UHD Bluray + WEB": "64fb5f9858489bdac2af690e27c8f42f",
"Remux + WEB 1080p": "9ca12ea80aa55ef916e3751f4b874151",
"Remux + WEB 2160p": "fd161a61e3ab826d3a22d53f935696dd",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0",
"SQP-2": "c3933358ba2356bafc41524f81471069",
"SQP-3": "2cf36c1f0106ffac993be003ade51865",
"SQP-4": "013f89e6da27519fe56cf482702a2db9",
"SQP-5": "a7bb1539fd147256b21b1098f3dc2016"
}
}
}

@ -0,0 +1,74 @@
{
"name": "SQP-1 (2160p) Optional",
"trash_id": "208222a117fa38f8ab954fad9350910c",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "b6832f586342ef70d9c128d40c07b872",
"required": false
},
{
"name": "EVO (no WEBDL)",
"trash_id": "90cedc1fea7ea5d11298bebd3d1d3223",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "7357cf5161efbf8c4d5d0c30b4815ee2",
"required": false
},
{
"name": "Retags",
"trash_id": "5c44f52a8714fdd79bb4d98e2673be1f",
"required": false
},
{
"name": "Scene",
"trash_id": "f537cf427b64c38c8e36298f657e4828",
"required": false
},
{
"name": "x265 (HD)",
"trash_id": "dc98083864ea246d05a42df0d05f81cc",
"required": false
},
{
"name": "HDR10+ Boost",
"trash_id": "b17886cb4158d9fea189859409975758",
"required": false
},
{
"name": "DV HDR10+ Boost",
"trash_id": "55a5b50cb416dea5a50c4955896217ab",
"required": false
},
{
"name": "SDR",
"trash_id": "9c38ebb7384dada637be8899efa68e6f",
"required": false
},
{
"name": "SDR (no WEBDL)",
"trash_id": "25c12f78430a3a23413652cbd1d48d77",
"required": false
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"UHD Bluray + WEB": "64fb5f9858489bdac2af690e27c8f42f",
"Remux + WEB 1080p": "9ca12ea80aa55ef916e3751f4b874151",
"Remux + WEB 2160p": "fd161a61e3ab826d3a22d53f935696dd",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-2": "c3933358ba2356bafc41524f81471069",
"SQP-3": "2cf36c1f0106ffac993be003ade51865",
"SQP-4": "013f89e6da27519fe56cf482702a2db9",
"SQP-5": "a7bb1539fd147256b21b1098f3dc2016"
}
}
}

@ -0,0 +1,71 @@
{
"name": "SQP-2/3/4/5 Optional",
"trash_id": "de18f9d6e3f843f5208c68219ee732a7",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "b6832f586342ef70d9c128d40c07b872",
"required": false
},
{
"name": "EVO (no WEBDL)",
"trash_id": "90cedc1fea7ea5d11298bebd3d1d3223",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "7357cf5161efbf8c4d5d0c30b4815ee2",
"required": false
},
{
"name": "Retags",
"trash_id": "5c44f52a8714fdd79bb4d98e2673be1f",
"required": false
},
{
"name": "Scene",
"trash_id": "f537cf427b64c38c8e36298f657e4828",
"required": false
},
{
"name": "x265 (HD)",
"trash_id": "dc98083864ea246d05a42df0d05f81cc",
"required": false
},
{
"name": "SDR",
"trash_id": "9c38ebb7384dada637be8899efa68e6f",
"required": false
},
{
"name": "SDR (no WEBDL)",
"trash_id": "25c12f78430a3a23413652cbd1d48d77",
"required": false
},
{
"name": "DV (WEBDL)",
"trash_id": "923b6abef9b17f937fab56cfcf89e1f1",
"required": false
},
{
"name": "HDR10+ Boost",
"trash_id": "b17886cb4158d9fea189859409975758",
"required": false
}
],
"quality_profiles": {
"exclude": {
"HD Bluray + WEB": "d1d67249d3890e49bc12e275d989a7e9",
"UHD Bluray + WEB": "64fb5f9858489bdac2af690e27c8f42f",
"Remux + WEB 1080p": "9ca12ea80aa55ef916e3751f4b874151",
"Remux + WEB 2160p": "fd161a61e3ab826d3a22d53f935696dd",
"SQP-1 (1080p)": "0896c29d74de619df168d23b98104b22",
"SQP-1 (2160p)": "5128baeb2b081b72126bc8482b2a86a0"
}
}
}

@ -31,7 +31,7 @@
"negate": false,
"required": false,
"fields": {
"value": "\\b(The[ ._-]?Upscaler)\\b"
"value": "\\b(The[ ._-]Upscaler)\\b"
}
},
{

@ -0,0 +1,90 @@
{
"trash_id": "d1d67249d3890e49bc12e275d989a7e9",
"name": "HD Bluray + WEB",
"upgradeAllowed": true,
"cutoff": "Bluray-1080p",
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{
"name": "WEB 2160p",
"allowed": false,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Bluray-720p", "allowed": true },
{
"name": "WEB 1080p",
"allowed": true,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
},
{ "name": "Bluray-1080p", "allowed": true }
],
"formatItems": {
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"HD Bluray Tier 01": "ed27ebfef2f323e964fb1f61391bcb35",
"HD Bluray Tier 02": "c20c8647f2746a1f4c4262b0fbbeeeae",
"HD Bluray Tier 03": "5608c71bcebba0a5e666223bae8c9227",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (HD)": "dc98083864ea246d05a42df0d05f81cc",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Extras": "0a3f082873eb454bde444150b70253cc",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,91 @@
{
"trash_id": "9ca12ea80aa55ef916e3751f4b874151",
"name": "Remux + WEB 1080p",
"upgradeAllowed": true,
"cutoff": "Remux-1080p",
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{
"name": "WEB 2160p",
"allowed": false,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB 1080p",
"allowed": true,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
},
{ "name": "Remux-1080p", "allowed": true }
],
"formatItems": {
"Hybrid": "0f12c086e289cf966fa5948eac571f44",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (HD)": "dc98083864ea246d05a42df0d05f81cc",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Extras": "0a3f082873eb454bde444150b70253cc",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,103 @@
{
"trash_id": "fd161a61e3ab826d3a22d53f935696dd",
"name": "Remux + WEB 2160p",
"upgradeAllowed": true,
"cutoff": "Remux-2160p",
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{
"name": "WEB 1080p",
"allowed": false,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
},
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB 2160p",
"allowed": true,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Remux-2160p", "allowed": true }
],
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Hybrid": "0f12c086e289cf966fa5948eac571f44",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,107 @@
{
"trash_id": "0896c29d74de619df168d23b98104b22",
"name": "SQP-1 (1080p)",
"trash_score_set": "sqp-1-1080p",
"upgradeAllowed": true,
"cutoff": "Bluray|WEB-1080p",
"minFormatScore": 1000,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{
"name": "WEB 2160p",
"allowed": false,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Bluray-720p", "allowed": true },
{
"name": "Bluray|WEB-1080p",
"allowed": true,
"items": [
"WEBDL-720p",
"WEBRip-720p",
"WEBDL-1080p",
"WEBRip-1080p",
"Bluray-1080p"
]
}
],
"formatItems": {
"TrueHD ATMOS": "496f355514737f7d83bf7aa4d24f8169",
"DTS X": "2f22d89048b01681dde8afe203bf2e95",
"ATMOS (undefined)": "417804f7f2c4308c1f4c5d380d4c4475",
"DD+ ATMOS": "1af239278386be2919e1bcee0bde047e",
"TrueHD": "3cafb66171b47f226146a0770576870f",
"DTS-HD MA": "dcf3ec6938fa32445f590a4da84256cd",
"FLAC": "a570d4a0e56a2874b64e5bfa55202a1b",
"PCM": "e7c2fcae07cbada050a0af3357491d7b",
"DTS-HD HRA": "8e109e50e0a0b83a5098b056e13bf6db",
"DD+": "185f1dd7264c4562b9022d963ac37424",
"DTS-ES": "f9f847ac70a0af62ea4a08280b859636",
"DTS": "1c1a4c5e823891c75bc50380a6866f73",
"AAC": "240770601cc226190c367ef59aba7463",
"DD": "c2998bd0d90ed5621d8df281e839436e",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"BHDStudio": "5153ec7413d9dae44e24275589b5e944",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"HD Bluray Tier 01": "ed27ebfef2f323e964fb1f61391bcb35",
"HD Bluray Tier 02": "c20c8647f2746a1f4c4262b0fbbeeeae",
"HD Bluray Tier 03": "5608c71bcebba0a5e666223bae8c9227",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (HD)": "dc98083864ea246d05a42df0d05f81cc",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Extras": "0a3f082873eb454bde444150b70253cc",
"10 bit": "a5d148168c4506b55cf53984107c396e",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"720p": "b2be17d608fc88818940cd1833b0b24c",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,123 @@
{
"trash_id": "5128baeb2b081b72126bc8482b2a86a0",
"name": "SQP-1 (2160p)",
"trash_score_set": "sqp-1-2160p",
"upgradeAllowed": true,
"cutoff": "Bluray-2160p",
"minFormatScore": 1000,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Bluray-720p", "allowed": true },
{
"name": "Bluray|WEB-1080p",
"allowed": true,
"items": [
"WEBRip-720p",
"WEBDL-720p",
"WEBRip-1080p",
"WEBDL-1080p",
"Bluray-1080p"
]
},
{
"name": "WEB 2160p",
"allowed": true,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": true }
],
"formatItems": {
"TrueHD ATMOS": "496f355514737f7d83bf7aa4d24f8169",
"DTS X": "2f22d89048b01681dde8afe203bf2e95",
"ATMOS (undefined)": "417804f7f2c4308c1f4c5d380d4c4475",
"DD+ ATMOS": "1af239278386be2919e1bcee0bde047e",
"TrueHD": "3cafb66171b47f226146a0770576870f",
"DTS-HD MA": "dcf3ec6938fa32445f590a4da84256cd",
"FLAC": "a570d4a0e56a2874b64e5bfa55202a1b",
"PCM": "e7c2fcae07cbada050a0af3357491d7b",
"DTS-HD HRA": "8e109e50e0a0b83a5098b056e13bf6db",
"DD+": "185f1dd7264c4562b9022d963ac37424",
"DTS-ES": "f9f847ac70a0af62ea4a08280b859636",
"DTS": "1c1a4c5e823891c75bc50380a6866f73",
"AAC": "240770601cc226190c367ef59aba7463",
"DD": "c2998bd0d90ed5621d8df281e839436e",
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"DV (WEBDL)": "923b6abef9b17f937fab56cfcf89e1f1",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"BHDStudio": "5153ec7413d9dae44e24275589b5e944",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"HD Bluray Tier 01": "ed27ebfef2f323e964fb1f61391bcb35",
"HD Bluray Tier 02": "c20c8647f2746a1f4c4262b0fbbeeeae",
"HD Bluray Tier 03": "5608c71bcebba0a5e666223bae8c9227",
"UHD Bluray Tier 01": "4d74ac4c4db0b64bff6ce0cffef99bf0",
"UHD Bluray Tier 02": "a58f517a70193f8e578056642178419d",
"UHD Bluray Tier 03": "e71939fae578037e7aed3ee219bbe7c1",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"10 bit": "a5d148168c4506b55cf53984107c396e",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"720p": "b2be17d608fc88818940cd1833b0b24c",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,109 @@
{
"trash_id": "c3933358ba2356bafc41524f81471069",
"name": "SQP-2",
"trash_score_set": "sqp-2",
"upgradeAllowed": true,
"cutoff": "WEB|Remux|Bluray|2160p",
"minFormatScore": 550,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Remux-1080p", "allowed": true },
{
"name": "WEB|Remux|Bluray|2160p",
"allowed": true,
"items": [
"WEBDL-1080p",
"WEBRip-1080p",
"WEBDL-2160p",
"WEBRip-2160p",
"Remux-2160p",
"Bluray-2160p"
]
}
],
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"UHD Bluray Tier 01": "4d74ac4c4db0b64bff6ce0cffef99bf0",
"UHD Bluray Tier 02": "a58f517a70193f8e578056642178419d",
"UHD Bluray Tier 03": "e71939fae578037e7aed3ee219bbe7c1",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"x264": "2899d84dc9372de3408e6d8cc18e9666",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"2160p": "fb392fb0d61a010ae38e49ceaa24a1ef",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,106 @@
{
"trash_id": "2cf36c1f0106ffac993be003ade51865",
"name": "SQP-3",
"trash_score_set": "sqp-3",
"upgradeAllowed": true,
"cutoff": "WEB|Remux|2160p",
"minFormatScore": 550,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Remux-1080p", "allowed": true },
{
"name": "WEB|Remux|2160p",
"allowed": true,
"items": [
"WEBDL-1080p",
"WEBRip-1080p",
"WEBDL-2160p",
"WEBRip-2160p",
"Remux-2160p"
]
}
],
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"x264": "2899d84dc9372de3408e6d8cc18e9666",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"2160p": "fb392fb0d61a010ae38e49ceaa24a1ef",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,106 @@
{
"trash_id": "013f89e6da27519fe56cf482702a2db9",
"name": "SQP-4",
"trash_score_set": "sqp-4",
"upgradeAllowed": true,
"cutoff": "WEB|2160p",
"minFormatScore": 550,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB|2160p",
"allowed": true,
"items": [
"WEBRip-1080p",
"WEBDL-1080p",
"WEBRip-2160p",
"WEBDL-2160p"
]
}
],
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"x264": "2899d84dc9372de3408e6d8cc18e9666",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"2160p": "fb392fb0d61a010ae38e49ceaa24a1ef",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,109 @@
{
"trash_id": "a7bb1539fd147256b21b1098f3dc2016",
"name": "SQP-5",
"trash_score_set": "sqp-5",
"upgradeAllowed": true,
"cutoff": "WEBDL|Bluray|2160p",
"minFormatScore": 550,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{ "name": "Remux-1080p", "allowed": true },
{
"name": "WEBDL|Bluray|2160p",
"allowed": true,
"items": [
"WEBDL-1080p",
"WEBRip-1080p",
"Bluray-2160p",
"WEBRip-2160p",
"WEBDL-2160p"
]
}
],
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"Remux Tier 01": "3a3ff47579026e76d6504ebea39390de",
"Remux Tier 02": "9f98181fe5a3fbeb0cc29340da2a468a",
"Remux Tier 03": "8baaf0b3142bf4d94c42a724f034e27a",
"UHD Bluray Tier 01": "4d74ac4c4db0b64bff6ce0cffef99bf0",
"UHD Bluray Tier 02": "a58f517a70193f8e578056642178419d",
"UHD Bluray Tier 03": "e71939fae578037e7aed3ee219bbe7c1",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"x264": "2899d84dc9372de3408e6d8cc18e9666",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"1080p": "820b09bb9acbfde9c35c71e0e565dad8",
"2160p": "fb392fb0d61a010ae38e49ceaa24a1ef",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,102 @@
{
"trash_id": "64fb5f9858489bdac2af690e27c8f42f",
"name": "UHD Bluray + WEB",
"upgradeAllowed": true,
"cutoff": "Bluray-2160p",
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "WORKPRINT", "allowed": false },
{ "name": "CAM", "allowed": false },
{ "name": "TELESYNC", "allowed": false },
{ "name": "TELECINE", "allowed": false },
{ "name": "REGIONAL", "allowed": false },
{ "name": "DVDSCR", "allowed": false },
{ "name": "SDTV", "allowed": false },
{ "name": "DVD", "allowed": false },
{ "name": "DVD-R", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "Bluray-480p", "allowed": false },
{ "name": "Bluray-576p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{
"name": "WEB 1080p",
"allowed": false,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
},
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "Remux-1080p", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Remux-2160p", "allowed": false },
{ "name": "BR-DISK", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB 2160p",
"allowed": true,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": true }
],
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"formatItems": {
"DV HDR10Plus": "c53085ddbd027d9624b320627748612f",
"DV HDR10": "e23edd2482476e595fb990b12e7c609c",
"DV": "58d6a88f13e2db7f5059c41047876f00",
"DV HLG": "55d53828b9d81cbe20b02efd00aa0efd",
"DV SDR": "a3e19f8f627608af0211acd02bf89735",
"HDR10+": "b974a6cd08c1066250f1f177d7aa1225",
"HDR10": "dfb86d5941bc9075d6af23b09c2aeecd",
"HDR": "e61e28db95d22bedcadf030b8f156d96",
"HDR (undefined)": "2a4d9069cc1fe3242ff9bdaebed239bb",
"PQ": "08d6d8834ad9ec87b1dc7ec8148e7a1f",
"HLG": "9364dd386c9b4a1100dde8264690add7",
"Remaster": "570bc9ebecd92723d2d21500f4be314c",
"4K Remaster": "eca37840c13c6ef2dd0262b141a5482f",
"Criterion Collection": "e0c07d59beb37348e975a930d5e50319",
"Masters of Cinema": "9d27d9d2181838f76dee150882bdc58c",
"Vinegar Syndrome": "db9b4c4b53d312a3ca5f1378f6440fc9",
"Special Edition": "957d0f44b592285f26449575e8b1167e",
"IMAX": "eecf3a857724171f968a66cb5719e152",
"IMAX Enhanced": "9f6cbff8cfe4ebbc1bde14c7b7bec0de",
"UHD Bluray Tier 01": "4d74ac4c4db0b64bff6ce0cffef99bf0",
"UHD Bluray Tier 02": "a58f517a70193f8e578056642178419d",
"UHD Bluray Tier 03": "e71939fae578037e7aed3ee219bbe7c1",
"WEB Tier 01": "c20f169ef63c5f40c2def54abaf4438e",
"WEB Tier 02": "403816d65392c79236dcb6dd591aeda4",
"WEB Tier 03": "af94e0fe497124d1f9ce732069ec8c3b",
"Repack/Proper": "e7718d7a3ce595f289bfee26adc178f5",
"Repack2": "ae43b294509409a6a13919dedd4764c4",
"BR-DISK": "ed38b889b31be83fda192888e2286d83",
"LQ": "90a6f9a284dff5103f6346090e6280c8",
"LQ (Release Title)": "e204b80c87be9497a8a6eaff48f72905",
"x265 (no HDR/DV)": "839bea857ed2c0a8e084f3cbdbd65ecb",
"3D": "b8cd450cbfa689c0259a01d9e29ba3d6",
"Upscaled": "bfd8eb01832d646a0a89c4deb46f8564",
"Extras": "0a3f082873eb454bde444150b70253cc",
"AMZN": "b3b3a6ac74ecbd56bcdbefa4799fb9df",
"ATVP": "40e9380490e748672c2522eaaeb692f7",
"BCORE": "cc5e51a9e85a6296ceefe097a77f12f4",
"CRiT": "16622a6911d1ab5d5b8b713d5b0036d4",
"DSNP": "84272245b2988854bfb76a16e60baea5",
"HBO": "509e5f41146e278f9eab1ddaceb34515",
"HMAX": "5763d1b0ce84aff3b21038eea8e9b8ad",
"Hulu": "526d445d4c16214309f0fd2b3be18a89",
"MA": "2a6039655313bf5dab1e43523b62c374",
"MAX": "6a061313d22e51e0f25b7cd4dc065233",
"NF": "170b1d363bd8516fbf3a3eb05d4faff6",
"PCOK": "c9fd353f8f5f1baf56dc601c4cb29920",
"PMTP": "e36a0ba1bc902b26ee40818a1d59b8bd",
"STAN": "c2863d2a50c9acad1fb50e53ece60817"
}
}

@ -0,0 +1,82 @@
{
"name": "Advanced Audio Formats",
"trash_id": "e9a1944a254e6f8a9da63083f7ae15cb",
"custom_formats": [
{
"name": "TrueHD Atmos",
"trash_id": "0d7824bb924701997f874e7ff7d4844a",
"required": true
},
{
"name": "DTS X",
"trash_id": "9d00418ba386a083fbf4d58235fc37ef",
"required": true
},
{
"name": "ATMOS (undefined)",
"trash_id": "b6fbafa7942952a13e17e2b1152b539a",
"required": true
},
{
"name": "DD+ ATMOS",
"trash_id": "4232a509ce60c4e208d13825b7c06264",
"required": true
},
{
"name": "TrueHD",
"trash_id": "1808e4b9cee74e064dfae3f1db99dbfe",
"required": true
},
{
"name": "DTS-HD MA",
"trash_id": "c429417a57ea8c41d57e6990a8b0033f",
"required": true
},
{
"name": "FLAC",
"trash_id": "851bd64e04c9374c51102be3dd9ae4cc",
"required": true
},
{
"name": "PCM",
"trash_id": "30f70576671ca933adbdcfc736a69718",
"required": true
},
{
"name": "DTS-HD HRA",
"trash_id": "cfa5fbd8f02a86fc55d8d223d06a5e1f",
"required": true
},
{
"name": "DD+",
"trash_id": "63487786a8b01b7f20dd2bc90dd4a477",
"required": true
},
{
"name": "DTS-ES",
"trash_id": "c1a25cd67b5d2e08287c957b1eb903ec",
"required": true
},
{
"name": "DTS",
"trash_id": "5964f2a8b3be407d083498e4459d05d0",
"required": true
},
{
"name": "AAC",
"trash_id": "a50b8a0c62274a7c38b09a9619ba9d86",
"required": true
},
{
"name": "DD",
"trash_id": "dbe00161b08a25ac6154c55f95e6318d",
"required": true
}
],
"quality_profiles": {
"exclude": {
"WEB-1080p": "72dae194fc92bf828f32cde7744e51a1",
"WEB-2160p": "d1498e7d189fbe6c7110ceaabb7473e6"
}
}
}

@ -0,0 +1,67 @@
{
"name": "HDR Formats",
"trash_id": "c4735e1d02e8738044ad4ad1bf58670c",
"custom_formats": [
{
"name": "DV HDR10Plus",
"trash_id": "2b239ed870daba8126a53bd5dc8dc1c8",
"required": true
},
{
"name": "DV HDR10",
"trash_id": "7878c33f1963fefb3d6c8657d46c2f0a",
"required": true
},
{
"name": "DV",
"trash_id": "6d0d8de7b57e35518ac0308b0ddf404e",
"required": true
},
{
"name": "DV HLG",
"trash_id": "1f733af03141f068a540eec352589a89",
"required": true
},
{
"name": "DV SDR",
"trash_id": "27954b0a80aab882522a88a4d9eae1cd",
"required": true
},
{
"name": "HDR10+",
"trash_id": "a3d82cbef5039f8d295478d28a887159",
"required": true
},
{
"name": "HDR10",
"trash_id": "3497799d29a085e2ac2df9d468413c94",
"required": true
},
{
"name": "HDR",
"trash_id": "3e2c4e748b64a1a1118e0ea3f4cf6875",
"required": true
},
{
"name": "HDR (Undefined)",
"trash_id": "bb019e1cd00f304f80971c965de064dc",
"required": true
},
{
"name": "PQ",
"trash_id": "2a7e3be05d3861d6df7171ec74cad727",
"required": true
},
{
"name": "HLG",
"trash_id": "17e889ce13117940092308f48b48b45b",
"required": true
}
],
"quality_profiles": {
"exclude": {
"WEB-1080p": "72dae194fc92bf828f32cde7744e51a1",
"WEB-2160p": "d1498e7d189fbe6c7110ceaabb7473e6"
}
}
}

@ -0,0 +1,51 @@
{
"name": "Optional",
"trash_id": "cac4624ef8fae1ef5e8abb8cf1cf6607",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "32b367365729d530ca1c124a0b180c64",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "82d40da2bc6923f41e14394075dd4b03",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "e1a997ddb54e3ecbfe06341ad323c458",
"required": false
},
{
"name": "Retags",
"trash_id": "06d66ab109d4d2eddb2794d21526d140",
"required": false
},
{
"name": "Scene",
"trash_id": "1b3994c551cbb92a2c781af061f4ab44",
"required": false
},
{
"name": "x265 (HD)",
"trash_id": "47435ece6b99a0b477caf360e79ba0bb",
"required": false
},
{
"name": "SDR",
"trash_id": "2016d1676f5ee13a5b7257ff86ac9a93",
"required": false
},
{
"name": "SDR (no WEBDL)",
"trash_id": "83304f261cf516bb208c18c54c0adf97",
"required": false
}
],
"quality_profiles": {
"exclude": {
"WEB-1080p": "72dae194fc92bf828f32cde7744e51a1"
}
}
}

@ -0,0 +1,41 @@
{
"name": "Optional",
"trash_id": "f4a0410a1df109a66d6e47dcadcce014",
"custom_formats": [
{
"name": "Bad Dual Groups",
"trash_id": "32b367365729d530ca1c124a0b180c64",
"required": false
},
{
"name": "No-RlsGroup",
"trash_id": "82d40da2bc6923f41e14394075dd4b03",
"required": false
},
{
"name": "Obfuscated",
"trash_id": "e1a997ddb54e3ecbfe06341ad323c458",
"required": false
},
{
"name": "Retags",
"trash_id": "06d66ab109d4d2eddb2794d21526d140",
"required": false
},
{
"name": "Scene",
"trash_id": "1b3994c551cbb92a2c781af061f4ab44",
"required": false
},
{
"name": "x265 (no HDR/DV)",
"trash_id": "9b64dff695c2115facf1b6ea59c9bd07",
"required": false
}
],
"quality_profiles": {
"exclude": {
"WEB-2160p": "d1498e7d189fbe6c7110ceaabb7473e6"
}
}
}

@ -0,0 +1,15 @@
{
"name": "Season Pack",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "Season Packs",
"implementation": "ReleaseTypeSpecification",
"negate": false,
"required": false,
"fields": {
"value": 3
}
}
]
}

@ -5,11 +5,11 @@
"specifications": [
{
"name": "Season Packs",
"implementation": "ReleaseTypeSpecification",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": false,
"fields": {
"value": 3
"value": "\\bS\\d+\\b(?!E\\d+\\b)"
}
}
]

@ -31,7 +31,7 @@
"negate": false,
"required": false,
"fields": {
"value": "\\b(The[ ._-]?Upscaler)\\b"
"value": "\\b(The[ ._-]Upscaler)\\b"
}
},
{

@ -0,0 +1,72 @@
{
"trash_id": "72dae194fc92bf828f32cde7744e51a1",
"name": "WEB-1080p",
"upgradeAllowed": true,
"cutoff": "WEB 1080p",
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "SDTV", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "DVD", "allowed": false },
{ "name": "Bluray-480p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "Bluray-1080p Remux", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{
"name": "WEB 2160p",
"allowed": false,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
},
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Bluray-2160p Remux", "allowed": false },
{
"name": "WEB 1080p",
"allowed": true,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
}
],
"formatItems": {
"BR-DISK": "85c61753df5da1fb2aab6f2a47426b09",
"LQ": "9c11cd3f07101cdba90a2d81cf0e56b4",
"LQ (Release Title)": "e2315f990da2e2cbfc9fa5b7a6fcfe48",
"x265 (HD)": "47435ece6b99a0b477caf360e79ba0bb",
"Extras": "fbcb31d8dabd2a319072b84fc0b7249c",
"Repack/Proper": "ec8fa7296b64e8cd390a1600981f3923",
"Repack v2": "eb3d5cc0a2be0db205fb823640db6a3c",
"Repack v3": "44e7c4de10ae50265753082e5dc76047",
"AMZN": "d660701077794679fd59e8bdf4ce3a29",
"ATVP": "f67c9ca88f463a48346062e8ad07713f",
"CC": "77a7b25585c18af08f60b1547bb9b4fb",
"DCU": "36b72f59f4ea20aad9316f475f2d9fbb",
"DSNP": "89358767a60cc28783cdc3d0be9388a4",
"HBO": "7a235133c87f7da4c8cccceca7e3c7a6",
"HMAX": "a880d6abc21e7c16884f3ae393f84179",
"HULU": "f6cce30f1733d5c8194222a7507909bb",
"iT": "0ac24a2a68a9700bcb7eeca8e5cd644c",
"MAX": "81d1fbf600e2540cee87f3a23f9d3c1c",
"NF": "d34870697c9db575f17700212167be23",
"PCOK": "1656adc6d7bb2c8cca6acfb6592db421",
"PMTP": "c67a75ae4a1715f2bb4d492755ba4195",
"SHO": "ae58039e1319178e6be73caab5c42166",
"STAN": "1efe8da11bfd74fbbcd4d8117ddb9213",
"WEB Tier 01": "e6258996055b9fbab7e9cb2f75819294",
"WEB Tier 02": "58790d4e2fdcd9733aa7ae68ba2bb503",
"WEB Tier 03": "d84935abd3f8556dcd51d4f27e22d0a6",
"WEB Scene": "d0c516558625b04b363fa6c5c2c7cfd4"
}
}

@ -0,0 +1,84 @@
{
"trash_id": "d1498e7d189fbe6c7110ceaabb7473e6",
"name": "WEB-2160p",
"upgradeAllowed": true,
"cutoff": "WEB 2160p",
"minFormatScore": 0,
"cutoffFormatScore": 10000,
"items": [
{ "name": "Unknown", "allowed": false },
{ "name": "SDTV", "allowed": false },
{
"name": "WEB 480p",
"allowed": false,
"items": ["WEBDL-480p", "WEBRip-480p"]
},
{ "name": "DVD", "allowed": false },
{ "name": "Bluray-480p", "allowed": false },
{ "name": "HDTV-720p", "allowed": false },
{ "name": "HDTV-1080p", "allowed": false },
{ "name": "Raw-HD", "allowed": false },
{
"name": "WEB 720p",
"allowed": false,
"items": ["WEBDL-720p", "WEBRip-720p"]
},
{ "name": "Bluray-720p", "allowed": false },
{
"name": "WEB 1080p",
"allowed": false,
"items": ["WEBDL-1080p", "WEBRip-1080p"]
},
{ "name": "Bluray-1080p", "allowed": false },
{ "name": "Bluray-1080p Remux", "allowed": false },
{ "name": "HDTV-2160p", "allowed": false },
{ "name": "Bluray-2160p", "allowed": false },
{ "name": "Bluray-2160p Remux", "allowed": false },
{
"name": "WEB 2160p",
"allowed": true,
"items": ["WEBDL-2160p", "WEBRip-2160p"]
}
],
"formatItems": {
"DV HDR10Plus": "2b239ed870daba8126a53bd5dc8dc1c8",
"DV HDR10": "7878c33f1963fefb3d6c8657d46c2f0a",
"DV": "6d0d8de7b57e35518ac0308b0ddf404e",
"DV HLG": "1f733af03141f068a540eec352589a89",
"DV SDR": "27954b0a80aab882522a88a4d9eae1cd",
"HDR10+": "a3d82cbef5039f8d295478d28a887159",
"HDR10": "3497799d29a085e2ac2df9d468413c94",
"HDR": "3e2c4e748b64a1a1118e0ea3f4cf6875",
"HDR (Undefined)": "bb019e1cd00f304f80971c965de064dc",
"PQ": "2a7e3be05d3861d6df7171ec74cad727",
"HLG": "17e889ce13117940092308f48b48b45b",
"BR-DISK": "85c61753df5da1fb2aab6f2a47426b09",
"LQ": "9c11cd3f07101cdba90a2d81cf0e56b4",
"LQ (Release Title)": "e2315f990da2e2cbfc9fa5b7a6fcfe48",
"x265 (no HDR/DV)": "9b64dff695c2115facf1b6ea59c9bd07",
"Extras": "fbcb31d8dabd2a319072b84fc0b7249c",
"Repack/Proper": "ec8fa7296b64e8cd390a1600981f3923",
"Repack v2": "eb3d5cc0a2be0db205fb823640db6a3c",
"Repack v3": "44e7c4de10ae50265753082e5dc76047",
"ATVP": "f67c9ca88f463a48346062e8ad07713f",
"CC": "77a7b25585c18af08f60b1547bb9b4fb",
"DCU": "36b72f59f4ea20aad9316f475f2d9fbb",
"DSNP": "89358767a60cc28783cdc3d0be9388a4",
"HBO": "7a235133c87f7da4c8cccceca7e3c7a6",
"HMAX": "a880d6abc21e7c16884f3ae393f84179",
"HULU": "f6cce30f1733d5c8194222a7507909bb",
"iT": "0ac24a2a68a9700bcb7eeca8e5cd644c",
"MAX": "81d1fbf600e2540cee87f3a23f9d3c1c",
"NF": "d34870697c9db575f17700212167be23",
"PCOK": "1656adc6d7bb2c8cca6acfb6592db421",
"PMTP": "c67a75ae4a1715f2bb4d492755ba4195",
"SHO": "ae58039e1319178e6be73caab5c42166",
"STAN": "1efe8da11bfd74fbbcd4d8117ddb9213",
"UHD Streaming Boost": "43b3cf48cb385cd3eac608ee6bca7f09",
"UHD Streaming Cut": "d2d299244a92b8a52d4921ce3897a256",
"WEB Tier 01": "e6258996055b9fbab7e9cb2f75819294",
"WEB Tier 02": "58790d4e2fdcd9733aa7ae68ba2bb503",
"WEB Tier 03": "d84935abd3f8556dcd51d4f27e22d0a6",
"WEB Scene": "d0c516558625b04b363fa6c5c2c7cfd4"
}
}

@ -2,7 +2,7 @@ mkdocs-glightbox==0.3.7
mkdocs-awesome-pages-plugin==2.9.2
mkdocs-git-revision-date-localized-plugin==1.2.4
mkdocs-macros-plugin==1.0.5
mkdocs-material==9.5.16
mkdocs-material==9.5.18
mkdocs-minify-plugin==0.8.0
mkdocs-redirects==1.2.1
mkdocs-include-markdown-plugin==6.0.5

@ -1,3 +1,6 @@
# 2024-04-07 09:35
- [feat(guide): **NEW** Plex Guide what does my media player support](https://github.com/TRaSH-Guides/Guides/pull/1868)
# 2024-04-01 16:30
- [feat(guide): minor changes to several guides](https://github.com/TRaSH-Guides/Guides/pull/1858)
- [feat(guide): Update Sonarr Remux Tiers](https://github.com/TRaSH-Guides/Guides/pull/1862)

@ -4,4 +4,4 @@
[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 library 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.
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.

@ -9,7 +9,7 @@
Breakdown and Why
- **{{ radarr['cf']['sdr']['name'] }}:** {! include-markdown "../../includes/cf-descriptions/sdr.md" !}
- **{{ radarr['cf']['sdr']['name'] }}:** This will prevent grabbing UHD/4k releases without HDR Formats.
- **{{ radarr['cf']['sdr-no-webdl']['name'] }}:** This will prevent grabbing UHD/4k Remux and Bluray encode releases without HDR Formats. - i.e., SDR WEB releases will still be allowed since 4K SDR WEB releases can often look better than the 1080p version due to the improved bitrate.
!!! Danger "Don't use this together with [{{ radarr['cf']['sdr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#sdr), Only ever include one of them :warning:"

@ -13,7 +13,7 @@
Breakdown and Why
- **{{ sonarr['cf']['sdr']['name'] }}:** {! include-markdown "../../includes/cf-descriptions/sdr.md" !}
- **{{ sonarr['cf']['sdr']['name'] }}:** This will prevent grabbing UHD/4k releases without HDR Formats.
- **{{ sonarr['cf']['sdr-no-webdl']['name'] }}:** This will prevent grabbing UHD/4k Remux and Bluray encode releases without HDR Formats. - i.e., SDR WEB releases will still be allowed since 4K SDR WEB releases can often look better than the 1080p version due to the improved bitrate.
!!! Danger "Don't use this together with [{{ sonarr['cf']['sdr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sdr), Only ever include one of them :warning:"

@ -2,9 +2,9 @@
??? abstract "Workflow Logic - [Click to show/hide]"
**Depending what's released first and available the following Workflow Logic will be used:**
**Depending on what's released first and available the following Workflow Logic will be used:**
- When the 4k WEBDL is released it will download the 4k WEB-DL. (streaming services)
- When the 4k WEB-DL is released it will download the 4k WEB-DL. (streaming services)
- When the 4k Remux is released it will upgrade to the 4k Remux.
- 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*)
@ -13,9 +13,9 @@
*Possible Variables*
**When no 4k exist it will grab the following:**
**When no 4k release exists, it will grab the following:**
- 1080p WEBDL with DV/HDR (*optional also 1080p WEBDL without DV/HDR*)
- 1080p Remux
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When a IMAX Enhanced exist it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will be **ONLY** chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to a `HDR`."
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When an IMAX Enhanced exists, it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will **ONLY** be chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to an `HDR`."

@ -2,9 +2,9 @@
??? abstract "Workflow Logic - [Click to show/hide]"
**Depending what's released first and available the following Workflow Logic will be used:**
**Depending on what's released first and available the following Workflow Logic will be used:**
- When the 4k WEBDL is released it will download the 4k WEB-DL. (streaming services)
- When the 4k WEB-DL is released it will download the 4k WEB-DL. (streaming services)
- 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*)
@ -12,9 +12,9 @@
*Possible Variables*
**When no 4k exist it will grab the following:**
**When no 4k release exists, it will grab the following:**
- 1080p WEBDL with DV/HDR (*optional also 1080p WEBDL without DV/HDR*)
- 1080p WEB-DL with DV/HDR (*optional also 1080p WEBDL without DV/HDR*)
- 1080p Remux
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When a IMAX Enhanced exist it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will be **ONLY** chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to a `HDR`."
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When an IMAX Enhanced exists it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will **ONLY** be chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to a `HDR`."

@ -2,9 +2,9 @@
??? question "Why choose this quality profile? - [Click to show/hide]"
- You got a setup that completely supports DoVi from start to end.
- HDR/DoVi (Depending what's offered and often both)
- You have a setup that completely supports DoVi from start to end.
- HDR/DoVi (Depending on what's offered and often both)
- If available HD Audio (Atmos, TrueHD etc...)
- You're okay with WEBDL, with the option to upgrade to IMAX Enhanced.
- You're okay with WEB-DL, with the option to upgrade to IMAX Enhanced.
- You don't need the huge Remuxes or UHD Bluray Encodes but still want HDR Formats.
- You want a smaller files for your kids movies (Disney/Pixar etc)
- You want smaller files for your kid's movies (Disney/Pixar etc)

@ -2,18 +2,18 @@
??? abstract "Workflow Logic - [Click to show/hide]"
**Depending what's released first and available the following Workflow Logic will be used:**
**Depending on what's released first and available the following Workflow Logic will be used:**
- When the 4k WEBDL is released it will download the 4k WEB-DL. (streaming services)
- 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*
**When no 4k exist it will grab the following:**
**When no 4k release exists, it will grab the following:**
- 1080p WEBDL with DV/HDR (*optional also 1080p WEBDL without DV/HDR*)
- 1080p Remux
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When a IMAX Enhanced exist it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will be **ONLY** chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to a `HDR`."
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When an IMAX Enhanced exists, it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will **ONLY** be chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to an `HDR`."

@ -2,9 +2,9 @@
??? abstract "Workflow Logic - [Click to show/hide]"
**Depending what's released first and available the following Workflow Logic will be used:**
**Depending on what's released first and available the following Workflow Logic will be used:**
- When the 4k WEBDL is released it will download the 4k WEB-DL. (streaming services)
- When the 4k WEB-DL is released it will download the 4k WEB-DL. (streaming services)
- 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*)
@ -14,9 +14,9 @@
*Possible Variables*
**When no 4k exist it will grab the following:**
**When no 4k release exists, it will grab the following:**
- 1080p WEBDL with DV/HDR (*optional also 1080p WEBDL without DV/HDR*)
- 1080p Remux
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When a IMAX Enhanced exist it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will be **ONLY** chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to a `HDR`."
!!! info "[*Optional*] IMAX Enhanced (IMAX-E)<br>- When an IMAX Enhanced exists, it will upgrade/downgrade to IMAX Enhanced.<br>- IMAX Enhanced will **ONLY** be chosen if it has the same **AUDIO** and **HDR Metadata**<br>- It won't downgrade from a `TrueHD Atmos` to a `DD+ Atmos` or from a `DV` to an `HDR`."

@ -4,13 +4,17 @@
"radarr": {
"custom_formats": ["docs/json/radarr/cf"],
"qualities": ["docs/json/radarr/quality-size"],
"naming": ["docs/json/radarr/naming"]
"naming": ["docs/json/radarr/naming"],
"quality_profiles": ["docs/json/radarr/quality-profiles"],
"custom_format_groups": ["docs/json/radarr/cf-groups"]
},
"sonarr": {
"release_profiles": ["docs/json/sonarr/rp"],
"custom_formats": ["docs/json/sonarr/cf"],
"qualities": ["docs/json/sonarr/quality-size"],
"naming": ["docs/json/sonarr/naming"]
"naming": ["docs/json/sonarr/naming"],
"quality_profiles": ["docs/json/sonarr/quality-profiles"],
"custom_format_groups": ["docs/json/sonarr/cf-groups"]
}
},
"recyclarr": {

@ -26,7 +26,9 @@
"properties": {
"custom_formats": { "$ref": "#/$defs/paths_object" },
"qualities": { "$ref": "#/$defs/paths_object" },
"naming": { "$ref": "#/$defs/paths_object" }
"naming": { "$ref": "#/$defs/paths_object" },
"quality_profiles": { "$ref": "#/$defs/paths_object" },
"custom_format_groups": { "$ref": "#/$defs/paths_object" }
}
},
"sonarr": {
@ -36,7 +38,9 @@
"custom_formats": { "$ref": "#/$defs/paths_object" },
"release_profiles": { "$ref": "#/$defs/paths_object" },
"qualities": { "$ref": "#/$defs/paths_object" },
"naming": { "$ref": "#/$defs/paths_object" }
"naming": { "$ref": "#/$defs/paths_object" },
"quality_profiles": { "$ref": "#/$defs/paths_object" },
"custom_format_groups": { "$ref": "#/$defs/paths_object" }
}
},
"recyclarr": {

@ -65,7 +65,8 @@ plugins:
- git-revision-date-localized:
type: datetime
locale: en
fallback_to_build_date: false
fallback_to_build_date: true
enable_creation_date: true
- awesome-pages
- glightbox:
touchNavigation: true

Loading…
Cancel
Save