by wutzin » Sat Sep 04, 2010 2:07 pm
There at two problems you need to solve in order to be able to take your PC playlists from MediaMonkey to your MAC itunes:
1) The location to your files have changed - because your harddrive is not called "C:\". Similarly, the mac also addresses network drives or external usb harddrives differently. Plus, in addition, you might have moved your music collection to a folder with a different name (say, on your PC it was in a folder called "My Music", but now it sits in a folder called simply "Music". So you need to change the path for each playlist entry.
2) The mac uses the forward slash "/" in pathnames, but the pc uses the backslash "\". So you need to replace all backslashes in your playlists with a forward slash.
So your old PC playlist lists files like this:
Z:\Music\Music Chris\Francine Reed\05 Go Tell It On the Mountain.mp3
To be able to import them into itunes, the must look like this:
/Users/Chris/Music/iTunes/iTunes Media/Music/Francine Reed/05 Go Tell It On the Mountain.mp3
So you need to open all your playlists in a texteditor and run two search-replacement operations:
i) search for "Z:\Music\Music Chris\", replace with "/Users/Chris/Music/iTunes/iTunes Media/Music/"
ii) search for "\", replace with "/"
Save as a new playlist and import it into itunes. Done!
I wish there was an automated way to do this (in case you have lots of playlists), but I'm not script-smart enough to do this.
Maybe some day, the MM community will come up with a script that exports the corrected m3u's directly out of MM!
There at two problems you need to solve in order to be able to take your PC playlists from MediaMonkey to your MAC itunes:
1) The location to your files have changed - because your harddrive is not called "C:\". Similarly, the mac also addresses network drives or external usb harddrives differently. Plus, in addition, you might have moved your music collection to a folder with a different name (say, on your PC it was in a folder called "My Music", but now it sits in a folder called simply "Music". So you need to change the path for each playlist entry.
2) The mac uses the forward slash "/" in pathnames, but the pc uses the backslash "\". So you need to replace all backslashes in your playlists with a forward slash.
So your old PC playlist lists files like this:
Z:\Music\Music Chris\Francine Reed\05 Go Tell It On the Mountain.mp3
To be able to import them into itunes, the must look like this:
/Users/Chris/Music/iTunes/iTunes Media/Music/Francine Reed/05 Go Tell It On the Mountain.mp3
So you need to open all your playlists in a texteditor and run two search-replacement operations:
i) search for "Z:\Music\Music Chris\", replace with "/Users/Chris/Music/iTunes/iTunes Media/Music/"
ii) search for "\", replace with "/"
Save as a new playlist and import it into itunes. Done!
I wish there was an automated way to do this (in case you have lots of playlists), but I'm not script-smart enough to do this.
Maybe some day, the MM community will come up with a script that exports the corrected m3u's directly out of MM!