From 04d28bb2f6e0aa486d19ddf2556ecc8b16aca5d5 Mon Sep 17 00:00:00 2001 From: hstephens Date: Fri, 11 Nov 2022 08:48:38 -0700 Subject: [PATCH] added playlists --- .../playlists/episodes/anime_playlists.yml | 18 ++++ hstep20/playlists/episodes/tv_playlists.yml | 15 +++ .../playlists/music/chillhop_by_season.yml | 22 +++++ .../music/hearted_music_by_genre.yml | 92 +++++++++++++++++++ 4 files changed, 147 insertions(+) create mode 100644 hstep20/playlists/episodes/anime_playlists.yml create mode 100644 hstep20/playlists/episodes/tv_playlists.yml create mode 100644 hstep20/playlists/music/chillhop_by_season.yml create mode 100644 hstep20/playlists/music/hearted_music_by_genre.yml diff --git a/hstep20/playlists/episodes/anime_playlists.yml b/hstep20/playlists/episodes/anime_playlists.yml new file mode 100644 index 0000000..66ae208 --- /dev/null +++ b/hstep20/playlists/episodes/anime_playlists.yml @@ -0,0 +1,18 @@ +playlists: + Monogatari Watch Order: + libraries: "All Anime" + sync_mode: sync + trakt_list: https://trakt.tv/users/agent531c/lists/monogatari-watchlist?sort=rank%2Casc + summary: Monogatari in watch order + smart_filter: + any: + episode_unplayed: true + + Bleach - No Filler: + libraries: "All Anime" + sync_mode: sync + trakt_list: https://trakt.tv/users/grawler/lists/bleach-in-order-no-filler?sort=rank%2Casc + summary: A Watch order for Bleach with all of the complete filler parts cut out + smart_filter: + any: + episode_unplayed: true diff --git a/hstep20/playlists/episodes/tv_playlists.yml b/hstep20/playlists/episodes/tv_playlists.yml new file mode 100644 index 0000000..61cf43b --- /dev/null +++ b/hstep20/playlists/episodes/tv_playlists.yml @@ -0,0 +1,15 @@ +playlists: + X Files (Freak of the Week): + trakt_list: https://trakt.tv/lists/23903123 + libraries: "All TV Shows" + sync_mode: sync + + X Files (Mythology): + trakt_list: https://trakt.tv/lists/23903191 + libraries: "All TV Shows" + sync_mode: sync + + Ducktales Intended Viewing Order: + trakt_list: https://trakt.tv/users/itsmistermoon/lists/ducktales-2017-official-order?sort=rank%2Casc + libraries: "All TV Shows" + sync_mode: sync diff --git a/hstep20/playlists/music/chillhop_by_season.yml b/hstep20/playlists/music/chillhop_by_season.yml new file mode 100644 index 0000000..d9a941f --- /dev/null +++ b/hstep20/playlists/music/chillhop_by_season.yml @@ -0,0 +1,22 @@ +templates: + Seasonal Chillhop: + libraries: "Music" + sync_mode: sync + summary: All the songs from the Chillhop Essentials <> albums + plex_search: + type: track + all: + album_title: [Chillhop, <>] + +playlists: + Chillhop - Spring LoFi: + template: { name: Seasonal Chillhop, season: Spring } + + Chillhop - Fall LoFi: + template: { name: Seasonal Chillhop, season: Fall } + + Chillhop - Summer LoFi: + template: { name: Seasonal Chillhop, season: Summer } + + Chillhop - Winter LoFi: + template: { name: Seasonal Chillhop, season: Winter } diff --git a/hstep20/playlists/music/hearted_music_by_genre.yml b/hstep20/playlists/music/hearted_music_by_genre.yml new file mode 100644 index 0000000..a700dd4 --- /dev/null +++ b/hstep20/playlists/music/hearted_music_by_genre.yml @@ -0,0 +1,92 @@ +templates: + Hearted Genre Playlist: + libraries: "Music" + sync_mode: sync + summary: All the best <> songs + plex_search: + type: track + all: + track_user_rating.gte: 5 # This is a scale of 1-10, which means 5 is eqivalent to 2.5 stars or higher + artist_genre: <> + album_type.not: Soundtrack + + Hearted Country Playlist: + libraries: "Music" + sync_mode: sync + summary: All the best songs from <> + plex_search: + type: track + all: + track_user_rating.gte: 5 + album_type.not: Soundtrack + artist_genre.not: Instrumental + any: + artist_country: <> + +playlists: + <3 All Songs: + libraries: "Music" + sync_mode: sync + summary: All the best songs + plex_search: + type: track + all: + track_user_rating.gte: 5 + + <3 Instrumental Songs: + libraries: "Music" + sync_mode: sync + summary: All the best Instrumental songs + plex_search: + type: track + all: + track_user_rating.gte: 5 # This is a scale of 1-10, which means 5 is eqivalent to 2.5 stars or higher + artist_genre: Instrumental + + <3 Soundtrack Songs: + libraries: "Music" + sync_mode: sync + summary: All the best songs from Soundtracks + plex_search: + type: track + all: + track_user_rating.gte: 5 # This is a scale of 1-10, which means 5 is eqivalent to 2.5 stars or higher + album_type: Soundtrack + + # Standard Genres Builders + + <3 Alternative Rock Songs: + template: { name: Hearted Genre Playlist, genre: Alternative Rock } + + <3 Folk Songs: + template: { name: Hearted Genre Playlist, genre: Folk } + + <3 Indie Rock Songs: + template: { name: Hearted Genre Playlist, genre: Indie Rock } + + <3 Metal Songs: + template: { name: Hearted Genre Playlist, genre: Metal } + + <3 New Wave Songs: + template: { name: Hearted Genre Playlist, genre: New Wave } + + <3 Punk Songs: + template: { name: Hearted Genre Playlist, genre: Punk } + + <3 Rock Songs: + template: { name: Hearted Genre Playlist, genre: Rock } + + <3 Synthwave Songs: + template: { name: Hearted Genre Playlist, genre: Synthwave } + + # Artists by Country Builders + + <3 Japan Songs: + template: { name: Hearted Country Playlist, country: japan } + + <3 Northern European Songs: + template: + { + name: Hearted Country Playlist, + country: [japan, norway, sweden, finland, iceland], + }