This commit is contained in:
2023-09-26 18:14:36 -06:00
commit fb5a0fc542
443 changed files with 21892 additions and 0 deletions

110
Plex/.drone.yml Normal file
View File

@@ -0,0 +1,110 @@
---
kind: pipeline
type: docker
name: deploy
environment:
PACKAGE: Plex
URL: plex.alexlebens.net tautulli.alexlebens.net
steps:
- name: Tests
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- /scripts/tests.sh
- name: Nofification > Discord | Tests - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose validation for Plex failed.
when:
status:
- failure
- name: Configuration
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- mkdir ~/.ssh/
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H $HOST_IP >> ~/.ssh/known_hosts
- /scripts/configuration.sh
environment:
SSH_KEY:
from_secret: ssh_key_ps03fd_drone
DOCKER_HOST:
from_secret: docker_host_ps03fd
HOST_IP:
from_secret: host_ip_ps03fd
UPTIMEKUMA_NAME:
from_secret: uptimekuma_name
UPTIMEKUMA_PASSWORD:
from_secret: uptimekuma_password
UPTIMEKUMA_URL:
from_secret: uptimekuma_url
when:
branch:
- main
- name: Nofification > Discord | Configuration - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Configuration for Plex failed.
when:
status:
- failure
- name: Deploy
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- mkdir ~/.ssh/
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H $HOST_IP >> ~/.ssh/known_hosts
- /scripts/deploy.sh
environment:
SSH_KEY:
from_secret: ssh_key_ps03fd_drone
DOCKER_HOST:
from_secret: docker_host_ps03fd
HOST_IP:
from_secret: host_ip_ps03fd
when:
branch:
- main
- name: Nofification > Discord | Deploy - Success
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose deployment for Plex succeeded
when:
status:
- sucess
- name: Nofification > Discord | Deploy - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose deployment for Plex failed.
when:
status:
- failure

9
Plex/.env Normal file
View File

@@ -0,0 +1,9 @@
PUID=1000
PGID=1000
TZ=America/Denver
ADVERTISE_IP=https://plex.alexlebens.net:443
HOSTNAME=plex.alexlebens.net
PLEX_CLAIM=claim-qtyC1fQVn6C7Cd4-jfBo
PLEX_UID=1000
PLEX_GID=1000

View File

@@ -0,0 +1,19 @@
templates:
collection_tvtop:
sync_mode: sync
smart_label: originally_available.desc
sonarr_add_missing: false
sonarr_tag: pmm_tvtop
collections:
Trending:
template: { name: collection_tvtop }
trakt_trending: 40
summary: Shows Trending across the internet
Popular:
template: { name: collection_tvtop }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries
limit: 40
summary: Popular Shows across the internet

View File

@@ -0,0 +1,60 @@
templates:
collection_alpha:
sync_mode: sync
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_awards
collection_release:
sync_mode: sync
collection_order: release
radarr_add_missing: false
radarr_tag: pmm_awards
collections:
Academy Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/search/title/?title_type=feature,documentary&groups=oscar_winner
summary: Oscar Winning Movies
Razzie Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066716172/
summary: The Razzies are an awards banquet that honors the worst in films from a year. They are the opposite to the Oscars. This list will reflect on the films that have won the Worst Picture award from the beginning in 1980 to present day. Here are the films that "won" Worst Picture.
César Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls024896765/
summary: The César Award is the national film award of France. It is delivered in the Nuit des César ceremony and was first awarded in 1976.
Annie Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls086556605/
summary: The Annie Awards are accolades which the Los Angeles branch of the International Animated Film Association, ASIFA-Hollywood, has presented each year since 1972 to recognize excellence in animation shown in cinema and television.
Sundance Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls033136048/
summary: A comprehensive list of all of the full length films that have screened at the Sundance Film Festival.
Cinefest:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls095591734/
summary: Cinéfest Sudbury International Film Festival, also known as Cinéfest and Cinéfest Sudbury is an annual film festival in Greater Sudbury, Ontario, Canada, held over nine days each September. It is one of the largest film festivals in Canada.
Berlin International Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls076602311/
summary: The Berlin International Film Festival, usually called the Berlinale, is a film festival held annually in Berlin, Germany.
Palme d'Or Winners:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066281181/
summary: The Palme d'Or (Golden Palm) is the highest prize awarded at the Cannes Film Festival. It was introduced in 1955 by the organising committee. From 1939 to 1954, the highest prize was the Grand Prix du Festival International du Film.
American Film Institute:
template: { name: collection_alpha }
imdb_list: https://www.imdb.com/list/ls062266402/
summary: American Film Institute "100 Greatest American Movies"
radarr_add_missing: false
radarr_tag: pmm_awards

View File

@@ -0,0 +1,72 @@
templates:
collection:
optional:
- collection
- movie
tmdb_collection_details: <<collection>>
tmdb_movie: <<movie>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_collections
collections:
Appleseed:
template: { name: collection, collection: "87800, 371526" }
Berserk Golden Age Arc:
template: { name: collection, collection: 118415 }
Evangelion:
template: { name: collection, collection: 96850, 210303 }
Final Fantasy:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls022264056/
summary: A collection of films based off or closely associated with the Final Fantasy video games.
Ghost in the Shell:
template: { name: collection, collection: "23026, 443996, 196753" }
Godzilla (Anime):
template: { name: collection, collection: 535790 }
sort_title: Godzilla 04 (Anime)
Made in Abyss:
template: { name: collection, collection: 688209 }
Megazone 23:
template: { name: collection, collection: 452942 }
My Hero Academia:
template: { name: collection, collection: 662002 }
Patlabor:
template: { name: collection, collection: 98435 }
Pokémon:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls062687939/
summary: Pokémon is a media franchise created by video game designer Satoshi Tajiri that centers on fictional creatures called Pokémon. As of 2020, there have been 23 animated films and one live action film. The first nineteen animated films are based on the anime television series of the same name, with the original film being remade into the 22nd. The 20th, 21st and 23rd animated films are set in an alternate continuity to the anime.
Godzilla (Showa):
template: { name: collection, collection: 374509, movie: 18983 }
sort_title: Godzilla 01 (Showa)
Godzilla (Heisei):
template: { name: collection, collection: 374511, movie: 39256 }
sort_title: Godzilla 02 (Heisei)
Godzilla (Millennium):
template: { name: collection, collection: 374512 }
sort_title: Godzilla 03 (Millennium)
Godzilla (MonsterVerse):
template: { name: collection, collection: 535313, movie: 293167 }
sort_title: Godzilla 04 (MonsterVerse)
Mobile Suit Gundam:
template:
{
name: collection,
collection: "143302, 213276, 468692, 525348, 143152, 376552, 802636, 802649",
}

View File

@@ -0,0 +1,45 @@
templates:
collection_top:
sort_title: +++++++++++++++++++_<<sort>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_top
collections:
Trending:
template: { name: collection_top, sort: 1Trending }
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
smart_label: year.desc
summary: Movies Trending across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4vpMZoA.png
Popular:
template: { name: collection_top, sort: 2Popular }
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
limit: 40
smart_label: year.desc
summary: Popular Movies across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4cI2Jg4.png
Top Rated:
template: { name: collection_top, sort: 3Top Rated }
imdb_list: https://www.imdb.com/search/title/?groups=top_250&count=250
tmdb_top_rated: 250
smart_label: critic_rating.desc
summary: Top Rated Movies
url_background: https://i.imgur.com/b26VZ9y.jpg
url_poster: https://i.imgur.com/x7BhedD.png
Newly Released Movies:
template: { name: collection_top, sort: 4Newly Released }
smart_label: added.desc
trakt_list: https://trakt.tv/users/giladg/lists/latest-releases
summary: A collection of newly-released movies in cinema and on streaming services
url_poster: https://i.imgur.com/D62EdJd.jpg
url_background: https://wallpaperbat.com/img/23094-cinema-hd-wallpaper-top-free-cinema-hd-background.jpg

View File

@@ -0,0 +1,60 @@
templates:
collection_alpha:
sync_mode: sync
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_awards
collection_release:
sync_mode: sync
collection_order: release
radarr_add_missing: false
radarr_tag: pmm_awards
collections:
Academy Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/search/title/?title_type=feature,documentary&groups=oscar_winner
summary: Oscar Winning Movies
Razzie Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066716172/
summary: The Razzies are an awards banquet that honors the worst in films from a year. They are the opposite to the Oscars. This list will reflect on the films that have won the Worst Picture award from the beginning in 1980 to present day. Here are the films that "won" Worst Picture.
César Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls024896765/
summary: The César Award is the national film award of France. It is delivered in the Nuit des César ceremony and was first awarded in 1976.
Annie Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls086556605/
summary: The Annie Awards are accolades which the Los Angeles branch of the International Animated Film Association, ASIFA-Hollywood, has presented each year since 1972 to recognize excellence in animation shown in cinema and television.
Sundance Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls033136048/
summary: A comprehensive list of all of the full length films that have screened at the Sundance Film Festival.
Cinefest:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls095591734/
summary: Cinéfest Sudbury International Film Festival, also known as Cinéfest and Cinéfest Sudbury is an annual film festival in Greater Sudbury, Ontario, Canada, held over nine days each September. It is one of the largest film festivals in Canada.
Berlin International Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls076602311/
summary: The Berlin International Film Festival, usually called the Berlinale, is a film festival held annually in Berlin, Germany.
Palme d'Or Winners:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066281181/
summary: The Palme d'Or (Golden Palm) is the highest prize awarded at the Cannes Film Festival. It was introduced in 1955 by the organising committee. From 1939 to 1954, the highest prize was the Grand Prix du Festival International du Film.
American Film Institute:
template: { name: collection_alpha }
imdb_list: https://www.imdb.com/list/ls062266402/
summary: American Film Institute "100 Greatest American Movies"
radarr_add_missing: false
radarr_tag: pmm_awards

View File

@@ -0,0 +1,45 @@
templates:
collection_top:
sort_title: +++++++++++++++++++_<<sort>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_top
collections:
Trending:
template: { name: collection_top, sort: 1Trending }
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
smart_label: year.desc
summary: Movies Trending across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4vpMZoA.png
Popular:
template: { name: collection_top, sort: 2Popular }
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
limit: 40
smart_label: year.desc
summary: Popular Movies across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4cI2Jg4.png
Top Rated:
template: { name: collection_top, sort: 3Top Rated }
imdb_list: https://www.imdb.com/search/title/?groups=top_250&count=250
tmdb_top_rated: 250
smart_label: critic_rating.desc
summary: Top Rated Movies
url_background: https://i.imgur.com/b26VZ9y.jpg
url_poster: https://i.imgur.com/x7BhedD.png
Newly Released Movies:
template: { name: collection_top, sort: 4Newly Released }
smart_label: added.desc
trakt_list: https://trakt.tv/users/giladg/lists/latest-releases
summary: A collection of newly-released movies in cinema and on streaming services
url_poster: https://i.imgur.com/D62EdJd.jpg
url_background: https://wallpaperbat.com/img/23094-cinema-hd-wallpaper-top-free-cinema-hd-background.jpg

View File

@@ -0,0 +1,63 @@
templates:
collection_tvchannels:
smart_label: originally_available.desc
sync_mode: sync
url_poster: <<poster>>
sort_title: +++++++++++++++++++++_ <<collection_name>>
sonarr_add_missing: false
sonarr_tag: pmm_tvchannels
collections:
ABC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113115 }
tmdb_network: 2
summary: Shows Aired on ABC
AMC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113118 }
tmdb_network: 174
summary: Shows Aired on AMC
BBC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113123 }
tmdb_network: 4
summary: Shows Aired on BBC One
CBS:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113138 }
tmdb_network: 16
summary: Shows Aired on CBS
FOX:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113173 }
tmdb_network: 19
summary: Shows Aired on FOX
NBC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113217 }
tmdb_network: 6
summary: Shows Aired on NBC
Showtime:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113257 }
tmdb_network: 67
summary: Showtime Orginal Shows
Starz:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113265 }
tmdb_network: 318
summary: Starz Orginal Shows
SyFy:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113267 }
tmdb_network: 77
summary: Shows Aired on SYFY

View File

@@ -0,0 +1,48 @@
templates:
collection_tvstudios:
smart_label: originally_available.desc
sort_title: +++++++++++++++++++++_ <<sort>>
sync_mode: sync
sonarr_add_missing: false
sonarr_tag: pmm_tvstudios
collections:
Apple Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 1APPLE }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0546168
summary: All Apple TV Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/O9iWork.png
url_background: https://wallpaper-house.com/data/out/8/wallpaper2you_228774.png
Amazon Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 2AMAZON }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0319272
summary: All Apple TV Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/nU3gqqB.png
url_background: https://i.imgur.com/2jfs7oS.png
Netflix Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 3NETFLIX }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0144901
summary: All Netflix Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/7kiE1MU.png
url_background: https://img5.goodfon.com/original/1920x1080/1/61/fon-netflix-logo-raduga-tsvet-fon-background-skachat-oboi-sk.jpg
HBO Max Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 4HBO }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0754095
summary: All HBO Max Series/Shows From 2000-2025
url_poster: https://i.redd.it/zxdvw3tk3f151.jpg
url_background: https://wallpapercave.com/wp/wp6402755.png
HULU Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 5HULU }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0218858
summary: All HULU Original Series/Shows From 2000-2025
url_poster: https://plexcollectionposters.com/images/2019/05/26/Hulu6ddad752a5ce9bac.jpg
url_background: https://cdn.vox-cdn.com/thumbor/oR4hqrmTxbX_O4gdJ6np8h-PxFk=/0x439:750x861/1600x900/cdn.vox-cdn.com/uploads/chorus_image/image/56311701/Image_uploaded_from_iOS__8_.1503433270.jpg

View File

@@ -0,0 +1,19 @@
templates:
collection_tvtop:
sync_mode: sync
smart_label: originally_available.desc
sonarr_add_missing: false
sonarr_tag: pmm_tvtop
collections:
Trending:
template: { name: collection_tvtop }
trakt_trending: 40
summary: Shows Trending across the internet
Popular:
template: { name: collection_tvtop }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries
limit: 40
summary: Popular Shows across the internet

View File

