Reply To: Where are web interface generated "Smart Playlists&quot

FireFly Media Server Firefly Media Server Forums Firefly Media Server Setup Issues Where are web interface generated "Smart Playlists&quot Reply To: Where are web interface generated "Smart Playlists&quot

#16266
rpedde
Participant

@sonichouse wrote:

Smart playlists are stored in the database… either songs.db or songs3.db

Or, if you just want the contents of the playlists (like the queries, etc), you can do:

sqlite3 /path/to/songs3.db “.dump playlists” > playlists.sql

and restore them later with:

sqlite3 /path/to/songs3.db < playlists.sql

– Ron