From 723af0056ee5858fd0f37135daaee5960fe6a576 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Mon, 6 Feb 2023 20:06:37 +0100 Subject: [PATCH] [Radarr] CF `Line/Mic Dubbed` - [Radarr] CF `Line/Mic Dubbed`. --- .../Radarr-collection-of-custom-formats.md | 19 +++++++++++++ docs/json/radarr/cf/line-mic-dubbed.json | 27 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 docs/json/radarr/cf/line-mic-dubbed.json diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index dc8fefd8f..b68c1604d 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -78,6 +78,7 @@ I also made 3 guides related to this one. | | [AV1](#av1) | [VOSTFR](#vostfr) | [FR LQ](#fr-lq) | | | [SDR](#sdr) | | | | | [DV (FEL)](#dv-fel) | | | +| | [Line/Mic Dubbed](#linemic-dubbed) | | | ------ @@ -1185,6 +1186,24 @@ I also made 3 guides related to this one. ------ +### Line/Mic Dubbed + +??? question "Line/Mic Dubbed - [CLICK TO EXPAND]" + + - This seems to be often used with German releases, and this will block the low quality audio. + - Line Dubbed = Sound extracted in the cinema by cable. + - Mic Dubbed = Sound extracted in the cinema by a microphone. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/line-mic-dubbed.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ## Misc ------ diff --git a/docs/json/radarr/cf/line-mic-dubbed.json b/docs/json/radarr/cf/line-mic-dubbed.json new file mode 100644 index 000000000..88c56a1b9 --- /dev/null +++ b/docs/json/radarr/cf/line-mic-dubbed.json @@ -0,0 +1,27 @@ +{ + "trash_id": "c465ccc73923871b3eb1802042331306", + "trash_score": "-10000", + "trash_regex": "https://regex101.com/r/6vHBAD/1", + "name": "Line/Mic Dubbed", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "Line Dubbed", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(LD|AC3LD|Line[ .-]?Dubbed)\\b" + } + }, + { + "name": "Mic Dubbed", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(MD|AC3MD|Mic[ .-]?Dubbed)\\b" + } + } + ] +}