Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Autoplaylist with recently played tracks (Read 2305 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Autoplaylist with recently played tracks

Hey...

I made an autoplaylist to show my songs played recently first.

I use the query and sort pattern that I've found in the wiki

Code: [Select]
NOT %last_played% IS ?
Sort format: $sub(99999999999999,$replace(%last_played%,'-',,':',,' ',))


That works well, but in the playlist there also also the songs that have never been played.

My question: Is it possible to exclude those songs, so that only these songs are shown which were really played?

Thanks in advance 

Autoplaylist with recently played tracks

Reply #1
hey i use the same autoplaylist
try this in query:
NOT last_played MISSING

Autoplaylist with recently played tracks

Reply #2
Thank you, exactly what I wanted 

 

Autoplaylist with recently played tracks

Reply #3
I have another question:

Is it possible to show only the recently played songs of the last 30 days?




edit: Found it out for myself:

Code: [Select]
%last_played% HAS "-" AND "$cwb_datediff(%last_played%,%cwb_systemdate%)" LESS 30