1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-04 11:07:59 +02:00

Updated Custom Formats (markdown)

Leonardo Galli 2018-03-26 14:19:47 +02:00
parent dd2acf77e8
commit 0515af6df5

@ -54,4 +54,22 @@ The Value is used for the matching.
| M_REMUX | Prometheus.2012.Bluray.1080p | M_NONE == M_REMUX | NO |
| M_REMUX | Prometheus.2012.Bluray.Remux.1080p | M_REMUX == M_REMUX | YES |
| L_English | Prometheus.2012.Bluray.1080p | [L_English] contains L_English | YES |
| L_French | Prometheus.2012.Bluray.MULTI.FRENCH.ENGLISH.1080p | [L_English, L_French] contains L_French | YES |
| L_French | Prometheus.2012.Bluray.MULTI.FRENCH.ENGLISH.1080p | [L_English, L_French] contains L_French | YES |
# Matching
How does Radarr decide which quality or custom format to use?
First of all, all existing qualities also have quality tags, though they cannot be edited for safety reasons. Now Radarr uses the following steps to find the best matching quality or custom format:
1. Go through each quality & custom format and find out which quality tags match and which don't
2. Discard all qualities & custom formats, where an absolutely required quality tag (_RE_) does not match
3. Discard all qualities & custom formats, where at least one quality tag of a type is present and none of the tags of this type match. Examples:
* S_Bluray (NO MATCH), R_1080 (MATCH) Will be discarded, since a source tag is present, but none of the source tags match
* S_Bluray (NO MATCH), S_WEBDL (MATCH), R_1080 (MATCH) Will not be discarded, since at least one of the source tags matches
4. Find quality or custom format with the most matching tags
* **Note:** If there are more than one found, Radarr chooses the one, where the size of the quality or format matches the one of the release or file best.
* Example: WEBDL-1080p (0GB<20GB) and Custom WEBDL-1080p (5GB<10GB). Both have the same tags. If the release has a size of 15 GB, Radarr will choose the WEBDL-1080p quality. If the release has a size of 7GB Radarr will choose the Custom WEBDL-1080p format. If the release has a size of 30GB Radarr will choose the WEBDL-1080p quality.
* This allows you to prefer smaller or larger releases and even upgrade to them. See full examples below.
# Examples
Below you can find a list of examples, ranging from simple custom formats to multiple custom formats with recommendations for your profile, allowing practically any workflow to be fully automated.