@@ -0,0 +1,60 @@
templates:
collection_alpha:
sync_mode: sync
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_awards
collection_release:
sync_mode: sync
collection_order: release
radarr_add_missing: false
radarr_tag: pmm_awards
collections:
Academy Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/search/title/?title_type=feature,documentary&groups=oscar_winner
summary: Oscar Winning Movies
Razzie Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066716172/
summary: The Razzies are an awards banquet that honors the worst in films from a year. They are the opposite to the Oscars. This list will reflect on the films that have won the Worst Picture award from the beginning in 1980 to present day. Here are the films that "won" Worst Picture.
César Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls024896765/
summary: The César Award is the national film award of France. It is delivered in the Nuit des César ceremony and was first awarded in 1976.
Annie Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls086556605/
summary: The Annie Awards are accolades which the Los Angeles branch of the International Animated Film Association, ASIFA-Hollywood, has presented each year since 1972 to recognize excellence in animation shown in cinema and television.
Sundance Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls033136048/
summary: A comprehensive list of all of the full length films that have screened at the Sundance Film Festival.
Cinefest:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls095591734/
summary: Cinéfest Sudbury International Film Festival, also known as Cinéfest and Cinéfest Sudbury is an annual film festival in Greater Sudbury, Ontario, Canada, held over nine days each September. It is one of the largest film festivals in Canada.
Berlin International Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls076602311/
summary: The Berlin International Film Festival, usually called the Berlinale, is a film festival held annually in Berlin, Germany.
Palme d'Or Winners:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066281181/
summary: The Palme d'Or (Golden Palm) is the highest prize awarded at the Cannes Film Festival. It was introduced in 1955 by the organising committee. From 1939 to 1954, the highest prize was the Grand Prix du Festival International du Film.
American Film Institute:
template: { name: collection_alpha }
imdb_list: https://www.imdb.com/list/ls062266402/
summary: American Film Institute "100 Greatest American Movies"
radarr_add_missing: false
radarr_tag: pmm_awards

View File

@@ -0,0 +1,732 @@
templates:
collection:
optional:
- collection
- movie
tmdb_collection_details: <<collection>>
tmdb_movie: <<movie>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_collections
collections:
DC Comics Universe:
template: { name: collection }
tmdb_list_details: 3
url_poster: https://i.imgur.com/TJr35Au.jpeg
url_background: https://wallpaper.dog/large/17164614.jpg
Fast and the Furious:
template: { name: collection }
trakt_list: https://trakt.tv/users/ireallylovevids/lists/fast-and-furious
url_poster: https://i.imgur.com/dPnWh1B.jpeg
url_background: https://images5.alphacoders.com/811/thumb-1920-811727.jpg
radarr_add_missing: true
James Bond:
template: { name: collection }
trakt_list: https://trakt.tv/users/any/lists/james-bond
url_poster: https://i.imgur.com/DO6IDWi.jpeg
url_background: https://www.pixel4k.com/wp-content/uploads/2018/09/james-bond-007_1536401470.jpg
radarr_add_missing: true
Jurassic Park:
template: { name: collection }
trakt_list: https://trakt.tv/users/darkman1498/lists/jurassic-park
url_poster: https://i.imgur.com/dj3gain.jpeg
url_background: https://www.teahub.io/photos/full/54-546246_2500x1200-jurassic-world-wallpapers-jurassic-park-wallpaper-4k.jpg
radarr_add_missing: true
Lord of the Rings:
template: { name: collection }
trakt_list: https://trakt.tv/users/lutgnature/lists/lord-of-the-rings-hobbit
url_poster: https://i.imgur.com/xFbp0IR.jpeg
url_background: https://wallpaperaccess.com/full/838293.jpg
Marvel Cinematic Universe:
template: { name: collection }
trakt_list: https://trakt.tv/users/jawann2002/lists/marvel-cinematic-universe-movies?sort=rank,asc
url_poster: https://i.imgur.com/iDi8DBe.jpeg
url_background: https://images.hdqwalls.com/download/marvel-cinematic-universe-jm-3840x2400.jpg
radarr_add_missing: true
Spider-man Universe:
template: { name: collection }
trakt_list: https://trakt.tv/users/james_97/lists/spider-verse
url_poster: https://i.imgur.com/keYWzrL.jpeg
url_background: https://i.ibb.co/P59wtVs/download.jpg
radarr_add_missing: true
Star Wars:
template: { name: collection }
trakt_list: https://trakt.tv/users/draackje/lists/star-wars
url_poster: https://i.imgur.com/jlLZuOr.jpeg
url_background: https://wallpaperaccess.com/full/1101749.jpg
radarr_add_missing: true
Wizarding World of Harry Potter:
template: { name: collection }
tmdb_list_details: 63607
url_poster: https://i.imgur.com/qjNHdhY.jpeg
url_background: https://wallpaperaccess.com/full/562430.jpg
sort_title: +09_Harry Potter
radarr_add_missing: true
X-Men:
template: { name: collection }
trakt_list: https://trakt.tv/users/bertjj/lists/x-men
url_poster: https://i.imgur.com/GFamrIY.jpeg
url_background: https://s2.best-wallpaper.net/wallpaper/3840x2160/1607/X-Men-Days-of-Future-Past-Ultra-HD_3840x2160.jpg
radarr_add_missing: true
Cornetto Trilogy:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls068623110/
url_poster: https://theposterdb.com/api/assets/234
url_background: https://imgur.com/k50sjBc
summary: An anthology series of British comedic genre films directed by Edgar Wright, written by Wright and Simon Pegg, produced by Nira Park, and starring Pegg and Nick Frost. The trilogy consists of Shaun of the Dead (2004), Hot Fuzz (2007), and The World's End (2013).
The Angry Birds:
template: { name: collection, collection: 531315 }
Charlie Brown:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls054850259/
summary: Collection of Movies and TV Specials with the beloved Peanuts characters.
Dead Space:
template: { name: collection, collection: 56005 }
The Death of Superman:
template: { name: collection, collection: 593251 }
Despicable Me:
template: { name: collection, collection: "86066, 544669" }
radarr_add_missing: true
Fantasia:
template: { name: collection, collection: 55427 }
Happy Feet:
template: { name: collection, collection: 92012 }
Hotel Transylvania:
template: { name: collection, collection: 185103 }
How to Train Your Dragon:
template: { name: collection, collection: 89137 }
radarr_add_missing: true
Ice Age:
template:
{ name: collection, collection: 8354, movie: "79218, 717095, 387893" }
Inspector Gadget:
template: { name: collection, collection: 237445 }
Justice League (Animated):
template: { name: collection, collection: 256287 }
Justice League Dark:
template: { name: collection, collection: 702342 }
Kung Fu Panda:
template: { name: collection, collection: 77816 }
radarr_add_missing: true
The Lego Movies:
template: { name: collection, collection: "325470, 696630", movie: 274862 }
Madagascar:
template:
{ name: collection, collection: 14740, movie: "161143, 25472, 270946" }
Paddington:
template: { name: collection, collection: 488924 }
radarr_add_missing: true
The Rescuers:
template: { name: collection, collection: 57971 }
Rio:
template: { name: collection, collection: 229932 }
The Secret Life of Pets:
template: { name: collection, collection: 427084 }
Shrek:
template: { name: collection, collection: 2150 }
Teen Titans:
template: { name: collection, collection: 466894 }
Teenage Mutant Ninja Turtles:
template: { name: collection, collection: "1582, 401562", movie: 1273 }
Trolls:
template: { name: collection, collection: 489724 }
Wreck-It Ralph:
template: { name: collection, collection: 404825 }
28 Days/Weeks Later:
template: { name: collection, collection: 1565 }
name_mapping: 28 Days-Weeks Later
Ace Ventura:
template: { name: collection, collection: 3167 }
Air Bud:
template: { name: collection, collection: 97445 }
Airplane:
template: { name: collection, collection: 91663 }
Alien:
template: { name: collection, collection: "8091, 135416, 115762" }
radarr_add_missing: true
Anchorman:
template: { name: collection, collection: 93791 }
radarr_add_missing: true
The Amazing Spider-Man:
template: { name: collection, collection: 125574 }
radarr_add_missing: true
American Pie:
template: { name: collection, collection: "2806, 298820" }
Austin Powers:
template: { name: collection, collection: 1006 }
radarr_add_missing: true
Back to the Future:
template: { name: collection, collection: 264 }
radarr_add_missing: true
Batman:
template: { name: collection, collection: 120794 }
Battlestar Galactica:
template: { name: collection, collection: 91697 }
radarr_add_missing: true
Before...:
template: { name: collection, collection: 123800 }
name_mapping: Before
radarr_add_missing: true
Bill & Ted's Most Excellent:
template: { name: collection, collection: 91746 }
The Black Stallion:
template: { name: collection, collection: 405393 }
Blade Runner:
template: { name: collection, collection: 422837 }
radarr_add_missing: true
Borat Moviefilms:
template: { name: collection, collection: 747168 }
radarr_add_missing: true
The Bourne:
template: { name: collection, collection: 31562 }
radarr_add_missing: true
The Chronicles of Narnia:
template: { name: collection, collection: 420 }
The Chronicles of Riddick:
template: { name: collection, collection: 2794 }
Clerks:
template: { name: collection, collection: 182813 }
Cloverfield:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls021933730/
summary: Cloverfield is an American science fiction anthology film series and media franchise created and produced by J. J. Abrams consisting of three films, viral marketing websites linking the films together, and a tie-in manga to the first film titled Cloverfield/Kishin (2008), all set in a shared fictional universe referred to as the "Cloververse". The franchise as a whole deals with creatures from other dimensions attacking Earth throughout various decades, all as a repercussion of an experiment by an astronaut team aboard the Cloverfield Station in outer-space. Each film depicts the reality-altering effects of their study, which was meant to find a new energy source replacing the planet's depleted resources, only to open portals for assault from various beasts from deep space.
The Conjuring:
template:
{
name: collection,
collection: "313086, 402074",
movie: "439079, 480414",
}
Crouching Tiger, Hidden Dragon:
template: { name: collection, collection: 290973 }
The Dark Knight:
template: { name: collection, collection: 263 }
radarr_add_missing: true
DC Extended Universe:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls047446610/
summary: A series of live action movies based on the DC comic books, begining with Man of Steel in 2013.
radarr_add_missing: true
Descendants:
template: { name: collection, collection: 466463 }
Die Hard:
template: { name: collection, collection: 1570 }
Dirty Harry:
template: { name: collection, collection: 10456 }
Disney Buddies:
template: { name: collection, collection: 91657 }
Divergent:
template: { name: collection, collection: 283579 }
A Dog's Purpose:
template: { name: collection, collection: 591028 }
Evil Dead:
template: { name: collection, collection: 1960 }
Fantastic Four:
template: { name: collection, collection: 9744 }
Fifty Shades:
template: { name: collection, collection: 344830 }
Final Destination:
template: { name: collection, collection: 8864 }
Friday the 13th:
template: { name: collection, collection: 9735, movie: "6466, 222724" }
Ghostbusters:
template: { name: collection, collection: 2980, movie: 43074 }
The Girl - Millennium:
template: { name: collection, collection: 575987 }
The Godfather:
template: { name: collection, collection: 230 }
Godzilla (Showa):
template: { name: collection, collection: 374509, movie: 18983 }
sort_title: Godzilla 01 (Showa)
Godzilla (Heisei):
template: { name: collection, collection: 374511, movie: 39256 }
sort_title: Godzilla 02 (Heisei)
Godzilla (Millennium):
template: { name: collection, collection: 374512 }
sort_title: Godzilla 03 (Millennium)
Godzilla (MonsterVerse):
template: { name: collection, collection: 535313, movie: 293167 }
sort_title: Godzilla 04 (MonsterVerse)
Halloween:
template: { name: collection, collection: "91361, 126209" }
Halloweentown:
template: { name: collection, collection: 87252 }
Halo:
template: { name: collection, collection: 606301 }
The Hangover:
template: { name: collection, collection: 86119 }
radarr_add_missing: true
Hannibal Lecter:
template: { name: collection, collection: 9743, movie: 11454 }
... Has Fallen:
template: { name: collection, collection: 386534 }
name_mapping: Has Fallen
Hellboy:
template: { name: collection, collection: 17235, 123203 }
High School Musical:
template: { name: collection, collection: 87253 }
Hitman:
template: { name: collection, collection: 737031 }
Home Alone:
template: { name: collection, collection: 9888 }
Homeward Bound:
template: { name: collection, collection: 43058 }
Honey, I Shrunk the Kids:
template: { name: collection, collection: 72119 }
Horrible Bosses:
template: { name: collection, collection: 280588 }
Hot Tub Time Machine:
template: { name: collection, collection: 313576 }
The Hunger Games:
template: { name: collection, collection: 131635 }
radarr_add_missing: true
An Inconvenient Truth:
template: { name: collection, collection: 539554 }
radarr_add_missing: true
Independence Day:
template: { name: collection, collection: 304378 }
Indiana Jones:
template: { name: collection, collection: 84 }
radarr_add_missing: true
Insidious:
template: { name: collection, collection: 228446 }
Ip Man:
template:
{
name: collection,
collection: 70068,
movie: "658009, 643413, 450001, 751391, 44249, 182127, 44865",
}
It:
template: { name: collection, collection: 477962 }
Jackass:
template: { name: collection, collection: 17178 }
radarr_add_missing: true
Jaws:
template: { name: collection, collection: 2366 }
radarr_add_missing: true
Jay and Silent Bob:
template: { name: collection, collection: 726870 }
Jeremy Jones:
template: { name: collection, collection: 170474 }
radarr_add_missing: true
John Wick:
template: { name: collection, collection: 404609 }
radarr_add_missing: true
Johnny Tsunami:
template: { name: collection, collection: 394316 }
Jumanji:
template: { name: collection, collection: 495527 }
Jump Street:
template: { name: collection, collection: 212562 }
radarr_add_missing: true
The Karate Kid:
template: { name: collection, collection: 8580, movie: 38575 }
Kick-Ass:
template: { name: collection, collection: 179892 }
Kill Bill:
template: { name: collection, collection: 2883 }
Kingsman:
template: { name: collection, collection: 391860 }
The Legend:
template: { name: collection, collection: 122945 }
Lethal Weapon:
template: { name: collection, collection: 945 }
Living Dead:
template: { name: collection, collection: 261590 }
Mad Max:
template: { name: collection, collection: 8945 }
radarr_add_missing: true
The Man with No Name:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls023916334/
summary: An Italian film series consisting of three Spaghetti Western films directed by Sergio Leone. The films are titled A Fistful of Dollars (1964), For a Few Dollars More (1965) and The Good, the Bad and the Ugly (1966). The series has become known for establishing the Spaghetti Western genre, and inspiring the creation of many more Spaghetti Western films. The three films are consistently listed among the best rated Western films in history.
radarr_add_missing: true
The Mask:
template: { name: collection, collection: 43072 }
The Matrix:
template: { name: collection, collection: 2344 }
radarr_add_missing: true
The Maze Runner:
template: { name: collection, collection: 295130 }
Meet the Parents:
template: { name: collection, collection: 51509 }
Men In Black:
template: { name: collection, collection: 86055 }
radarr_add_missing: true
The Mighty Ducks:
template: { name: collection, collection: 10709 }
"Mission: Impossible":
template: { name: collection, collection: 87359 }
name_mapping: Mission Impossible
radarr_add_missing: true
Mortal Kombat:
template:
{ name: collection, collection: 9818, movie: "664767, 460465, 40170" }
The Mummy:
template: { name: collection, collection: 1733 }
radarr_add_missing: true
The Muppets:
template:
{
name: collection,
collection: 256377,
movie: "10437, 10874, 14900, 11899, 11176, 20910, 13352",
}
National Lampoon's Vacation:
template: { name: collection, collection: 108693 }
radarr_add_missing: true
National Lampoon's Van Wilder:
template: { name: collection, collection: 43220 }
National Treasure:
template: { name: collection, collection: 52984 }
radarr_add_missing: true
Neighbors:
template: { name: collection, collection: 400700 }
Night at the Museum:
template: { name: collection, collection: 85943 }
radarr_add_missing: true
A Nightmare on Elm Street:
template: { name: collection, collection: 8581, movie: "6466, 23437" }
Now You See Me:
template: { name: collection, collection: 382685 }
radarr_add_missing: true
Ocean's:
template: { name: collection, collection: 304 }
radarr_add_missing: true
Once Upon a Time in China:
template: { name: collection, collection: 10457 }
Pacific Rim:
template: { name: collection, collection: 363369 }
Paranormal Activity:
template: { name: collection, collection: 41437 }
Pirates of the Caribbean:
template: { name: collection, collection: 295 }
radarr_add_missing: true
Pitch Perfect:
template: { name: collection, collection: 306031 }
Planet of the Apes:
template: { name: collection, collection: "1709, 173710, 522562" }
Predator:
template: { name: collection, collection: 399 }
The Princess Diaries:
template: { name: collection, collection: 107674 }
The Purge:
template: { name: collection, collection: 256322 }
The Raid:
template: { name: collection, collection: 257960 }
Rambo:
template: { name: collection, collection: 5039 }
RED:
template: { name: collection, collection: 163902 }
Resident Evil:
template: { name: collection, collection: "17255, 133352" }
The Ring:
template: { name: collection, collection: 14563 }
Robert Langdon:
template: { name: collection, collection: 115776 }
radarr_add_missing: true
RoboCop:
template: { name: collection, collection: 5547 }
Rocky:
template: { name: collection, collection: 1575 }
Rush Hour:
template: { name: collection, collection: 90863 }
Samurai:
template: { name: collection, collection: 102452 }
Samurai Trilogy:
template: { name: collection, collection: 377545 }
The Santa Clause:
template: { name: collection, collection: 53159 }
Santa Paws:
template: { name: collection, collection: 469648 }
Saw:
template: { name: collection, collection: 656 }
Scary Movie:
template: { name: collection, collection: 4246 }
The Scorpion King:
template: { name: collection, collection: 116669 }
Scream:
template: { name: collection, collection: 2602 }
The Shaggy Dog:
template: { name: collection, collection: 294519 }
Sharknado:
template: { name: collection, collection: 286023 }
Shaolin Temple:
template: { name: collection, collection: 184977 }
Sherlock Holmes:
template: { name: collection, collection: 102322 }
The Shining:
template: { name: collection, collection: 530064 }
Sin City:
template: { name: collection, collection: 135179 }
The Space Odyssey:
template: { name: collection, collection: 4438 }
radarr_add_missing: true
Spy Kids:
template: { name: collection, collection: 86486 }
Star Trek:
template: { name: collection, collection: "115575, 115570, 115570" }
radarr_add_missing: true
Stargate:
template: { name: collection, collection: 44215 }
radarr_add_missing: true
Starship Troopers:
template: { name: collection, collection: 10522 }
Super Troopers:
template: { name: collection, collection: 449462 }
Superman (Original):
template: { name: collection, collection: 8537 }
Taken:
template: { name: collection, collection: 135483 }
Ted:
template: { name: collection, collection: 266672 }
The Terminator:
template: { name: collection, collection: 528 }
Texas Chainsaw Massacre:
template: { name: collection, collection: "111751, 425175" }
The Thing:
template: { name: collection, collection: 479888 }
Tomb Raider:
template: { name: collection, collection: "2467, 621142" }
Trainspotting:
template: { name: collection, collection: 424202 }
Transformers:
template: { name: collection, collection: 8650 }
radarr_add_missing: true
The Transporter:
template: { name: collection, collection: 9518 }
Tremors:
template: { name: collection, collection: 91799 }
TRON:
template: { name: collection, collection: 63043, movie: 73362 }
radarr_add_missing: true
Unbreakable:
template: { name: collection }
imdb_list: https://www.imdb.com/list/ls022101006/
summary: The Unbreakable trilogy, officially known as the Eastrail 177 Trilogy, is an American superhero thriller and psychological horror film series. The films were written, produced, and directed by M. Night Shyamalan. The trilogy consists of Unbreakable (2000), Split (2016), and Glass (2019).
radarr_add_missing: true
Underworld:
template: { name: collection, collection: 2326 }
Vacancy:
template: { name: collection, collection: 86112 }
Wallace & Gromit:
template: { name: collection, collection: 529 }
Wayne's World:
template: { name: collection, collection: 8979 }
White Fang:
template: { name: collection, collection: 178654 }
Witch Mountain:
template: { name: collection, collection: 90348 }
The X Files:
template: { name: collection, collection: 19387 }
radarr_add_missing: true
xXx:
template: { name: collection, collection: 52785 }
Zenon:
template: { name: collection, collection: 321148 }
Zombieland:
template: { name: collection, collection: 537982 }
Zoolander:
template: { name: collection, collection: 352789 }
Up:
template: { name: collection, collection: 95051 }

