diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index 0338373ec..491ccf0e2 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -80,6 +80,7 @@ I also made 3 guides related to this one. | | [SDR](#sdr) | [FanSUB](#fansub) | | | | [DV (FEL)](#dv-fel) | [FastSUB](#fastsub) | | | | [Line/Mic Dubbed](#linemic-dubbed) | | | +| | [HFR](#hfr) | | | ------ @@ -1237,6 +1238,22 @@ I also made 3 guides related to this one. ------ +### HFR + +??? question "HFR - [CLICK TO EXPAND]" + + - This will boost the score for HFR releases. HFR stands for High Frame Rate and refers to a video format that uses a higher number of frames per second than traditional video, resulting in smoother and more detailed motion. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hfr.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ## Misc ------ diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index 1a373aa8c..ca2fbd876 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -85,6 +85,7 @@ I also made 3 guides related to this one. | | [AV1](#av1) | [VOSTFR](#vostfr) | [FR LQ](#fr-lq) | | | [SDR](#sdr) | [FanSUB](#fansub) | | | | [DV (FEL)](#dv-fel) | [FastSUB](#fastsub) | | +| | [HFR](#hfr) | | | ------ @@ -1144,6 +1145,22 @@ I also made 3 guides related to this one. ------ +### HFR + +??? question "HFR - [CLICK TO EXPAND]" + + - This will boost the score for HFR releases. HFR stands for High Frame Rate and refers to a video format that uses a higher number of frames per second than traditional video, resulting in smoother and more detailed motion. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/hfr.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ## HQ Source Groups ------ diff --git a/docs/json/radarr/cf/hfr.json b/docs/json/radarr/cf/hfr.json new file mode 100644 index 000000000..5b0bdaf00 --- /dev/null +++ b/docs/json/radarr/cf/hfr.json @@ -0,0 +1,16 @@ +{ + "trash_id": "73613461ac2cea99d52c4cd6e177ab82", + "name": "HFR", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "HFR", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(HFR)\\b" + } + } + ] +} diff --git a/docs/json/sonarr/cf/hfr.json b/docs/json/sonarr/cf/hfr.json new file mode 100644 index 000000000..08ce14bbe --- /dev/null +++ b/docs/json/sonarr/cf/hfr.json @@ -0,0 +1,16 @@ +{ + "trash_id": "1bd69272e23c5e6c5b1d6c8a36fce95e", + "name": "HFR", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "HFR", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(HFR)\\b" + } + } + ] +}