how would you export the playlist.db to a simple text file of all urls? #2412
-
I thought about migrating the data to mongodb but there must surely be an easier way? another way is to reverse this and export to sqlite. https://github.com/Mido22/sqlite-to-nedb/blob/master/app.js Or can I somehow just grep it? |
Beta Was this translation helpful? Give feedback.
Answered by
GilgusMaximus
Jul 23, 2022
Replies: 1 comment
-
The database follows a basic format: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
efb4f5ff-1298-471a-8973-3d47447115dc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The database follows a basic format:
{"playlistName":"Favorites","videos":[{video1}, {video2}]} and each video has some properties as "key": "value" pairs separated by commas. So you should easily be able to grep these. You can just open the files with any text editor