View File

@@ -0,0 +1,128 @@
templates:
collection_genre:
plex_search:
genre: <<genre>>
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_genre
collections:
Action:
template: { name: collection_genre, genre: Action }
summary: Action film is a genre wherein physical action takes precedence in the storytelling. The film will often have continuous motion and action including physical stunts, chases, fights, battles, and races. The story usually revolves around a hero that has a goal, but is facing incredible odds to obtain it.
url_poster: https://theposterdb.com/api/assets/52018
Adventure:
template: { name: collection_genre, genre: Adventure }
summary: Adventure film is a genre that revolves around the conquests and explorations of a protagonist. The purpose of the conquest can be to retrieve a person or treasure, but often the main focus is simply the pursuit of the unknown. These films generally take place in exotic locations and play on historical myths. Adventure films incorporate suspenseful puzzles and intricate obstacles that the protagonist must overcome in order to achieve the end goal.
url_poster: https://theposterdb.com/api/assets/52218
Animation:
template: { name: collection_genre, genre: Animation }
summary: Animated film is a collection of illustrations that are photographed frame-by-frame and then played in a quick succession. Since its inception, animation has had a creative and imaginative tendency. Being able to bring animals and objects to life, this genre has catered towards fairy tales and childrens stories. However, animation has long been a genre enjoyed by all ages. As of recent, there has even been an influx of animation geared towards adults. Animation is commonly thought of as a technique, thus its ability to span over many different genres.
url_poster: https://theposterdb.com/api/assets/120090
Anime:
template: { name: collection_genre, genre: Anime }
summary: A collection of Anime movies
url_poster: https://theposterdb.com/api/assets/126743
Biography:
template: { name: collection_genre, genre: Biography }
summary: A collection of Biography movies
url_poster: https://theposterdb.com/api/assets/60369
Comedy:
template: { name: collection_genre, genre: Comedy }
summary: Comedy is a genre of film that uses humor as a driving force. The aim of a comedy film is to illicit laughter from the audience through entertaining stories and characters. Although the comedy film may take on some serious material, most have a happy ending. Comedy film has the tendency to become a hybrid sub-genre because humor can be incorporated into many other genres. Comedies are more likely than other films to fall back on the success and popularity of an individual star.
url_poster: https://theposterdb.com/api/assets/51397
Crime:
template: { name: collection_genre, genre: Crime }
summary: Crime film is a genre that revolves around the action of a criminal mastermind. A Crime film will often revolve around the criminal himself, chronicling his rise and fall. Some Crime films will have a storyline that follows the criminal's victim, yet others follow the person in pursuit of the criminal. This genre tends to be fast paced with an air of mystery this mystery can come from the plot or from the characters themselves.
url_poster: https://theposterdb.com/api/assets/53057
Documentary:
template: { name: collection_genre, genre: Documentary }
summary: Documentary film is a non-fiction genre intended to document reality primarily for the purposes of instruction, education, or maintaining a historical record.
url_poster: https://theposterdb.com/api/assets/51430
Drama:
template: { name: collection_genre, genre: Drama }
summary: Drama film is a genre that relies on the emotional and relational development of realistic characters. While Drama film relies heavily on this kind of development, dramatic themes play a large role in the plot as well. Often, these dramatic themes are taken from intense, real life issues. Whether heroes or heroines are facing a conflict from the outside or a conflict within themselves, Drama film aims to tell an honest story of human struggles.
url_poster: https://theposterdb.com/api/assets/52016
Family:
template: { name: collection_genre, genre: Family }
summary: Fantasy film is a genre that incorporates imaginative and fantastic themes. These themes usually involve magic, supernatural events, or fantasy worlds. Although it is its own distinct genre, these films can overlap into the horror and science fiction genres. Unlike science fiction, a fantasy film does not need to be rooted in fact. This element allows the audience to be transported into a new and unique world. Often, these films center on an ordinary hero in an extraordinary situation.
url_poster: https://theposterdb.com/api/assets/53059
Fantasy:
template: { name: collection_genre, genre: Animation }
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=fantasy
limit: 100
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=fantasy&sort=user_rating,desc
limit: 100
summary: Fantasy film is a genre that incorporates imaginative and fantastic themes. These themes usually involve magic, supernatural events, or fantasy worlds. Although it is its own distinct genre, these films can overlap into the horror and science fiction genres. Unlike science fiction, a fantasy film does not need to be rooted in fact. This element allows the audience to be transported into a new and unique world. Often, these films center on an ordinary hero in an extraordinary situation.
url_poster: https://theposterdb.com/api/assets/51476
History:
template: { name: collection_genre, genre: History }
summary: History film is a genre that takes historical events and people and interprets them in a larger scale. Historical accuracy is not the main focus, but rather the telling of a grandiose story. The drama of an History film is often accentuated by a sweeping musical score, lavish costumes, and high production value.
url_poster: https://theposterdb.com/api/assets/58022
Horror:
template: { name: collection_genre, genre: Horror }
summary: Horror film is a genre that aims to create a sense of fear, panic, alarm, and dread for the audience. These films are often unsettling and rely on scaring the audience through a portrayal of their worst fears and nightmares. Horror films usually center on the arrival of an evil force, person, or event. Many Horror films include mythical creatures such as ghosts, vampires, and zombies. Traditionally, Horror films incorporate a large amount of violence and gore into the plot. Though it has its own style, Horror film often overlaps into Fantasy, Thriller, and Science-Fiction genres.
url_poster: https://theposterdb.com/api/assets/51475
Musical:
template: { name: collection_genre, genre: Musical }
summary: A Musical interweaves vocal and dance performances into the narrative of the film. The songs of a film can either be used to further the story or simply enhance the experience of the audience. These films are often done on a grand scale and incorporate lavish costumes and sets. Traditional musicals center on a well-known star, famous for their dancing or singing skills (i.e. Fred Astaire, Gene Kelly, Judy Garland). These films explore concepts such are love and success, allowing the audience to escape from reality.
url_poster: https://theposterdb.com/api/assets/51427
Mystery:
template: { name: collection_genre, genre: Mystery }
summary: A Mystery film centers on a person of authority, usually a detective, that is trying to solve a mysterious crime. The main protagonist uses clues, investigation, and logical reasoning. The biggest element in these films is a sense of “whodunit” suspense, usually created through visual cues and unusual plot twists.
url_poster: https://theposterdb.com/api/assets/53060
Romance:
template: { name: collection_genre, genre: Romance }
summary: "Romance film can be defined as a genre wherein the plot revolves around the love between two protagonists. This genre usually has a theme that explores an issue within love, including but not limited to: love at first sight, forbidden love, love triangles, and sacrificial love. The tone of Romance film can vary greatly. Whether the end is happy or tragic, Romance film aims to evoke strong emotions in the audience."
url_poster: https://theposterdb.com/api/assets/53062
Science Fiction:
template: { name: collection_genre, genre: Science Fiction }
summary: Science Fiction (Sci-Fi) film is a genre that incorporates hypothetical, science-based themes into the plot of the film. Often, this genre incorporates futuristic elements and technologies to explore social, political, and philosophical issues. The film itself is usually set in the future, either on earth or in space. Traditionally, a Science Fiction film will incorporate heroes, villains, unexplored locations, fantastical quests, and advanced technology.
url_poster: https://theposterdb.com/api/assets/51772
Short:
template: { name: collection_genre, genre: Short }
summary: A collection of Short movies
url_poster: https://theposterdb.com/api/assets/53063
Sports:
template: { name: collection_genre, genre: Sport }
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=sport
limit: 200
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=sport&sort=user_rating,desc
limit: 200
summary: A Sport Film revolves around a sport setting, event, or an athlete. Often, these films will center on a single sporting event that carries significant importance. Sports films traditionally have a simple plot that builds up to the significant sporting event. This genre is known for incorporating film techniques to build anticipation and intensity. Sport films have a large range of sub-genres, from comedies to dramas, and are more likely than other genres to be based true-life events.
url_poster: https://theposterdb.com/api/assets/60371
Thriller:
template: { name: collection_genre, genre: Thriller }
summary: Thriller Film is a genre that revolves around anticipation and suspense. The aim for Thrillers is to keep the audience alert and on the edge of their seats. The protagonist in these films is set against a problem an escape, a mission, or a mystery. No matter what sub-genre a Thriller film falls into, it will emphasize the danger that the protagonist faces. The tension with the main problem is built on throughout the film and leads to a highly stressful climax.
url_poster: https://theposterdb.com/api/assets/52019
War:
template: { name: collection_genre, genre: War }
summary: War Film is a genre that looks at the reality of war on a grand scale. They often focus on landmark battles as well as political issues within war. This genre usually focuses on a main character and his team of support, giving the audience an inside look into the gritty reality of war.
url_poster: https://theposterdb.com/api/assets/51477
Western:
template: { name: collection_genre, genre: Western }
summary: "Western Film is a genre that revolves around stories primarily set in the late 19th century in the American Old West. Most Westerns are set between the American Civil War (1865) and the early 1900s. Common themes within Western Film include: the conquest of the wild west, the cultural separation of the East and the West, the Wests resistance to modern change, the conflict between Cowboys and Indians, outlaws, and treasure/gold hunting. American Western Film usually revolves around a stoic hero and emphasizes the importance of honor and sacrifice."
url_poster: https://theposterdb.com/api/assets/51774

