diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index 633b031bc..96310f5da 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -65,6 +65,7 @@ I also made 3 guides related to this one. | | | | [Bravia Core](#bcore) | | | | | [Stan](#stan) | | | | | [Crave](#crav) | +| | | | [OViD](#ovid) | ------ @@ -1919,6 +1920,24 @@ I also made 3 guides related to this one. ------ +### OViD + +OViD + +??? question "CRAVE - [CLICK TO EXPAND]" + + [OViD Website](https://search.ovid.tv/other/about){:target="_blank" rel="noopener noreferrer"} + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ovid.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 ef2021659..f34400a2f 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -70,6 +70,7 @@ I also made 3 guides related to this one. | | | | [RTBF](#rtbf) | | | | | [Comedy Central](#cc) | | | | | [Crave](#crav) | +| | | | [OViD](#ovid) | | | | | [UHD Streaming Boost](#uhd-streaming-boost) | | | | | [UHD Streaming Cut](#uhd-streaming-cut) | @@ -1774,6 +1775,24 @@ I also made 3 guides related to this one. ------ +### OViD + +OViD + +??? question "CRAVE - [CLICK TO EXPAND]" + + [OViD Website](https://search.ovid.tv/other/about){:target="_blank" rel="noopener noreferrer"} + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/ovid.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### UHD Streaming Boost ??? question "UHD Streaming Boost - [CLICK TO EXPAND]" diff --git a/docs/json/radarr/cf/ovid.json b/docs/json/radarr/cf/ovid.json new file mode 100644 index 000000000..dd296fa3e --- /dev/null +++ b/docs/json/radarr/cf/ovid.json @@ -0,0 +1,35 @@ +{ + "trash_id": "fbca986396c5e695ef7b2def3c755d01", + "trash_regex": "https://regex101.com/r/hWHpjV/1", + "name": "OViD", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "OViD", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(ovid)\\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/ovid.json b/docs/json/sonarr/cf/ovid.json new file mode 100644 index 000000000..9cbaf36ca --- /dev/null +++ b/docs/json/sonarr/cf/ovid.json @@ -0,0 +1,35 @@ +{ + "trash_id": "fb1a91cdc0f26f7ca0696e0e95274645", + "trash_regex": "https://regex101.com/r/hWHpjV/1", + "name": "OViD", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "OViD", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(ovid)\\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/includes/cf/radarr-streaming-services.md b/includes/cf/radarr-streaming-services.md index 252c874f5..cbed452dc 100644 --- a/includes/cf/radarr-streaming-services.md +++ b/includes/cf/radarr-streaming-services.md @@ -17,6 +17,7 @@ | [{{ radarr['cf']['pcok']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#pcok) | 0 | {{ radarr['cf']['pcok']['trash_id'] }} | | [{{ radarr['cf']['pmtp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#pmtp) | 0 | {{ radarr['cf']['pmtp']['trash_id'] }} | | [{{ radarr['cf']['stan']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#stan) | 0 | {{ radarr['cf']['stan']['trash_id'] }} | + | [{{ radarr['cf']['ovid']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#ovid) | 0 | {{ radarr['cf']['ovid']['trash_id'] }} | ------ Breakdown and Why