From 559d089e6718808ef0391108de16688457d0fe15 Mon Sep 17 00:00:00 2001 From: nuxencs <47067662+nuxencs@users.noreply.github.com> Date: Sat, 9 Jul 2022 18:15:54 +0200 Subject: [PATCH 1/3] Added: Streaming Service CF for MoviesAnywhere --- docs/json/radarr/ma.json | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docs/json/radarr/ma.json diff --git a/docs/json/radarr/ma.json b/docs/json/radarr/ma.json new file mode 100644 index 000000000..f69fccc61 --- /dev/null +++ b/docs/json/radarr/ma.json @@ -0,0 +1,42 @@ +{ + "name": "MA", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Movies Anywhere", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(ma)\\b" + } + }, + { + "name": "Not DTS-HD MA", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "dts[ .-]?(ma\\b|hd[ .-]?ma|hd)(?!china|r)" + } + }, + { + "name": "WEBDL", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 7 + } + }, + { + "name": "WEBRIP", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 8 + } + } + ] +} From f3d8d005dfe7a2f3eae0c9b98ce82bebfba2f967 Mon Sep 17 00:00:00 2001 From: nuxencs <47067662+nuxencs@users.noreply.github.com> Date: Sat, 9 Jul 2022 18:31:35 +0200 Subject: [PATCH 2/3] Updated: added trash_id and trash_score to "MA" CF --- docs/json/radarr/ma.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/json/radarr/ma.json b/docs/json/radarr/ma.json index f69fccc61..58560a116 100644 --- a/docs/json/radarr/ma.json +++ b/docs/json/radarr/ma.json @@ -1,4 +1,6 @@ { + "trash_id": "2a6039655313bf5dab1e43523b62c374", + "trash_score": "0", "name": "MA", "includeCustomFormatWhenRenaming": true, "specifications": [ From 689d26a17ad784767b1f172203ad2a575f33c426 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 10 Jul 2022 16:42:10 +0200 Subject: [PATCH 3/3] Added: Movies Anywhere to the index - Added: Movies Anywhere to the index --- .../Radarr-collection-of-custom-formats.md | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index 462efed88..f7ce72026 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -57,7 +57,7 @@ I also made 3 guides related to this one. | [Theatrical Cut](#theatrical-cut) | [No-RlsGroup](#no-rlsgroup) | [MPEG2](#mpeg2) | | [Netflix](#nf) | | [IMAX](#imax) | [Obfuscated](#obfuscated) | [FreeLeech](#freeleech) | | [Peacock TV](#pcok) | | [IMAX Enhanced](#imax-enhanced) | [DV (WEBDL)](#dv-webdl) | [Dutch Groups](#dutch-groups) | | [Paramount+](#pmtp) | -| | | [Anime Dual Audio](#anime-dual-audio) | | | +| | | [Anime Dual Audio](#anime-dual-audio) | | [Movies Anywhere](#ma) | ------ @@ -1325,3 +1325,21 @@ I also made 3 guides related to this one. ``` [TOP](#index) + +------ + +### MA + +Movies Anywhere + +??? faq "Movies Anywhere - [CLICK TO EXPAND]" + + [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Movies_Anywhere){:target="_blank" rel="noopener noreferrer"} + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/ma.json' %]][[% endfilter %]] + ``` + +[TOP](#index)