View File

@@ -0,0 +1,507 @@
templates:
collection_person:
smart_filter:
sort_by: release.desc
validate: false
any:
actor: <<person>>
director: <<person>>
writer: <<person>>
producer: <<person>>
collections:
Adam Sandler:
template: { name: collection_person, person: "Adam Sandler" }
Al Pacino:
template: { name: collection_person, person: "Al Pacino" }
Alfred Hitchcock:
template: { name: collection_person, person: "Alfred Hitchcock" }
Amy Adams:
template: { name: collection_person, person: "Amy Adams" }
Angelina Jolie:
template: { name: collection_person, person: "Angelina Jolie" }
Anne Hathaway:
template: { name: collection_person, person: "Anne Hathaway" }
Anthony Hopkins:
template: { name: collection_person, person: "Anthony Hopkins" }
Antonio Banderas:
template: { name: collection_person, person: "Antonio Banderas" }
Arnold Schwarzenegger:
template: { name: collection_person, person: "Arnold Schwarzenegger" }
Ben Affleck:
template: { name: collection_person, person: "Ben Affleck" }
Ben Stiller:
template: { name: collection_person, person: "Ben Stiller" }
Bill Murray:
template: { name: collection_person, person: "Bill Murray" }
Brad Pitt:
template: { name: collection_person, person: "Brad Pitt" }
Bradley Cooper:
template: { name: collection_person, person: "Bradley Cooper" }
Brendan Fraser:
template: { name: collection_person, person: "Brendan Fraser" }
Bruce Lee:
template: { name: collection_person, person: "Bruce Lee" }
Bruce Willis:
template: { name: collection_person, person: "Bruce Willis" }
Cameron Diaz:
template: { name: collection_person, person: "Cameron Diaz" }
Carrie Fisher:
template: { name: collection_person, person: "Carrie Fisher" }
Cate Blanchett:
template: { name: collection_person, person: "Cate Blanchett" }
Catherine Zeta-Jones:
template: { name: collection_person, person: "Catherine Zeta-Jones" }
Channing Tatum:
template: { name: collection_person, person: "Channing Tatum" }
Charlie Chaplin:
template: { name: collection_person, person: "Charlie Chaplin" }
Charlize Theron:
template: { name: collection_person, person: "Charlize Theron" }
Chris Evans:
template: { name: collection_person, person: "Chris Evans" }
Chris Hemsworth:
template: { name: collection_person, person: "Chris Hemsworth" }
Chris Pratt:
template: { name: collection_person, person: "Chris Pratt" }
Chris Rock:
template: { name: collection_person, person: "Chris Rock" }
Christian Bale:
template: { name: collection_person, person: "Christian Bale" }
Christopher Nolan:
template: { name: collection_person, person: "Christopher Nolan" }
Christopher Walken:
template: { name: collection_person, person: "Christopher Walken" }
Chuck Norris:
template: { name: collection_person, person: "Chuck Norris" }
Clint Eastwood:
template: { name: collection_person, person: "Clint Eastwood" }
Daniel Craig:
template: { name: collection_person, person: "Daniel Craig" }
Daniel Radcliffe:
template: { name: collection_person, person: "Daniel Radcliffe" }
Dave Bautista:
template: { name: collection_person, person: "Dave Bautista" }
Dave Chappelle:
template: { name: collection_person, person: "Dave Chappelle" }
Denzel Washington:
template: { name: collection_person, person: "Denzel Washington" }
Diane Keaton:
template: { name: collection_person, person: "Diane Keaton" }
Don Cheadle:
template: { name: collection_person, person: "Don Cheadle" }
Dustin Hoffman:
template: { name: collection_person, person: "Dustin Hoffman" }
Dwayne Johnson:
template: { name: collection_person, person: "Dwayne Johnson" }
Eddie Murphy:
template: { name: collection_person, person: "Eddie Murphy" }
Edward Norton:
template: { name: collection_person, person: "Edward Norton" }
Elliot Page:
template: { name: collection_person, person: "Elliot Page" }
Emma Stone:
template: { name: collection_person, person: "Emma Stone" }
Emma Watson:
template: { name: collection_person, person: "Emma Watson" }
Ewan McGregor:
template: { name: collection_person, person: "Ewan McGregor" }
George Clooney:
template: { name: collection_person, person: "George Clooney" }
Gerard Butler:
template: { name: collection_person, person: "Gerard Butler" }
Gwyneth Paltrow:
template: { name: collection_person, person: "Gwyneth Paltrow" }
Harrison Ford:
template: { name: collection_person, person: "Harrison Ford" }
Hayao Miyazaki:
template: { name: collection_person, person: "Hayao Miyazaki" }
Hugh Jackman:
template: { name: collection_person, person: "Hugh Jackman" }
Ian McKellen:
template: { name: collection_person, person: "Ian McKellen" }
Idris Elba:
template: { name: collection_person, person: "Idris Elba" }
J.J. Abrams:
template: { name: collection_person, person: "J.J. Abrams" }
Jack Black:
template: { name: collection_person, person: "Jack Black" }
Jackie Chan:
template: { name: collection_person, person: "Jackie Chan" }
James Cameron:
template: { name: collection_person, person: "James Cameron" }
James Franco:
template: { name: collection_person, person: "James Franco" }
Jamie Foxx:
template: { name: collection_person, person: "Jamie Foxx" }
Jason Bateman:
template: { name: collection_person, person: "Jason Bateman" }
Jason Statham:
template: { name: collection_person, person: "Jason Statham" }
Jeff Bridges:
template: { name: collection_person, person: "Jeff Bridges" }
Jeff Goldblum:
template: { name: collection_person, person: "Jeff Goldblum" }
Jennifer Aniston:
template: { name: collection_person, person: "Jennifer Aniston" }
Jennifer Lawrence:
template: { name: collection_person, person: "Jennifer Lawrence" }
Jesse Eisenberg:
template: { name: collection_person, person: "Jesse Eisenberg" }
Jessica Alba:
template: { name: collection_person, person: "Jessica Alba" }
Jet Li:
template: { name: collection_person, person: "Jet Li" }
Jim Carrey:
template: { name: collection_person, person: "Jim Carrey" }
John Candy:
template: { name: collection_person, person: "John Candy" }
John Travolta:
template: { name: collection_person, person: "John Travolta" }
John Wayne:
template: { name: collection_person, person: "John Wayne" }
Johnny Depp:
template: { name: collection_person, person: "Johnny Depp" }
Josh Brolin:
template: { name: collection_person, person: "Josh Brolin" }
Julia Roberts:
template: { name: collection_person, person: "Julia Roberts" }
Keanu Reeves:
template: { name: collection_person, person: "Keanu Reeves" }
Kevin Bacon:
template: { name: collection_person, person: "Kevin Bacon" }
Kevin Costner:
template: { name: collection_person, person: "Kevin Costner" }
Kevin Hart:
template: { name: collection_person, person: "Kevin Hart" }
Kevin Smith:
template: { name: collection_person, person: "Kevin Smith" }
Kristen Stewart:
template: { name: collection_person, person: "Kristen Stewart" }
Leonardo DiCaprio:
template: { name: collection_person, person: "Leonardo DiCaprio" }
Liam Neeson:
template: { name: collection_person, person: "Liam Neeson" }
Lucy Liu:
template: { name: collection_person, person: "Lucy Liu" }
M. Night Shyamalan:
template: { name: collection_person, person: "M. Night Shyamalan" }
Mark Ruffalo:
template: { name: collection_person, person: "Mark Ruffalo" }
Mark Wahlberg:
template: { name: collection_person, person: "Mark Wahlberg" }
Matt Damon:
template: { name: collection_person, person: "Matt Damon" }
Matthew McConaughey:
template: { name: collection_person, person: "Matthew McConaughey" }
Megan Fox:
template: { name: collection_person, person: "Megan Fox" }
Mel Brooks:
template: { name: collection_person, person: "Mel Brooks" }
Mel Gibson:
template: { name: collection_person, person: "Mel Gibson" }
Melissa McCarthy:
template: { name: collection_person, person: "Melissa McCarthy" }
Meryl Streep:
template: { name: collection_person, person: "Meryl Streep" }
Michael Bay:
template: { name: collection_person, person: "Michael Bay" }
Michael Caine:
template: { name: collection_person, person: "Michael Caine" }
Michael Douglas:
template: { name: collection_person, person: "Michael Douglas" }
Michael Keaton:
template: { name: collection_person, person: "Michael Keaton" }
Michelle Pfeiffer:
template: { name: collection_person, person: "Michelle Pfeiffer" }
Mike Myers:
template: { name: collection_person, person: "Mike Myers" }
Mila Kunis:
template: { name: collection_person, person: "Mila Kunis" }
Milla Jovovich:
template: { name: collection_person, person: "Milla Jovovich" }
Morgan Freeman:
template: { name: collection_person, person: "Morgan Freeman" }
Natalie Portman:
template: { name: collection_person, person: "Natalie Portman" }
Nicolas Cage:
template: { name: collection_person, person: "Nicolas Cage" }
Nicole Kidman:
template: { name: collection_person, person: "Nicole Kidman" }
Orlando Bloom:
template: { name: collection_person, person: "Orlando Bloom" }
Owen Wilson:
template: { name: collection_person, person: "Owen Wilson" }
Patrick Stewart:
template: { name: collection_person, person: "Patrick Stewart" }
Paul Rudd:
template: { name: collection_person, person: "Paul Rudd" }
Quentin Tarantino:
template: { name: collection_person, person: "Quentin Tarantino" }
Reese Witherspoon:
template: { name: collection_person, person: "Reese Witherspoon" }
Ridley Scott:
template: { name: collection_person, person: "Ridley Scott" }
Robert De Niro:
template: { name: collection_person, person: "Robert De Niro" }
Robert Downey Jr:
template: { name: collection_person, person: "Robert Downey Jr" }
Robin Williams:
template: { name: collection_person, person: "Robin Williams" }
Rosario Dawson:
template: { name: collection_person, person: "Rosario Dawson" }
Ryan Reynolds:
template: { name: collection_person, person: "Ryan Reynolds" }
Sacha Baron Cohen:
template: { name: collection_person, person: "Sacha Baron Cohen" }
Samuel L. Jackson:
template: { name: collection_person, person: "Samuel L. Jackson" }
Sandra Bullock:
template: { name: collection_person, person: "Sandra Bullock" }
Scarlett Johansson:
template: { name: collection_person, person: "Scarlett Johansson" }
Sean Connery:
template: { name: collection_person, person: "Sean Connery" }
Seth Rogen:
template: { name: collection_person, person: "Seth Rogen" }
Shia LaBeouf:
template: { name: collection_person, person: "Shia LaBeouf" }
Steve Buscemi:
template: { name: collection_person, person: "Steve Buscemi" }
Steve Carell:
template: { name: collection_person, person: "Steve Carell" }
Steve Martin:
template: { name: collection_person, person: "Steve Martin" }
Steven Seagal:
template: { name: collection_person, person: "Steven Seagal" }
Steven Spielberg:
template: { name: collection_person, person: "Steven Spielberg" }
Sylvester Stallone:
template: { name: collection_person, person: "Sylvester Stallone" }
Tim Allen:
template: { name: collection_person, person: "Tim Allen" }
Tim Burton:
template: { name: collection_person, person: "Tim Burton" }
Tom Cruise:
template: { name: collection_person, person: "Tom Cruise" }
Tom Hanks:
template: { name: collection_person, person: "Tom Hanks" }
Tommy Lee-Jones:
template: { name: collection_person, person: "Tommy Lee-Jones" }
Vin Diesel:
template: { name: collection_person, person: "Vin Diesel" }
Vince Vaughn:
template: { name: collection_person, person: "Vince Vaughn" }
Wesley Snipes:
template: { name: collection_person, person: "Wesley Snipes" }
Will Ferrell:
template: { name: collection_person, person: "Will Ferrell" }
Will Smith:
template: { name: collection_person, person: "Will Smith" }
Woody Harrelson:
template: { name: collection_person, person: "Woody Harrelson" }
Zack Snyder:
template: { name: collection_person, person: "Zack Snyder" }
Zoe Saldana:
template: { name: collection_person, person: "Zoe Saldana" }
Alejandro González Iñárritu:
template: { name: collection_person, person: 223 }
Alex Garland:
template: { name: collection_person, person: 2036 }
Alfonso Cuarón:
template: { name: collection_person, person: 11218 }
Akira Kurosawa:
template: { name: collection_person, person: 5026 }
Coen Brothers:
template: { name: collection_person, person: "1223, 1224" }
summary: "Joel Coen and Ethan Coen, collectively referred to as the Coen Brothers, are American film directors, producers, screenwriters, and editors. Their films span many genres and styles, which they frequently subvert or parody. Their most acclaimed works include: Raising Arizona (1987), Miller's Crossing (1990), Fargo (1996), The Big Lebowski (1998), O Brother, Where Art Thou? (2000), No Country for Old Men (2007), Burn After Reading (2008), A Serious Man (2009), True Grit (2010), Inside Llewyn Davis (2013), and The Ballad of Buster Scruggs (2018)."
Darren Aronofsky:
template: { name: collection_person, person: 6431 }
David Fincher:
template: { name: collection_person, person: 7467 }
David Lean:
template: { name: collection_person, person: 12238 }
David Lynch:
template: { name: collection_person, person: 5602 }
Denis Villeneuve:
template: { name: collection_person, person: 137427 }
Francis Ford Coppola:
template: { name: collection_person, person: 1776 }
Kathryn Bigelow:
template: { name: collection_person, person: 14392 }
Paul Thomas Anderson:
template: { name: collection_person, person: 4762 }
Spike Lee:
template: { name: collection_person, person: 5281 }
Stanley Kubrick:
template: { name: collection_person, person: 240 }
Terrence Malick:
template: { name: collection_person, person: 30715 }
Terry Gilliam:
template: { name: collection_person, person: 280 }
Wes Anderson:
template: { name: collection_person, person: 5655 }

