Curated Community Playlists - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Development (https://forum.jellyfin.org/f-development) +--- Forum: Plugin Development (https://forum.jellyfin.org/f-plugin-development) +--- Thread: Curated Community Playlists (/t-curated-community-playlists) |
Curated Community Playlists - apriestley - 2024-02-17 Hello, I'm new to the forum. I'm wondering if there exists a kind of "curated" list of collections or playlists, perhaps community-maintained, particularely for TV shows. Some examples might include "Best of the X-Files", or "The Simpsons Golden Age". Or even theme, or category-based lists, like Christmas or Halloween specials. Sometimes you want to throw on a show, and you don't have a specific episode in mind, but you're in a certain mood. I guess I'm trying to save myself some work. If such a collection does exist, could there be a plugin that might be set up to automatically pull from it using the media you have set up in JF? RE: Curated Community Playlists - TheDreadPirate - 2024-02-17 Unfortunately, the way that collections works is that they are a list of file paths. So they are not sharable. Here is an example collection XML I have. (Scroll down a bit to get to the file names) Code: <?xml version="1.0" encoding="utf-8" standalone="yes"?> Obviously, it is extremely unlikely that two users are going to have exactly the same folder structure and file names. BUT, in the official plugin repo is the TMDB Boxset plugin that will automatically detect what is in your library and bundle movies into boxsets (collections). But not necessarily in the way you want. RE: Curated Community Playlists - apriestley - 2024-02-18 That makes sense! I guess I shouldn't have used the term "collection" -- I don't mean it in the context of a Jellyfin collection, but rather what I had in mind was a publically queryable database or something like that. I'm imagining a plugin for JF that might query the database through a web API, and create the collections dynamically for the media you have as a scheduled task. RE: Curated Community Playlists - TheDreadPirate - 2024-02-18 The plugin I mentioned, TMDB Boxset plugin, does that. RE: Curated Community Playlists - apriestley - 2024-02-19 Ty for the info. I'll have to keep an eye out for something similar for TV shows. |