diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md
index 02d0746d8..633b031bc 100644
--- a/docs/Radarr/Radarr-collection-of-custom-formats.md
+++ b/docs/Radarr/Radarr-collection-of-custom-formats.md
@@ -48,7 +48,7 @@ I also made 3 guides related to this one.
------
| Movie Versions | Unwanted | HQ Release Groups | Streaming Services |
-|-----------------------------------------------|-----------------------|-------------------------------------------|----------------------------|
+| --------------------------------------------- | --------------------- | ----------------------------------------- | -------------------------- |
| [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [Remux Tier 01](#remux-tier-01) | [Amazon](#amzn) |
| [Remaster](#remaster) | [LQ](#lq) | [Remux Tier 02](#remux-tier-02) | [Apple TV+](#atvp) |
| [4K Remaster](#4k-remaster) | [3D](#3d) | [Remux Tier 03](#remux-tier-03) | [Criterion Channel](#crit) |
@@ -64,6 +64,7 @@ I also made 3 guides related to this one.
| | | | [Pathe Thuis](#pathe) |
| | | | [Bravia Core](#bcore) |
| | | | [Stan](#stan) |
+| | | | [Crave](#crav) |
------
@@ -1900,6 +1901,24 @@ I also made 3 guides related to this one.
------
+### Crav
+
+Crave
+
+??? question "CRAVE - [CLICK TO EXPAND]"
+
+ [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Crave_(streaming_service)){:target="_blank" rel="noopener noreferrer"}
+
+??? example "JSON - [CLICK TO EXPAND]"
+
+ ```json
+ [[% filter indent(width=4) %]][[% include 'json/radarr/cf/crav.json' %]][[% endfilter %]]
+ ```
+
+[TOP](#index)
+
+------
+
## Anime
------
diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md
index 322925ab1..ef2021659 100644
--- a/docs/Sonarr/sonarr-collection-of-custom-formats.md
+++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md
@@ -69,6 +69,7 @@ I also made 3 guides related to this one.
| | | | [SALTO](#salto) |
| | | | [RTBF](#rtbf) |
| | | | [Comedy Central](#cc) |
+| | | | [Crave](#crav) |
| | | | [UHD Streaming Boost](#uhd-streaming-boost) |
| | | | [UHD Streaming Cut](#uhd-streaming-cut) |
@@ -1755,6 +1756,24 @@ I also made 3 guides related to this one.
------
+### Crav
+
+Crave
+
+??? question "CRAVE - [CLICK TO EXPAND]"
+
+ [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Crave_(streaming_service)){:target="_blank" rel="noopener noreferrer"}
+
+??? example "JSON - [CLICK TO EXPAND]"
+
+ ```json
+ [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/crav.json' %]][[% endfilter %]]
+ ```
+
+[TOP](#index)
+
+------
+
### UHD Streaming Boost
??? question "UHD Streaming Boost - [CLICK TO EXPAND]"
diff --git a/docs/json/radarr/cf/crav.json b/docs/json/radarr/cf/crav.json
new file mode 100644
index 000000000..f67ef4945
--- /dev/null
+++ b/docs/json/radarr/cf/crav.json
@@ -0,0 +1,35 @@
+{
+ "trash_id": "f6ff65b3f4b464a79dcc75950fe20382",
+ "trash_regex": "https://regex101.com/r/eymcie/1",
+ "name": "CRAV",
+ "includeCustomFormatWhenRenaming": true,
+ "specifications": [
+ {
+ "name": "Crave",
+ "implementation": "ReleaseTitleSpecification",
+ "negate": false,
+ "required": true,
+ "fields": {
+ "value": "\\b(crav(e)?)\\b[ ._-]web[ ._-]?(dl|rip)?\\b"
+ }
+ },
+ {
+ "name": "WEBDL",
+ "implementation": "SourceSpecification",
+ "negate": false,
+ "required": false,
+ "fields": {
+ "value": 7
+ }
+ },
+ {
+ "name": "WEBRIP",
+ "implementation": "SourceSpecification",
+ "negate": false,
+ "required": false,
+ "fields": {
+ "value": 8
+ }
+ }
+ ]
+}
diff --git a/docs/json/sonarr/cf/crav.json b/docs/json/sonarr/cf/crav.json
new file mode 100644
index 000000000..3f7282d1d
--- /dev/null
+++ b/docs/json/sonarr/cf/crav.json
@@ -0,0 +1,35 @@
+{
+ "trash_id": "4e9a630db98d5391aec1368a0256e2fe",
+ "trash_regex": "https://regex101.com/r/eymcie/1",
+ "name": "CRAV",
+ "includeCustomFormatWhenRenaming": true,
+ "specifications": [
+ {
+ "name": "Crave",
+ "implementation": "ReleaseTitleSpecification",
+ "negate": false,
+ "required": true,
+ "fields": {
+ "value": "\\b(crav(e)?)\\b[ ._-]web[ ._-]?(dl|rip)?\\b"
+ }
+ },
+ {
+ "name": "WEBDL",
+ "implementation": "SourceSpecification",
+ "negate": false,
+ "required": false,
+ "fields": {
+ "value": 3
+ }
+ },
+ {
+ "name": "WEBRIP",
+ "implementation": "SourceSpecification",
+ "negate": false,
+ "required": false,
+ "fields": {
+ "value": 4
+ }
+ }
+ ]
+}
diff --git a/docs/updates.txt b/docs/updates.txt
index 880ee1e4b..cddfe8695 100644
--- a/docs/updates.txt
+++ b/docs/updates.txt
@@ -1,3 +1,7 @@
+# 2023-07-02 18:20
+**[New]**
+- [Radarr and Sonarr] Added: Streaming Service Crave with a score of `0` mainly for the naming scheme. Used `CRAV` being most of the Scene uses `CRAV` over `CRAVE`.
+
# 2023-06-30 21:01
**[Updated]**
- [Starr] Update logic for identifiying Retags by EZTV
diff --git a/includes/cf/radarr-streaming-services.md b/includes/cf/radarr-streaming-services.md
index 4f73f23c8..252c874f5 100644
--- a/includes/cf/radarr-streaming-services.md
+++ b/includes/cf/radarr-streaming-services.md
@@ -4,6 +4,7 @@
| [{{ radarr['cf']['amzn']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#amzn) | 0 | {{ radarr['cf']['amzn']['trash_id'] }} |
| [{{ radarr['cf']['atvp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#atvp) | 0 | {{ radarr['cf']['atvp']['trash_id'] }} |
| [{{ radarr['cf']['bcore']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bcore) | {{ radarr['cf']['bcore']['trash_score'] }} | {{ radarr['cf']['bcore']['trash_id'] }} |
+ | [{{ radarr['cf']['crav']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#crav) | 0 | {{ radarr['cf']['crav']['trash_id'] }} |
| [{{ radarr['cf']['crit']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#crit) | {{ radarr['cf']['crit']['trash_score'] }} | {{ radarr['cf']['crit']['trash_id'] }} |
| [{{ radarr['cf']['dsnp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dsnp) | 0 | {{ radarr['cf']['dsnp']['trash_id'] }} |
| [{{ radarr['cf']['hbo']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hbo) | 0 | {{ radarr['cf']['hbo']['trash_id'] }} |
@@ -20,5 +21,5 @@
------
Breakdown and Why
- - These reason why these Custom Formats have a score of `0` is because they are mainly used for the naming scheme and other variables should decide for movies if a certain release if preferred.
+ - The reason why these Custom Formats have a score of `0` is because they are mainly used for the naming scheme and other variables should decide for movies if a certain release if preferred.
- `BCore`, `CRiT` and `MA` are the only ones with a score because of their better source material, or higher bitrate and quality compared to other streaming services.
diff --git a/includes/cf/sonarr-streaming-services.md b/includes/cf/sonarr-streaming-services.md
index e6617ad15..eeeebd5fc 100644
--- a/includes/cf/sonarr-streaming-services.md
+++ b/includes/cf/sonarr-streaming-services.md
@@ -1,22 +1,23 @@
??? abstract "Streaming Services - [CLICK TO EXPAND]"
- | Custom Format | Score | Trash ID |
- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | ----------------------------------------------------- |
- | [{{ sonarr['cf']['atvp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#atvp) | {{ sonarr['cf']['atvp']['trash_score'] }} | {{ sonarr['cf']['atvp']['trash_id'] }} |
- | [{{ sonarr['cf']['dsnp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dsnp) | {{ sonarr['cf']['dsnp']['trash_score'] }} | {{ sonarr['cf']['dsnp']['trash_id'] }} |
- | [{{ sonarr['cf']['max']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#max) | {{ sonarr['cf']['max']['trash_score'] }} | {{ sonarr['cf']['max']['trash_id'] }} |
- | [{{ sonarr['cf']['hmax']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hmax) | {{ sonarr['cf']['hmax']['trash_score'] }} | {{ sonarr['cf']['hmax']['trash_id'] }} |
- | [{{ sonarr['cf']['qibi']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#qibi) | {{ sonarr['cf']['qibi']['trash_score'] }} | {{ sonarr['cf']['qibi']['trash_id'] }} |
- | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_score'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} |
- | [{{ sonarr['cf']['nf']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#nf) | {{ sonarr['cf']['nf']['trash_score'] }} | {{ sonarr['cf']['nf']['trash_id'] }} |
- | [{{ sonarr['cf']['pcok']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#pcok) | {{ sonarr['cf']['pcok']['trash_score'] }} | {{ sonarr['cf']['pcok']['trash_id'] }} |
- | [{{ sonarr['cf']['pmtp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#pmtp) | {{ sonarr['cf']['pmtp']['trash_score'] }} | {{ sonarr['cf']['pmtp']['trash_id'] }} |
- | [{{ sonarr['cf']['stan']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#stan) | {{ sonarr['cf']['stan']['trash_score'] }} | {{ sonarr['cf']['stan']['trash_id'] }} |
- | [{{ sonarr['cf']['cc']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#cc) | {{ sonarr['cf']['cc']['trash_score'] }} | {{ sonarr['cf']['cc']['trash_id'] }} |
- | [{{ sonarr['cf']['dcu']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dcu) | {{ sonarr['cf']['dcu']['trash_score'] }} | {{ sonarr['cf']['dcu']['trash_id'] }} |
- | [{{ sonarr['cf']['hbo']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hbo) | {{ sonarr['cf']['hbo']['trash_score'] }} | {{ sonarr['cf']['hbo']['trash_id'] }} |
- | [{{ sonarr['cf']['hulu']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hulu) | {{ sonarr['cf']['hulu']['trash_score'] }} | {{ sonarr['cf']['hulu']['trash_id'] }} |
- | [{{ sonarr['cf']['it']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#it) | {{ sonarr['cf']['it']['trash_score'] }} | {{ sonarr['cf']['it']['trash_id'] }} |
- | [{{ sonarr['cf']['nlz']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#nlz) | {{ sonarr['cf']['nlz']['trash_score'] }} | {{ sonarr['cf']['nlz']['trash_id'] }} |
- | [{{ sonarr['cf']['red']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#red) | {{ sonarr['cf']['red']['trash_score'] }} | {{ sonarr['cf']['red']['trash_id'] }} |
- | [{{ sonarr['cf']['sho']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sho) | {{ sonarr['cf']['sho']['trash_score'] }} | {{ sonarr['cf']['sho']['trash_id'] }} |
- | [{{ sonarr['cf']['vdl']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vdl) | {{ sonarr['cf']['vdl']['trash_score'] }} | {{ sonarr['cf']['vdl']['trash_id'] }} |
+ | Custom Format | Score | Trash ID |
+ | --------------------------------------------------------------------------------------- | ----------------------------------------- | -------------------------------------- |
+ | [{{ sonarr['cf']['atvp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#atvp) | {{ sonarr['cf']['atvp']['trash_score'] }} | {{ sonarr['cf']['atvp']['trash_id'] }} |
+ | [{{ sonarr['cf']['crav']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#crav) | 0 | {{ sonarr['cf']['crav']['trash_id'] }} |
+ | [{{ sonarr['cf']['dsnp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dsnp) | {{ sonarr['cf']['dsnp']['trash_score'] }} | {{ sonarr['cf']['dsnp']['trash_id'] }} |
+ | [{{ sonarr['cf']['max']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#max) | {{ sonarr['cf']['max']['trash_score'] }} | {{ sonarr['cf']['max']['trash_id'] }} |
+ | [{{ sonarr['cf']['hmax']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hmax) | {{ sonarr['cf']['hmax']['trash_score'] }} | {{ sonarr['cf']['hmax']['trash_id'] }} |
+ | [{{ sonarr['cf']['qibi']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#qibi) | {{ sonarr['cf']['qibi']['trash_score'] }} | {{ sonarr['cf']['qibi']['trash_id'] }} |
+ | [{{ sonarr['cf']['amzn']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#amzn) | {{ sonarr['cf']['amzn']['trash_score'] }} | {{ sonarr['cf']['amzn']['trash_id'] }} |
+ | [{{ sonarr['cf']['nf']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#nf) | {{ sonarr['cf']['nf']['trash_score'] }} | {{ sonarr['cf']['nf']['trash_id'] }} |
+ | [{{ sonarr['cf']['pcok']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#pcok) | {{ sonarr['cf']['pcok']['trash_score'] }} | {{ sonarr['cf']['pcok']['trash_id'] }} |
+ | [{{ sonarr['cf']['pmtp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#pmtp) | {{ sonarr['cf']['pmtp']['trash_score'] }} | {{ sonarr['cf']['pmtp']['trash_id'] }} |
+ | [{{ sonarr['cf']['stan']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#stan) | {{ sonarr['cf']['stan']['trash_score'] }} | {{ sonarr['cf']['stan']['trash_id'] }} |
+ | [{{ sonarr['cf']['cc']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#cc) | {{ sonarr['cf']['cc']['trash_score'] }} | {{ sonarr['cf']['cc']['trash_id'] }} |
+ | [{{ sonarr['cf']['dcu']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dcu) | {{ sonarr['cf']['dcu']['trash_score'] }} | {{ sonarr['cf']['dcu']['trash_id'] }} |
+ | [{{ sonarr['cf']['hbo']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hbo) | {{ sonarr['cf']['hbo']['trash_score'] }} | {{ sonarr['cf']['hbo']['trash_id'] }} |
+ | [{{ sonarr['cf']['hulu']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hulu) | {{ sonarr['cf']['hulu']['trash_score'] }} | {{ sonarr['cf']['hulu']['trash_id'] }} |
+ | [{{ sonarr['cf']['it']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#it) | {{ sonarr['cf']['it']['trash_score'] }} | {{ sonarr['cf']['it']['trash_id'] }} |
+ | [{{ sonarr['cf']['nlz']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#nlz) | {{ sonarr['cf']['nlz']['trash_score'] }} | {{ sonarr['cf']['nlz']['trash_id'] }} |
+ | [{{ sonarr['cf']['red']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#red) | {{ sonarr['cf']['red']['trash_score'] }} | {{ sonarr['cf']['red']['trash_id'] }} |
+ | [{{ sonarr['cf']['sho']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sho) | {{ sonarr['cf']['sho']['trash_score'] }} | {{ sonarr['cf']['sho']['trash_id'] }} |
+ | [{{ sonarr['cf']['vdl']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#vdl) | {{ sonarr['cf']['vdl']['trash_score'] }} | {{ sonarr['cf']['vdl']['trash_id'] }} |
diff --git a/includes/cf/sonarr-uhd-streaming-services.md b/includes/cf/sonarr-uhd-streaming-services.md
index 56a9681e0..c06bdd496 100644
--- a/includes/cf/sonarr-uhd-streaming-services.md
+++ b/includes/cf/sonarr-uhd-streaming-services.md
@@ -2,6 +2,7 @@
| Custom Format | Score | Trash ID |
| ------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | ----------------------------------------------------- |
| [{{ sonarr['cf']['atvp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#atvp) | {{ sonarr['cf']['atvp']['trash_score'] }} | {{ sonarr['cf']['atvp']['trash_id'] }} |
+ | [{{ sonarr['cf']['crav']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#crav) | 0 | {{ sonarr['cf']['crav']['trash_id'] }} |
| [{{ sonarr['cf']['dsnp']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#dsnp) | {{ sonarr['cf']['dsnp']['trash_score'] }} | {{ sonarr['cf']['dsnp']['trash_id'] }} |
| [{{ sonarr['cf']['max']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#max) | {{ sonarr['cf']['max']['trash_score'] }} | {{ sonarr['cf']['max']['trash_id'] }} |
| [{{ sonarr['cf']['hmax']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#hmax) | {{ sonarr['cf']['hmax']['trash_score'] }} | {{ sonarr['cf']['hmax']['trash_id'] }} |