Reply To: Resetting ‘Playcount’

#10315
rpedde
Participant

@stretch wrote:

easiest would be to delete the database file and let firefly rebuild it.

Which you can do by doing the “full scan” from the web interface.

the harder way would be to edit the database file.

the database filename is songs.db and can be found at /opt/var/mt-daapd/

And you can do something like:

foo@bar$ sqlite /opt/var/mt-daapd/songs.db
sqlite> update songs set play_count=0;
sqlite> .quit