From d0d190718d4bd69d64284d6e02c322450ef66eca Mon Sep 17 00:00:00 2001 From: TRaSH Date: Wed, 16 Nov 2022 14:19:22 +0100 Subject: [PATCH] Added: Videoland + NLZIET streaming services - Added: Videoland + NLZIET streaming services --- .../sonarr-collection-of-custom-formats.md | 38 +++++++++++++++++++ docs/json/sonarr/cf/nlz.json | 17 +++++++++ docs/json/sonarr/cf/vdl.json | 17 +++++++++ docs/json/sonarr/rp/streaming.json | 4 +- 4 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 docs/json/sonarr/cf/nlz.json create mode 100644 docs/json/sonarr/cf/vdl.json diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index 7ed991290..1ac304614 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -56,11 +56,13 @@ I also made 3 guides related to this one. | | | | [HBO Max](#hmax) | | | | | [HBO](#hbo) | | | | | [Hulu](#hulu) | +| | | | [NLZiet](#nlz) | | | | | [Netflix](#nf) | | | | | [Paramount+](#pmtp) | | | | | [Peacock TV](#pcok) | | | | | [Quibi](#qibi) | | | | | [SHOWTIME](#sho) | +| | | | [Videoland](#vdl) | | | | | [YouTube Red](#red) | | | | | [iTunes](#it) | @@ -1303,6 +1305,24 @@ I also made 3 guides related to this one. ------ +### NLZ + +NLZiet + +??? faq "NLZiet - [CLICK TO EXPAND]" + + NLZIET is the online service of Dutch broadcasters that provides non-stop tv, commercial-free. The streaming service brings the best of all channels straight to your preferred device and lets you see your favorite tv content in high quality on all available platforms; anytime and anywhere. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/nlz.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### NF Netflix @@ -1393,6 +1413,24 @@ I also made 3 guides related to this one. ------ +### VDL + +Videoland + +??? faq "Videoland - [CLICK TO EXPAND]" + + Videoland is a Dutch OTT online service provider owned by RTL Nederland. Originally it was a retail chain of video rental stores. Its main competitor is Netflix. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/vdl.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### RED RED = Youtube Red = Youtube Premium diff --git a/docs/json/sonarr/cf/nlz.json b/docs/json/sonarr/cf/nlz.json new file mode 100644 index 000000000..0f7e671ad --- /dev/null +++ b/docs/json/sonarr/cf/nlz.json @@ -0,0 +1,17 @@ +{ + "trash_id": "b2b980877494b560443631eb1f473867", + "trash_score": "75", + "name": "NLZ", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "NLZiet", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(nlz|NLZiet)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + } + } + ] +} diff --git a/docs/json/sonarr/cf/vdl.json b/docs/json/sonarr/cf/vdl.json new file mode 100644 index 000000000..84cc11d53 --- /dev/null +++ b/docs/json/sonarr/cf/vdl.json @@ -0,0 +1,17 @@ +{ + "trash_id": "5d2317d99af813b6529c7ebf01c83533", + "trash_score": "75", + "name": "VDL", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Videoland", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(vdl|Videoland)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + } + } + ] +} diff --git a/docs/json/sonarr/rp/streaming.json b/docs/json/sonarr/rp/streaming.json index 84bb97a1d..524fc6fd0 100644 --- a/docs/json/sonarr/rp/streaming.json +++ b/docs/json/sonarr/rp/streaming.json @@ -39,7 +39,9 @@ "/\\b(hbo)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(red)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(it)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", - "/\\b(pmtp)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" + "/\\b(pmtp)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", + "/\\b(vdl)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", + "/\\b(nlz)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" ] } ],