Reply To: in svn-1463, where are the dynamic playlists stored?

#8144
CCRDude
Participant

If your db is sqlite3, you could open it using:

sqlite3 /var/cache/mt-daapd/songs3.db

For sqlite2, it’s probably

sqlite /var/cache/mt-daapd/songs.db

Not sure what command line gdbm editor there would be for /var/cache/mt-daapd/songd.gdb …

Now (lets assume sqlite) you could type

select * from playlists;

To list the existing playlists.

If you know a bit about sql syntax, you can do with it whatever you want. Since sqlite is not designed for parallel access though, I would stop Firefly while you manipulate the DB.