Playlists created from most listened songs

Got an idea? Missing something? Post your feature request here.

Moderator: moderators

Playlists created from most listened songs

Postby boognish43 » Fri Jan 23, 2015 4:32 pm

It would be awesome to have a playlists generated from whatever was listened to on the server the most last week/month etc

is this possible in any fashion at this point?

Thanks!
boognish43
 
Posts: 66
Joined: Sat Jan 09, 2010 3:13 pm

Re: Playlists created from most listened songs

Postby mitrailer » Fri Jan 23, 2015 4:46 pm

Hi, in the db.view of subsonic, you can retrieve the most played songs of all-time with this query
Code: Select all
SELECT TOP 101 title, album, artist, PLAY_COUNT FROM media_file WHERE TYPE = 'MUSIC' ORDER BY PLAY_COUNT desc

*Replace 101 with the number you want
*Replace TYPE = 'MUSIC' by TYPE = 'ALBUM' to get the album list

Though you can't do the same for weeks, month, year, etc.

But I definitely support this request +1
mitrailer
 
Posts: 138
Joined: Fri May 09, 2014 12:35 am

Re: Playlists created from most listened songs

Postby boognish43 » Fri Jan 23, 2015 5:10 pm

mitrailer wrote:Hi, in the db.view of subsonic, you can retrieve the most played songs of all-time with this query
Code: Select all
SELECT TOP 101 title, album, artist, PLAY_COUNT FROM media_file WHERE TYPE = 'MUSIC' ORDER BY PLAY_COUNT desc

*Replace 101 with the number you want
*Replace TYPE = 'MUSIC' by TYPE = 'ALBUM' to get the album list

Though you can't do the same for weeks, month, year, etc.

But I definitely support this request +1


Thanks for the tip! The weekly/monthly is definitely what I am looking for but this will make a pretty cool playlists as well
boognish43
 
Posts: 66
Joined: Sat Jan 09, 2010 3:13 pm


Return to Feature Requests

Who is online

Users browsing this forum: No registered users and 8 guests