View File

@@ -0,0 +1,96 @@
templates:
collection_studio:
optional:
- company
tmdb_company: <<company>>
sync_mode: sync
smart_label: originally_available.desc
radarr_add_missing: false
radarr_tag: pmm_studio
collections:
Apple Originals:
template: { name: collection_studio }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0546168
summary: All Apple TV Originals From 2000-2025
url_poster: https://i.imgur.com/O9iWork.png
url_background: https://wallpaper-house.com/data/out/8/wallpaper2you_228774.png
Amazon Originals:
template: { name: collection_studio }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0319272
summary: All Amazon Originals From 2000-2025
url_poster: https://i.imgur.com/nU3gqqB.png
url_background: https://i.imgur.com/2jfs7oS.png
Netflix Originals:
template: { name: collection_studio }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0144901
summary: All Netflix Originals From 2000-2025
url_poster: https://i.imgur.com/7kiE1MU.png
url_background: https://img5.goodfon.com/original/1920x1080/1/61/fon-netflix-logo-raduga-tsvet-fon-background-skachat-oboi-sk.jpg
HBO Max Originals:
template: { name: collection_studio }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0754095
summary: All HBO Max Originals From 2000-2025
url_poster: https://i.redd.it/zxdvw3tk3f151.jpg
url_background: https://wallpapercave.com/wp/wp6402755.png
HULU Originals:
template: { name: collection_studio }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0218858
summary: All HULU Originals From 2000-2025
url_poster: https://plexcollectionposters.com/images/2019/05/26/Hulu6ddad752a5ce9bac.jpg
url_background: https://cdn.vox-cdn.com/thumbor/oR4hqrmTxbX_O4gdJ6np8h-PxFk=/0x439:750x861/1600x900/cdn.vox-cdn.com/uploads/chorus_image/image/56311701/Image_uploaded_from_iOS__8_.1503433270.jpg
Aardman:
template: { name: collection_studio, company: 297 }
summary: Aardman Animations, Ltd. is a British animation studio based in Bristol, England. Aardman is known for films made using stop-motion clay animation techniques, particularly those featuring Plasticine characters Wallace and Gromit.
Blue Sky:
template: { name: collection_studio, company: 9383 }
summary: Blue Sky Studios, Inc. is an American computer animation film studio based in Greenwich, Connecticut. It is a subsidiary of 20th Century Animation, a division of Disney Studios Content.
DreamWorks:
template: { name: collection_studio, company: 521 }
filters:
collection.not: Aardman
summary: DreamWorks Animation LLC (also simply known as DreamWorks) is an American animation studio and a subsidiary of Universal Pictures, itself a subsidiary of Comcast's NBCUniversal. It is based in Glendale, California, and produces animated feature films, television programs, and online virtual games.
Illumination Entertainment:
template: { name: collection_studio, company: 6704 }
summary: Illumination is an American film and animation studio founded by Chris Meledandri in 2007 and owned by Universal Pictures, a division of NBCUniversal, which is itself a division of Comcast. Meledandri produces the films, while Universal finances and distributes all the films. The studio is responsible for the Despicable Me and The Secret Life of Pets franchises and the film adaptations of Dr. Seuss books The Lorax and How the Grinch Stole Christmas. The Minions, characters from the Despicable Me series, are the studio's mascots.
Pixar:
template: { name: collection_studio, company: 3 }
summary: Pixar Animation Studios, commonly known as Pixar, is an American computer animation studio based in Emeryville, California, a subsidiary of Disney Studios Content owned by The Walt Disney Company. Pixar began in 1979 as part of the Lucasfilm computer division, known as the Graphics Group, before its spin-off as a corporation on February 3, 1986, with funding from Apple co-founder Steve Jobs, who became its majority shareholder. Disney purchased Pixar in 2006 at a valuation of $7.4 billion by converting each share of Pixar stock to 2.3 shares of Disney stock, a transaction that resulted in Jobs becoming Disney's largest single shareholder at the time. Pixar is best known for its feature films technologically powered by RenderMan, the company's own implementation of the industry-standard RenderMan Interface Specification image-rendering application programming interface. Luxo Jr., a desk lamp from the studio's 1986 short film of the same name, is the studio's mascot.
radarr_tag: pmm_studio
Studio Ghibli:
template: { name: collection_studio, company: 10342 }
summary: Studio Ghibli Inc. is a Japanese animation film studio headquartered in Koganei, Tokyo. The studio is best known for its animated feature films, and has also produced several short films, television commercials, and one television film. The studios mascot and most recognizable symbol is the character, Totoro, a giant cat-like spirit from the 1988 classic, My Neighbor Totoro.
radarr_tag: pmm_studio
Sony Pictures Animation:
template: { name: collection_studio, company: 2251 }
summary: Sony Pictures Animation Inc. is an American animation studio owned by Sony Entertainment's Sony Pictures Entertainment through their Motion Picture Group division and founded on May 9, 2002. The studio's films are distributed worldwide by Sony Pictures Releasing under their Columbia Pictures label, while all direct-to-video releases are released by Sony Pictures Home Entertainment.
Warner Animation Group:
template: { name: collection_studio, company: 25120 }
summary: The Warner Animation Group (WAG) is an American animation studio that is the feature animation division of Warner Bros. Entertainment. Established on January 7, 2013, the studio is the successor to the dissolved 2D traditional hand-drawn animation studio Warner Bros. Feature Animation, which shut down in 2003 and the dissolved family film division Warner Bros. Family Entertainment, which shut down in 2009. The entity is also a sister animation studio of the regular animation studio Warner Bros. Animation
Walt Disney Animation Studios:
template: { name: collection_studio }
imdb_list: https://www.imdb.com/list/ls059383351/
summary: Walt Disney Animation Studios (WDAS), sometimes shortened to Disney Animation, is an American animation studio that creates animated features and short films for The Walt Disney Company. Founded on October 16, 1923 by brothers Walt Disney and Roy O. Disney, it is one of the oldest-running animation studios in the world. It is currently organized as a division of Walt Disney Studios and is headquartered at the Roy E. Disney Animation Building at the Walt Disney Studios lot in Burbank, California.
Walt Disney Pictures:
template: { name: collection_studio }
imdb_list: https://www.imdb.com/list/ls077114097/
summary: Walt Disney Pictures is an American film production studio of The Walt Disney Studios, which is owned by The Walt Disney Company. The studio is the flagship producer of live-action feature films within the Walt Disney Studios unit, and is based at the Walt Disney Studios in Burbank, California. Animated films produced by Walt Disney Animation Studios and Pixar Animation Studios are also released under this brand. Walt Disney Studios Motion Pictures distributes and markets the films produced by Walt Disney Pictures.

View File

@@ -0,0 +1,45 @@
templates:
collection_top:
sort_title: +++++++++++++++++++_<<sort>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_top
collections:
Trending:
template: { name: collection_top, sort: 1Trending }
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
smart_label: year.desc
summary: Movies Trending across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4vpMZoA.png
Popular:
template: { name: collection_top, sort: 2Popular }
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
limit: 40
smart_label: year.desc
summary: Popular Movies across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4cI2Jg4.png
Top Rated:
template: { name: collection_top, sort: 3Top Rated }
imdb_list: https://www.imdb.com/search/title/?groups=top_250&count=250
tmdb_top_rated: 250
smart_label: critic_rating.desc
summary: Top Rated Movies
url_background: https://i.imgur.com/b26VZ9y.jpg
url_poster: https://i.imgur.com/x7BhedD.png
Newly Released Movies:
template: { name: collection_top, sort: 4Newly Released }
smart_label: added.desc
trakt_list: https://trakt.tv/users/giladg/lists/latest-releases
summary: A collection of newly-released movies in cinema and on streaming services
url_poster: https://i.imgur.com/D62EdJd.jpg
url_background: https://wallpaperbat.com/img/23094-cinema-hd-wallpaper-top-free-cinema-hd-background.jpg

View File

@@ -0,0 +1,60 @@
templates:
collection_alpha:
sync_mode: sync
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_awards
collection_release:
sync_mode: sync
collection_order: release
radarr_add_missing: false
radarr_tag: pmm_awards
collections:
Academy Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/search/title/?title_type=feature,documentary&groups=oscar_winner
summary: Oscar Winning Movies
Razzie Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066716172/
summary: The Razzies are an awards banquet that honors the worst in films from a year. They are the opposite to the Oscars. This list will reflect on the films that have won the Worst Picture award from the beginning in 1980 to present day. Here are the films that "won" Worst Picture.
César Award:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls024896765/
summary: The César Award is the national film award of France. It is delivered in the Nuit des César ceremony and was first awarded in 1976.
Annie Awards:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls086556605/
summary: The Annie Awards are accolades which the Los Angeles branch of the International Animated Film Association, ASIFA-Hollywood, has presented each year since 1972 to recognize excellence in animation shown in cinema and television.
Sundance Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls033136048/
summary: A comprehensive list of all of the full length films that have screened at the Sundance Film Festival.
Cinefest:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls095591734/
summary: Cinéfest Sudbury International Film Festival, also known as Cinéfest and Cinéfest Sudbury is an annual film festival in Greater Sudbury, Ontario, Canada, held over nine days each September. It is one of the largest film festivals in Canada.
Berlin International Film Festival:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls076602311/
summary: The Berlin International Film Festival, usually called the Berlinale, is a film festival held annually in Berlin, Germany.
Palme d'Or Winners:
template: { name: collection_release }
imdb_list: https://www.imdb.com/list/ls066281181/
summary: The Palme d'Or (Golden Palm) is the highest prize awarded at the Cannes Film Festival. It was introduced in 1955 by the organising committee. From 1939 to 1954, the highest prize was the Grand Prix du Festival International du Film.
American Film Institute:
template: { name: collection_alpha }
imdb_list: https://www.imdb.com/list/ls062266402/
summary: American Film Institute "100 Greatest American Movies"
radarr_add_missing: false
radarr_tag: pmm_awards

View File

