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) diff --git a/docs/json/radarr/ma.json b/docs/json/radarr/ma.json new file mode 100644 index 000000000..58560a116 --- /dev/null +++ b/docs/json/radarr/ma.json @@ -0,0 +1,44 @@ +{ + "trash_id": "2a6039655313bf5dab1e43523b62c374", + "trash_score": "0", + "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 + } + } + ] +}