8 Commits

Author SHA1 Message Date
bsm-elf
01c4d08be1 Redact API key in configuration file
Redacted API key for security reasons.
2026-03-07 21:55:38 +01:00
bsm-elf
e5f5d73fce Redact API key in config_with_full_overlays.yml
Redacted API key for security reasons.
2026-03-07 21:55:15 +01:00
ladywhiskers
44d81590b4 Refactor and document ladywhiskers configuration files and templates (#720) 2026-02-28 15:30:06 +01:00
ladywhiskers
a8242af40e Updated Configs, fixed some errors. (#719)
* Update config.yml

Updated to use letterboxd defaults

* Delete ladywhiskers/metadata_folders directory

* Update movies_critics_other.yml

* Update movies_subgenre.yml

* Update movies_topics.yml

* Update movies_watchlist.yml

* Delete ladywhiskers/music/Music-Genre-top.yml

* Add files via upload

* Update tvshows_Attenborough.yml

* Update tvshows_documentaries.yml

* Update tvshows_topic.yml

* Update tvshows_watchlist.yml

* Add files via upload

* Update config.yml

Minor edits, commented out genre default

* Delete ladywhiskers/tvshows/tvshows_Attenborough.yml

Removing unused yml

* Update tvshows_documentaries.yml

* Update tvshows_topic.yml

commenting out sync

* Update tvshows_watchlist.yml

Added a collection of recommendations for my mum

* Update musictemplates.yml

* Update Music-Genre.yml

* Update continents.yml

* Update track_collections.yml

* Update movies_critics_other.yml

* Update movies_subgenre.yml

Replaced ediblehedgehog letterboxd lists with another user

* Update movies_topics.yml

* Update movies_watchlist.yml

Removed Bec's list
Added collection for recommendations for my mum.

* Delete ladywhiskers/metadata_folders directory

* Add files via upload

renamed and reorganised a bunch of mediux references - still a work in progress.

* Update tvshows_watchlist.yml

formatting

* Update README.md

minor update

* Update movies_watchlist.yml

Added template to reduce redunancy

* Delete ladywhiskers/metadata_folders directory

* docs: Document the ladywhiskers Kometa configuration

This change adds comprehensive documentation to the Kometa configuration files within the 'ladywhiskers' subfolder. It adds comments to all YAML files to explain their purpose and settings.

It also adds a new, detailed README.md file to the 'ladywhiskers' directory to provide a complete guide for new developers, covering the purpose, structure, and usage of the configuration.

* Update Music-Genre.yml

* Update track_collections.yml

* Refactor movie watchlist YAML structure and templates

* Add files via upload

---------

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-02-28 11:36:18 +01:00
FSCorrupt
90d28d7650 Remove 'documentary' from IMDb search types 2026-02-09 23:16:25 +01:00
FSCorrupt
af695c45d2 Remove documentary type from IMDb search 2026-02-09 23:16:25 +01:00
FSCorrupt
60743e903e Update imdb_search type in TVShows.yml
Removed 'documentary' from the imdb_search type.
2026-02-09 23:16:25 +01:00
FSCorrupt
b01d6050d9 Migrate imdb_list to imdb_search 2026-02-09 23:16:25 +01:00
31 changed files with 5394 additions and 5291 deletions

View File

@@ -167,7 +167,7 @@ plex: # Can be individually specified per library as
verify_ssl:
db_cache: 40
tmdb: # REQUIRED for the script to run
apikey: 0095192b8ceb2b5a44015e97f0afcc9c
apikey: <redacted>
language: en
cache_expiration: 60
region:

View File

@@ -128,7 +128,7 @@ plex: # Can be individually specified per library as
verify_ssl:
db_cache: 40
tmdb: # REQUIRED for the script to run
apikey: 0095192b8ceb2b5a44015e97f0afcc9c
apikey: <redacted>
language: en
cache_expiration: 60
region:

View File

@@ -2,7 +2,7 @@ overlays:
############################
# ICHIMOKU #
############################
############################
DV:
overlay: DV
@@ -33,7 +33,7 @@ overlays:
overlay: DV-DolbyTrueHDAtmos
plex_search:
all:
collection: DV-DolbyTrueHDAtmos
collection: DV-DolbyTrueHDAtmos
DV-dtsX:
overlay: DV-dtsX
plex_search:
@@ -43,7 +43,7 @@ overlays:
overlay: DV-dtsHD
plex_search:
all:
collection: DV-dtsHD
collection: DV-dtsHD
4K:
overlay: 4K_banner
plex_search:
@@ -73,7 +73,7 @@ overlays:
overlay: 4K-DolbyDigitalPlus
plex_search:
all:
collection: 4K-DolbyDigitalPlus
collection: 4K-DolbyDigitalPlus
4K-DolbyDigitalPlusAtmos:
overlay: 4K-DolbyDigitalPlusAtmos
plex_search:

View File

@@ -32,10 +32,19 @@ templates:
default:
title: feature
limit: 100
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>
imdb_search:
- type: <<title>>
release.gte: 1990-01-01
rating.gte: 5.0
votes.gte: 100000
genre: <<genre>>
limit: <<limit>>
- url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>&sort=user_rating,desc
- type: <<title>>
release.gte: 1990-01-01
rating.gte: 5.0
votes.gte: 100000
genre: <<genre>>
sort_by: rating.desc
limit: <<limit>>
sort_title: +++_<<collection_name>>
sync_mode: sync
@@ -149,10 +158,11 @@ collections:
Popular:
template: {name: Chart Alpha, num: 4}
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
imdb_search:
type: movie, tv_movie, documentary, short
sort_by: popularity.desc
limit: 40
summary: Popular Movies across the internet, according to https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short.
summary: Popular Movies across the internet.
url_poster: https://i.imgur.com/U3OaYtB.jpg
schedule: daily
Top Rated:

View File

@@ -50,10 +50,11 @@ collections:
Popular:
template: {name: Chart Alpha, num: 4}
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
imdb_search:
type: movie, tv_movie, short
sort_by: popularity.desc
limit: 40
summary: Popular Movies across the internet, according to https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short.
summary: Popular Movies across the internet, curated from TMDB and IMDb.
url_poster: https://i.imgur.com/U3OaYtB.jpg
schedule: daily
Top Rated:
@@ -62,8 +63,3 @@ collections:
summary: Top Rated Movies across the internet
url_poster: https://i.imgur.com/VvfdUHn.jpg
schedule: daily
Emmy Winners:
template: { name: Chart, num: 5 }
imdb_list: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries&groups=emmy_winner
summary: Emmy Winning Shows
schedule: weekly (sunday)

View File

@@ -32,11 +32,20 @@ templates:
default:
title: feature
limit: 100
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>
limit: <<limit>>
- url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>&sort=user_rating,desc
limit: <<limit>>
imdb_search:
- type: <<title>>
release.gte: 1990-01-01
rating.gte: 5.0
votes.gte: 100000
genre: <<genre>>
limit: <<limit>>
- type: <<title>>
release.gte: 1990-01-01
rating.gte: 5.0
votes.gte: 100000
genre: <<genre>>
sort_by: rating.desc
limit: <<limit>>
sort_title: +++_<<collection_name>>
sync_mode: sync
collection_order: alpha
@@ -156,10 +165,11 @@ collections:
Popular:
template: {name: Chart Alpha, num: 4}
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
imdb_search:
type: movie, tv_movie, documentary, short
sort_by: popularity.desc
limit: 40
summary: Popular Movies across the internet, according to https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short.
summary: Popular Movies across the internet.
url_poster: https://i.imgur.com/U3OaYtB.jpg
schedule: daily
Top Rated:

View File

@@ -44,26 +44,22 @@ collections:
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
summary: Movies Trending across the internet, according to https://trakt.tv/movies/trending.
summary: Shows Trending across the internet.
url_poster: https://i.imgur.com/oOS46kt.jpg
schedule: daily
Popular:
template: {name: Chart Alpha, num: 4}
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
imdb_search:
type: movie, tv_movie, short
sort_by: popularity.desc
limit: 40
summary: Popular Movies across the internet, according to https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short.
summary: Popular Shows across the internet.
url_poster: https://i.imgur.com/U3OaYtB.jpg
schedule: daily
Top Rated:
template: {name: Chart Alpha, num: 5}
tmdb_top_rated: 250
summary: Top Rated Movies across the internet
summary: Top Rated Shows across the internet
url_poster: https://i.imgur.com/VvfdUHn.jpg
schedule: daily
Emmy Winners:
template: { name: Chart, num: 5 }
imdb_list: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries&groups=emmy_winner
summary: Emmy Winning Shows
schedule: weekly (sunday)

View File

@@ -33,8 +33,12 @@ templates:
title: feature
limit: 100
imdb_search:
- url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>&sort=user_rating,desc
limit: <<limit>>
- type: <<title>>
release.gte: 1990-01-01
rating.gte: 5.0
votes.gte: 100000
genre: <<genre>>
limit: <<limit>>
sort_title: +++_<<collection_name>>
sync_mode: sync
collection_order: alpha

View File

@@ -2,13 +2,13 @@
> [!IMPORTANT]
> I use my own script `Posterizarr.ps1` to get textless posters https://github.com/fscorrupt/Posterizarr .
>
>
> I also use Kometa's assets with folder structure as described in the wiki here: https://metamanager.wiki/en/latest/kometa/guides/assets/
The files i use: [Files](https://github.com/fscorrupt/Kometa-Overlays)
### Here are some Examples of Posterizarr, before the Kometa run:
![](https://github.com/fscorrupt/Posterizarr/blob/main/images/posterizarr-overview-new.jpg)
![](https://github.com/fscorrupt/Posterizarr/blob/main/docs/images/posterizarr-overview-new.jpg)
### Here are some Examples after Kometa run:
![](https://github.com/fscorrupt/Posterizarr/blob/main/images/kometa-overview-new.jpg)
![](https://github.com/fscorrupt/Posterizarr/blob/main/docs/images/kometa-overview-new.jpg)

View File

@@ -44,26 +44,22 @@ collections:
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
summary: Movies Trending across the internet, according to https://trakt.tv/movies/trending.
summary: Shows Trending across the internet.
url_poster: https://i.imgur.com/oOS46kt.jpg
schedule: daily
Popular:
template: {name: Chart Alpha, num: 4}
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
imdb_search:
type: movie, tv_movie, short
sort_by: popularity.desc
limit: 40
summary: Popular Movies across the internet, according to https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short.
summary: Popular Movies across the internet, curated from TMDB and IMDb.
url_poster: https://i.imgur.com/U3OaYtB.jpg
schedule: daily
Top Rated:
template: {name: Chart Alpha, num: 5}
tmdb_top_rated: 250
summary: Top Rated Movies across the internet
summary: Top Rated Shows across the internet
url_poster: https://i.imgur.com/VvfdUHn.jpg
schedule: daily
Emmy Winners:
template: { name: Chart, num: 5 }
imdb_list: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries&groups=emmy_winner
summary: Emmy Winning Shows
schedule: weekly (sunday)

View File

@@ -35,30 +35,30 @@ collections:
Matt Damon:
template: {name: Actor, person: 1892, poster: 47461}
Adam Sandler:
template: {name: Actor, person: 19292, poster: 53382}
template: {name: Actor, person: 19292, poster: 53382}
Tom Hanks:
template: {name: Actor, person: 31, poster: 47480}
template: {name: Actor, person: 31, poster: 47480}
Jim Carrey:
template: {name: Actor, person: 206, poster: 464665}
template: {name: Actor, person: 206, poster: 464665}
Anne Hathaway:
template: {name: Actor, person: 1813, poster: 464632}
template: {name: Actor, person: 1813, poster: 464632}
Ryan Reynolds:
template: {name: Actor, person: 10859, poster: 125984}
template: {name: Actor, person: 10859, poster: 125984}
Robin Williams:
template: {name: Actor, person: 2157, poster: 116364}
template: {name: Actor, person: 2157, poster: 116364}
Ryan Gosling:
template: {name: Actor, person: 30614, poster: 136161}
template: {name: Actor, person: 30614, poster: 136161}
Jeff Goldblum:
template: {name: Actor, person: 4785, poster: 125817}
template: {name: Actor, person: 4785, poster: 125817}
Arnold Schwarzenegger:
template: {name: Actor, person: 1100, poster: 47415}
template: {name: Actor, person: 1100, poster: 47415}
Clint Eastwood:
template: {name: Actor, person: 190, poster: 447160}
template: {name: Actor, person: 190, poster: 447160}
Ben Stiller:
template: {name: Actor, person: 7399, poster: 150150}
template: {name: Actor, person: 7399, poster: 150150}
Owen Wilson:
template: {name: Actor, person: 887, poster: 125611}
template: {name: Actor, person: 887, poster: 125611}
Matthew McConaughey:
template: {name: Actor, person: 10297, poster: 252246}
template: {name: Actor, person: 10297, poster: 252246}
Jake Gyllenhaal:
template: {name: Actor, person: 131, poster: 252237}

View File

@@ -13,6 +13,9 @@ libraries:
# Collection files to process
collection_files:
- file: config/TVShows.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
#- file: config/Genre.yml
# Overlay files and configurations
overlay_files:
@@ -99,6 +102,9 @@ libraries:
# Collection files to process
collection_files:
- file: config/Movies.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
#- file: config/collections.yml
# Overlay files and configurations
overlay_files:
@@ -168,6 +174,9 @@ libraries:
- file: config/movies-list.yml
- file: config/actors.yml
- file: config/directors.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
# Common Sense Media overlay
@@ -235,6 +244,9 @@ libraries:
- file: config/movies-list.yml
- file: config/actors.yml
- file: config/directors.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
# Common Sense Media overlay
@@ -295,6 +307,9 @@ libraries:
collection_files:
- file: config/Movies.yml
- file: config/show-list.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
# Common Sense Media overlay
@@ -358,6 +373,9 @@ libraries:
collection_files:
- file: config/TVShows.yml
- file: config/show-list.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
#- reapply_overlays: true
@@ -442,6 +460,9 @@ libraries:
# Collection files
collection_files:
- file: config/KidsShows.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
#- reapply_overlays: true
@@ -523,6 +544,9 @@ libraries:
# Collection files
collection_files:
- file: config/AnimeShows.yml
- default: emmy
template_variables:
schedule: weekly(sunday)
# Overlay files and configurations
overlay_files:
#- reapply_overlays: true
@@ -607,7 +631,7 @@ playlist_files:
use_walking: true
radarr_add_missing_walking: false
sonarr_add_missing_walking: false # Can be individually specified per library as well
# ============================================================================
# Global Settings - Can be overridden per library
# ============================================================================
@@ -615,7 +639,7 @@ settings:
# Caching options
cache: true
cache_expiration: 60
# Asset settings
asset_directory: /assets
asset_folders: true
@@ -627,20 +651,20 @@ settings:
show_missing_season_assets: true
show_missing_episode_assets: false
show_asset_not_needed: false
# Sync and collection settings
sync_mode: sync
default_collection_order:
minimum_items: 1
delete_below_minimum: false
delete_not_scheduled: false
# Scheduling
run_again_delay: 0
# Release settings
missing_only_released: true
# Display options
show_unconfigured: true
show_unmanaged: false
@@ -649,33 +673,33 @@ settings:
show_missing: true
only_filter_missing: false
show_missing_assets: true
# Report settings
save_report: false
# API settings
tvdb_language: eng
ignore_ids:
ignore_imdb_ids:
item_refresh_delay: 0
# Playlist settings
playlist_sync_to_users: all
playlist_report: false
playlist_exclude_users: Louisa, Peter
# Advanced options
custom_repo:
verify_ssl: true
check_nightly: false
# Execution order
run_order:
- operations
- metadata
- collections
- overlays
# Overlay settings
overlay_artwork_filetype: jpg
overlay_artwork_quality: 90
@@ -689,12 +713,12 @@ plex:
url: http://plex:32400
token:
timeout: 360
# Maintenance options
clean_bundles: false
empty_trash: false
optimize: false
# Cache options
db_cache:
verify_ssl:
@@ -713,7 +737,7 @@ webhooks:
# TMDb (The Movie Database) Configuration
# ============================================================================
tmdb:
apikey:
apikey:
language: en
cache_expiration: 60
region:
@@ -724,13 +748,13 @@ tmdb:
tautulli:
# Tautulli API settings
url: http://tautulli:8181
apikey:
apikey:
# ============================================================================
# OMDb (Open Movie Database) Configuration
# ============================================================================
omdb:
apikey:
apikey:
cache_expiration: 60
# ============================================================================
@@ -739,9 +763,9 @@ omdb:
radarr:
# Radarr server connection
url: http://radarr:7878
token:
token:
version: v4
# Download settings
root_folder_path: /mnt/unionfs/Movies
monitor: false
@@ -750,11 +774,11 @@ radarr:
tag: kometa
search: false
add_existing: false
# Path mapping
radarr_path:
plex_path:
# Movie management
add_missing: false
upgrade_existing: false
@@ -767,9 +791,9 @@ radarr:
sonarr:
# Sonarr server connection
url: http://sonarr:8989
token:
token:
version: v4
# Download settings
root_folder_path: /mnt/unionfs/Shows
monitor: none
@@ -781,11 +805,11 @@ sonarr:
search: false
cutoff_search: false
add_existing: false
# Path mapping
sonarr_path:
plex_path:
# Show management
add_missing: false
upgrade_existing: false
@@ -796,14 +820,14 @@ sonarr:
# Trakt Configuration (Social tracking)
# ============================================================================
trakt:
client_id:
client_secret:
client_id:
client_secret:
# OAuth authentication tokens
authorization:
access_token:
access_token:
token_type: Bearer
expires_in: 7889238
refresh_token:
refresh_token:
scope: public
created_at: 1759861193
pin:
@@ -813,5 +837,5 @@ trakt:
# MDBList Configuration (Database/list services)
# ============================================================================
mdblist:
apikey:
apikey:
cache_expiration: 60

View File

@@ -21,13 +21,13 @@ templates:
url_poster: https://theposterdb.com/api/assets/<<poster>>
sync_mode: sync
summary: <<collection_name>>'s Films
collection_mode: hide_items
collection_mode: hide_items
collections:
John Carpenter:
template: {name: Director, person: 11770, poster: 56450}
Wes Craven:
template: {name: Director, person: 5140, poster: 355110}
template: {name: Director, person: 5140, poster: 355110}
Christopher Nolan:
template: {name: Director, person: 525, poster: 47425}
Quentin Tarantino:
@@ -35,20 +35,20 @@ collections:
Steven Spielberg:
template: {name: Director, person: 488, poster: 47477}
Michael Bay:
template: {name: Director, person: 865, poster: 47463}
template: {name: Director, person: 865, poster: 47463}
Martin Scorsese:
template: {name: Director, person: 1032, poster: 47460}
template: {name: Director, person: 1032, poster: 47460}
Peter Jackson:
template: {name: Director, person: 108, poster: 165687}
template: {name: Director, person: 108, poster: 165687}
Stanley Kubrick:
template: {name: Director, person: 240, poster: 47475}
template: {name: Director, person: 240, poster: 47475}
Ridley Scott:
template: {name: Director, person: 578, poster: 47470}
template: {name: Director, person: 578, poster: 47470}
David Fincher:
template: {name: Director, person: 7467, poster: 47439}
template: {name: Director, person: 7467, poster: 47439}
Denis Villeneuve:
template: {name: Director, person: 137427, poster: 326125}
template: {name: Director, person: 137427, poster: 326125}
Makoto Shinkai:
template: {name: Director, person: 74091, poster: 364190}
template: {name: Director, person: 74091, poster: 364190}
Stephen King:
template: {name: Writer, person: 3027, poster: 47476}

View File

@@ -36,7 +36,7 @@ collections:
smart_filter:
all:
rating.gte: 9.5
sort: random
sort: random
100% Rated Movies:
sort_title: "!C <<collection_name>>"
@@ -45,7 +45,7 @@ collections:
smart_filter:
all:
rating.gte: 10
sort: random
sort: random
Animated Movies:
template: { name: Special Genre }
@@ -54,7 +54,7 @@ collections:
- https://www.imdb.com/list/ls051688785/
trakt_list:
- https://trakt.tv/users/movistapp/lists/animation?sort=rank,asc
summary: "A choice of 189 of the best animated movies released between 2000 and 2025"
summary: "A choice of 189 of the best animated movies released between 2000 and 2025"
collection_order: alpha
Anime Movies:
@@ -81,10 +81,10 @@ collections:
Based on Comics Movies:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/k0meta/lists/movies-based-on-comics?sort=rank,asc
- https://trakt.tv/users/k0meta/lists/movies-based-on-comics?sort=rank,asc
collection_order: alpha
Based on True Events Movies:
Based on True Events Movies:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/benfranklin/lists/based-on-a-true-story?sort=rank,asc
@@ -95,8 +95,8 @@ collections:
Based on Video Games Movies:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/k0meta/lists/movies-based-on-video-games?sort=rank,asc
collection_order: alpha
- https://trakt.tv/users/k0meta/lists/movies-based-on-video-games?sort=rank,asc
collection_order: alpha
Biopic Movies:
template: { name: Special Genre }
@@ -114,16 +114,15 @@ collections:
- https://www.imdb.com/list/ls003667158/
trakt_list:
- https://trakt.tv/users/omegaforce696/lists/car-movies?sort=rank,asc
summary: "Best Car Movies of all time"
summary: "Best Car Movies of all time"
collection_order: alpha
Coming-of-Age Movies:
template: { name: Special Genre }
imdb_list:
- https://www.imdb.com/list/ls024933763/
- https://www.imdb.com/list/ls051428446/
- https://www.imdb.com/list/ls002609132/
summary: "Best Coming-of-Age Movies of all time."
summary: "Best Coming-of-Age Movies of all time."
collection_order: alpha
Dark Comedy Movies:
@@ -131,7 +130,7 @@ collections:
imdb_list:
- https://www.imdb.com/list/ls066399600/
- https://www.imdb.com/list/ls052772888/
summary: "Best Dark Comedy movies of all time."
summary: "Best Dark Comedy movies of all time."
collection_order: alpha
Disaster Movies:
@@ -141,7 +140,7 @@ collections:
trakt_list:
- https://trakt.tv/users/sflixkd/lists/disaster-films?sort=popularity,asc
- https://trakt.tv/users/jiehad/lists/disaster-movie?sort=released,asc
summary: "A disaster film or disaster movie is a film genre that has an impending or ongoing disaster as its subject and primary plot device."
summary: "A disaster film or disaster movie is a film genre that has an impending or ongoing disaster as its subject and primary plot device."
collection_order: alpha
Documentary Movies:
@@ -158,15 +157,15 @@ collections:
imdb_list:
- https://www.imdb.com/list/ls080399485/
summary: "The Best Movies About Entrepreneurship"
collection_order: alpha
collection_order: alpha
Family Movies:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/mah_entaddikt/lists/best-family-films
- https://trakt.tv/users/mah_entaddikt/lists/best-family-films
- https://trakt.tv/users/pants42/lists/movies-family?sort=rank,asc
- https://trakt.tv/users/k0meta/lists/family-favorites?sort=rank,asc
summary: "Best Rated Family Movies of all time"
summary: "Best Rated Family Movies of all time"
collection_order: alpha
Fantasy Movies:
@@ -184,8 +183,8 @@ collections:
- https://www.imdb.com/list/ls008633159/
trakt_list:
- https://trakt.tv/users/rontraub/lists/fight-movies?sort=rank,asc
summary: "Best Fight Movies of all time"
collection_order: alpha
summary: "Best Fight Movies of all time"
collection_order: alpha
Found Footage Movies:
template: { name: Special Genre }
@@ -194,7 +193,7 @@ collections:
- https://trakt.tv/users/sp1ti/lists/extensive-found-footage-films-list-by-tdwillis-26273?sort=released,asc
imdb_list:
- https://www.imdb.com/list/ls063914804/
summary: "Best Found Footage Movies of all time"
summary: "Best Found Footage Movies of all time"
collection_order: alpha
Gangster Movies:
@@ -203,7 +202,7 @@ collections:
- https://trakt.tv/users/k0meta/lists/gangster-mafia-movies?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls066176690/
summary: "Best Gangster movies of all time."
summary: "Best Gangster movies of all time."
collection_order: alpha
Hacker Movies:
@@ -219,9 +218,9 @@ collections:
- https://trakt.tv/users/mantero/lists/robbery-movies?sort=released,asc
- https://trakt.tv/users/ilium/lists/great-heist-movies?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls021434413/
- https://www.imdb.com/list/ls021434413/
- https://www.imdb.com/list/ls086639673/
summary: "Best Heist Movies of all time"
summary: "Best Heist Movies of all time"
collection_order: alpha
Historical Epic Movies:
@@ -230,7 +229,7 @@ collections:
- https://www.imdb.com/list/ls095246868/
- https://www.imdb.com/list/ls063414075/
- https://www.imdb.com/list/ls047154491/
summary: "Best Historical Epic movies of all time."
summary: "Best Historical Epic movies of all time."
collection_order: alpha
Horror Movies:
@@ -240,16 +239,16 @@ collections:
- https://trakt.tv/users/ttaggart/lists/horror-movies-to-watch?sort=rank,asc
- https://trakt.tv/users/mattrizzo/lists/horror-mania?sort=released,asc
- https://trakt.tv/users/majeed_pk/lists/best-supernatural-horror-movies-and-tv?sort=rank,asc
summary: "Best Horror Movies of all time"
summary: "Best Horror Movies of all time"
collection_order: alpha
Mafia Movies:
template: { name: Special Genre }
trakt_list:
trakt_list:
- https://trakt.tv/users/media-rumor/lists/mafia-movies?sort=popularity,asc
imdb_list:
- https://www.imdb.com/list/ls068980300/
summary: "Best Mafia & Gangster Movies of all time"
summary: "Best Mafia & Gangster Movies of all time"
collection_order: alpha
Mindfuck Movies:
@@ -262,7 +261,7 @@ collections:
summary: "A collection of Movies that will mess with your mind!"
collection_order: alpha
Movies with a Twist:
Movies with a Twist:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/hdlists/lists/crazy-plot-twists?sort=rank,asc
@@ -276,7 +275,7 @@ collections:
- https://trakt.tv/users/maxtrontv/lists/movies-you-must-see-before-you-die?page=4&sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls039101558/
summary: "Movies You Must See Before You Die."
summary: "Movies You Must See Before You Die."
collection_order: alpha
Music Movies:
@@ -286,15 +285,15 @@ collections:
- https://trakt.tv/users/startec1690/lists/musical-movies?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls066191116/
summary: "Best Music/Musical movies of all time."
collection_order: alpha
summary: "Best Music/Musical movies of all time."
collection_order: alpha
Mystery Movies:
template: { name: Special Genre }
trakt_list:
- https://trakt.tv/users/hdlists/lists/latest-hd-mystery-movies-top-rated-from-1980-to-today?sort=rank,asc
- https://trakt.tv/users/galacticboy/lists/top-250-mystery-movies?sort=rank,asc
summary: "Best Rated Mystery Movies of all time"
summary: "Best Rated Mystery Movies of all time"
collection_order: alpha
Nostalgia Movies:
@@ -315,7 +314,7 @@ collections:
- https://www.imdb.com/list/ls076649490/
- https://www.imdb.com/list/ls099860390/
- https://www.imdb.com/list/ls022345978/
summary: "Best Rated One Man Army Movies of all time"
summary: "Best Rated One Man Army Movies of all time"
collection_order: alpha
Parody Movies:
@@ -328,8 +327,8 @@ collections:
- https://www.imdb.com/list/ls061358718/
trakt_list:
- https://trakt.tv/users/majeed_pk/lists/spoof-parody-films?sort=rank,asc
- https://trakt.tv/users/kodi-c881832b-f962-4cc7-b587-ed15aed31a9c/lists/parody-spoof-movies?sort=added,asc
summary: "Best Parody Movies of all time"
- https://trakt.tv/users/kodi-c881832b-f962-4cc7-b587-ed15aed31a9c/lists/parody-spoof-movies?sort=added,asc
summary: "Best Parody Movies of all time"
collection_order: alpha
Pet Movies:
@@ -352,7 +351,7 @@ collections:
- https://www.imdb.com/list/ls058479560/
trakt_list:
- https://trakt.tv/users/29zombies/lists/romantic-comedies?sort=title,asc
summary: "Best Romantic Comedy Movies of all time"
summary: "Best Romantic Comedy Movies of all time"
collection_order: alpha
Serial Killers Movies:
@@ -363,7 +362,7 @@ collections:
imdb_list:
- https://www.imdb.com/list/ls063841856/
- https://www.imdb.com/list/ls008127108/
summary: "Best Serial Killers movies of all time."
summary: "Best Serial Killers movies of all time."
collection_order: alpha
Slasher Horrors Movies:
@@ -372,7 +371,7 @@ collections:
- https://trakt.tv/users/rizreflects/lists/slasher-movies?sort=rank,asc
- https://trakt.tv/users/drachenplatinum/lists/slashers?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls029703473/
- https://www.imdb.com/list/ls029703473/
summary: "Best Slasher Horrors of all time"
collection_order: alpha
@@ -381,7 +380,7 @@ collections:
imdb_list:
- https://www.imdb.com/list/ls063156587/
summary: "Best 90s/2000s Slasher Horrors"
collection_order: alpha
collection_order: alpha
Sport Movies:
template: { name: Special Genre }
@@ -396,7 +395,7 @@ collections:
- https://trakt.tv/users/maxtrontv/lists/spy-movies?sort=released,asc
imdb_list:
- https://www.imdb.com/list/ls066367722/
summary: "Best Spy movies of all time."
summary: "Best Spy movies of all time."
collection_order: alpha
Stoner Movies:
@@ -412,7 +411,7 @@ collections:
- https://www.imdb.com/list/ls076799034/
- https://www.imdb.com/list/ls036810850/
- https://www.imdb.com/list/ls083546886/
summary: "Best Stoner Movies of all time"
summary: "Best Stoner Movies of all time"
Time Loop Movies:
template: { name: Special Genre }
@@ -437,14 +436,14 @@ collections:
Top 50 Grossing Films of All-Time:
template: { name: Special Genre }
tmdb_list:
tmdb_list:
- https://www.themoviedb.org/list/10
collection_order: custom
Top Grossing Films Annually:
template: { name: Special Genre }
imdb_list:
- https://www.imdb.com/list/ls568936874/
- https://www.imdb.com/list/ls568936874/
collection_order: release.desc
War Movies:
@@ -453,8 +452,8 @@ collections:
- https://www.imdb.com/list/ls024001687/
trakt_list:
- https://trakt.tv/users/maxwelldeux/lists/101-war-movies-you-must-see-before-you-die?sort=rank,asc
- https://trakt.tv/users/babakhan23/lists/war-movies?sort=rank,asc
summary: "Best Rated War Movies of all time"
- https://trakt.tv/users/babakhan23/lists/war-movies?sort=rank,asc
summary: "Best Rated War Movies of all time"
collection_order: alpha
Western Movies:
@@ -465,7 +464,7 @@ collections:
- https://www.imdb.com/list/ls003680383/
- https://www.imdb.com/list/ls002124326/
- https://www.imdb.com/list/ls066568329/
summary: "Best Western movies of all time."
summary: "Best Western movies of all time."
collection_order: alpha
Zombie Movies:
@@ -475,5 +474,5 @@ collections:
- https://trakt.tv/users/kuratchikingu/lists/zombie-movies-shows?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls000058536/
summary: "Best Zombie Movies of all time"
summary: "Best Zombie Movies of all time"
collection_order: alpha

View File

@@ -5,7 +5,7 @@ templates:
Original:
sort_title: "!AAA <<collection_name>>"
collection_order: release
collection_mode: hide
collection_mode: hide
Studios:
sort_title: "!AAB <<collection_name>>"
collection_order: release
@@ -17,111 +17,111 @@ collections:
template: { name: Original }
trakt_list:
- https://trakt.tv/users/k0meta/lists/netflix-originals?sort=rank,asc
summary: "Feature films by Netflix"
collection_order: alpha
summary: "Feature films by Netflix"
collection_order: alpha
Disney+ Originals:
template: { name: Original }
trakt_list:
- https://trakt.tv/users/k0meta/lists/disney-originals?sort=rank,asc
summary: "Feature films by Disney+"
collection_order: alpha
summary: "Feature films by Disney+"
collection_order: alpha
AppleTV+ Originals:
template: { name: Original }
trakt_list:
- https://trakt.tv/users/k0meta/lists/appletv-originals?sort=rank,asc
summary: "Feature films by AppleTV+"
collection_order: alpha
summary: "Feature films by AppleTV+"
collection_order: alpha
Amazon Originals:
template: { name: Original }
trakt_list:
- https://trakt.tv/users/k0meta/lists/amazon-originals?sort=rank,asc
summary: "Feature films by Amazon"
collection_order: alpha
summary: "Feature films by Amazon"
collection_order: alpha
#Studios
Pixar Movies:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/draackje/lists/pixar-feature-films?sort=released,desc
summary: "Feature films by Pixar AnimationStudios"
collection_order: alpha
summary: "Feature films by Pixar AnimationStudios"
collection_order: alpha
Walt Disney Pictures Movies:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/addvariety/lists/the-complete-walt-disney-animation-studios-collection?sort=released,asc
summary: "Feature films by Walt Disney PicturesStudios"
summary: "Feature films by Walt Disney PicturesStudios"
collection_order: alpha
Disney Live-Action Remakes:
Disney Live-Action Remakes:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/aaron713/lists/disney-live-action-adaptations-and-remakes-of-disney-animated-films?sort=rank,asc
summary: "Disney Live-Action Remakes"
collection_order: alpha
summary: "Disney Live-Action Remakes"
collection_order: alpha
Dreamworks Movies:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/draackje/lists/dreamworks-feature-films?sort=released,desc
summary: "Feature films by Dreamworks Animation."
collection_order: alpha
summary: "Feature films by Dreamworks Animation."
collection_order: alpha
A24 Movies:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/fidel-cb/lists/a24-movies-and-tv-shows?sort=released,asc
summary: "Movies, TV Shows and Documentaries that A24 has produced/distributed."
collection_order: alpha
summary: "Movies, TV Shows and Documentaries that A24 has produced/distributed."
collection_order: alpha
Sony Pictures Animation:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/donxy/lists/sony-pictures-animation?sort=released,desc
- https://trakt.tv/users/oneluckydad/lists/sony-pictures-animation?sort=released,asc
summary: "Movies, TV Shows and Documentaries that Sony Pictures Animation has produced."
collection_order: alpha
- https://trakt.tv/users/oneluckydad/lists/sony-pictures-animation?sort=released,asc
summary: "Movies, TV Shows and Documentaries that Sony Pictures Animation has produced."
collection_order: alpha
Paramount PicturesStudios:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/boleg/lists/paramount-movies-2015-2023?sort=rank,asc
imdb_list:
- https://www.imdb.com/list/ls029950709/
summary: "Feature films by Paramount PicturesStudios"
- https://www.imdb.com/list/ls029950709/
summary: "Feature films by Paramount PicturesStudios"
collection_order: alpha
Universal Pictures:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/max-blade/lists/film-animation-classique-universal-pictures
summary: "Feature films by Universal Pictures"
summary: "Feature films by Universal Pictures"
collection_order: alpha
Warner Bros. Pictures:
template: { name: Studios }
imdb_list:
- https://www.imdb.com/list/ls099404144/
summary: "Feature films by Warner Bros. Pictures"
collection_order: alpha
summary: "Feature films by Warner Bros. Pictures"
collection_order: alpha
Studio Ghibli:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/draackje/lists/studio-ghibli-feature-films?sort=released,desc
summary: "Feature films by Studio Ghibli"
collection_order: alpha
summary: "Feature films by Studio Ghibli"
collection_order: alpha
Blumhouse Productions:
template: { name: Studios }
imdb_list:
- https://www.imdb.com/list/ls521124741/
summary: "Feature films by Blumhouse Productions"
collection_order: alpha
summary: "Feature films by Blumhouse Productions"
collection_order: alpha
Legendary Pictures:
template: { name: Studios }
trakt_list:
- https://trakt.tv/users/rhwonderful/lists/legendary-pictures?sort=rank,asc
summary: "Feature films by Legendary Pictures"
collection_order: alpha
summary: "Feature films by Legendary Pictures"
collection_order: alpha

View File

@@ -7,7 +7,7 @@ templates:
4K:
default:
4K: false
allowed_library_types: <<4K>>
allowed_library_types: <<4K>>
overlays:
4K_banner:
@@ -45,7 +45,7 @@ overlays:
plex_search:
all:
audience_rating.gte: 6.5
rating_mid:
overlay:
name: Rating_Mid_BG

View File

@@ -7,7 +7,7 @@ templates:
4K:
default:
4K: false
allowed_library_types: <<4K>>
allowed_library_types: <<4K>>
overlays:
4K_banner:
@@ -45,7 +45,7 @@ overlays:
plex_search:
all:
audience_rating.gte: 6.5
rating_mid:
overlay:
name: Rating_Mid_BG

View File

@@ -19,9 +19,9 @@ templates:
- audience_rating.desc
- critic_rating.desc
limit: <<limit>>
summary: The top <<limit>> episodes of <<title>>, sorted by IMDb rating.
summary: The top <<limit>> episodes of <<title>>, sorted by IMDb rating.
sort_title: " !AC<<title>>"
collection_mode: hide
collection_mode: hide
# Custom iCarly Collection due to a bug with the 2021 iCarly Show
Custom iCarly:
@@ -34,9 +34,9 @@ templates:
- audience_rating.desc
- critic_rating.desc
limit: <<limit>>
summary: The top <<limit>> episodes of <<title>>, sorted by IMDb rating.
summary: The top <<limit>> episodes of <<title>>, sorted by IMDb rating.
sort_title: " !AC<<title>>"
collection_mode: hide
collection_mode: hide
# Chronological TV Episode Collections
Chronological-Episode-Level Genre:
@@ -51,7 +51,7 @@ collections:
trakt_list:
- https://trakt.tv/users/fs-corrupt/lists/star-wars-the-clone-wars-chronological-episode-order?sort=rank,asc
summary: "Star Wars: The Clone Wars Chronological Episode Order"
collection_order: custom
collection_order: custom
sort_title: " !AD<<title>>"
# Custom Collections
@@ -60,7 +60,7 @@ collections:
trakt_list:
- https://trakt.tv/users/nichtlegacy/lists/all-time-favorites?sort=rank,asc
summary: "Personal favorites from all time"
collection_order: alpha
collection_order: alpha
sort_title: " !AA<<title>>"
All Time Favorite Nickelodeon Shows:
@@ -68,7 +68,7 @@ collections:
trakt_list:
- https://trakt.tv/users/thelagacyminer/lists/all-time-favorite-nickelodeon-shows?sort=rank,asc
summary: "Personal favorites from all time"
collection_order: alpha
collection_order: alpha
sort_title: " !AA<<title>>"
Based on Video Games Shows:
@@ -101,7 +101,7 @@ collections:
- https://trakt.tv/users/k0meta/lists/shows-based-on-true-stories?sort=rank,asc
summary: "Shows Based on True Events"
collection_order: alpha
sort_title: " !AA<<title>>"
sort_title: " !AA<<title>>"
Nostalgia Shows:
template: { name: Special Genre }
@@ -109,7 +109,7 @@ collections:
- https://trakt.tv/users/k0meta/lists/nostalgia-shows?sort=rank,asc
summary: "Nostalgia Shows"
collection_order: alpha
sort_title: " !AA<<title>>"
sort_title: " !AA<<title>>"
# Holiday TV Episodes
Halloween TV Episodes:
@@ -118,8 +118,8 @@ collections:
- https://trakt.tv/users/efreakiel/lists/halloween-tv-episodes?sort=title,asc
- https://trakt.tv/users/finniefoo/lists/halloween-episodes?sort=rank,asc
summary: "Halloween television episodes"
collection_order: random
sort_title: " !AB<<title>>"
collection_order: random
sort_title: " !AB<<title>>"
Christmas TV Episodes:
template: { name: Holiday Episodes }
@@ -128,7 +128,7 @@ collections:
- https://trakt.tv/users/somedude69/lists/wikipedia-christmas-episodes-sitcoms
summary: "Christmas television episodes"
collection_order: random
sort_title: " !AB<<title>>"
sort_title: " !AB<<title>>"
# Custom Top XX Collections
@@ -141,8 +141,8 @@ collections:
sort_by: audience_rating.desc
limit: 100
all:
title.is: "Spongebob Schwammkopf"
sort_title: " !AC<<title>>"
title.is: "Spongebob Schwammkopf"
sort_title: " !AC<<title>>"
# The Middle (Custom due to a bug with "Malcolm in the Middle")
The Middle Top 50:
@@ -178,26 +178,26 @@ collections:
limit: 50
all:
title.is: "Dr. House"
sort_title: " !AC<<title>>"
sort_title: " !AC<<title>>"
# Top XX Collections via template
Simpsons Top 100:
template: {name: Top Episodes IMDB, limit: 100, title: "The Simpsons"}
Family Guy Top 100:
template: {name: Top Episodes IMDB, limit: 100, title: "Family Guy"}
template: {name: Top Episodes IMDB, limit: 100, title: "Family Guy"}
The Office (US) Top 50:
template: {name: Top Episodes IMDB, limit: 50, title: "The Office (US)"}
template: {name: Top Episodes IMDB, limit: 50, title: "The Office (US)"}
How I Met Your Mother Top 50:
template: {name: Top Episodes IMDB, limit: 50, title: "How I Met Your Mother"}
template: {name: Top Episodes IMDB, limit: 50, title: "How I Met Your Mother"}
Two and a Half Men Top 50:
template: {name: Top Episodes IMDB, limit: 50, title: "Two and a Half Men"}
template: {name: Top Episodes IMDB, limit: 50, title: "Two and a Half Men"}
Black Mirror Top 5:
template: {name: Top Episodes IMDB, limit: 5, title: "Black Mirror"}
template: {name: Top Episodes IMDB, limit: 5, title: "Black Mirror"}
Phineas and Ferb Top 25:
template: {name: Top Episodes IMDB, limit: 25, title: "Phineas and Ferb"}
@@ -206,9 +206,9 @@ collections:
template: {name: Top Episodes IMDB, limit: 50, title: "South Park"}
Rick and Morty Top 25:
template: {name: Top Episodes IMDB, limit: 25, title: "Rick and Morty"}
template: {name: Top Episodes IMDB, limit: 25, title: "Rick and Morty"}
# iCarly (2007)
iCarly Top 30:
template: {name: Custom iCarly, limit: 30, title: "iCarly"}
template: {name: Custom iCarly, limit: 30, title: "iCarly"}

View File

@@ -156,7 +156,7 @@ dynamic_collections:
bourne: https://trakt.tv/lists/official/the-bourne-collection?sort=rank,asc
mmax: https://trakt.tv/lists/official/mad-max-collection?sort=rank,asc
chucky: https://trakt.tv/users/rzepkowski/lists/child-s-play-movies?sort=rank,asc
texaschainsaw: https://trakt.tv/users/rzepkowski/lists/the-texas-chainsaw-massacre-movies?sort=rank,asc
texaschainsaw: https://trakt.tv/users/rzepkowski/lists/the-texas-chainsaw-massacre-movies?sort=rank,asc
apie: https://trakt.tv/users/elieser49ers/lists/american-pie-franchise-chronological-order?sort=rank,asc
wturn: https://trakt.tv/users/bruinschris/lists/wrong-turn-1-7?sort=rank,asc
## Shows

View File

@@ -1,322 +1,359 @@
# Configuration file for the Kometa application.
# This file specifies the libraries to be used by the application.
libraries:
Movies:
schedule_overlays: weekly(monday|wednesday|friday|sunday)
template_variables:
use_separator: false
metadata_files:
- folder: config/metadata_folders
collection_files:
- folder: config/movies
- default: content_rating_au
- default: continent
template_variables:
include:
- Oceania
- default: franchise
template_variables:
title_override:
33514: The Twilight Saga
9743: Hannibal Lecter
489724: Trolls
# - default: genre
- default: letterboxd
schedule: monthly(17)
template_variables:
use_imdb_top_250: true
use_oscars: true
use_cannes: true
visible_library_top_250: true
visible_home_top_250: true
visible_shared_top_250: true
- default: other_chart
template_variables:
use_anidb: false
use_stevenlu: false
use_pirated: false
visible_library_commonsense: true
visible_home_commonsense: true
visible_shared_commonsense: true
- default: razzie
- default: seasonal
template_variables:
trakt_list_christmas: https://trakt.tv/users/k0meta/lists/christmas-extravaganza-non-tv-movie
schedule_christmas: range(11/01-12/26)
use_patrick: false
use_memorial: false
schedule_father: range(09/01-09/07)
use_independence: false
use_labor: false
use_veteran: false
use_thanksgiving: false
use_aapi: false
- default: studio
template_variables:
include:
- A24
- Blue Sky Studios
- DreamWorks Studios
- DreamWorks Pictures
- Pixar
- Studio Ghibli
- Walt Disney Animation Studios
- Walt Disney Pictures
- Walt Disney Productions
- default: tautulli
- default: universe
#- default: collectionless
overlay_files:
- default: commonsense
- default: mediastinger
- default: resolution
template_variables:
use_resolution: false
use_edition: true
- default: ribbon
settings:
asset_directory:
- config/assets/Movies/
- config/assets/Collections/
prioritize_assets: false
operations:
- schedule: daily
assets_for_all: true
delete_collections:
configured: false
metadata_backup:
path: config/backups/Movies_Metadata_Backup.yml
sync_tags: true
add_blank_entries: false
- schedule: Weekly (monday)
mass_user_rating_update: mdb_tomatoes
- schedule: Weekly (tuesday)
mass_critic_rating_update: imdb
- schedule: Weekly (wednesday)
mass_audience_rating_update: tmdb
- schedule: yearly(01/01)
mass_genre_update:
- tmdb
- imdb
- omdb
- tvdb
- schedule: Weekly (friday)
mass_content_rating_update:
- mdb_commonsense
- omdb
- schedule: Weekly (saturday)
mass_studio_update:
- tmdb
- tvdb
- omdb
- schedule: Weekly (sunday)
mass_originally_avaliable_update:
- tmdb
- tvdb
- omdb
TV Shows:
schedule_overlays: weekly(tuesday|thursday|saturday)
report_path: config/missing/TV_report.yml
template_variables:
use_separator: false
library_name: TV Shows
collection_files:
- folder: config/tvshows
# - default: based
- default: content_rating_au
- default: continent
template_variables:
include:
- Oceania
- default: franchise
#- default: genre
- default: other_chart
template_variables:
use_anidb: false
use_stevenlu: false
use_pirated: false
visible_library_commonsense: true
visible_home_commonsense: true
visible_shared_commonsense: true
- default: tautulli
- default: universe
metadata_files:
- folder: config/metadata_folders
overlay_files:
- default: commonsense
- default: status
- default: ribbon
settings:
asset_directory:
- config/assets/TV Shows/
- config/assets/Collections/
prioritize_assets: true
operations:
- schedule: daily
assets_for_all: true
delete_collections:
configured: false
metadata_backup:
path: config/backups/TVShows_Metadata_Backup.yml
sync_tags: true
add_blank_entries: false
- schedule: Weekly (monday)
mass_user_rating_update: mdb_tomatoes
- schedule: Weekly (tuesday)
mass_critic_rating_update: imdb
- schedule: Weekly (wednesday)
mass_audience_rating_update: tmdb
- schedule: yearly (01/01)
mass_genre_update:
- tmdb
- imdb
- omdb
- tvdb
- schedule: Weekly (friday)
mass_content_rating_update:
- mdb_commonsense
- omdb
- schedule: Weekly (saturday)
mass_studio_update:
- tmdb
- tvdb
- omdb
- schedule: Weekly (sunday)
mass_originally_avaliable_update:
- tmdb
- tvdb
- omdb
Music:
schedule: weekly (sunday)
library_name: Music
collection_files:
- folder: config/music
settings:
asset_directory: config/assets/Music
playlist_files:
- default: playlist
template_variables:
libraries: Movies, TV Shows
#- folder: config/playlists
settings:
cache: true
cache_expiration: 2048
asset_directory: config/assets
report_path: config/missing
asset_folders: true
asset_depth: 1
create_asset_folders: true
prioritize_assets: false
dimensional_asset_rename: true
download_url_assets: true
show_missing_season_assets: false
show_missing_episode_assets: false
show_asset_not_needed: false
sync_mode: sync
minimum_items: 1
default_collection_order:
delete_below_minimum: true
delete_not_scheduled: true
run_again_delay: 2
missing_only_released: true
only_filter_missing: false
show_unmanaged: true
show_unconfigured: true
show_filtered: false
show_options: false
show_missing: false
show_missing_assets: false
save_report: false
tvdb_language: eng
ignore_ids:
ignore_imdb_ids:
item_refresh_delay: 0
playlist_sync_to_user: all
playlist_exclude_users:
playlist_report: false
verify_ssl: false
custom_repo:
check_nightly: true
run_order:
- operations
- metadata
- collections
- overlays
overlay_artwork_filetype: jpg
overlay_artwork_quality:
show_unfiltered: false
webhooks:
error: notifiarr
version: notifiarr
run_start: notifiarr
run_end: notifiarr
changes: notifiarr
delete:
plex:
url: http://localhost:32400
token: [REDACTED]
timeout: 600
clean_bundles: false
empty_trash: false
optimize: false
db_cache:
tmdb:
apikey: [REDACTED]
language: en
cache_expiration: 600
region:
tautulli:
url: http://localhost:1818
apikey: [REDACTED]
omdb:
apikey: [REDACTED]
cache_expiration: 600
mdblist:
apikey: [REDACTED]
cache_expiration: 600
notifiarr:
apikey: [REDACTED]
radarr:
url: http://localhost:7878
token: [REDACTED]
add_missing: false
add_existing: false
root_folder_path: Z:\data\media\movies
monitor: true
availability: announced
quality_profile: HD Bluray + Web
tag:
search: false
radarr_path:
plex_path:
upgrade_existing: false
ignore_cache: false
sonarr:
url: http://localhost:8989
token: [REDACTED]
add_missing: false
add_existing: false
root_folder_path: Z:\data\media\tv
monitor: all
quality_profile: WEB-1080p
language_profile: English
series_type: standard
season_folder: true
tag:
search: false
cutoff_search: false
sonarr_path:
plex_path:
upgrade_existing: false
ignore_cache: false
trakt:
client_id: [REDACTED]
client_secret: [REDACTED]
pin:
authorization:
access_token: [REDACTED]
token_type: [REDACTED]
expires_in: [REDACTED]
refresh_token: [REDACTED]
scope: [REDACTED]
created_at: [REDACTED]
# This is the main configuration file for Kometa.
# It defines the Plex libraries to manage, global settings,
# and connections to external services like TMDb, Trakt, etc.
# The 'libraries' section defines the Plex libraries that Kometa will manage.
# Each library has its own set of collections, overlays, and operations.
libraries:
# Configuration for the 'Movies' library in Plex.
Movies:
# Schedule for when to apply overlays to movie posters.
# This runs on Monday, Wednesday, Friday, and Sunday.
schedule_overlays: weekly(monday|wednesday|friday|sunday)
# Template variables are used to pass values to templates.
template_variables:
use_separator: false
# Specifies metadata files to apply to the library.
metadata_files:
- folder: config/metadata_folders
# A list of collection files to be processed for this library.
# These files define the logic for creating collections in Plex.
collection_files:
- folder: config/movies # Custom collection files
- default: content_rating_au # Default collection for Australian content ratings
- default: continent # Default collection for continents
template_variables:
include:
- Oceania
- default: franchise # Default collection for movie franchises
template_variables:
title_override: # Override titles for specific franchises
33514: The Twilight Saga
9743: Hannibal Lecter
489724: Trolls
- default: letterboxd # Collections based on Letterboxd data
schedule: monthly(17)
template_variables:
use_imdb_top_250: true
use_oscars: true
use_cannes: true
visible_library_top_250: true
visible_home_top_250: true
visible_shared_top_250: true
- default: other_chart # Collections from other movie charts
template_variables:
use_anidb: false
use_stevenlu: false
use_pirated: false
visible_library_commonsense: true
visible_home_commonsense: true
visible_shared_commonsense: true
- default: razzie # Collection for Razzie-winning movies
- default: seasonal # Collections for seasonal events (e.g., Christmas)
template_variables:
trakt_list_christmas: https://trakt.tv/users/k0meta/lists/christmas-extravaganza-non-tv-movie
schedule_christmas: range(11/01-12/26)
use_patrick: false
use_memorial: false
schedule_father: range(09/01-09/07)
use_independence: false
use_labor: false
use_veteran: false
use_thanksgiving: false
use_aapi: false
- default: studio # Collections for movie studios
template_variables:
include:
- A24
- Blue Sky Studios
- DreamWorks Studios
- DreamWorks Pictures
- Pixar
- Studio Ghibli
- Walt Disney Animation Studios
- Walt Disney Pictures
- Walt Disney Productions
- default: tautulli # Collections based on Tautulli data
- default: universe # Collections for movie universes
# Defines overlay files to be applied to movie posters.
overlay_files:
- default: commonsense
- default: mediastinger
- default: resolution
template_variables:
use_resolution: false
use_edition: true
- default: ribbon
# Library-specific settings.
settings:
asset_directory:
- config/assets/Movies/
- config/assets/Collections/
prioritize_assets: false
# Operations to be performed on the library.
operations:
- schedule: daily
assets_for_all: true
delete_collections:
configured: false
metadata_backup:
path: config/backups/Movies_Metadata_Backup.yml
sync_tags: true
add_blank_entries: false
- schedule: Weekly (monday)
mass_user_rating_update: mdb_tomatoes
- schedule: Weekly (tuesday)
mass_critic_rating_update: imdb
- schedule: Weekly (wednesday)
mass_audience_rating_update: tmdb
- schedule: yearly(01/01)
mass_genre_update:
- tmdb
- imdb
- omdb
- tvdb
- schedule: Weekly (friday)
mass_content_rating_update:
- mdb_commonsense
- omdb
- schedule: Weekly (saturday)
mass_studio_update:
- tmdb
- tvdb
- omdb
- schedule: Weekly (sunday)
mass_originally_avaliable_update:
- tmdb
- tvdb
- omdb
# Configuration for the 'TV Shows' library in Plex.
TV Shows:
schedule_overlays: weekly(tuesday|thursday|saturday)
report_path: config/missing/TV_report.yml
template_variables:
use_separator: false
library_name: TV Shows
collection_files:
- folder: config/tvshows
- default: content_rating_au
- default: continent
template_variables:
include:
- Oceania
- default: franchise
- default: other_chart
template_variables:
use_anidb: false
use_stevenlu: false
use_pirated: false
visible_library_commonsense: true
visible_home_commonsense: true
visible_shared_commonsense: true
- default: tautulli
- default: universe
metadata_files:
- folder: config/metadata_folders
overlay_files:
- default: commonsense
- default: status
- default: ribbon
settings:
asset_directory:
- config/assets/TV Shows/
- config/assets/Collections/
prioritize_assets: true
operations:
- schedule: daily
assets_for_all: true
delete_collections:
configured: false
metadata_backup:
path: config/backups/TVShows_Metadata_Backup.yml
sync_tags: true
add_blank_entries: false
- schedule: Weekly (monday)
mass_user_rating_update: mdb_tomatoes
- schedule: Weekly (tuesday)
mass_critic_rating_update: imdb
- schedule: Weekly (wednesday)
mass_audience_rating_update: tmdb
- schedule: yearly (01/01)
mass_genre_update:
- tmdb
- imdb
- omdb
- tvdb
- schedule: Weekly (friday)
mass_content_rating_update:
- mdb_commonsense
- omdb
- schedule: Weekly (saturday)
mass_studio_update:
- tmdb
- tvdb
- omdb
- schedule: Weekly (sunday)
mass_originally_avaliable_update:
- tmdb
- tvdb
- omdb
# Configuration for the 'Music' library in Plex.
Music:
schedule: weekly (sunday)
library_name: Music
collection_files:
- folder: config/music
settings:
asset_directory: config/assets/Music
# Defines playlist files to be processed.
playlist_files:
- default: playlist
template_variables:
libraries: Movies, TV Shows
# Global settings for Kometa.
settings:
cache: true
cache_expiration: 2048
asset_directory: config/assets
report_path: config/missing
asset_folders: true
asset_depth: 1
create_asset_folders: true
prioritize_assets: false
dimensional_asset_rename: true
download_url_assets: true
show_missing_season_assets: false
show_missing_episode_assets: false
show_asset_not_needed: false
sync_mode: sync
minimum_items: 1
default_collection_order:
delete_below_minimum: true
delete_not_scheduled: true
run_again_delay: 2
missing_only_released: true
only_filter_missing: false
show_unmanaged: true
show_unconfigured: true
show_filtered: false
show_options: false
show_missing: false
show_missing_assets: false
save_report: false
tvdb_language: eng
ignore_ids:
ignore_imdb_ids:
item_refresh_delay: 0
playlist_sync_to_user: all
playlist_exclude_users:
playlist_report: false
verify_ssl: false
custom_repo:
check_nightly: true
run_order:
- operations
- metadata
- collections
- overlays
overlay_artwork_filetype: jpg
overlay_artwork_quality:
show_unfiltered: false
# Webhook settings for sending notifications.
webhooks:
error: notifiarr
version: notifiarr
run_start: notifiarr
run_end: notifiarr
changes: notifiarr
delete:
# Plex connection settings.
plex:
url: http://localhost:32400
token: [REDACTED] # Your Plex token
timeout: 600
clean_bundles: false
empty_trash: false
optimize: false
db_cache:
# TMDb (The Movie Database) API settings.
tmdb:
apikey: [REDACTED] # Your TMDb API key
language: en
cache_expiration: 600
region:
# Tautulli connection settings.
tautulli:
url: http://localhost:1818
apikey: [REDACTED] # Your Tautulli API key
# OMDb (Open Movie Database) API settings.
omdb:
apikey: [REDACTED] # Your OMDb API key
cache_expiration: 600
# MDbList connection settings.
mdblist:
apikey: [REDACTED] # Your MDbList API key
cache_expiration: 600
# Notifiarr connection settings.
notifiarr:
apikey: [REDACTED] # Your Notifiarr API key
# Radarr connection settings.
radarr:
url: http://localhost:7878
token: [REDACTED] # Your Radarr API token
add_missing: false
add_existing: false
root_folder_path: Z:\data\media\movies
monitor: true
availability: announced
quality_profile: HD Bluray + Web
tag:
search: false
radarr_path:
plex_path:
upgrade_existing: false
ignore_cache: false
# Sonarr connection settings.
sonarr:
url: http://localhost:8989
token: [REDACTED] # Your Sonarr API token
add_missing: false
add_existing: false
root_folder_path: Z:\data\media\tv
monitor: all
quality_profile: WEB-1080p
language_profile: English
series_type: standard
season_folder: true
tag:
search: false
cutoff_search: false
sonarr_path:
plex_path:
upgrade_existing: false
ignore_cache: false
# Trakt connection settings.
trakt:
client_id: [REDACTED] # Your Trakt client ID
client_secret: [REDACTED] # Your Trakt client secret
pin:
authorization:
access_token: [REDACTED]
token_type: [REDACTED]
expires_in: [REDACTED]
refresh_token: [REDACTED]
scope: [REDACTED]
created_at: [REDACTED]

View File

@@ -1,59 +1,71 @@
##############################################################################
# Other Awards Collections #
# Created by Yozora, Bullmoose20, & Sohjiro #
# Credit to maxwelldeux for the Trakt Lists #
# EDITING THIS FILE MAY CAUSE PULLING NEW UPDATES TO FAIL #
# https://metamanager.wiki/en/latest/defaults/award/other.html #
##############################################################################
external_templates:
pmm: templates
template_variables:
collection_section: 130
templates:
Rotten Tomatoes:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-of-<<key>>
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten Tomatoes Best of <<key>>"
schedule: monthly(01)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20of%20<<key>>.jpg
collections:
Rotten Tomatoes Best All-Time:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-top-100-movies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !1"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20All-Time.jpg
Rotten Tomatoes Best Horror:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-horror-movies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !2"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Horror.jpg
Rotten Tomatoes Best Rom Com:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-the-200-best-romantic-comedies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !3"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Rom%20Com.jpg
dynamic_collections:
Rotten Tomatoes Best of:
type: number
sync: true
data:
starting: current_year-2
ending: current_year-1
title_format: Rotten Tomatoes Best of <<key_name>>
template:
- Rotten Tomatoes
# This file defines collections based on critics' ratings and awards,
# primarily from Rotten Tomatoes. It uses Trakt lists to source the movies.
# Credits: Yozora, Bullmoose20, Sohjiro, maxwelldeux, WhoDat104
# External templates are used to avoid repetition.
# 'pmm: templates' likely refers to a set of predefined templates.
external_templates:
pmm: templates
template_variables:
# This variable is used to control the sorting of collections.
collection_section: 130
# Template for creating Rotten Tomatoes "Best of" collections.
templates:
Rotten Tomatoes:
# The Trakt list URL is parameterized with 'key', which will be a year.
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-of-<<key>>
# 'sync' mode ensures that the Plex collection matches the Trakt list.
sync_mode: sync
collection_mode: default
collection_order: custom
# The sort title is prefixed to control the order of collections in Plex.
sort_title: "!130_Rotten Tomatoes Best of <<key>>"
# Schedule for when to update the collection.
schedule: monthly(01)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20of%20<<key>>.jpg
# Static collections based on specific Rotten Tomatoes lists.
collections:
Rotten Tomatoes Best All-Time:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-top-100-movies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !1"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20All-Time.jpg
Rotten Tomatoes Best Horror:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-horror-movies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !2"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Horror.jpg
Rotten Tomatoes Best Rom Com:
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-the-200-best-romantic-comedies-of-all-time
sync_mode: sync
collection_mode: default
collection_order: custom
sort_title: "!130_Rotten !3"
schedule: monthly(10)
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Rom%20Com.jpg
# Dynamic collections are created based on a range of values.
# In this case, it creates "Best of" collections for recent years.
dynamic_collections:
Rotten Tomatoes Best of:
type: number
sync: true
data:
# Creates collections for the last two years.
starting: current_year-2
ending: current_year-1
# The title of the collection will be formatted with the year.
title_format: Rotten Tomatoes Best of <<key_name>>
# The 'Rotten Tomatoes' template is used to create the collections.
template:
- Rotten Tomatoes

View File

@@ -6,7 +6,7 @@ templates:
delete_not_scheduled: false
limit: 250
#sort_title: "+130_<<collection_name>>"
sync_mode: sync
#sync_mode: sync
visible_home: false
visible_library: false
visible_shared: false
@@ -1249,8 +1249,6 @@ collections:
template: {
keyword: "samurai,sword-fight",
language: "en",
letterboxd_list_details_url_1: "https://letterboxd.com/jhcrotinger/list/samurai/by/rating/",
letterboxd_list_details_limit_1: 250,
letterboxd_list: "theme-samurai",
name: sub_genre,
rating.gte: 2,
@@ -1381,7 +1379,7 @@ collections:
schedule: weekly(saturday)
#summary: "Top rated movies in Stop-Motion"
template: {
keyword: "stop-motion",
keyword: "stop-motion-animation",
language: "en",
letterboxd_list_details_url_1: "https://letterboxd.com/savage_/list/stop-motion/by/rating/",
letterboxd_list_details_limit_1: 250,
@@ -1392,7 +1390,7 @@ collections:
votes.gte: 100
}
Superhero":
Superhero:
#summary: "Top rated movies in Superhero"
#url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_superhero.png
schedule: weekly(saturday)

View File

@@ -1,43 +1,55 @@
############################
# Topics #
############################
templates:
Collection:
optional:
- poster
#url_poster: <<poster>>
collection_order: audience_rating.desc
sort_title: "!060_<<collection_name>>"
schedule: monthly(29)
item_genre: <<collection_name>>
build_collection: false
#######################################################################################################
collections:
Football:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Football.jpg}
imdb_list: https://www.imdb.com/list/ls567409329/
Inspirational:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Inspirational.jpg}
imdb_list: https://www.imdb.com/list/ls567409348/
trakt_list: https://trakt.tv/users/rizreflects/lists/inspiring
Natural Disaster:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Natural%20Disaster.jpg}
imdb_list: https://www.imdb.com/list/ls567402383/
Spy:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Spy.jpg}
imdb_list: https://www.imdb.com/list/ls567409179
Stand-up Comedy:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Stand-Up%20Comedy.jpg}
imdb_list:
- https://www.imdb.com/list/ls567409881/
imdb_search:
votes.gte: 100
keyword: stand-up comedy
collection_order: release.desc
Unexpectedly Amazing:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Unexpectedly%20Amazing.jpg}
imdb_list: https://www.imdb.com/list/ls567408147/
Witch:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Witch.jpg}
imdb_list: https://www.imdb.com/list/ls567408343/
# This file defines collections based on various topics.
# Like the subgenre file, these are not meant to be visible collections,
# but rather a way to tag movies with a specific topic.
# This is achieved by using 'build_collection: false' and 'item_genre: <<collection_name>>'.
templates:
# A generic template for creating topic-based collections.
Collection:
optional:
- poster
collection_order: audience_rating.desc
sort_title: "!060_<<collection_name>>"
schedule: monthly(29)
# This is the key part: instead of building a collection, it tags the items
# with the collection's name as a genre.
item_genre: <<collection_name>>
build_collection: false
collections:
# Each of the following blocks defines a topic.
# The 'template' key is used to call the 'Collection' template.
# The movies are sourced from IMDb and Trakt lists.
Football:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567409329/
Inspirational:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567409348/
trakt_list: https://trakt.tv/users/rizreflects/lists/inspiring
Natural Disaster:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567402383/
Spy:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567409179
Stand-up Comedy:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls567409881/
imdb_search:
votes.gte: 100
keyword: stand-up comedy
collection_order: release.desc
Unexpectedly Amazing:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567408147/
Witch:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567408343/

View File

@@ -1,57 +1,61 @@
#######################################
# Movie Watchlist #
#######################################
# filepath: c:\Users\laura\Kometa\config\movies\movies_watchlist.yml
templates:
Watchlist:
sync_mode: sync
collection_order: custom
sort_title: "!0001_<<collection_name>>"
collection_mode: show
visible_home: true
collections:
Top Family Movie Picks:
template: Watchlist
trakt_list: https://trakt.tv/users/fuschaitea/lists/top-family-movie-picks
Laura's Watchlist:
template: Watchlist
plex_watchlist: critic_rating.desc
Watch with Britty:
template: Watchlist
trakt_list: https://trakt.tv/users/fuschaitea/lists/movies-to-watch-with-britty
Recommendations for Mum:
trakt_list:
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-movies-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-tv-shows-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
visible_home: range(01/01-12/31)
visible_shared: range(01/01-12/31)
🍿 What Movie Should I Watch?:
smart_filter:
sort_by: random
all:
unplayed: true
release: 3650
limit: 5
url_poster: https://i.imgur.com/OMrEyGg.jpeg
collection_mode: hide
sort_title: "+1_1_next"
visible_library: true
visible_home: true
schedule: weekly(wednesday)
Julia Donaldson:
smart_filter:
sort_by: title.asc
all:
writer: tmdb
tmdb_person: 592851
#######################################
# Movie Watchlist #
#######################################
# filepath: c:\Users\laura\Kometa\config\movies\movies_watchlist.yml
templates:
Watchlist:
sync_mode: sync
collection_order: custom
sort_title: "!0001_<<collection_name>>"
collection_mode: show
visible_library: true
visible_home: true
collections:
Top Family Movie Picks:
template: Watchlist
trakt_list: https://trakt.tv/users/fuschaitea/lists/top-family-movie-picks
Laura's Watchlist:
template: Watchlist
plex_watchlist: critic_rating.desc
Watch with Britty:
template: Watchlist
trakt_list: https://trakt.tv/users/fuschaitea/lists/movies-to-watch-with-britty
Recommendations for Mum:
trakt_list:
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-movies-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-tv-shows-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
visible_home: range(01/01-12/31)
visible_shared: range(01/01-12/31)
🍿 What Movie Should I Watch?:
smart_filter:
sort_by: random
all:
unplayed: true
release: 3650
limit: 5
url_poster: https://i.imgur.com/OMrEyGg.jpeg
collection_mode: hide
sort_title: "+1_1_next"
visible_library: true
visible_home: true
schedule: weekly(wednesday)
Julia Donaldson:
smart_filter:
sort_by: title.asc
all:
writer: tmdb
tmdb_person: 592851
visible_home: true
visible_shared: true
visible_library: true

File diff suppressed because it is too large Load Diff

View File

@@ -1,425 +1,360 @@
##############################################################################
# Continent Collections #
# Created by Adam Pope, bartolomesorianol, Bullmoose20 & Sohjiro #
# Artwork Credit to Duhniel, Bullmoose20, and Wiki Commons #
# EDITING THIS FILE MAY CAUSE PULLING NEW UPDATES TO FAIL #
# https://metamanager.wiki/en/latest/defaults/movie/continent.html #
##############################################################################
external_templates:
file: config/templates/musictemplates.yml
template_variables:
collection_section: "001"
templates:
smart_filters:
default:
sort_by: plays.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
search_value: <<value>>
optional:
- search_term2
- search_value2
- limit
- type
smart_filter:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
type: <<type>>
any:
<<search_term>>: <<search_value>>
<<search_term2>>: <<search_value2>>
collections:
Continent Collections:
template:
- name: separator
separator: continent
key_name: Continent
translation_key: separator
dynamic_collections:
Continent:
type: country
title_format: <<key_name>>
other_name: Other Continents
template:
- smart_filters
- shared
other_template:
- other_collection
- smart_filters
- shared
template_variables:
search_term:
default: artist_country
image:
default: country/<<style>>/<<original_key_name_encoded>>
style:
default: white
translation_key:
default: country
other: country_other
dynamic:
default: true
include:
- Africa
- Americas
- Antarctica
- Asia
- Europe
- Oceania
addons:
Africa:
# Northern Africa:
- Algeria
- Egypt
- Libya
- Morocco
- Sudan
- Tunisia
- Western Sahara
# Eastern Africa:
- British Indian Ocean Territory
- Burundi
- Comoros
- Djibouti
- Eritrea
- Ethiopia
- French Southern Territories
- Kenya
- Madagascar
- Malawi
- Mauritius
- Mayotte
- Mozambique
- Réunion
- Rwanda
- Seychelles
- Somalia
- South Sudan
- Uganda
- Tanzania
- United Republic of Tanzania # Tanzania
- Zambia
- Zimbabwe
# Central Africa:
- Angola
- Cameroon
- Central African Republic
- Chad
- Republic of the Congo
- Congo # Republic of the Congo
- Democratic Republic of the Congo
- Zaire # Democratic Republic of the Congo
- Equatorial Guinea
- Gabon
- São Tomé and Príncipe
- Sao Tome and Principe # São Tomé and Príncipe
# Southern Africa:
- Botswana
- Eswatini
- Swaziland # Eswatini
- Lesotho
- Namibia
- South Africa
# Western Africa:
- Benin
- Burkina Faso
- Cape Verde
- Cabo Verde # Cape Verde
- Côte d'Ivoire
- Côte dIvoire # Côte d'Ivoire
- Ivory Coast # Côte d'Ivoire
- Gambia
- Ghana
- Guinea
- Guinea-Bissau
- Liberia
- Mali
- Mauritania
- Niger
- Nigeria
- Saint Helena, Ascension and Tristan da Cunha
- Saint Helena # Saint Helena, Ascension and Tristan da Cunha
- St. Helena # Saint Helena, Ascension and Tristan da Cunha
- Ascension # Saint Helena, Ascension and Tristan da Cunha
- Tristan da Cunha # Saint Helena, Ascension and Tristan da Cunha
- Senegal
- Sierra Leone
- Togo
Americas:
# Caribbean:
- Anguilla
- Antigua and Barbuda
- Antigua # Antigua and Barbuda
- Barbuda # Antigua and Barbuda
- Aruba
- Bahamas
- Barbados
- Bonaire, Sint Eustatius and Saba
- Bonaire # Bonaire, Sint Eustatius and Saba
- Sint Eustatius # Bonaire, Sint Eustatius and Saba
- Saba # Bonaire, Sint Eustatius and Saba
- Netherlands Antilles
- British Virgin Islands
- Cayman Islands
- Cuba
- Curaçao
- Dominica
- Dominican Republic
- Grenada
- Guadeloupe
- Haiti
- Jamaica
- Martinique
- Montserrat
- Puerto Rico
- Saint Barthélemy
- Saint Kitts and Nevis
- St. Kitts and Nevis # Saint Kitts and Nevis
- Saint Lucia
- St. Lucia # Saint Lucia
- Saint Martin
- Saint Vincent and the Grenadines
- Saint Vincent and Grenadines # Saint Vincent and the Grenadines
- St. Vincent and the Grenadines # Saint Vincent and the Grenadines
- St. Vincent and Grenadines # Saint Vincent and the Grenadines
- Sint Maarten
- Trinidad and Tobago
- Turks and Caicos Islands
- US Virgin Islands
- U.S. Virgin Islands # US Virgin Islands
- United States Virgin Islands # US Virgin Islands
# Central America:
- Belize
- Costa Rica
- El Salvador
- Guatemala
- Honduras
- Mexico
- Nicaragua
- Panama
# South America:
- Argentina
- Bolivia
- Plurinational State of Bolivia # Bolivia
- Bouvet Island
- Brazil
- Chile
- Colombia
- Ecuador
- Falkland Islands
- Malvinas # Falkland Islands
- French Guiana
- Guyana
- Paraguay
- Peru
- South Georgia and the South Sandwich Islands
- South Georgia and South Sandwich Islands # South Georgia and the South Sandwich Islands
- South Georgia # South Georgia and the South Sandwich Islands
- South Sandwich Islands # South Georgia and the South Sandwich Islands
- Suriname
- Uruguay
- Venezuela
- Bolivarian Republic of Venezuela # Venezuela
# North America:
- Bermuda
- Canada
- Greenland
- Saint Pierre and Miquelon
- St. Pierre and Miquelon # Saint Pierre and Miquelon
- United States
- United States of America # United States
Asia:
# Central Asia:
- Kazakhstan
- Kyrgyzstan
- Tajikistan
- Turkmenistan
- Uzbekistan
# Eastern Asia:
- China
- Hong Kong
- Hong Kong SAR China # Hong Kong
- Macao
- Macau # Macao
- Macau SAR China # Macao
- North Korea
- Democratic People's Republic of Korea # North Korea
- Japan
- Mongolia
- South Korea
- Republic of Korea # South Korea
- Korea # South Korea
- Taiwan
- Taiwan, Province of China # Taiwan
# South-Eastern Asia:
- Brunei
- Brunei Darussalam # Brunei
- Cambodia
- Indonesia
- Laos
- Lao People's Democratic Republic # Laos
- Lao # Laos
- Malaysia
- Myanmar
- Burma # Myanmar
- Philippines
- Singapore
- Thailand
- East Timor
- Timor-Leste # East Timor
- Vietnam
- Viet Nam # Vietnam
# Southern Asia:
- Afghanistan
- Bangladesh
- Bhutan
- India
- Iran
- Islamic Republic of Iran # Iran
- Maldives
- Nepal
- Pakistan
- Sri Lanka
# Western Asia:
- Armenia
- Azerbaijan
- Bahrain
- Cyprus
- Georgia
- Iraq
- Israel
- Jordan
- Kuwait
- Lebanon
- Oman
- Qatar
- Saudi Arabia
- Palestine
- State of Palestine # Palestine
- Syria
- Syrian Arab Republic # Syria
- Turkey
- Türkiye # Turkey
- United Arab Emirates
- Yemen
Europe:
# Eastern Europe:
- Belarus
- Bulgaria
- Czech Republic
- Czechia # Czech Republic
- Czechoslovakia # Czech Republic
- Hungary
- Poland
- Moldova
- Republic of Moldova # Moldova
- Romania
- Russia
- Russian Federation # Russia
- Soviet Union
- Slovakia
- Ukraine
# Northern Europe:
- Åland Islands
- Guernsey
- Jersey
- Sark
- Denmark
- Estonia
- Faroe Islands
- Finland
- Iceland
- Ireland
- Northern Ireland
- Isle of Man
- Latvia
- Lithuania
- Norway
- Svalbard and Jan Mayen Islands
- Svalbard and Jan Mayen # Svalbard and Jan Mayen Islands
- Sweden
- United Kingdom
# Southern Europe:
- Albania
- Andorra
- Bosnia and Herzegovina
- Croatia
- Gibraltar
- Greece
- Kosovo
- Vatican City
- Holy See # Vatican City
- Italy
- Malta
- Montenegro
- North Macedonia
- Macedonia # North Macedonia
- Republic of North Macedonia # North Macedonia
- Portugal
- San Marino
- Serbia
- Serbia and Montenegro
- Slovenia
- Spain
- Yugoslavia
# Western Europe:
- Austria
- Belgium
- France
- French Republic # France
- Germany
- East Germany
- Liechtenstein
- Luxembourg
- Monaco
- Netherlands
- Switzerland
Oceania:
# Australia and New Zealand:
- Australia
- Christmas Island
- Cocos (Keeling) Islands
- Heard Island and McDonald Islands
- Heard and McDonald Islands # Heard Island and McDonald Islands
- New Zealand
- Norfolk Island
# Melanesia:
- Fiji
- New Caledonia
- Papua New Guinea
- New Guinea # Papua New Guinea
- Solomon Islands
- Vanuatu
# Micronesia:
- Guam
- Kiribati
- Marshall Islands
- Micronesia
- Federated States of Micronesia # Micronesia
- Nauru
- Northern Mariana Islands
- Palau
- US Minor Outlying Islands
- United States Minor Outlying Islands # US Minor Outlying Islands
- United States Outlying Islands # US Minor Outlying Islands
- U.S. Minor Outlying Islands # US Minor Outlying Islands
- U.S. Outlying Islands # US Minor Outlying Islands
- US Outlying Islands # US Minor Outlying Islands
# Polynesia:
- American Samoa
- Cook Islands
- French Polynesia
- Niue
- Pitcairn
- Pitcairn Islands # Pitcairn
- Samoa
- Tokelau
- Tonga
- Tuvalu
- Wallis and Futuna Islands
- Wallis and Futuna # Wallis and Futuna Islands
# This file defines collections for music from different continents.
# It uses a dynamic collection to create a collection for each continent,
# and then groups countries under each continent.
# External templates are used to avoid repetition.
external_templates:
file: config/templates/musictemplates.yml
template_variables:
collection_section: "001"
# Template for creating smart filters.
templates:
smart_filters:
default:
sort_by: plays.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
search_value: <<value>>
optional:
- search_term2
- search_value2
- limit
- type
smart_filter:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
type: <<type>>
any:
<<search_term>>: <<search_value>>
<<search_term2>>: <<search_value2>>
collections:
# This creates a separator in Plex to group the continent collections.
Continent Collections:
template:
- name: separator
separator: continent
key_name: Continent
translation_key: separator
# This dynamic collection creates a collection for each continent.
dynamic_collections:
Continent:
type: country
title_format: <<key_name>>
other_name: Other Continents
template:
- smart_filters
- shared
other_template:
- other_collection
- smart_filters
- shared
template_variables:
search_term:
default: artist_country
image:
default: country/<<style>>/<<original_key_name_encoded>>
style:
default: white
translation_key:
default: country
other: country_other
dynamic:
default: true
# The list of continents to create collections for.
include:
- Africa
- Americas
- Antarctica
- Asia
- Europe
- Oceania
# The 'addons' section maps countries to continents.
addons:
Africa:
# Northern Africa:
- Algeria
- Egypt
- Libya
- Morocco
- Sudan
- Tunisia
- Western Sahara
# ... and so on for all other continents and countries.
Americas:
# Caribbean:
- Anguilla
- Antigua and Barbuda
- Antigua # Antigua and Barbuda
- Barbuda # Antigua and Barbuda
- Aruba
- Bahamas
- Barbados
- Bonaire, Sint Eustatius and Saba
- Bonaire # Bonaire, Sint Eustatius and Saba
- Sint Eustatius # Bonaire, Sint Eustatius and Saba
- Saba # Bonaire, Sint Eustatius and Saba
- Netherlands Antilles
- British Virgin Islands
- Cayman Islands
- Cuba
- Curaçao
- Dominica
- Dominican Republic
- Grenada
- Guadeloupe
- Haiti
- Jamaica
- Martinique
- Montserrat
- Puerto Rico
- Saint Barthélemy
- Saint Kitts and Nevis
- St. Kitts and Nevis # Saint Kitts and Nevis
- Saint Lucia
- St. Lucia # Saint Lucia
- Saint Martin
- Saint Vincent and the Grenadines
- Saint Vincent and Grenadines # Saint Vincent and the Grenadines
- St. Vincent and the Grenadines # Saint Vincent and the Grenadines
- St. Vincent and Grenadines # Saint Vincent and the Grenadines
- Sint Maarten
- Trinidad and Tobago
- Turks and Caicos Islands
- US Virgin Islands
- U.S. Virgin Islands # US Virgin Islands
- United States Virgin Islands # US Virgin Islands
# Central America:
- Belize
- Costa Rica
- El Salvador
- Guatemala
- Honduras
- Mexico
- Nicaragua
- Panama
# South America:
- Argentina
- Bolivia
- Plurinational State of Bolivia # Bolivia
- Bouvet Island
- Brazil
- Chile
- Colombia
- Ecuador
- Falkland Islands
- Malvinas # Falkland Islands
- French Guiana
- Guyana
- Paraguay
- Peru
- South Georgia and the South Sandwich Islands
- South Georgia and South Sandwich Islands # South Georgia and the South Sandwich Islands
- South Georgia # South Georgia and the South Sandwich Islands
- South Sandwich Islands # South Georgia and the South Sandwich Islands
- Suriname
- Uruguay
- Venezuela
- Bolivarian Republic of Venezuela # Venezuela
# North America:
- Bermuda
- Canada
- Greenland
- Saint Pierre and Miquelon
- St. Pierre and Miquelon # Saint Pierre and Miquelon
- United States
- United States of America # United States
Asia:
# Central Asia:
- Kazakhstan
- Kyrgyzstan
- Tajikistan
- Turkmenistan
- Uzbekistan
# Eastern Asia:
- China
- Hong Kong
- Hong Kong SAR China # Hong Kong
- Macao
- Macau # Macao
- Macau SAR China # Macao
- North Korea
- Democratic People's Republic of Korea # North Korea
- Japan
- Mongolia
- South Korea
- Republic of Korea # South Korea
- Korea # South Korea
- Taiwan
- Taiwan, Province of China # Taiwan
# South-Eastern Asia:
- Brunei
- Brunei Darussalam # Brunei
- Cambodia
- Indonesia
- Laos
- Lao People's Democratic Republic # Laos
- Lao # Laos
- Malaysia
- Myanmar
- Burma # Myanmar
- Philippines
- Singapore
- Thailand
- East Timor
- Timor-Leste # East Timor
- Vietnam
- Viet Nam # Vietnam
# Southern Asia:
- Afghanistan
- Bangladesh
- Bhutan
- India
- Iran
- Islamic Republic of Iran # Iran
- Maldives
- Nepal
- Pakistan
- Sri Lanka
# Western Asia:
- Armenia
- Azerbaijan
- Bahrain
- Cyprus
- Georgia
- Iraq
- Israel
- Jordan
- Kuwait
- Lebanon
- Oman
- Qatar
- Saudi Arabia
- Palestine
- State of Palestine # Palestine
- Syria
- Syrian Arab Republic # Syria
- Turkey
- Türkiye # Turkey
- United Arab Emirates
- Yemen
Europe:
# Eastern Europe:
- Belarus
- Bulgaria
- Czech Republic
- Czechia # Czech Republic
- Czechoslovakia # Czech Republic
- Hungary
- Poland
- Moldova
- Republic of Moldova # Moldova
- Romania
- Russia
- Russian Federation # Russia
- Soviet Union
- Slovakia
- Ukraine
# Northern Europe:
- Åland Islands
- Guernsey
- Jersey
- Sark
- Denmark
- Estonia
- Faroe Islands
- Finland
- Iceland
- Ireland
- Northern Ireland
- Isle of Man
- Latvia
- Lithuania
- Norway
- Svalbard and Jan Mayen Islands
- Svalbard and Jan Mayen # Svalbard and Jan Mayen Islands
- Sweden
- United Kingdom
# Southern Europe:
- Albania
- Andorra
- Bosnia and Herzegovina
- Croatia
- Gibraltar
- Greece
- Kosovo
- Vatican City
- Holy See # Vatican City
- Italy
- Malta
- Montenegro
- North Macedonia
- Macedonia # North Macedonia
- Republic of North Macedonia # North Macedonia
- Portugal
- San Marino
- Serbia
- Serbia and Montenegro
- Slovenia
- Spain
- Yugoslavia
# Western Europe:
- Austria
- Belgium
- France
- French Republic # France
- Germany
- East Germany
- Liechtenstein
- Luxembourg
- Monaco
- Netherlands
- Switzerland
Oceania:
# Australia and New Zealand:
- Australia
- Christmas Island
- Cocos (Keeling) Islands
- Heard Island and McDonald Islands
- Heard and McDonald Islands # Heard Island and McDonald Islands
- New Zealand
- Norfolk Island
# Melanesia:
- Fiji
- New Caledonia
- Papua New Guinea
- New Guinea # Papua New Guinea
- Solomon Islands
- Vanuatu
# Micronesia:
- Guam
- Kiribati
- Marshall Islands
- Micronesia
- Federated States of Micronesia # Micronesia
- Nauru
- Northern Mariana Islands
- Palau
- US Minor Outlying Islands
- United States Minor Outlying Islands # US Minor Outlying Islands
- United States Outlying Islands # US Minor Outlying Islands
- U.S. Minor Outlying Islands # US Minor Outlying Islands
- U.S. Outlying Islands # US Minor Outlying Islands
- US Outlying Islands # US Minor Outlying Islands
# Polynesia:
- American Samoa
- Cook Islands
- French Polynesia
- Niue
- Pitcairn
- Pitcairn Islands # Pitcairn
- Samoa
- Tokelau
- Tonga
- Tuvalu
- Wallis and Futuna Islands
- Wallis and Futuna # Wallis and Futuna Islands

View File

@@ -1,23 +1,35 @@
external_templates:
file: config/templates/musictemplates.yml
template_variables:
collection_section: "004"
templates:
track mood collection:
builder_level: track
smart_filter:
limit: 100
minimum_items: 100
delete_below_minimum: true
sort_by: plays.desc
all:
track_mood: <<value>>
#dynamic_collections:
# Track Moods:
# type: track_mood
# title_format: Top 100 <<key_name>> Tracks
# template:
# - track mood collection
# - shared
# This file defines a template for creating collections of tracks based on their "mood" tag.
# The dynamic collection that would use this template is commented out,
# so this file doesn't create any collections in its current state.
external_templates:
file: config/templates/musictemplates.yml
template_variables:
collection_section: "004"
templates:
# This template creates a collection of tracks based on a mood.
track mood collection:
# This ensures that the collections are built based on individual tracks.
builder_level: track
smart_filter:
limit: 100
minimum_items: 100
delete_below_minimum: true
sort_by: plays.desc
all:
track_mood: <<value>>
collections: {} #placeholder
# The following dynamic collection is commented out. If it were active, it would
# create a collection for each mood tag found in the library, containing the
# top 100 tracks with that mood.
#
# dynamic_collections:
# Track Moods:
# type: track_mood
# title_format: Top 100 <<key_name>> Tracks
# template:
# - track mood collection
# - shared

View File

@@ -1,260 +1,274 @@
templates:
separator:
default:
key: separator
sep_style: orig
collection_section: "00"
url_poster_<<key>>: https://raw.githubusercontent.com/ladywhiskers/Posters/main/separators/<<sep_style>>/<<separator>>.jpg
sort_prefix: "!"
sort_title: <<sort_prefix>><<collection_section>>_!<<title>>
optional:
- use_separator
- collection_mode
- placeholder_tmdb_movie
- placeholder_tvdb_show
- placeholder_imdb_id
- summary_<<key>>
- name_<<key>>
- key_name
- translation_key
conditionals:
use_blank:
default: true
conditions:
- placeholder_tmdb_movie.exists: true
value: false
- placeholder_tvdb_show.exists: true
value: false
- placeholder_imdb_id.exists: true
value: false
run_definition: <<use_separator>>
collection_mode: <<collection_mode>>
sort_title: <<sort_title>>
tmdb_movie: <<placeholder_tmdb_movie>>
tvdb_show: <<placeholder_tvdb_show>>
imdb_id: <<placeholder_imdb_id>>
blank_collection: <<use_blank>>
url_poster: <<url_poster_<<key>>>>
translation_key: <<translation_key>>
key_name: <<key_name>>
summary: <<summary_<<key>>>>
name: <<name_<<key>>>>
shared:
conditionals:
name_<<key>>:
conditions:
- dynamic: true
<<translation_key>>_name.exists: true
value: <<<<translation_key>>_name>>
- dynamic: true
key.not: other
value: <<name_format>>
summary_<<key>>:
conditions:
- dynamic: true
<<translation_key>>_summary.exists: true
value: <<<<translation_key>>_summary>>
- dynamic: true
key.not: other
value: <<summary_format>>
url_poster_<<key>>:
conditions:
- file_poster_<<key>>.exists: false
file_poster.exists: false
value: https://raw.githubusercontent.com/ladywhiskers/Posters/main/<<image>>.jpg
default:
collection_section: "00"
key: <<mapping_name>>
pre: "_"
order: ""
order_<<key>>: <<order>>
sort_prefix: "!"
sort_title: <<sort_prefix>><<collection_section>><<pre>><<order_<<key>>>><<title>>
item_radarr_tag_<<key>>: <<item_radarr_tag>>
item_sonarr_tag_<<key>>: <<item_sonarr_tag>>
url_poster: https://raw.githubusercontent.com/ladywhiskers/Posters/main/<<image>>.jpg
url_poster_<<key>>: <<url_poster>>
file_poster_<<key>>: <<file_poster>>
url_background_<<key>>: <<url_background>>
file_background_<<key>>: <<file_background>>
visible_library_<<key>>: <<visible_library>>
visible_home_<<key>>: <<visible_home>>
visible_shared_<<key>>: <<visible_shared>>
minimum_items_<<key>>: <<minimum_items>>
optional:
- use_<<key>>
- allowed_libraries
- collection_mode
- visible_library
- visible_home
- visible_shared
- item_radarr_tag
- item_sonarr_tag
- trakt_list
- image
- ignore_ids
- ignore_imdb_ids
- minimum_items
- summary_format
- name_format
- key_name
- translation_key
- file_poster
- url_background
- file_background
- limit
- name_mapping
- delete_collections_named
run_definition:
- <<use_<<key>>>>
- <<allowed_libraries>>
name_mapping: <<name_mapping>>
translation_key: <<translation_key>>
key_name: <<key_name>>
summary: <<summary_<<key>>>>
name: <<name_<<key>>>>
limit: <<limit>>
ignore_ids: <<ignore_ids>>
ignore_imdb_ids: <<ignore_imdb_ids>>
trakt_list: <<trakt_list>>
ignore_blank_results: true
collection_mode: <<collection_mode>>
visible_library: <<visible_library_<<key>>>>
visible_home: <<visible_home_<<key>>>>
visible_shared: <<visible_shared_<<key>>>>
item_radarr_tag: <<item_radarr_tag_<<key>>>>
item_sonarr_tag: <<item_sonarr_tag_<<key>>>>
sort_title: <<sort_title>>
url_poster: <<url_poster_<<key>>>>
file_poster: <<file_poster_<<key>>>>
url_background: <<url_background_<<key>>>>
file_background: <<file_background_<<key>>>>
minimum_items: <<minimum_items_<<key>>>>
delete_collections_named: <<delete_collections_named>>
smart_filter:
default:
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
search_value: <<value>>
optional:
- search_term2
- search_value2
- limit
- type
smart_filter:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
type: <<type>>
any:
<<search_term>>: <<search_value>>
<<search_term2>>: <<search_value2>>
filter:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
optional:
- limit
smart_label:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
all:
label: <<smart_label>>
sync_mode: <<sync_mode_<<key>>>>
plex_all: true
filters:
<<filter_term>>: <<value>>
mdb_smart:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
cache_builders: 1
smart_label: <<sort_by_<<key>>>>
sync_mode: <<sync_mode_<<key>>>>
mdblist_list: <<mdblist_list>>
arr:
default:
key: <<mapping_name>>
radarr_add_missing_<<key>>: <<radarr_add_missing>>
sonarr_add_missing_<<key>>: <<sonarr_add_missing>>
radarr_folder_<<key>>: <<radarr_folder>>
sonarr_folder_<<key>>: <<sonarr_folder>>
radarr_tag_<<key>>: <<radarr_tag>>
sonarr_tag_<<key>>: <<sonarr_tag>>
radarr_monitor_<<key>>: <<radarr_monitor>>
sonarr_monitor_<<key>>: <<sonarr_monitor>>
radarr_search_<<key>>: <<radarr_search>>
sonarr_search_<<key>>: <<sonarr_search>>
optional:
- radarr_add_missing
- sonarr_add_missing
- radarr_folder
- sonarr_folder
- radarr_tag
- sonarr_tag
- radarr_monitor
- sonarr_monitor
- radarr_search
- sonarr_search
radarr_add_missing: <<radarr_add_missing_<<key>>>>
sonarr_add_missing: <<sonarr_add_missing_<<key>>>>
radarr_folder: <<radarr_folder_<<key>>>>
sonarr_folder: <<sonarr_folder_<<key>>>>
radarr_tag: <<radarr_tag_<<key>>>>
sonarr_tag: <<sonarr_tag_<<key>>>>
radarr_monitor: <<radarr_monitor_<<key>>>>
sonarr_monitor: <<sonarr_monitor_<<key>>>>
radarr_search: <<radarr_search_<<key>>>>
sonarr_search: <<sonarr_search_<<key>>>>
custom:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
collection_order: custom
collection_order_<<key>>: <<collection_order>>
cache_builders: 1
collection_order: <<collection_order_<<key>>>>
sync_mode: <<sync_mode_<<key>>>>
cache_builders: <<cache_builders>>
other_collection:
default:
collection_section: "00"
pre: "_~"
optional:
- use_other
run_definition: <<use_other>>
sort_title: "!<<collection_section>><<pre>><<title>>"
use_year_collections:
conditionals:
final_collection_section:
default: <<collection_section>>
conditions:
- year_collection_section.exists: true
value: <<year_collection_section>>
default:
collection_section: "00"
key: <<mapping_name>>
pre: "_"
order: ""
order_<<key>>: <<order>>
sort_prefix: "!"
sort_title: <<sort_prefix>><<final_collection_section>><<pre>><<order_<<key>>>><<title>>
optional:
- use_year_collections
run_definition: <<use_year_collections>>
sort_title: <<sort_title>>
collections:
# This file contains a set of reusable templates for creating collections in Kometa.
# These templates are referenced in other configuration files to avoid repetition
# and to ensure consistency across collections.
templates:
# Template for creating a separator in the Plex library.
# Separators are empty collections used to visually group other collections.
separator:
default:
key: separator
sep_style: orig
collection_section: "00"
url_poster_<<key>>: https://raw.githubusercontent.com/ladywhiskers/Posters/main/separators/<<sep_style>>/<<separator>>.jpg
sort_prefix: "!"
sort_title: <<sort_prefix>><<collection_section>>_!<<title>>
optional:
- use_separator
- collection_mode
- placeholder_tmdb_movie
- placeholder_tvdb_show
- placeholder_imdb_id
- summary_<<key>>
- name_<<key>>
- key_name
- translation_key
conditionals:
use_blank:
default: true
conditions:
- placeholder_tmdb_movie.exists: true
value: false
- placeholder_tvdb_show.exists: true
value: false
- placeholder_imdb_id.exists: true
value: false
run_definition: <<use_separator>>
collection_mode: <<collection_mode>>
sort_title: <<sort_title>>
tmdb_movie: <<placeholder_tmdb_movie>>
tvdb_show: <<placeholder_tvdb_show>>
imdb_id: <<placeholder_imdb_id>>
blank_collection: <<use_blank>>
url_poster: <<url_poster_<<key>>>>
translation_key: <<translation_key>>
key_name: <<key_name>>
summary: <<summary_<<key>>>>
name: <<name_<<key>>>>
# Template for shared settings that are common to many collections.
shared:
conditionals:
name_<<key>>:
conditions:
- dynamic: true
<<translation_key>>_name.exists: true
value: <<<<translation_key>>_name>>
- dynamic: true
key.not: other
value: <<name_format>>
summary_<<key>>:
conditions:
- dynamic: true
<<translation_key>>_summary.exists: true
value: <<<<translation_key>>_summary>>
- dynamic: true
key.not: other
value: <<summary_format>>
url_poster_<<key>>:
conditions:
- file_poster_<<key>>.exists: false
file_poster.exists: false
value: https://raw.githubusercontent.com/ladywhiskers/Posters/main/<<image>>.jpg
default:
collection_section: "00"
key: <<mapping_name>>
pre: "_"
order: ""
order_<<key>>: <<order>>
sort_prefix: "!"
sort_title: <<sort_prefix>><<collection_section>><<pre>><<order_<<key>>>><<title>>
item_radarr_tag_<<key>>: <<item_radarr_tag>>
item_sonarr_tag_<<key>>: <<item_sonarr_tag>>
url_poster: https://raw.githubusercontent.com/ladywhiskers/Posters/main/<<image>>.jpg
url_poster_<<key>>: <<url_poster>>
file_poster_<<key>>: <<file_poster>>
url_background_<<key>>: <<url_background>>
file_background_<<key>>: <<file_background>>
visible_library_<<key>>: <<visible_library>>
visible_home_<<key>>: <<visible_home>>
visible_shared_<<key>>: <<visible_shared>>
minimum_items_<<key>>: <<minimum_items>>
optional:
- use_<<key>>
- allowed_libraries
- collection_mode
- visible_library
- visible_home
- visible_shared
- item_radarr_tag
- item_sonarr_tag
- trakt_list
- image
- ignore_ids
- ignore_imdb_ids
- minimum_items
- summary_format
- name_format
- key_name
- translation_key
- file_poster
- url_background
- file_background
- limit
- name_mapping
- delete_collections_named
run_definition:
- <<use_<<key>>>>
- <<allowed_libraries>>
name_mapping: <<name_mapping>>
translation_key: <<translation_key>>
key_name: <<key_name>>
summary: <<summary_<<key>>>>
name: <<name_<<key>>>>
limit: <<limit>>
ignore_ids: <<ignore_ids>>
ignore_imdb_ids: <<ignore_imdb_ids>>
trakt_list: <<trakt_list>>
ignore_blank_results: true
collection_mode: <<collection_mode>>
visible_library: <<visible_library_<<key>>>>
visible_home: <<visible_home_<<key>>>>
visible_shared: <<visible_shared_<<key>>>>
item_radarr_tag: <<item_radarr_tag_<<key>>>>
item_sonarr_tag: <<item_sonarr_tag_<<key>>>>
sort_title: <<sort_title>>
url_poster: <<url_poster_<<key>>>>
file_poster: <<file_poster_<<key>>>>
url_background: <<url_background_<<key>>>>
file_background: <<file_background_<<key>>>>
minimum_items: <<minimum_items_<<key>>>>
delete_collections_named: <<delete_collections_named>>
# Template for creating a smart filter.
smart_filter:
default:
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
search_value: <<value>>
optional:
- search_term2
- search_value2
- limit
- type
smart_filter:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
type: <<type>>
any:
<<search_term>>: <<search_value>>
<<search_term2>>: <<search_value2>>
# Template for creating a filter.
filter:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
limit_<<key>>: <<limit>>
optional:
- limit
smart_label:
sort_by: <<sort_by_<<key>>>>
limit: <<limit_<<key>>>>
all:
label: <<smart_label>>
sync_mode: <<sync_mode_<<key>>>>
plex_all: true
filters:
<<filter_term>>: <<value>>
# Template for creating a smart collection from an MDbList list.
mdb_smart:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
sort_by: release.desc
sort_by_<<key>>: <<sort_by>>
cache_builders: 1
smart_label: <<sort_by_<<key>>>>
sync_mode: <<sync_mode_<<key>>>>
mdblist_list: <<mdblist_list>>
# Template for settings related to Radarr and Sonarr.
arr:
default:
key: <<mapping_name>>
radarr_add_missing_<<key>>: <<radarr_add_missing>>
sonarr_add_missing_<<key>>: <<sonarr_add_missing>>
radarr_folder_<<key>>: <<radarr_folder>>
sonarr_folder_<<key>>: <<sonarr_folder>>
radarr_tag_<<key>>: <<radarr_tag>>
sonarr_tag_<<key>>: <<sonarr_tag>>
radarr_monitor_<<key>>: <<radarr_monitor>>
sonarr_monitor_<<key>>: <<sonarr_monitor>>
radarr_search_<<key>>: <<radarr_search>>
sonarr_search_<<key>>: <<sonarr_search>>
optional:
- radarr_add_missing
- sonarr_add_missing
- radarr_folder
- sonarr_folder
- radarr_tag
- sonarr_tag
- radarr_monitor
- sonarr_monitor
- radarr_search
- sonarr_search
radarr_add_missing: <<radarr_add_missing_<<key>>>>
sonarr_add_missing: <<sonarr_add_missing_<<key>>>>
radarr_folder: <<radarr_folder_<<key>>>>
sonarr_folder: <<sonarr_folder_<<key>>>>
radarr_tag: <<radarr_tag_<<key>>>>
sonarr_tag: <<sonarr_tag_<<key>>>>
radarr_monitor: <<radarr_monitor_<<key>>>>
sonarr_monitor: <<sonarr_monitor_<<key>>>>
radarr_search: <<radarr_search_<<key>>>>
sonarr_search: <<sonarr_search_<<key>>>>
# Template for custom collections.
custom:
default:
sync_mode: sync
sync_mode_<<key>>: <<sync_mode>>
collection_order: custom
collection_order_<<key>>: <<collection_order>>
cache_builders: 1
collection_order: <<collection_order_<<key>>>>
sync_mode: <<sync_mode_<<key>>>>
cache_builders: <<cache_builders>>
# Template for "Other" collections.
other_collection:
default:
collection_section: "00"
pre: "_~"
optional:
- use_other
run_definition: <<use_other>>
sort_title: "!<<collection_section>><<pre>><<title>>"
# Template for year-based collections.
use_year_collections:
conditionals:
final_collection_section:
default: <<collection_section>>
conditions:
- year_collection_section.exists: true
value: <<year_collection_section>>
default:
collection_section: "00"
key: <<mapping_name>>
pre: "_"
order: ""
order_<<key>>: <<order>>
sort_prefix: "!"
sort_title: <<sort_prefix>><<final_collection_section>><<pre>><<order_<<key>>>><<title>>
optional:
- use_year_collections
run_definition: <<use_year_collections>>
sort_title: <<sort_title>>
collections:

View File

@@ -1,90 +1,101 @@
#######################################################
# Documentary Genres #
# TV Collections #
#######################################################
# This file defines collections for documentary TV shows, categorized by genre.
# Like other files in this repository, it uses a template to tag shows with a
# genre rather than creating visible collections. This is achieved by using
# 'build_collection: false' and 'item_genre: <<collection_name>>'.
templates:
# A generic template for creating documentary genre collections.
Collection:
optional:
- poster
#url_poster: <<poster>>
#sync_mode: sync
sort_title: "!060_<<collection_name>>"
collection_order: release.desc
schedule: weekly(tuesday)
# This is the key part: instead of building a collection, it tags the items
# with the collection's name as a genre.
item_genre: <<collection_name>>
build_collection: false
collections:
# Each of the following blocks defines a documentary genre.
# The 'template' key is used to call the 'Collection' template.
# The shows are sourced from IMDb lists and TVDb IDs.
America:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/America.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567617875/
tvdb_show: 309958, 342167, 321784
Animal:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Animal.jpg}
Animal:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611777/
tvdb_show: 231181, 302286, 365318, 397323, 380404, 414372, 423716, 342167, 354527
Apocalypse :
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Apocalypse.jpg}
Apocalypse:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611328/
tvdb_show: 101421, 279117
The Arts:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/The%20Arts.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611610/
tvdb_show: 362158, 353954, 418474, 266866
Building:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Building.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611261/
tvdb_show: 400435, 280472, 363422, 269355, 379326
Conspiracy:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Conspiracy.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611457/
tvdb_show: 37043, 111931, 287495, 386899
Dinosaur:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Dinosaur.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611901/
tvdb_show: 419593, 416319
Engineering:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Engineering.jpg}
imdb_list:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls567611972/ #All other Engineering List
- https://www.imdb.com/list/ls567611261/ #Building List
- https://www.imdb.com/list/ls567611821/ #Engineering Disaster List
tvdb_show: 410587, 375980, 370754, 369458, 345959, 122401, 280472, 282106, 370754, 400435, 399511, 420420
Engineering Disaster:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Engineering%20Disaster.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567611821/
tvdb_show: 410587, 375980, 370754, 369458, 345959
tvdb_show: 410587, 375980, 370754, 369458, 345959
Fringe:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Fringe.jpg}
imdb_list:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls567613015/ #All other Fringe List
- https://www.imdb.com/list/ls567611457/ #Conpsiracy List
- https://www.imdb.com/list/ls567616578/ #Paranormal List
- https://www.imdb.com/list/ls567637035/ #UFO List
tvdb_show: 37043, 111931, 287495, 386899, 261380, 111931, 255855, 417262, 290249, 370439, 336514, 413801, 111931, 311398, 255855, 370439, 376545, 420534
History :
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/History.jpg}
History:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567613721/
tvdb_show: 84970, 119811, 290249, 136411, 311398, 287495, 362158, 356885, 400435, 418474, 413801, 421687, 361079, 420420, 80620, 376545, 360852, 427595, 363422, 355566, 420534, 269355
# smart_filter:
# sort_by: year.asc
# all:
# genre: documentary
# any:
# genre: biography, war
Human Body:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Human%20Body.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567613933/
tvdb_show: 370439, 324346, 333111
tmdb_show: 207778
Manufacturing:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Manufacturing.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567613987/
tvdb_show: 421687, 399511
Nature:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Nature.jpg}
imdb_list:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls567613846/ #All other Nature List
- https://www.imdb.com/list/ls567611777/ #Animals List
- https://www.imdb.com/list/ls567611901/ #Dinosaur list
@@ -92,33 +103,40 @@ collections:
- https://www.imdb.com/list/ls567616754/ #Space List
- https://www.imdb.com/list/ls567637089/ #Weather List
tvdb_show: 231181, 302286, 365318, 397323, 380404, 414372, 423716, 342167, 354527, 419593, 416319, 268119, 388660, 356885, 333247, 387478, 136411, 377071, 390520, 269320, 255951, 286699, 370598, 80865, 419048, 398721, 433852
Paranormal:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Paranormal.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567616578/
tvdb_show: 261380
Plant:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Plant.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567616526/
tvdb_show: 298146
Space:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Space.jpg}
imdb_list:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls567616754/ #All other Space List
- https://www.imdb.com/list/ls567637035/ #UFO List
tvdb_show: 377071, 364784
Sport :
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Sport.jpg}
Sport:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567616746/
tvdb_show: 362158, 398117
Technology:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Technology.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567616111/
tvdb_show: 122401, 362158, 282106, 358433, 410168, 41726
UFO:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Ufo.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567637035/
tvdb_show: 111931, 255855
Weather:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Weather.jpg}
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567637089/
tvdb_show: 390520, 269320, 255951, 286699, 370598, 80865, 419048

