From 37477a19fa19129373801a484cd653ac9f5e2a25 Mon Sep 17 00:00:00 2001 From: johnfawkes <33303104+JohnFawkes@users.noreply.github.com> Date: Sun, 3 Mar 2024 15:10:45 -0500 Subject: [PATCH 1/3] Update video_format.yml Add Cam and Telesync --- defaults/overlays/video_format.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/defaults/overlays/video_format.yml b/defaults/overlays/video_format.yml index 75c0dadb..c91b09f4 100644 --- a/defaults/overlays/video_format.yml +++ b/defaults/overlays/video_format.yml @@ -55,13 +55,17 @@ templates: value: '(?i)\bdvd\b' - key: sdtv value: '(?i)\bsd[ ._-]?tv\b' + - key: cam + value: '(?i)\b(HQ|HD)?CAM\b' + - key: telesync + value: '(?i)\b(TS|HDTS|TELESYNC)\b' ignore_blank_results: true plex_all: true filters: filepath.regex: <>>> overlays: - + REMUX: variables: {key: remux, weight: 60} template: [name: standard, name: video_format] @@ -85,3 +89,11 @@ overlays: SDTV: variables: {key: sdtv, weight: 10} template: [name: standard, name: video_format] + + TELESYNC: + variables: {key: telesync, weight: 9} + template: [name: standard, name: video_format] + + CAM: + variables: {key: cam, weight: 8} + template: [name: standard, name: video_format] From f2ec5d433a3dc27e4e1de4521ca0c00caf9e1078 Mon Sep 17 00:00:00 2001 From: johnfawkes <33303104+JohnFawkes@users.noreply.github.com> Date: Sun, 3 Mar 2024 15:14:30 -0500 Subject: [PATCH 2/3] Update video_format.md --- docs/defaults/overlays/video_format.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/defaults/overlays/video_format.md b/docs/defaults/overlays/video_format.md index 385ee699..17bb3530 100644 --- a/docs/defaults/overlays/video_format.md +++ b/docs/defaults/overlays/video_format.md @@ -13,14 +13,16 @@ Recommendations: Designed for [TRaSH Guides](https://trash-guides.info/) filenam ## Supported Video Formats -| Video Format | Key | Weight | -|:-------------|:---------|:-------| -| REMUX | `remux` | `60` | -| BLU-RAY | `bluray` | `50` | -| WEB | `web` | `40` | -| HDTV | `hdtv` | `30` | -| DVD | `dvd` | `20` | -| SDTV | `sdtv` | `10` | +| Video Format | Key | Weight | +|:---------------|:-----------|:-------| +| REMUX | `remux` | `60` | +| BLU-RAY | `bluray` | `50` | +| WEB | `web` | `40` | +| HDTV | `hdtv` | `30` | +| DVD | `dvd` | `20` | +| SDTV | `sdtv` | `10` | +| TELESYNC | `telesync` | `9` | +| CAM | `cam` | `8` | ## Config From 9ba4c3c46b4a2b473569c7e94100679b961fe9cc Mon Sep 17 00:00:00 2001 From: johnfawkes <33303104+JohnFawkes@users.noreply.github.com> Date: Sun, 3 Mar 2024 15:17:03 -0500 Subject: [PATCH 3/3] Update video_format.yml --- defaults/overlays/video_format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/overlays/video_format.yml b/defaults/overlays/video_format.yml index c91b09f4..6f202621 100644 --- a/defaults/overlays/video_format.yml +++ b/defaults/overlays/video_format.yml @@ -65,7 +65,7 @@ templates: filepath.regex: <>>> overlays: - + REMUX: variables: {key: remux, weight: 60} template: [name: standard, name: video_format]