Where are playlists located?
Moderator: Gurus
-
johandenver
Where are playlists located?
Hi!
Is it possible to move a created custom playlist from one computer to another? Sort of like exporting it?
Are they actually files I can copy or is it embedded in MM?
/Johan
Is it possible to move a created custom playlist from one computer to another? Sort of like exporting it?
Are they actually files I can copy or is it embedded in MM?
/Johan
They are stored in the database I believe. There are however scripts for exporting to a number of different filetypes including PLS and M3U.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
-
johandenver
Yes, I tried exporting it but then it just exports the songs in a playlist and not the playlistconfiguration itself, which is what I want.
The problem is that when I reinstall MM sometimes, my playlists all vanish and there seems to be no way to backup them up.
I don't want to use a backup of the MM-database unless I'm forced to.
I like the whole installation to be as "fresh" as possible
/Johan
The problem is that when I reinstall MM sometimes, my playlists all vanish and there seems to be no way to backup them up.
I don't want to use a backup of the MM-database unless I'm forced to.
I like the whole installation to be as "fresh" as possible
/Johan
Maybe somone could write a script to export the relevant database table and another to import them. Would take more SQL knowledge than I have though. And playing with the database directly is not a wise idea.
What information do these scripts fail to export/import?
What information do these scripts fail to export/import?
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
-
johandenver
It fails to export the information about how the playlist is set up.
I'd like to be able to export the criterias of an autoplaylist to another
computer without having to create it all over again.
The only info that comes from an export is what songs match the criterias but that's not really the information I want.
Lets say I create an autoplaylist searching for all songs with a rating of 4 and higher within the genres pop & rock.
It would be great to just be able to do "Save as" and get a file to import on another computer to do a similar search on that database.
When you have 30 different autoplaylists it can be kind of annoying having to create them all over again when MM have to be reinstalled.
Maybe this is something for the wishlist then?
/Johan
I'd like to be able to export the criterias of an autoplaylist to another
computer without having to create it all over again.
The only info that comes from an export is what songs match the criterias but that's not really the information I want.
Lets say I create an autoplaylist searching for all songs with a rating of 4 and higher within the genres pop & rock.
It would be great to just be able to do "Save as" and get a file to import on another computer to do a similar search on that database.
When you have 30 different autoplaylists it can be kind of annoying having to create them all over again when MM have to be reinstalled.
Maybe this is something for the wishlist then?
/Johan
-
onkel_enno
- Posts: 2158
- Joined: Fri Jan 14, 2005 1:45 am
- Location: Germany
- Contact:
@onkel_enno: Where are the criteria saved? I couldn't find them in the database. Which table?johandenver wrote:I don't want to use a backup of the MM-database unless I'm forced to. I like the whole installation to be as "fresh" as possible
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
-
onkel_enno
- Posts: 2158
- Joined: Fri Jan 14, 2005 1:45 am
- Location: Germany
- Contact:
-
johandenver
That is quite surprising!
My logic had taken me to that field, but when I extended it width-ways and found nothing I gave up - silly me!
If you could provide me with the SQL statements onkel_enno I would be happy to create the script. I might be ok with the "select" statement, but definitely not happy with creating the "insert" (is it?) statement.
If you could provide me with the SQL statements onkel_enno I would be happy to create the script. I might be ok with the "select" statement, but definitely not happy with creating the "insert" (is it?) statement.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
I don't want to sound "lazy" or something, but isn't it much easier to just export the Playlists table from the MM database to a new database?
This can then easily be imported or "pasted" back.
Cheers
Steegy
This can then easily be imported or "pasted" back.
Cheers
Steegy
Extensions: ExternalTools, ExtractFields, SongPreviewer, LinkedTracks, CleanImport, and some other scripts (Need Help with Addons > List of All Scripts).
This is a very good point. In Access if you right-click on the "Playlists" table you can select "Export" from the context-menu.
Then you'd click "File, Get External Data, Import" to import the saved file.
Then you'd click "File, Get External Data, Import" to import the saved file.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
-
onkel_enno
- Posts: 2158
- Joined: Fri Jan 14, 2005 1:45 am
- Location: Germany
- Contact:
What if johandenver has no MS Access?
For me, I would only backup the .mdb and everything is fine.
@trixmoto

For me, I would only backup the .mdb and everything is fine.
@trixmoto
Code: Select all
Insert Into Playlists (Playlistname, IsAutoPlaylist, QueryData) Values ('Huhu', 1, "[Common]
QueryVersion=1
...")
I'm sorry but I can't work out how to get the textdata itself out of the database.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.