iPlaylist Importer 1.6 - Updated 25/05/2008

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

New version (1.6) is now available to download from my website. I have now fixed playlists with tabs not working correctly.
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.
Kapten Iglo

Re: iPlaylist Importer 1.6 [MM2+3]

Post by Kapten Iglo »

Hey, I'd like to you use your script too, but (this is probably stupid) i can't see there any download button. Could you please explain to me how i can manage to integrate this script in MM3?
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: iPlaylist Importer 1.6 [MM2+3]

Post by Bex »

Simply click on the MM3 icon on his website to download the script (or any other script you'll find there)
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
ceep

Re: iPlaylist Importer 1.6 [MM2+3]

Post by ceep »

Hi

just found this site after installing MM yesterday, basically because I'm sick of itunes. I want to copy my itunes playlists to MM, and this seems to be the way to do it but could someone explain which icon I should click on to download the script - is it the 4kb .mmip file or the 283kb .exe file, or both?

Thanks
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: iPlaylist Importer 1.6 [MM2+3]

Post by Bex »

mmip for MM3, exe is for MM2.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
ceep

Re: iPlaylist Importer 1.6 [MM2+3]

Post by ceep »

Cheers!
Anonymous B

Re: iPlaylist Importer 1.6 [MM2+3]

Post by Anonymous B »

When I try to install the package, I get "product installation error." What am I doing wrong?
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by nohitter151 »

Anonymous B wrote:When I try to install the package, I get "product installation error." What am I doing wrong?
You have to run MediaMonkey as administrator before installing the script. Close MM, right click the MM icon, then "Run as administrator". Installing the script now should be fine.
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
Anonymous B

Re: iPlaylist Importer 1.6 [MM2+3]

Post by Anonymous B »

Thanks alot, it worked!
blackcows
Posts: 4
Joined: Sat May 12, 2007 5:36 pm

Re: iPlaylist Importer 1.6 [MM2+3]

Post by blackcows »

iPlaylist importer is exactly what I have been looking for. We have extensive iTunes playlists and have been looking for a way to import them into MM. I downloaded the script and am having a problem, it does import the playlist and shows the tracks have a path with a format of localhost\\bartserver\music\... Using this path the track will not play but when I update the path by removing "localhost" things work fine. In otherwords the path \\bartserver\music\.. works fine. It is much to time consuming to change the path on each track. Is there any solution for this?

Mike
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by trixmoto »

As discussed via email, if you open the script in a text editor and find lines 185-187...

Code: Select all

        If Left(fil,7) = "file://" Then
          fil = Mid(fil,8)
        End If
...then you can insert the following lines directly underneath these...

Code: Select all

        If Left(fil,9) = "localhost" Then
          fil = Mid(fil,10)
        End If
...this will trim off the "localhost" for you.
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.
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by nynaevelan »

trixmoto wrote:As discussed via email, if you open the script in a text editor and find lines 185-187...

Code: Select all

        If Left(fil,7) = "file://" Then
          fil = Mid(fil,8)
        End If
...then you can insert the following lines directly underneath these...

Code: Select all

        If Left(fil,9) = "localhost" Then
          fil = Mid(fil,10)
        End If
...this will trim off the "localhost" for you.
This solution isn'w working for me, I am still getting the files with this directory, file://localhost/D:/Music/. Any idea what I am doing wrong?
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by trixmoto »

Ah, you said "localhost" not "localhost/" - try these lines instead...

Code: Select all

        If Left(fil,10) = "localhost/" Then
          fil = Mid(fil,11)
        End If
And as you have "file://" as well as "localhost/" you'll need to make sure these lines come after the original ones, not before.
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.
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by nynaevelan »

trixmoto wrote: And as you have "file://" as well as "localhost/" you'll need to make sure these lines come after the original ones, not before.
I don't understand what you mean.
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: iPlaylist Importer 1.6 [MM2+3]

Post by trixmoto »

Copy and paste the "localhost/" lines after the "file://" lines.
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.
Post Reply