Page 1 of 1

Reset/Edit "Recently Played"

PostPosted: Wed Oct 13, 2021 1:46 pm
by cds1
Is it possible to edit the content in "Recently Played"? I use the songs listed in Recently Played to quickly and easily find music while running. Occasionally, songs get played that I don't want to hear again. If songs can't be removed, can I reset them?

Re: Reset/Edit "Recently Played"

PostPosted: Fri Oct 15, 2021 6:50 pm
by Squabsy
it's getting less and less possible to do anything Subsonic is dead try Navidrome instead

Re: Reset/Edit "Recently Played"

PostPosted: Mon Oct 18, 2021 4:52 pm
by acroyear
it wouldn't matter how much this is supported. it isn't really a common use-case at all as such. Plex is one of the very few systems that allows one to 'forget' having seen it before. Youtube can do it as well but the interface is really hard to find.

in any case, go to <server>/db.view

Code: Select all
select * from media_file where type = 'MUSIC' order by last_played desc limit 50;


that will bring up the last 50 songs that have been played (note: no matter who has played them - this is a global setting, not a personal one)

write down the IDs, and re-enter them in a query like the following. the id's are in the parens, separated by comma
Code: Select all
update media_file set last_played = null where id in (156167, 113951)


there won't be any feedback after hitting OK. simply re-run the first query and you should see them removed from the list.