@@ -0,0 +1,128 @@
templates:
collection_genre:
plex_search:
genre: <<genre>>
collection_order: alpha
radarr_add_missing: false
radarr_tag: pmm_genre
collections:
Action:
template: { name: collection_genre, genre: Action }
summary: Action film is a genre wherein physical action takes precedence in the storytelling. The film will often have continuous motion and action including physical stunts, chases, fights, battles, and races. The story usually revolves around a hero that has a goal, but is facing incredible odds to obtain it.
url_poster: https://theposterdb.com/api/assets/52018
Adventure:
template: { name: collection_genre, genre: Adventure }
summary: Adventure film is a genre that revolves around the conquests and explorations of a protagonist. The purpose of the conquest can be to retrieve a person or treasure, but often the main focus is simply the pursuit of the unknown. These films generally take place in exotic locations and play on historical myths. Adventure films incorporate suspenseful puzzles and intricate obstacles that the protagonist must overcome in order to achieve the end goal.
url_poster: https://theposterdb.com/api/assets/52218
Animation:
template: { name: collection_genre, genre: Animation }
summary: Animated film is a collection of illustrations that are photographed frame-by-frame and then played in a quick succession. Since its inception, animation has had a creative and imaginative tendency. Being able to bring animals and objects to life, this genre has catered towards fairy tales and childrens stories. However, animation has long been a genre enjoyed by all ages. As of recent, there has even been an influx of animation geared towards adults. Animation is commonly thought of as a technique, thus its ability to span over many different genres.
url_poster: https://theposterdb.com/api/assets/120090
Anime:
template: { name: collection_genre, genre: Anime }
summary: A collection of Anime movies
url_poster: https://theposterdb.com/api/assets/126743
Biography:
template: { name: collection_genre, genre: Biography }
summary: A collection of Biography movies
url_poster: https://theposterdb.com/api/assets/60369
Comedy:
template: { name: collection_genre, genre: Comedy }
summary: Comedy is a genre of film that uses humor as a driving force. The aim of a comedy film is to illicit laughter from the audience through entertaining stories and characters. Although the comedy film may take on some serious material, most have a happy ending. Comedy film has the tendency to become a hybrid sub-genre because humor can be incorporated into many other genres. Comedies are more likely than other films to fall back on the success and popularity of an individual star.
url_poster: https://theposterdb.com/api/assets/51397
Crime:
template: { name: collection_genre, genre: Crime }
summary: Crime film is a genre that revolves around the action of a criminal mastermind. A Crime film will often revolve around the criminal himself, chronicling his rise and fall. Some Crime films will have a storyline that follows the criminal's victim, yet others follow the person in pursuit of the criminal. This genre tends to be fast paced with an air of mystery this mystery can come from the plot or from the characters themselves.
url_poster: https://theposterdb.com/api/assets/53057
Documentary:
template: { name: collection_genre, genre: Documentary }
summary: Documentary film is a non-fiction genre intended to document reality primarily for the purposes of instruction, education, or maintaining a historical record.
url_poster: https://theposterdb.com/api/assets/51430
Drama:
template: { name: collection_genre, genre: Drama }
summary: Drama film is a genre that relies on the emotional and relational development of realistic characters. While Drama film relies heavily on this kind of development, dramatic themes play a large role in the plot as well. Often, these dramatic themes are taken from intense, real life issues. Whether heroes or heroines are facing a conflict from the outside or a conflict within themselves, Drama film aims to tell an honest story of human struggles.
url_poster: https://theposterdb.com/api/assets/52016
Family:
template: { name: collection_genre, genre: Family }
summary: Fantasy film is a genre that incorporates imaginative and fantastic themes. These themes usually involve magic, supernatural events, or fantasy worlds. Although it is its own distinct genre, these films can overlap into the horror and science fiction genres. Unlike science fiction, a fantasy film does not need to be rooted in fact. This element allows the audience to be transported into a new and unique world. Often, these films center on an ordinary hero in an extraordinary situation.
url_poster: https://theposterdb.com/api/assets/53059
Fantasy:
template: { name: collection_genre, genre: Animation }
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=fantasy
limit: 100
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=fantasy&sort=user_rating,desc
limit: 100
summary: Fantasy film is a genre that incorporates imaginative and fantastic themes. These themes usually involve magic, supernatural events, or fantasy worlds. Although it is its own distinct genre, these films can overlap into the horror and science fiction genres. Unlike science fiction, a fantasy film does not need to be rooted in fact. This element allows the audience to be transported into a new and unique world. Often, these films center on an ordinary hero in an extraordinary situation.
url_poster: https://theposterdb.com/api/assets/51476
History:
template: { name: collection_genre, genre: History }
summary: History film is a genre that takes historical events and people and interprets them in a larger scale. Historical accuracy is not the main focus, but rather the telling of a grandiose story. The drama of an History film is often accentuated by a sweeping musical score, lavish costumes, and high production value.
url_poster: https://theposterdb.com/api/assets/58022
Horror:
template: { name: collection_genre, genre: Horror }
summary: Horror film is a genre that aims to create a sense of fear, panic, alarm, and dread for the audience. These films are often unsettling and rely on scaring the audience through a portrayal of their worst fears and nightmares. Horror films usually center on the arrival of an evil force, person, or event. Many Horror films include mythical creatures such as ghosts, vampires, and zombies. Traditionally, Horror films incorporate a large amount of violence and gore into the plot. Though it has its own style, Horror film often overlaps into Fantasy, Thriller, and Science-Fiction genres.
url_poster: https://theposterdb.com/api/assets/51475
Musical:
template: { name: collection_genre, genre: Musical }
summary: A Musical interweaves vocal and dance performances into the narrative of the film. The songs of a film can either be used to further the story or simply enhance the experience of the audience. These films are often done on a grand scale and incorporate lavish costumes and sets. Traditional musicals center on a well-known star, famous for their dancing or singing skills (i.e. Fred Astaire, Gene Kelly, Judy Garland). These films explore concepts such are love and success, allowing the audience to escape from reality.
url_poster: https://theposterdb.com/api/assets/51427
Mystery:
template: { name: collection_genre, genre: Mystery }
summary: A Mystery film centers on a person of authority, usually a detective, that is trying to solve a mysterious crime. The main protagonist uses clues, investigation, and logical reasoning. The biggest element in these films is a sense of “whodunit” suspense, usually created through visual cues and unusual plot twists.
url_poster: https://theposterdb.com/api/assets/53060
Romance:
template: { name: collection_genre, genre: Romance }
summary: "Romance film can be defined as a genre wherein the plot revolves around the love between two protagonists. This genre usually has a theme that explores an issue within love, including but not limited to: love at first sight, forbidden love, love triangles, and sacrificial love. The tone of Romance film can vary greatly. Whether the end is happy or tragic, Romance film aims to evoke strong emotions in the audience."
url_poster: https://theposterdb.com/api/assets/53062
Science Fiction:
template: { name: collection_genre, genre: Science Fiction }
summary: Science Fiction (Sci-Fi) film is a genre that incorporates hypothetical, science-based themes into the plot of the film. Often, this genre incorporates futuristic elements and technologies to explore social, political, and philosophical issues. The film itself is usually set in the future, either on earth or in space. Traditionally, a Science Fiction film will incorporate heroes, villains, unexplored locations, fantastical quests, and advanced technology.
url_poster: https://theposterdb.com/api/assets/51772
Short:
template: { name: collection_genre, genre: Short }
summary: A collection of Short movies
url_poster: https://theposterdb.com/api/assets/53063
Sports:
template: { name: collection_genre, genre: Sport }
imdb_list:
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=sport
limit: 200
- url: https://www.imdb.com/search/title/?title_type=feature&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=sport&sort=user_rating,desc
limit: 200
summary: A Sport Film revolves around a sport setting, event, or an athlete. Often, these films will center on a single sporting event that carries significant importance. Sports films traditionally have a simple plot that builds up to the significant sporting event. This genre is known for incorporating film techniques to build anticipation and intensity. Sport films have a large range of sub-genres, from comedies to dramas, and are more likely than other genres to be based true-life events.
url_poster: https://theposterdb.com/api/assets/60371
Thriller:
template: { name: collection_genre, genre: Thriller }
summary: Thriller Film is a genre that revolves around anticipation and suspense. The aim for Thrillers is to keep the audience alert and on the edge of their seats. The protagonist in these films is set against a problem an escape, a mission, or a mystery. No matter what sub-genre a Thriller film falls into, it will emphasize the danger that the protagonist faces. The tension with the main problem is built on throughout the film and leads to a highly stressful climax.
url_poster: https://theposterdb.com/api/assets/52019
War:
template: { name: collection_genre, genre: War }
summary: War Film is a genre that looks at the reality of war on a grand scale. They often focus on landmark battles as well as political issues within war. This genre usually focuses on a main character and his team of support, giving the audience an inside look into the gritty reality of war.
url_poster: https://theposterdb.com/api/assets/51477
Western:
template: { name: collection_genre, genre: Western }
summary: "Western Film is a genre that revolves around stories primarily set in the late 19th century in the American Old West. Most Westerns are set between the American Civil War (1865) and the early 1900s. Common themes within Western Film include: the conquest of the wild west, the cultural separation of the East and the West, the Wests resistance to modern change, the conflict between Cowboys and Indians, outlaws, and treasure/gold hunting. American Western Film usually revolves around a stoic hero and emphasizes the importance of honor and sacrifice."
url_poster: https://theposterdb.com/api/assets/51774

View File

@@ -0,0 +1,507 @@
templates:
collection_person:
smart_filter:
sort_by: release.desc
validate: false
any:
actor: <<person>>
director: <<person>>
writer: <<person>>
producer: <<person>>
collections:
Adam Sandler:
template: { name: collection_person, person: "Adam Sandler" }
Al Pacino:
template: { name: collection_person, person: "Al Pacino" }
Alfred Hitchcock:
template: { name: collection_person, person: "Alfred Hitchcock" }
Amy Adams:
template: { name: collection_person, person: "Amy Adams" }
Angelina Jolie:
template: { name: collection_person, person: "Angelina Jolie" }
Anne Hathaway:
template: { name: collection_person, person: "Anne Hathaway" }
Anthony Hopkins:
template: { name: collection_person, person: "Anthony Hopkins" }
Antonio Banderas:
template: { name: collection_person, person: "Antonio Banderas" }
Arnold Schwarzenegger:
template: { name: collection_person, person: "Arnold Schwarzenegger" }
Ben Affleck:
template: { name: collection_person, person: "Ben Affleck" }
Ben Stiller:
template: { name: collection_person, person: "Ben Stiller" }
Bill Murray:
template: { name: collection_person, person: "Bill Murray" }
Brad Pitt:
template: { name: collection_person, person: "Brad Pitt" }
Bradley Cooper:
template: { name: collection_person, person: "Bradley Cooper" }
Brendan Fraser:
template: { name: collection_person, person: "Brendan Fraser" }
Bruce Lee:
template: { name: collection_person, person: "Bruce Lee" }
Bruce Willis:
template: { name: collection_person, person: "Bruce Willis" }
Cameron Diaz:
template: { name: collection_person, person: "Cameron Diaz" }
Carrie Fisher:
template: { name: collection_person, person: "Carrie Fisher" }
Cate Blanchett:
template: { name: collection_person, person: "Cate Blanchett" }
Catherine Zeta-Jones:
template: { name: collection_person, person: "Catherine Zeta-Jones" }
Channing Tatum:
template: { name: collection_person, person: "Channing Tatum" }
Charlie Chaplin:
template: { name: collection_person, person: "Charlie Chaplin" }
Charlize Theron:
template: { name: collection_person, person: "Charlize Theron" }
Chris Evans:
template: { name: collection_person, person: "Chris Evans" }
Chris Hemsworth:
template: { name: collection_person, person: "Chris Hemsworth" }
Chris Pratt:
template: { name: collection_person, person: "Chris Pratt" }
Chris Rock:
template: { name: collection_person, person: "Chris Rock" }
Christian Bale:
template: { name: collection_person, person: "Christian Bale" }
Christopher Nolan:
template: { name: collection_person, person: "Christopher Nolan" }
Christopher Walken:
template: { name: collection_person, person: "Christopher Walken" }
Chuck Norris:
template: { name: collection_person, person: "Chuck Norris" }
Clint Eastwood:
template: { name: collection_person, person: "Clint Eastwood" }
Daniel Craig:
template: { name: collection_person, person: "Daniel Craig" }
Daniel Radcliffe:
template: { name: collection_person, person: "Daniel Radcliffe" }
Dave Bautista:
template: { name: collection_person, person: "Dave Bautista" }
Dave Chappelle:
template: { name: collection_person, person: "Dave Chappelle" }
Denzel Washington:
template: { name: collection_person, person: "Denzel Washington" }
Diane Keaton:
template: { name: collection_person, person: "Diane Keaton" }
Don Cheadle:
template: { name: collection_person, person: "Don Cheadle" }
Dustin Hoffman:
template: { name: collection_person, person: "Dustin Hoffman" }
Dwayne Johnson:
template: { name: collection_person, person: "Dwayne Johnson" }
Eddie Murphy:
template: { name: collection_person, person: "Eddie Murphy" }
Edward Norton:
template: { name: collection_person, person: "Edward Norton" }
Elliot Page:
template: { name: collection_person, person: "Elliot Page" }
Emma Stone:
template: { name: collection_person, person: "Emma Stone" }
Emma Watson:
template: { name: collection_person, person: "Emma Watson" }
Ewan McGregor:
template: { name: collection_person, person: "Ewan McGregor" }
George Clooney:
template: { name: collection_person, person: "George Clooney" }
Gerard Butler:
template: { name: collection_person, person: "Gerard Butler" }
Gwyneth Paltrow:
template: { name: collection_person, person: "Gwyneth Paltrow" }
Harrison Ford:
template: { name: collection_person, person: "Harrison Ford" }
Hayao Miyazaki:
template: { name: collection_person, person: "Hayao Miyazaki" }
Hugh Jackman:
template: { name: collection_person, person: "Hugh Jackman" }
Ian McKellen:
template: { name: collection_person, person: "Ian McKellen" }
Idris Elba:
template: { name: collection_person, person: "Idris Elba" }
J.J. Abrams:
template: { name: collection_person, person: "J.J. Abrams" }
Jack Black:
template: { name: collection_person, person: "Jack Black" }
Jackie Chan:
template: { name: collection_person, person: "Jackie Chan" }
James Cameron:
template: { name: collection_person, person: "James Cameron" }
James Franco:
template: { name: collection_person, person: "James Franco" }
Jamie Foxx:
template: { name: collection_person, person: "Jamie Foxx" }
Jason Bateman:
template: { name: collection_person, person: "Jason Bateman" }
Jason Statham:
template: { name: collection_person, person: "Jason Statham" }
Jeff Bridges:
template: { name: collection_person, person: "Jeff Bridges" }
Jeff Goldblum:
template: { name: collection_person, person: "Jeff Goldblum" }
Jennifer Aniston:
template: { name: collection_person, person: "Jennifer Aniston" }
Jennifer Lawrence:
template: { name: collection_person, person: "Jennifer Lawrence" }
Jesse Eisenberg:
template: { name: collection_person, person: "Jesse Eisenberg" }
Jessica Alba:
template: { name: collection_person, person: "Jessica Alba" }
Jet Li:
template: { name: collection_person, person: "Jet Li" }
Jim Carrey:
template: { name: collection_person, person: "Jim Carrey" }
John Candy:
template: { name: collection_person, person: "John Candy" }
John Travolta:
template: { name: collection_person, person: "John Travolta" }
John Wayne:
template: { name: collection_person, person: "John Wayne" }
Johnny Depp:
template: { name: collection_person, person: "Johnny Depp" }
Josh Brolin:
template: { name: collection_person, person: "Josh Brolin" }
Julia Roberts:
template: { name: collection_person, person: "Julia Roberts" }
Keanu Reeves:
template: { name: collection_person, person: "Keanu Reeves" }
Kevin Bacon:
template: { name: collection_person, person: "Kevin Bacon" }
Kevin Costner:
template: { name: collection_person, person: "Kevin Costner" }
Kevin Hart:
template: { name: collection_person, person: "Kevin Hart" }
Kevin Smith:
template: { name: collection_person, person: "Kevin Smith" }
Kristen Stewart:
template: { name: collection_person, person: "Kristen Stewart" }
Leonardo DiCaprio:
template: { name: collection_person, person: "Leonardo DiCaprio" }
Liam Neeson:
template: { name: collection_person, person: "Liam Neeson" }
Lucy Liu:
template: { name: collection_person, person: "Lucy Liu" }
M. Night Shyamalan:
template: { name: collection_person, person: "M. Night Shyamalan" }
Mark Ruffalo:
template: { name: collection_person, person: "Mark Ruffalo" }
Mark Wahlberg:
template: { name: collection_person, person: "Mark Wahlberg" }
Matt Damon:
template: { name: collection_person, person: "Matt Damon" }
Matthew McConaughey:
template: { name: collection_person, person: "Matthew McConaughey" }
Megan Fox:
template: { name: collection_person, person: "Megan Fox" }
Mel Brooks:
template: { name: collection_person, person: "Mel Brooks" }
Mel Gibson:
template: { name: collection_person, person: "Mel Gibson" }
Melissa McCarthy:
template: { name: collection_person, person: "Melissa McCarthy" }
Meryl Streep:
template: { name: collection_person, person: "Meryl Streep" }
Michael Bay:
template: { name: collection_person, person: "Michael Bay" }
Michael Caine:
template: { name: collection_person, person: "Michael Caine" }
Michael Douglas:
template: { name: collection_person, person: "Michael Douglas" }
Michael Keaton:
template: { name: collection_person, person: "Michael Keaton" }
Michelle Pfeiffer:
template: { name: collection_person, person: "Michelle Pfeiffer" }
Mike Myers:
template: { name: collection_person, person: "Mike Myers" }
Mila Kunis:
template: { name: collection_person, person: "Mila Kunis" }
Milla Jovovich:
template: { name: collection_person, person: "Milla Jovovich" }
Morgan Freeman:
template: { name: collection_person, person: "Morgan Freeman" }
Natalie Portman:
template: { name: collection_person, person: "Natalie Portman" }
Nicolas Cage:
template: { name: collection_person, person: "Nicolas Cage" }
Nicole Kidman:
template: { name: collection_person, person: "Nicole Kidman" }
Orlando Bloom:
template: { name: collection_person, person: "Orlando Bloom" }
Owen Wilson:
template: { name: collection_person, person: "Owen Wilson" }
Patrick Stewart:
template: { name: collection_person, person: "Patrick Stewart" }
Paul Rudd:
template: { name: collection_person, person: "Paul Rudd" }
Quentin Tarantino:
template: { name: collection_person, person: "Quentin Tarantino" }
Reese Witherspoon:
template: { name: collection_person, person: "Reese Witherspoon" }
Ridley Scott:
template: { name: collection_person, person: "Ridley Scott" }
Robert De Niro:
template: { name: collection_person, person: "Robert De Niro" }
Robert Downey Jr:
template: { name: collection_person, person: "Robert Downey Jr" }
Robin Williams:
template: { name: collection_person, person: "Robin Williams" }
Rosario Dawson:
template: { name: collection_person, person: "Rosario Dawson" }
Ryan Reynolds:
template: { name: collection_person, person: "Ryan Reynolds" }
Sacha Baron Cohen:
template: { name: collection_person, person: "Sacha Baron Cohen" }
Samuel L. Jackson:
template: { name: collection_person, person: "Samuel L. Jackson" }
Sandra Bullock:
template: { name: collection_person, person: "Sandra Bullock" }
Scarlett Johansson:
template: { name: collection_person, person: "Scarlett Johansson" }
Sean Connery:
template: { name: collection_person, person: "Sean Connery" }
Seth Rogen:
template: { name: collection_person, person: "Seth Rogen" }
Shia LaBeouf:
template: { name: collection_person, person: "Shia LaBeouf" }
Steve Buscemi:
template: { name: collection_person, person: "Steve Buscemi" }
Steve Carell:
template: { name: collection_person, person: "Steve Carell" }
Steve Martin:
template: { name: collection_person, person: "Steve Martin" }
Steven Seagal:
template: { name: collection_person, person: "Steven Seagal" }
Steven Spielberg:
template: { name: collection_person, person: "Steven Spielberg" }
Sylvester Stallone:
template: { name: collection_person, person: "Sylvester Stallone" }
Tim Allen:
template: { name: collection_person, person: "Tim Allen" }
Tim Burton:
template: { name: collection_person, person: "Tim Burton" }
Tom Cruise:
template: { name: collection_person, person: "Tom Cruise" }
Tom Hanks:
template: { name: collection_person, person: "Tom Hanks" }
Tommy Lee-Jones:
template: { name: collection_person, person: "Tommy Lee-Jones" }
Vin Diesel:
template: { name: collection_person, person: "Vin Diesel" }
Vince Vaughn:
template: { name: collection_person, person: "Vince Vaughn" }
Wesley Snipes:
template: { name: collection_person, person: "Wesley Snipes" }
Will Ferrell:
template: { name: collection_person, person: "Will Ferrell" }
Will Smith:
template: { name: collection_person, person: "Will Smith" }
Woody Harrelson:
template: { name: collection_person, person: "Woody Harrelson" }
Zack Snyder:
template: { name: collection_person, person: "Zack Snyder" }
Zoe Saldana:
template: { name: collection_person, person: "Zoe Saldana" }
Alejandro González Iñárritu:
template: { name: collection_person, person: 223 }
Alex Garland:
template: { name: collection_person, person: 2036 }
Alfonso Cuarón:
template: { name: collection_person, person: 11218 }
Akira Kurosawa:
template: { name: collection_person, person: 5026 }
Coen Brothers:
template: { name: collection_person, person: "1223, 1224" }
summary: "Joel Coen and Ethan Coen, collectively referred to as the Coen Brothers, are American film directors, producers, screenwriters, and editors. Their films span many genres and styles, which they frequently subvert or parody. Their most acclaimed works include: Raising Arizona (1987), Miller's Crossing (1990), Fargo (1996), The Big Lebowski (1998), O Brother, Where Art Thou? (2000), No Country for Old Men (2007), Burn After Reading (2008), A Serious Man (2009), True Grit (2010), Inside Llewyn Davis (2013), and The Ballad of Buster Scruggs (2018)."
Darren Aronofsky:
template: { name: collection_person, person: 6431 }
David Fincher:
template: { name: collection_person, person: 7467 }
David Lean:
template: { name: collection_person, person: 12238 }
David Lynch:
template: { name: collection_person, person: 5602 }
Denis Villeneuve:
template: { name: collection_person, person: 137427 }
Francis Ford Coppola:
template: { name: collection_person, person: 1776 }
Kathryn Bigelow:
template: { name: collection_person, person: 14392 }
Paul Thomas Anderson:
template: { name: collection_person, person: 4762 }
Spike Lee:
template: { name: collection_person, person: 5281 }
Stanley Kubrick:
template: { name: collection_person, person: 240 }
Terrence Malick:
template: { name: collection_person, person: 30715 }
Terry Gilliam:
template: { name: collection_person, person: 280 }
Wes Anderson:
template: { name: collection_person, person: 5655 }

