From d8405fd903582ff365d2bf86661c7a1335650b25 Mon Sep 17 00:00:00 2001 From: Juan David Bermudez Celedon Date: Mon, 23 Feb 2026 17:21:48 -0500 Subject: [PATCH] Extend AVOID_CAM scoring rule (#458) The base title scoring rule **avoid_cam** can be extended with more keyword related to low quality videos similar to CAM. | Type | Acronyms | Meaning | |-----------|-------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | CAM | CAM
CAMRIP
HDCAM | A recording made with a handheld camera in a movie theater. | | Screener | BDSCR
DDC
DVDSCR
DVDSCREENER
SCR
SCREENER
WEBSCREENER | Screeners are early DVD or BD releases of the theatrical version of a film, typically sent to movie reviewers, academy members and executives for review purposes. | | Telecine | HDTC
TC
TELECINE | A digital scan of the film print. | | Telesync | HDTS
TELESYNC
TS | Similar to *CAM*, but the camera is typically placed closer to the projector or on a tripod in the projection booth. Audio is captured directly from the sound system. | | TV | TVRIP | ## Summary by CodeRabbit ## Release Notes * **Chores** * Improved detection of additional camera-related content format variants through updated filtering rules. --- config.dev.toml | 2 +- config.example.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.dev.toml b/config.dev.toml index 20ea89e..1d37616 100644 --- a/config.dev.toml +++ b/config.dev.toml @@ -138,7 +138,7 @@ negate = false [[indexers.title_scoring_rules]] name = "avoid_cam" -keywords = ["cam", "ts"] +keywords = ["cam", "camrip", "bdscr", "ddc", "dvdscreener","dvdscr", "hdcam", "hdtc", "hdts", "scr", "screener","telesync", "ts", "webscreener", "tc", "telecine", "tvrip"] score_modifier = -10000 negate = false diff --git a/config.example.toml b/config.example.toml index 1d137d3..85d65ee 100644 --- a/config.example.toml +++ b/config.example.toml @@ -138,7 +138,7 @@ negate = false [[indexers.title_scoring_rules]] name = "avoid_cam" -keywords = ["cam", "ts"] +keywords = ["cam", "camrip", "bdscr", "ddc", "dvdscreener","dvdscr", "hdcam", "hdtc", "hdts", "scr", "screener","telesync", "ts", "webscreener", "tc", "telecine", "tvrip"] score_modifier = -10000 negate = false