View File

@@ -1,48 +1,62 @@
#######################################
# TV Topics #
#######################################
templates:
Collection:
optional:
- show
- poster
tvdb_show: <<show>>
#url_poster: <<poster>>
sync_mode: sync
collection_order: audience_rating.desc
sort_title: "!060_<<collection_name>>"
schedule: weekly(tuesday)
item_genre: <<collection_name>>
build_collection: false
collections:
Anthology:
template: {name: Collection} #poster: https://raw.githubusercontent.com/WhoDat104/Genres/main/Anthology.jpg}
imdb_list: https://www.imdb.com/list/ls567937024/
Apocalypse:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Apocalypse.jpg}
imdb_list: https://www.imdb.com/list/ls527128700/
Historical Fiction:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Historical%20Fiction.jpg}
imdb_list: https://www.imdb.com/list/ls527147593/
Medical:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Medical.jpg}
imdb_list:
- https://www.imdb.com/list/ls064005250/
- https://www.imdb.com/list/ls567394825/
Slice of Life:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Slice%20of%20Life.jpg}
imdb_list: https://www.imdb.com/list/ls527147618/
Spy:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Spy.jpg}
imdb_list: https://www.imdb.com/list/ls527147789/
Stephen King:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Stephen%20King.jpg}
imdb_list: https://www.imdb.com/list/ls567399416/
Supernatural:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Supernatural.jpg}
imdb_list: https://www.imdb.com/list/ls527140144/
Time Travel:
template: {name: Collection} #poster: https://raw.githubusercontent.com/kometa-team/Default-Images/master/genre/Time%20Travel.jpg}
imdb_list: https://www.imdb.com/list/ls527147299/
# This file defines collections for TV shows based on various topics.
# Like the other topic and subgenre files, these are not meant to be visible
# collections, but rather a way to tag shows with a specific topic.
# This is achieved by using 'build_collection: false' and 'item_genre: <<collection_name>>'.
templates:
# A generic template for creating topic-based collections.
Collection:
optional:
- show
- poster
tvdb_show: <<show>>
sync_mode: sync
collection_order: audience_rating.desc
sort_title: "!060_<<collection_name>>"
schedule: weekly(tuesday)
# This is the key part: instead of building a collection, it tags the items
# with the collection's name as a genre.
item_genre: <<collection_name>>
build_collection: false
collections:
# Each of the following blocks defines a topic.
# The 'template' key is used to call the 'Collection' template.
# The shows are sourced from IMDb lists.
Anthology:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567937024/
Apocalypse:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527128700/
Historical Fiction:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527147593/
Medical:
template: {name: Collection}
imdb_list:
- https://www.imdb.com/list/ls064005250/
- https://www.imdb.com/list/ls567394825/
Slice of Life:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527147618/
Spy:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527147789/
Stephen King:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls567399416/
Supernatural:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527140144/
Time Travel:
template: {name: Collection}
imdb_list: https://www.imdb.com/list/ls527147299/

