![]() |
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 ![]() RE: Daily Personal Mix Plugin - damsdams - 2025-04-17 Hello, thank you very much! ![]() RE: Daily Personal Mix Plugin - BaconatorWithFries27 - 2025-07-02 Hey, thanks for this plugin! I installed it, set my username in the field, but I don't see the playlist in my library. Plugin is showing status active and I've restarted Jellyfin. Playback reporting is enabled but only has about 5 days of data if that makes a difference. Any help is appreciated! RE: Daily Personal Mix Plugin - Eeeeelias - 2025-07-03 (2025-07-02, 03:27 PM)BaconatorWithFries27 Wrote: Hey, thanks for this plugin! I installed it, set my username in the field, but I don't see the playlist in my library. Plugin is showing status active and I've restarted Jellyfin. Playback reporting is enabled but only has about 5 days of data if that makes a difference. Any help is appreciated! Hey, I'd love to help you! Could you please tell me which version of Jellyfin you're using? Also, if you could try and generate a playlist (Scheduled tasks → Generate Personal Playlist) and send me the logs, that would massively help me identify potential issues. In the meantime I'll have a look at the code for potential issues ![]() RE: Daily Personal Mix Plugin - BaconatorWithFries27 - 2025-07-03 Hey thanks for the reply! Turns out i was just being impatient - It's there now. I didn't realize there was a scheduled task. I'm on 10.10.7 RE: Daily Personal Mix Plugin - Eeeeelias - 2025-07-04 I'm glad! Yes, a new playlist gets generated each day at midnight, to hopefully move along with your preferences ![]() |