View File

@@ -0,0 +1,45 @@
templates:
collection_top:
sort_title: +++++++++++++++++++_<<sort>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_top
collections:
Trending:
template: { name: collection_top, sort: 1Trending }
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
smart_label: year.desc
summary: Movies Trending across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4vpMZoA.png
Popular:
template: { name: collection_top, sort: 2Popular }
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
limit: 40
smart_label: year.desc
summary: Popular Movies across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4cI2Jg4.png
Top Rated:
template: { name: collection_top, sort: 3Top Rated }
imdb_list: https://www.imdb.com/search/title/?groups=top_250&count=250
tmdb_top_rated: 250
smart_label: critic_rating.desc
summary: Top Rated Movies
url_background: https://i.imgur.com/b26VZ9y.jpg
url_poster: https://i.imgur.com/x7BhedD.png
Newly Released Movies:
template: { name: collection_top, sort: 4Newly Released }
smart_label: added.desc
trakt_list: https://trakt.tv/users/giladg/lists/latest-releases
summary: A collection of newly-released movies in cinema and on streaming services
url_poster: https://i.imgur.com/D62EdJd.jpg
url_background: https://wallpaperbat.com/img/23094-cinema-hd-wallpaper-top-free-cinema-hd-background.jpg

View File

@@ -0,0 +1,70 @@
templates:
collection_person:
actor: tmdb
tmdb_person: <<person>>
sort_title: +_<<collection_name>>
sync_mode: sync
collection_order: release
radarr_add_missing: true
radarr_tag: pmm_standup
collections:
Aziz Ansari:
template: { name: collection_person, person: 86626 }
Bill Burr:
template: { name: collection_person, person: 109708 }
Bo Burnham:
template: { name: collection_person, person: 115128 }
Chris Rock:
template: { name: collection_person, person: 2632 }
Dave Chappelle:
template: { name: collection_person, person: 4169 }
Demetri Martin:
template: { name: collection_person, person: 84075 }
Eddie Murphy:
template: { name: collection_person, person: 776 }
George Carlin:
template: { name: collection_person, person: 15903 }
Jerry Seinfeld:
template: { name: collection_person, person: 16377 }
Jim Gaffigan:
template: { name: collection_person, person: 84407 }
Jim Norton:
template: { name: collection_person, person: 135855 }
Jimmy Carr:
template: { name: collection_person, person: 59077 }
John Mulaney:
template: { name: collection_person, person: 933558 }
Kevin Hart:
template: { name: collection_person, person: 55638 }
Louis C.K.:
template: { name: collection_person, person: 52849 }
Patton Oswalt:
template: { name: collection_person, person: 10872 }
Richard Pryor:
template: { name: collection_person, person: 9309 }
Ricky Gervais:
template: { name: collection_person, person: 17835 }
Robin Williams:
template: { name: collection_person, person: 2157 }
Trevor Noah:
template: { name: collection_person, person: 131133 }

View File

@@ -0,0 +1,45 @@
templates:
collection_top:
sort_title: +++++++++++++++++++_<<sort>>
sync_mode: sync
radarr_add_missing: false
radarr_tag: pmm_top
collections:
Trending:
template: { name: collection_top, sort: 1Trending }
trakt_trending: 40
tmdb_trending_daily: 40
tmdb_trending_weekly: 40
smart_label: year.desc
summary: Movies Trending across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4vpMZoA.png
Popular:
template: { name: collection_top, sort: 2Popular }
tmdb_popular: 40
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,documentary,short
limit: 40
smart_label: year.desc
summary: Popular Movies across the internet
url_background: https://i.imgur.com/SOVfrIq.png
url_poster: https://i.imgur.com/4cI2Jg4.png
Top Rated:
template: { name: collection_top, sort: 3Top Rated }
imdb_list: https://www.imdb.com/search/title/?groups=top_250&count=250
tmdb_top_rated: 250
smart_label: critic_rating.desc
summary: Top Rated Movies
url_background: https://i.imgur.com/b26VZ9y.jpg
url_poster: https://i.imgur.com/x7BhedD.png
Newly Released Movies:
template: { name: collection_top, sort: 4Newly Released }
smart_label: added.desc
trakt_list: https://trakt.tv/users/giladg/lists/latest-releases
summary: A collection of newly-released movies in cinema and on streaming services
url_poster: https://i.imgur.com/D62EdJd.jpg
url_background: https://wallpaperbat.com/img/23094-cinema-hd-wallpaper-top-free-cinema-hd-background.jpg

View File

@@ -0,0 +1,63 @@
templates:
collection_tvchannels:
smart_label: originally_available.desc
sync_mode: sync
url_poster: <<poster>>
sort_title: +++++++++++++++++++++_ <<collection_name>>
sonarr_add_missing: false
sonarr_tag: pmm_tvchannels
collections:
ABC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113115 }
tmdb_network: 2
summary: Shows Aired on ABC
AMC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113118 }
tmdb_network: 174
summary: Shows Aired on AMC
BBC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113123 }
tmdb_network: 4
summary: Shows Aired on BBC One
CBS:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113138 }
tmdb_network: 16
summary: Shows Aired on CBS
FOX:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113173 }
tmdb_network: 19
summary: Shows Aired on FOX
NBC:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113217 }
tmdb_network: 6
summary: Shows Aired on NBC
Showtime:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113257 }
tmdb_network: 67
summary: Showtime Orginal Shows
Starz:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113265 }
tmdb_network: 318
summary: Starz Orginal Shows
SyFy:
template:
{ name: Studio, poster: https://theposterdb.com/api/assets/113267 }
tmdb_network: 77
summary: Shows Aired on SYFY

View File

@@ -0,0 +1,48 @@
templates:
collection_tvstudios:
smart_label: originally_available.desc
sort_title: +++++++++++++++++++++_ <<sort>>
sync_mode: sync
sonarr_add_missing: false
sonarr_tag: pmm_tvstudios
collections:
Apple Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 1APPLE }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0546168
summary: All Apple TV Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/O9iWork.png
url_background: https://wallpaper-house.com/data/out/8/wallpaper2you_228774.png
Amazon Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 2AMAZON }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0319272
summary: All Apple TV Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/nU3gqqB.png
url_background: https://i.imgur.com/2jfs7oS.png
Netflix Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 3NETFLIX }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0144901
summary: All Netflix Original Series/Shows From 2000-2025
url_poster: https://i.imgur.com/7kiE1MU.png
url_background: https://img5.goodfon.com/original/1920x1080/1/61/fon-netflix-logo-raduga-tsvet-fon-background-skachat-oboi-sk.jpg
HBO Max Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 4HBO }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0754095
summary: All HBO Max Series/Shows From 2000-2025
url_poster: https://i.redd.it/zxdvw3tk3f151.jpg
url_background: https://wallpapercave.com/wp/wp6402755.png
HULU Original Series 2000-2025:
template: { name: collection_tvstudios, sort: 5HULU }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=feature,tv_movie,tv_series,tv_special,tv_miniseries,documentary,video,tv_short&release_date=2000-01-01,2025-12-31&genres=!animation&countries=us&languages=en&sort=release_date,desc&count=250&companies=co0218858
summary: All HULU Original Series/Shows From 2000-2025
url_poster: https://plexcollectionposters.com/images/2019/05/26/Hulu6ddad752a5ce9bac.jpg
url_background: https://cdn.vox-cdn.com/thumbor/oR4hqrmTxbX_O4gdJ6np8h-PxFk=/0x439:750x861/1600x900/cdn.vox-cdn.com/uploads/chorus_image/image/56311701/Image_uploaded_from_iOS__8_.1503433270.jpg

View File