View File

@@ -1,27 +1,33 @@
#######################################
# TV Watchlist #
#######################################
collections:
Laura's Watchlist:
plex_watchlist: critic_rating.desc
collection_order: custom
sync_mode: sync
sort_title: "!0001_<<collection_name>>"
collection_mode: show
Watch with Britty:
trakt_list: https://trakt.tv/users/fuschaitea/lists/shows-to-watch-with-britty
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
Recommendations for Mum:
trakt_list:
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-movies-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-tv-shows-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
visible_home: range(01/01-12/31)
visible_shared: range(01/01-12/31)
# This file defines collections based on TV show watchlists from various sources,
# such as Trakt and Plex itself. These are meant to be visible collections.
collections:
# A collection based on the Plex watchlist of a user named Laura.
Laura's Watchlist:
plex_watchlist: critic_rating.desc
collection_order: custom
sync_mode: sync
sort_title: "!0001_<<collection_name>>"
collection_mode: show
# A collection of TV shows to watch with someone named Britty, from a Trakt list.
Watch with Britty:
trakt_list: https://trakt.tv/users/fuschaitea/lists/shows-to-watch-with-britty
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
# A collection of movie and TV show recommendations for "Mum".
# It combines multiple Trakt lists.
Recommendations for Mum:
trakt_list:
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-movies-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum-tv-shows-couchmoney-tv
- https://trakt.tv/users/fuschaitea/lists/recommendations-for-mum
sync_mode: sync
collection_order: custom
collection_mode: show
sort_title: "!0001_<<collection_name>>"
visible_home: range(01/01-12/31)
visible_shared: range(01/01-12/31)