SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228) +---- Thread: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? (/showthread.php?tid=355976) |
SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-22 Hi there, i tried using google, but is there a possibilty to "select items from a smartplaylist of a smartplaylist"? i want to do the following: select 100 tv shows, order them by lastPlayed (desc, longest not watched) - from these 100 tv shows i want to select the first 50 and randomize them, is that possible? So basicially, what i want to do is: select the 50 tv shows that i did not watch in a while and randomize them What i got so far is this, it at least will filter out shows played in the last 7 days: https://paste.kodi.tv/uyefosukic RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - DaVu - 2020-07-23 Currently not possible RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-23 (2020-07-23, 05:26)DaVu Wrote: Currently not possible Thanks for your reply! I guessed so, what i plan is to do a simple python script. You may can hint me to a good tutorial that introduces a simple script/plugin writing to Kodi? Maybe even an existing script/plugin that accesses the Video.db that i just could adjust an copy/paste RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - pkscout - 2020-07-23 I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items. RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-23 (2020-07-23, 18:45)pkscout Wrote: I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items.Sorry, i dont really understand how you've done it. Can you maybe post your Playlist on https://paste.kodi.tv/ please? The problem is that what i need is some sort of "nested select" statement. Like "select top 50 from (select * from tv_shows order by lastplayed limit 100)" and a selection of a playlist is currently not possible as far as i understood. RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - scott967 - 2020-07-23 (2020-07-23, 18:45)pkscout Wrote: I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items. I'm thinking the problem is getting a tvshow playlist and then getting random episodes from several tv shows, or maybe the first unwatched from random tvshow. scott s. . RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - pkscout - 2020-07-24 (2020-07-23, 23:05)scott967 Wrote:Ah yes. If the OP is trying to get a list of shows and then a random list of episodes from a subset of those shows, then my way definitely won't work. I read the post to mean long list of TV shows then shorter list of TV shows.(2020-07-23, 18:45)pkscout Wrote: I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items. RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - pkscout - 2020-07-24 (2020-07-23, 19:09)iceman20k Wrote:Assuming you just want a list of shows (not a list of episodes from a list of shows), here's what I just did on my dev machine.(2020-07-23, 18:45)pkscout Wrote: I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items.Sorry, i dont really understand how you've done it. Can you maybe post your Playlist on https://paste.kodi.tv/ please? Playlist 1 (this is a list of the 100 TV shows I've watched most recently, you said in the OP that you had this one figured out already):
Playlist 2 (this is 10 random shows from the list of shows generated by playlist 1 - you can obviously do 50 instead):
It's worth noting that in my test for some reason the second playlist didn't always generate 10 shows. I don't know why. But maybe it'll get you down the right path. RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-24 (2020-07-24, 01:49)pkscout Wrote:(2020-07-23, 19:09)iceman20k Wrote:Assuming you just want a list of shows (not a list of episodes from a list of shows), here's what I just did on my dev machine.(2020-07-23, 18:45)pkscout Wrote: I have a music playlist that does something similar. I have a playlist called Mainstream, and then another called Mainstream - Curated. The second playlist has the rules PLAYLIST IS MAINSTREAM plus a second rule based on some other metadata. I think you might get close to what you want by creating a playlist with the 100 TV shows and then a second one that has a rule of PLAYLIST IS LAST100 (or whatever you name it) and then set the second playlist to random order and limited to 50 items.Sorry, i dont really understand how you've done it. Can you maybe post your Playlist on https://paste.kodi.tv/ please? Wow, this is exactly what i was looking for! Thanks a lot for your help! Here is my final solution: https://paste.kodi.tv/wajiwomagu I kept the 14 days rule since i cant select the first 50 elements (the really longest not played or unplayed ones) like you can with the SQL TOP command - but hey, its really pretty close to what i was looking for a pretty powerful for a frontend And in my case (i select "episodes" instead of "tvshows" like in your example) i always get my 50 final results - and the "helper" list also always gets 100 shows ordered by lastplayed, just like you would expect. RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-24 Uhw, just read in the Kodi Wiki: Quote:The playlist field can be used to combine several playlists together. When playlists are combined, the <limit> and <order> tags of the included playlists are ignored; only the <order> and <limit> of the final playlist are used.Limit and Order of Playlist1 are ignored, what makes the solution not work. Still a lot thx for your help. I think i have to write a simple Python Script with an SQL Statement to achieve it. Anyone has a simple introduction/tutorial to wiriting Kodi Plugins handy? RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-24 Dunno why Limit and Order in included playlists are ignored though. But i guess it has some techincal reason to not get into a recusrion or something... RE: SmartPlaylist Question: Is it possible to first order by lastPlayed and then random? - iceman20k - 2020-07-24 Thanks for all your help, i found a simple solution: I create a playlist with my Tv Shows, let them order by "lastplayed" (Playlist 1). But the second part, the randomizing, is not done by a playlist, but instead by this plugin: https://kodi.wiki/view/Add-on:Random_Movie It randomizes the Playlist 1 that only contains episodes not played for a long time I use it in my Favourites like: <favourite name="Random Series (Longest unwatched)">RunScript(script.playrandomvideos, "special://profile/playlists/video/series_longestnotwatched.xsp")</favourite> Just in case anyone else is interested in the solution. It truly plays randomly the episodes i did not watch for the longest time. Again thanks to all! |