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.