![]() |
Daily Personal Mix Plugin - 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: Daily Personal Mix Plugin (/t-daily-personal-mix-plugin) |
Daily Personal Mix Plugin - Eeeeelias - 2025-03-28 Hey all, I have created a plugin called Playlist Generator which generates a daily playlist based on personal music listening habits. Essentially, I was missing something like "My Mix" from YouTube music, where I don't have to manually pick which music I want to listen to. I previously built a python script (https://forum.jellyfin.org/t-jellyfin-music-custom-my-mix-playlist) but I thought I'd give building a plugin a try. To generate the playlist, I use data from the Playback Reporting plugin to give each song a score of how much the user likes it, and get music recommendations from that. It's still very new, so I expect there to be a few bugs, but it generally works and creates playlists that I find worth listening to. I also have some ideas on how to extend this plugin to create e.g. mood-based playlists, but that's for the future. If you want to try it out yourself, you can add the manifest to your Jellyfin instance: Code: https://raw.githubusercontent.com/Eeeeelias/playlist-generator/refs/heads/main/manifest.json Or check out the GitHub repo: Code: https://github.com/Eeeeelias/playlist-generator Cheers! RE: Daily Personal Mix Plugin - Emailluka - 2025-03-31 Thank you. Will give this a try ![]() |