@@ -0,0 +1,19 @@
templates:
collection_tvtop:
sync_mode: sync
smart_label: originally_available.desc
sonarr_add_missing: false
sonarr_tag: pmm_tvtop
collections:
Trending:
template: { name: collection_tvtop }
trakt_trending: 40
summary: Shows Trending across the internet
Popular:
template: { name: collection_tvtop }
imdb_list:
url: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries
limit: 40
summary: Popular Shows across the internet

View File

@@ -0,0 +1,259 @@
libraries:
Movies:
library_name: Movies
radarr:
url: http://radarr:7878
token: e6e3d6f4aafe4e499d970cfcbf042db9
root_folder_path: /mnt/store/Movies
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Movies
plex_path: /movies
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/Movies
Anime Movies:
library_name: Anime Movies
radarr:
url: http://radarr_anime:7878
token: fb126bad31d64d43bb669ad81329954d
root_folder_path: /mnt/store/Anime Movies
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Anime Movies
plex_path: /anime_movies
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/AnimeMovies
Movies Classics:
library_name: Movies Classics
radarr:
url: http://radarr_art:7878
token: 32365893c4234f8a9ad96d68d6e7a520
root_folder_path: /mnt/store/Movies Classics
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Movies Classics
plex_path: /movies_classics
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/MoviesArt
Movies Foreign:
library_name: Movies Foreign
radarr:
url: http://radarr_art:7878
token: 32365893c4234f8a9ad96d68d6e7a520
root_folder_path: /mnt/store/Movies Foreign
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Movies Foreign
plex_path: /movies_foreign
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/MoviesArt
Documentaries:
library_name: Documentaries
radarr:
url: http://radarr_documentaries:7878
token: fd03f47363324096a56d0a453623420b
root_folder_path: /mnt/store/Documentaries
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Documentaries
plex_path: /documentaries
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/Documentaries
Stand Up:
library_name: Stand Up
radarr:
url: http://radarr_standup:7878
token: c7c425b3fbcf4112895aceec7729f4d1
root_folder_path: /mnt/store/Stand Up
monitor: true
availability: released
quality_profile: HD-1080p
tag: pmm
search: true
radarr_path: /mnt/store/Stand Up
plex_path: /standup
add_missing: false
operations:
delete_collections_with_less: 2
delete_unmanaged_collections: true
metadata_path:
folder: /config/Stand Up
TV Shows:
library_name: TV Shows
sonarr:
url: http://sonarr:8989
token: 7f0dfeea4b9f410d96b5ffa2f809d1e8
root_folder_path: /mnt/store/TV Shows
monitor: all
quality_profile: HD-1080p
language_profile: English
series_type: standard
season_folder: true
tag: pmm
search: true
cutoff_search: true
sonarr_path: /mnt/store/TV Shows
plex_path: /tvshows
add_missing: false
operations:
delete_unmanaged_collections: true
metadata_path:
folder: /config/TV Shows
Anime:
library_name: Anime
sonarr:
url: http://sonarr_anime:8989
token: a2f10e70559c4ee3b8ff1d6cdc5a41f1
root_folder_path: /mnt/store/Anime
monitor: all
quality_profile: HD-1080p
language_profile: English
series_type: anime
season_folder: true
tag: pmm
search: true
cutoff_search: true
sonarr_path: /mnt/store/Anime
plex_path: /anime
add_missing: false
operations:
delete_unmanaged_collections: true
metadata_path:
folder: /config/Anime
Documentary Shows:
library_name: Documentary Shows
sonarr:
url: http://sonarr_documentaries:8989
token: 3ed988c3731b45ad8124b7d55b620d6b
root_folder_path: /mnt/store/Documentary Shows
monitor: all
quality_profile: HD-1080p
language_profile: English
series_type: standard
season_folder: true
tag: pmm
search: true
cutoff_search: true
sonarr_path: /mnt/store/Documentary Shows
plex_path: /documentary_shows
add_missing: false
operations:
delete_unmanaged_collections: true
metadata_path:
folder: /config/DocumentaryShows
settings:
cache: true
cache_expiration: 60
asset_directory: /config/assets
asset_folders: true
asset_depth: 0
create_asset_folders: false
dimensional_asset_rename: false
download_url_assets: true
show_missing_season_assets: false
sync_mode: append
delete_below_minimum: true
delete_not_scheduled: false
run_again_delay: 2
missing_only_released: true
only_filter_missing: false
show_unmanaged: true
show_filtered: false
show_options: false
show_missing: true
show_missing_assets: true
save_missing: true
tvdb_language: eng
ignore_ids:
ignore_imdb_ids:
verify_ssl: true
minimum_items: 1
default_collection_order:
playlist_sync_to_users: all
show_missing_episode_assets: false
show_asset_not_needed: true
item_refresh_delay: 0
custom_repo:
prioritize_assets: false
playlist_report: true
check_nightly: false
show_unconfigured: true
playlist_exclude_users:
plex:
url: http://plex.alexlebens.net:32400
token: uCWu6VUVF2qPbh68tC_s
timeout: 60
clean_bundles: true
empty_trash: true
optimize: true
tmdb:
apikey: 564703b3d52ce7b2f99cc1df45eb2031
language: en
cache_expiration: 60
region: us
tautulli:
url: http://plex_tautulli:8181
apikey: 41da8e4c507341ee90683fe5e815d85d
trakt:
client_id: b077cb738bc096ab8385a994decab09b9baadfb04ecbbf3eb583bad5e717cb94
client_secret: 514a146995b7666c05c64be3e5c1d77ee2def07e7a834603db233248c39a3093
authorization:
access_token: 73eb2d350e992c41445c64b917fb31a527c708a1daa7d9cbba4982ecb1950e31
token_type: Bearer
expires_in: 7889238
refresh_token: 8883633f5107a6f4ebc444a97e8fa27639f239bd90db81d57e0003814951b8f2
scope: public
created_at: 1675859896
pin:
mal:
client_id: bdc66e7ca0338093e0f3845533788468
client_secret: 06f9213f289c5236d9332eccbcce8521b7d93dfd945f4caa5c88311d1f0dbaad
authorization:
access_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjkxZGU0MTgzNmMyZDRjOGJlMWE3MzI2MDhiNzFmMzY5NzQzZDU1MGZmN2RlODM3YWUwZDRkOGVlZWRhZmM5YmI5ZTVkM2UzZTQzMWMwZWU2In0.eyJhdWQiOiJiZGM2NmU3Y2EwMzM4MDkzZTBmMzg0NTUzMzc4ODQ2OCIsImp0aSI6IjkxZGU0MTgzNmMyZDRjOGJlMWE3MzI2MDhiNzFmMzY5NzQzZDU1MGZmN2RlODM3YWUwZDRkOGVlZWRhZmM5YmI5ZTVkM2UzZTQzMWMwZWU2IiwiaWF0IjoxNjc1ODQ3OTM2LCJuYmYiOjE2NzU4NDc5MzYsImV4cCI6MTY3ODI2NzEzNiwic3ViIjoiMTQzNTIwMjIiLCJzY29wZXMiOltdfQ.k9SEBpG_UEVQqr8r_V5m37LwRapgls3YLMiMQTYbKmLxT3f6DWtaBAiVZpFkzCmN18DHeZoIOwbHdAkZpXjVht-m913JkBjorzj93UQ_qizP6d61B1ImgBkWRsdb-4L1ShzcK5z8Ra22FTTpjFTFXMw9-JWbJ27Ze5irYG27VrWL4P87NmJKTf2dcYQd4FHTLY4HIkd5C13ip9-RNQXy--WL2RO9SbfVXhSHpdzO1Vf0KvPEFuGiIX-DiZcJCOKNgrDWGrMTYMchnJKBiIDhRrELLMLIqQhcf0mDtaiAaDQWSa1kAA8_r34o0Jqq1DyKoHFJvW-eUUqtcSL6ffezNw
token_type: Bearer
expires_in: 2419200
refresh_token: def502004e04ee4d11b96f53b5084a27506d323daeaf28fd372fb8af60b2b11ae433058fb0d0b46284771f0387d1a88959c19de482d778e01783b82e7f6ef0df63a789c7d89fe2d2eb249245709f98ba833d3d655a7889955921fbbf22a257029f7d398a919f19f567506a5db7dc33c8ce2d2fad594e13b05d936181cff8e9544150c92a90d0902d6aaf55342dc393d5e342ca31fe8c3a26025475e3ab281d5a357325c5c531057c085c14fca536121a20456bde0476f9416ff8dd71422b9d2165a90d2694bb7702c36e0c8bacde0bbc27202a15d51866a735952b5ec13acc0b6a6049a257216846c2ff3314ac48f03ed024601df1c28803f320738e7c009309c7a6919fa184a9128d64cacab6f52d4506d6421dc4491c4b361e48d941a4a1bf80281bfd6f7241e6a248c4a299513e6735809f44332bdfba2c9ce4675a28a1a40b4ae10e2532c822d56f9d80b43e1eab2cbbff25e754285aa09ee94c4581f4455d9b0051e04a3bc807bae04fe9af6303d98cfae27136a6e282dc8cad91dbfd8fe9730abd2a6ea7dd8a
localhost_url:
cache_expiration: 60
webhooks:
error: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM
version: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM
run_start: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM
run_end: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM
changes: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM
delete: https://discord.com/api/webhooks/1072796235901194311/eXEtCM4De3xNb_8DBuM1BxIWpSA3kdQyPjw--Wu2NG2K7kpEirlCE52yZ_oO4dU4q8eM

3
Plex/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Plex
[![Build Status](https://drone.alexlebens.net/api/badges/alexlebens/Plex/status.svg)](https://drone.alexlebens.net/alexlebens/Plex)

View File

@@ -0,0 +1,17 @@
{
"type": "docker",
"name": "Plex - Docker",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://plex.alexlebens.net",
"accepted_statuscodes": [
"200-299"
],
"docker_container": "plex",
"docker_host": 1
}

View File

@@ -0,0 +1,17 @@
{
"type": "docker",
"name": "Plex Tautulli - Docker",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://tautulli.alexlebens.net",
"accepted_statuscodes": [
"200-299"
],
"docker_container": "plex_tautulli",
"docker_host": 1
}

View File

@@ -0,0 +1,17 @@
{
"type": "docker",
"name": "Plex Meta Manager - Docker",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://plex.alexlebens.net",
"accepted_statuscodes": [
"200-299"
],
"docker_container": "plex_meta_manager",
"docker_host": 1
}

View File

@@ -0,0 +1,17 @@
{
"type": "docker",
"name": "Plex Exporter - Docker",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "http://plex_exporter:9000/metrics",
"accepted_statuscodes": [
"200-299"
],
"docker_container": "plex_exporter",
"docker_host": 1
}

View File

@@ -0,0 +1,15 @@
{
"type": "http",
"name": "Plex - Web",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://plex.alexlebens.net",
"accepted_statuscodes": [
"200-299"
]
}

View File

@@ -0,0 +1,15 @@
{
"type": "http",
"name": "Plex Tautulli - Web",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://tautulli.alexlebens.net",
"accepted_statuscodes": [
"200-299"
]
}

View File

@@ -0,0 +1,15 @@
{
"type": "http",
"name": "Plex Exporter - Web",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "http://plex_exporter:9594/metrics",
"accepted_statuscodes": [
"200-299"
]
}

224
Plex/docker-compose.yml Normal file
View File

@@ -0,0 +1,224 @@
services:
plex:
container_name: plex
devices:
- /dev/dri:/dev/dri
env_file:
- .env
hostname: plex.alexlebens.net
image: plexinc/pms-docker
labels:
traefik.docker.network: traefik
traefik.enable: true
traefik.http.routers.plex.entrypoints: websecure
traefik.http.routers.plex.rule: Host(`plex.alexlebens.net`)
traefik.http.routers.plex.service: plex
traefik.http.services.plex.loadbalancer.server.port: 32400
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
ports:
- 32400:32400/tcp
- 32400:32400/udp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
restart: unless-stopped
privileged: true
volumes:
- config:/config
- transcode:/transcode
- preroll_nfs:/preroll
- anime_nfs:/anime
- anime_movies_nfs:/anime_movies
- documentaries_nfs:/documentaries
- documentary_shows_nfs:/documentary_shows
- dvr_nfs:/dvr
- movies_nfs:/movies
- movies_classics_nfs:/movies_classics
- movies_foreign_nfs:/movies_foreign
- music_nfs:/music
- standup_nfs:/standup
- tvshows_nfs:/tvshows
tautulli:
container_name: plex_tautulli
env_file:
- .env
image: ghcr.io/tautulli/tautulli:latest
labels:
traefik.docker.network: traefik
traefik.enable: true
traefik.http.routers.tautulli.entrypoints: websecure
traefik.http.routers.tautulli.rule: Host(`tautulli.alexlebens.net`)
traefik.http.routers.tautulli.service: tautulli
traefik.http.routers.tautulli.middlewares: tautulli-theme@file
traefik.http.services.tautulli.loadbalancer.server.port: 8181
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
restart: unless-stopped
volumes:
- tautulli:/config
plex_meta_manager:
container_name: plex_meta_manager
environment:
- PMM_TIME=01:00
- TZ=America/Denver
image: meisnate12/plex-meta-manager:latest
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
restart: unless-stopped
volumes:
- plex_meta_manager:/config
plex_exporter:
container_name: plex_exporter
env_file:
- .env
image: ghcr.io/axsuul/plex-media-server-exporter:latest
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
restart: unless-stopped
networks:
traefik:
name: traefik
external: true
volumes:
config:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/plex_config
transcode:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/plex_transcode
tautulli:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/plex_tautulli
plex_meta_manager:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/plex_meta_manager
preroll_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Preroll"
anime_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Anime"
anime_movies_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Anime Movies"
documentaries_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Documentaries"
documentary_shows_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Documentary Shows"
dvr_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/DVR"
movies_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Movies"
movies_classics_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Movies Classics"
movies_foreign_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Movies Foreign"
music_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Music"
standup_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/Stand Up"
tvshows_nfs:
driver: local
driver_opts:
type: nfs
o: addr=192.168.1.194,nfsvers=4
device: ":/volume2/Storage/TV Shows"