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] 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 + } + } + ] +}